annotate Render.cpp @ 1828:35c1e4ff6ba7

party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
author Grumpy7
date Fri, 11 Oct 2013 07:04:19 +0200
parents 6de366add757
children f017f8e79aa1
rev   line source
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1164
diff changeset
1 #ifdef _MSC_VER
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1164
diff changeset
2 #define _CRT_SECURE_NO_WARNINGS
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1164
diff changeset
3 #endif
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1164
diff changeset
4
1277
1803172dffd9 header stuff
Grumpy7
parents: 1268
diff changeset
5 #include "Outdoor_stuff.h"
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
6 #include "VideoPlayer.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
7 #include "Sprites.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
8 #include "Mouse.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
9 #include "GammaControl.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
10 #include "stru6.h"
1183
fa30ea497e94 arcomage refactoring started
Gloval
parents: 1178
diff changeset
11 #include "GUIWindow.h"
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
12 #include "DecalBuilder.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
13 #include "ParticleEngine.h"
0
Ritor1
parents:
diff changeset
14 #include "Render.h"
Ritor1
parents:
diff changeset
15 #include "Outdoor.h"
Ritor1
parents:
diff changeset
16 #include "Party.h"
Ritor1
parents:
diff changeset
17 #include "LOD.h"
Ritor1
parents:
diff changeset
18 #include "Viewport.h"
Ritor1
parents:
diff changeset
19 #include "Math.h"
Ritor1
parents:
diff changeset
20 #include "PaletteManager.h"
Ritor1
parents:
diff changeset
21 #include "Time.h"
Ritor1
parents:
diff changeset
22 #include "Game.h"
Ritor1
parents:
diff changeset
23 #include "LightmapBuilder.h"
Ritor1
parents:
diff changeset
24 #include "ObjectList.h"
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
25 #include "SpriteObject.h"
0
Ritor1
parents:
diff changeset
26 #include "DecorationList.h"
Ritor1
parents:
diff changeset
27 #include "OSInfo.h"
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
28 #include "Actor.h"
0
Ritor1
parents:
diff changeset
29 #include "Log.h"
179
f102bbff6fd8 15.02.13 Water
Ritor1
parents: 169
diff changeset
30 #include "TileFrameTable.h"
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 179
diff changeset
31 #include "texts.h"
0
Ritor1
parents:
diff changeset
32 #include "mm7_data.h"
860
8fc2f035abc0 * AI function renames
zipi
parents: 852
diff changeset
33 #include "MM7.h"
1262
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1207
diff changeset
34 #include "Lights.h"
1828
35c1e4ff6ba7 party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents: 1814
diff changeset
35 #include "Level/Decoration.h"
0
Ritor1
parents:
diff changeset
36
Ritor1
parents:
diff changeset
37 #pragma comment(lib, "lib\\legacy_dx\\lib\\ddraw.lib")
Ritor1
parents:
diff changeset
38 #pragma comment(lib, "lib\\legacy_dx\\lib\\dxguid.lib")
Ritor1
parents:
diff changeset
39
Ritor1
parents:
diff changeset
40 struct IDirectDrawClipper *pDDrawClipper;
Ritor1
parents:
diff changeset
41 struct Render *pRenderer; // idb
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
42 struct RenderVertexD3D3 pVertices[50];
0
Ritor1
parents:
diff changeset
43 int uNumDecorationsDrawnThisFrame; // weak
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
44 RenderBillboard pBillboardRenderList[500];
0
Ritor1
parents:
diff changeset
45 unsigned int uNumBillboardsToDraw;
Ritor1
parents:
diff changeset
46 int uNumSpritesDrawnThisFrame; // weak
Ritor1
parents:
diff changeset
47
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
48 RenderVertexSoft array_507D30[50];
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
49 RenderVertexSoft array_50AC10[50];
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
50 RenderVertexSoft array_73D150[20];
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
51
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
52 RenderVertexD3D3 d3d_vertex_buffer[50];
0
Ritor1
parents:
diff changeset
53
Ritor1
parents:
diff changeset
54 void SetBillboardBlendOptions(RenderBillboardD3D::OpacityType a1);
Ritor1
parents:
diff changeset
55
Ritor1
parents:
diff changeset
56 /* 384 */
Ritor1
parents:
diff changeset
57 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
58 struct PCXHeader_1
Ritor1
parents:
diff changeset
59 {
Ritor1
parents:
diff changeset
60 char manufacturer;
Ritor1
parents:
diff changeset
61 char version;
Ritor1
parents:
diff changeset
62 char encoding;
Ritor1
parents:
diff changeset
63 char bpp;
Ritor1
parents:
diff changeset
64 __int16 left;
Ritor1
parents:
diff changeset
65 __int16 up;
Ritor1
parents:
diff changeset
66 __int16 right;
Ritor1
parents:
diff changeset
67 __int16 bottom;
Ritor1
parents:
diff changeset
68 __int16 hdpi;
Ritor1
parents:
diff changeset
69 __int16 vdpi;
Ritor1
parents:
diff changeset
70 };
Ritor1
parents:
diff changeset
71 #pragma pack(pop)
Ritor1
parents:
diff changeset
72
Ritor1
parents:
diff changeset
73 /* 385 */
Ritor1
parents:
diff changeset
74 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
75 struct PCXHeader_2
Ritor1
parents:
diff changeset
76 {
Ritor1
parents:
diff changeset
77 char reserved;
Ritor1
parents:
diff changeset
78 char planes;
Ritor1
parents:
diff changeset
79 __int16 pitch;
Ritor1
parents:
diff changeset
80 __int16 palette_info;
Ritor1
parents:
diff changeset
81 };
Ritor1
parents:
diff changeset
82 #pragma pack(pop)
Ritor1
parents:
diff changeset
83
Ritor1
parents:
diff changeset
84 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst);
Ritor1
parents:
diff changeset
85 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2);
Ritor1
parents:
diff changeset
86 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, struct RenderD3D_aux *a6);
Ritor1
parents:
diff changeset
87 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut); // idb
Ritor1
parents:
diff changeset
88
Ritor1
parents:
diff changeset
89 //----- (0049E79F) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
90 bool CheckTextureStages()
0
Ritor1
parents:
diff changeset
91 {
Ritor1
parents:
diff changeset
92 bool v0; // edi@1
Ritor1
parents:
diff changeset
93 IDirectDrawSurface4 *pSurface2; // [sp+Ch] [bp-14h]@1
Ritor1
parents:
diff changeset
94 IDirectDrawSurface4 *pSurface1; // [sp+10h] [bp-10h]@1
Ritor1
parents:
diff changeset
95 DWORD v4; // [sp+14h] [bp-Ch]@1
Ritor1
parents:
diff changeset
96 IDirect3DTexture2 *pTexture2; // [sp+18h] [bp-8h]@1
Ritor1
parents:
diff changeset
97 IDirect3DTexture2 *pTexture1; // [sp+1Ch] [bp-4h]@1
Ritor1
parents:
diff changeset
98
Ritor1
parents:
diff changeset
99 v0 = false;
Ritor1
parents:
diff changeset
100 pRenderer->pRenderD3D->CreateTexture(64u, 64u, &pSurface1, &pTexture1, true, false, 32u);
Ritor1
parents:
diff changeset
101 pRenderer->pRenderD3D->CreateTexture(64u, 64u, &pSurface2, &pTexture2, true, false, 32u);
Ritor1
parents:
diff changeset
102
Ritor1
parents:
diff changeset
103 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture1));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
104 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
105 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 2u));
Ritor1
parents:
diff changeset
106 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u));
Ritor1
parents:
diff changeset
107 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u));
Ritor1
parents:
diff changeset
108 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u));
Ritor1
parents:
diff changeset
109 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 1u));
Ritor1
parents:
diff changeset
110
Ritor1
parents:
diff changeset
111 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture2));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
112 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP));
0
Ritor1
parents:
diff changeset
113 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_TEXCOORDINDEX, 1u));
Ritor1
parents:
diff changeset
114 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 7u));
Ritor1
parents:
diff changeset
115 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG1, 2u));
Ritor1
parents:
diff changeset
116 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG2, 1u));
Ritor1
parents:
diff changeset
117 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MAGFILTER, 2u));
Ritor1
parents:
diff changeset
118 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MINFILTER, 2u));
Ritor1
parents:
diff changeset
119 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MIPFILTER, 1u));
Ritor1
parents:
diff changeset
120
Ritor1
parents:
diff changeset
121 if ( !pRenderer->pRenderD3D->pDevice->ValidateDevice(&v4) && v4 == 1 )
Ritor1
parents:
diff changeset
122 v0 = true;
Ritor1
parents:
diff changeset
123 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 1u));
Ritor1
parents:
diff changeset
124 pTexture1->Release();
Ritor1
parents:
diff changeset
125 pTexture2->Release();
Ritor1
parents:
diff changeset
126 pSurface1->Release();
Ritor1
parents:
diff changeset
127 pSurface2->Release();
Ritor1
parents:
diff changeset
128 return v0;
Ritor1
parents:
diff changeset
129 }
Ritor1
parents:
diff changeset
130
Ritor1
parents:
diff changeset
131 //----- (00440CB8) --------------------------------------------------------
Ritor1
parents:
diff changeset
132 void Render::DrawBillboardList_BLV()
Ritor1
parents:
diff changeset
133 {
Ritor1
parents:
diff changeset
134 __int16 v2; // ax@3
Ritor1
parents:
diff changeset
135 int v5; // eax@11
Ritor1
parents:
diff changeset
136 RenderBillboardTransform_local0 soft_billboard; // [sp+4h] [bp-50h]@1
Ritor1
parents:
diff changeset
137
Ritor1
parents:
diff changeset
138 soft_billboard.uParentBillboardID = -1;
Ritor1
parents:
diff changeset
139 soft_billboard.pTarget = pBLVRenderParams->pRenderTarget;
Ritor1
parents:
diff changeset
140 soft_billboard.pTargetZ = pBLVRenderParams->pTargetZBuffer;
Ritor1
parents:
diff changeset
141 soft_billboard.uTargetPitch = pRenderer->uTargetSurfacePitch;
Ritor1
parents:
diff changeset
142 soft_billboard.uViewportX = pBLVRenderParams->uViewportX;
Ritor1
parents:
diff changeset
143 soft_billboard.uViewportY = pBLVRenderParams->uViewportY;
Ritor1
parents:
diff changeset
144 soft_billboard.uViewportZ = pBLVRenderParams->uViewportZ - 1;
Ritor1
parents:
diff changeset
145 soft_billboard.uViewportW = pBLVRenderParams->uViewportW;
Ritor1
parents:
diff changeset
146
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
147 pODMRenderParams->uNumBillboards = ::uNumBillboardsToDraw;
617
f2697c2b4109 Billboards are now rendered in BLV
Nomad
parents: 595
diff changeset
148 for (uint i = 0; i < ::uNumBillboardsToDraw; ++i)
0
Ritor1
parents:
diff changeset
149 {
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
150 auto p = pBillboardRenderList + i;
0
Ritor1
parents:
diff changeset
151
Ritor1
parents:
diff changeset
152 soft_billboard.uScreenSpaceX = p->uScreenSpaceX;
Ritor1
parents:
diff changeset
153 soft_billboard.uParentBillboardID = i;
Ritor1
parents:
diff changeset
154 soft_billboard.uScreenSpaceY = p->uScreenSpaceY;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
155 soft_billboard._screenspace_x_scaler_packedfloat = p->_screenspace_x_scaler_packedfloat;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
156 soft_billboard._screenspace_y_scaler_packedfloat = p->_screenspace_y_scaler_packedfloat;
0
Ritor1
parents:
diff changeset
157 soft_billboard.sZValue = p->sZValue;
Ritor1
parents:
diff changeset
158 soft_billboard.uFlags = p->field_1E;
Ritor1
parents:
diff changeset
159 soft_billboard.uTintColor = p->uTintColor;
Ritor1
parents:
diff changeset
160 v2 = p->uHwSpriteID;
Ritor1
parents:
diff changeset
161 if ( v2 != -1 )
Ritor1
parents:
diff changeset
162 {
Ritor1
parents:
diff changeset
163 if ( pRenderer->pRenderD3D )
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
164 pRenderer->DrawBillboard_Indoor(&soft_billboard, &pSprites_LOD->pHardwareSprites[v2], p->dimming_level);
0
Ritor1
parents:
diff changeset
165 else
Ritor1
parents:
diff changeset
166 {
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
167 soft_billboard.pPalette = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, p->dimming_level, 1);
0
Ritor1
parents:
diff changeset
168 if (p->field_1E & 0x0100)
Ritor1
parents:
diff changeset
169 soft_billboard.pPalette = pPaletteManager->field_261600[p->uPalette];
Ritor1
parents:
diff changeset
170 if ( !(soft_billboard.uFlags & 0x40) && soft_billboard.uFlags & 0x80 )
Ritor1
parents:
diff changeset
171 soft_billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, 0, 1);
Ritor1
parents:
diff changeset
172 v5 = p->uHwSpriteID;
Ritor1
parents:
diff changeset
173 if ( v5 >= 0 )
733
700b58aac975 MonsterPopup preview doll fixed
Nomad
parents: 728
diff changeset
174 pSprites_LOD->pSpriteHeaders[v5].DrawSprite_sw(&soft_billboard, 1);
0
Ritor1
parents:
diff changeset
175 }
Ritor1
parents:
diff changeset
176 }
Ritor1
parents:
diff changeset
177 }
Ritor1
parents:
diff changeset
178 }
Ritor1
parents:
diff changeset
179
Ritor1
parents:
diff changeset
180 //----- (004A16A5) --------------------------------------------------------
1806
Nomad
parents: 1803
diff changeset
181 bool AreRenderSurfacesOk()
0
Ritor1
parents:
diff changeset
182 {
Ritor1
parents:
diff changeset
183 char v0; // zf@4
Ritor1
parents:
diff changeset
184 bool result; // eax@8
Ritor1
parents:
diff changeset
185
1806
Nomad
parents: 1803
diff changeset
186 if (!pRenderer)
Nomad
parents: 1803
diff changeset
187 return true;
0
Ritor1
parents:
diff changeset
188 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 )
Ritor1
parents:
diff changeset
189 {
Ritor1
parents:
diff changeset
190 if ( !pRenderer->pBackBuffer4 )
Ritor1
parents:
diff changeset
191 goto LABEL_9;
Ritor1
parents:
diff changeset
192 v0 = pRenderer->pFrontBuffer4 == 0;
Ritor1
parents:
diff changeset
193 }
Ritor1
parents:
diff changeset
194 else
Ritor1
parents:
diff changeset
195 {
Ritor1
parents:
diff changeset
196 if ( !pRenderer->pBackBuffer2 )
Ritor1
parents:
diff changeset
197 goto LABEL_9;
Ritor1
parents:
diff changeset
198 v0 = pRenderer->pFrontBuffer2 == 0;
Ritor1
parents:
diff changeset
199 }
Ritor1
parents:
diff changeset
200 if ( !v0 )
Ritor1
parents:
diff changeset
201 {
Ritor1
parents:
diff changeset
202 LOBYTE(result) = 1;
Ritor1
parents:
diff changeset
203 return result;
Ritor1
parents:
diff changeset
204 }
Ritor1
parents:
diff changeset
205 LABEL_9:
Ritor1
parents:
diff changeset
206 LOBYTE(result) = 0;
Ritor1
parents:
diff changeset
207 return result;
Ritor1
parents:
diff changeset
208 }
Ritor1
parents:
diff changeset
209
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
210 void Render::RenderTerrainD3D() // New function
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
211 {
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
212 int v6; // ecx@8
1427
Ritor1
parents: 1424
diff changeset
213 struct Polygon *pTilePolygon; // ebx@8
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
214
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
215 //warning: the game uses CW culling by default, ccw is incosistent
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
216 pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CCW);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
217
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
218 static RenderVertexSoft pTerrainVertices[128 * 128];//vertexCountX and vertexCountZ
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
219
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
220 //Ãåíåðàöèÿ ìåñòîïîëîæåíèÿ âåðøèí-------------------------------------------------------------------------
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
221 //ðåø¸òêà âåðøèí äåëèòñÿ íà äâå ÷àñòè îò -64 äî 0 è îò 0 äî 64
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
222 //
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
223 // -64 X 0 64
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
224 // --------------- 64
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
225 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
226 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
227 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
228 // 0|------+------| Z
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
229 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
230 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
231 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
232 // ---------------
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
233 // -64
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
234
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
235 int blockScale = 512;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
236 int heightScale = 32;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
237 for (unsigned int z = 0; z < 128; ++z)
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
238 {
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
239 for (unsigned int x = 0; x < 128; ++x)
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
240 {
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
241 pTerrainVertices[z * 128 + x].vWorldPosition.x = (-64 + (signed)x) * blockScale;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
242 pTerrainVertices[z * 128 + x].vWorldPosition.y = (64 - (signed)z) * blockScale;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
243 pTerrainVertices[z * 128 + x].vWorldPosition.z = heightScale * pOutdoor->pTerrain.pHeightmap[z * 128 + x];
121
3471df3713e2 Teal line at game's viewport bottom fix
Nomad
parents: 107
diff changeset
244 pGame->pIndoorCameraD3D->ViewTransform(&pTerrainVertices[z * 128 + x], 1);
3471df3713e2 Teal line at game's viewport bottom fix
Nomad
parents: 107
diff changeset
245 pGame->pIndoorCameraD3D->Project(&pTerrainVertices[z * 128 + x], 1, 0);
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
246 }
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
247 }
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
248 //--------------------------------------------------------------------------------------------------------------------
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
249
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
250 //
1344
65379a50e4eb Portals in indoor (continue)
Ritor1
parents: 1338
diff changeset
251 for (unsigned int z = 0; z < 127; ++z)
65379a50e4eb Portals in indoor (continue)
Ritor1
parents: 1338
diff changeset
252 {
65379a50e4eb Portals in indoor (continue)
Ritor1
parents: 1338
diff changeset
253 for (unsigned int x = 0; x < 127; ++x)
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
254 {
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
255 pTilePolygon = &array_77EC08[pODMRenderParams->uNumPolygons];
1427
Ritor1
parents: 1424
diff changeset
256 pTilePolygon->flags = 0;
Ritor1
parents: 1424
diff changeset
257 pTilePolygon->field_32 = 0;
Ritor1
parents: 1424
diff changeset
258 pTilePolygon->uTileBitmapID = pOutdoor->DoGetTileTexture(x, z);
Ritor1
parents: 1424
diff changeset
259 pTilePolygon->pTexture = (Texture *)&pBitmaps_LOD->pHardwareTextures[pTilePolygon->uTileBitmapID];
Ritor1
parents: 1424
diff changeset
260 if (pTilePolygon->uTileBitmapID == 0xFFFF)
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
261 continue;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
262
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
263 //pTile->flags = 0x8010 |pOutdoor->GetSomeOtherTileInfo(x, z);
1427
Ritor1
parents: 1424
diff changeset
264 pTilePolygon->flags = pOutdoor->GetSomeOtherTileInfo(x, z);
Ritor1
parents: 1424
diff changeset
265 pTilePolygon->field_32 = 0;
Ritor1
parents: 1424
diff changeset
266 pTilePolygon->field_59 = 1;
Ritor1
parents: 1424
diff changeset
267 pTilePolygon->sTextureDeltaU = 0;
Ritor1
parents: 1424
diff changeset
268 pTilePolygon->sTextureDeltaV = 0;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
269 // x,z x+1,z
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
270 // .____________.
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
271 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
272 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
273 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
274 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
275 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
276 // .____________.
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
277 // x,z+1 x+1,z+1
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
278 memcpy(&array_73D150[0], &pTerrainVertices[z * 128 + x], sizeof(RenderVertexSoft));//x, z
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
279 array_73D150[0].u = 0;
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
280 array_73D150[0].v = 0;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
281 memcpy(&array_73D150[1], &pTerrainVertices[z * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
282 array_73D150[1].u = 1;
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
283 array_73D150[1].v = 0;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
284 memcpy(&array_73D150[2], &pTerrainVertices[(z + 1) * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z + 1
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
285 array_73D150[2].u = 1;
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
286 array_73D150[2].v = 1;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
287 memcpy(&array_73D150[3], &pTerrainVertices[(z + 1) * 128 + x], sizeof(RenderVertexSoft));//x, z + 1
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
288 array_73D150[3].u = 0;
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
289 array_73D150[3].v = 1;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
290 //v58 = 0;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
291 //if (v58 == 4) // if all y == first y; primitive in xz plane
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
292 //pTile->field_32 |= 0x0001;
1427
Ritor1
parents: 1424
diff changeset
293 pTilePolygon->pODMFace = nullptr;
Ritor1
parents: 1424
diff changeset
294 pTilePolygon->uNumVertices = 4;
Ritor1
parents: 1424
diff changeset
295 pTilePolygon->field_59 = 5;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
296
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
297 //shading (çàòåíåíèå)----------------------------------------------------------------------------
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
298 //uint norm_idx = pTerrainNormalIndices[2 * (z * 128 + x) + 1];
1424
5930342f092b fall to the water
Ritor1
parents: 1413
diff changeset
299 uint norm_idx = pTerrainNormalIndices[2 * (x * 128 + z) + 2];
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
300 assert(norm_idx < uNumTerrainNormals);
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
301
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
302 auto norm = pTerrainNormals + norm_idx;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
303 float _f = ((norm->x * (float)pOutdoor->vSunlight.x / 65536.0) -
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
304 (norm->y * (float)pOutdoor->vSunlight.y / 65536.0) -
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
305 (norm->z * (float)pOutdoor->vSunlight.z / 65536.0));
1427
Ritor1
parents: 1424
diff changeset
306 pTilePolygon->dimming_level = 20.0 - floorf(20.0 * _f + 0.5f);
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
307 //-----------------------------------------------------------------------------------------------
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
308
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
309 ++pODMRenderParams->uNumPolygons;
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
310 ++pODMRenderParams->field_44;
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
311 assert(pODMRenderParams->uNumPolygons < 20000);
265
96bc024a5fed Render overflows
Nomad
parents: 190
diff changeset
312
1427
Ritor1
parents: 1424
diff changeset
313 pTilePolygon->uBModelID = 0;
Ritor1
parents: 1424
diff changeset
314 pTilePolygon->uBModelFaceID = 0;
Ritor1
parents: 1424
diff changeset
315 pTilePolygon->field_50 = (8 * (0 | (0 << 6))) | 6;
Ritor1
parents: 1424
diff changeset
316 for (unsigned int k = 0; k < pTilePolygon->uNumVertices; ++k)
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
317 {
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
318 memcpy(&array_50AC10[k], &array_73D150[k], sizeof(struct RenderVertexSoft));
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
319 array_50AC10[k]._rhw = 1.0 / (array_73D150[k].vWorldViewPosition.x + 0.0000001000000011686097);
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
320 }
140
f4d7a9a8c363 Walk/run and other actions
Nomad
parents: 121
diff changeset
321
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
322 // check the transparency and texture (tiles) mapping (ïðîâåðêà ïðîçðà÷íîñòè è íàëîæåíèå òåêñòóð (òàéëîâ))----------------------
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
323 bool transparent = false;
1427
Ritor1
parents: 1424
diff changeset
324 if ( !( pTilePolygon->flags & 1 ) ) // íå ïîääåðæèâàåòñÿ TextureFrameTable
Ritor1
parents: 1424
diff changeset
325 {
Ritor1
parents: 1424
diff changeset
326 if ( /*pTile->flags & 2 && */pTilePolygon->uTileBitmapID == pRenderer->hd_water_tile_id)
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
327 {
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
328 //transparent = false;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
329 v6 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame];
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
330 }
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
331 else
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
332 {
1427
Ritor1
parents: 1424
diff changeset
333 v6 = pTilePolygon->uTileBitmapID;
Ritor1
parents: 1424
diff changeset
334 if ( !_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5) )
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
335 transparent = true;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
336 }
179
f102bbff6fd8 15.02.13 Water
Ritor1
parents: 169
diff changeset
337
140
f4d7a9a8c363 Walk/run and other actions
Nomad
parents: 121
diff changeset
338 assert(v6 < 1000); // many random crashes here
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
339
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
340 // for all shore tiles - draw a tile water under them since they're half-empty
1427
Ritor1
parents: 1424
diff changeset
341 if (!_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5)) // all shore tile filenames are wtrdrXXX
Ritor1
parents: 1424
diff changeset
342 pTilePolygon->DrawBorderTiles();
Ritor1
parents: 1424
diff changeset
343
Ritor1
parents: 1424
diff changeset
344 pRenderer->DrawTerrainPolygon(pTilePolygon->uNumVertices, pTilePolygon, pBitmaps_LOD->pHardwareTextures[v6], transparent, true);
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
345 }
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
346 //else //çäåñü óæå ïîãðàíè÷íûå òàéëû âîäû
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
347 //pTile->DrawBorderTiles();
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
348 //--------------------------------------------------------------------------------------------------------------------------------
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
349
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
350 --pODMRenderParams->uNumPolygons;
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
351 --pODMRenderParams->field_44;
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
352 }
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
353 }
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
354 }
0
Ritor1
parents:
diff changeset
355
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
356
0
Ritor1
parents:
diff changeset
357
Ritor1
parents:
diff changeset
358 //----- (0047BACF) --------------------------------------------------------
Ritor1
parents:
diff changeset
359 void Render::TransformBillboardsAndSetPalettesODM()
Ritor1
parents:
diff changeset
360 {
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 140
diff changeset
361 //int v0; // edi@1
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
362 //char *v1; // esi@2
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
363 //unsigned int v2; // edx@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
364 //int v3; // eax@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
365 //int v4; // edi@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
366 //int v5; // eax@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
367 //__int16 v6; // di@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
368 //int v7; // eax@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
369 //int v8; // ebx@4
0
Ritor1
parents:
diff changeset
370 unsigned __int16 *v9; // eax@7
Ritor1
parents:
diff changeset
371 char v10; // zf@9
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
372 //DWORD v11; // eax@13
0
Ritor1
parents:
diff changeset
373 int v12; // eax@13
Ritor1
parents:
diff changeset
374 int v13; // eax@14
Ritor1
parents:
diff changeset
375 RenderBillboardTransform_local0 billboard; // [sp+4h] [bp-60h]@1
Ritor1
parents:
diff changeset
376 int v15; // [sp+54h] [bp-10h]@13
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 140
diff changeset
377 //int v16; // [sp+58h] [bp-Ch]@1
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
378 //int v17; // [sp+5Ch] [bp-8h]@2
0
Ritor1
parents:
diff changeset
379 int v18; // [sp+60h] [bp-4h]@13
Ritor1
parents:
diff changeset
380
Ritor1
parents:
diff changeset
381 billboard.uParentBillboardID = -1;
Ritor1
parents:
diff changeset
382 billboard.pTarget = pRenderer->pTargetSurface;
Ritor1
parents:
diff changeset
383 billboard.pTargetZ = pRenderer->pActiveZBuffer;
Ritor1
parents:
diff changeset
384 billboard.uTargetPitch = pRenderer->uTargetSurfacePitch;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
385 billboard.uViewportX = pViewport->uViewportTL_X;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
386 billboard.uViewportY = pViewport->uViewportTL_Y;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
387 billboard.uViewportZ = pViewport->uViewportBR_X - 1;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
388 billboard.uViewportW = pViewport->uViewportBR_Y;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
389 pODMRenderParams->uNumBillboards = uNumBillboardsToDraw;
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 140
diff changeset
390
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
391 for (int i = 0; i < ::uNumBillboardsToDraw; ++i)
0
Ritor1
parents:
diff changeset
392 {
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
393 auto pBillboard = pBillboardRenderList + i;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
394
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
395 billboard.uScreenSpaceX = pBillboard->uScreenSpaceX;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
396 billboard.uScreenSpaceY = pBillboard->uScreenSpaceY;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
397 billboard.uParentBillboardID = i;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
398 billboard._screenspace_x_scaler_packedfloat = pBillboard->_screenspace_x_scaler_packedfloat;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
399 billboard.uTintColor = pBillboard->uTintColor;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
400 billboard._screenspace_y_scaler_packedfloat = pBillboard->_screenspace_y_scaler_packedfloat;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
401 billboard.sZValue = pBillboard->sZValue;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
402 billboard.uFlags = pBillboard->field_1E;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
403 if (pBillboard->uHwSpriteID != -1)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
404 {
1410
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
405 if (!pRenderer->pRenderD3D) __debugbreak(); // no sw rendering
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
406 //if (pRenderer->pRenderD3D)
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
407 pRenderer->TransformBillboard(&billboard,
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
408 &pSprites_LOD->pHardwareSprites[pBillboard->uHwSpriteID],
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
409 pBillboard->dimming_level, pBillboard);
1410
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
410 /*else
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
411 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
412 assert(false);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
413
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
414 auto v1 = (char *)&pBillboard->uScreenSpaceY;
0
Ritor1
parents:
diff changeset
415 if ( *(v1 - 10) & 2 )
Ritor1
parents:
diff changeset
416 v9 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 0, 1);
Ritor1
parents:
diff changeset
417 else
1410
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
418 v9 = sr_GetBillboardPalette((RenderBillboard *)(v1 - 40), *((short *)v1 - 7), pBillboard->sZValue, *((short *)v1 + 1));
0
Ritor1
parents:
diff changeset
419 v10 = (*(v1 - 9) & 1) == 0;
Ritor1
parents:
diff changeset
420 billboard.pPalette = v9;
Ritor1
parents:
diff changeset
421 if ( !v10 )
Ritor1
parents:
diff changeset
422 billboard.pPalette = pPaletteManager->field_261600[*((short *)v1 - 7)];
Ritor1
parents:
diff changeset
423 if ( !(billboard.uFlags & 0x40) && billboard.uFlags & 0x80 )
Ritor1
parents:
diff changeset
424 {
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
425 v12 = stru_5C6E00->Cos(i * 5 + GetTickCount());
0
Ritor1
parents:
diff changeset
426 v15 = abs(v12);
Ritor1
parents:
diff changeset
427 v18 = (unsigned __int64)(15i64 * v15) >> 16;
Ritor1
parents:
diff changeset
428 billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 15 - v18, 1);
Ritor1
parents:
diff changeset
429 }
Ritor1
parents:
diff changeset
430 v13 = *((short *)v1 - 8);
Ritor1
parents:
diff changeset
431 if ( v13 >= 0 )
733
700b58aac975 MonsterPopup preview doll fixed
Nomad
parents: 728
diff changeset
432 pSprites_LOD->pSpriteHeaders[v13].DrawSprite_sw(&billboard, 1);
1410
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
433 }*/
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
434 }
0
Ritor1
parents:
diff changeset
435 }
Ritor1
parents:
diff changeset
436 }
Ritor1
parents:
diff changeset
437
Ritor1
parents:
diff changeset
438 //----- (0047AF11) --------------------------------------------------------
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
439 void Render::DrawSpriteObjects_ODM()
0
Ritor1
parents:
diff changeset
440 {
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
441 //char *v0; // edi@2
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
442 //ObjectDesc *v1; // ebx@4
0
Ritor1
parents:
diff changeset
443 __int16 v2; // cx@5
Ritor1
parents:
diff changeset
444 RenderBillboard *v3; // esi@10
Ritor1
parents:
diff changeset
445 SpriteFrame *v4; // eax@10
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
446 //SpriteFrame *v5; // ebx@10
0
Ritor1
parents:
diff changeset
447 unsigned int v6; // eax@10
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
448 //int v7; // ecx@10
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
449 //int v8; // edx@10
0
Ritor1
parents:
diff changeset
450 int v9; // ecx@10
Ritor1
parents:
diff changeset
451 unsigned __int16 v10; // ax@10
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
452 //int *v11; // eax@14
0
Ritor1
parents:
diff changeset
453 int v12; // eax@22
Ritor1
parents:
diff changeset
454 int v13; // ST3C_4@23
Ritor1
parents:
diff changeset
455 int v14; // eax@23
Ritor1
parents:
diff changeset
456 int v15; // ecx@23
Ritor1
parents:
diff changeset
457 int v16; // ebx@23
Ritor1
parents:
diff changeset
458 int v17; // ecx@25
Ritor1
parents:
diff changeset
459 int v18; // eax@25
Ritor1
parents:
diff changeset
460 int v19; // ST40_4@26
Ritor1
parents:
diff changeset
461 int v20; // ecx@26
Ritor1
parents:
diff changeset
462 int v21; // ST44_4@28
Ritor1
parents:
diff changeset
463 int v22; // ST3C_4@29
Ritor1
parents:
diff changeset
464 signed __int64 v23; // qtt@30
Ritor1
parents:
diff changeset
465 int v24; // ebx@30
Ritor1
parents:
diff changeset
466 int v25; // ST3C_4@30
Ritor1
parents:
diff changeset
467 int v26; // eax@31
Ritor1
parents:
diff changeset
468 char v27; // zf@31
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
469 //SpriteFrame *v28; // [sp+Ch] [bp-34h]@10
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
470 //__int16 a5; // [sp+10h] [bp-30h]@10
0
Ritor1
parents:
diff changeset
471 int v30; // [sp+14h] [bp-2Ch]@23
Ritor1
parents:
diff changeset
472 int v31; // [sp+14h] [bp-2Ch]@29
Ritor1
parents:
diff changeset
473 __int16 v32; // [sp+14h] [bp-2Ch]@30
Ritor1
parents:
diff changeset
474 int v33; // [sp+18h] [bp-28h]@23
Ritor1
parents:
diff changeset
475 int v34; // [sp+18h] [bp-28h]@26
Ritor1
parents:
diff changeset
476 int v35; // [sp+18h] [bp-28h]@30
Ritor1
parents:
diff changeset
477 int v36; // [sp+1Ch] [bp-24h]@10
Ritor1
parents:
diff changeset
478 int v37; // [sp+1Ch] [bp-24h]@23
Ritor1
parents:
diff changeset
479 int a6; // [sp+20h] [bp-20h]@10
Ritor1
parents:
diff changeset
480 int a6a; // [sp+20h] [bp-20h]@23
Ritor1
parents:
diff changeset
481 int v40; // [sp+24h] [bp-1Ch]@25
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
482 //signed int v41; // [sp+28h] [bp-18h]@1
0
Ritor1
parents:
diff changeset
483 int v42; // [sp+2Ch] [bp-14h]@23
Ritor1
parents:
diff changeset
484 int y; // [sp+30h] [bp-10h]@10
Ritor1
parents:
diff changeset
485 int x; // [sp+34h] [bp-Ch]@10
Ritor1
parents:
diff changeset
486 int z; // [sp+38h] [bp-8h]@10
Ritor1
parents:
diff changeset
487 signed __int16 v46; // [sp+3Ch] [bp-4h]@12
Ritor1
parents:
diff changeset
488
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
489 //v41 = 0;
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
490 for (int i = 0; i < uNumSpriteObjects; ++i)
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
491 {
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
492 auto object = &pSpriteObjects[i];
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
493 //auto v0 = (char *)&pSpriteObjects[i].uSectorID;
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
494 //v0 = (char *)&pSpriteObjects[0].uSectorID;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
495 //do
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
496 //{
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
497 if (!object->uObjectDescID) // item probably pciked up
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
498 continue;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
499
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
500 assert(object->uObjectDescID < pObjectList->uNumObjects);
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
501 auto object_desc = pObjectList->pObjects + object->uObjectDescID;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
502 if (object_desc->NoSprite())
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
503 continue;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
504
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
505 //v1 = &pObjectList->pObjects[*((short *)v0 - 13)];
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
506 //if ( !(v1->uFlags & 1) )
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
507 //{
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
508 //v2 = *((short *)v0 - 14)
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
509 v2 = object->uType;
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
510 if ( (v2 < 1000 || v2 >= 10000) && (v2 < 500 || v2 >= 600) || pGame->pStru6Instance->_4A81CA(object) )
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
511 {
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
512 //a5 = *(short *)v0;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
513 x = object->vPosition.x;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
514 y = object->vPosition.y;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
515 z = object->vPosition.z;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
516 v3 = &pBillboardRenderList[::uNumBillboardsToDraw];
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
517 v4 = pSpriteFrameTable->GetFrame(object_desc->uSpriteID, object->uSpriteFrameID);
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
518 //v5 = v4;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
519 //v28 = v4;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
520 v36 = v4->uFlags;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
521 a6 = v4->uGlowRadius * object->field_22_glow_radius_multiplier;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
522 v6 = stru_5C6E00->Atan2(object->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x, object->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y);
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
523 //LOWORD(v7) = object->uFacing;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
524 //v8 = v36;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
525 v9 = ((signed int)(stru_5C6E00->uIntegerPi + ((signed int)stru_5C6E00->uIntegerPi >> 3) + object->uFacing - v6) >> 8) & 7;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
526 v10 = v4->pHwSpriteIDs[v9];
0
Ritor1
parents:
diff changeset
527 v3->uHwSpriteID = v10;
Ritor1
parents:
diff changeset
528 if ( v36 & 0x20 )
Ritor1
parents:
diff changeset
529 {
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
530 //v8 = v36;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
531 z -= (signed int)((unsigned __int64)(v4->scale * (signed __int64)pSprites_LOD->pSpriteHeaders[(signed __int16)v10].uHeight) >> 16) >> 1;
0
Ritor1
parents:
diff changeset
532 }
Ritor1
parents:
diff changeset
533 v46 = 0;
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
534 if ( v36 & 2 )
0
Ritor1
parents:
diff changeset
535 v46 = 2;
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
536 //v11 = (int *)(256 << v9);
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
537 if ( (256 << v9) & v36 )
0
Ritor1
parents:
diff changeset
538 v46 |= 4u;
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
539 if ( v36 & 0x40000 )
0
Ritor1
parents:
diff changeset
540 v46 |= 0x40u;
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
541 if ( v36 & 0x20000 )
0
Ritor1
parents:
diff changeset
542 LOBYTE(v46) = v46 | 0x80;
Ritor1
parents:
diff changeset
543 if ( a6 )
Ritor1
parents:
diff changeset
544 {
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
545 //LOBYTE(v11) = byte_4E94D3;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
546 pMobileLightsStack->AddLight(x, y, z, object->uSectorID, a6, 0xFFu, 0xFFu, 0xFFu, byte_4E94D3);
0
Ritor1
parents:
diff changeset
547 }
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
548 v12 = (x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16;
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
549 if (pGame->pIndoorCameraD3D->sRotationX)
0
Ritor1
parents:
diff changeset
550 {
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
551 v13 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
552 v30 = ((unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16)
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
553 + ((unsigned __int64)(v13 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16);
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
554 v37 = (unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
555 a6a = (unsigned __int64)(v13 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
556 v33 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
557 v14 = (unsigned __int64)(v30 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
558 v15 = (unsigned __int64)(v33 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16;
0
Ritor1
parents:
diff changeset
559 v16 = v15 + v14;
Ritor1
parents:
diff changeset
560 v42 = v15 + v14;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
561 if ( v15 + v14 >= 262144 && v16 <= pODMRenderParams->shading_dist_mist << 16 )
0
Ritor1
parents:
diff changeset
562 {
Ritor1
parents:
diff changeset
563 v17 = a6a - v37;
Ritor1
parents:
diff changeset
564 v40 = a6a - v37;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
565 v18 = ((unsigned __int64)(v33 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16)
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
566 - ((unsigned __int64)(v30 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16);
0
Ritor1
parents:
diff changeset
567 goto LABEL_29;
Ritor1
parents:
diff changeset
568 }
Ritor1
parents:
diff changeset
569 }
Ritor1
parents:
diff changeset
570 else
Ritor1
parents:
diff changeset
571 {
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
572 v34 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
573 v19 = (unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
574 v20 = (unsigned __int64)(v34 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
0
Ritor1
parents:
diff changeset
575 v16 = v20 + v19;
Ritor1
parents:
diff changeset
576 v42 = v20 + v19;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
577 if ( v20 + v19 >= 262144 && v16 <= pODMRenderParams->shading_dist_mist << 16 )
0
Ritor1
parents:
diff changeset
578 {
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
579 v21 = (unsigned __int64)(((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16) * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
580 v17 = ((unsigned __int64)(v34 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v21;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
581 v40 = ((unsigned __int64)(v34 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v21;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
582 v18 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16;
0
Ritor1
parents:
diff changeset
583 LABEL_29:
Ritor1
parents:
diff changeset
584 v31 = v18;
Ritor1
parents:
diff changeset
585 v22 = abs(v17);
Ritor1
parents:
diff changeset
586 if ( abs(v16) >= v22 )
Ritor1
parents:
diff changeset
587 {
Ritor1
parents:
diff changeset
588 LODWORD(v23) = 0;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
589 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad);
0
Ritor1
parents:
diff changeset
590 v24 = v23 / v42;
Ritor1
parents:
diff changeset
591 v25 = v23 / v42;
Ritor1
parents:
diff changeset
592 LODWORD(v23) = 0;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
593 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad);
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
594 v35 = pViewport->uScreenCenterX - ((signed int)(((unsigned __int64)(v25 * (signed __int64)v40) >> 16) + 32768) >> 16);
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
595 v32 = LOWORD(pViewport->uScreenCenterY) - (((unsigned int)((unsigned __int64)(v23 / v42 * v31) >> 16) + 32768) >> 16);
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
596
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
597 //if (::uNumBillboardsToDraw >= 500)
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
598 // return;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
599 assert(::uNumBillboardsToDraw < 500);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
600 ++::uNumBillboardsToDraw;
0
Ritor1
parents:
diff changeset
601 ++uNumSpritesDrawnThisFrame;
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
602
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
603 object->uAttributes |= 1;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
604 v3->uPalette = v4->uPaletteIndex;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
605 v3->uIndoorSectorID = object->uSectorID;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
606 v3->_screenspace_x_scaler_packedfloat = (unsigned __int64)(v4->scale * (signed __int64)v24) >> 16;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
607 v26 = (unsigned __int64)(v4->scale * (signed __int64)v24) >> 16;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
608 v3->pSpriteFrame = v4;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
609 v3->_screenspace_y_scaler_packedfloat = v26;
0
Ritor1
parents:
diff changeset
610 v3->field_1E = v46;
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
611 v3->world_x = x;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
612 v3->world_y = y;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
613 v3->world_z = z;
0
Ritor1
parents:
diff changeset
614 v3->uScreenSpaceX = v35;
Ritor1
parents:
diff changeset
615 v3->uScreenSpaceY = v32;
Ritor1
parents:
diff changeset
616 HIWORD(v26) = HIWORD(v42);
Ritor1
parents:
diff changeset
617 LOWORD(v26) = 0;
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
618 v27 = (object->uAttributes & 0x20) == 0;
862
f4394e320312 * PID mistake fixed
zipi
parents: 860
diff changeset
619 v3->sZValue = v26 + (PID(OBJECT_Item,i));
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
620 v3->dimming_level = 0;
0
Ritor1
parents:
diff changeset
621 v3->uTintColor = 0;
Ritor1
parents:
diff changeset
622 if ( !v27 )
Ritor1
parents:
diff changeset
623 {
Ritor1
parents:
diff changeset
624 if ( !pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
625 v3->sZValue = 0;
Ritor1
parents:
diff changeset
626 }
Ritor1
parents:
diff changeset
627 }
Ritor1
parents:
diff changeset
628 goto LABEL_34;
Ritor1
parents:
diff changeset
629 }
Ritor1
parents:
diff changeset
630 }
Ritor1
parents:
diff changeset
631 }
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
632 //}
0
Ritor1
parents:
diff changeset
633 LABEL_34:
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
634 ;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
635 //++v41;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
636 //v0 += 112;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
637 //}
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
638 //while ( v41 < (signed int)uNumSpriteObjects );
0
Ritor1
parents:
diff changeset
639 }
Ritor1
parents:
diff changeset
640 }
Ritor1
parents:
diff changeset
641
Ritor1
parents:
diff changeset
642 //----- (0049D9BC) --------------------------------------------------------
Ritor1
parents:
diff changeset
643 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut)
Ritor1
parents:
diff changeset
644 {
Ritor1
parents:
diff changeset
645 size_t v4; // eax@1
Ritor1
parents:
diff changeset
646 size_t v5; // eax@1
Ritor1
parents:
diff changeset
647 IUnknown *v6; // eax@10
Ritor1
parents:
diff changeset
648 size_t v7; // eax@13
Ritor1
parents:
diff changeset
649 DDDEVICEIDENTIFIER ddDevId; // [sp+4h] [bp-4F8h]@11
Ritor1
parents:
diff changeset
650 DDSURFACEDESC2 v10;/*int v10; // [sp+42Ch] [bp-D0h]@16
Ritor1
parents:
diff changeset
651 int v11; // [sp+430h] [bp-CCh]@16
Ritor1
parents:
diff changeset
652 int v12; // [sp+434h] [bp-C8h]@16
Ritor1
parents:
diff changeset
653 int v13; // [sp+438h] [bp-C4h]@16
Ritor1
parents:
diff changeset
654 int v14; // [sp+474h] [bp-88h]@16*/
Ritor1
parents:
diff changeset
655 DDSCAPS2 ddsCaps; // [sp+4A8h] [bp-54h]@14
Ritor1
parents:
diff changeset
656 unsigned int uFreeVideoMem; // [sp+4B8h] [bp-44h]@14
Ritor1
parents:
diff changeset
657 RenderD3D_aux aux; // [sp+4BCh] [bp-40h]@19
Ritor1
parents:
diff changeset
658 IDirect3D3 *pDirect3D3; // [sp+4C4h] [bp-38h]@18
Ritor1
parents:
diff changeset
659 int v19; // [sp+4C8h] [bp-34h]@16
Ritor1
parents:
diff changeset
660 RenderD3D_D3DDevDesc v20; // [sp+4CCh] [bp-30h]@1
Ritor1
parents:
diff changeset
661 LPDIRECTDRAW pDirectDraw; // [sp+4F4h] [bp-8h]@4
Ritor1
parents:
diff changeset
662 IDirectDraw4 *pDirectDraw4; // [sp+4F8h] [bp-4h]@7
Ritor1
parents:
diff changeset
663
Ritor1
parents:
diff changeset
664 v4 = strlen(lpDriverName);
Ritor1
parents:
diff changeset
665 v20.pDriverName = new char[v4 + 1];
Ritor1
parents:
diff changeset
666 v5 = strlen(lpDevDesc);
Ritor1
parents:
diff changeset
667 v20.pDeviceDesc = new char[v5 + 1];
Ritor1
parents:
diff changeset
668 strcpy(v20.pDriverName, lpDriverName);
Ritor1
parents:
diff changeset
669 strcpy(v20.pDeviceDesc, lpDevDesc);
Ritor1
parents:
diff changeset
670 if ( lpGUID )
Ritor1
parents:
diff changeset
671 {
Ritor1
parents:
diff changeset
672 v20.pGUID = new GUID;
Ritor1
parents:
diff changeset
673 memcpy(v20.pGUID, lpGUID, 0x10u);
Ritor1
parents:
diff changeset
674 }
Ritor1
parents:
diff changeset
675 else
Ritor1
parents:
diff changeset
676 {
Ritor1
parents:
diff changeset
677 v20.pGUID = 0;
Ritor1
parents:
diff changeset
678 }
Ritor1
parents:
diff changeset
679
Ritor1
parents:
diff changeset
680 if (FAILED(DirectDrawCreate(v20.pGUID, &pDirectDraw, 0)))
Ritor1
parents:
diff changeset
681 {
Ritor1
parents:
diff changeset
682 delete [] v20.pDriverName;
Ritor1
parents:
diff changeset
683 delete [] v20.pDeviceDesc;
Ritor1
parents:
diff changeset
684 if ( v20.pGUID )
Ritor1
parents:
diff changeset
685 delete v20.pGUID;
Ritor1
parents:
diff changeset
686 }
Ritor1
parents:
diff changeset
687 else
Ritor1
parents:
diff changeset
688 {
Ritor1
parents:
diff changeset
689 if (FAILED(pDirectDraw->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pDirectDraw4)))
Ritor1
parents:
diff changeset
690 {
Ritor1
parents:
diff changeset
691 delete [] v20.pDriverName;
Ritor1
parents:
diff changeset
692 delete [] v20.pDeviceDesc;
Ritor1
parents:
diff changeset
693 if ( v20.pGUID )
Ritor1
parents:
diff changeset
694 delete v20.pGUID;
Ritor1
parents:
diff changeset
695 v6 = (IUnknown *)pDirectDraw;
Ritor1
parents:
diff changeset
696 }
Ritor1
parents:
diff changeset
697 else
Ritor1
parents:
diff changeset
698 {
Ritor1
parents:
diff changeset
699 pDirectDraw->Release();
Ritor1
parents:
diff changeset
700 if (FAILED( pDirectDraw4->GetDeviceIdentifier(&ddDevId, 1u)))
Ritor1
parents:
diff changeset
701 {
Ritor1
parents:
diff changeset
702 v20.pDDraw4DevDesc = 0;
Ritor1
parents:
diff changeset
703 }
Ritor1
parents:
diff changeset
704 else
Ritor1
parents:
diff changeset
705 {
Ritor1
parents:
diff changeset
706 v7 = strlen(ddDevId.szDescription);
Ritor1
parents:
diff changeset
707 v20.pDDraw4DevDesc = new char[v7 + 1];
Ritor1
parents:
diff changeset
708 strcpy(v20.pDDraw4DevDesc, ddDevId.szDescription);
Ritor1
parents:
diff changeset
709 }
Ritor1
parents:
diff changeset
710 memset(&ddsCaps, 0, 0x10u);
Ritor1
parents:
diff changeset
711 if (FAILED(pDirectDraw4->GetAvailableVidMem(
Ritor1
parents:
diff changeset
712 &ddsCaps,
Ritor1
parents:
diff changeset
713 (LPDWORD)&v20.uVideoMem,
Ritor1
parents:
diff changeset
714 (LPDWORD)&uFreeVideoMem)))
Ritor1
parents:
diff changeset
715 v20.uVideoMem = 0;
Ritor1
parents:
diff changeset
716 memset(&v10, 0, 0x7Cu);
Ritor1
parents:
diff changeset
717 v10.dwSize = 124;
Ritor1
parents:
diff changeset
718 v10.dwFlags = 6;
Ritor1
parents:
diff changeset
719 v10.dwHeight = 640;
Ritor1
parents:
diff changeset
720 v10.dwWidth = 480;
Ritor1
parents:
diff changeset
721 v10.ddpfPixelFormat.dwSize = 32;
Ritor1
parents:
diff changeset
722
Ritor1
parents:
diff changeset
723 v19 = 0;
Ritor1
parents:
diff changeset
724 if ( FAILED(pDirectDraw4->EnumDisplayModes(
Ritor1
parents:
diff changeset
725 0,
Ritor1
parents:
diff changeset
726 0,
Ritor1
parents:
diff changeset
727 &v19,
Ritor1
parents:
diff changeset
728 (LPDDENUMMODESCALLBACK2)DDrawDisplayModesEnumerator))
Ritor1
parents:
diff changeset
729 || !v19
Ritor1
parents:
diff changeset
730 || FAILED(pDirectDraw4->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D3)))
Ritor1
parents:
diff changeset
731 {
Ritor1
parents:
diff changeset
732 delete [] v20.pDriverName;
Ritor1
parents:
diff changeset
733 delete [] v20.pDeviceDesc;
Ritor1
parents:
diff changeset
734 if ( v20.pDDraw4DevDesc )
Ritor1
parents:
diff changeset
735 free(v20.pDDraw4DevDesc);
Ritor1
parents:
diff changeset
736 if ( v20.pGUID )
Ritor1
parents:
diff changeset
737 delete v20.pGUID;
Ritor1
parents:
diff changeset
738 v6 = (IUnknown *)pDirectDraw4;
Ritor1
parents:
diff changeset
739 }
Ritor1
parents:
diff changeset
740 else
Ritor1
parents:
diff changeset
741 {
Ritor1
parents:
diff changeset
742 aux.pInfo = pOut;
Ritor1
parents:
diff changeset
743 aux.ptr_4 = &v20;
Ritor1
parents:
diff changeset
744 pDirect3D3->EnumDevices((LPD3DENUMDEVICESCALLBACK)D3DDeviceEnumerator, &aux);
Ritor1
parents:
diff changeset
745 delete [] v20.pDriverName;
Ritor1
parents:
diff changeset
746 delete [] v20.pDeviceDesc;
Ritor1
parents:
diff changeset
747 if ( v20.pDDraw4DevDesc )
Ritor1
parents:
diff changeset
748 free(v20.pDDraw4DevDesc);
Ritor1
parents:
diff changeset
749 if ( v20.pGUID )
Ritor1
parents:
diff changeset
750 delete v20.pGUID;
Ritor1
parents:
diff changeset
751 pDirectDraw4->Release();
Ritor1
parents:
diff changeset
752 v6 = (IUnknown *)pDirect3D3;
Ritor1
parents:
diff changeset
753 pDirectDraw4 = 0;
Ritor1
parents:
diff changeset
754 }
Ritor1
parents:
diff changeset
755 }
Ritor1
parents:
diff changeset
756 v6->Release();
Ritor1
parents:
diff changeset
757 }
Ritor1
parents:
diff changeset
758 return 1;
Ritor1
parents:
diff changeset
759 }
Ritor1
parents:
diff changeset
760
Ritor1
parents:
diff changeset
761 //----- (0049D784) --------------------------------------------------------
Ritor1
parents:
diff changeset
762 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, RenderD3D_aux *a6)
Ritor1
parents:
diff changeset
763 {
Ritor1
parents:
diff changeset
764 int v6; // eax@1
Ritor1
parents:
diff changeset
765 signed int v7; // edi@1
Ritor1
parents:
diff changeset
766 signed int v8; // edi@14
Ritor1
parents:
diff changeset
767 size_t v9; // eax@30
Ritor1
parents:
diff changeset
768 size_t v10; // eax@30
Ritor1
parents:
diff changeset
769 size_t v11; // eax@30
Ritor1
parents:
diff changeset
770 size_t v12; // eax@30
Ritor1
parents:
diff changeset
771 size_t v13; // eax@30
Ritor1
parents:
diff changeset
772
Ritor1
parents:
diff changeset
773 v6 = pHWDesc->dwFlags;
Ritor1
parents:
diff changeset
774 v7 = -1;
Ritor1
parents:
diff changeset
775 if ( v6 )
Ritor1
parents:
diff changeset
776 {
Ritor1
parents:
diff changeset
777 if ( !a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
778 v7 = 0;
Ritor1
parents:
diff changeset
779 if ( v6 && a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
780 v7 = 1;
Ritor1
parents:
diff changeset
781 }
Ritor1
parents:
diff changeset
782 if ( !strcmp(lpDeviceName, "RGB Emulation") && !a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
783 v7 = 2;
Ritor1
parents:
diff changeset
784 if ( !strcmp(lpDeviceName, "Reference Rasterizer") && !a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
785 v7 = 3;
Ritor1
parents:
diff changeset
786 if ( v7 != -1 )
Ritor1
parents:
diff changeset
787 {
Ritor1
parents:
diff changeset
788 v8 = v7;
Ritor1
parents:
diff changeset
789 a6->pInfo[v8].bIsDeviceCompatible = 1;
Ritor1
parents:
diff changeset
790 a6->pInfo[v8].uCaps = 0;
Ritor1
parents:
diff changeset
791 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 0x10) )
Ritor1
parents:
diff changeset
792 a6->pInfo[v8].uCaps |= 2u;
Ritor1
parents:
diff changeset
793 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 2) )
Ritor1
parents:
diff changeset
794 a6->pInfo[v8].uCaps |= 4u;
Ritor1
parents:
diff changeset
795 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 1) )
Ritor1
parents:
diff changeset
796 a6->pInfo[v8].uCaps |= 8u;
Ritor1
parents:
diff changeset
797 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 0x20) )
Ritor1
parents:
diff changeset
798 a6->pInfo[v8].uCaps |= 0x10u;
Ritor1
parents:
diff changeset
799 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 2) )
Ritor1
parents:
diff changeset
800 a6->pInfo[v8].uCaps |= 0x20u;
Ritor1
parents:
diff changeset
801 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 4) )
Ritor1
parents:
diff changeset
802 a6->pInfo[v8].uCaps |= 0x40u;
Ritor1
parents:
diff changeset
803 if ( !(BYTE1(pHWDesc->dwDevCaps) & 0x10) )
Ritor1
parents:
diff changeset
804 BYTE1(a6->pInfo[v8].uCaps) |= 1u;
Ritor1
parents:
diff changeset
805 if ( pHWDesc->dpcTriCaps.dwTextureCaps & 0x20 )
Ritor1
parents:
diff changeset
806 LOBYTE(a6->pInfo[v8].uCaps) |= 0x80u;
Ritor1
parents:
diff changeset
807 v9 = strlen(lpDeviceName);
Ritor1
parents:
diff changeset
808 a6->pInfo[v8].pName = new char[v9 + 1];
Ritor1
parents:
diff changeset
809 strcpy(a6->pInfo[v8].pName, lpDeviceName);
Ritor1
parents:
diff changeset
810 v10 = strlen(lpDeviceDesc);
Ritor1
parents:
diff changeset
811 a6->pInfo[v8].pDescription = new char[v10 + 1];
Ritor1
parents:
diff changeset
812 strcpy(a6->pInfo[v8].pDescription, lpDeviceDesc);
1631
8094f1706b1f operator new() -> malloc
Nomad
parents: 1584
diff changeset
813 a6->pInfo[v8].pGUID = new GUID;
0
Ritor1
parents:
diff changeset
814 memcpy(a6->pInfo[v8].pGUID, lpGUID, 0x10u);
Ritor1
parents:
diff changeset
815 v11 = strlen(a6->ptr_4->pDriverName);
Ritor1
parents:
diff changeset
816 a6->pInfo[v8].pDriverName = new char[v11 + 1];
Ritor1
parents:
diff changeset
817 strcpy(a6->pInfo[v8].pDriverName, a6->ptr_4->pDriverName);
Ritor1
parents:
diff changeset
818 v12 = strlen(a6->ptr_4->pDeviceDesc);
Ritor1
parents:
diff changeset
819 a6->pInfo[v8].pDeviceDesc = new char[v12 + 1];
Ritor1
parents:
diff changeset
820 strcpy(a6->pInfo[v8].pDeviceDesc, a6->ptr_4->pDeviceDesc);
Ritor1
parents:
diff changeset
821 v13 = strlen(a6->ptr_4->pDDraw4DevDesc);
Ritor1
parents:
diff changeset
822 a6->pInfo[v8].pDDraw4DevDesc = new char[v13 + 1];
Ritor1
parents:
diff changeset
823 strcpy(a6->pInfo[v8].pDDraw4DevDesc, a6->ptr_4->pDDraw4DevDesc);
Ritor1
parents:
diff changeset
824 if ( a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
825 {
Ritor1
parents:
diff changeset
826 a6->pInfo[v8].pDirectDrawGUID = new GUID;
Ritor1
parents:
diff changeset
827 memcpy(a6->pInfo[v8].pDirectDrawGUID, a6->ptr_4->pGUID, 0x10u);
Ritor1
parents:
diff changeset
828 }
Ritor1
parents:
diff changeset
829 else
Ritor1
parents:
diff changeset
830 {
Ritor1
parents:
diff changeset
831 a6->pInfo[v8].pDirectDrawGUID = 0;
Ritor1
parents:
diff changeset
832 }
Ritor1
parents:
diff changeset
833 a6->pInfo[v8].uVideoMem = a6->ptr_4->uVideoMem;
Ritor1
parents:
diff changeset
834 }
Ritor1
parents:
diff changeset
835 return 1;
Ritor1
parents:
diff changeset
836 }
Ritor1
parents:
diff changeset
837
Ritor1
parents:
diff changeset
838 //----- (0049D75C) --------------------------------------------------------
Ritor1
parents:
diff changeset
839 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2)
Ritor1
parents:
diff changeset
840 {
Ritor1
parents:
diff changeset
841 HRESULT result; // eax@3
Ritor1
parents:
diff changeset
842
Ritor1
parents:
diff changeset
843 if ( pSurfaceDesc->ddsCaps.dwCaps | 0x2000 && pSurfaceDesc->ddpfPixelFormat.dwRGBBitCount == 16 )
Ritor1
parents:
diff changeset
844 {
Ritor1
parents:
diff changeset
845 *a2 = 1;
Ritor1
parents:
diff changeset
846 result = 0;
Ritor1
parents:
diff changeset
847 }
Ritor1
parents:
diff changeset
848 else
Ritor1
parents:
diff changeset
849 {
Ritor1
parents:
diff changeset
850 result = 1;
Ritor1
parents:
diff changeset
851 }
Ritor1
parents:
diff changeset
852 return result;
Ritor1
parents:
diff changeset
853 }
Ritor1
parents:
diff changeset
854
Ritor1
parents:
diff changeset
855 //----- (0047A95E) --------------------------------------------------------
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
856 void Render::PrepareDecorationsRenderList_ODM()
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
857 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
858 //char *v0; // esi@2
639
4f2837124c69 Decoration animations
Nomad
parents: 638
diff changeset
859 //DecorationDesc *v1; // ebx@6
0
Ritor1
parents:
diff changeset
860 __int16 v2; // ax@6
Ritor1
parents:
diff changeset
861 double v3; // st7@7
639
4f2837124c69 Decoration animations
Nomad
parents: 638
diff changeset
862 //int v4; // eax@9
4f2837124c69 Decoration animations
Nomad
parents: 638
diff changeset
863 //int v5; // edx@9
0
Ritor1
parents:
diff changeset
864 unsigned int v6; // edi@9
Ritor1
parents:
diff changeset
865 int v7; // eax@9
Ritor1
parents:
diff changeset
866 SpriteFrame *v8; // eax@9
635
71ecba604995 Season change affects vegetation;
Nomad
parents: 619
diff changeset
867 //SpriteFrame *v9; // edi@9
0
Ritor1
parents:
diff changeset
868 unsigned __int16 *v10; // eax@9
Ritor1
parents:
diff changeset
869 int v11; // ecx@9
Ritor1
parents:
diff changeset
870 int v12; // eax@9
Ritor1
parents:
diff changeset
871 int v13; // ecx@9
Ritor1
parents:
diff changeset
872 int v14; // ecx@20
Ritor1
parents:
diff changeset
873 char v15; // dl@20
Ritor1
parents:
diff changeset
874 signed int v16; // eax@20
Ritor1
parents:
diff changeset
875 int v17; // eax@23
Ritor1
parents:
diff changeset
876 int v18; // ecx@24
Ritor1
parents:
diff changeset
877 int v19; // eax@24
Ritor1
parents:
diff changeset
878 int v20; // ecx@24
Ritor1
parents:
diff changeset
879 int v21; // ebx@26
Ritor1
parents:
diff changeset
880 int v22; // eax@26
Ritor1
parents:
diff changeset
881 int v23; // eax@30
Ritor1
parents:
diff changeset
882 signed __int64 v24; // qtt@31
Ritor1
parents:
diff changeset
883 int v25; // ebx@31
Ritor1
parents:
diff changeset
884 int v26; // ecx@32
Ritor1
parents:
diff changeset
885 RenderBillboard *v27; // eax@37
Ritor1
parents:
diff changeset
886 __int16 v28; // dx@37
Ritor1
parents:
diff changeset
887 __int16 v29; // cx@37
Ritor1
parents:
diff changeset
888 int v30; // ecx@37
Ritor1
parents:
diff changeset
889 int v31; // ebx@37
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 617
diff changeset
890 Particle_sw local_0; // [sp+Ch] [bp-98h]@7
639
4f2837124c69 Decoration animations
Nomad
parents: 638
diff changeset
891 //int x; // [sp+74h] [bp-30h]@9
4f2837124c69 Decoration animations
Nomad
parents: 638
diff changeset
892 //int y; // [sp+78h] [bp-2Ch]@9
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
893 //int v35; // [sp+7Ch] [bp-28h]@1
639
4f2837124c69 Decoration animations
Nomad
parents: 638
diff changeset
894 //int v36; // [sp+80h] [bp-24h]@9
0
Ritor1
parents:
diff changeset
895 unsigned __int16 *v37; // [sp+84h] [bp-20h]@9
Ritor1
parents:
diff changeset
896 int v38; // [sp+88h] [bp-1Ch]@9
Ritor1
parents:
diff changeset
897 int v39; // [sp+8Ch] [bp-18h]@24
Ritor1
parents:
diff changeset
898 int v40; // [sp+90h] [bp-14h]@24
Ritor1
parents:
diff changeset
899 int v41; // [sp+94h] [bp-10h]@24
Ritor1
parents:
diff changeset
900 int v42; // [sp+98h] [bp-Ch]@9
Ritor1
parents:
diff changeset
901 int a5; // [sp+9Ch] [bp-8h]@9
Ritor1
parents:
diff changeset
902 int b; // [sp+A0h] [bp-4h]@22
Ritor1
parents:
diff changeset
903
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
904 //v35 = 0;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
905 //if ( (signed int)uNumLevelDecorations > 0 )
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
906 //{
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
907 //v0 = (char *)&pLevelDecorations[0].vPosition.y;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
908 //do
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
909 for (int i = 0; i < uNumLevelDecorations; ++i)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
910 {
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1185
diff changeset
911 auto decor = &pLevelDecorations[i];
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
912 auto v0 = (char *)&pLevelDecorations[i].vPosition.y;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
913
1491
6d21ef91cb2d Rename LevelDecoration::_47A825 to LevelDecoration::IsObeliskChestActive().
yoctozepto
parents: 1490
diff changeset
914 if ((!(decor->uFlags & LEVEL_DECORATION_OBELISK_CHEST) || decor->IsObeliskChestActive()) && !(decor->uFlags & LEVEL_DECORATION_INVISIBLE))
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
915 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
916 //v1 = &pDecorationList->pDecorations[decor->uDecorationDescID];
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
917 auto decor_desc = pDecorationList->pDecorations + decor->uDecorationDescID;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
918 v2 = decor_desc->uFlags;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
919 if ( (char)v2 >= 0 )
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
920 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
921 if ( !(v2 & 0x22) )
0
Ritor1
parents:
diff changeset
922 {
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
923 //v4 = decor->vPosition.x;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
924 //v5 = decor->vPosition.z;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
925 v6 = pMiscTimer->uTotalGameTimeElapsed;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
926 //y = decor->vPosition.y;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
927 //x = decor->vPosition.x;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
928 //v36 = decor->vPosition.z;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
929 v7 = abs(decor->vPosition.x + decor->vPosition.y);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
930
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
931
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
932 #pragma region "New: seasons change"
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
933 extern bool change_seasons;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
934 if (change_seasons)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
935 switch (pParty->uCurrentMonth)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
936 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
937 // case 531 (tree60), 536 (tree65), 537 (tree66) have no autumn/winter sprites
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
938 case 11: case 0: case 1: // winter
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
939 switch (decor_desc->uSpriteID)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
940 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
941 //case 468: //bush02 grows on swamps, which are evergreeen actually
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
942 case 548: // flower10
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
943 case 547: // flower09
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
944 case 541: // flower03
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
945 case 539: continue; // flower01
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
946
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
947 case 483: // tree01
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
948 case 486: // tree04
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
949 case 492: // tree10
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
950 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 2);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
951 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 2, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
952 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
953
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
954 default:
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
955 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
956 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
957 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
958
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
959 case 2: case 3: case 4: // spring
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
960 switch (decor_desc->uSpriteID)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
961 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
962 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
963 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
964 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
965
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
966 case 8: case 9: case 10: // autumn
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
967 switch (decor_desc->uSpriteID)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
968 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
969 //case 468: //bush02 grows on swamps, which are evergreeen actually
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
970 case 548: // flower10
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
971 case 547: // flower09
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
972 case 541: // flower03
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
973 case 539: continue; // flower01
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
974
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
975 case 483: // tree01
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
976 case 486: // tree04
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
977 case 492: // tree10
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
978 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 1);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
979 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 1, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
980 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
981
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
982 default:
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
983 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
984 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
985 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
986
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
987 case 5: case 6: case 7: // summer
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
988 //all green by default
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
989 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
990 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
991
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
992 default: assert(pParty->uCurrentMonth >= 0 && pParty->uCurrentMonth < 12);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
993 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
994 else
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
995 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
996 #pragma endregion
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
997 //v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
998
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
999 //v9 = v8;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1000 v42 = v8->uFlags;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1001 a5 = v8->uGlowRadius;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1002 v10 = (unsigned __int16 *)stru_5C6E00->Atan2(decor->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x,
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1003 decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1004 v11 = *((int *)v0 + 2);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1005 v37 = v10;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1006 v12 = v42;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1007 v38 = 0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1008 v13 = ((signed int)(stru_5C6E00->uIntegerPi
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1009 + ((signed int)stru_5C6E00->uIntegerPi >> 3)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1010 + v11
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1011 - (signed int)v37) >> 8) & 7;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1012 v37 = (unsigned __int16 *)v13;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1013 if ( v42 & 2 )
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1014 v38 = 2;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1015 if ( (256 << v13) & v42 )
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1016 v38 |= 4u;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1017 if ( v12 & 0x40000 )
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1018 v38 |= 0x40u;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1019 if ( v12 & 0x20000 )
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1020 LOBYTE(v38) = v38 | 0x80;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1021 if ( a5 )
0
Ritor1
parents:
diff changeset
1022 {
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1023 if ( pRenderer->pRenderD3D && pRenderer->bUseColoredLights )
0
Ritor1
parents:
diff changeset
1024 {
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1025 v14 = decor_desc->uColoredLightRed;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1026 v15 = decor_desc->uColoredLightGreen;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1027 v16 = decor_desc->uColoredLightBlue;
0
Ritor1
parents:
diff changeset
1028 }
Ritor1
parents:
diff changeset
1029 else
Ritor1
parents:
diff changeset
1030 {
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1031 v16 = 255;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1032 v14 = 255;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1033 v15 = 255;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1034 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1035 b = v16;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1036 pStationaryLightsStack->AddLight(
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1037 decor->vPosition.x,
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1038 decor->vPosition.y,
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1039 decor->vPosition.z + decor_desc->uDecorationHeight / 2,
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1040 a5,
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1041 v14,
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1042 v15,
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1043 v16,
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1044 byte_4E94D0);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1045 }
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1046 v17 = (decor->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16;
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1047 if (pGame->pIndoorCameraD3D->sRotationX)
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1048 {
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1049 v40 = (decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1050 v18 = ((unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16)
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1051 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1052 v42 = v18;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1053 b = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1054 a5 = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1055 v40 = (decor->vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1056 v41 = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1057 v19 = (unsigned __int64)(v18 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1058 v20 = v19 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16);
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1059 v39 = v19 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16);
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
1060 if ( v20 >= 262144 && v20 <= pODMRenderParams->shading_dist_mist << 16 )
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1061 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1062 v21 = a5 - b;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1063 v41 = a5 - b;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1064 a5 = (unsigned __int64)(v42 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1065 b = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1066 v22 = ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) - a5;
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1067 LABEL_30:
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1068 v42 = v22;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1069 v40 = 2 * abs(v20);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1070 v23 = abs(v21);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1071 if ( v40 >= v23 )
0
Ritor1
parents:
diff changeset
1072 {
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1073 LODWORD(v24) = 0;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
1074 HIDWORD(v24) = SLOWORD(pODMRenderParams->int_fov_rad);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1075 a5 = v24 / v39;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1076 v25 = pViewport->uScreenCenterX
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1077 - ((signed int)(((unsigned __int64)(v24 / v39 * v41) >> 16) + 32768) >> 16);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1078 b = (unsigned __int64)(a5 * (signed __int64)v42) >> 16;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1079 v41 = v24 / v39;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1080 v40 = pViewport->uScreenCenterY
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1081 - ((signed int)(((unsigned __int64)(a5 * (signed __int64)v42) >> 16) + 32768) >> 16);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1082 v42 = v8->scale;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1083 v41 = (unsigned __int64)(v42 * v24 / v39) >> 16;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1084 v37 = (unsigned __int16 *)&v8->pHwSpriteIDs[(int)v37];
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1085 if ( pRenderer->pRenderD3D )
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1086 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1087 v26 = v41;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1088 v42 = pSprites_LOD->pHardwareSprites[(signed __int16)*v37].uBufferWidth >> 1;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1089 b = (unsigned __int64)(v42 * (signed __int64)v41) >> 16;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1090 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1091 else
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1092 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1093 v26 = v41;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1094 v42 = pSprites_LOD->pSpriteHeaders[(signed __int16)*v37].uWidth >> 1;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1095 b = (unsigned __int64)(v42 * (signed __int64)v41) >> 16;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1096 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1097 if ( b + v25 >= (signed int)pViewport->uViewportTL_X && v25 - b <= (signed int)pViewport->uViewportBR_X )
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1098 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1099 if (::uNumBillboardsToDraw >= 500)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1100 return;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1101 v27 = &pBillboardRenderList[::uNumBillboardsToDraw++];
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1102 ++uNumDecorationsDrawnThisFrame;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1103 v27->uHwSpriteID = *v37;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1104 v28 = v8->uPaletteIndex;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1105 v27->_screenspace_x_scaler_packedfloat = v26;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1106 v27->_screenspace_y_scaler_packedfloat = v26;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1107 v29 = v38;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1108 v27->uScreenSpaceX = v25;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1109 HIBYTE(v29) |= 2u;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1110 v27->uPalette = v28;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1111 v27->field_1E = v29;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1112 v27->world_x = decor->vPosition.x;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1113 v27->world_y = decor->vPosition.y;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1114 v27->world_z = decor->vPosition.z;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1115 v27->uScreenSpaceY = v40;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1116 HIWORD(v30) = HIWORD(v39);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1117 v31 = PID(OBJECT_Decoration,i);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1118 LOWORD(v30) = 0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1119 v27->uIndoorSectorID = 0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1120 v27->sZValue = v30 + v31;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1121 v27->dimming_level = 0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1122 v27->pSpriteFrame = v8;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1123 v27->uTintColor = 0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1124 }
0
Ritor1
parents:
diff changeset
1125 }
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1126 goto LABEL_38;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1127 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1128 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1129 else
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1130 {
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1131 v42 = (decor->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16;
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1132 v40 = (decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1133 b = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1134 a5 = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1135 v20 = b + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16);
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1136 v39 = b + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16);
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
1137 if ( v20 >= 262144 && v20 <= pODMRenderParams->shading_dist_mist << 16 )
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1138 {
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1139 a5 = (unsigned __int64)(v42 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1140 b = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1141 v21 = ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - a5;
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
1142 v41 = ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - a5;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1143 v22 = (decor->vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16;
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1144 goto LABEL_30;
0
Ritor1
parents:
diff changeset
1145 }
Ritor1
parents:
diff changeset
1146 }
Ritor1
parents:
diff changeset
1147 }
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1148 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1149 else
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1150 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1151 memset(&local_0, 0, 0x68u);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1152 v3 = (double)*((signed int *)v0 - 1);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1153 local_0.type = ParticleType_Bitmap | ParticleType_Rotating | ParticleType_8;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1154 local_0.uDiffuse = 0xFF3C1E;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1155 local_0.x = v3;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1156 local_0.y = (double)*(signed int *)v0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1157 local_0.z = (double)*((signed int *)v0 + 1);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1158 local_0.r = 0.0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1159 local_0.g = 0.0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1160 local_0.b = 0.0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1161 local_0.flt_28 = 1.0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1162 local_0.timeToLive = (rand() & 0x80) + 128;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1163 local_0.uTextureID = pBitmaps_LOD->LoadTexture("effpar01");
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1164 pGame->pParticleEngine->AddParticle(&local_0);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1165 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1166 }
0
Ritor1
parents:
diff changeset
1167 LABEL_38:
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
1168 ;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
1169 //++v35;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
1170 //v0 += 32;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
1171 }
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
1172 //while ( v35 < (signed int)uNumLevelDecorations );
0
Ritor1
parents:
diff changeset
1173 }
Ritor1
parents:
diff changeset
1174
Ritor1
parents:
diff changeset
1175 //----- (0049D717) --------------------------------------------------------
Ritor1
parents:
diff changeset
1176 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst)
Ritor1
parents:
diff changeset
1177 {
Ritor1
parents:
diff changeset
1178 HRESULT v2; // esi@2
Ritor1
parents:
diff changeset
1179
Ritor1
parents:
diff changeset
1180 if ( Src->dwFlags & 0x400 | 0x2000 )
Ritor1
parents:
diff changeset
1181 {
Ritor1
parents:
diff changeset
1182 v2 = 0;
Ritor1
parents:
diff changeset
1183 if ( Src->dwRGBBitCount == 16 && !Src->dwRBitMask )
Ritor1
parents:
diff changeset
1184 goto LABEL_6;
Ritor1
parents:
diff changeset
1185 if ( !Dst->dwSize )
Ritor1
parents:
diff changeset
1186 {
Ritor1
parents:
diff changeset
1187 v2 = 1;
Ritor1
parents:
diff changeset
1188 LABEL_6:
Ritor1
parents:
diff changeset
1189 memcpy(Dst, Src, 0x20u);
Ritor1
parents:
diff changeset
1190 return v2;
Ritor1
parents:
diff changeset
1191 }
Ritor1
parents:
diff changeset
1192 }
Ritor1
parents:
diff changeset
1193 return 1;
Ritor1
parents:
diff changeset
1194 }
Ritor1
parents:
diff changeset
1195
Ritor1
parents:
diff changeset
1196 //----- (0049DC28) --------------------------------------------------------
Ritor1
parents:
diff changeset
1197 void RenderD3D::GetAvailableDevices(RenderD3D__DevInfo **pOutDevices)
Ritor1
parents:
diff changeset
1198 {
Ritor1
parents:
diff changeset
1199 RenderD3D__DevInfo *v2; // eax@1
Ritor1
parents:
diff changeset
1200
Ritor1
parents:
diff changeset
1201 v2 = new RenderD3D__DevInfo[4];// 4 items
Ritor1
parents:
diff changeset
1202 *pOutDevices = v2;
Ritor1
parents:
diff changeset
1203 memset(v2, 0, 0xA0u);
Ritor1
parents:
diff changeset
1204 DirectDrawEnumerateA((LPDDENUMCALLBACKA)RenderD3D__DeviceEnumerator, *pOutDevices);
Ritor1
parents:
diff changeset
1205 }
Ritor1
parents:
diff changeset
1206
Ritor1
parents:
diff changeset
1207 //----- (0049DC58) --------------------------------------------------------
Ritor1
parents:
diff changeset
1208 RenderD3D::RenderD3D()
Ritor1
parents:
diff changeset
1209 {
Ritor1
parents:
diff changeset
1210 RenderD3D *v1; // esi@1
Ritor1
parents:
diff changeset
1211
Ritor1
parents:
diff changeset
1212 v1 = this;
Ritor1
parents:
diff changeset
1213 this->pHost = 0;
Ritor1
parents:
diff changeset
1214 this->pDirect3D = 0;
Ritor1
parents:
diff changeset
1215 this->pUnk = 0;
Ritor1
parents:
diff changeset
1216 this->pBackBuffer = 0;
Ritor1
parents:
diff changeset
1217 this->pFrontBuffer = 0;
Ritor1
parents:
diff changeset
1218 this->pZBuffer = 0;
Ritor1
parents:
diff changeset
1219 this->pDevice = 0;
Ritor1
parents:
diff changeset
1220 this->pViewport = 0;
Ritor1
parents:
diff changeset
1221 this->field_40 = 1;
Ritor1
parents:
diff changeset
1222 this->field_44 = 10;
Ritor1
parents:
diff changeset
1223 GetAvailableDevices(&this->pAvailableDevices);
Ritor1
parents:
diff changeset
1224 }
Ritor1
parents:
diff changeset
1225
Ritor1
parents:
diff changeset
1226 //----- (0049DC90) --------------------------------------------------------
Ritor1
parents:
diff changeset
1227 void RenderD3D::Release()
Ritor1
parents:
diff changeset
1228 {
Ritor1
parents:
diff changeset
1229 RenderD3D *v1; // esi@1
Ritor1
parents:
diff changeset
1230 IDirectDraw4 *v2; // eax@2
Ritor1
parents:
diff changeset
1231 signed int v3; // edi@4
Ritor1
parents:
diff changeset
1232 IDirect3DViewport3 *v4; // eax@22
Ritor1
parents:
diff changeset
1233 IUnknown *v5; // eax@24
Ritor1
parents:
diff changeset
1234 IDirectDrawSurface4 *v6; // eax@26
Ritor1
parents:
diff changeset
1235 IDirect3DDevice3 *v7; // eax@28
Ritor1
parents:
diff changeset
1236 IDirect3D3 *v8; // eax@30
Ritor1
parents:
diff changeset
1237 IDirectDrawSurface4 *v9; // eax@32
Ritor1
parents:
diff changeset
1238 IDirectDrawSurface4 *v10; // eax@34
Ritor1
parents:
diff changeset
1239 IDirectDraw4 *v11; // eax@36
Ritor1
parents:
diff changeset
1240
Ritor1
parents:
diff changeset
1241 v1 = this;
Ritor1
parents:
diff changeset
1242 if ( !this->bWindowed )
Ritor1
parents:
diff changeset
1243 {
Ritor1
parents:
diff changeset
1244 v2 = this->pHost;
Ritor1
parents:
diff changeset
1245 if ( v2 )
Ritor1
parents:
diff changeset
1246 {
Ritor1
parents:
diff changeset
1247 v2->RestoreDisplayMode();
Ritor1
parents:
diff changeset
1248 v1->pHost->SetCooperativeLevel(v1->hWindow, 8u);
Ritor1
parents:
diff changeset
1249 v1->pHost->FlipToGDISurface();
Ritor1
parents:
diff changeset
1250 }
Ritor1
parents:
diff changeset
1251 }
Ritor1
parents:
diff changeset
1252 v3 = 0;
Ritor1
parents:
diff changeset
1253 do
Ritor1
parents:
diff changeset
1254 {
Ritor1
parents:
diff changeset
1255 if ( v1->pAvailableDevices[v3].pDriverName )
Ritor1
parents:
diff changeset
1256 {
Ritor1
parents:
diff changeset
1257 free(v1->pAvailableDevices[v3].pDriverName);
Ritor1
parents:
diff changeset
1258 v1->pAvailableDevices[v3].pDriverName = 0;
Ritor1
parents:
diff changeset
1259 }
Ritor1
parents:
diff changeset
1260 if ( v1->pAvailableDevices[v3].pDeviceDesc )
Ritor1
parents:
diff changeset
1261 {
Ritor1
parents:
diff changeset
1262 free(v1->pAvailableDevices[v3].pDeviceDesc);
Ritor1
parents:
diff changeset
1263 v1->pAvailableDevices[v3].pDeviceDesc = 0;
Ritor1
parents:
diff changeset
1264 }
Ritor1
parents:
diff changeset
1265 if ( v1->pAvailableDevices[v3].pDDraw4DevDesc )
Ritor1
parents:
diff changeset
1266 {
Ritor1
parents:
diff changeset
1267 free(v1->pAvailableDevices[v3].pDDraw4DevDesc);
Ritor1
parents:
diff changeset
1268 v1->pAvailableDevices[v3].pDDraw4DevDesc = 0;
Ritor1
parents:
diff changeset
1269 }
Ritor1
parents:
diff changeset
1270 if ( v1->pAvailableDevices[v3].pDirectDrawGUID )
Ritor1
parents:
diff changeset
1271 {
Ritor1
parents:
diff changeset
1272 free(v1->pAvailableDevices[v3].pDirectDrawGUID);
Ritor1
parents:
diff changeset
1273 v1->pAvailableDevices[v3].pDirectDrawGUID = 0;
Ritor1
parents:
diff changeset
1274 }
Ritor1
parents:
diff changeset
1275 if ( v1->pAvailableDevices[v3].pName )
Ritor1
parents:
diff changeset
1276 {
Ritor1
parents:
diff changeset
1277 free(v1->pAvailableDevices[v3].pName);
Ritor1
parents:
diff changeset
1278 v1->pAvailableDevices[v3].pName = 0;
Ritor1
parents:
diff changeset
1279 }
Ritor1
parents:
diff changeset
1280 if ( v1->pAvailableDevices[v3].pDescription )
Ritor1
parents:
diff changeset
1281 {
Ritor1
parents:
diff changeset
1282 free(v1->pAvailableDevices[v3].pDescription);
Ritor1
parents:
diff changeset
1283 v1->pAvailableDevices[v3].pDescription = 0;
Ritor1
parents:
diff changeset
1284 }
Ritor1
parents:
diff changeset
1285 if ( v1->pAvailableDevices[v3].pGUID )
Ritor1
parents:
diff changeset
1286 {
Ritor1
parents:
diff changeset
1287 free(v1->pAvailableDevices[v3].pGUID);
Ritor1
parents:
diff changeset
1288 v1->pAvailableDevices[v3].pGUID = 0;
Ritor1
parents:
diff changeset
1289 }
Ritor1
parents:
diff changeset
1290 ++v3;
Ritor1
parents:
diff changeset
1291 }
Ritor1
parents:
diff changeset
1292 while ( v3 < 4 );
Ritor1
parents:
diff changeset
1293 if ( v1->pAvailableDevices )
Ritor1
parents:
diff changeset
1294 {
Ritor1
parents:
diff changeset
1295 free(v1->pAvailableDevices);
Ritor1
parents:
diff changeset
1296 v1->pAvailableDevices = 0;
Ritor1
parents:
diff changeset
1297 }
Ritor1
parents:
diff changeset
1298 v4 = v1->pViewport;
Ritor1
parents:
diff changeset
1299 if ( v4 )
Ritor1
parents:
diff changeset
1300 {
Ritor1
parents:
diff changeset
1301 v4->Release();
Ritor1
parents:
diff changeset
1302 v1->pViewport = 0;
Ritor1
parents:
diff changeset
1303 }
Ritor1
parents:
diff changeset
1304 v5 = v1->pUnk;
Ritor1
parents:
diff changeset
1305 if ( v5 )
Ritor1
parents:
diff changeset
1306 {
Ritor1
parents:
diff changeset
1307 v5->Release();
Ritor1
parents:
diff changeset
1308 v1->pUnk = 0;
Ritor1
parents:
diff changeset
1309 }
Ritor1
parents:
diff changeset
1310 v6 = v1->pZBuffer;
Ritor1
parents:
diff changeset
1311 if ( v6 )
Ritor1
parents:
diff changeset
1312 {
Ritor1
parents:
diff changeset
1313 v6->Release();
Ritor1
parents:
diff changeset
1314 v1->pZBuffer = 0;
Ritor1
parents:
diff changeset
1315 }
Ritor1
parents:
diff changeset
1316 v7 = v1->pDevice;
Ritor1
parents:
diff changeset
1317 if ( v7 )
Ritor1
parents:
diff changeset
1318 {
Ritor1
parents:
diff changeset
1319 v7->Release();
Ritor1
parents:
diff changeset
1320 v1->pDevice = 0;
Ritor1
parents:
diff changeset
1321 }
Ritor1
parents:
diff changeset
1322 v8 = v1->pDirect3D;
Ritor1
parents:
diff changeset
1323 if ( v8 )
Ritor1
parents:
diff changeset
1324 {
Ritor1
parents:
diff changeset
1325 v8->Release();
Ritor1
parents:
diff changeset
1326 v1->pDirect3D = 0;
Ritor1
parents:
diff changeset
1327 }
Ritor1
parents:
diff changeset
1328 v9 = v1->pBackBuffer;
Ritor1
parents:
diff changeset
1329 if ( v9 )
Ritor1
parents:
diff changeset
1330 {
Ritor1
parents:
diff changeset
1331 v9->Release();
Ritor1
parents:
diff changeset
1332 v1->pBackBuffer = 0;
Ritor1
parents:
diff changeset
1333 }
Ritor1
parents:
diff changeset
1334 v10 = v1->pFrontBuffer;
Ritor1
parents:
diff changeset
1335 if ( v10 )
Ritor1
parents:
diff changeset
1336 {
Ritor1
parents:
diff changeset
1337 v10->Release();
Ritor1
parents:
diff changeset
1338 v1->pFrontBuffer = 0;
Ritor1
parents:
diff changeset
1339 }
Ritor1
parents:
diff changeset
1340 v11 = v1->pHost;
Ritor1
parents:
diff changeset
1341 if ( v11 )
Ritor1
parents:
diff changeset
1342 {
Ritor1
parents:
diff changeset
1343 v11->Release();
Ritor1
parents:
diff changeset
1344 v1->pHost = 0;
Ritor1
parents:
diff changeset
1345 }
Ritor1
parents:
diff changeset
1346 }
Ritor1
parents:
diff changeset
1347
Ritor1
parents:
diff changeset
1348 //----- (0049DE14) --------------------------------------------------------
Ritor1
parents:
diff changeset
1349 bool RenderD3D::CreateDevice(unsigned int uDeviceID, int bWindowed, HWND hWnd)
Ritor1
parents:
diff changeset
1350 {
Ritor1
parents:
diff changeset
1351 //IDirectDraw4 *v8; // eax@12
Ritor1
parents:
diff changeset
1352 //IDirectDraw4 *v9; // eax@16
Ritor1
parents:
diff changeset
1353 //IDirectDraw4 *v10; // eax@20
Ritor1
parents:
diff changeset
1354 //IDirectDraw4 *v13; // eax@35
Ritor1
parents:
diff changeset
1355 const char *v23; // [sp-4h] [bp-DCh]@9
Ritor1
parents:
diff changeset
1356 const char *v24; // [sp-4h] [bp-DCh]@13
Ritor1
parents:
diff changeset
1357 const char *v25; // [sp-4h] [bp-DCh]@19
Ritor1
parents:
diff changeset
1358 DWORD v26; // [sp-4h] [bp-DCh]@30
Ritor1
parents:
diff changeset
1359 DDSCAPS2 v27; // [sp+Ch] [bp-CCh]@37
Ritor1
parents:
diff changeset
1360 DDSURFACEDESC2 ddsd2; // [sp+1Ch] [bp-BCh]@11
Ritor1
parents:
diff changeset
1361 D3DVIEWPORT2 d3dvp2; // [sp+98h] [bp-40h]@28
Ritor1
parents:
diff changeset
1362 IDirectDrawClipper *v30; // [sp+C4h] [bp-14h]@18
Ritor1
parents:
diff changeset
1363 LPDIRECTDRAW lpDD; // [sp+C8h] [bp-10h]@1
Ritor1
parents:
diff changeset
1364
Ritor1
parents:
diff changeset
1365 this->bWindowed = bWindowed;
Ritor1
parents:
diff changeset
1366 this->hWindow = hWnd;
Ritor1
parents:
diff changeset
1367
Ritor1
parents:
diff changeset
1368 if (FAILED(DirectDrawCreate(pAvailableDevices[uDeviceID].pDirectDrawGUID, &lpDD, 0)))
Ritor1
parents:
diff changeset
1369 {
Ritor1
parents:
diff changeset
1370 sprintf(pErrorMessage, "Init - Failed to create DirectDraw interface.\n");
Ritor1
parents:
diff changeset
1371 return 0;
Ritor1
parents:
diff changeset
1372 }
Ritor1
parents:
diff changeset
1373
Ritor1
parents:
diff changeset
1374 if (FAILED(lpDD->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pHost)))
Ritor1
parents:
diff changeset
1375 {
Ritor1
parents:
diff changeset
1376 sprintf(pErrorMessage, "Init - Failed to create DirectDraw4 interface.\n");
Ritor1
parents:
diff changeset
1377 if (lpDD)
Ritor1
parents:
diff changeset
1378 lpDD->Release();
Ritor1
parents:
diff changeset
1379 return 0;
Ritor1
parents:
diff changeset
1380 }
Ritor1
parents:
diff changeset
1381 lpDD->Release();
Ritor1
parents:
diff changeset
1382 lpDD = 0;
Ritor1
parents:
diff changeset
1383
Ritor1
parents:
diff changeset
1384 if (bWindowed && !pAvailableDevices[uDeviceID].pDirectDrawGUID)
Ritor1
parents:
diff changeset
1385 {
Ritor1
parents:
diff changeset
1386 if (FAILED(pHost->SetCooperativeLevel(hWnd, DDSCL_MULTITHREADED | DDSCL_NORMAL)))
Ritor1
parents:
diff changeset
1387 {
Ritor1
parents:
diff changeset
1388 v23 = "Init - Failed to set cooperative level.\n";
Ritor1
parents:
diff changeset
1389 sprintf(pErrorMessage, v23);
Ritor1
parents:
diff changeset
1390 LABEL_65:
Ritor1
parents:
diff changeset
1391 if (pHost)
Ritor1
parents:
diff changeset
1392 {
Ritor1
parents:
diff changeset
1393 pHost->Release();
Ritor1
parents:
diff changeset
1394 pHost = 0;
Ritor1
parents:
diff changeset
1395 }
Ritor1
parents:
diff changeset
1396 return 0;
Ritor1
parents:
diff changeset
1397 }
Ritor1
parents:
diff changeset
1398 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2));
Ritor1
parents:
diff changeset
1399 ddsd2.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
1400 ddsd2.dwFlags = DDSD_CAPS;
Ritor1
parents:
diff changeset
1401 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE;
Ritor1
parents:
diff changeset
1402 if ( !pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) )
Ritor1
parents:
diff changeset
1403 {
Ritor1
parents:
diff changeset
1404 ddsd2.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
1405 pHost->GetDisplayMode(&ddsd2);
Ritor1
parents:
diff changeset
1406 if ( ddsd2.ddpfPixelFormat.dwRGBBitCount != 16 )
Ritor1
parents:
diff changeset
1407 {
Ritor1
parents:
diff changeset
1408 v24 = "Init - Desktop isn't in 16 bit mode.\n";
Ritor1
parents:
diff changeset
1409 goto LABEL_14;
Ritor1
parents:
diff changeset
1410 }
Ritor1
parents:
diff changeset
1411
Ritor1
parents:
diff changeset
1412 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT;
Ritor1
parents:
diff changeset
1413 ddsd2.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN | DDSCAPS_3DDEVICE;
Ritor1
parents:
diff changeset
1414 ddsd2.dwWidth = 640;
Ritor1
parents:
diff changeset
1415 ddsd2.dwHeight = 480;
Ritor1
parents:
diff changeset
1416 if (pHost->CreateSurface(&ddsd2, &pBackBuffer, 0) )
Ritor1
parents:
diff changeset
1417 {
Ritor1
parents:
diff changeset
1418 v24 = "Init - Failed to create back buffer.\n";
Ritor1
parents:
diff changeset
1419 LABEL_14:
Ritor1
parents:
diff changeset
1420 sprintf(pErrorMessage, v24);
Ritor1
parents:
diff changeset
1421 if (pFrontBuffer)
Ritor1
parents:
diff changeset
1422 {
Ritor1
parents:
diff changeset
1423 pFrontBuffer->Release();
Ritor1
parents:
diff changeset
1424 pFrontBuffer = 0;
Ritor1
parents:
diff changeset
1425 }
Ritor1
parents:
diff changeset
1426 goto LABEL_65;
Ritor1
parents:
diff changeset
1427 }
Ritor1
parents:
diff changeset
1428 if ( pHost->CreateClipper(0, &v30, 0) )
Ritor1
parents:
diff changeset
1429 {
Ritor1
parents:
diff changeset
1430 v25 = "Init - Failed to create clipper.\n";
Ritor1
parents:
diff changeset
1431 goto LABEL_45;
Ritor1
parents:
diff changeset
1432 }
Ritor1
parents:
diff changeset
1433 v30->SetHWnd(0, hWnd);
Ritor1
parents:
diff changeset
1434 pFrontBuffer->SetClipper(v30);
Ritor1
parents:
diff changeset
1435
Ritor1
parents:
diff changeset
1436 v30->Release();
Ritor1
parents:
diff changeset
1437 v30 = 0;
Ritor1
parents:
diff changeset
1438
Ritor1
parents:
diff changeset
1439 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D);
Ritor1
parents:
diff changeset
1440
Ritor1
parents:
diff changeset
1441 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT;
Ritor1
parents:
diff changeset
1442 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER;
Ritor1
parents:
diff changeset
1443 ddsd2.dwWidth = 640;
Ritor1
parents:
diff changeset
1444 ddsd2.dwHeight = 480;
Ritor1
parents:
diff changeset
1445
Ritor1
parents:
diff changeset
1446 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID,
Ritor1
parents:
diff changeset
1447 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator,
Ritor1
parents:
diff changeset
1448 &ddsd2.ddpfPixelFormat) )
Ritor1
parents:
diff changeset
1449 goto LABEL_21;
Ritor1
parents:
diff changeset
1450 if ( uDeviceID == 2 || uDeviceID == 3 )
Ritor1
parents:
diff changeset
1451 ddsd2.ddsCaps.dwCaps |= DDSCAPS_SYSTEMMEMORY;
Ritor1
parents:
diff changeset
1452
Ritor1
parents:
diff changeset
1453 if ( !pHost->CreateSurface(&ddsd2, &pZBuffer, 0) )
Ritor1
parents:
diff changeset
1454 {
Ritor1
parents:
diff changeset
1455 if ( !pBackBuffer->AddAttachedSurface(pZBuffer) )
Ritor1
parents:
diff changeset
1456 {
Ritor1
parents:
diff changeset
1457 if ( !pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID,
Ritor1
parents:
diff changeset
1458 pBackBuffer,
Ritor1
parents:
diff changeset
1459 &pDevice,
Ritor1
parents:
diff changeset
1460 0) )
Ritor1
parents:
diff changeset
1461 {
Ritor1
parents:
diff changeset
1462 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2));
Ritor1
parents:
diff changeset
1463 d3dvp2.dvClipWidth = 2.0;
Ritor1
parents:
diff changeset
1464 d3dvp2.dvClipY = 1.0;
Ritor1
parents:
diff changeset
1465 d3dvp2.dvClipHeight = 2.0;
Ritor1
parents:
diff changeset
1466 d3dvp2.dvMaxZ = 1.0;
Ritor1
parents:
diff changeset
1467 d3dvp2.dvMinZ = 0.0;
Ritor1
parents:
diff changeset
1468 goto LABEL_54;
Ritor1
parents:
diff changeset
1469 }
Ritor1
parents:
diff changeset
1470 LABEL_51:
Ritor1
parents:
diff changeset
1471 sprintf(pErrorMessage, "Init - Failed to create D3D device.\n");
Ritor1
parents:
diff changeset
1472 if (pDirect3D)
Ritor1
parents:
diff changeset
1473 {
Ritor1
parents:
diff changeset
1474 pDirect3D->Release();
Ritor1
parents:
diff changeset
1475 pDirect3D = 0;
Ritor1
parents:
diff changeset
1476 }
Ritor1
parents:
diff changeset
1477 goto LABEL_59;
Ritor1
parents:
diff changeset
1478 }
Ritor1
parents:
diff changeset
1479 LABEL_48:
Ritor1
parents:
diff changeset
1480 sprintf(pErrorMessage, "Init - Failed to attach z-buffer to back buffer.\n");
Ritor1
parents:
diff changeset
1481 if (pZBuffer)
Ritor1
parents:
diff changeset
1482 {
Ritor1
parents:
diff changeset
1483 pZBuffer->Release();
Ritor1
parents:
diff changeset
1484 pZBuffer = 0;
Ritor1
parents:
diff changeset
1485 }
Ritor1
parents:
diff changeset
1486 goto LABEL_61;
Ritor1
parents:
diff changeset
1487 }
Ritor1
parents:
diff changeset
1488 goto LABEL_44;
Ritor1
parents:
diff changeset
1489 }
Ritor1
parents:
diff changeset
1490 LABEL_36:
Ritor1
parents:
diff changeset
1491 v23 = "Init - Failed to create front buffer.\n";
Ritor1
parents:
diff changeset
1492 sprintf(pErrorMessage, v23);
Ritor1
parents:
diff changeset
1493 goto LABEL_65;
Ritor1
parents:
diff changeset
1494 }
Ritor1
parents:
diff changeset
1495 if ( uDeviceID == 1 )
Ritor1
parents:
diff changeset
1496 v26 = 1045;
Ritor1
parents:
diff changeset
1497 else
Ritor1
parents:
diff changeset
1498 v26 = 1041;
Ritor1
parents:
diff changeset
1499 if (pHost->SetCooperativeLevel(hWnd, v26) )
Ritor1
parents:
diff changeset
1500 {
Ritor1
parents:
diff changeset
1501 v23 = "Init - Failed to set cooperative level.\n";
Ritor1
parents:
diff changeset
1502 sprintf(pErrorMessage, v23);
Ritor1
parents:
diff changeset
1503 goto LABEL_65;
Ritor1
parents:
diff changeset
1504 }
Ritor1
parents:
diff changeset
1505 if (pHost->SetDisplayMode(640u, 480u, 16u, 0, 0) )
Ritor1
parents:
diff changeset
1506 {
Ritor1
parents:
diff changeset
1507 v23 = "Init - Failed to set display mode.\n";
Ritor1
parents:
diff changeset
1508 sprintf(pErrorMessage, v23);
Ritor1
parents:
diff changeset
1509 goto LABEL_65;
Ritor1
parents:
diff changeset
1510 }
Ritor1
parents:
diff changeset
1511
Ritor1
parents:
diff changeset
1512 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2));
Ritor1
parents:
diff changeset
1513 ddsd2.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
1514 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;
Ritor1
parents:
diff changeset
1515 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_3DDEVICE | DDSCAPS_FLIP | DDSCAPS_COMPLEX;
Ritor1
parents:
diff changeset
1516 ddsd2.dwBackBufferCount = 1;
Ritor1
parents:
diff changeset
1517 if ( pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) )
Ritor1
parents:
diff changeset
1518 goto LABEL_36;
Ritor1
parents:
diff changeset
1519 //a3a = &pBackBuffer;
Ritor1
parents:
diff changeset
1520 //v14 = *v34;
Ritor1
parents:
diff changeset
1521 memset(&v27, 0, sizeof(DDSCAPS2));
Ritor1
parents:
diff changeset
1522 v27.dwCaps = DDSCAPS_BACKBUFFER;
Ritor1
parents:
diff changeset
1523 //v33 = (IDirect3DDevice3 **)v14->GetAttachedSurface(&v27, &pBackBuffer);
Ritor1
parents:
diff changeset
1524 //hWnda = &pDirect3D;
Ritor1
parents:
diff changeset
1525 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D);
Ritor1
parents:
diff changeset
1526 if (FAILED(pFrontBuffer->GetAttachedSurface(&v27, &pBackBuffer)))
Ritor1
parents:
diff changeset
1527 {
Ritor1
parents:
diff changeset
1528 v25 = "Init - Failed to get D3D interface.\n";
Ritor1
parents:
diff changeset
1529 goto LABEL_45;
Ritor1
parents:
diff changeset
1530 }
Ritor1
parents:
diff changeset
1531
Ritor1
parents:
diff changeset
1532 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT;
Ritor1
parents:
diff changeset
1533 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER;
Ritor1
parents:
diff changeset
1534 ddsd2.dwWidth = 640;
Ritor1
parents:
diff changeset
1535 ddsd2.dwHeight = 480;
Ritor1
parents:
diff changeset
1536 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID,
Ritor1
parents:
diff changeset
1537 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator,
Ritor1
parents:
diff changeset
1538 &ddsd2.ddpfPixelFormat) )
Ritor1
parents:
diff changeset
1539 {
Ritor1
parents:
diff changeset
1540 LABEL_21:
Ritor1
parents:
diff changeset
1541 v25 = "Init - Failed to enumerate Z buffer formats.\n";
Ritor1
parents:
diff changeset
1542 goto LABEL_45;
Ritor1
parents:
diff changeset
1543 }
Ritor1
parents:
diff changeset
1544 if ( uDeviceID == 2 || uDeviceID == 3 )
Ritor1
parents:
diff changeset
1545 BYTE1(ddsd2.ddsCaps.dwCaps) |= 8u;
Ritor1
parents:
diff changeset
1546 //uDeviceIDa = &pZBuffer;
Ritor1
parents:
diff changeset
1547 if (pHost->CreateSurface(&ddsd2, &pZBuffer, 0) )
Ritor1
parents:
diff changeset
1548 {
Ritor1
parents:
diff changeset
1549 LABEL_44:
Ritor1
parents:
diff changeset
1550 v25 = "Init - Failed to create z-buffer.\n";
Ritor1
parents:
diff changeset
1551 LABEL_45:
Ritor1
parents:
diff changeset
1552 sprintf(pErrorMessage, v25);
Ritor1
parents:
diff changeset
1553 if (pBackBuffer)
Ritor1
parents:
diff changeset
1554 {
Ritor1
parents:
diff changeset
1555 pBackBuffer->Release();
Ritor1
parents:
diff changeset
1556 pBackBuffer = 0;
Ritor1
parents:
diff changeset
1557 }
Ritor1
parents:
diff changeset
1558 LABEL_63:
Ritor1
parents:
diff changeset
1559 //v19 = &pFrontBuffer;
Ritor1
parents:
diff changeset
1560 if (pFrontBuffer)
Ritor1
parents:
diff changeset
1561 {
Ritor1
parents:
diff changeset
1562 pFrontBuffer->Release();
Ritor1
parents:
diff changeset
1563 pFrontBuffer= 0;
Ritor1
parents:
diff changeset
1564 }
Ritor1
parents:
diff changeset
1565 goto LABEL_65;
Ritor1
parents:
diff changeset
1566 }
Ritor1
parents:
diff changeset
1567 if (pBackBuffer->AddAttachedSurface(pZBuffer))
Ritor1
parents:
diff changeset
1568 goto LABEL_48;
Ritor1
parents:
diff changeset
1569 //v33 = &pDevice;
Ritor1
parents:
diff changeset
1570 if (pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID,
Ritor1
parents:
diff changeset
1571 pBackBuffer,
Ritor1
parents:
diff changeset
1572 &pDevice,
Ritor1
parents:
diff changeset
1573 0) )
Ritor1
parents:
diff changeset
1574 goto LABEL_51;
Ritor1
parents:
diff changeset
1575 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2));
Ritor1
parents:
diff changeset
1576 d3dvp2.dvClipWidth = 2.0;
Ritor1
parents:
diff changeset
1577 d3dvp2.dvClipY = 1.0;
Ritor1
parents:
diff changeset
1578 d3dvp2.dvClipHeight = 2.0;
Ritor1
parents:
diff changeset
1579 d3dvp2.dvMaxZ = 1.0;
Ritor1
parents:
diff changeset
1580
Ritor1
parents:
diff changeset
1581 LABEL_54:
Ritor1
parents:
diff changeset
1582 d3dvp2.dwSize = sizeof(D3DVIEWPORT2);
Ritor1
parents:
diff changeset
1583 //v17 = *hWnda;
Ritor1
parents:
diff changeset
1584 d3dvp2.dwWidth = 640;
Ritor1
parents:
diff changeset
1585 d3dvp2.dwHeight = 480;
Ritor1
parents:
diff changeset
1586 d3dvp2.dvClipX = -1.0;
Ritor1
parents:
diff changeset
1587 //v18 = v17->lpVtbl;
Ritor1
parents:
diff changeset
1588 //v32 = &v4->pViewport;
Ritor1
parents:
diff changeset
1589 if (pDirect3D->CreateViewport(&pViewport, 0))
Ritor1
parents:
diff changeset
1590 {
Ritor1
parents:
diff changeset
1591 sprintf(pErrorMessage, "Init - Failed to create viewport.\n");
Ritor1
parents:
diff changeset
1592 if (pDevice)
Ritor1
parents:
diff changeset
1593 {
Ritor1
parents:
diff changeset
1594 pDevice->Release();
Ritor1
parents:
diff changeset
1595 pDevice = 0;
Ritor1
parents:
diff changeset
1596 }
Ritor1
parents:
diff changeset
1597 if (pDirect3D)
Ritor1
parents:
diff changeset
1598 {
Ritor1
parents:
diff changeset
1599 pDirect3D->Release();
Ritor1
parents:
diff changeset
1600 pDirect3D = 0;
Ritor1
parents:
diff changeset
1601 }
Ritor1
parents:
diff changeset
1602 LABEL_59:
Ritor1
parents:
diff changeset
1603 if (pZBuffer)
Ritor1
parents:
diff changeset
1604 {
Ritor1
parents:
diff changeset
1605 pZBuffer->Release();
Ritor1
parents:
diff changeset
1606 pZBuffer = 0;
Ritor1
parents:
diff changeset
1607 }
Ritor1
parents:
diff changeset
1608 LABEL_61:
Ritor1
parents:
diff changeset
1609 if (pBackBuffer)
Ritor1
parents:
diff changeset
1610 {
Ritor1
parents:
diff changeset
1611 pBackBuffer->Release();
Ritor1
parents:
diff changeset
1612 pBackBuffer = 0;
Ritor1
parents:
diff changeset
1613 }
Ritor1
parents:
diff changeset
1614 goto LABEL_63;
Ritor1
parents:
diff changeset
1615 }
Ritor1
parents:
diff changeset
1616
Ritor1
parents:
diff changeset
1617 pDevice->AddViewport(pViewport);
Ritor1
parents:
diff changeset
1618 pViewport->SetViewport2(&d3dvp2);
Ritor1
parents:
diff changeset
1619 pDevice->SetCurrentViewport(pViewport);
Ritor1
parents:
diff changeset
1620 return 1;
Ritor1
parents:
diff changeset
1621 }
Ritor1
parents:
diff changeset
1622
Ritor1
parents:
diff changeset
1623 //----- (0049E444) --------------------------------------------------------
Ritor1
parents:
diff changeset
1624 unsigned int RenderD3D::GetDeviceCaps()
Ritor1
parents:
diff changeset
1625 {
Ritor1
parents:
diff changeset
1626 unsigned int v1; // ebx@1
Ritor1
parents:
diff changeset
1627 RenderD3D *v2; // edi@1
Ritor1
parents:
diff changeset
1628 IDirect3DDevice3 *v3; // eax@1
Ritor1
parents:
diff changeset
1629 unsigned int result; // eax@2
Ritor1
parents:
diff changeset
1630 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-1F8h]@1
Ritor1
parents:
diff changeset
1631 D3DDEVICEDESC halCaps; // [sp+108h] [bp-FCh]@1
Ritor1
parents:
diff changeset
1632
Ritor1
parents:
diff changeset
1633 v1 = 0;
Ritor1
parents:
diff changeset
1634 v2 = this;
Ritor1
parents:
diff changeset
1635 memset(&halCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
1636 halCaps.dwSize = 252;
Ritor1
parents:
diff changeset
1637 memset(&refCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
1638 v3 = v2->pDevice;
Ritor1
parents:
diff changeset
1639 refCaps.dwSize = 252;
Ritor1
parents:
diff changeset
1640 if ( v3->GetCaps(&halCaps, &refCaps) )
Ritor1
parents:
diff changeset
1641 {
Ritor1
parents:
diff changeset
1642 result = 1;
Ritor1
parents:
diff changeset
1643 }
Ritor1
parents:
diff changeset
1644 else
Ritor1
parents:
diff changeset
1645 {
Ritor1
parents:
diff changeset
1646 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & 0x10) )
Ritor1
parents:
diff changeset
1647 v1 = 2;
Ritor1
parents:
diff changeset
1648 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & 2) )
Ritor1
parents:
diff changeset
1649 v1 |= 4u;
Ritor1
parents:
diff changeset
1650 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & 1) )
Ritor1
parents:
diff changeset
1651 v1 |= 8u;
Ritor1
parents:
diff changeset
1652 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & 0x20) )
Ritor1
parents:
diff changeset
1653 v1 |= 0x10u;
Ritor1
parents:
diff changeset
1654 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & 2) )
Ritor1
parents:
diff changeset
1655 v1 |= 0x20u;
Ritor1
parents:
diff changeset
1656 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & 4) )
Ritor1
parents:
diff changeset
1657 v1 |= 0x40u;
Ritor1
parents:
diff changeset
1658 if ( halCaps.dpcTriCaps.dwTextureCaps & 0x20 )
Ritor1
parents:
diff changeset
1659 LOBYTE(v1) = v1 | 0x80;
Ritor1
parents:
diff changeset
1660 result = v1;
Ritor1
parents:
diff changeset
1661 }
Ritor1
parents:
diff changeset
1662 return result;
Ritor1
parents:
diff changeset
1663 }
Ritor1
parents:
diff changeset
1664
Ritor1
parents:
diff changeset
1665 //----- (0049E4FC) --------------------------------------------------------
Ritor1
parents:
diff changeset
1666 void RenderD3D::ClearTarget(unsigned int bClearColor, unsigned int uClearColor, unsigned int bClearDepth, float z_clear)
Ritor1
parents:
diff changeset
1667 {
Ritor1
parents:
diff changeset
1668 uint uClearFlags = 0;
Ritor1
parents:
diff changeset
1669
Ritor1
parents:
diff changeset
1670 if (bClearColor)
Ritor1
parents:
diff changeset
1671 uClearFlags |= D3DCLEAR_TARGET;
Ritor1
parents:
diff changeset
1672 if (bClearDepth)
Ritor1
parents:
diff changeset
1673 uClearFlags |= D3DCLEAR_ZBUFFER;
Ritor1
parents:
diff changeset
1674
Ritor1
parents:
diff changeset
1675 D3DRECT rects[] = {{0, 0, 640, 480}};
Ritor1
parents:
diff changeset
1676 if (uClearFlags)
Ritor1
parents:
diff changeset
1677 pViewport->Clear2(1, rects, uClearFlags, uClearColor, z_clear, 0);
Ritor1
parents:
diff changeset
1678 }
Ritor1
parents:
diff changeset
1679
Ritor1
parents:
diff changeset
1680 //----- (0049E54D) --------------------------------------------------------
Ritor1
parents:
diff changeset
1681 void RenderD3D::Present(bool bForceBlit)
Ritor1
parents:
diff changeset
1682 {
Ritor1
parents:
diff changeset
1683 RECT v5; // [sp+18h] [bp-18h]@1
Ritor1
parents:
diff changeset
1684 struct tagPOINT Point; // [sp+28h] [bp-8h]@4
Ritor1
parents:
diff changeset
1685
Ritor1
parents:
diff changeset
1686 v5.left = 0;
Ritor1
parents:
diff changeset
1687 v5.top = 0;
Ritor1
parents:
diff changeset
1688 v5.bottom = 480;
Ritor1
parents:
diff changeset
1689 v5.right = 640;
Ritor1
parents:
diff changeset
1690
Ritor1
parents:
diff changeset
1691 if (bWindowed || bForceBlit)
Ritor1
parents:
diff changeset
1692 {
Ritor1
parents:
diff changeset
1693 RECT rc;
Ritor1
parents:
diff changeset
1694 GetClientRect(hWindow, &rc);
Ritor1
parents:
diff changeset
1695 Point.y = 0;
Ritor1
parents:
diff changeset
1696 Point.x = 0;
Ritor1
parents:
diff changeset
1697 ClientToScreen(hWindow, &Point);
Ritor1
parents:
diff changeset
1698 OffsetRect(&rc, Point.x, Point.y);
Ritor1
parents:
diff changeset
1699 pFrontBuffer->Blt(&rc, pBackBuffer, &v5, DDBLT_WAIT, 0);
Ritor1
parents:
diff changeset
1700 }
Ritor1
parents:
diff changeset
1701 else
Ritor1
parents:
diff changeset
1702 pFrontBuffer->Flip(0, 1);
Ritor1
parents:
diff changeset
1703 }
Ritor1
parents:
diff changeset
1704
Ritor1
parents:
diff changeset
1705 //----- (0049E5D4) --------------------------------------------------------
Ritor1
parents:
diff changeset
1706 bool RenderD3D::CreateTexture(unsigned int uTextureWidth, unsigned int uTextureHeight, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture, bool bAlphaChannel, bool bMipmaps, unsigned int uMinDeviceTexDim)
Ritor1
parents:
diff changeset
1707 {
Ritor1
parents:
diff changeset
1708 unsigned int v8; // edx@4
Ritor1
parents:
diff changeset
1709 unsigned int v9; // ebx@5
Ritor1
parents:
diff changeset
1710 unsigned int v10; // eax@5
Ritor1
parents:
diff changeset
1711 DWORD v11; // edx@5
Ritor1
parents:
diff changeset
1712 //int v12; // edx@7
Ritor1
parents:
diff changeset
1713 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-80h]@1
Ritor1
parents:
diff changeset
1714 //RenderD3D *v15; // [sp+88h] [bp-4h]@1
Ritor1
parents:
diff changeset
1715
Ritor1
parents:
diff changeset
1716 //v15 = this;
Ritor1
parents:
diff changeset
1717 memset(&ddsd2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
1718 ddsd2.dwSize = 0x7Cu;
Ritor1
parents:
diff changeset
1719 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT;
Ritor1
parents:
diff changeset
1720 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE;
Ritor1
parents:
diff changeset
1721 ddsd2.ddsCaps.dwCaps2 = DDSCAPS2_TEXTUREMANAGE;
Ritor1
parents:
diff changeset
1722 ddsd2.dwHeight = uTextureHeight;
Ritor1
parents:
diff changeset
1723 ddsd2.dwWidth = uTextureWidth;
Ritor1
parents:
diff changeset
1724 if ( bMipmaps )
Ritor1
parents:
diff changeset
1725 {
Ritor1
parents:
diff changeset
1726 if ( (signed int)uTextureHeight <= (signed int)uTextureWidth )
Ritor1
parents:
diff changeset
1727 {
Ritor1
parents:
diff changeset
1728 v8 = GetMaxMipLevels(uTextureHeight) - GetMaxMipLevels(uMinDeviceTexDim);
Ritor1
parents:
diff changeset
1729 LABEL_8:
Ritor1
parents:
diff changeset
1730 ddsd2.dwMipMapCount = v8;
Ritor1
parents:
diff changeset
1731 if ( !v8 )
Ritor1
parents:
diff changeset
1732 goto LABEL_12;
Ritor1
parents:
diff changeset
1733 goto LABEL_11;
Ritor1
parents:
diff changeset
1734 }
Ritor1
parents:
diff changeset
1735 if ( (signed int)uTextureWidth < (signed int)uMinDeviceTexDim )
Ritor1
parents:
diff changeset
1736 {
Ritor1
parents:
diff changeset
1737 v8 = GetMaxMipLevels(uMinDeviceTexDim);
Ritor1
parents:
diff changeset
1738 goto LABEL_8;
Ritor1
parents:
diff changeset
1739 }
Ritor1
parents:
diff changeset
1740 v9 = GetMaxMipLevels(uTextureWidth);
Ritor1
parents:
diff changeset
1741 v10 = GetMaxMipLevels(uMinDeviceTexDim);
Ritor1
parents:
diff changeset
1742 ddsd2.dwMipMapCount = v9 - v10;
Ritor1
parents:
diff changeset
1743 if ( v9 == v10 )
Ritor1
parents:
diff changeset
1744 {
Ritor1
parents:
diff changeset
1745 ddsd2.dwFlags = 0x1007u;
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1394
diff changeset
1746 __debugbreak(); // warning C4700: uninitialized local variable 'v11' used
0
Ritor1
parents:
diff changeset
1747 ddsd2.ddsCaps.dwCaps = v11;
Ritor1
parents:
diff changeset
1748 goto LABEL_12;
Ritor1
parents:
diff changeset
1749 }
Ritor1
parents:
diff changeset
1750 }
Ritor1
parents:
diff changeset
1751 else
Ritor1
parents:
diff changeset
1752 {
Ritor1
parents:
diff changeset
1753 ddsd2.dwMipMapCount = 1;
Ritor1
parents:
diff changeset
1754 }
Ritor1
parents:
diff changeset
1755 LABEL_11:
Ritor1
parents:
diff changeset
1756 ddsd2.dwFlags = DDSD_CAPS | DDSD_HEIGHT | DDSD_WIDTH | DDSD_PIXELFORMAT | DDSD_MIPMAPCOUNT;
Ritor1
parents:
diff changeset
1757 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_COMPLEX | DDSCAPS_MIPMAP;
Ritor1
parents:
diff changeset
1758 LABEL_12:
Ritor1
parents:
diff changeset
1759 ddsd2.ddpfPixelFormat.dwRGBBitCount = 16;
Ritor1
parents:
diff changeset
1760 ddsd2.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT);
Ritor1
parents:
diff changeset
1761 if (bAlphaChannel)
Ritor1
parents:
diff changeset
1762 {
Ritor1
parents:
diff changeset
1763 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB | DDPF_ALPHAPIXELS;
Ritor1
parents:
diff changeset
1764 ddsd2.ddpfPixelFormat.dwRBitMask = 0x7C00;
Ritor1
parents:
diff changeset
1765 ddsd2.ddpfPixelFormat.dwGBitMask = 0x03E0;
Ritor1
parents:
diff changeset
1766 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F;
Ritor1
parents:
diff changeset
1767 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0x8000u;
Ritor1
parents:
diff changeset
1768 }
Ritor1
parents:
diff changeset
1769 else
Ritor1
parents:
diff changeset
1770 {
Ritor1
parents:
diff changeset
1771 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB;
Ritor1
parents:
diff changeset
1772 ddsd2.ddpfPixelFormat.dwRBitMask = 0xF800;
Ritor1
parents:
diff changeset
1773 ddsd2.ddpfPixelFormat.dwGBitMask = 0x07E0;
Ritor1
parents:
diff changeset
1774 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F;
Ritor1
parents:
diff changeset
1775 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0;
Ritor1
parents:
diff changeset
1776 }
Ritor1
parents:
diff changeset
1777 if (FAILED(pHost->CreateSurface(&ddsd2, pOutSurface, 0)))
Ritor1
parents:
diff changeset
1778 return false;
Ritor1
parents:
diff changeset
1779 if (FAILED((*pOutSurface)->QueryInterface(IID_IDirect3DTexture2, (void **)pOutTexture)))
Ritor1
parents:
diff changeset
1780 {
Ritor1
parents:
diff changeset
1781 (*pOutSurface)->Release();
Ritor1
parents:
diff changeset
1782 *pOutSurface = 0;
Ritor1
parents:
diff changeset
1783 return false;
Ritor1
parents:
diff changeset
1784 }
Ritor1
parents:
diff changeset
1785 return true;
Ritor1
parents:
diff changeset
1786 }
Ritor1
parents:
diff changeset
1787
Ritor1
parents:
diff changeset
1788 //----- (004A5190) --------------------------------------------------------
Ritor1
parents:
diff changeset
1789 void RenderD3D::HandleLostResources()
Ritor1
parents:
diff changeset
1790 {
Ritor1
parents:
diff changeset
1791 pBitmaps_LOD->ReleaseLostHardwareTextures();
Ritor1
parents:
diff changeset
1792 pBitmaps_LOD->_410423_move_textures_to_device();
Ritor1
parents:
diff changeset
1793 pSprites_LOD->ReleaseLostHardwareSprites();
Ritor1
parents:
diff changeset
1794 }
Ritor1
parents:
diff changeset
1795
Ritor1
parents:
diff changeset
1796 //----- (004A2050) --------------------------------------------------------
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
1797 void Render::DrawPolygon(unsigned int uNumVertices, struct Polygon *a3, ODMFace *a4, IDirect3DTexture2 *pTexture)
0
Ritor1
parents:
diff changeset
1798 {
Ritor1
parents:
diff changeset
1799 Render *v5; // edi@1
Ritor1
parents:
diff changeset
1800 unsigned int v6; // ebx@1
Ritor1
parents:
diff changeset
1801 LightmapBuilder *v7; // esi@3
Ritor1
parents:
diff changeset
1802 int v8; // eax@7
Ritor1
parents:
diff changeset
1803 ODMFace *v9; // eax@12
Ritor1
parents:
diff changeset
1804 char *v10; // esi@12
Ritor1
parents:
diff changeset
1805 double v11; // st7@14
Ritor1
parents:
diff changeset
1806 double v12; // st7@14
Ritor1
parents:
diff changeset
1807 int v13; // eax@14
Ritor1
parents:
diff changeset
1808 ODMFace *v14; // ecx@14
Ritor1
parents:
diff changeset
1809 double v15; // st7@14
Ritor1
parents:
diff changeset
1810 float v16; // ST48_4@15
Ritor1
parents:
diff changeset
1811 int v17; // eax@15
Ritor1
parents:
diff changeset
1812 char v18; // zf@17
Ritor1
parents:
diff changeset
1813 HRESULT v19; // eax@18
Ritor1
parents:
diff changeset
1814 HRESULT v20; // eax@18
Ritor1
parents:
diff changeset
1815 HRESULT v21; // eax@20
Ritor1
parents:
diff changeset
1816 HRESULT v22; // eax@20
Ritor1
parents:
diff changeset
1817 unsigned int v23; // ecx@20
Ritor1
parents:
diff changeset
1818 char *v24; // eax@21
Ritor1
parents:
diff changeset
1819 HRESULT v25; // eax@23
Ritor1
parents:
diff changeset
1820 HRESULT v26; // eax@23
Ritor1
parents:
diff changeset
1821 HRESULT v27; // eax@24
Ritor1
parents:
diff changeset
1822 HRESULT v28; // eax@25
Ritor1
parents:
diff changeset
1823 HRESULT v29; // eax@25
Ritor1
parents:
diff changeset
1824 HRESULT v30; // eax@25
Ritor1
parents:
diff changeset
1825 HRESULT v31; // eax@25
Ritor1
parents:
diff changeset
1826 HRESULT v32; // eax@26
Ritor1
parents:
diff changeset
1827 unsigned int v33; // ecx@26
Ritor1
parents:
diff changeset
1828 char *v34; // eax@27
Ritor1
parents:
diff changeset
1829 int v35; // edx@28
Ritor1
parents:
diff changeset
1830 HRESULT v36; // eax@29
Ritor1
parents:
diff changeset
1831 HRESULT v37; // eax@29
Ritor1
parents:
diff changeset
1832 HRESULT v38; // eax@29
Ritor1
parents:
diff changeset
1833 HRESULT v39; // eax@29
Ritor1
parents:
diff changeset
1834 //IDirect3DDevice3Vtbl *v40; // ebx@29
Ritor1
parents:
diff changeset
1835 unsigned int v41; // eax@29
Ritor1
parents:
diff changeset
1836 HRESULT v42; // eax@30
Ritor1
parents:
diff changeset
1837 HRESULT v43; // eax@30
Ritor1
parents:
diff changeset
1838 HRESULT v44; // eax@30
Ritor1
parents:
diff changeset
1839 char *v45; // esi@34
Ritor1
parents:
diff changeset
1840 int v46; // ecx@35
Ritor1
parents:
diff changeset
1841 double v47; // st6@35
Ritor1
parents:
diff changeset
1842 int v48; // eax@36
Ritor1
parents:
diff changeset
1843 const char *v49; // [sp+4Ch] [bp-1Ch]@0
Ritor1
parents:
diff changeset
1844 const char *v50; // [sp+4Ch] [bp-1Ch]@20
Ritor1
parents:
diff changeset
1845 int v51; // [sp+50h] [bp-18h]@0
Ritor1
parents:
diff changeset
1846 unsigned int v52; // [sp+54h] [bp-14h]@0
Ritor1
parents:
diff changeset
1847 LightmapBuilder *v53; // [sp+58h] [bp-10h]@3
Ritor1
parents:
diff changeset
1848 unsigned int v54; // [sp+5Ch] [bp-Ch]@3
Ritor1
parents:
diff changeset
1849 unsigned int v55; // [sp+5Ch] [bp-Ch]@34
Ritor1
parents:
diff changeset
1850 unsigned int v56; // [sp+60h] [bp-8h]@12
Ritor1
parents:
diff changeset
1851 int v57; // [sp+60h] [bp-8h]@34
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
1852 unsigned int a2; // [sp+64h] [bp-4h]@4
0
Ritor1
parents:
diff changeset
1853
Ritor1
parents:
diff changeset
1854 v5 = this;
Ritor1
parents:
diff changeset
1855 v6 = 0;
Ritor1
parents:
diff changeset
1856 if ( this->uNumD3DSceneBegins && (signed int)uNumVertices >= 3 )
Ritor1
parents:
diff changeset
1857 {
Ritor1
parents:
diff changeset
1858 v7 = pGame->pLightmapBuilder;
Ritor1
parents:
diff changeset
1859 v53 = v7;
Ritor1
parents:
diff changeset
1860 v54 = v7->std__vector_000004_size;
Ritor1
parents:
diff changeset
1861 if ( v7->std__vector_000004_size)
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
1862 a2 = 0xFFFFFFFF;
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
1863 pGame->AlterGamma_ODM(a4, &a2);
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
1864 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01)
0
Ritor1
parents:
diff changeset
1865 {
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
1866 v8 = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0);
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
1867 v7->DrawLightmaps(/*v8, 0*/);
0
Ritor1
parents:
diff changeset
1868 }
Ritor1
parents:
diff changeset
1869 else
Ritor1
parents:
diff changeset
1870 {
Ritor1
parents:
diff changeset
1871 if ( !v54 || byte_4D864C && pGame->uFlags & 2 )
Ritor1
parents:
diff changeset
1872 {
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1873 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
1874 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW));
Ritor1
parents:
diff changeset
1875 if (bUsingSpecular)
Ritor1
parents:
diff changeset
1876 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1877 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1878 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1879 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0
Ritor1
parents:
diff changeset
1880 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1881 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1882 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1883
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1884 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1885 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
1886 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1887 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1888 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1889 pGame->AlterGamma_ODM(a4, &d3d_vertex_buffer[i].diffuse);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1890
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1891 if ( this->bUsingSpecular )
0
Ritor1
parents:
diff changeset
1892 {
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1893 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x);
0
Ritor1
parents:
diff changeset
1894 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1895 else
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1896 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1897 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1898 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1899 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1900 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1901
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1902 }
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1903
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1904 if (a4->uAttributes & FACE_OUTLINED)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1905 {
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1906 int color;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1907 if (GetTickCount() % 300 >= 150)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1908 color = 0xFFFF2020;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1909 else color = 0xFF901010;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1910
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1911 for (uint i = 0; i < uNumVertices; ++i)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1912 d3d_vertex_buffer[i].diffuse = color;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1913 }
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1914
0
Ritor1
parents:
diff changeset
1915 pRenderD3D->pDevice->SetTexture(0, pTexture);
Ritor1
parents:
diff changeset
1916 pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
1917 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
1918 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
1919 uNumVertices,
Ritor1
parents:
diff changeset
1920 D3DDP_DONOTLIGHT);
Ritor1
parents:
diff changeset
1921 }
Ritor1
parents:
diff changeset
1922 else
Ritor1
parents:
diff changeset
1923 {
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1924 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1925 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1926
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1927 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1928 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
1929 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1930 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1931 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1932 if ( this->bUsingSpecular )
0
Ritor1
parents:
diff changeset
1933 {
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1934 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x);
0
Ritor1
parents:
diff changeset
1935 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1936 else
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1937 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1938 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1939 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1940 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1941 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1942
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1943 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1944
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1945 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1946 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
1947 if (bUsingSpecular)
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1948 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
0
Ritor1
parents:
diff changeset
1949
Ritor1
parents:
diff changeset
1950 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
Ritor1
parents:
diff changeset
1951 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
1952 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
1953 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
1954 uNumVertices,
Ritor1
parents:
diff changeset
1955 D3DDP_DONOTLIGHT));
Ritor1
parents:
diff changeset
1956 //v50 = (const char *)v5->pRenderD3D->pDevice;
Ritor1
parents:
diff changeset
1957 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
Ritor1
parents:
diff changeset
1958 //(*(void (**)(void))(*(int *)v50 + 88))();
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
1959 v53->DrawLightmaps(/*-1, 0*/);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1960 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1961 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1962 d3d_vertex_buffer[i].diffuse = a2;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1963 }
0
Ritor1
parents:
diff changeset
1964 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1965 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
1966 if ( !pRenderer->bUsingSpecular )
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1967 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1968
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1969 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1970 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1971 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR));
0
Ritor1
parents:
diff changeset
1972 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
1973 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
1974 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
1975 uNumVertices,
Ritor1
parents:
diff changeset
1976 D3DDP_DONOTLIGHT));
Ritor1
parents:
diff changeset
1977 if (bUsingSpecular)
Ritor1
parents:
diff changeset
1978 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1979 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
0
Ritor1
parents:
diff changeset
1980
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1981 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1982 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1983 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1984 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1985 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1986
0
Ritor1
parents:
diff changeset
1987 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1988 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1989 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA));
0
Ritor1
parents:
diff changeset
1990 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
1991 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
1992 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
1993 uNumVertices,
Ritor1
parents:
diff changeset
1994 D3DDP_DONOTLIGHT));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1995 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
0
Ritor1
parents:
diff changeset
1996 //v40 = pRenderer->pRenderD3D->pDevice->lpVtbl;
Ritor1
parents:
diff changeset
1997 v41 = GetLevelFogColor();
Ritor1
parents:
diff changeset
1998 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF);
Ritor1
parents:
diff changeset
1999 v6 = 0;
Ritor1
parents:
diff changeset
2000 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0);
Ritor1
parents:
diff changeset
2001 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
2002 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
2003 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0
Ritor1
parents:
diff changeset
2004 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v6));
Ritor1
parents:
diff changeset
2005 }
Ritor1
parents:
diff changeset
2006 }
Ritor1
parents:
diff changeset
2007 }
Ritor1
parents:
diff changeset
2008 }
Ritor1
parents:
diff changeset
2009 // 4D864C: using guessed type char byte_4D864C;
Ritor1
parents:
diff changeset
2010
Ritor1
parents:
diff changeset
2011 //----- (0049EB79) --------------------------------------------------------
Ritor1
parents:
diff changeset
2012 Render::~Render()
Ritor1
parents:
diff changeset
2013 {
Ritor1
parents:
diff changeset
2014 Render *v1; // esi@1
Ritor1
parents:
diff changeset
2015
Ritor1
parents:
diff changeset
2016 v1 = this;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2017 free(this->pDefaultZBuffer);
0
Ritor1
parents:
diff changeset
2018 v1->pD3DBitmaps.Release();
Ritor1
parents:
diff changeset
2019 v1->pD3DSprites.Release();
Ritor1
parents:
diff changeset
2020 Release();
Ritor1
parents:
diff changeset
2021 v1->bWindowMode = 1;
Ritor1
parents:
diff changeset
2022 //nullsub_1();
Ritor1
parents:
diff changeset
2023 //nullsub_1();
Ritor1
parents:
diff changeset
2024 }
Ritor1
parents:
diff changeset
2025
Ritor1
parents:
diff changeset
2026 //----- (0049E756) --------------------------------------------------------
Ritor1
parents:
diff changeset
2027 bool Render::IsColorKeySupported(IDirectDraw4 *this_)
Ritor1
parents:
diff changeset
2028 {
Ritor1
parents:
diff changeset
2029 DDCAPS refCaps; // [sp+0h] [bp-2F8h]@1
Ritor1
parents:
diff changeset
2030 DDCAPS halCaps; // [sp+17Ch] [bp-17Ch]@1
Ritor1
parents:
diff changeset
2031
Ritor1
parents:
diff changeset
2032 halCaps.dwSize = 380;
Ritor1
parents:
diff changeset
2033 refCaps.dwSize = 380;
Ritor1
parents:
diff changeset
2034 this_->GetCaps(&halCaps, &refCaps);
Ritor1
parents:
diff changeset
2035 return halCaps.dwSVBCaps & 0x40 && BYTE1(halCaps.dwSVBCKeyCaps) & 2;
Ritor1
parents:
diff changeset
2036 }
Ritor1
parents:
diff changeset
2037
Ritor1
parents:
diff changeset
2038 //----- (0049E992) --------------------------------------------------------
Ritor1
parents:
diff changeset
2039 Render::Render()
Ritor1
parents:
diff changeset
2040 {
Ritor1
parents:
diff changeset
2041 Render *v1; // esi@1
Ritor1
parents:
diff changeset
2042 int v2; // eax@1
Ritor1
parents:
diff changeset
2043 char v3; // zf@1
Ritor1
parents:
diff changeset
2044
Ritor1
parents:
diff changeset
2045 v1 = this;
Ritor1
parents:
diff changeset
2046 this->pDirectDraw4 = 0;
Ritor1
parents:
diff changeset
2047 this->pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
2048 this->pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
2049 this->pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
2050 this->pDirectDraw2 = 0;
Ritor1
parents:
diff changeset
2051 this->pFrontBuffer2 = 0;
Ritor1
parents:
diff changeset
2052 this->pBackBuffer2 = 0;
Ritor1
parents:
diff changeset
2053 this->pSomeSurface2 = 0;
Ritor1
parents:
diff changeset
2054 //RenderHWLContainer::RenderHWLContainer(&this->pD3DBitmaps);
Ritor1
parents:
diff changeset
2055 //RenderHWLContainer::RenderHWLContainer(&v1->pD3DSprites);
Ritor1
parents:
diff changeset
2056 v1->bWindowMode = 1;
Ritor1
parents:
diff changeset
2057 v1->field_40054 = 0;
Ritor1
parents:
diff changeset
2058 v1->field_10 = 640;
Ritor1
parents:
diff changeset
2059 v1->field_14 = 480;
Ritor1
parents:
diff changeset
2060 v1->field_40030 = 0;
Ritor1
parents:
diff changeset
2061 v1->field_4002C = 0;
Ritor1
parents:
diff changeset
2062 v1->pActiveZBuffer = 0;
Ritor1
parents:
diff changeset
2063 v1->pDefaultZBuffer = 0;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
2064 v1->raster_clip_y = 0;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
2065 v1->raster_clip_x = 0;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
2066 v1->raster_clip_z = 639;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
2067 v1->raster_clip_w = 479;
0
Ritor1
parents:
diff changeset
2068 v1->field_4003C = (int)&unk_4EED80;
Ritor1
parents:
diff changeset
2069 v1->field_40040 = dword_4EED78;
Ritor1
parents:
diff changeset
2070 v1->uClipZ = 640;
Ritor1
parents:
diff changeset
2071 v1->field_40044 = 2;
Ritor1
parents:
diff changeset
2072 v1->field_40048 = 6;
Ritor1
parents:
diff changeset
2073 v1->pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
2074 v1->pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
2075 v1->pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
2076 v1->pDirectDraw4 = 0;
Ritor1
parents:
diff changeset
2077 v1->pRenderD3D = 0;
Ritor1
parents:
diff changeset
2078 v1->uNumSceneBegins = 0;
Ritor1
parents:
diff changeset
2079 v1->uNumD3DSceneBegins = 0;
Ritor1
parents:
diff changeset
2080 v1->field_40110 = 0;
Ritor1
parents:
diff changeset
2081 v1->pTargetSurface = 0;
Ritor1
parents:
diff changeset
2082 v1->uTargetSurfacePitch = 0;
Ritor1
parents:
diff changeset
2083 v1->uClipY = 0;
Ritor1
parents:
diff changeset
2084 v1->uClipX = 0;
Ritor1
parents:
diff changeset
2085 v1->uClipW = 480;
Ritor1
parents:
diff changeset
2086 v1->bClip = 1;
Ritor1
parents:
diff changeset
2087 v1->bColorKeySupported = 0;
Ritor1
parents:
diff changeset
2088 v1->bRequiredTextureStagesAvailable = 0;
Ritor1
parents:
diff changeset
2089 v1->bTinting = 1;
Ritor1
parents:
diff changeset
2090 LOBYTE(v1->field_103668) = 0;
Ritor1
parents:
diff changeset
2091 v1->field_1036B8 = 0;
Ritor1
parents:
diff changeset
2092 v1->_gpu_memory_used = 0;
Ritor1
parents:
diff changeset
2093 uNumBillboardsToDraw = 0;
Ritor1
parents:
diff changeset
2094 bFogEnabled = false;
265
96bc024a5fed Render overflows
Nomad
parents: 190
diff changeset
2095
96bc024a5fed Render overflows
Nomad
parents: 190
diff changeset
2096 hd_water_tile_id = -1;
96bc024a5fed Render overflows
Nomad
parents: 190
diff changeset
2097 hd_water_current_frame = 0;
0
Ritor1
parents:
diff changeset
2098 }
Ritor1
parents:
diff changeset
2099
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2100 bool Render::Initialize(bool bWindowed, OSWindow *window, bool bColoredLights, uint32_t uDetailLevel, bool bTinting)
0
Ritor1
parents:
diff changeset
2101 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2102 //bUserDirect3D = true;//ReadWindowsRegistryInt("Use D3D", 0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2103
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2104 this->window = window;
0
Ritor1
parents:
diff changeset
2105 bStartInWindow = bWindowed;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2106 //windowed_mode_width = windowed_width;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2107 //windowed_mode_height = windowed_height;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2108
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2109 uDesiredDirect3DDevice = 0;//ReadWindowsRegistryInt("D3D Device", 1);
0
Ritor1
parents:
diff changeset
2110
Ritor1
parents:
diff changeset
2111 bUseColoredLights = bColoredLights;//ReadWindowsRegistryInt("Colored Lights", 0);
Ritor1
parents:
diff changeset
2112 uLevelOfDetail = uDetailLevel;//ReadWindowsRegistryInt("Detail Level", 1);
Ritor1
parents:
diff changeset
2113
Ritor1
parents:
diff changeset
2114 this->bTinting = bTinting;
Ritor1
parents:
diff changeset
2115
Ritor1
parents:
diff changeset
2116 auto r1 = pD3DBitmaps.Load(L"data\\d3dbitmap.hwl");
Ritor1
parents:
diff changeset
2117 auto r2 = pD3DSprites.Load(L"data\\d3dsprite.hwl");
Ritor1
parents:
diff changeset
2118
Ritor1
parents:
diff changeset
2119 return r1 && r2;
Ritor1
parents:
diff changeset
2120 }
Ritor1
parents:
diff changeset
2121
Ritor1
parents:
diff changeset
2122 //----- (0049EBF1) --------------------------------------------------------
Ritor1
parents:
diff changeset
2123 void Render::_49EBF1()
Ritor1
parents:
diff changeset
2124 {
Ritor1
parents:
diff changeset
2125 signed int uNumRedBits; // edx@1
Ritor1
parents:
diff changeset
2126 signed int uNuGreenBits; // edi@1
Ritor1
parents:
diff changeset
2127 signed int uNumBlueBits; // esi@1
Ritor1
parents:
diff changeset
2128 unsigned int v4; // edx@4
Ritor1
parents:
diff changeset
2129 unsigned int v5; // edi@4
Ritor1
parents:
diff changeset
2130 int v6; // ebx@4
Ritor1
parents:
diff changeset
2131 int v7; // edx@4
Ritor1
parents:
diff changeset
2132 signed int v8; // [sp+8h] [bp-24h]@1
Ritor1
parents:
diff changeset
2133 signed int v9; // [sp+Ch] [bp-20h]@1
Ritor1
parents:
diff changeset
2134 signed int v10; // [sp+20h] [bp-Ch]@1
Ritor1
parents:
diff changeset
2135 signed int i; // [sp+24h] [bp-8h]@2
Ritor1
parents:
diff changeset
2136 signed int v12; // [sp+28h] [bp-4h]@3
Ritor1
parents:
diff changeset
2137
Ritor1
parents:
diff changeset
2138 v10 = 0;
Ritor1
parents:
diff changeset
2139 uNumRedBits = 1 << this->uTargetRBits;
Ritor1
parents:
diff changeset
2140 uNuGreenBits = 1 << this->uTargetGBits;
Ritor1
parents:
diff changeset
2141 uNumBlueBits = 1 << this->uTargetBBits;
Ritor1
parents:
diff changeset
2142 v9 = 1 << this->uTargetRBits;
Ritor1
parents:
diff changeset
2143 v8 = 1 << this->uTargetGBits;
Ritor1
parents:
diff changeset
2144 if ( uNumRedBits > 0 )
Ritor1
parents:
diff changeset
2145 {
Ritor1
parents:
diff changeset
2146 do
Ritor1
parents:
diff changeset
2147 {
Ritor1
parents:
diff changeset
2148 for ( i = 0; i < uNuGreenBits; ++i )
Ritor1
parents:
diff changeset
2149 {
Ritor1
parents:
diff changeset
2150 v12 = 0;
Ritor1
parents:
diff changeset
2151 if ( uNumBlueBits > 0 )
Ritor1
parents:
diff changeset
2152 {
Ritor1
parents:
diff changeset
2153 do
Ritor1
parents:
diff changeset
2154 {
Ritor1
parents:
diff changeset
2155 v4 = this->uTargetBBits;
Ritor1
parents:
diff changeset
2156 v5 = v4 + this->uTargetGBits;
Ritor1
parents:
diff changeset
2157 v6 = (v12 >> 1) + (v10 >> 1 << v5) + (i >> 1 << this->uTargetBBits);
Ritor1
parents:
diff changeset
2158 v7 = (v10 << v5) + v12++ + (i << v4);
Ritor1
parents:
diff changeset
2159 this->field_2C[v7] = v6;
Ritor1
parents:
diff changeset
2160 }
Ritor1
parents:
diff changeset
2161 while ( v12 < uNumBlueBits );
Ritor1
parents:
diff changeset
2162 uNumRedBits = v9;
Ritor1
parents:
diff changeset
2163 uNuGreenBits = v8;
Ritor1
parents:
diff changeset
2164 }
Ritor1
parents:
diff changeset
2165 }
Ritor1
parents:
diff changeset
2166 ++v10;
Ritor1
parents:
diff changeset
2167 }
Ritor1
parents:
diff changeset
2168 while ( v10 < uNumRedBits );
Ritor1
parents:
diff changeset
2169 }
Ritor1
parents:
diff changeset
2170 }
Ritor1
parents:
diff changeset
2171
Ritor1
parents:
diff changeset
2172 //----- (0049ECC4) --------------------------------------------------------
Ritor1
parents:
diff changeset
2173 void Render::ClearBlack()
Ritor1
parents:
diff changeset
2174 {
Ritor1
parents:
diff changeset
2175 if (pRenderD3D)
Ritor1
parents:
diff changeset
2176 {
Ritor1
parents:
diff changeset
2177 if (field_40110)
Ritor1
parents:
diff changeset
2178 pRenderD3D->ClearTarget(true, 0, false, 0.0);
Ritor1
parents:
diff changeset
2179 }
Ritor1
parents:
diff changeset
2180 else
Ritor1
parents:
diff changeset
2181 memset(pRenderer->pTargetSurface, 0, 4 * (field_10 * field_14 / 2));
Ritor1
parents:
diff changeset
2182 }
Ritor1
parents:
diff changeset
2183
Ritor1
parents:
diff changeset
2184 //----- (0049ED18) --------------------------------------------------------
Ritor1
parents:
diff changeset
2185 void Render::PresentBlackScreen()
Ritor1
parents:
diff changeset
2186 {
Ritor1
parents:
diff changeset
2187 IDirectDrawSurface *v2; // eax@3
Ritor1
parents:
diff changeset
2188 DDBLTFX v3; // [sp+4h] [bp-74h]@5
Ritor1
parents:
diff changeset
2189 RECT x; // [sp+68h] [bp-10h]@3
Ritor1
parents:
diff changeset
2190
Ritor1
parents:
diff changeset
2191 memset(&v3, 0, sizeof(DDBLTFX));
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2192 GetWindowRect(window->GetApiHandle(), &x);
0
Ritor1
parents:
diff changeset
2193 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
Ritor1
parents:
diff changeset
2194 pVersion->pVersionInfo.dwMajorVersion >= 5)
Ritor1
parents:
diff changeset
2195 {
Ritor1
parents:
diff changeset
2196 v2 = (IDirectDrawSurface *)this->pBackBuffer4;
Ritor1
parents:
diff changeset
2197 }
Ritor1
parents:
diff changeset
2198 else
Ritor1
parents:
diff changeset
2199 {
Ritor1
parents:
diff changeset
2200 v2 = (IDirectDrawSurface *)this->pBackBuffer2;
Ritor1
parents:
diff changeset
2201 }
Ritor1
parents:
diff changeset
2202 v3.dwFillColor = 0;
Ritor1
parents:
diff changeset
2203 v3.dwSize = 100;
Ritor1
parents:
diff changeset
2204 v2->Blt(&x, 0, 0, DDBLT_COLORFILL, &v3);
Ritor1
parents:
diff changeset
2205 pRenderer->Present();
Ritor1
parents:
diff changeset
2206 }
Ritor1
parents:
diff changeset
2207
Ritor1
parents:
diff changeset
2208 //----- (0049EDB6) --------------------------------------------------------
Ritor1
parents:
diff changeset
2209 void Render::SavePCXScreenshot()
Ritor1
parents:
diff changeset
2210 {
Ritor1
parents:
diff changeset
2211 Render *v1; // esi@1
Ritor1
parents:
diff changeset
2212 __int16 v2; // di@1
Ritor1
parents:
diff changeset
2213 int v3; // eax@4
Ritor1
parents:
diff changeset
2214 int v4; // ecx@4
Ritor1
parents:
diff changeset
2215 int v5; // eax@8
Ritor1
parents:
diff changeset
2216 FILE *v6; // edi@10
Ritor1
parents:
diff changeset
2217 int v7; // ecx@11
Ritor1
parents:
diff changeset
2218 int v8; // eax@11
Ritor1
parents:
diff changeset
2219 int v9; // eax@13
Ritor1
parents:
diff changeset
2220 int v10; // ecx@15
Ritor1
parents:
diff changeset
2221 unsigned __int8 v11; // dl@15
Ritor1
parents:
diff changeset
2222 signed int v12; // eax@18
Ritor1
parents:
diff changeset
2223 char v13; // zf@27
Ritor1
parents:
diff changeset
2224 HRESULT v14; // eax@29
Ritor1
parents:
diff changeset
2225 char v15[56]; // [sp+Ch] [bp-158h]@10
Ritor1
parents:
diff changeset
2226 __int16 v16; // [sp+44h] [bp-120h]@10
Ritor1
parents:
diff changeset
2227 DDSURFACEDESC2 Dst; // [sp+48h] [bp-11Ch]@7
Ritor1
parents:
diff changeset
2228 char color_map[48]; // [sp+C4h] [bp-A0h]@10
Ritor1
parents:
diff changeset
2229 char Filename[40]; // [sp+F4h] [bp-70h]@3
Ritor1
parents:
diff changeset
2230 char *v20; // [sp+11Ch] [bp-48h]@14
Ritor1
parents:
diff changeset
2231 char *v21; // [sp+120h] [bp-44h]@14
Ritor1
parents:
diff changeset
2232 int v24; // [sp+124h] [bp-40h]@11
Ritor1
parents:
diff changeset
2233 FILE *File; // [sp+128h] [bp-3Ch]@3
Ritor1
parents:
diff changeset
2234 int var38; // [sp+12Ch] [bp-38h]@4
Ritor1
parents:
diff changeset
2235 PCXHeader_1 header1; // [sp+130h] [bp-34h]@10
Ritor1
parents:
diff changeset
2236 PCXHeader_2 header2; // [sp+140h] [bp-24h]@10
Ritor1
parents:
diff changeset
2237 void *ptr; // [sp+148h] [bp-1Ch]@10
Ritor1
parents:
diff changeset
2238 void *v28; // [sp+14Ch] [bp-18h]@8
Ritor1
parents:
diff changeset
2239 int v29; // [sp+150h] [bp-14h]@4
Ritor1
parents:
diff changeset
2240 int v30; // [sp+154h] [bp-10h]@4
Ritor1
parents:
diff changeset
2241 char v31; // [sp+15Ah] [bp-Ah]@25
Ritor1
parents:
diff changeset
2242 unsigned __int8 v32; // [sp+15Bh] [bp-9h]@17
Ritor1
parents:
diff changeset
2243 int i; // [sp+15Ch] [bp-8h]@10
Ritor1
parents:
diff changeset
2244 unsigned __int8 v34; // [sp+163h] [bp-1h]@17
Ritor1
parents:
diff changeset
2245
Ritor1
parents:
diff changeset
2246 v1 = this;
Ritor1
parents:
diff changeset
2247 v2 = 0;
Ritor1
parents:
diff changeset
2248 if ( !this->pRenderD3D || this->field_40110 )
Ritor1
parents:
diff changeset
2249 {
Ritor1
parents:
diff changeset
2250 sprintf(Filename, "screen%0.2i.pcx", dword_4EFA80++ % 100);
Ritor1
parents:
diff changeset
2251 File = fopen(Filename, "wb");
Ritor1
parents:
diff changeset
2252 if ( File )
Ritor1
parents:
diff changeset
2253 {
Ritor1
parents:
diff changeset
2254 v3 = v1->field_10;
Ritor1
parents:
diff changeset
2255 v4 = v1->field_14;
Ritor1
parents:
diff changeset
2256 var38 = v3;
Ritor1
parents:
diff changeset
2257 v29 = v4;
Ritor1
parents:
diff changeset
2258 v30 = v3;
Ritor1
parents:
diff changeset
2259 if ( v3 & 1 )
Ritor1
parents:
diff changeset
2260 v30 = v3 + 1;
Ritor1
parents:
diff changeset
2261 if ( v1->pRenderD3D )
Ritor1
parents:
diff changeset
2262 {
Ritor1
parents:
diff changeset
2263 memset(&Dst, 0, 0x7Cu);
Ritor1
parents:
diff changeset
2264 Dst.dwSize = 124;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
2265 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &Dst, DDLOCK_WAIT) )
0
Ritor1
parents:
diff changeset
2266 return;
Ritor1
parents:
diff changeset
2267 v28 = Dst.lpSurface;
Ritor1
parents:
diff changeset
2268 v5 = Dst.lPitch >> 1;
Ritor1
parents:
diff changeset
2269 v2 = 0;
Ritor1
parents:
diff changeset
2270 }
Ritor1
parents:
diff changeset
2271 else
Ritor1
parents:
diff changeset
2272 {
Ritor1
parents:
diff changeset
2273 pRenderer->BeginScene();
Ritor1
parents:
diff changeset
2274 v28 = pRenderer->pTargetSurface;
Ritor1
parents:
diff changeset
2275 v5 = pRenderer->uTargetSurfacePitch;
Ritor1
parents:
diff changeset
2276 }
Ritor1
parents:
diff changeset
2277 i = v5;
Ritor1
parents:
diff changeset
2278 header1.right = var38 - 1;
Ritor1
parents:
diff changeset
2279 header1.left = v2;
Ritor1
parents:
diff changeset
2280 header1.bottom = v29 - 1;
Ritor1
parents:
diff changeset
2281 header1.up = v2;
Ritor1
parents:
diff changeset
2282 header2.pitch = v30;
Ritor1
parents:
diff changeset
2283 memset(color_map, 0, sizeof(color_map));
Ritor1
parents:
diff changeset
2284 memset(v15, 0, sizeof(v15));
Ritor1
parents:
diff changeset
2285 header2.reserved = 0;
Ritor1
parents:
diff changeset
2286 header1.manufacturer = 10;
Ritor1
parents:
diff changeset
2287 v16 = 0;
Ritor1
parents:
diff changeset
2288 v6 = File;
Ritor1
parents:
diff changeset
2289 header1.version = 5;
Ritor1
parents:
diff changeset
2290 header1.encoding = 1;
Ritor1
parents:
diff changeset
2291 header1.bpp = 8;
Ritor1
parents:
diff changeset
2292 header1.hdpi = 75;
Ritor1
parents:
diff changeset
2293 header1.vdpi = 75;
Ritor1
parents:
diff changeset
2294 header2.planes = 3;
Ritor1
parents:
diff changeset
2295 header2.palette_info = 1;
Ritor1
parents:
diff changeset
2296 fwrite(&header1, 1u, 1u, File);
Ritor1
parents:
diff changeset
2297 fwrite(&header1.version, 1u, 1u, v6);
Ritor1
parents:
diff changeset
2298 fwrite(&header1.encoding, 1u, 1u, v6);
Ritor1
parents:
diff changeset
2299 fwrite(&header1.bpp, 1u, 1u, v6);
Ritor1
parents:
diff changeset
2300 fwrite(&header1.left, 2u, 1u, v6);
Ritor1
parents:
diff changeset
2301 fwrite(&header1.up, 2u, 1u, v6);
Ritor1
parents:
diff changeset
2302 fwrite(&header1.right, 2u, 1u, v6);
Ritor1
parents:
diff changeset
2303 fwrite(&header1.bottom, 2u, 1u, v6);
Ritor1
parents:
diff changeset
2304 fwrite(&header1.hdpi, 2u, 1u, v6);
Ritor1
parents:
diff changeset
2305 fwrite(&header1.vdpi, 2u, 1u, v6);
Ritor1
parents:
diff changeset
2306 fwrite(color_map, 0x30u, 1u, v6);
Ritor1
parents:
diff changeset
2307 fwrite(&header2, 1u, 1u, v6);
Ritor1
parents:
diff changeset
2308 fwrite(&header2.planes, 1u, 1u, v6);
Ritor1
parents:
diff changeset
2309 fwrite(&header2.pitch, 2u, 1u, v6);
Ritor1
parents:
diff changeset
2310 fwrite(&header2.palette_info, 2u, 1u, v6);
Ritor1
parents:
diff changeset
2311 fwrite(v15, 0x3Au, 1u, v6);
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2312 ptr = malloc(3 * var38 + 6);
0
Ritor1
parents:
diff changeset
2313 if ( v29 > 0 )
Ritor1
parents:
diff changeset
2314 {
Ritor1
parents:
diff changeset
2315 v7 = v30;
Ritor1
parents:
diff changeset
2316 File = (FILE *)v29;
Ritor1
parents:
diff changeset
2317 v29 = 3 * v30;
Ritor1
parents:
diff changeset
2318 v24 = 2 * i;
Ritor1
parents:
diff changeset
2319 v8 = (int)v28;
Ritor1
parents:
diff changeset
2320 while ( 1 )
Ritor1
parents:
diff changeset
2321 {
Ritor1
parents:
diff changeset
2322 i = v8;
Ritor1
parents:
diff changeset
2323 v9 = 0;
Ritor1
parents:
diff changeset
2324 if ( var38 > 0 )
Ritor1
parents:
diff changeset
2325 {
Ritor1
parents:
diff changeset
2326 v21 = (char *)ptr + v7;
Ritor1
parents:
diff changeset
2327 v20 = (char *)ptr + 2 * v30;
Ritor1
parents:
diff changeset
2328 do
Ritor1
parents:
diff changeset
2329 {
Ritor1
parents:
diff changeset
2330 *((char *)ptr + v9) = (signed int)(v1->uTargetRMask & *(short *)i) >> (LOBYTE(v1->uTargetGBits)
Ritor1
parents:
diff changeset
2331 + LOBYTE(v1->uTargetBBits)
Ritor1
parents:
diff changeset
2332 + v1->uTargetRBits
Ritor1
parents:
diff changeset
2333 - 8);
Ritor1
parents:
diff changeset
2334 v21[v9] = (signed int)(v1->uTargetGMask & *(short *)i) >> (LOBYTE(v1->uTargetBBits)
Ritor1
parents:
diff changeset
2335 + LOBYTE(v1->uTargetGBits)
Ritor1
parents:
diff changeset
2336 - 8);
Ritor1
parents:
diff changeset
2337 v10 = i;
Ritor1
parents:
diff changeset
2338 v11 = LOBYTE(v1->uTargetBMask);
Ritor1
parents:
diff changeset
2339 i += 2;
Ritor1
parents:
diff changeset
2340 v20[v9++] = (*(char *)v10 & v11) << (8 - LOBYTE(v1->uTargetBBits));
Ritor1
parents:
diff changeset
2341 }
Ritor1
parents:
diff changeset
2342 while ( v9 < var38 );
Ritor1
parents:
diff changeset
2343 }
Ritor1
parents:
diff changeset
2344 for ( i = 0; i < v29; i += v34 )
Ritor1
parents:
diff changeset
2345 {
Ritor1
parents:
diff changeset
2346 v34 = 1;
Ritor1
parents:
diff changeset
2347 v32 = *((char *)ptr + i);
Ritor1
parents:
diff changeset
2348 do
Ritor1
parents:
diff changeset
2349 {
Ritor1
parents:
diff changeset
2350 v12 = i + v34;
Ritor1
parents:
diff changeset
2351 if ( *((char *)ptr + v12) != v32 )
Ritor1
parents:
diff changeset
2352 break;
Ritor1
parents:
diff changeset
2353 if ( !(v12 % v30) )
Ritor1
parents:
diff changeset
2354 break;
Ritor1
parents:
diff changeset
2355 ++v34;
Ritor1
parents:
diff changeset
2356 }
Ritor1
parents:
diff changeset
2357 while ( v34 < 0x3Fu );
Ritor1
parents:
diff changeset
2358 if ( i + v34 > v29 )
Ritor1
parents:
diff changeset
2359 v34 = 3 * v30 - i;
Ritor1
parents:
diff changeset
2360 if ( v34 > 1u || v32 >= 0xC0u )
Ritor1
parents:
diff changeset
2361 {
Ritor1
parents:
diff changeset
2362 v31 = v34 | 0xC0;
Ritor1
parents:
diff changeset
2363 fwrite(&v31, 1u, 1u, v6);
Ritor1
parents:
diff changeset
2364 }
Ritor1
parents:
diff changeset
2365 fwrite(&v32, 1u, 1u, v6);
Ritor1
parents:
diff changeset
2366 }
Ritor1
parents:
diff changeset
2367 v8 = (int)((char *)v28 + v24);
Ritor1
parents:
diff changeset
2368 v13 = File == (FILE *)1;
Ritor1
parents:
diff changeset
2369 File = (FILE *)((char *)File - 1);
Ritor1
parents:
diff changeset
2370 v28 = (char *)v28 + v24;
Ritor1
parents:
diff changeset
2371 if ( v13 )
Ritor1
parents:
diff changeset
2372 break;
Ritor1
parents:
diff changeset
2373 v7 = v30;
Ritor1
parents:
diff changeset
2374 }
Ritor1
parents:
diff changeset
2375 }
Ritor1
parents:
diff changeset
2376 if ( v1->pRenderD3D )
Ritor1
parents:
diff changeset
2377 {
Ritor1
parents:
diff changeset
2378 ErrD3D(pRenderer->pBackBuffer4->Unlock(0));
Ritor1
parents:
diff changeset
2379 }
Ritor1
parents:
diff changeset
2380 else
Ritor1
parents:
diff changeset
2381 {
Ritor1
parents:
diff changeset
2382 pRenderer->EndScene();
Ritor1
parents:
diff changeset
2383 }
Ritor1
parents:
diff changeset
2384
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2385 free(ptr);
0
Ritor1
parents:
diff changeset
2386 fclose(v6);
Ritor1
parents:
diff changeset
2387 }
Ritor1
parents:
diff changeset
2388 }
Ritor1
parents:
diff changeset
2389 }
Ritor1
parents:
diff changeset
2390 // 4EFA80: using guessed type int dword_4EFA80;
Ritor1
parents:
diff changeset
2391
Ritor1
parents:
diff changeset
2392 //----- (0049F1BC) --------------------------------------------------------
Ritor1
parents:
diff changeset
2393 void Render::_49F1BC(const char *a1)
Ritor1
parents:
diff changeset
2394 {
Ritor1
parents:
diff changeset
2395 Render *v2; // esi@1
Ritor1
parents:
diff changeset
2396 __int16 v3; // di@1
Ritor1
parents:
diff changeset
2397 int v4; // eax@4
Ritor1
parents:
diff changeset
2398 char *v5; // ecx@4
Ritor1
parents:
diff changeset
2399 unsigned int v6; // eax@8
Ritor1
parents:
diff changeset
2400 FILE *v7; // edi@10
Ritor1
parents:
diff changeset
2401 int v8; // ecx@11
Ritor1
parents:
diff changeset
2402 int v9; // eax@11
Ritor1
parents:
diff changeset
2403 int v10; // eax@13
Ritor1
parents:
diff changeset
2404 const char *v11; // ecx@15
Ritor1
parents:
diff changeset
2405 unsigned __int8 v12; // dl@15
Ritor1
parents:
diff changeset
2406 signed int v13; // eax@18
Ritor1
parents:
diff changeset
2407 char v14; // zf@27
Ritor1
parents:
diff changeset
2408 HRESULT v15; // eax@29
Ritor1
parents:
diff changeset
2409 char v16; // [sp+Ch] [bp-12Ch]@10
Ritor1
parents:
diff changeset
2410 __int16 v17; // [sp+44h] [bp-F4h]@10
Ritor1
parents:
diff changeset
2411 int Dst; // [sp+48h] [bp-F0h]@7
Ritor1
parents:
diff changeset
2412 int v19; // [sp+58h] [bp-E0h]@8
Ritor1
parents:
diff changeset
2413 unsigned __int16 *v20; // [sp+6Ch] [bp-CCh]@8
Ritor1
parents:
diff changeset
2414 char v21; // [sp+C4h] [bp-74h]@10
Ritor1
parents:
diff changeset
2415 unsigned int v22; // [sp+F4h] [bp-44h]@11
Ritor1
parents:
diff changeset
2416 char *v23; // [sp+F8h] [bp-40h]@14
Ritor1
parents:
diff changeset
2417 int v24; // [sp+FCh] [bp-3Ch]@11
Ritor1
parents:
diff changeset
2418 int v25; // [sp+100h] [bp-38h]@4
Ritor1
parents:
diff changeset
2419 FILE *File; // [sp+104h] [bp-34h]@3
Ritor1
parents:
diff changeset
2420 char Str; // [sp+108h] [bp-30h]@10
Ritor1
parents:
diff changeset
2421 char v28; // [sp+109h] [bp-2Fh]@10
Ritor1
parents:
diff changeset
2422 char v29; // [sp+10Ah] [bp-2Eh]@10
Ritor1
parents:
diff changeset
2423 char v30; // [sp+10Bh] [bp-2Dh]@10
Ritor1
parents:
diff changeset
2424 __int16 v31; // [sp+10Ch] [bp-2Ch]@10
Ritor1
parents:
diff changeset
2425 __int16 v32; // [sp+10Eh] [bp-2Ah]@10
Ritor1
parents:
diff changeset
2426 __int16 v33; // [sp+110h] [bp-28h]@10
Ritor1
parents:
diff changeset
2427 __int16 v34; // [sp+112h] [bp-26h]@10
Ritor1
parents:
diff changeset
2428 __int16 v35; // [sp+114h] [bp-24h]@10
Ritor1
parents:
diff changeset
2429 __int16 v36; // [sp+116h] [bp-22h]@10
Ritor1
parents:
diff changeset
2430 char v37; // [sp+118h] [bp-20h]@10
Ritor1
parents:
diff changeset
2431 char v38; // [sp+119h] [bp-1Fh]@10
Ritor1
parents:
diff changeset
2432 __int16 v39; // [sp+11Ah] [bp-1Eh]@10
Ritor1
parents:
diff changeset
2433 __int16 v40; // [sp+11Ch] [bp-1Ch]@10
Ritor1
parents:
diff changeset
2434 void *ptr; // [sp+120h] [bp-18h]@10
Ritor1
parents:
diff changeset
2435 unsigned __int16 *v42; // [sp+124h] [bp-14h]@8
Ritor1
parents:
diff changeset
2436 int v43; // [sp+128h] [bp-10h]@4
Ritor1
parents:
diff changeset
2437 char v44; // [sp+12Fh] [bp-9h]@25
Ritor1
parents:
diff changeset
2438 char *i; // [sp+130h] [bp-8h]@10
Ritor1
parents:
diff changeset
2439 unsigned __int8 v46; // [sp+137h] [bp-1h]@17
Ritor1
parents:
diff changeset
2440
Ritor1
parents:
diff changeset
2441 v2 = this;
Ritor1
parents:
diff changeset
2442 v3 = 0;
Ritor1
parents:
diff changeset
2443 if ( !this->pRenderD3D || this->field_40110 )
Ritor1
parents:
diff changeset
2444 {
Ritor1
parents:
diff changeset
2445 ++dword_4EFA84;
Ritor1
parents:
diff changeset
2446 File = fopen(a1, "wb");
Ritor1
parents:
diff changeset
2447 if ( File )
Ritor1
parents:
diff changeset
2448 {
Ritor1
parents:
diff changeset
2449 v4 = v2->field_10;
Ritor1
parents:
diff changeset
2450 v5 = (char *)v2->field_14;
Ritor1
parents:
diff changeset
2451 v25 = v4;
Ritor1
parents:
diff changeset
2452 a1 = v5;
Ritor1
parents:
diff changeset
2453 v43 = v4;
Ritor1
parents:
diff changeset
2454 if ( v4 & 1 )
Ritor1
parents:
diff changeset
2455 v43 = v4 + 1;
Ritor1
parents:
diff changeset
2456 if ( v2->pRenderD3D )
Ritor1
parents:
diff changeset
2457 {
Ritor1
parents:
diff changeset
2458 memset(&Dst, 0, 0x7Cu);
Ritor1
parents:
diff changeset
2459 Dst = 124;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
2460 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, (DDSURFACEDESC2 *)&Dst, DDLOCK_WAIT) )
0
Ritor1
parents:
diff changeset
2461 return;
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1394
diff changeset
2462 __debugbreak(); // warning C4700: uninitialized local variable 'v20' used
0
Ritor1
parents:
diff changeset
2463 v42 = v20;
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1394
diff changeset
2464 __debugbreak(); // warning C4700: uninitialized local variable 'v19' used
0
Ritor1
parents:
diff changeset
2465 v6 = v19 >> 1;
Ritor1
parents:
diff changeset
2466 v3 = 0;
Ritor1
parents:
diff changeset
2467 }
Ritor1
parents:
diff changeset
2468 else
Ritor1
parents:
diff changeset
2469 {
Ritor1
parents:
diff changeset
2470 pRenderer->BeginScene();
Ritor1
parents:
diff changeset
2471 v42 = pRenderer->pTargetSurface;
Ritor1
parents:
diff changeset
2472 v6 = pRenderer->uTargetSurfacePitch;
Ritor1
parents:
diff changeset
2473 }
Ritor1
parents:
diff changeset
2474 i = (char *)v6;
Ritor1
parents:
diff changeset
2475 v33 = v25 - 1;
Ritor1
parents:
diff changeset
2476 v31 = v3;
Ritor1
parents:
diff changeset
2477 v34 = (short)a1 - 1;
Ritor1
parents:
diff changeset
2478 v32 = v3;
Ritor1
parents:
diff changeset
2479 v39 = v43;
Ritor1
parents:
diff changeset
2480 memset(&v21, 0, 0x30u);
Ritor1
parents:
diff changeset
2481 memset(&v16, 0, 0x38u);
Ritor1
parents:
diff changeset
2482 v37 = 0;
Ritor1
parents:
diff changeset
2483 Str = 10;
Ritor1
parents:
diff changeset
2484 v17 = 0;
Ritor1
parents:
diff changeset
2485 v7 = File;
Ritor1
parents:
diff changeset
2486 v28 = 5;
Ritor1
parents:
diff changeset
2487 v29 = 1;
Ritor1
parents:
diff changeset
2488 v30 = 8;
Ritor1
parents:
diff changeset
2489 v35 = 75;
Ritor1
parents:
diff changeset
2490 v36 = 75;
Ritor1
parents:
diff changeset
2491 v38 = 3;
Ritor1
parents:
diff changeset
2492 v40 = 1;
Ritor1
parents:
diff changeset
2493 fwrite(&Str, 1u, 1u, File);
Ritor1
parents:
diff changeset
2494 fwrite(&v28, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2495 fwrite(&v29, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2496 fwrite(&v30, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2497 fwrite(&v31, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2498 fwrite(&v32, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2499 fwrite(&v33, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2500 fwrite(&v34, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2501 fwrite(&v35, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2502 fwrite(&v36, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2503 fwrite(&v21, 0x30u, 1u, v7);
Ritor1
parents:
diff changeset
2504 fwrite(&v37, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2505 fwrite(&v38, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2506 fwrite(&v39, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2507 fwrite(&v40, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2508 fwrite(&v16, 0x3Au, 1u, v7);
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2509 ptr = malloc(3 * v25 + 6);
0
Ritor1
parents:
diff changeset
2510 if ( (signed int)a1 > 0 )
Ritor1
parents:
diff changeset
2511 {
Ritor1
parents:
diff changeset
2512 v8 = v43;
Ritor1
parents:
diff changeset
2513 File = (FILE *)a1;
Ritor1
parents:
diff changeset
2514 v24 = 3 * v43;
Ritor1
parents:
diff changeset
2515 v22 = 2 * (int)i;
Ritor1
parents:
diff changeset
2516 v9 = (int)v42;
Ritor1
parents:
diff changeset
2517 while ( 1 )
Ritor1
parents:
diff changeset
2518 {
Ritor1
parents:
diff changeset
2519 a1 = (const char *)v9;
Ritor1
parents:
diff changeset
2520 v10 = 0;
Ritor1
parents:
diff changeset
2521 if ( v25 > 0 )
Ritor1
parents:
diff changeset
2522 {
Ritor1
parents:
diff changeset
2523 i = (char *)ptr + v8;
Ritor1
parents:
diff changeset
2524 v23 = (char *)ptr + 2 * v43;
Ritor1
parents:
diff changeset
2525 do
Ritor1
parents:
diff changeset
2526 {
Ritor1
parents:
diff changeset
2527 *((char *)ptr + v10) = (signed int)(v2->uTargetRMask & *(short *)a1) >> (LOBYTE(v2->uTargetGBits)
Ritor1
parents:
diff changeset
2528 + LOBYTE(v2->uTargetBBits)
Ritor1
parents:
diff changeset
2529 + v2->uTargetRBits
Ritor1
parents:
diff changeset
2530 - 8);
Ritor1
parents:
diff changeset
2531 i[v10] = (signed int)(v2->uTargetGMask & *(short *)a1) >> (LOBYTE(v2->uTargetBBits)
Ritor1
parents:
diff changeset
2532 + LOBYTE(v2->uTargetGBits)
Ritor1
parents:
diff changeset
2533 - 8);
Ritor1
parents:
diff changeset
2534 v11 = a1;
Ritor1
parents:
diff changeset
2535 v12 = LOBYTE(v2->uTargetBMask);
Ritor1
parents:
diff changeset
2536 a1 += 2;
Ritor1
parents:
diff changeset
2537 v23[v10++] = ((unsigned __int8)*v11 & v12) << (8 - LOBYTE(v2->uTargetBBits));
Ritor1
parents:
diff changeset
2538 }
Ritor1
parents:
diff changeset
2539 while ( v10 < v25 );
Ritor1
parents:
diff changeset
2540 }
Ritor1
parents:
diff changeset
2541 for ( i = 0; (signed int)i < v24; i += BYTE3(a1) )
Ritor1
parents:
diff changeset
2542 {
Ritor1
parents:
diff changeset
2543 BYTE3(a1) = 1;
Ritor1
parents:
diff changeset
2544 v46 = *((char *)ptr + (int)i);
Ritor1
parents:
diff changeset
2545 do
Ritor1
parents:
diff changeset
2546 {
Ritor1
parents:
diff changeset
2547 v13 = (signed int)&i[BYTE3(a1)];
Ritor1
parents:
diff changeset
2548 if ( *((char *)ptr + v13) != v46 )
Ritor1
parents:
diff changeset
2549 break;
Ritor1
parents:
diff changeset
2550 if ( !(v13 % v43) )
Ritor1
parents:
diff changeset
2551 break;
Ritor1
parents:
diff changeset
2552 ++BYTE3(a1);
Ritor1
parents:
diff changeset
2553 }
Ritor1
parents:
diff changeset
2554 while ( BYTE3(a1) < 0x3Fu );
Ritor1
parents:
diff changeset
2555 if ( (signed int)&i[BYTE3(a1)] > v24 )
Ritor1
parents:
diff changeset
2556 BYTE3(a1) = 3 * v43 - (char)i;
Ritor1
parents:
diff changeset
2557 if ( BYTE3(a1) > 1u || v46 >= 0xC0u )
Ritor1
parents:
diff changeset
2558 {
Ritor1
parents:
diff changeset
2559 v44 = BYTE3(a1) | 0xC0;
Ritor1
parents:
diff changeset
2560 fwrite(&v44, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2561 }
Ritor1
parents:
diff changeset
2562 fwrite(&v46, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2563 }
Ritor1
parents:
diff changeset
2564 v9 = (int)&v42[v22 / 2];
Ritor1
parents:
diff changeset
2565 v14 = File == (FILE *)1;
Ritor1
parents:
diff changeset
2566 File = (FILE *)((char *)File - 1);
Ritor1
parents:
diff changeset
2567 v42 = (unsigned __int16 *)((char *)v42 + v22);
Ritor1
parents:
diff changeset
2568 if ( v14 )
Ritor1
parents:
diff changeset
2569 break;
Ritor1
parents:
diff changeset
2570 v8 = v43;
Ritor1
parents:
diff changeset
2571 }
Ritor1
parents:
diff changeset
2572 }
Ritor1
parents:
diff changeset
2573 if ( v2->pRenderD3D )
Ritor1
parents:
diff changeset
2574 {
Ritor1
parents:
diff changeset
2575 ErrD3D(pRenderer->pBackBuffer4->Unlock(0));
Ritor1
parents:
diff changeset
2576 }
Ritor1
parents:
diff changeset
2577 else
Ritor1
parents:
diff changeset
2578 {
Ritor1
parents:
diff changeset
2579 pRenderer->EndScene();
Ritor1
parents:
diff changeset
2580 }
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2581 free(ptr);
0
Ritor1
parents:
diff changeset
2582 fclose(v7);
Ritor1
parents:
diff changeset
2583 }
Ritor1
parents:
diff changeset
2584 }
Ritor1
parents:
diff changeset
2585 }
Ritor1
parents:
diff changeset
2586 // 4EFA84: using guessed type int dword_4EFA84;
Ritor1
parents:
diff changeset
2587
Ritor1
parents:
diff changeset
2588 //----- (0049F5A2) --------------------------------------------------------
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2589 void Render::PackPCXpicture( unsigned short* picture_data, int wight, int heidth, void *data_buff, int max_buff_size,unsigned int* packed_size )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2590 {
0
Ritor1
parents:
diff changeset
2591 Render *v7; // ebx@1
Ritor1
parents:
diff changeset
2592 void *v8; // esi@3
Ritor1
parents:
diff changeset
2593 void *v9; // esi@3
Ritor1
parents:
diff changeset
2594 int v10; // ecx@4
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2595 unsigned short* v11; // eax@4
0
Ritor1
parents:
diff changeset
2596 int v12; // eax@6
Ritor1
parents:
diff changeset
2597 int v13; // eax@8
Ritor1
parents:
diff changeset
2598 int v14; // ecx@8
Ritor1
parents:
diff changeset
2599 signed int v15; // eax@11
Ritor1
parents:
diff changeset
2600 char v16; // zf@20
Ritor1
parents:
diff changeset
2601 int result; // eax@21
Ritor1
parents:
diff changeset
2602 char v18[58]; // [sp+Ch] [bp-ACh]@3
Ritor1
parents:
diff changeset
2603 // __int16 v19; // [sp+44h] [bp-74h]@3
Ritor1
parents:
diff changeset
2604 char v20[48]; // [sp+48h] [bp-70h]@3
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2605 char *lineG; // [sp+78h] [bp-40h]@7
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2606 char *lineB; // [sp+7Ch] [bp-3Ch]@7
0
Ritor1
parents:
diff changeset
2607 int v23; // [sp+80h] [bp-38h]@4
Ritor1
parents:
diff changeset
2608 int v24; // [sp+84h] [bp-34h]@4
Ritor1
parents:
diff changeset
2609 int v25; // [sp+88h] [bp-30h]@4
Ritor1
parents:
diff changeset
2610 int v26; // [sp+8Ch] [bp-2Ch]@4
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2611 PCXHeader_1 Src; // [sp+90h] [bp-28h]@3
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2612 PCXHeader_2 v27; // [sp+A0h] [bp-18h]@3
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2613 char *lineRGB; // [sp+A8h] [bp-10h]@3
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2614 int pitch; // [sp+ACh] [bp-Ch]@1
0
Ritor1
parents:
diff changeset
2615 char v43; // [sp+B3h] [bp-5h]@18
Ritor1
parents:
diff changeset
2616 int i; // [sp+B4h] [bp-4h]@6
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2617 unsigned short* line_pictute_data;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2618 byte test_byte;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2619 unsigned char pict_byte;
0
Ritor1
parents:
diff changeset
2620
Ritor1
parents:
diff changeset
2621 v7 = this;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2622 pitch = wight;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2623 if ( wight & 1 )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2624 pitch = wight + 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2625 Src.left = 0;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2626 Src.up = 0;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2627 Src.right = wight - 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2628 Src.bottom = heidth - 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2629 v27.pitch = pitch;
0
Ritor1
parents:
diff changeset
2630 memset(&v20, 0, 0x30u);
Ritor1
parents:
diff changeset
2631 memset(&v18, 0, 0x38u);
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2632 v8 = data_buff;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2633 v27.reserved = 0;
0
Ritor1
parents:
diff changeset
2634 *(_WORD *)&v18[56] = 0;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2635 Src.manufacturer = 10;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2636 Src.version = 5;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2637 Src.encoding = 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2638 Src.bpp = 8;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2639 Src.hdpi = 75;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2640 Src.vdpi = 75;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2641 v27.planes = 3;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2642 v27.palette_info = 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2643 memcpy(data_buff, &Src, 1u);
0
Ritor1
parents:
diff changeset
2644 v8 = (char *)v8 + 1;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2645 memcpy(v8, &Src.version, 1u);
0
Ritor1
parents:
diff changeset
2646 v8 = (char *)v8 + 1;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2647 memcpy(v8, &Src.encoding, 1u);
0
Ritor1
parents:
diff changeset
2648 v8 = (char *)v8 + 1;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2649 memcpy(v8, &Src.bpp, 1u);
0
Ritor1
parents:
diff changeset
2650 v8 = (char *)v8 + 1;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2651 memcpy(v8, &Src.left, 2u);
0
Ritor1
parents:
diff changeset
2652 v8 = (char *)v8 + 2;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2653 memcpy(v8, &Src.up, 2u);
0
Ritor1
parents:
diff changeset
2654 v8 = (char *)v8 + 2;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2655 memcpy(v8, &Src.right, 2u);
0
Ritor1
parents:
diff changeset
2656 v8 = (char *)v8 + 2;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2657 memcpy(v8, &Src.bottom, 2u);
0
Ritor1
parents:
diff changeset
2658 v8 = (char *)v8 + 2;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2659 memcpy(v8, &Src.hdpi, 2u);
0
Ritor1
parents:
diff changeset
2660 v8 = (char *)v8 + 2;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2661 memcpy(v8, &Src.vdpi, 2u);
0
Ritor1
parents:
diff changeset
2662 v8 = (char *)v8 + 2;
Ritor1
parents:
diff changeset
2663 memcpy(v8, &v20, 0x30u);
Ritor1
parents:
diff changeset
2664 v8 = (char *)v8 + 48;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2665 memcpy(v8, &v27, 1u);
0
Ritor1
parents:
diff changeset
2666 v8 = (char *)v8 + 1;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2667 memcpy(v8, &v27.planes, 1u);
0
Ritor1
parents:
diff changeset
2668 v8 = (char *)v8 + 1;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2669 memcpy(v8, &v27.pitch, 2u);
0
Ritor1
parents:
diff changeset
2670 v8 = (char *)v8 + 2;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2671 memcpy(v8, &v27.palette_info, 2u);
0
Ritor1
parents:
diff changeset
2672 v8 = (char *)v8 + 2;
Ritor1
parents:
diff changeset
2673 memcpy(v8, &v18, 0x3Au);
Ritor1
parents:
diff changeset
2674 v9 = (char *)v8 + 58;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2675
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2676 lineRGB = (char*)malloc(3 * (wight + 2));
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2677 if ( heidth > 0 )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2678 {
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2679 v10 = pitch;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2680 v25 = heidth;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2681 v26 = 3 * pitch;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2682 v23 = 2 * wight;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2683 v11 = picture_data;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2684 v24 = (int)picture_data;
0
Ritor1
parents:
diff changeset
2685 while ( 1 )
Ritor1
parents:
diff changeset
2686 {
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2687 line_pictute_data = v11;
0
Ritor1
parents:
diff changeset
2688 v12 = 0;
Ritor1
parents:
diff changeset
2689 i = 0;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2690 if ( wight > 0 )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2691 {
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2692 lineG = (char *)lineRGB + pitch;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2693 lineB = (char *)lineRGB + 2 * pitch;
0
Ritor1
parents:
diff changeset
2694 do
Ritor1
parents:
diff changeset
2695 {
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2696 lineRGB[v12] = (signed int)(v7->uTargetRMask & *line_pictute_data) >> (v7->uTargetGBits + v7->uTargetBBits + v7->uTargetRBits - 8);
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2697 lineG[v12] = (signed int)(v7->uTargetGMask & *line_pictute_data) >> ( v7->uTargetBBits + v7->uTargetGBits- 8);
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2698 lineB[v12] = (v7->uTargetBMask & *line_pictute_data) << (8 - v7->uTargetBBits);
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2699
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2700 v12++;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2701 }
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2702 while ( v12 < wight );
0
Ritor1
parents:
diff changeset
2703 }
Ritor1
parents:
diff changeset
2704 for ( i = 0; i < v26; v9 = (char *)v9 + 1 )
Ritor1
parents:
diff changeset
2705 {
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2706 test_byte = 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2707 pict_byte = lineRGB [i];
0
Ritor1
parents:
diff changeset
2708 do
Ritor1
parents:
diff changeset
2709 {
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2710 v15 = i + test_byte;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2711 if ( *((char *)lineRGB + v15) != pict_byte )
0
Ritor1
parents:
diff changeset
2712 break;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2713 if ( !(v15 % pitch) )
0
Ritor1
parents:
diff changeset
2714 break;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2715 ++test_byte;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2716 }
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2717 while ( test_byte < 0x3Fu );
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2718 if ( i + test_byte > v26 )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2719 test_byte = 3 * pitch - i;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2720 if ( test_byte > 1u || pict_byte >= 0xC0u )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2721 {
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2722 v43 = test_byte | 0xC0;
0
Ritor1
parents:
diff changeset
2723 memcpy(v9, &v43, 1u);
Ritor1
parents:
diff changeset
2724 v9 = (char *)v9 + 1;
Ritor1
parents:
diff changeset
2725 }
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2726 memcpy(v9, &pict_byte, 1u);
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2727 i += test_byte;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2728 }
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2729 v11 +=wight ;
0
Ritor1
parents:
diff changeset
2730 v16 = v25-- == 1;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2731
0
Ritor1
parents:
diff changeset
2732 if ( v16 )
Ritor1
parents:
diff changeset
2733 break;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2734 v10 = pitch;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2735 }
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2736 }
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2737 free(lineRGB);
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2738 *(int *)packed_size = (char *)v9 - data_buff;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2739
0
Ritor1
parents:
diff changeset
2740 }
Ritor1
parents:
diff changeset
2741
Ritor1
parents:
diff changeset
2742 //----- (0049F8B5) --------------------------------------------------------
Ritor1
parents:
diff changeset
2743 FILE *Render::SavePCXImage(const char *Filename, char *a3, int a4, int a5)
Ritor1
parents:
diff changeset
2744 {
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1427
diff changeset
2745 //Render *v5; // esi@1
0
Ritor1
parents:
diff changeset
2746 FILE *result; // eax@1
Ritor1
parents:
diff changeset
2747 FILE *v7; // edi@4
Ritor1
parents:
diff changeset
2748 int v8; // ecx@5
Ritor1
parents:
diff changeset
2749 int v9; // eax@5
Ritor1
parents:
diff changeset
2750 int v10; // eax@7
Ritor1
parents:
diff changeset
2751 int v11; // ecx@9
Ritor1
parents:
diff changeset
2752 signed int v12; // eax@12
Ritor1
parents:
diff changeset
2753 char v13; // zf@21
Ritor1
parents:
diff changeset
2754 char v14[56]; // [sp+4h] [bp-A0h]@4
Ritor1
parents:
diff changeset
2755 __int16 v15; // [sp+3Ch] [bp-68h]@4
Ritor1
parents:
diff changeset
2756 char color_map[48]; // [sp+40h] [bp-64h]@4
Ritor1
parents:
diff changeset
2757 int v17; // [sp+70h] [bp-34h]@5
Ritor1
parents:
diff changeset
2758 int v18; // [sp+74h] [bp-30h]@5
Ritor1
parents:
diff changeset
2759 char *v19; // [sp+78h] [bp-2Ch]@5
Ritor1
parents:
diff changeset
2760 int v20; // [sp+7Ch] [bp-28h]@5
Ritor1
parents:
diff changeset
2761 PCXHeader_1 header1; // [sp+80h] [bp-24h]@4
Ritor1
parents:
diff changeset
2762 PCXHeader_2 header2; // [sp+90h] [bp-14h]@4
Ritor1
parents:
diff changeset
2763 void *ptr; // [sp+98h] [bp-Ch]@4
Ritor1
parents:
diff changeset
2764 int v24; // [sp+9Ch] [bp-8h]@2
Ritor1
parents:
diff changeset
2765 char *i; // [sp+A0h] [bp-4h]@8
Ritor1
parents:
diff changeset
2766
Ritor1
parents:
diff changeset
2767 result = fopen(Filename, "wb");
Ritor1
parents:
diff changeset
2768 Filename = (const char *)result;
Ritor1
parents:
diff changeset
2769 if ( result )
Ritor1
parents:
diff changeset
2770 {
Ritor1
parents:
diff changeset
2771 v24 = a4;
Ritor1
parents:
diff changeset
2772 if ( a4 & 1 )
Ritor1
parents:
diff changeset
2773 v24 = a4 + 1;
Ritor1
parents:
diff changeset
2774 header1.left = 0;
Ritor1
parents:
diff changeset
2775 header1.up = 0;
Ritor1
parents:
diff changeset
2776 header1.right = a4 - 1;
Ritor1
parents:
diff changeset
2777 header1.bottom = a5 - 1;
Ritor1
parents:
diff changeset
2778 header2.pitch = v24;
Ritor1
parents:
diff changeset
2779 memset(color_map, 0, sizeof(color_map));
Ritor1
parents:
diff changeset
2780 header2.reserved = 0;
Ritor1
parents:
diff changeset
2781 memset(v14, 0, sizeof(v14));
Ritor1
parents:
diff changeset
2782 v15 = 0;
Ritor1
parents:
diff changeset
2783 header1.manufacturer = 10;
Ritor1
parents:
diff changeset
2784 header1.version = 5;
Ritor1
parents:
diff changeset
2785 header1.encoding = 1;
Ritor1
parents:
diff changeset
2786 header1.bpp = 8;
Ritor1
parents:
diff changeset
2787 header1.hdpi = 75;
Ritor1
parents:
diff changeset
2788 header1.vdpi = 75;
Ritor1
parents:
diff changeset
2789 header2.planes = 3;
Ritor1
parents:
diff changeset
2790 header2.palette_info = 1;
Ritor1
parents:
diff changeset
2791 fwrite(&header1, 1u, 1u, (FILE *)Filename);
Ritor1
parents:
diff changeset
2792 v7 = (FILE *)Filename;
Ritor1
parents:
diff changeset
2793 fwrite(&header1.version, 1u, 1u, (FILE *)Filename);
Ritor1
parents:
diff changeset
2794 fwrite(&header1.encoding, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2795 fwrite(&header1.bpp, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2796 fwrite(&header1.left, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2797 fwrite(&header1.up, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2798 fwrite(&header1.right, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2799 fwrite(&header1.bottom, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2800 fwrite(&header1.hdpi, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2801 fwrite(&header1.vdpi, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2802 fwrite(color_map, 0x30u, 1u, v7);
Ritor1
parents:
diff changeset
2803 fwrite(&header2, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2804 fwrite(&header2.planes, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2805 fwrite(&header2.pitch, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2806 fwrite(&header2.palette_info, 2u, 1u, v7);
Ritor1
parents:
diff changeset
2807 fwrite(v14, 0x3Au, 1u, v7);
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2808 ptr = malloc(3 * a4 + 6);
0
Ritor1
parents:
diff changeset
2809 if ( a5 > 0 )
Ritor1
parents:
diff changeset
2810 {
Ritor1
parents:
diff changeset
2811 v8 = v24;
Ritor1
parents:
diff changeset
2812 v18 = a5;
Ritor1
parents:
diff changeset
2813 v20 = 3 * v24;
Ritor1
parents:
diff changeset
2814 v17 = 2 * a4;
Ritor1
parents:
diff changeset
2815 v9 = (int)a3;
Ritor1
parents:
diff changeset
2816 v19 = a3;
Ritor1
parents:
diff changeset
2817 while ( 1 )
Ritor1
parents:
diff changeset
2818 {
Ritor1
parents:
diff changeset
2819 a5 = v9;
Ritor1
parents:
diff changeset
2820 v10 = 0;
Ritor1
parents:
diff changeset
2821 if ( a4 > 0 )
Ritor1
parents:
diff changeset
2822 {
Ritor1
parents:
diff changeset
2823 a3 = (char *)ptr + v8;
Ritor1
parents:
diff changeset
2824 i = (char *)ptr + 2 * v24;
Ritor1
parents:
diff changeset
2825 do
Ritor1
parents:
diff changeset
2826 {
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1427
diff changeset
2827 *((char *)ptr + v10) = (signed int)(this->uTargetRMask & *(short *)a5) >> (LOBYTE(this->uTargetGBits)
71a2cf416478 LloydBeacons
Ritor1
parents: 1427
diff changeset
2828 + LOBYTE(this->uTargetBBits)
71a2cf416478 LloydBeacons
Ritor1
parents: 1427
diff changeset
2829 + this->uTargetRBits
0
Ritor1
parents:
diff changeset
2830 - 8);
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1427
diff changeset
2831 a3[v10] = (signed int)(this->uTargetGMask & *(short *)a5) >> (LOBYTE(this->uTargetBBits)
71a2cf416478 LloydBeacons
Ritor1
parents: 1427
diff changeset
2832 + LOBYTE(this->uTargetGBits)
0
Ritor1
parents:
diff changeset
2833 - 8);
Ritor1
parents:
diff changeset
2834 v11 = a5;
Ritor1
parents:
diff changeset
2835 a5 += 2;
1430
71a2cf416478 LloydBeacons
Ritor1
parents: 1427
diff changeset
2836 i[v10++] = (this->uTargetBMask & *(char *)v11) << (8 - LOBYTE(this->uTargetBBits));
0
Ritor1
parents:
diff changeset
2837 }
Ritor1
parents:
diff changeset
2838 while ( v10 < a4 );
Ritor1
parents:
diff changeset
2839 }
Ritor1
parents:
diff changeset
2840 for ( i = 0; (signed int)i < v20; i += BYTE3(a5) )
Ritor1
parents:
diff changeset
2841 {
Ritor1
parents:
diff changeset
2842 BYTE3(a5) = 1;
Ritor1
parents:
diff changeset
2843 BYTE3(Filename) = *((char *)ptr + (int)i);
Ritor1
parents:
diff changeset
2844 do
Ritor1
parents:
diff changeset
2845 {
Ritor1
parents:
diff changeset
2846 v12 = (signed int)&i[BYTE3(a5)];
Ritor1
parents:
diff changeset
2847 if ( *((char *)ptr + v12) != BYTE3(Filename) )
Ritor1
parents:
diff changeset
2848 break;
Ritor1
parents:
diff changeset
2849 if ( !(v12 % v24) )
Ritor1
parents:
diff changeset
2850 break;
Ritor1
parents:
diff changeset
2851 ++BYTE3(a5);
Ritor1
parents:
diff changeset
2852 }
Ritor1
parents:
diff changeset
2853 while ( BYTE3(a5) < 0x3Fu );
Ritor1
parents:
diff changeset
2854 if ( (signed int)&i[BYTE3(a5)] > v20 )
Ritor1
parents:
diff changeset
2855 BYTE3(a5) = 3 * v24 - (char)i;
Ritor1
parents:
diff changeset
2856 if ( BYTE3(a5) > 1u || BYTE3(Filename) >= 0xC0u )
Ritor1
parents:
diff changeset
2857 {
Ritor1
parents:
diff changeset
2858 BYTE3(a3) = BYTE3(a5) | 0xC0;
Ritor1
parents:
diff changeset
2859 fwrite((char *)&a3 + 3, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2860 }
Ritor1
parents:
diff changeset
2861 fwrite((char *)&Filename + 3, 1u, 1u, v7);
Ritor1
parents:
diff changeset
2862 }
Ritor1
parents:
diff changeset
2863 v9 = (int)&v19[v17];
Ritor1
parents:
diff changeset
2864 v13 = v18-- == 1;
Ritor1
parents:
diff changeset
2865 v19 += v17;
Ritor1
parents:
diff changeset
2866 if ( v13 )
Ritor1
parents:
diff changeset
2867 break;
Ritor1
parents:
diff changeset
2868 v8 = v24;
Ritor1
parents:
diff changeset
2869 }
Ritor1
parents:
diff changeset
2870 }
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2871 free(ptr);
0
Ritor1
parents:
diff changeset
2872 result = (FILE *)fclose(v7);
Ritor1
parents:
diff changeset
2873 }
Ritor1
parents:
diff changeset
2874 return result;
Ritor1
parents:
diff changeset
2875 }
Ritor1
parents:
diff changeset
2876
Ritor1
parents:
diff changeset
2877 //----- (0049FBCD) --------------------------------------------------------
Ritor1
parents:
diff changeset
2878 void Render::ClearTarget(unsigned int uColor)
Ritor1
parents:
diff changeset
2879 {
Ritor1
parents:
diff changeset
2880 if (pRenderD3D)
Ritor1
parents:
diff changeset
2881 {
Ritor1
parents:
diff changeset
2882 if (field_40110)
Ritor1
parents:
diff changeset
2883 pRenderD3D->ClearTarget(true, uColor, false, 0.0);
Ritor1
parents:
diff changeset
2884 }
Ritor1
parents:
diff changeset
2885 else
Ritor1
parents:
diff changeset
2886 memset32(pTargetSurface, uColor, field_10 * field_14 / 2);
Ritor1
parents:
diff changeset
2887 }
Ritor1
parents:
diff changeset
2888
Ritor1
parents:
diff changeset
2889 //----- (0049FC23) --------------------------------------------------------
Ritor1
parents:
diff changeset
2890 void Render::Release2()
Ritor1
parents:
diff changeset
2891 {
Ritor1
parents:
diff changeset
2892 Release();
Ritor1
parents:
diff changeset
2893 bWindowMode = 1;
Ritor1
parents:
diff changeset
2894 }
Ritor1
parents:
diff changeset
2895
Ritor1
parents:
diff changeset
2896 //----- (0049FC37) --------------------------------------------------------
Ritor1
parents:
diff changeset
2897 void Render::Present()
Ritor1
parents:
diff changeset
2898 {
Ritor1
parents:
diff changeset
2899 Render *v1; // esi@1
Ritor1
parents:
diff changeset
2900 struct tagRECT Rect; // [sp+8h] [bp-28h]@11
Ritor1
parents:
diff changeset
2901 RECT a4; // [sp+18h] [bp-18h]@11
Ritor1
parents:
diff changeset
2902 struct tagPOINT Point; // [sp+28h] [bp-8h]@11
Ritor1
parents:
diff changeset
2903
Ritor1
parents:
diff changeset
2904 v1 = this;
Ritor1
parents:
diff changeset
2905 if ( !pRenderer->pRenderD3D || this->field_40110 )
Ritor1
parents:
diff changeset
2906 {
Ritor1
parents:
diff changeset
2907 this->pBeforePresentFunction();
Ritor1
parents:
diff changeset
2908 if ( v1->pRenderD3D )
Ritor1
parents:
diff changeset
2909 {
Ritor1
parents:
diff changeset
2910 if ( v1->field_40110 )
Ritor1
parents:
diff changeset
2911 {
Ritor1
parents:
diff changeset
2912 pRenderD3D->Present(false);
Ritor1
parents:
diff changeset
2913 }
Ritor1
parents:
diff changeset
2914 }
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2915 else __debugbreak(); // no sr
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2916 /*{
0
Ritor1
parents:
diff changeset
2917 if ( v1->bWindowMode )
Ritor1
parents:
diff changeset
2918 {
Ritor1
parents:
diff changeset
2919 RestoreFrontBuffer();
Ritor1
parents:
diff changeset
2920 GetClientRect(v1->hWnd, &Rect);
Ritor1
parents:
diff changeset
2921 Point.y = 0;
Ritor1
parents:
diff changeset
2922 Point.x = 0;
Ritor1
parents:
diff changeset
2923 ClientToScreen(v1->hWnd, &Point);
Ritor1
parents:
diff changeset
2924 OffsetRect(&Rect, Point.x, Point.y);
Ritor1
parents:
diff changeset
2925 a4.top = 0;
Ritor1
parents:
diff changeset
2926 a4.bottom = 480;
Ritor1
parents:
diff changeset
2927 a4.left = 0;
Ritor1
parents:
diff changeset
2928 a4.right = 640;
Ritor1
parents:
diff changeset
2929 PresentRect(&Rect, &a4);
Ritor1
parents:
diff changeset
2930 }
Ritor1
parents:
diff changeset
2931 else
Ritor1
parents:
diff changeset
2932 {
Ritor1
parents:
diff changeset
2933 RestoreFrontBuffer();
Ritor1
parents:
diff changeset
2934 a4.top = 0;
Ritor1
parents:
diff changeset
2935 a4.bottom = 480;
Ritor1
parents:
diff changeset
2936 a4.left = 0;
Ritor1
parents:
diff changeset
2937 a4.right = 640;
Ritor1
parents:
diff changeset
2938 BltBackToFontFast(0, 0, &a4);
Ritor1
parents:
diff changeset
2939 }
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2940 }*/
0
Ritor1
parents:
diff changeset
2941 }
Ritor1
parents:
diff changeset
2942 }
Ritor1
parents:
diff changeset
2943
Ritor1
parents:
diff changeset
2944 //----- (0049FD3A) --------------------------------------------------------
Ritor1
parents:
diff changeset
2945 void Render::_49FD3A()
Ritor1
parents:
diff changeset
2946 {
Ritor1
parents:
diff changeset
2947 Render *v2; // esi@1
Ritor1
parents:
diff changeset
2948 IDirectDrawSurface4 *v3; // eax@6
Ritor1
parents:
diff changeset
2949 IDirectDrawSurface4 *v4; // ST0C_4@6
Ritor1
parents:
diff changeset
2950 RECT v5; // [sp+8h] [bp-10h]@6
Ritor1
parents:
diff changeset
2951
Ritor1
parents:
diff changeset
2952 auto a1 = this;
Ritor1
parents:
diff changeset
2953 v2 = a1;
Ritor1
parents:
diff changeset
2954 if ( a1->pRenderD3D )
Ritor1
parents:
diff changeset
2955 {
Ritor1
parents:
diff changeset
2956 if (pFrontBuffer4->IsLost() == DDERR_SURFACELOST)
Ritor1
parents:
diff changeset
2957 pFrontBuffer4->Restore();
Ritor1
parents:
diff changeset
2958 if (pBackBuffer4->IsLost() == DDERR_SURFACELOST)
Ritor1
parents:
diff changeset
2959 pBackBuffer4->Restore();
Ritor1
parents:
diff changeset
2960 v3 = v2->pBackBuffer4;
Ritor1
parents:
diff changeset
2961 v4 = v2->pFrontBuffer4;
Ritor1
parents:
diff changeset
2962 v5.top = 0;
Ritor1
parents:
diff changeset
2963 v5.bottom = 480;
Ritor1
parents:
diff changeset
2964 v5.left = 0;
Ritor1
parents:
diff changeset
2965 v5.right = 640;
Ritor1
parents:
diff changeset
2966 v3->BltFast(0, 0, v4, &v5, 16u);
Ritor1
parents:
diff changeset
2967 }
Ritor1
parents:
diff changeset
2968 }
Ritor1
parents:
diff changeset
2969
Ritor1
parents:
diff changeset
2970 //----- (0049FDBF) --------------------------------------------------------
Ritor1
parents:
diff changeset
2971 void Render::CreateZBuffer()
Ritor1
parents:
diff changeset
2972 {
Ritor1
parents:
diff changeset
2973 if (!pDefaultZBuffer)
Ritor1
parents:
diff changeset
2974 {
Ritor1
parents:
diff changeset
2975 pDefaultZBuffer = pActiveZBuffer = nullptr;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2976 pDefaultZBuffer = pActiveZBuffer = (int *)malloc(0x12C000);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 810
diff changeset
2977 memset32(pActiveZBuffer, 0xFFFF0000, 0x4B000u); // // inlined Render::ClearActiveZBuffer (mm8::004A085B)
0
Ritor1
parents:
diff changeset
2978 }
Ritor1
parents:
diff changeset
2979 }
Ritor1
parents:
diff changeset
2980
Ritor1
parents:
diff changeset
2981 //----- (0049FE05) --------------------------------------------------------
Ritor1
parents:
diff changeset
2982 void Render::Release()
Ritor1
parents:
diff changeset
2983 {
Ritor1
parents:
diff changeset
2984 Render *v1; // esi@1
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2985 //RenderD3D *v2; // ecx@1
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2986 //char v3; // zf@4
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2987 //void *v4; // ebx@6
0
Ritor1
parents:
diff changeset
2988 IDirectDraw *v5; // eax@10
Ritor1
parents:
diff changeset
2989 IDirectDrawSurface2 *v6; // eax@11
Ritor1
parents:
diff changeset
2990 IDirectDrawSurface2 *v7; // eax@13
Ritor1
parents:
diff changeset
2991 IDirectDrawSurface2 *v8; // eax@15
Ritor1
parents:
diff changeset
2992 IDirectDraw2 *v9; // eax@17
Ritor1
parents:
diff changeset
2993 IDirectDraw4 *v10; // eax@19
Ritor1
parents:
diff changeset
2994 IDirectDrawSurface4 *v11; // eax@20
Ritor1
parents:
diff changeset
2995 IDirectDrawSurface4 *v12; // eax@22
Ritor1
parents:
diff changeset
2996 IDirectDrawSurface4 *v13; // eax@24
Ritor1
parents:
diff changeset
2997 IDirectDraw4 *v14; // eax@26
Ritor1
parents:
diff changeset
2998 unsigned __int16 **v15; // ebx@28
Ritor1
parents:
diff changeset
2999 void **v16; // esi@29
Ritor1
parents:
diff changeset
3000
Ritor1
parents:
diff changeset
3001 v1 = this;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3002 if (pRenderD3D)
0
Ritor1
parents:
diff changeset
3003 {
Ritor1
parents:
diff changeset
3004 if ( v1->field_40110 )
Ritor1
parents:
diff changeset
3005 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3006 pRenderD3D->ClearTarget(true, 0, false, 1.0);
0
Ritor1
parents:
diff changeset
3007 pRenderD3D->Present(0);
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3008 pRenderD3D->ClearTarget(true, 0, false, 1.0);
0
Ritor1
parents:
diff changeset
3009 }
Ritor1
parents:
diff changeset
3010 v1->pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
3011 v1->pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3012 v1->pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3013 v1->pDirectDraw4 = 0;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3014 if (v1->pTargetSurface)
0
Ritor1
parents:
diff changeset
3015 {
Ritor1
parents:
diff changeset
3016 free(v1->ptr_400E8);
Ritor1
parents:
diff changeset
3017 v1->pTargetSurface = 0;
Ritor1
parents:
diff changeset
3018 v1->ptr_400E8 = 0;
Ritor1
parents:
diff changeset
3019 }
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3020 if (pRenderD3D)
0
Ritor1
parents:
diff changeset
3021 {
Ritor1
parents:
diff changeset
3022 pRenderD3D->Release();
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3023 delete pRenderD3D;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3024 }
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3025 pRenderD3D = 0;
0
Ritor1
parents:
diff changeset
3026 }
Ritor1
parents:
diff changeset
3027 else
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3028 ;//__debugbreak(); // no sr
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3029 /*{
0
Ritor1
parents:
diff changeset
3030 if ( bWinNT4_0 == 1 )
Ritor1
parents:
diff changeset
3031 {
Ritor1
parents:
diff changeset
3032 v5 = (IDirectDraw *)v1->pDirectDraw2;
Ritor1
parents:
diff changeset
3033 if ( !v5 )
Ritor1
parents:
diff changeset
3034 return;
Ritor1
parents:
diff changeset
3035 v5->SetCooperativeLevel(v1->hWnd, 8u);
Ritor1
parents:
diff changeset
3036 v1->pDirectDraw2->FlipToGDISurface();
Ritor1
parents:
diff changeset
3037 v6 = v1->pSomeSurface2;
Ritor1
parents:
diff changeset
3038 if ( v6 )
Ritor1
parents:
diff changeset
3039 {
Ritor1
parents:
diff changeset
3040 v6->Release();
Ritor1
parents:
diff changeset
3041 v1->pSomeSurface2 = 0;
Ritor1
parents:
diff changeset
3042 }
Ritor1
parents:
diff changeset
3043 v7 = v1->pBackBuffer2;
Ritor1
parents:
diff changeset
3044 if ( v7 )
Ritor1
parents:
diff changeset
3045 {
Ritor1
parents:
diff changeset
3046 v7->Release();
Ritor1
parents:
diff changeset
3047 v1->pBackBuffer2 = 0;
Ritor1
parents:
diff changeset
3048 }
Ritor1
parents:
diff changeset
3049 v8 = v1->pFrontBuffer2;
Ritor1
parents:
diff changeset
3050 if ( v8 )
Ritor1
parents:
diff changeset
3051 {
Ritor1
parents:
diff changeset
3052 v8->Release();
Ritor1
parents:
diff changeset
3053 v1->pFrontBuffer2 = 0;
Ritor1
parents:
diff changeset
3054 }
Ritor1
parents:
diff changeset
3055 v9 = v1->pDirectDraw2;
Ritor1
parents:
diff changeset
3056 if ( v9 )
Ritor1
parents:
diff changeset
3057 {
Ritor1
parents:
diff changeset
3058 v9->Release();
Ritor1
parents:
diff changeset
3059 v1->pDirectDraw2 = 0;
Ritor1
parents:
diff changeset
3060 }
Ritor1
parents:
diff changeset
3061 }
Ritor1
parents:
diff changeset
3062 else
Ritor1
parents:
diff changeset
3063 {
Ritor1
parents:
diff changeset
3064 v10 = v1->pDirectDraw4;
Ritor1
parents:
diff changeset
3065 if ( !v10 )
Ritor1
parents:
diff changeset
3066 return;
Ritor1
parents:
diff changeset
3067 v10->SetCooperativeLevel(v1->hWnd, 1032u);
Ritor1
parents:
diff changeset
3068 v1->pDirectDraw4->FlipToGDISurface();
Ritor1
parents:
diff changeset
3069 v11 = v1->pColorKeySurface4;
Ritor1
parents:
diff changeset
3070 if ( v11 )
Ritor1
parents:
diff changeset
3071 {
Ritor1
parents:
diff changeset
3072 v11->Release();
Ritor1
parents:
diff changeset
3073 v1->pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
3074 }
Ritor1
parents:
diff changeset
3075 v12 = v1->pBackBuffer4;
Ritor1
parents:
diff changeset
3076 if ( v12 )
Ritor1
parents:
diff changeset
3077 {
Ritor1
parents:
diff changeset
3078 v12->Release();
Ritor1
parents:
diff changeset
3079 v1->pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3080 }
Ritor1
parents:
diff changeset
3081 v13 = v1->pFrontBuffer4;
Ritor1
parents:
diff changeset
3082 if ( v13 )
Ritor1
parents:
diff changeset
3083 {
Ritor1
parents:
diff changeset
3084 v13->Release();
Ritor1
parents:
diff changeset
3085 v1->pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3086 }
Ritor1
parents:
diff changeset
3087 v14 = v1->pDirectDraw4;
Ritor1
parents:
diff changeset
3088 if ( v14 )
Ritor1
parents:
diff changeset
3089 {
Ritor1
parents:
diff changeset
3090 v14->Release();
Ritor1
parents:
diff changeset
3091 v1->pDirectDraw4 = 0;
Ritor1
parents:
diff changeset
3092 }
Ritor1
parents:
diff changeset
3093 }
Ritor1
parents:
diff changeset
3094 v15 = &v1->pTargetSurface;
Ritor1
parents:
diff changeset
3095 if ( v1->pTargetSurface )
Ritor1
parents:
diff changeset
3096 {
Ritor1
parents:
diff changeset
3097 v16 = (void **)&v1->ptr_400E8;
Ritor1
parents:
diff changeset
3098 free(*v16);
Ritor1
parents:
diff changeset
3099 *v15 = 0;
Ritor1
parents:
diff changeset
3100 *v16 = 0;
Ritor1
parents:
diff changeset
3101 }
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3102 }*/
0
Ritor1
parents:
diff changeset
3103 }
Ritor1
parents:
diff changeset
3104
Ritor1
parents:
diff changeset
3105 //----- (0049FFD7) --------------------------------------------------------
Ritor1
parents:
diff changeset
3106 void Render::CreateSomeTexture()
Ritor1
parents:
diff changeset
3107 {
Ritor1
parents:
diff changeset
3108 pRenderD3D->CreateTexture(64, 64, &pSurface, &pTexture, true, false, 32);
Ritor1
parents:
diff changeset
3109 }
Ritor1
parents:
diff changeset
3110
Ritor1
parents:
diff changeset
3111 //----- (0049FFFB) --------------------------------------------------------
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3112 bool Render::InitializeFullscreen()
0
Ritor1
parents:
diff changeset
3113 {
Ritor1
parents:
diff changeset
3114 //Render *v2; // esi@1
Ritor1
parents:
diff changeset
3115 //HWND v3; // ebx@1
Ritor1
parents:
diff changeset
3116 //void *v4; // eax@2
Ritor1
parents:
diff changeset
3117 //RenderD3D *v5; // eax@3
Ritor1
parents:
diff changeset
3118 unsigned int v6; // edx@5
Ritor1
parents:
diff changeset
3119 RenderD3D__DevInfo *v7; // ecx@5
Ritor1
parents:
diff changeset
3120 bool v8; // eax@6
Ritor1
parents:
diff changeset
3121 RenderD3D *v9; // ecx@13
Ritor1
parents:
diff changeset
3122 unsigned int v10; // eax@13
Ritor1
parents:
diff changeset
3123 RenderD3D *v11; // eax@25
Ritor1
parents:
diff changeset
3124 HRESULT v12; // eax@25
Ritor1
parents:
diff changeset
3125 int v13; // ecx@25
Ritor1
parents:
diff changeset
3126 int v14; // eax@27
Ritor1
parents:
diff changeset
3127 signed int v15; // ebx@31
Ritor1
parents:
diff changeset
3128 bool v16; // eax@35
Ritor1
parents:
diff changeset
3129 char v17; // zf@35
Ritor1
parents:
diff changeset
3130 IDirectDraw4 *v18; // eax@38
Ritor1
parents:
diff changeset
3131 HRESULT v19; // eax@38
Ritor1
parents:
diff changeset
3132 int *v20; // eax@39
Ritor1
parents:
diff changeset
3133 int *v22; // eax@42
Ritor1
parents:
diff changeset
3134 int v23; // ecx@42
Ritor1
parents:
diff changeset
3135 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@25
Ritor1
parents:
diff changeset
3136 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@40
Ritor1
parents:
diff changeset
3137 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@25
Ritor1
parents:
diff changeset
3138 DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@38
Ritor1
parents:
diff changeset
3139 void *v28; // [sp+2FCh] [bp-10h]@2
Ritor1
parents:
diff changeset
3140 int v29; // [sp+308h] [bp-4h]@2
Ritor1
parents:
diff changeset
3141
Ritor1
parents:
diff changeset
3142 //v2 = this;
Ritor1
parents:
diff changeset
3143 this->field_40110 = 0;
Ritor1
parents:
diff changeset
3144 this->pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
3145 this->pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3146 this->pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3147 this->pDirectDraw4 = 0;
Ritor1
parents:
diff changeset
3148 this->bColorKeySupported = 0;
Ritor1
parents:
diff changeset
3149 Release();
Ritor1
parents:
diff changeset
3150 //v3 = hWnd;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3151 this->window = window;
0
Ritor1
parents:
diff changeset
3152 CreateZBuffer();
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3153
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3154 /*if (!bUserDirect3D)
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3155 {
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3156 CreateDirectDraw();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3157 SetDirectDrawCooperationMode(hWnd, 1);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3158 SetDirectDrawDisplayMode(640u, 480u, 16u);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3159 CreateDirectDrawPrimarySurface();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3160 v15 = 1;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3161 }
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3162 else
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3163 {*/
0
Ritor1
parents:
diff changeset
3164 pRenderD3D = new RenderD3D;
Ritor1
parents:
diff changeset
3165 v28 = pRenderD3D;
Ritor1
parents:
diff changeset
3166 v6 = uDesiredDirect3DDevice;
Ritor1
parents:
diff changeset
3167 v29 = -1;
Ritor1
parents:
diff changeset
3168 v7 = pRenderD3D->pAvailableDevices;
Ritor1
parents:
diff changeset
3169 if ( v7[v6].bIsDeviceCompatible )
Ritor1
parents:
diff changeset
3170 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3171 v8 = pRenderD3D->CreateDevice(v6, 0, window->GetApiHandle());
0
Ritor1
parents:
diff changeset
3172 uAcquiredDirect3DDevice = uDesiredDirect3DDevice;
Ritor1
parents:
diff changeset
3173 }
Ritor1
parents:
diff changeset
3174 else
Ritor1
parents:
diff changeset
3175 {
Ritor1
parents:
diff changeset
3176 if ( v7[1].bIsDeviceCompatible )
Ritor1
parents:
diff changeset
3177 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3178 v8 = pRenderD3D->CreateDevice(1u, 0, window->GetApiHandle());
0
Ritor1
parents:
diff changeset
3179 uAcquiredDirect3DDevice = 1;
Ritor1
parents:
diff changeset
3180 }
Ritor1
parents:
diff changeset
3181 else
Ritor1
parents:
diff changeset
3182 {
Ritor1
parents:
diff changeset
3183 if ( !v7->bIsDeviceCompatible )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3184 Error("There aren't any D3D devices to create.");
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3185
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3186 v8 = pRenderD3D->CreateDevice(0, 0, window->GetApiHandle());
0
Ritor1
parents:
diff changeset
3187 uAcquiredDirect3DDevice = 0;
Ritor1
parents:
diff changeset
3188 }
Ritor1
parents:
diff changeset
3189 }
Ritor1
parents:
diff changeset
3190 if ( !v8 )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3191 Error("D3Drend->Init failed.");
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3192
0
Ritor1
parents:
diff changeset
3193 v9 = pRenderD3D;
Ritor1
parents:
diff changeset
3194 pBackBuffer4 = v9->pBackBuffer;
Ritor1
parents:
diff changeset
3195 pFrontBuffer4 = v9->pFrontBuffer;
Ritor1
parents:
diff changeset
3196 pDirectDraw4 = v9->pHost;
Ritor1
parents:
diff changeset
3197 v10 = pRenderD3D->GetDeviceCaps();
Ritor1
parents:
diff changeset
3198 if ( v10 & 1 )
Ritor1
parents:
diff changeset
3199 {
Ritor1
parents:
diff changeset
3200 if ( pRenderD3D )
Ritor1
parents:
diff changeset
3201 {
Ritor1
parents:
diff changeset
3202 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3203 delete pRenderD3D;
Ritor1
parents:
diff changeset
3204 }
Ritor1
parents:
diff changeset
3205 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3206 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3207 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3208 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3209 Error("Direct3D renderer: The device failed to return capabilities.");
0
Ritor1
parents:
diff changeset
3210 }
Ritor1
parents:
diff changeset
3211 if ( v10 & 0x3E )
Ritor1
parents:
diff changeset
3212 {
Ritor1
parents:
diff changeset
3213 if ( pRenderD3D )
Ritor1
parents:
diff changeset
3214 {
Ritor1
parents:
diff changeset
3215 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3216 delete pRenderD3D;
Ritor1
parents:
diff changeset
3217 }
Ritor1
parents:
diff changeset
3218 pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
3219 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3220 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3221 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3222 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3223 Error("Direct3D renderer: The device doesn't support the necessary alpha blending modes.");
0
Ritor1
parents:
diff changeset
3224 }
Ritor1
parents:
diff changeset
3225 if ( (v10 & 0x80u) != 0 )
Ritor1
parents:
diff changeset
3226 {
Ritor1
parents:
diff changeset
3227 if ( pRenderD3D )
Ritor1
parents:
diff changeset
3228 {
Ritor1
parents:
diff changeset
3229 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3230 delete pRenderD3D;
Ritor1
parents:
diff changeset
3231 }
Ritor1
parents:
diff changeset
3232 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3233 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3234 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3235 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3236 Error("Direct3D renderer: The device doesn't support non-square textures.");
0
Ritor1
parents:
diff changeset
3237 }
Ritor1
parents:
diff changeset
3238 LOBYTE(field_10365C) = ~(unsigned __int8)(v10 >> 6) & 1;
Ritor1
parents:
diff changeset
3239 bRequiredTextureStagesAvailable = CheckTextureStages();
Ritor1
parents:
diff changeset
3240 memset(&halCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
3241 halCaps.dwSize = 252;
Ritor1
parents:
diff changeset
3242 memset(&refCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
3243 v11 = pRenderD3D;
Ritor1
parents:
diff changeset
3244 refCaps.dwSize = 252;
Ritor1
parents:
diff changeset
3245 ErrD3D(v11->pDevice->GetCaps(&halCaps, &refCaps));
Ritor1
parents:
diff changeset
3246 v13 = halCaps.dwMinTextureWidth;
Ritor1
parents:
diff changeset
3247 if ( (unsigned int)halCaps.dwMinTextureWidth >= halCaps.dwMinTextureHeight )
Ritor1
parents:
diff changeset
3248 v13 = halCaps.dwMinTextureHeight;
Ritor1
parents:
diff changeset
3249 v14 = halCaps.dwMaxTextureWidth;
Ritor1
parents:
diff changeset
3250 uMinDeviceTextureDim = v13;
Ritor1
parents:
diff changeset
3251 if ( (unsigned int)v14 < halCaps.dwMaxTextureHeight )
Ritor1
parents:
diff changeset
3252 v14 = halCaps.dwMaxTextureHeight;
Ritor1
parents:
diff changeset
3253 uMaxDeviceTextureDim = v14;
Ritor1
parents:
diff changeset
3254 if ( (unsigned int)v13 < 4 )
Ritor1
parents:
diff changeset
3255 uMinDeviceTextureDim = 4;
Ritor1
parents:
diff changeset
3256 CreateSomeTexture();
Ritor1
parents:
diff changeset
3257 v15 = 1;
Ritor1
parents:
diff changeset
3258 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, true));
Ritor1
parents:
diff changeset
3259 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, true));
Ritor1
parents:
diff changeset
3260 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, 2u));
Ritor1
parents:
diff changeset
3261 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SPECULARENABLE, false));
Ritor1
parents:
diff changeset
3262 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, false));
Ritor1
parents:
diff changeset
3263 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHATESTENABLE, false));
Ritor1
parents:
diff changeset
3264 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1u));
Ritor1
parents:
diff changeset
3265 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u));
Ritor1
parents:
diff changeset
3266 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u));
Ritor1
parents:
diff changeset
3267 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 3u));
Ritor1
parents:
diff changeset
3268 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG1, 2u));
Ritor1
parents:
diff changeset
3269 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG2, 0));
Ritor1
parents:
diff changeset
3270 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAOP, 2u));
Ritor1
parents:
diff changeset
3271 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u));
Ritor1
parents:
diff changeset
3272 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG2, 0));
Ritor1
parents:
diff changeset
3273 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 4u));
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3274 //}
0
Ritor1
parents:
diff changeset
3275 ddpfPrimareSuface.dwSize = 32;
Ritor1
parents:
diff changeset
3276 GetTargetPixelFormat(&ddpfPrimareSuface);
Ritor1
parents:
diff changeset
3277 ParseTargetPixelFormat();
Ritor1
parents:
diff changeset
3278 _49EBF1();
Ritor1
parents:
diff changeset
3279 if ( pRenderD3D )
Ritor1
parents:
diff changeset
3280 {
Ritor1
parents:
diff changeset
3281 v16 = IsColorKeySupported(pDirectDraw4);
Ritor1
parents:
diff changeset
3282 v17 = uAcquiredDirect3DDevice == v15;
Ritor1
parents:
diff changeset
3283 bColorKeySupported = v16;
Ritor1
parents:
diff changeset
3284 if ( !v17 )
Ritor1
parents:
diff changeset
3285 bColorKeySupported = 0;
Ritor1
parents:
diff changeset
3286 if ( bColorKeySupported )
Ritor1
parents:
diff changeset
3287 {
Ritor1
parents:
diff changeset
3288 memset(&ddsd2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
3289 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask;
Ritor1
parents:
diff changeset
3290 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue;
Ritor1
parents:
diff changeset
3291 v18 = pDirectDraw4;
Ritor1
parents:
diff changeset
3292 ddsd2.dwSize = 124;
Ritor1
parents:
diff changeset
3293 ddsd2.dwFlags = 65543;
Ritor1
parents:
diff changeset
3294 ddsd2.ddsCaps.dwCaps = 2112;
Ritor1
parents:
diff changeset
3295 ddsd2.dwWidth = 640;
Ritor1
parents:
diff changeset
3296 ddsd2.dwHeight = 480;
Ritor1
parents:
diff changeset
3297 ErrD3D(v18->CreateSurface(&ddsd2, &pColorKeySurface4, 0));
Ritor1
parents:
diff changeset
3298 pBeforePresentFunction = Present_ColorKey;
Ritor1
parents:
diff changeset
3299 }
Ritor1
parents:
diff changeset
3300 else
Ritor1
parents:
diff changeset
3301 {
Ritor1
parents:
diff changeset
3302 pTargetSurface = 0;
Ritor1
parents:
diff changeset
3303 ptr_400E8 = 0;
1631
8094f1706b1f operator new() -> malloc
Nomad
parents: 1584
diff changeset
3304 v20 = (int *)malloc(0x96020u);
0
Ritor1
parents:
diff changeset
3305 ptr_400E8 = v20;
Ritor1
parents:
diff changeset
3306 if ( !v20
Ritor1
parents:
diff changeset
3307 || (memset(&pDesc, 0, 0x7Cu),
Ritor1
parents:
diff changeset
3308 pDesc.dwSize = 124,
Ritor1
parents:
diff changeset
3309 !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, v15)) )
Ritor1
parents:
diff changeset
3310 return 0;
Ritor1
parents:
diff changeset
3311 pBackBuffer4->Unlock(0);
Ritor1
parents:
diff changeset
3312 v22 = ptr_400E8 + 4;
Ritor1
parents:
diff changeset
3313 v23 = (unsigned int)pDesc.lpSurface & 7;
Ritor1
parents:
diff changeset
3314 LOBYTE(v22) = (unsigned __int8)v22 & 0xF8;
Ritor1
parents:
diff changeset
3315 uTargetSurfacePitch = 640;
Ritor1
parents:
diff changeset
3316 pBeforePresentFunction = Present_NoColorKey;
Ritor1
parents:
diff changeset
3317 v15 = 1;
Ritor1
parents:
diff changeset
3318 pTargetSurface = (unsigned __int16 *)((char *)v22 + 2 * v23);
Ritor1
parents:
diff changeset
3319 }
Ritor1
parents:
diff changeset
3320 field_40110 = v15;
Ritor1
parents:
diff changeset
3321 }
Ritor1
parents:
diff changeset
3322 else
Ritor1
parents:
diff changeset
3323 {
Ritor1
parents:
diff changeset
3324 pBeforePresentFunction = 0;//nullsub_1;
Ritor1
parents:
diff changeset
3325 }
Ritor1
parents:
diff changeset
3326 bWindowMode = 0;
Ritor1
parents:
diff changeset
3327 pParty->uFlags |= 2u;
1666
5302a9811767 MainMenuUI_Create() cleared
Ritor1
parents: 1665
diff changeset
3328 LODWORD(flt_6BE3A0) = 0x3F0CCCCDu; __debugbreak(); // replace with actual float
0
Ritor1
parents:
diff changeset
3329 pViewport->_4C02F8(36044);
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1110
diff changeset
3330 return v15 != 0;
0
Ritor1
parents:
diff changeset
3331 }
Ritor1
parents:
diff changeset
3332
Ritor1
parents:
diff changeset
3333 //----- (004A05F3) --------------------------------------------------------
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3334 bool Render::SwitchToWindow()
0
Ritor1
parents:
diff changeset
3335 {
Ritor1
parents:
diff changeset
3336 //Render *v2; // esi@1
Ritor1
parents:
diff changeset
3337 //void *v3; // eax@2
Ritor1
parents:
diff changeset
3338 //RenderD3D *v4; // eax@3
Ritor1
parents:
diff changeset
3339 //unsigned int v5; // edx@5
Ritor1
parents:
diff changeset
3340 //RenderD3D__DevInfo *v6; // ecx@5
Ritor1
parents:
diff changeset
3341 bool v7; // eax@7
Ritor1
parents:
diff changeset
3342 //RenderD3D *v8; // ecx@12
Ritor1
parents:
diff changeset
3343 unsigned int v9; // eax@12
Ritor1
parents:
diff changeset
3344 RenderD3D *v10; // eax@24
Ritor1
parents:
diff changeset
3345 HRESULT v11; // eax@24
Ritor1
parents:
diff changeset
3346 int v12; // eax@24
Ritor1
parents:
diff changeset
3347 int v13; // eax@26
Ritor1
parents:
diff changeset
3348 bool v14; // eax@32
Ritor1
parents:
diff changeset
3349 char v15; // zf@32
Ritor1
parents:
diff changeset
3350 IDirectDraw4 *v16; // eax@35
Ritor1
parents:
diff changeset
3351 HRESULT v17; // eax@35
Ritor1
parents:
diff changeset
3352 int *v18; // eax@36
Ritor1
parents:
diff changeset
3353 int *v19; // edx@38
Ritor1
parents:
diff changeset
3354 int v20; // eax@38
Ritor1
parents:
diff changeset
3355 unsigned int v21; // ecx@38
Ritor1
parents:
diff changeset
3356 int v22; // eax@41
Ritor1
parents:
diff changeset
3357 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@24
Ritor1
parents:
diff changeset
3358 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@37
Ritor1
parents:
diff changeset
3359 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@24
Ritor1
parents:
diff changeset
3360 DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@35
Ritor1
parents:
diff changeset
3361 //RenderD3D *thisa; // [sp+2FCh] [bp-10h]@2
Ritor1
parents:
diff changeset
3362 int v29; // [sp+308h] [bp-4h]@2
Ritor1
parents:
diff changeset
3363
Ritor1
parents:
diff changeset
3364 pParty->uFlags |= 2u;
Ritor1
parents:
diff changeset
3365 //v2 = this;
Ritor1
parents:
diff changeset
3366 flt_6BE3A0 = 0.55000001f;
Ritor1
parents:
diff changeset
3367 pViewport->_4C02F8(36044);
Ritor1
parents:
diff changeset
3368 field_40110 = 0;
Ritor1
parents:
diff changeset
3369 Release();
Ritor1
parents:
diff changeset
3370 pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
3371 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3372 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3373 pDirectDraw4 = 0;
Ritor1
parents:
diff changeset
3374 bColorKeySupported = 0;
Ritor1
parents:
diff changeset
3375 CreateZBuffer();
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3376 /*if (!bUserDirect3D)
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3377 {
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3378 CreateDirectDraw();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3379 SetDirectDrawCooperationMode(hWnd, 0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3380 field_4004C = 1;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3381 CreateFrontBuffer();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3382 CreateClipper(hWnd);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3383 CreateBackBuffer();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3384 field_40030 = 0;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3385 field_18_locked_pitch = 0;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3386 }
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3387 else
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3388 {*/
1631
8094f1706b1f operator new() -> malloc
Nomad
parents: 1584
diff changeset
3389 /*v3 = malloc(0x148u);
0
Ritor1
parents:
diff changeset
3390 thisa = (RenderD3D *)v3;
Ritor1
parents:
diff changeset
3391 v29 = 0;
Ritor1
parents:
diff changeset
3392 if ( v3 )
Ritor1
parents:
diff changeset
3393 v4 = RenderD3D::RenderD3D((RenderD3D *)v3);
Ritor1
parents:
diff changeset
3394 else
Ritor1
parents:
diff changeset
3395 v4 = 0;*/
Ritor1
parents:
diff changeset
3396 pRenderD3D = new RenderD3D;
Ritor1
parents:
diff changeset
3397 //v4 = pRenderD3D;
Ritor1
parents:
diff changeset
3398 //v5 = uDesiredDirect3DDevice;
Ritor1
parents:
diff changeset
3399 v29 = -1;
Ritor1
parents:
diff changeset
3400 //v6 = pRenderD3D->pAvailableDevices;
Ritor1
parents:
diff changeset
3401 if (pRenderD3D->pAvailableDevices[uDesiredDirect3DDevice].bIsDeviceCompatible &&
Ritor1
parents:
diff changeset
3402 uDesiredDirect3DDevice != 1 )
Ritor1
parents:
diff changeset
3403 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3404 v7 = pRenderD3D->CreateDevice(uDesiredDirect3DDevice, 1, window->GetApiHandle());
0
Ritor1
parents:
diff changeset
3405 uAcquiredDirect3DDevice = uDesiredDirect3DDevice;
Ritor1
parents:
diff changeset
3406 }
Ritor1
parents:
diff changeset
3407 else
Ritor1
parents:
diff changeset
3408 {
Ritor1
parents:
diff changeset
3409 if ( !pRenderD3D->pAvailableDevices[0].bIsDeviceCompatible )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3410 Error("There aren't any D3D devices to init.");
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3411
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3412 v7 = pRenderD3D->CreateDevice(0, 1, window->GetApiHandle());
0
Ritor1
parents:
diff changeset
3413 uAcquiredDirect3DDevice = 0;
Ritor1
parents:
diff changeset
3414 }
Ritor1
parents:
diff changeset
3415 if ( !v7 )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3416 Error("D3Drend->Init failed.");
0
Ritor1
parents:
diff changeset
3417
Ritor1
parents:
diff changeset
3418 //v8 = pRenderD3D;
Ritor1
parents:
diff changeset
3419 pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
3420 pBackBuffer4 = pRenderD3D->pBackBuffer;
Ritor1
parents:
diff changeset
3421 pFrontBuffer4 = pRenderD3D->pFrontBuffer;
Ritor1
parents:
diff changeset
3422 pDirectDraw4 = pRenderD3D->pHost;
Ritor1
parents:
diff changeset
3423 v9 = pRenderD3D->GetDeviceCaps();
Ritor1
parents:
diff changeset
3424 if ( v9 & 1 )
Ritor1
parents:
diff changeset
3425 {
Ritor1
parents:
diff changeset
3426 if (pRenderD3D)
Ritor1
parents:
diff changeset
3427 {
Ritor1
parents:
diff changeset
3428 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3429 delete pRenderD3D;
Ritor1
parents:
diff changeset
3430 }
Ritor1
parents:
diff changeset
3431 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3432 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3433 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3434 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3435 Error("Direct3D renderer: The device failed to return capabilities.");
0
Ritor1
parents:
diff changeset
3436 }
Ritor1
parents:
diff changeset
3437 if ( v9 & 0x3E )
Ritor1
parents:
diff changeset
3438 {
Ritor1
parents:
diff changeset
3439 if (pRenderD3D)
Ritor1
parents:
diff changeset
3440 {
Ritor1
parents:
diff changeset
3441 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3442 delete pRenderD3D;
Ritor1
parents:
diff changeset
3443 }
Ritor1
parents:
diff changeset
3444 pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
3445 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3446 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3447 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3448 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3449 Error("Direct3D renderer: The device doesn't support the necessary alpha blending modes.");
0
Ritor1
parents:
diff changeset
3450 }
Ritor1
parents:
diff changeset
3451 if ( (v9 & 0x80u) != 0 )
Ritor1
parents:
diff changeset
3452 {
Ritor1
parents:
diff changeset
3453 if (pRenderD3D)
Ritor1
parents:
diff changeset
3454 {
Ritor1
parents:
diff changeset
3455 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3456 delete pRenderD3D;
Ritor1
parents:
diff changeset
3457 }
Ritor1
parents:
diff changeset
3458 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3459 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3460 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3461 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3462 Error("Direct3D renderer: The device doesn't support non-square textures.");
0
Ritor1
parents:
diff changeset
3463 }
Ritor1
parents:
diff changeset
3464 LOBYTE(field_10365C) = ~(unsigned __int8)(v9 >> 6) & 1;
Ritor1
parents:
diff changeset
3465 bRequiredTextureStagesAvailable = CheckTextureStages();
Ritor1
parents:
diff changeset
3466 memset(&halCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
3467 halCaps.dwSize = 252;
Ritor1
parents:
diff changeset
3468 memset(&refCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
3469 //v10 = v2->pRenderD3D;
Ritor1
parents:
diff changeset
3470 refCaps.dwSize = 252;
Ritor1
parents:
diff changeset
3471 ErrD3D(pRenderD3D->pDevice->GetCaps(&halCaps, &refCaps));
Ritor1
parents:
diff changeset
3472 v12 = halCaps.dwMinTextureWidth;
Ritor1
parents:
diff changeset
3473 if ( (unsigned int)halCaps.dwMinTextureWidth >= halCaps.dwMinTextureHeight )
Ritor1
parents:
diff changeset
3474 v12 = halCaps.dwMinTextureHeight;
Ritor1
parents:
diff changeset
3475 uMinDeviceTextureDim = v12;
Ritor1
parents:
diff changeset
3476 v13 = halCaps.dwMaxTextureWidth;
Ritor1
parents:
diff changeset
3477 if ( (unsigned int)halCaps.dwMaxTextureWidth < halCaps.dwMaxTextureHeight )
Ritor1
parents:
diff changeset
3478 v13 = halCaps.dwMaxTextureHeight;
Ritor1
parents:
diff changeset
3479 uMaxDeviceTextureDim = v13;
Ritor1
parents:
diff changeset
3480 CreateSomeTexture();
Ritor1
parents:
diff changeset
3481 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, 1u));
Ritor1
parents:
diff changeset
3482 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, 1u));
Ritor1
parents:
diff changeset
3483 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, 2u));
Ritor1
parents:
diff changeset
3484 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SPECULARENABLE, 0));
Ritor1
parents:
diff changeset
3485 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, 0));
Ritor1
parents:
diff changeset
3486 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1u));
Ritor1
parents:
diff changeset
3487 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u));
Ritor1
parents:
diff changeset
3488 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u));
Ritor1
parents:
diff changeset
3489 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 3u));
Ritor1
parents:
diff changeset
3490 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG1, 2u));
Ritor1
parents:
diff changeset
3491 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG2, 0));
Ritor1
parents:
diff changeset
3492 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAOP, 2u));
Ritor1
parents:
diff changeset
3493 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u));
Ritor1
parents:
diff changeset
3494 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG2, 0));
Ritor1
parents:
diff changeset
3495 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 4u));
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3496 //}
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3497
0
Ritor1
parents:
diff changeset
3498 ddpfPrimareSuface.dwSize = 32;
Ritor1
parents:
diff changeset
3499 GetTargetPixelFormat(&ddpfPrimareSuface);
Ritor1
parents:
diff changeset
3500 ParseTargetPixelFormat();
Ritor1
parents:
diff changeset
3501 _49EBF1();
Ritor1
parents:
diff changeset
3502 if ( !pRenderD3D )
Ritor1
parents:
diff changeset
3503 {
Ritor1
parents:
diff changeset
3504 pBeforePresentFunction = 0;//nullsub_1;
Ritor1
parents:
diff changeset
3505 goto LABEL_47;
Ritor1
parents:
diff changeset
3506 }
Ritor1
parents:
diff changeset
3507 v14 = IsColorKeySupported(pDirectDraw4);
Ritor1
parents:
diff changeset
3508 v15 = uAcquiredDirect3DDevice == 1;
Ritor1
parents:
diff changeset
3509 bColorKeySupported = v14;
Ritor1
parents:
diff changeset
3510 if ( !v15 )
Ritor1
parents:
diff changeset
3511 bColorKeySupported = 0;
Ritor1
parents:
diff changeset
3512 if ( bColorKeySupported )
Ritor1
parents:
diff changeset
3513 {
Ritor1
parents:
diff changeset
3514 memset(&ddsd2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
3515 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask;
Ritor1
parents:
diff changeset
3516 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue;
Ritor1
parents:
diff changeset
3517 v16 = pDirectDraw4;
Ritor1
parents:
diff changeset
3518 ddsd2.dwSize = 124;
Ritor1
parents:
diff changeset
3519 ddsd2.dwFlags = 65543;
Ritor1
parents:
diff changeset
3520 ddsd2.ddsCaps.dwCaps = 2112;
Ritor1
parents:
diff changeset
3521 ddsd2.dwWidth = 640;
Ritor1
parents:
diff changeset
3522 ddsd2.dwHeight = 480;
Ritor1
parents:
diff changeset
3523 ErrD3D(v16->CreateSurface(&ddsd2, &pColorKeySurface4, 0));
Ritor1
parents:
diff changeset
3524 pBeforePresentFunction = Present_ColorKey;
Ritor1
parents:
diff changeset
3525 LABEL_45:
Ritor1
parents:
diff changeset
3526 field_40110 = 1;
Ritor1
parents:
diff changeset
3527 LABEL_47:
Ritor1
parents:
diff changeset
3528 bWindowMode = 1;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3529 //hWnd = hWnd;
0
Ritor1
parents:
diff changeset
3530 return 0;
Ritor1
parents:
diff changeset
3531 }
Ritor1
parents:
diff changeset
3532 pTargetSurface = 0;
Ritor1
parents:
diff changeset
3533 ptr_400E8 = 0;
Ritor1
parents:
diff changeset
3534 v18 = (int *)new char[0x96020];
Ritor1
parents:
diff changeset
3535 memset(v18, -1, 0x96020);
Ritor1
parents:
diff changeset
3536 ptr_400E8 = v18;
Ritor1
parents:
diff changeset
3537 if ( v18 )
Ritor1
parents:
diff changeset
3538 {
Ritor1
parents:
diff changeset
3539 memset(&pDesc, 0, 0x7Cu);
Ritor1
parents:
diff changeset
3540 pDesc.dwSize = 124;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
3541 if ( pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, DDLOCK_WAIT) )
0
Ritor1
parents:
diff changeset
3542 {
Ritor1
parents:
diff changeset
3543 pRenderer->pBackBuffer4->Unlock(0);
Ritor1
parents:
diff changeset
3544 v19 = ptr_400E8;
Ritor1
parents:
diff changeset
3545 v20 = (unsigned int)pDesc.lpSurface & 7;
Ritor1
parents:
diff changeset
3546 v21 = (unsigned int)ptr_400E8 & 7;
Ritor1
parents:
diff changeset
3547 if ( v21 == v20 )
Ritor1
parents:
diff changeset
3548 {
Ritor1
parents:
diff changeset
3549 pTargetSurface = (unsigned __int16 *)v19;
Ritor1
parents:
diff changeset
3550 }
Ritor1
parents:
diff changeset
3551 else
Ritor1
parents:
diff changeset
3552 {
Ritor1
parents:
diff changeset
3553 if ( (signed int)v21 >= v20 )
Ritor1
parents:
diff changeset
3554 v22 = (int)((char *)v19 + 2 * (v21 - v20) + 16);
Ritor1
parents:
diff changeset
3555 else
Ritor1
parents:
diff changeset
3556 v22 = (int)((char *)v19 + 2 * (v20 - v21) + 16);
Ritor1
parents:
diff changeset
3557 pTargetSurface = (unsigned __int16 *)v22;
Ritor1
parents:
diff changeset
3558 }
Ritor1
parents:
diff changeset
3559 uTargetSurfacePitch = 640;
Ritor1
parents:
diff changeset
3560 pBeforePresentFunction = Present_NoColorKey;
Ritor1
parents:
diff changeset
3561 goto LABEL_45;
Ritor1
parents:
diff changeset
3562 }
Ritor1
parents:
diff changeset
3563 }
Ritor1
parents:
diff changeset
3564 return 0;
Ritor1
parents:
diff changeset
3565 }
Ritor1
parents:
diff changeset
3566
Ritor1
parents:
diff changeset
3567 //----- (004A0BEE) --------------------------------------------------------
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3568 char Render::RasterLine2D(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW, unsigned __int16 uColor)
0
Ritor1
parents:
diff changeset
3569 {
Ritor1
parents:
diff changeset
3570 int v6; // edi@1
Ritor1
parents:
diff changeset
3571 int v7; // edx@5
Ritor1
parents:
diff changeset
3572 unsigned int v8; // ebx@5
Ritor1
parents:
diff changeset
3573 int v9; // eax@7
Ritor1
parents:
diff changeset
3574 unsigned int v10; // ecx@9
Ritor1
parents:
diff changeset
3575 unsigned int v11; // esi@13
Ritor1
parents:
diff changeset
3576 int v12; // eax@17
Ritor1
parents:
diff changeset
3577 int v13; // eax@21
Ritor1
parents:
diff changeset
3578 Render *v14; // edi@21
Ritor1
parents:
diff changeset
3579 int v15; // eax@25
Ritor1
parents:
diff changeset
3580 int v16; // eax@27
Ritor1
parents:
diff changeset
3581 signed int v17; // eax@28
Ritor1
parents:
diff changeset
3582 signed int v18; // edi@30
Ritor1
parents:
diff changeset
3583 signed __int64 v19; // qax@41
Ritor1
parents:
diff changeset
3584 int v20; // edi@41
Ritor1
parents:
diff changeset
3585 unsigned int v21; // edi@46
Ritor1
parents:
diff changeset
3586 int v22; // esi@47
Ritor1
parents:
diff changeset
3587 int v23; // ebx@47
Ritor1
parents:
diff changeset
3588 signed int v24; // edx@50
Ritor1
parents:
diff changeset
3589 signed int v25; // esi@52
Ritor1
parents:
diff changeset
3590 unsigned __int16 *v26; // ecx@52
Ritor1
parents:
diff changeset
3591 int v27; // ebx@54
Ritor1
parents:
diff changeset
3592 int v28; // edi@55
Ritor1
parents:
diff changeset
3593 int v29; // edx@55
Ritor1
parents:
diff changeset
3594 int v30; // ebx@60
Ritor1
parents:
diff changeset
3595 int v31; // edx@61
Ritor1
parents:
diff changeset
3596 int v32; // edi@61
Ritor1
parents:
diff changeset
3597 int v34; // [sp+Ch] [bp-10h]@3
Ritor1
parents:
diff changeset
3598 Render *v35; // [sp+10h] [bp-Ch]@1
Ritor1
parents:
diff changeset
3599 __int64 v36; // [sp+14h] [bp-8h]@1
Ritor1
parents:
diff changeset
3600 signed int v37; // [sp+18h] [bp-4h]@28
Ritor1
parents:
diff changeset
3601 unsigned int uXa; // [sp+24h] [bp+8h]@49
Ritor1
parents:
diff changeset
3602 unsigned int uYa; // [sp+28h] [bp+Ch]@28
Ritor1
parents:
diff changeset
3603 int uYb; // [sp+28h] [bp+Ch]@47
Ritor1
parents:
diff changeset
3604 int uZa; // [sp+2Ch] [bp+10h]@38
Ritor1
parents:
diff changeset
3605
Ritor1
parents:
diff changeset
3606 v36 = 0i64;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3607 v6 = this->raster_clip_x;
0
Ritor1
parents:
diff changeset
3608 v35 = this;
Ritor1
parents:
diff changeset
3609 if ( (signed int)uX < v6 )
Ritor1
parents:
diff changeset
3610 HIDWORD(v36) = 8;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3611 v34 = this->raster_clip_z;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3612 if ( (signed int)uX > this->raster_clip_z )
0
Ritor1
parents:
diff changeset
3613 HIDWORD(v36) |= 4u;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3614 v7 = this->raster_clip_y;
0
Ritor1
parents:
diff changeset
3615 v8 = uY;
Ritor1
parents:
diff changeset
3616 if ( (signed int)uY < v7 )
Ritor1
parents:
diff changeset
3617 HIDWORD(v36) |= 2u;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3618 v9 = this->raster_clip_w;
0
Ritor1
parents:
diff changeset
3619 if ( (signed int)uY > v9 )
Ritor1
parents:
diff changeset
3620 HIDWORD(v36) |= 1u;
Ritor1
parents:
diff changeset
3621 v10 = uZ;
Ritor1
parents:
diff changeset
3622 if ( (signed int)uZ < v6 )
Ritor1
parents:
diff changeset
3623 LODWORD(v36) = 8;
Ritor1
parents:
diff changeset
3624 if ( (signed int)uZ > v34 )
Ritor1
parents:
diff changeset
3625 LODWORD(v36) = v36 | 4;
Ritor1
parents:
diff changeset
3626 v11 = uW;
Ritor1
parents:
diff changeset
3627 if ( (signed int)uW < v7 )
Ritor1
parents:
diff changeset
3628 LODWORD(v36) = v36 | 2;
Ritor1
parents:
diff changeset
3629 if ( (signed int)uW > v9 )
Ritor1
parents:
diff changeset
3630 LODWORD(v36) = v36 | 1;
Ritor1
parents:
diff changeset
3631 LOBYTE(v12) = v36;
Ritor1
parents:
diff changeset
3632 if ( (unsigned int)v36 & HIDWORD(v36) )
Ritor1
parents:
diff changeset
3633 return v12;
Ritor1
parents:
diff changeset
3634 if ( !v36 )
Ritor1
parents:
diff changeset
3635 {
Ritor1
parents:
diff changeset
3636 LABEL_46:
Ritor1
parents:
diff changeset
3637 v21 = pRenderer->uTargetSurfacePitch;
Ritor1
parents:
diff changeset
3638 if ( pRenderer->uTargetSurfacePitch )
Ritor1
parents:
diff changeset
3639 {
Ritor1
parents:
diff changeset
3640 v12 = uX + v8 * pRenderer->uTargetSurfacePitch;
Ritor1
parents:
diff changeset
3641 v22 = v11 - v8;
Ritor1
parents:
diff changeset
3642 v23 = v22;
Ritor1
parents:
diff changeset
3643 uYb = v22;
Ritor1
parents:
diff changeset
3644 if ( v22 < 0 )
Ritor1
parents:
diff changeset
3645 {
Ritor1
parents:
diff changeset
3646 v23 = -v22;
Ritor1
parents:
diff changeset
3647 uYb = -v22;
Ritor1
parents:
diff changeset
3648 v21 = -pRenderer->uTargetSurfacePitch;
Ritor1
parents:
diff changeset
3649 }
Ritor1
parents:
diff changeset
3650 uXa = v10 - uX;
Ritor1
parents:
diff changeset
3651 if ( (uXa & 0x80000000u) == 0 )
Ritor1
parents:
diff changeset
3652 {
Ritor1
parents:
diff changeset
3653 v24 = 1;
Ritor1
parents:
diff changeset
3654 }
Ritor1
parents:
diff changeset
3655 else
Ritor1
parents:
diff changeset
3656 {
Ritor1
parents:
diff changeset
3657 uXa = -uXa;
Ritor1
parents:
diff changeset
3658 v24 = -1;
Ritor1
parents:
diff changeset
3659 }
Ritor1
parents:
diff changeset
3660 v25 = 0;
Ritor1
parents:
diff changeset
3661 v26 = v35->pTargetSurface;
Ritor1
parents:
diff changeset
3662 if ( v26 )
Ritor1
parents:
diff changeset
3663 {
Ritor1
parents:
diff changeset
3664 if ( (signed int)uXa <= v23 )
Ritor1
parents:
diff changeset
3665 {
Ritor1
parents:
diff changeset
3666 v30 = v23 + 1;
Ritor1
parents:
diff changeset
3667 if ( v30 > 0 )
Ritor1
parents:
diff changeset
3668 {
Ritor1
parents:
diff changeset
3669 v31 = 2 * v24;
Ritor1
parents:
diff changeset
3670 v32 = 2 * v21;
Ritor1
parents:
diff changeset
3671 v12 = (int)&v26[v12];
Ritor1
parents:
diff changeset
3672 do
Ritor1
parents:
diff changeset
3673 {
Ritor1
parents:
diff changeset
3674 v25 += uXa;
Ritor1
parents:
diff changeset
3675 *(short *)v12 = uColor;
Ritor1
parents:
diff changeset
3676 v12 += v32;
Ritor1
parents:
diff changeset
3677 if ( v25 > 0 )
Ritor1
parents:
diff changeset
3678 {
Ritor1
parents:
diff changeset
3679 v25 -= uYb;
Ritor1
parents:
diff changeset
3680 v12 += v31;
Ritor1
parents:
diff changeset
3681 }
Ritor1
parents:
diff changeset
3682 --v30;
Ritor1
parents:
diff changeset
3683 }
Ritor1
parents:
diff changeset
3684 while ( v30 );
Ritor1
parents:
diff changeset
3685 }
Ritor1
parents:
diff changeset
3686 }
Ritor1
parents:
diff changeset
3687 else
Ritor1
parents:
diff changeset
3688 {
Ritor1
parents:
diff changeset
3689 v27 = uXa + 1;
Ritor1
parents:
diff changeset
3690 if ( (signed int)(uXa + 1) > 0 )
Ritor1
parents:
diff changeset
3691 {
Ritor1
parents:
diff changeset
3692 v28 = 2 * v21;
Ritor1
parents:
diff changeset
3693 v29 = 2 * v24;
Ritor1
parents:
diff changeset
3694 v12 = (int)&v26[v12];
Ritor1
parents:
diff changeset
3695 do
Ritor1
parents:
diff changeset
3696 {
Ritor1
parents:
diff changeset
3697 v25 += uYb;
Ritor1
parents:
diff changeset
3698 *(short *)v12 = uColor;
Ritor1
parents:
diff changeset
3699 v12 += v29;
Ritor1
parents:
diff changeset
3700 if ( v25 > (signed int)uXa )
Ritor1
parents:
diff changeset
3701 {
Ritor1
parents:
diff changeset
3702 v25 -= uXa;
Ritor1
parents:
diff changeset
3703 v12 += v28;
Ritor1
parents:
diff changeset
3704 }
Ritor1
parents:
diff changeset
3705 --v27;
Ritor1
parents:
diff changeset
3706 }
Ritor1
parents:
diff changeset
3707 while ( v27 );
Ritor1
parents:
diff changeset
3708 }
Ritor1
parents:
diff changeset
3709 }
Ritor1
parents:
diff changeset
3710 }
Ritor1
parents:
diff changeset
3711 }
Ritor1
parents:
diff changeset
3712 return v12;
Ritor1
parents:
diff changeset
3713 }
Ritor1
parents:
diff changeset
3714 if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 8 )
Ritor1
parents:
diff changeset
3715 {
Ritor1
parents:
diff changeset
3716 if ( BYTE4(v36) & 8 )
Ritor1
parents:
diff changeset
3717 {
Ritor1
parents:
diff changeset
3718 v13 = (signed int)((uW - uY) * (v6 - uX)) / (signed int)(uZ - uX);
Ritor1
parents:
diff changeset
3719 v14 = v35;
Ritor1
parents:
diff changeset
3720 v8 = v13 + uY;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3721 uX = v35->raster_clip_x;
0
Ritor1
parents:
diff changeset
3722 goto LABEL_24;
Ritor1
parents:
diff changeset
3723 }
Ritor1
parents:
diff changeset
3724 v10 = v6;
Ritor1
parents:
diff changeset
3725 v11 = (signed int)((uY - uW) * (v6 - uZ)) / (signed int)(uX - uZ) + uW;
Ritor1
parents:
diff changeset
3726 }
Ritor1
parents:
diff changeset
3727 v14 = v35;
Ritor1
parents:
diff changeset
3728 LABEL_24:
Ritor1
parents:
diff changeset
3729 if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 4 )
Ritor1
parents:
diff changeset
3730 {
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3731 v15 = v14->raster_clip_z;
0
Ritor1
parents:
diff changeset
3732 if ( BYTE4(v36) & 4 )
Ritor1
parents:
diff changeset
3733 {
Ritor1
parents:
diff changeset
3734 v14 = v35;
Ritor1
parents:
diff changeset
3735 v8 += (signed int)((v11 - v8) * (v15 - uX)) / (signed int)(v10 - uX);
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3736 uX = v35->raster_clip_z;
0
Ritor1
parents:
diff changeset
3737 }
Ritor1
parents:
diff changeset
3738 else
Ritor1
parents:
diff changeset
3739 {
Ritor1
parents:
diff changeset
3740 v16 = (signed int)((v8 - v11) * (v15 - v10)) / (signed int)(uX - v10);
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3741 v10 = v14->raster_clip_z;
0
Ritor1
parents:
diff changeset
3742 v11 += v16;
Ritor1
parents:
diff changeset
3743 }
Ritor1
parents:
diff changeset
3744 }
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3745 v17 = v14->raster_clip_y;
0
Ritor1
parents:
diff changeset
3746 v37 = 0;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3747 uYa = v14->raster_clip_y;
0
Ritor1
parents:
diff changeset
3748 if ( (signed int)v8 < v17 )
Ritor1
parents:
diff changeset
3749 v37 = 2;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3750 v18 = v14->raster_clip_w;
0
Ritor1
parents:
diff changeset
3751 if ( (signed int)v8 > v18 )
Ritor1
parents:
diff changeset
3752 v37 |= 1u;
Ritor1
parents:
diff changeset
3753 if ( (signed int)v11 >= v17 )
Ritor1
parents:
diff changeset
3754 v12 = 0;
Ritor1
parents:
diff changeset
3755 else
Ritor1
parents:
diff changeset
3756 v12 = 2;
Ritor1
parents:
diff changeset
3757 if ( (signed int)v11 > v18 )
Ritor1
parents:
diff changeset
3758 LOBYTE(v12) = v12 | 1;
Ritor1
parents:
diff changeset
3759 if ( !(v12 & v37) )
Ritor1
parents:
diff changeset
3760 {
Ritor1
parents:
diff changeset
3761 v12 ^= v37;
Ritor1
parents:
diff changeset
3762 uZa = v12;
Ritor1
parents:
diff changeset
3763 if ( v12 & 2 )
Ritor1
parents:
diff changeset
3764 {
Ritor1
parents:
diff changeset
3765 if ( v37 & 2 )
Ritor1
parents:
diff changeset
3766 {
Ritor1
parents:
diff changeset
3767 uX += (signed int)((v10 - uX) * (uYa - v8)) / (signed int)(v11 - v8);
Ritor1
parents:
diff changeset
3768 LOBYTE(v12) = (char)v35;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3769 v8 = v35->raster_clip_y;
0
Ritor1
parents:
diff changeset
3770 }
Ritor1
parents:
diff changeset
3771 else
Ritor1
parents:
diff changeset
3772 {
Ritor1
parents:
diff changeset
3773 v19 = (signed int)((uX - v10) * (uYa - v11));
Ritor1
parents:
diff changeset
3774 v20 = v8 - v11;
Ritor1
parents:
diff changeset
3775 v11 = uYa;
Ritor1
parents:
diff changeset
3776 v12 = v19 / v20;
Ritor1
parents:
diff changeset
3777 v10 += v12;
Ritor1
parents:
diff changeset
3778 }
Ritor1
parents:
diff changeset
3779 }
Ritor1
parents:
diff changeset
3780 if ( uZa & 1 )
Ritor1
parents:
diff changeset
3781 {
Ritor1
parents:
diff changeset
3782 if ( v37 & 1 )
Ritor1
parents:
diff changeset
3783 {
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3784 uX += (signed int)((v10 - uX) * (v35->raster_clip_w - v8)) / (signed int)(v11 - v8);
0
Ritor1
parents:
diff changeset
3785 LOBYTE(v12) = (char)v35;
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3786 v8 = v35->raster_clip_w;
0
Ritor1
parents:
diff changeset
3787 }
Ritor1
parents:
diff changeset
3788 else
Ritor1
parents:
diff changeset
3789 {
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3790 v12 = (signed int)((uX - v10) * (v35->raster_clip_w - v11)) / (signed int)(v8 - v11);
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3791 v11 = v35->raster_clip_w;
0
Ritor1
parents:
diff changeset
3792 v10 += v12;
Ritor1
parents:
diff changeset
3793 }
Ritor1
parents:
diff changeset
3794 }
Ritor1
parents:
diff changeset
3795 goto LABEL_46;
Ritor1
parents:
diff changeset
3796 }
Ritor1
parents:
diff changeset
3797 return v12;
Ritor1
parents:
diff changeset
3798 }
Ritor1
parents:
diff changeset
3799
Ritor1
parents:
diff changeset
3800 //----- (004A0E80) --------------------------------------------------------
Ritor1
parents:
diff changeset
3801 void Render::ClearZBuffer(int a2, int a3)
Ritor1
parents:
diff changeset
3802 {
Ritor1
parents:
diff changeset
3803 memset32(this->pActiveZBuffer, -65536, 0x4B000u);
Ritor1
parents:
diff changeset
3804 }
Ritor1
parents:
diff changeset
3805
Ritor1
parents:
diff changeset
3806 //----- (004A0E97) --------------------------------------------------------
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3807 void Render::SetRasterClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW)
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3808 {
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3809 this->raster_clip_x = uX;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3810 this->raster_clip_y = uY;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3811 this->raster_clip_z = uZ;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3812 this->raster_clip_w = uW;
0
Ritor1
parents:
diff changeset
3813 }
Ritor1
parents:
diff changeset
3814
Ritor1
parents:
diff changeset
3815 //----- (004A0EB6) --------------------------------------------------------
Ritor1
parents:
diff changeset
3816 void Render::ParseTargetPixelFormat()
Ritor1
parents:
diff changeset
3817 {
Ritor1
parents:
diff changeset
3818 Render *v1; // eax@1
Ritor1
parents:
diff changeset
3819 signed int v2; // ecx@1
Ritor1
parents:
diff changeset
3820 DWORD uRedMask; // edx@1
Ritor1
parents:
diff changeset
3821 unsigned int uGreenMask; // esi@5
Ritor1
parents:
diff changeset
3822 signed int v5; // ecx@5
Ritor1
parents:
diff changeset
3823 unsigned int uBlueMask; // edx@9
Ritor1
parents:
diff changeset
3824 signed int v7; // ecx@9
Ritor1
parents:
diff changeset
3825 unsigned int v8; // ecx@13
Ritor1
parents:
diff changeset
3826
Ritor1
parents:
diff changeset
3827 v1 = this;
Ritor1
parents:
diff changeset
3828 v2 = 0;
Ritor1
parents:
diff changeset
3829 uRedMask = v1->ddpfPrimareSuface.dwRBitMask;
Ritor1
parents:
diff changeset
3830 v1->uTargetBBits = 0;
Ritor1
parents:
diff changeset
3831 v1->uTargetGBits = 0;
Ritor1
parents:
diff changeset
3832 v1->uTargetRBits = 0;
Ritor1
parents:
diff changeset
3833 do
Ritor1
parents:
diff changeset
3834 {
Ritor1
parents:
diff changeset
3835 if ( (1 << v2) & uRedMask )
Ritor1
parents:
diff changeset
3836 ++v1->uTargetRBits;
Ritor1
parents:
diff changeset
3837 ++v2;
Ritor1
parents:
diff changeset
3838 }
Ritor1
parents:
diff changeset
3839 while ( v2 < 16 );
Ritor1
parents:
diff changeset
3840 uGreenMask = v1->ddpfPrimareSuface.dwGBitMask;
Ritor1
parents:
diff changeset
3841 v5 = 0;
Ritor1
parents:
diff changeset
3842 do
Ritor1
parents:
diff changeset
3843 {
Ritor1
parents:
diff changeset
3844 if ( (1 << v5) & uGreenMask )
Ritor1
parents:
diff changeset
3845 ++v1->uTargetGBits;
Ritor1
parents:
diff changeset
3846 ++v5;
Ritor1
parents:
diff changeset
3847 }
Ritor1
parents:
diff changeset
3848 while ( v5 < 16 );
Ritor1
parents:
diff changeset
3849 uBlueMask = v1->ddpfPrimareSuface.dwBBitMask;
Ritor1
parents:
diff changeset
3850 v7 = 0;
Ritor1
parents:
diff changeset
3851 do
Ritor1
parents:
diff changeset
3852 {
Ritor1
parents:
diff changeset
3853 if ( (1 << v7) & uBlueMask )
Ritor1
parents:
diff changeset
3854 ++v1->uTargetBBits;
Ritor1
parents:
diff changeset
3855 ++v7;
Ritor1
parents:
diff changeset
3856 }
Ritor1
parents:
diff changeset
3857 while ( v7 < 16 );
Ritor1
parents:
diff changeset
3858 v8 = v1->ddpfPrimareSuface.dwRBitMask;
Ritor1
parents:
diff changeset
3859 v1->uTargetGMask = uGreenMask;
Ritor1
parents:
diff changeset
3860 v1->uTargetRMask = v8;
Ritor1
parents:
diff changeset
3861 v1->uTargetBMask = uBlueMask;
Ritor1
parents:
diff changeset
3862 }
Ritor1
parents:
diff changeset
3863
Ritor1
parents:
diff changeset
3864 //----- (004A0F40) --------------------------------------------------------
Ritor1
parents:
diff changeset
3865 bool Render::LockSurface_DDraw4(IDirectDrawSurface4 *pSurface, DDSURFACEDESC2 *pDesc, unsigned int uLockFlags)
Ritor1
parents:
diff changeset
3866 {
Ritor1
parents:
diff changeset
3867 IDirectDrawSurface4 *v4; // esi@1
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
3868 HRESULT result; // eax@1
0
Ritor1
parents:
diff changeset
3869 HRESULT v6; // eax@4
Ritor1
parents:
diff changeset
3870 int v7; // [sp-8h] [bp-14h]@10
Ritor1
parents:
diff changeset
3871 unsigned int v8; // [sp-4h] [bp-10h]@10
Ritor1
parents:
diff changeset
3872 char v9; // [sp+Bh] [bp-1h]@1
Ritor1
parents:
diff changeset
3873
Ritor1
parents:
diff changeset
3874 v4 = pSurface;
Ritor1
parents:
diff changeset
3875 v9 = 1;
Ritor1
parents:
diff changeset
3876 result = pSurface->Lock(0, pDesc, uLockFlags, 0);
Ritor1
parents:
diff changeset
3877 if ( result == DDERR_SURFACELOST )
Ritor1
parents:
diff changeset
3878 {
Ritor1
parents:
diff changeset
3879 v6 = v4->Restore();
Ritor1
parents:
diff changeset
3880 if ( v6 )
Ritor1
parents:
diff changeset
3881 {
Ritor1
parents:
diff changeset
3882 if ( v6 != DDERR_IMPLICITLYCREATED )
Ritor1
parents:
diff changeset
3883 {
Ritor1
parents:
diff changeset
3884 LABEL_20:
Ritor1
parents:
diff changeset
3885 v9 = 0;
Ritor1
parents:
diff changeset
3886 result = (bool)memset(pDesc, 0, 4u);
Ritor1
parents:
diff changeset
3887 goto LABEL_21;
Ritor1
parents:
diff changeset
3888 }
Ritor1
parents:
diff changeset
3889 pRenderer->pFrontBuffer4->Restore();
Ritor1
parents:
diff changeset
3890 v4->Restore();
Ritor1
parents:
diff changeset
3891 }
Ritor1
parents:
diff changeset
3892 result = v4->Lock(0, pDesc, DDLOCK_WAIT, 0);
Ritor1
parents:
diff changeset
3893 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY )
Ritor1
parents:
diff changeset
3894 goto LABEL_20;
Ritor1
parents:
diff changeset
3895 ErrD3D(result);
Ritor1
parents:
diff changeset
3896 if ( result )
Ritor1
parents:
diff changeset
3897 {
Ritor1
parents:
diff changeset
3898 //v8 = 0;
Ritor1
parents:
diff changeset
3899 //v7 = 2161;
Ritor1
parents:
diff changeset
3900 LABEL_19:
Ritor1
parents:
diff changeset
3901 //CheckHRESULT((CheckHRESULT_stru0 *)&pSurface, result, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp", v7, v8);
Ritor1
parents:
diff changeset
3902 goto LABEL_20;
Ritor1
parents:
diff changeset
3903 }
Ritor1
parents:
diff changeset
3904 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
3905 pRenderD3D->HandleLostResources();
Ritor1
parents:
diff changeset
3906 result = pRenderer->pDirectDraw4->RestoreAllSurfaces();
Ritor1
parents:
diff changeset
3907 }
Ritor1
parents:
diff changeset
3908 else
Ritor1
parents:
diff changeset
3909 {
Ritor1
parents:
diff changeset
3910 if ( result )
Ritor1
parents:
diff changeset
3911 {
Ritor1
parents:
diff changeset
3912 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY )
Ritor1
parents:
diff changeset
3913 goto LABEL_20;
Ritor1
parents:
diff changeset
3914 ErrD3D(result);
Ritor1
parents:
diff changeset
3915 //v8 = 0;
Ritor1
parents:
diff changeset
3916 //v7 = 2199;
Ritor1
parents:
diff changeset
3917 //goto LABEL_19;
Ritor1
parents:
diff changeset
3918 }
Ritor1
parents:
diff changeset
3919 }
Ritor1
parents:
diff changeset
3920 LABEL_21:
Ritor1
parents:
diff changeset
3921 LOBYTE(result) = v9;
Ritor1
parents:
diff changeset
3922 return result;
Ritor1
parents:
diff changeset
3923 }
Ritor1
parents:
diff changeset
3924
Ritor1
parents:
diff changeset
3925 //----- (004A1032) --------------------------------------------------------
Ritor1
parents:
diff changeset
3926 bool Render::LockSurface_DDraw2(IDirectDrawSurface2 *pSurface, DDSURFACEDESC *pDesc, unsigned int uLockFlags)
Ritor1
parents:
diff changeset
3927 {
Ritor1
parents:
diff changeset
3928 IDirectDrawSurface2 *v4; // esi@1
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1164
diff changeset
3929 HRESULT v5; // eax@1
0
Ritor1
parents:
diff changeset
3930 HRESULT v6; // eax@2
Ritor1
parents:
diff changeset
3931 int v7; // [sp-8h] [bp-10h]@8
Ritor1
parents:
diff changeset
3932 unsigned int v8; // [sp-4h] [bp-Ch]@8
Ritor1
parents:
diff changeset
3933
Ritor1
parents:
diff changeset
3934 v4 = pSurface;
Ritor1
parents:
diff changeset
3935 v5 = pSurface->Lock(
Ritor1
parents:
diff changeset
3936 0,
Ritor1
parents:
diff changeset
3937 pDesc,
Ritor1
parents:
diff changeset
3938 uLockFlags,
Ritor1
parents:
diff changeset
3939 0);
Ritor1
parents:
diff changeset
3940 BYTE3(pSurface) = 1;
Ritor1
parents:
diff changeset
3941 if ( v5 == DDERR_SURFACELOST )
Ritor1
parents:
diff changeset
3942 {
Ritor1
parents:
diff changeset
3943 v6 = v4->Restore();
Ritor1
parents:
diff changeset
3944 if ( !v6 )
Ritor1
parents:
diff changeset
3945 goto LABEL_5;
Ritor1
parents:
diff changeset
3946 if ( v6 == DDERR_IMPLICITLYCREATED )
Ritor1
parents:
diff changeset
3947 {
Ritor1
parents:
diff changeset
3948 pRenderer->pFrontBuffer2->Restore();
Ritor1
parents:
diff changeset
3949 v4->Restore();
Ritor1
parents:
diff changeset
3950 LABEL_5:
Ritor1
parents:
diff changeset
3951 v5 = v4->Lock(0, pDesc, 1u, 0) != 0;
Ritor1
parents:
diff changeset
3952 if ( v5 == DDERR_INVALIDRECT || v5 == DDERR_SURFACEBUSY )
Ritor1
parents:
diff changeset
3953 goto LABEL_14;
Ritor1
parents:
diff changeset
3954 if ( !v5 )
Ritor1
parents:
diff changeset
3955 return true;
Ritor1
parents:
diff changeset
3956 ErrD3D(v5);
Ritor1
parents:
diff changeset
3957 //v8 = 0;
Ritor1
parents:
diff changeset
3958 //v7 = 2247;
Ritor1
parents:
diff changeset
3959 goto LABEL_13;
Ritor1
parents:
diff changeset
3960 }
Ritor1
parents:
diff changeset
3961 else
Ritor1
parents:
diff changeset
3962 {
Ritor1
parents:
diff changeset
3963 pDesc->dwSize = 0;
Ritor1
parents:
diff changeset
3964 return false;
Ritor1
parents:
diff changeset
3965 }
Ritor1
parents:
diff changeset
3966 }
Ritor1
parents:
diff changeset
3967 else
Ritor1
parents:
diff changeset
3968 {
Ritor1
parents:
diff changeset
3969 if ( !v5 )
Ritor1
parents:
diff changeset
3970 return true;
Ritor1
parents:
diff changeset
3971 if ( v5 != DDERR_INVALIDRECT && v5 != DDERR_SURFACEBUSY )
Ritor1
parents:
diff changeset
3972 {
Ritor1
parents:
diff changeset
3973 //v8 = 0;
Ritor1
parents:
diff changeset
3974 //v7 = 2269;
Ritor1
parents:
diff changeset
3975 ErrD3D(v5);
Ritor1
parents:
diff changeset
3976 pDesc->dwSize = 0;
Ritor1
parents:
diff changeset
3977 return false;
Ritor1
parents:
diff changeset
3978 LABEL_13:
Ritor1
parents:
diff changeset
3979 //CheckHRESULT((CheckHRESULT_stru0 *)&pSurface, v5, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp", v7, v8);
Ritor1
parents:
diff changeset
3980 goto LABEL_14;
Ritor1
parents:
diff changeset
3981 }
Ritor1
parents:
diff changeset
3982 }
Ritor1
parents:
diff changeset
3983 LABEL_14:
Ritor1
parents:
diff changeset
3984 return true;
Ritor1
parents:
diff changeset
3985 }
Ritor1
parents:
diff changeset
3986
Ritor1
parents:
diff changeset
3987 //----- (004A10E4) --------------------------------------------------------
Ritor1
parents:
diff changeset
3988 void Render::CreateDirectDraw()
Ritor1
parents:
diff changeset
3989 {
Ritor1
parents:
diff changeset
3990 Render *v1; // edi@1
Ritor1
parents:
diff changeset
3991 HRESULT v2; // eax@1
Ritor1
parents:
diff changeset
3992 HRESULT v3; // eax@5
Ritor1
parents:
diff changeset
3993 int v6; // [sp-Ch] [bp-20h]@3
Ritor1
parents:
diff changeset
3994 unsigned int v9; // [sp+0h] [bp-14h]@0
Ritor1
parents:
diff changeset
3995 IDirectDraw *lpDD; // [sp+10h] [bp-4h]@1
Ritor1
parents:
diff changeset
3996
Ritor1
parents:
diff changeset
3997 v1 = this;
Ritor1
parents:
diff changeset
3998 ErrD3D(DirectDrawCreate(0, &lpDD, 0));
Ritor1
parents:
diff changeset
3999
Ritor1
parents:
diff changeset
4000 pDirectDraw2 = nullptr;
Ritor1
parents:
diff changeset
4001 pDirectDraw4 = nullptr;
Ritor1
parents:
diff changeset
4002
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4003 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4004 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4005 ErrD3D(lpDD->QueryInterface(IID_IDirectDraw4, (void **)&pDirectDraw4));
Ritor1
parents:
diff changeset
4006 else
Ritor1
parents:
diff changeset
4007 ErrD3D(lpDD->QueryInterface(IID_IDirectDraw2, (void **)&pDirectDraw2));
Ritor1
parents:
diff changeset
4008
Ritor1
parents:
diff changeset
4009 lpDD->Release();
Ritor1
parents:
diff changeset
4010 lpDD = nullptr;
Ritor1
parents:
diff changeset
4011 }
Ritor1
parents:
diff changeset
4012
Ritor1
parents:
diff changeset
4013 //----- (004A1169) --------------------------------------------------------
Ritor1
parents:
diff changeset
4014 void Render::SetDirectDrawCooperationMode(HWND hWnd, bool bFullscreen)
Ritor1
parents:
diff changeset
4015 {
Ritor1
parents:
diff changeset
4016 DWORD flags; // eax@1
Ritor1
parents:
diff changeset
4017 IDirectDraw *v4; // ecx@3
Ritor1
parents:
diff changeset
4018 HRESULT v5; // eax@5
Ritor1
parents:
diff changeset
4019 int v6; // [sp-8h] [bp-8h]@3
Ritor1
parents:
diff changeset
4020 unsigned int v7; // [sp-4h] [bp-4h]@3
Ritor1
parents:
diff changeset
4021
Ritor1
parents:
diff changeset
4022 flags = bFullscreen ? DDSCL_NORMAL | DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN :
Ritor1
parents:
diff changeset
4023 DDSCL_NORMAL;
Ritor1
parents:
diff changeset
4024
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4025 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4026 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4027 ErrD3D(pDirectDraw4->SetCooperativeLevel(hWnd, flags | DDSCL_MULTITHREADED));
Ritor1
parents:
diff changeset
4028 else
Ritor1
parents:
diff changeset
4029 ErrD3D(pDirectDraw2->SetCooperativeLevel(hWnd, flags));
Ritor1
parents:
diff changeset
4030 }
Ritor1
parents:
diff changeset
4031
Ritor1
parents:
diff changeset
4032 //----- (004A11C6) --------------------------------------------------------
Ritor1
parents:
diff changeset
4033 void Render::SetDirectDrawDisplayMode(unsigned int uWidth, unsigned int uHeight, unsigned int uBPP)
Ritor1
parents:
diff changeset
4034 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4035 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4036 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4037 ErrD3D(pDirectDraw4->SetDisplayMode(uWidth, uHeight, uBPP, 0, 0));
Ritor1
parents:
diff changeset
4038 else
Ritor1
parents:
diff changeset
4039 ErrD3D(pDirectDraw2->SetDisplayMode(uWidth, uHeight, uBPP, 0, 0));
Ritor1
parents:
diff changeset
4040 }
Ritor1
parents:
diff changeset
4041
Ritor1
parents:
diff changeset
4042 //----- (004A121C) --------------------------------------------------------
Ritor1
parents:
diff changeset
4043 void Render::CreateFrontBuffer()
Ritor1
parents:
diff changeset
4044 {
Ritor1
parents:
diff changeset
4045 Render *v1; // esi@1
Ritor1
parents:
diff changeset
4046 IDirectDraw *pDD; // eax@3
Ritor1
parents:
diff changeset
4047 IDirectDrawSurface **pOutSurf; // esi@3
Ritor1
parents:
diff changeset
4048 struct _DDSURFACEDESC *v4; // edx@3
Ritor1
parents:
diff changeset
4049 HRESULT v5; // eax@5
Ritor1
parents:
diff changeset
4050 int v6; // [sp-8h] [bp-8Ch]@3
Ritor1
parents:
diff changeset
4051 unsigned int v7; // [sp-4h] [bp-88h]@3
Ritor1
parents:
diff changeset
4052 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3
Ritor1
parents:
diff changeset
4053
Ritor1
parents:
diff changeset
4054 v1 = this;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4055 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4056 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4057 {
Ritor1
parents:
diff changeset
4058 memset(&a2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4059 pDD = (IDirectDraw *)v1->pDirectDraw4;
Ritor1
parents:
diff changeset
4060 a2.dwSize = 124;
Ritor1
parents:
diff changeset
4061 a2.dwFlags = 1;
Ritor1
parents:
diff changeset
4062 v7 = 0;
Ritor1
parents:
diff changeset
4063 a2.ddsCaps.dwCaps = 512;
Ritor1
parents:
diff changeset
4064 v6 = 2357;
Ritor1
parents:
diff changeset
4065 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer4;
Ritor1
parents:
diff changeset
4066 v4 = (struct _DDSURFACEDESC *)&a2;
Ritor1
parents:
diff changeset
4067 }
Ritor1
parents:
diff changeset
4068 else
Ritor1
parents:
diff changeset
4069 {
Ritor1
parents:
diff changeset
4070 memset(&a2.lPitch, 0, 0x6Cu); // DDSURFACEDESC here
Ritor1
parents:
diff changeset
4071 pDD = (IDirectDraw *)v1->pDirectDraw2;
Ritor1
parents:
diff changeset
4072 a2.lPitch = 108;
Ritor1
parents:
diff changeset
4073 a2.dwBackBufferCount = 1;
Ritor1
parents:
diff changeset
4074 v7 = 0;
Ritor1
parents:
diff changeset
4075 a2.dwTextureStage = 512;
Ritor1
parents:
diff changeset
4076 v6 = 2346;
Ritor1
parents:
diff changeset
4077 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer2;
Ritor1
parents:
diff changeset
4078 v4 = (struct _DDSURFACEDESC *)&a2.lPitch;
Ritor1
parents:
diff changeset
4079 }
Ritor1
parents:
diff changeset
4080 ErrD3D(pDD->CreateSurface(v4, pOutSurf, 0));
Ritor1
parents:
diff changeset
4081 }
Ritor1
parents:
diff changeset
4082
Ritor1
parents:
diff changeset
4083 //----- (004A12CD) --------------------------------------------------------
Ritor1
parents:
diff changeset
4084 void Render::CreateBackBuffer()
Ritor1
parents:
diff changeset
4085 {
Ritor1
parents:
diff changeset
4086 Render *v1; // esi@1
Ritor1
parents:
diff changeset
4087 IDirectDraw *v2; // eax@3
Ritor1
parents:
diff changeset
4088 IDirectDrawSurface **ppBackBuffer; // esi@3
Ritor1
parents:
diff changeset
4089 struct _DDSURFACEDESC *v4; // edx@3
Ritor1
parents:
diff changeset
4090 HRESULT v5; // eax@5
Ritor1
parents:
diff changeset
4091 int v6; // [sp-8h] [bp-8Ch]@3
Ritor1
parents:
diff changeset
4092 unsigned int v7; // [sp-4h] [bp-88h]@3
Ritor1
parents:
diff changeset
4093 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3
Ritor1
parents:
diff changeset
4094
Ritor1
parents:
diff changeset
4095 v1 = this;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4096 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4097 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4098 {
Ritor1
parents:
diff changeset
4099 memset(&a2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4100 v2 = (IDirectDraw *)v1->pDirectDraw4;
Ritor1
parents:
diff changeset
4101 a2.dwSize = 124;
Ritor1
parents:
diff changeset
4102 a2.dwFlags = 7;
Ritor1
parents:
diff changeset
4103 v7 = 0;
Ritor1
parents:
diff changeset
4104 a2.ddsCaps.dwCaps = 2112;
Ritor1
parents:
diff changeset
4105 a2.dwWidth = 640;
Ritor1
parents:
diff changeset
4106 a2.dwHeight = 480;
Ritor1
parents:
diff changeset
4107 v6 = 2387;
Ritor1
parents:
diff changeset
4108 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4;
Ritor1
parents:
diff changeset
4109 v4 = (struct _DDSURFACEDESC *)&a2;
Ritor1
parents:
diff changeset
4110 }
Ritor1
parents:
diff changeset
4111 else
Ritor1
parents:
diff changeset
4112 {
Ritor1
parents:
diff changeset
4113 memset(&a2.lPitch, 0, 0x6Cu);
Ritor1
parents:
diff changeset
4114 v2 = (IDirectDraw *)v1->pDirectDraw2;
Ritor1
parents:
diff changeset
4115 a2.lPitch = 108;
Ritor1
parents:
diff changeset
4116 a2.dwBackBufferCount = 7;
Ritor1
parents:
diff changeset
4117 v7 = 0;
Ritor1
parents:
diff changeset
4118 a2.dwTextureStage = 2112;
Ritor1
parents:
diff changeset
4119 a2.dwAlphaBitDepth = 640;
Ritor1
parents:
diff changeset
4120 a2.dwMipMapCount = 480;
Ritor1
parents:
diff changeset
4121 v6 = 2374;
Ritor1
parents:
diff changeset
4122 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2;
Ritor1
parents:
diff changeset
4123 v4 = (struct _DDSURFACEDESC *)&a2.lPitch; // //DDSURFACEDESC here fo ddraw2
Ritor1
parents:
diff changeset
4124 }
Ritor1
parents:
diff changeset
4125 ErrD3D(v2->CreateSurface(v4, ppBackBuffer, 0));
Ritor1
parents:
diff changeset
4126 }
Ritor1
parents:
diff changeset
4127
Ritor1
parents:
diff changeset
4128 //----- (004A139A) --------------------------------------------------------
Ritor1
parents:
diff changeset
4129 void Render::CreateDirectDrawPrimarySurface()
Ritor1
parents:
diff changeset
4130 {
Ritor1
parents:
diff changeset
4131 Render *v1; // esi@1
Ritor1
parents:
diff changeset
4132 int v2; // ebx@3
Ritor1
parents:
diff changeset
4133 IDirectDraw2 *v3; // eax@3
Ritor1
parents:
diff changeset
4134 HRESULT v4; // eax@3
Ritor1
parents:
diff changeset
4135 IDirectDrawSurface *pFrontBuffer; // eax@3
Ritor1
parents:
diff changeset
4136 DDSCAPS2 *v6; // edx@3
Ritor1
parents:
diff changeset
4137 IDirectDraw4 *v7; // eax@4
Ritor1
parents:
diff changeset
4138 HRESULT v8; // eax@4
Ritor1
parents:
diff changeset
4139 int v9; // ST14_4@5
Ritor1
parents:
diff changeset
4140 IDirectDrawSurface *v10; // ST10_4@5
Ritor1
parents:
diff changeset
4141 HRESULT v11; // eax@5
Ritor1
parents:
diff changeset
4142 IDirectDrawSurface **ppBackBuffer; // [sp-4h] [bp-A4h]@3
Ritor1
parents:
diff changeset
4143 const char *v13; // [sp+0h] [bp-A0h]@0
Ritor1
parents:
diff changeset
4144 int v14; // [sp+4h] [bp-9Ch]@0
Ritor1
parents:
diff changeset
4145 unsigned int v15; // [sp+8h] [bp-98h]@0
Ritor1
parents:
diff changeset
4146 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-94h]@3
Ritor1
parents:
diff changeset
4147 DDSCAPS2 v17; // [sp+88h] [bp-18h]@4
Ritor1
parents:
diff changeset
4148 int a4; // [sp+98h] [bp-8h]@3
Ritor1
parents:
diff changeset
4149
Ritor1
parents:
diff changeset
4150 v1 = this;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4151 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4152 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4153 {
Ritor1
parents:
diff changeset
4154 v2 = 0;
Ritor1
parents:
diff changeset
4155 this->field_4004C = 1;
Ritor1
parents:
diff changeset
4156 memset(&ddsd2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4157 v7 = v1->pDirectDraw4;
Ritor1
parents:
diff changeset
4158 ddsd2.dwBackBufferCount = 1;
Ritor1
parents:
diff changeset
4159 ddsd2.dwSize = 0x7Cu;
Ritor1
parents:
diff changeset
4160 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;
Ritor1
parents:
diff changeset
4161 ddsd2.ddsCaps.dwCaps = DDSCAPS_COMPLEX | DDSCAPS_FLIP | DDSCAPS_3DDEVICE | DDSCAPS_PRIMARYSURFACE;
Ritor1
parents:
diff changeset
4162 ErrD3D(v7->CreateSurface(
Ritor1
parents:
diff changeset
4163 &ddsd2,
Ritor1
parents:
diff changeset
4164 &pFrontBuffer4,
Ritor1
parents:
diff changeset
4165 0));
Ritor1
parents:
diff changeset
4166 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer4;
Ritor1
parents:
diff changeset
4167 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4;
Ritor1
parents:
diff changeset
4168 }
Ritor1
parents:
diff changeset
4169 else
Ritor1
parents:
diff changeset
4170 {
Ritor1
parents:
diff changeset
4171 v2 = 0;
Ritor1
parents:
diff changeset
4172 this->field_4004C = 1;
Ritor1
parents:
diff changeset
4173
Ritor1
parents:
diff changeset
4174 DDSURFACEDESC ddsd;
Ritor1
parents:
diff changeset
4175 memset(&ddsd, 0, sizeof(DDSURFACEDESC));
Ritor1
parents:
diff changeset
4176
Ritor1
parents:
diff changeset
4177 ddsd.lpSurface = (LPVOID)1;
Ritor1
parents:
diff changeset
4178 ddsd.lPitch = 108;
Ritor1
parents:
diff changeset
4179 ddsd.dwBackBufferCount = 33;
Ritor1
parents:
diff changeset
4180 ddsd.ddsCaps.dwCaps = 8728;
Ritor1
parents:
diff changeset
4181 ErrD3D(pDirectDraw2->CreateSurface(
Ritor1
parents:
diff changeset
4182 &ddsd,
Ritor1
parents:
diff changeset
4183 (IDirectDrawSurface **)&pFrontBuffer2,
Ritor1
parents:
diff changeset
4184 0));
Ritor1
parents:
diff changeset
4185
Ritor1
parents:
diff changeset
4186 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer2;
Ritor1
parents:
diff changeset
4187 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2;
Ritor1
parents:
diff changeset
4188 }
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1394
diff changeset
4189 __debugbreak(); // warning C4700: uninitialized local variable 'v6' used
0
Ritor1
parents:
diff changeset
4190 v9 = (int)v6;
Ritor1
parents:
diff changeset
4191 v10 = pFrontBuffer; // BUG
Ritor1
parents:
diff changeset
4192
Ritor1
parents:
diff changeset
4193 v17.dwCaps = 4;
Ritor1
parents:
diff changeset
4194 ErrD3D(pFrontBuffer->GetAttachedSurface((DDSCAPS *)&v17, ppBackBuffer));// hr = this->pFrontBuffer->GetAttachedSurface(&ddsCaps2, ppBackBuffer);
Ritor1
parents:
diff changeset
4195 //CheckHRESULT(&thisa, v11, (const char *)v10, v9, (unsigned int)ppBackBuffer);
Ritor1
parents:
diff changeset
4196 v1->field_40030 = v2;
Ritor1
parents:
diff changeset
4197 v1->field_18_locked_pitch = v2;
Ritor1
parents:
diff changeset
4198 }
Ritor1
parents:
diff changeset
4199
Ritor1
parents:
diff changeset
4200 //----- (004A14F4) --------------------------------------------------------
Ritor1
parents:
diff changeset
4201 void Render::CreateClipper(HWND a2)
Ritor1
parents:
diff changeset
4202 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4203 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4204 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4205 {
Ritor1
parents:
diff changeset
4206 ErrD3D(pDirectDraw4->CreateClipper(0, &pDDrawClipper, 0));
Ritor1
parents:
diff changeset
4207 ErrD3D(pDDrawClipper->SetHWnd(0, a2));
Ritor1
parents:
diff changeset
4208 ErrD3D(pFrontBuffer4->SetClipper(pDDrawClipper));
Ritor1
parents:
diff changeset
4209 }
Ritor1
parents:
diff changeset
4210 else
Ritor1
parents:
diff changeset
4211 {
Ritor1
parents:
diff changeset
4212 ErrD3D(pDirectDraw2->CreateClipper(0, &pDDrawClipper, 0));
Ritor1
parents:
diff changeset
4213 ErrD3D(pDDrawClipper->SetHWnd(0, a2));
Ritor1
parents:
diff changeset
4214 }
Ritor1
parents:
diff changeset
4215 }
Ritor1
parents:
diff changeset
4216
Ritor1
parents:
diff changeset
4217 //----- (004A15D8) --------------------------------------------------------
Ritor1
parents:
diff changeset
4218 void Render::GetTargetPixelFormat(DDPIXELFORMAT *pOut)
Ritor1
parents:
diff changeset
4219 {
Ritor1
parents:
diff changeset
4220 IDirectDrawSurface *v2; // eax@3
Ritor1
parents:
diff changeset
4221
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4222 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4223 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4224 v2 = (IDirectDrawSurface *)this->pFrontBuffer4;
Ritor1
parents:
diff changeset
4225 else
Ritor1
parents:
diff changeset
4226 v2 = (IDirectDrawSurface *)this->pFrontBuffer2;
Ritor1
parents:
diff changeset
4227 v2->GetPixelFormat(pOut);
Ritor1
parents:
diff changeset
4228 }
Ritor1
parents:
diff changeset
4229
Ritor1
parents:
diff changeset
4230 //----- (004A1605) --------------------------------------------------------
Ritor1
parents:
diff changeset
4231 void Render::LockRenderSurface(void **pOutSurfacePtr, unsigned int *pOutPixelsPerRow)
Ritor1
parents:
diff changeset
4232 {
Ritor1
parents:
diff changeset
4233 Render *v3; // esi@1
Ritor1
parents:
diff changeset
4234 signed int v4; // eax@3
Ritor1
parents:
diff changeset
4235
Ritor1
parents:
diff changeset
4236 v3 = this;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4237 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4238 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4239 {
Ritor1
parents:
diff changeset
4240 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3
Ritor1
parents:
diff changeset
4241 memset(&pDesc, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4242 pDesc.dwSize = 124;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
4243 LockSurface_DDraw4(v3->pBackBuffer4, &pDesc, DDLOCK_WAIT);
0
Ritor1
parents:
diff changeset
4244 *pOutSurfacePtr = pDesc.lpSurface;
Ritor1
parents:
diff changeset
4245 v4 = pDesc.lPitch;
Ritor1
parents:
diff changeset
4246 }
Ritor1
parents:
diff changeset
4247 else
Ritor1
parents:
diff changeset
4248 {
Ritor1
parents:
diff changeset
4249 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3
Ritor1
parents:
diff changeset
4250 memset(&pDesc.lPitch, 0, 0x6Cu);
Ritor1
parents:
diff changeset
4251 pDesc.lPitch = 108;
Ritor1
parents:
diff changeset
4252 LockSurface_DDraw2(v3->pBackBuffer2, &pDesc, 1u);
Ritor1
parents:
diff changeset
4253 *pOutSurfacePtr = (void *)pDesc.lpSurface;
Ritor1
parents:
diff changeset
4254 v4 = pDesc.dwReserved;
Ritor1
parents:
diff changeset
4255 }
Ritor1
parents:
diff changeset
4256 *pOutPixelsPerRow = v4 >> 1;
Ritor1
parents:
diff changeset
4257 }
Ritor1
parents:
diff changeset
4258
Ritor1
parents:
diff changeset
4259 //----- (004A16E1) --------------------------------------------------------
Ritor1
parents:
diff changeset
4260 void Render::UnlockBackBuffer()
Ritor1
parents:
diff changeset
4261 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4262 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
4263 pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4264 ErrD3D(pBackBuffer4->Unlock(0));
Ritor1
parents:
diff changeset
4265 else
Ritor1
parents:
diff changeset
4266 ErrD3D(pBackBuffer2->Unlock(0));
Ritor1
parents:
diff changeset
4267 }
Ritor1
parents:
diff changeset
4268
Ritor1
parents:
diff changeset
4269 //----- (004A172E) --------------------------------------------------------
Ritor1
parents:
diff changeset
4270 void Render::LockFrontBuffer(void **pOutSurface, unsigned int *pOutPixelsPerRow)
Ritor1
parents:
diff changeset
4271 {
Ritor1
parents:
diff changeset
4272 Render *v3; // esi@1
Ritor1
parents:
diff changeset
4273 signed int v4; // eax@3
Ritor1
parents:
diff changeset
4274
Ritor1
parents:
diff changeset
4275 v3 = this;
Ritor1
parents:
diff changeset
4276 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 )
Ritor1
parents:
diff changeset
4277 {
Ritor1
parents:
diff changeset
4278 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3
Ritor1
parents:
diff changeset
4279 memset(&pDesc, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4280 pDesc.dwSize = 124;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
4281 LockSurface_DDraw4(v3->pFrontBuffer4, &pDesc, DDLOCK_WAIT);
0
Ritor1
parents:
diff changeset
4282 *pOutSurface = pDesc.lpSurface;
Ritor1
parents:
diff changeset
4283 v4 = pDesc.lPitch;
Ritor1
parents:
diff changeset
4284 }
Ritor1
parents:
diff changeset
4285 else
Ritor1
parents:
diff changeset
4286 {
Ritor1
parents:
diff changeset
4287 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3
Ritor1
parents:
diff changeset
4288 memset(&pDesc.lPitch, 0, 0x6Cu);
Ritor1
parents:
diff changeset
4289 pDesc.lPitch = 108;
Ritor1
parents:
diff changeset
4290 LockSurface_DDraw2(v3->pFrontBuffer2, &pDesc, 1u);
Ritor1
parents:
diff changeset
4291 *pOutSurface = (void *)pDesc.lpSurface;
Ritor1
parents:
diff changeset
4292 v4 = pDesc.dwReserved;
Ritor1
parents:
diff changeset
4293 }
Ritor1
parents:
diff changeset
4294 *pOutPixelsPerRow = v4 >> 1;
Ritor1
parents:
diff changeset
4295 }
Ritor1
parents:
diff changeset
4296
Ritor1
parents:
diff changeset
4297 //----- (004A17C7) --------------------------------------------------------
Ritor1
parents:
diff changeset
4298 void Render::UnlockFrontBuffer()
Ritor1
parents:
diff changeset
4299 {
Ritor1
parents:
diff changeset
4300 IDirectDrawSurface *pFront; // eax@3
Ritor1
parents:
diff changeset
4301 HRESULT v2; // eax@5
Ritor1
parents:
diff changeset
4302 signed int v3; // [sp-8h] [bp-Ch]@3
Ritor1
parents:
diff changeset
4303 int v4; // [sp-4h] [bp-8h]@3
Ritor1
parents:
diff changeset
4304
Ritor1
parents:
diff changeset
4305 auto a5 = this;
Ritor1
parents:
diff changeset
4306 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 )
Ritor1
parents:
diff changeset
4307 {
Ritor1
parents:
diff changeset
4308 pFront = (IDirectDrawSurface *)a5->pFrontBuffer4;
Ritor1
parents:
diff changeset
4309 v4 = 0;
Ritor1
parents:
diff changeset
4310 v3 = 2615;
Ritor1
parents:
diff changeset
4311 }
Ritor1
parents:
diff changeset
4312 else
Ritor1
parents:
diff changeset
4313 {
Ritor1
parents:
diff changeset
4314 pFront = (IDirectDrawSurface *)a5->pFrontBuffer2;
Ritor1
parents:
diff changeset
4315 v4 = 0;
Ritor1
parents:
diff changeset
4316 v3 = 2611;
Ritor1
parents:
diff changeset
4317 }
Ritor1
parents:
diff changeset
4318 ErrD3D(pFront->Unlock(0));
Ritor1
parents:
diff changeset
4319 }
Ritor1
parents:
diff changeset
4320
Ritor1
parents:
diff changeset
4321 //----- (004A1814) --------------------------------------------------------
Ritor1
parents:
diff changeset
4322 void Render::RestoreFrontBuffer()
Ritor1
parents:
diff changeset
4323 {
Ritor1
parents:
diff changeset
4324 IDirectDrawSurface **v1; // esi@2
Ritor1
parents:
diff changeset
4325
Ritor1
parents:
diff changeset
4326 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT
Ritor1
parents:
diff changeset
4327 || (v1 = (IDirectDrawSurface **)&this->pFrontBuffer2, pVersion->pVersionInfo.dwMajorVersion >= 5u) )
Ritor1
parents:
diff changeset
4328 v1 = (IDirectDrawSurface **)&this->pFrontBuffer4;
Ritor1
parents:
diff changeset
4329 if ( (*v1)->IsLost() == DDERR_SURFACELOST )
Ritor1
parents:
diff changeset
4330 (*v1)->Restore();
Ritor1
parents:
diff changeset
4331 }
Ritor1
parents:
diff changeset
4332
Ritor1
parents:
diff changeset
4333 //----- (004A184C) --------------------------------------------------------
Ritor1
parents:
diff changeset
4334 HRESULT Render::_4A184C()
Ritor1
parents:
diff changeset
4335 {
Ritor1
parents:
diff changeset
4336 IDirectDrawSurface **pBack; // esi@2
Ritor1
parents:
diff changeset
4337 HRESULT result; // eax@4
Ritor1
parents:
diff changeset
4338
Ritor1
parents:
diff changeset
4339 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT
Ritor1
parents:
diff changeset
4340 || (pBack = (IDirectDrawSurface **)&this->pBackBuffer2, pVersion->pVersionInfo.dwMajorVersion != 4) )
Ritor1
parents:
diff changeset
4341 pBack = (IDirectDrawSurface **)&this->pBackBuffer4;
Ritor1
parents:
diff changeset
4342 result = (*pBack)->IsLost();
Ritor1
parents:
diff changeset
4343 if ( result == DDERR_SURFACELOST )
Ritor1
parents:
diff changeset
4344 result = (*pBack)->Restore();
Ritor1
parents:
diff changeset
4345 return result;
Ritor1
parents:
diff changeset
4346 }
Ritor1
parents:
diff changeset
4347
Ritor1
parents:
diff changeset
4348 //----- (004A1884) --------------------------------------------------------
Ritor1
parents:
diff changeset
4349 void Render::PresentRect(RECT *a2, RECT *a3)
Ritor1
parents:
diff changeset
4350 {
Ritor1
parents:
diff changeset
4351 IDirectDrawSurface *pFront; // eax@3
Ritor1
parents:
diff changeset
4352 HRESULT v4; // eax@5
Ritor1
parents:
diff changeset
4353 IDirectDrawSurface *pBack; // [sp-1Ch] [bp-1Ch]@3
Ritor1
parents:
diff changeset
4354 struct tagRECT *v6; // [sp-18h] [bp-18h]@3
Ritor1
parents:
diff changeset
4355 DWORD v7; // [sp-14h] [bp-14h]@3
Ritor1
parents:
diff changeset
4356 DDBLTFX *v8; // [sp-10h] [bp-10h]@3
Ritor1
parents:
diff changeset
4357 const char *v9; // [sp-Ch] [bp-Ch]@3
Ritor1
parents:
diff changeset
4358 int v10; // [sp-8h] [bp-8h]@3
Ritor1
parents:
diff changeset
4359 unsigned int v11; // [sp-4h] [bp-4h]@3
Ritor1
parents:
diff changeset
4360
Ritor1
parents:
diff changeset
4361 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 )
Ritor1
parents:
diff changeset
4362 {
Ritor1
parents:
diff changeset
4363 v11 = 0;
Ritor1
parents:
diff changeset
4364 pFront = (IDirectDrawSurface *)this->pFrontBuffer4;
Ritor1
parents:
diff changeset
4365 v10 = 2657;
Ritor1
parents:
diff changeset
4366 v9 = "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp";
Ritor1
parents:
diff changeset
4367 v8 = 0;
Ritor1
parents:
diff changeset
4368 v7 = DDBLT_WAIT;
Ritor1
parents:
diff changeset
4369 v6 = a3;
Ritor1
parents:
diff changeset
4370 pBack = (IDirectDrawSurface *)this->pBackBuffer4;
Ritor1
parents:
diff changeset
4371 }
Ritor1
parents:
diff changeset
4372 else
Ritor1
parents:
diff changeset
4373 {
Ritor1
parents:
diff changeset
4374 v11 = 0;
Ritor1
parents:
diff changeset
4375 pFront = (IDirectDrawSurface *)this->pFrontBuffer2;
Ritor1
parents:
diff changeset
4376 v10 = 2653;
Ritor1
parents:
diff changeset
4377 v9 = "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp";
Ritor1
parents:
diff changeset
4378 v8 = 0;
Ritor1
parents:
diff changeset
4379 v7 = DDBLT_WAIT;
Ritor1
parents:
diff changeset
4380 v6 = a3;
Ritor1
parents:
diff changeset
4381 pBack = (IDirectDrawSurface *)this->pBackBuffer2;
Ritor1
parents:
diff changeset
4382 }
Ritor1
parents:
diff changeset
4383 ErrD3D(pFront->Blt(a2, pBack, v6, v7, v8));
Ritor1
parents:
diff changeset
4384 }
Ritor1
parents:
diff changeset
4385
Ritor1
parents:
diff changeset
4386 //----- (004A18F5) --------------------------------------------------------
Ritor1
parents:
diff changeset
4387 void Render::BltToFront(RECT *pDstRect, IDirectDrawSurface *pSrcSurface, RECT *pSrcRect, unsigned int uBltFlags)
Ritor1
parents:
diff changeset
4388 {
Ritor1
parents:
diff changeset
4389 IDirectDrawSurface *pFront; // eax@3
Ritor1
parents:
diff changeset
4390 HRESULT v6; // eax@5
Ritor1
parents:
diff changeset
4391 int v7; // [sp-8h] [bp-8h]@3
Ritor1
parents:
diff changeset
4392 unsigned int v8; // [sp-4h] [bp-4h]@3
Ritor1
parents:
diff changeset
4393
Ritor1
parents:
diff changeset
4394 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion >= 5u )
Ritor1
parents:
diff changeset
4395 ErrD3D(pFrontBuffer4->Blt(pDstRect, (IDirectDrawSurface4 *)pSrcSurface, pSrcRect, uBltFlags, nullptr));
Ritor1
parents:
diff changeset
4396 else
Ritor1
parents:
diff changeset
4397 ErrD3D(pFrontBuffer2->Blt(pDstRect, (IDirectDrawSurface2 *)pSrcSurface, pSrcRect, uBltFlags, nullptr));
Ritor1
parents:
diff changeset
4398 }
Ritor1
parents:
diff changeset
4399
Ritor1
parents:
diff changeset
4400 //----- (004A194A) --------------------------------------------------------
Ritor1
parents:
diff changeset
4401 void Render::BltBackToFontFast(int a2, int a3, RECT *a4)
Ritor1
parents:
diff changeset
4402 {
Ritor1
parents:
diff changeset
4403 IDirectDrawSurface *pFront; // eax@3
Ritor1
parents:
diff changeset
4404 IDirectDrawSurface *pBack; // [sp-Ch] [bp-Ch]@3
Ritor1
parents:
diff changeset
4405
Ritor1
parents:
diff changeset
4406 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 )
Ritor1
parents:
diff changeset
4407 {
Ritor1
parents:
diff changeset
4408 pFront = (IDirectDrawSurface *)this->pFrontBuffer4;
Ritor1
parents:
diff changeset
4409 pBack = (IDirectDrawSurface *)this->pBackBuffer4;
Ritor1
parents:
diff changeset
4410 }
Ritor1
parents:
diff changeset
4411 else
Ritor1
parents:
diff changeset
4412 {
Ritor1
parents:
diff changeset
4413 pFront = (IDirectDrawSurface *)this->pFrontBuffer2;
Ritor1
parents:
diff changeset
4414 pBack = (IDirectDrawSurface *)this->pBackBuffer2;
Ritor1
parents:
diff changeset
4415 }
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4416 pFront->BltFast(0, 0, pBack, a4, DDBLTFAST_WAIT);
0
Ritor1
parents:
diff changeset
4417 }
Ritor1
parents:
diff changeset
4418
Ritor1
parents:
diff changeset
4419 //----- (004A1B22) --------------------------------------------------------
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4420 unsigned int Render::Billboard_ProbablyAddToListAndSortByZOrder(float z)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4421 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4422 //unsigned int v2; // ebx@1
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4423 //double v4; // st7@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4424 //unsigned int v5; // esi@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4425 //int v6; // ecx@5
0
Ritor1
parents:
diff changeset
4426 unsigned int v7; // edx@6
Ritor1
parents:
diff changeset
4427 char *v8; // ecx@12
Ritor1
parents:
diff changeset
4428 void *v9; // edi@16
Ritor1
parents:
diff changeset
4429 unsigned int v10; // eax@16
Ritor1
parents:
diff changeset
4430 void *v11; // edi@21
Ritor1
parents:
diff changeset
4431 unsigned int v12; // eax@21
Ritor1
parents:
diff changeset
4432
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4433 //v2 = uNumBillboardsToDraw;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4434 if (uNumBillboardsToDraw >= 999 )
0
Ritor1
parents:
diff changeset
4435 return 0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4436 if (!uNumBillboardsToDraw)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4437 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4438 uNumBillboardsToDraw = 1;
0
Ritor1
parents:
diff changeset
4439 return 0;
Ritor1
parents:
diff changeset
4440 }
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4441
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4442 //v4 = *(float *)&a1;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4443 //v5 = pRenderer->uNumBillboardsToDraw;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4444 //v6 = 0;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4445 for (int left = 0, right = uNumBillboardsToDraw; left < right; ) // binsearch
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4446 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4447 v7 = left + (right - left) / 2;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4448 if (z <= pRenderer->pBillboardRenderListD3D[v7].z_order)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4449 right = v7;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4450 else
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4451 left = v7 + 1;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4452 }
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4453
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4454 v8 = (char *)&pRenderer->pBillboardRenderListD3D[v7].z_order;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4455 if (z > *(float *)v8 )
0
Ritor1
parents:
diff changeset
4456 {
Ritor1
parents:
diff changeset
4457 if ( v7 == pRenderer->uNumBillboardsToDraw - 1 )
Ritor1
parents:
diff changeset
4458 {
Ritor1
parents:
diff changeset
4459 v7 = pRenderer->uNumBillboardsToDraw;
Ritor1
parents:
diff changeset
4460 }
Ritor1
parents:
diff changeset
4461 else
Ritor1
parents:
diff changeset
4462 {
Ritor1
parents:
diff changeset
4463 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 )
Ritor1
parents:
diff changeset
4464 {
Ritor1
parents:
diff changeset
4465 v9 = &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw];
Ritor1
parents:
diff changeset
4466 v10 = pRenderer->uNumBillboardsToDraw - v7;
Ritor1
parents:
diff changeset
4467 do
Ritor1
parents:
diff changeset
4468 {
Ritor1
parents:
diff changeset
4469 memcpy(v9, (char *)v9 - 156, 0x9Cu);
Ritor1
parents:
diff changeset
4470 v9 = (char *)v9 - 156;
Ritor1
parents:
diff changeset
4471 --v10;
Ritor1
parents:
diff changeset
4472 }
Ritor1
parents:
diff changeset
4473 while ( v10 );
Ritor1
parents:
diff changeset
4474 }
Ritor1
parents:
diff changeset
4475 ++v7;
Ritor1
parents:
diff changeset
4476 }
717
Ritor1
parents: 688
diff changeset
4477 //LABEL_23:
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4478 uNumBillboardsToDraw++;
0
Ritor1
parents:
diff changeset
4479 return v7;
Ritor1
parents:
diff changeset
4480 }
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4481 if (z <= *(float *)v8 )
0
Ritor1
parents:
diff changeset
4482 {
Ritor1
parents:
diff changeset
4483 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 )
Ritor1
parents:
diff changeset
4484 {
Ritor1
parents:
diff changeset
4485 v11 = &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw];
Ritor1
parents:
diff changeset
4486 v12 = pRenderer->uNumBillboardsToDraw - v7;
Ritor1
parents:
diff changeset
4487 do
Ritor1
parents:
diff changeset
4488 {
Ritor1
parents:
diff changeset
4489 memcpy(v11, (char *)v11 - 156, 0x9Cu);
Ritor1
parents:
diff changeset
4490 v11 = (char *)v11 - 156;
Ritor1
parents:
diff changeset
4491 --v12;
Ritor1
parents:
diff changeset
4492 }
Ritor1
parents:
diff changeset
4493 while ( v12 );
Ritor1
parents:
diff changeset
4494 }
717
Ritor1
parents: 688
diff changeset
4495 //goto LABEL_23;
Ritor1
parents: 688
diff changeset
4496 uNumBillboardsToDraw++;
Ritor1
parents: 688
diff changeset
4497 return v7;
0
Ritor1
parents:
diff changeset
4498 }
Ritor1
parents:
diff changeset
4499 return v7;
Ritor1
parents:
diff changeset
4500 }
Ritor1
parents:
diff changeset
4501
Ritor1
parents:
diff changeset
4502 //----- (004A1E9D) --------------------------------------------------------
Ritor1
parents:
diff changeset
4503 unsigned int Render::GetBillboardDrawListSize()
Ritor1
parents:
diff changeset
4504 {
Ritor1
parents:
diff changeset
4505 return pRenderer->uNumBillboardsToDraw;
Ritor1
parents:
diff changeset
4506 }
Ritor1
parents:
diff changeset
4507
Ritor1
parents:
diff changeset
4508 //----- (004A1EA3) --------------------------------------------------------
Ritor1
parents:
diff changeset
4509 unsigned int Render::GetParentBillboardID(unsigned int uBillboardID)
Ritor1
parents:
diff changeset
4510 {
Ritor1
parents:
diff changeset
4511 return pRenderer->pBillboardRenderListD3D[uBillboardID].uParentBillboardID;
Ritor1
parents:
diff changeset
4512 }
Ritor1
parents:
diff changeset
4513
Ritor1
parents:
diff changeset
4514 //----- (004A1EB6) --------------------------------------------------------
Ritor1
parents:
diff changeset
4515 void Render::BeginSceneD3D()
Ritor1
parents:
diff changeset
4516 {
Ritor1
parents:
diff changeset
4517 if (!uNumD3DSceneBegins++)
Ritor1
parents:
diff changeset
4518 {
Ritor1
parents:
diff changeset
4519 if (pRenderD3D)
Ritor1
parents:
diff changeset
4520 {
Ritor1
parents:
diff changeset
4521 pRenderD3D->ClearTarget(true, 0x00F08020, true, 1.0);
Ritor1
parents:
diff changeset
4522 pRenderer->uNumBillboardsToDraw = 0;
Ritor1
parents:
diff changeset
4523 pRenderD3D->pDevice->BeginScene();
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4524
0
Ritor1
parents:
diff changeset
4525 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor )
Ritor1
parents:
diff changeset
4526 uFogColor = GetLevelFogColor();
Ritor1
parents:
diff changeset
4527 else
Ritor1
parents:
diff changeset
4528 uFogColor = 0;
Ritor1
parents:
diff changeset
4529
Ritor1
parents:
diff changeset
4530 if ( uFogColor & 0xFF000000 )
Ritor1
parents:
diff changeset
4531 {
Ritor1
parents:
diff changeset
4532 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 1);
Ritor1
parents:
diff changeset
4533 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, uFogColor & 0xFFFFFF);
Ritor1
parents:
diff changeset
4534 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0);
Ritor1
parents:
diff changeset
4535 bUsingSpecular = true;
Ritor1
parents:
diff changeset
4536 }
Ritor1
parents:
diff changeset
4537 else
Ritor1
parents:
diff changeset
4538 {
Ritor1
parents:
diff changeset
4539 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 0);
Ritor1
parents:
diff changeset
4540 bUsingSpecular = 0;
Ritor1
parents:
diff changeset
4541 }
Ritor1
parents:
diff changeset
4542 }
Ritor1
parents:
diff changeset
4543 else
Ritor1
parents:
diff changeset
4544 {
Ritor1
parents:
diff changeset
4545 LockRenderSurface((void **)&pTargetSurface, &uTargetSurfacePitch);
Ritor1
parents:
diff changeset
4546 if (pTargetSurface)
Ritor1
parents:
diff changeset
4547 field_18_locked_pitch = uTargetSurfacePitch;
Ritor1
parents:
diff changeset
4548 else
Ritor1
parents:
diff changeset
4549 --uNumD3DSceneBegins;
Ritor1
parents:
diff changeset
4550 }
Ritor1
parents:
diff changeset
4551 }
Ritor1
parents:
diff changeset
4552 }
Ritor1
parents:
diff changeset
4553
Ritor1
parents:
diff changeset
4554 //----- (004A1FE1) --------------------------------------------------------
Ritor1
parents:
diff changeset
4555 void Render::DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene()
Ritor1
parents:
diff changeset
4556 {
Ritor1
parents:
diff changeset
4557 --uNumD3DSceneBegins;
Ritor1
parents:
diff changeset
4558 if (uNumD3DSceneBegins)
Ritor1
parents:
diff changeset
4559 return;
Ritor1
parents:
diff changeset
4560
Ritor1
parents:
diff changeset
4561 if (pRenderD3D)
Ritor1
parents:
diff changeset
4562 {
Ritor1
parents:
diff changeset
4563 pGame->draw_debug_outlines();
161
49e74dee4eab 13.02.13
Ritor1
parents: 152
diff changeset
4564 DoRenderBillboards_D3D();
0
Ritor1
parents:
diff changeset
4565 pGame->pStru6Instance->RenderSpecialEffects();
Ritor1
parents:
diff changeset
4566 pRenderD3D->pDevice->EndScene();
Ritor1
parents:
diff changeset
4567 }
Ritor1
parents:
diff changeset
4568 else
Ritor1
parents:
diff changeset
4569 pGame->pStru6Instance->RenderSpecialEffects();
Ritor1
parents:
diff changeset
4570 }
Ritor1
parents:
diff changeset
4571
Ritor1
parents:
diff changeset
4572 //----- (004A2031) --------------------------------------------------------
349
672b83584b0f GetActorTintColor
Nomad
parents: 323
diff changeset
4573 unsigned int Render::GetActorTintColor(float a2, int tint, int a4, int a5, RenderBillboard *a6)
672b83584b0f GetActorTintColor
Nomad
parents: 323
diff changeset
4574 {
1117
ad89d1905b48 * stru6_stru1_indoor_sw_billboard::sub_47802A() cleaned, fireball working
zipi
parents: 1113
diff changeset
4575 // __debugbreak(); // should not fire outside decal builder
349
672b83584b0f GetActorTintColor
Nomad
parents: 323
diff changeset
4576 return ::GetActorTintColor(tint, a4, a2, a5, a6);
0
Ritor1
parents:
diff changeset
4577 }
Ritor1
parents:
diff changeset
4578
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
4579 /*void Render::DrawTerrainPolygon_new(Polygon *a3, IDirect3DTexture2 *pTexture)//new function
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4580 {
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4581 int v5; // ebx@1
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4582 int v6; // edi@1
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4583 int v8; // eax@7
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4584 float v9; // eax@12
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4585 float *v10; // esi@12
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4586 float v11; // ecx@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4587 double v12; // st7@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4588 double v13; // st7@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4589 double v14; // st7@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4590 signed int v15; // eax@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4591 int v16; // eax@15
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4592 float v17; // ST48_4@15
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4593 char v18; // zf@17
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4594 int v19; // eax@18
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4595 int v20; // eax@18
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4596 int v21; // edx@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4597 signed int v22; // ecx@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4598 int v23; // eax@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4599 const char *v24; // ST4C_4@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4600 unsigned int v25; // ST50_4@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4601 int v26; // ST54_4@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4602 int v27; // eax@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4603 _UNKNOWN *v28; // eax@21
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4604 int v29; // ecx@23
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4605 int v30; // eax@23
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4606 int v31; // eax@23
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4607 int v32; // eax@24
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4608 int v33; // eax@25
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4609 int v34; // eax@25
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4610 int v35; // eax@25
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4611 int v36; // eax@25
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4612 signed int v37; // ecx@26
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4613 int v38; // eax@26
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4614 _UNKNOWN *v39; // eax@27
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4615 int v40; // edx@28
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4616 int v41; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4617 int v42; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4618 int v43; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4619 int v44; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4620 unsigned int v46; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4621 int v47; // eax@30
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4622 int v48; // eax@30
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4623 int v49; // eax@30
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4624 double v52; // st6@35
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4625 const char *v55; // [sp+4Ch] [bp-1Ch]@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4626 int v57; // [sp+5Ch] [bp-Ch]@3
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4627 signed int v59; // [sp+60h] [bp-8h]@12
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4628 int v61; // [sp+64h] [bp-4h]@4
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4629 int i;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4630
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4631 v6 = (int)this;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4632 v5 = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4633 if (!this->uNumD3DSceneBegins)
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4634 return;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4635
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4636
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4637
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4638
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4639 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4640 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4641 if (this->bUsingSpecular)
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4642 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4643 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4644 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4645 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4646 }
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4647
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4648 pVertices[0].pos.x = array_50AC10[0].vWorldViewProjX;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4649 pVertices[0].pos.y = array_50AC10[0].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4650 pVertices[0].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[0].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4651 pVertices[0].rhw = 1.0 / (array_50AC10[0].vWorldViewPosition.x + 0.0000001000000011686097);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4652 pVertices[0].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4653 pVertices[0].specular = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4654 pVertices[0].texcoord.x = array_50AC10[0].u;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4655 pVertices[0].texcoord.y = array_50AC10[0].v;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4656
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4657 pVertices[1].pos.x = array_50AC10[3].vWorldViewProjX;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4658 pVertices[1].pos.y = array_50AC10[3].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4659 pVertices[1].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[3].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4660 pVertices[1].rhw = 1.0 / (array_50AC10[3].vWorldViewPosition.x + 0.0000001000000011686097);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4661 pVertices[1].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[3].vWorldViewPosition.x, 0, 0);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4662 pVertices[1].specular = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4663 pVertices[1].texcoord.x = array_50AC10[3].u;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4664 pVertices[1].texcoord.y = array_50AC10[3].v;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4665
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4666 pVertices[2].pos.x = array_50AC10[1].vWorldViewProjX;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4667 pVertices[2].pos.y = array_50AC10[1].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4668 pVertices[2].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[1].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4669 pVertices[2].rhw = 1.0 / (array_50AC10[1].vWorldViewPosition.x + 0.0000001000000011686097);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4670 pVertices[2].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[1].vWorldViewPosition.x, 0, 0);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4671 pVertices[2].specular = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4672 pVertices[2].texcoord.x = array_50AC10[1].u;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4673 pVertices[2].texcoord.y = array_50AC10[1].v;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4674
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4675 memcpy(pVertices + 3, pVertices + 2, sizeof(RenderVertexD3D3));
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4676 memcpy(pVertices + 4, pVertices + 1, sizeof(RenderVertexD3D3));
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4677
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4678 pVertices[5].pos.x = array_50AC10[2].vWorldViewProjX;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4679 pVertices[5].pos.y = array_50AC10[2].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4680 pVertices[5].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[2].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4681 pVertices[5].rhw = 1.0 / (array_50AC10[2].vWorldViewPosition.x + 0.0000001000000011686097);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4682 pVertices[5].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[2].vWorldViewPosition.x, 0, 0);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4683 pVertices[5].specular = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4684 pVertices[5].texcoord.x = array_50AC10[2].u;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4685 pVertices[5].texcoord.y = array_50AC10[2].v;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4686
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4687
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4688 this->pRenderD3D->pDevice->SetTexture(0, pTexture);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4689 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLELIST, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, pVertices, 6, D3DDP_DONOTLIGHT);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4690
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4691 }*/
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4692
0
Ritor1
parents:
diff changeset
4693 //----- (004A26BC) --------------------------------------------------------
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
4694 void Render::DrawTerrainPolygon(unsigned int uNumVertices, struct Polygon *a4, IDirect3DTexture2 *a5, bool transparent, bool clampAtTextureBorders)
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4695 {
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4696 //RenderVertexSoft *pVertices; // esi@0
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4697 //int v7; // edi@1
0
Ritor1
parents:
diff changeset
4698 unsigned int v8; // ebx@1
Ritor1
parents:
diff changeset
4699 LightmapBuilder *v9; // esi@3
Ritor1
parents:
diff changeset
4700 unsigned int v10; // edx@3
Ritor1
parents:
diff changeset
4701 int v11; // eax@5
Ritor1
parents:
diff changeset
4702 int v12; // eax@11
Ritor1
parents:
diff changeset
4703 char *v13; // esi@11
Ritor1
parents:
diff changeset
4704 double v14; // st7@13
Ritor1
parents:
diff changeset
4705 double v15; // st7@13
Ritor1
parents:
diff changeset
4706 signed int v16; // eax@13
Ritor1
parents:
diff changeset
4707 int v17; // ecx@13
Ritor1
parents:
diff changeset
4708 double v18; // st7@13
Ritor1
parents:
diff changeset
4709 float v19; // ST78_4@14
Ritor1
parents:
diff changeset
4710 int v20; // eax@14
Ritor1
parents:
diff changeset
4711 char v21; // zf@16
Ritor1
parents:
diff changeset
4712 HRESULT v22; // eax@17
Ritor1
parents:
diff changeset
4713 HRESULT v23; // eax@17
Ritor1
parents:
diff changeset
4714 HRESULT v24; // eax@19
Ritor1
parents:
diff changeset
4715 HRESULT v25; // eax@19
Ritor1
parents:
diff changeset
4716 unsigned int v26; // ecx@19
Ritor1
parents:
diff changeset
4717 char *v27; // eax@20
Ritor1
parents:
diff changeset
4718 HRESULT v28; // eax@22
Ritor1
parents:
diff changeset
4719 HRESULT v29; // eax@22
Ritor1
parents:
diff changeset
4720 HRESULT v30; // eax@23
Ritor1
parents:
diff changeset
4721 HRESULT v31; // eax@24
Ritor1
parents:
diff changeset
4722 HRESULT v32; // eax@24
Ritor1
parents:
diff changeset
4723 HRESULT v33; // eax@24
Ritor1
parents:
diff changeset
4724 HRESULT v34; // eax@24
Ritor1
parents:
diff changeset
4725 HRESULT v35; // eax@25
Ritor1
parents:
diff changeset
4726 HRESULT v36; // eax@25
Ritor1
parents:
diff changeset
4727 unsigned int v37; // ecx@25
Ritor1
parents:
diff changeset
4728 char *v38; // eax@26
Ritor1
parents:
diff changeset
4729 int v39; // edx@27
Ritor1
parents:
diff changeset
4730 HRESULT v40; // eax@28
Ritor1
parents:
diff changeset
4731 HRESULT v41; // eax@28
Ritor1
parents:
diff changeset
4732 HRESULT v42; // eax@28
Ritor1
parents:
diff changeset
4733 HRESULT v43; // eax@28
Ritor1
parents:
diff changeset
4734 //IDirect3DDevice3Vtbl *v44; // ebx@28
Ritor1
parents:
diff changeset
4735 unsigned int v45; // eax@28
Ritor1
parents:
diff changeset
4736 HRESULT v46; // eax@29
Ritor1
parents:
diff changeset
4737 HRESULT v47; // eax@29
Ritor1
parents:
diff changeset
4738 HRESULT v48; // eax@29
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4739 //IDirect3DDevice3 *v49; // eax@35
0
Ritor1
parents:
diff changeset
4740 //IDirect3DDevice3Vtbl *v50; // ecx@35
Ritor1
parents:
diff changeset
4741 int v51; // eax@40
Ritor1
parents:
diff changeset
4742 char *v52; // esi@40
Ritor1
parents:
diff changeset
4743 double v53; // st7@42
Ritor1
parents:
diff changeset
4744 double v54; // st7@42
Ritor1
parents:
diff changeset
4745 signed int v55; // eax@42
Ritor1
parents:
diff changeset
4746 int v56; // ecx@42
Ritor1
parents:
diff changeset
4747 double v57; // st7@42
Ritor1
parents:
diff changeset
4748 float v58; // ST7C_4@43
Ritor1
parents:
diff changeset
4749 int v59; // eax@43
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4750 //signed int v60; // [sp+78h] [bp-14h]@31
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4751 //RenderVertexSoft *v61; // [sp+7Ch] [bp-10h]@3
0
Ritor1
parents:
diff changeset
4752 const char *v62; // [sp+80h] [bp-Ch]@0
Ritor1
parents:
diff changeset
4753 const char *v63; // [sp+80h] [bp-Ch]@19
Ritor1
parents:
diff changeset
4754 int v64; // [sp+84h] [bp-8h]@0
Ritor1
parents:
diff changeset
4755 LightmapBuilder *v65; // [sp+88h] [bp-4h]@3
Ritor1
parents:
diff changeset
4756 unsigned int v66; // [sp+88h] [bp-4h]@40
Ritor1
parents:
diff changeset
4757 unsigned int a6a; // [sp+A0h] [bp+14h]@11
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4758 int a7;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4759
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4760 //v7 = (int)this;
0
Ritor1
parents:
diff changeset
4761 v8 = 0;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4762 if (!this->uNumD3DSceneBegins)
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4763 return;
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4764 if ( uNumVertices < 3)
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4765 return;
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4766
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4767 //v61 = pVertices;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4768
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4769 /* v9 = pGame->pLightmapBuilder;
0
Ritor1
parents:
diff changeset
4770 v65 = v9;
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4771 v10 = v9->std__vector_000004_size;*/
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
4772 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01)
0
Ritor1
parents:
diff changeset
4773 {
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
4774 v11 = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0);
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
4775 pGame->pLightmapBuilder->DrawLightmaps(/*v11, 0*/);
0
Ritor1
parents:
diff changeset
4776 }
Ritor1
parents:
diff changeset
4777 else
Ritor1
parents:
diff changeset
4778 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4779 if (transparent || !pGame->pLightmapBuilder->std__vector_000004_size ||
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4780 byte_4D864C && pGame->uFlags & 2 )
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4781 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4782 if (clampAtTextureBorders)
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4783 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP);
0
Ritor1
parents:
diff changeset
4784 else
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4785 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4786
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4787 if (transparent || this->bUsingSpecular)
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4788 {
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4789 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4790 if (transparent)
0
Ritor1
parents:
diff changeset
4791 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4792 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4793 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4794 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4795 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE);
0
Ritor1
parents:
diff changeset
4796 }
Ritor1
parents:
diff changeset
4797 else
Ritor1
parents:
diff changeset
4798 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4799 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4800 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO);
0
Ritor1
parents:
diff changeset
4801 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4802 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4803
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4804 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4805 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4806
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4807 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4808 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4809 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4810 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4811 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4812 if ( this->bUsingSpecular )
0
Ritor1
parents:
diff changeset
4813 {
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4814 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x);
0
Ritor1
parents:
diff changeset
4815 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4816 else
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4817 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4818 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4819 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4820 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4821 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4822 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4823
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4824 this->pRenderD3D->pDevice->SetTexture(0, a5);
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4825 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, d3d_vertex_buffer, uNumVertices, 16);
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4826 if (transparent)
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4827 {
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4828 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4829 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4830 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0
Ritor1
parents:
diff changeset
4831 }
Ritor1
parents:
diff changeset
4832 }
Ritor1
parents:
diff changeset
4833 else
Ritor1
parents:
diff changeset
4834 {
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4835 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4836 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4837
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4838 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4839 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4840 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4841 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4842 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4843 if ( this->bUsingSpecular )
0
Ritor1
parents:
diff changeset
4844 {
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4845 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x);
0
Ritor1
parents:
diff changeset
4846 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4847 else
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4848 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4849 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4850 }
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1394
diff changeset
4851 __debugbreak(); // warning C4700: uninitialized local variable 'v20' used
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4852 d3d_vertex_buffer[i].specular = v20;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4853 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4854 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4855 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4856 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4857 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4858 if (pRenderer->bUsingSpecular)
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4859 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
0
Ritor1
parents:
diff changeset
4860
Ritor1
parents:
diff changeset
4861 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4862 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
4863 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4864 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
4865 uNumVertices,
Ritor1
parents:
diff changeset
4866 16));
Ritor1
parents:
diff changeset
4867 //v63 = (const char *)v7->pRenderD3D->pDevice;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4868 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
0
Ritor1
parents:
diff changeset
4869 //(*(void (**)(void))(*(int *)v63 + 88))();
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
4870 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4871 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4872 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4873 d3d_vertex_buffer[i].diffuse = -1;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4874 }
0
Ritor1
parents:
diff changeset
4875 ErrD3D(pRenderD3D->pDevice->SetTexture(0, a5));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4876 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
4877 if ( !pRenderer->bUsingSpecular )
Ritor1
parents:
diff changeset
4878 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4879 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4880 }
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4881 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4882 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4883 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4884 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
4885 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4886 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
4887 uNumVertices,
Ritor1
parents:
diff changeset
4888 16));
Ritor1
parents:
diff changeset
4889 if ( pRenderer->bUsingSpecular )
Ritor1
parents:
diff changeset
4890 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4891 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
0
Ritor1
parents:
diff changeset
4892 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4893 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4894 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4895 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4896 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4897 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4898
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4899 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));//problem
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4900 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4901 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4902 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
4903 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4904 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
4905 uNumVertices,
Ritor1
parents:
diff changeset
4906 16));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4907 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
0
Ritor1
parents:
diff changeset
4908 //v44 = pRenderer->pRenderD3D->pDevice;
Ritor1
parents:
diff changeset
4909 v45 = GetLevelFogColor();
Ritor1
parents:
diff changeset
4910 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, v45 & 0xFFFFFF));
Ritor1
parents:
diff changeset
4911 v8 = 0;
Ritor1
parents:
diff changeset
4912 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0));
Ritor1
parents:
diff changeset
4913 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4914 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4915 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0
Ritor1
parents:
diff changeset
4916 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v8));
Ritor1
parents:
diff changeset
4917 }
Ritor1
parents:
diff changeset
4918 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4919
1638
ccde94f02b75 class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents: 1637
diff changeset
4920 //if (pIndoorCamera->flags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES || pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES)
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
4921 if (pGame->pIndoorCameraD3D->debug_flags & ODM_RENDER_DRAW_TERRAIN_OUTLINES)
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4922 pGame->pIndoorCameraD3D->debug_outline_d3d(d3d_vertex_buffer, uNumVertices, 0x00FFFFFF, 0.0);
0
Ritor1
parents:
diff changeset
4923 }
Ritor1
parents:
diff changeset
4924 // 4A26BC: could not find valid save-restore pair for esi
Ritor1
parents:
diff changeset
4925 // 4D864C: using guessed type char byte_4D864C;
Ritor1
parents:
diff changeset
4926
Ritor1
parents:
diff changeset
4927 //----- (004A2DA3) --------------------------------------------------------
1427
Ritor1
parents: 1424
diff changeset
4928 void Render::DrawSkyPolygon(unsigned int uNumVertices, struct Polygon *pSkyPolygon, IDirect3DTexture2 *pTexture)
852
Ritor1
parents: 840
diff changeset
4929 {
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4930 int v7; // eax@7
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4931
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4932 if ( !this->uNumD3DSceneBegins )
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4933 return;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4934 if ( uNumVertices >= 3 )
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4935 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4936 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP);
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4937 if ( this->bUsingSpecular )
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4938 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4939 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4940 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4941 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO);
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4942 }
1427
Ritor1
parents: 1424
diff changeset
4943 for ( uint i = 0; i < uNumVertices; ++i )
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4944 {
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4945 pVertices[i].pos.x = array_50AC10[i].vWorldViewProjX;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4946 pVertices[i].pos.y = array_50AC10[i].vWorldViewProjY;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4947 pVertices[i].pos.z = 0.99989998;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
4948 pVertices[i].rhw = array_50AC10[i]._rhw;
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4949
840
6dd2b94efce7 DrawFan
Ritor1
parents: 810
diff changeset
4950 pVertices[i].diffuse = ::GetActorTintColor(31, 0, array_50AC10[i].vWorldViewPosition.x, 1, 0);
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4951 v7 = 0;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4952 if (this->bUsingSpecular)
1427
Ritor1
parents: 1424
diff changeset
4953 v7 = sub_47C3D7_get_fog_related_stuff(0, 1, array_50AC10[i].vWorldViewPosition.x);
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4954 pVertices[i].specular = v7;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4955 pVertices[i].texcoord.x = array_50AC10[i].u;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4956 pVertices[i].texcoord.y = array_50AC10[i].v;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4957 }
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4958 pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture);
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4959 pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
840
6dd2b94efce7 DrawFan
Ritor1
parents: 810
diff changeset
4960 pVertices, uNumVertices, D3DDP_DONOTUPDATEEXTENTS | D3DDP_DONOTLIGHT);
0
Ritor1
parents:
diff changeset
4961 }
Ritor1
parents:
diff changeset
4962 }
Ritor1
parents:
diff changeset
4963
Ritor1
parents:
diff changeset
4964 //----- (004A2ED5) --------------------------------------------------------
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
4965 void Render::_4A2ED5(signed int a2, struct Polygon *a3, IDirect3DTexture2 *pHwTex)
0
Ritor1
parents:
diff changeset
4966 {
Ritor1
parents:
diff changeset
4967 signed int v4; // edi@2
Ritor1
parents:
diff changeset
4968 int v5; // eax@3
Ritor1
parents:
diff changeset
4969 int v6; // edx@5
1072
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4970 RenderVertexD3D3 *v7; // eax@6
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4971 RenderVertexSoft *v8; // ecx@6
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4972 //double v9; // st6@7
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4973 //int v10; // ebx@7
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4974 //int v11; // ebx@7
0
Ritor1
parents:
diff changeset
4975
Ritor1
parents:
diff changeset
4976 if ( this->uNumD3DSceneBegins )
Ritor1
parents:
diff changeset
4977 {
Ritor1
parents:
diff changeset
4978 v4 = a2;
Ritor1
parents:
diff changeset
4979 if ( a2 >= 3 )
Ritor1
parents:
diff changeset
4980 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4981 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
4982 v5 = 31 - (a3->dimming_level & 0x1F);
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
4983 if ( v5 < pOutdoor->max_terrain_dimming_level )
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
4984 v5 = pOutdoor->max_terrain_dimming_level;
0
Ritor1
parents:
diff changeset
4985 v6 = 8 * v5 | ((8 * v5 | (v5 << 11)) << 8);
1072
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4986 for (uint i = 0; i < a2; ++i)
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4987 {
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4988 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4989 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4990 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / array_507D30[i].vWorldViewPosition.y;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4991 d3d_vertex_buffer[i].rhw = array_507D30[i]._rhw;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4992 d3d_vertex_buffer[i].diffuse = v6;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4993 d3d_vertex_buffer[i].specular = 0;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4994 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4995 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4996 }
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
4997
0
Ritor1
parents:
diff changeset
4998 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4999 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
5000 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
5001 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
5002 a2,
Ritor1
parents:
diff changeset
5003 28));
Ritor1
parents:
diff changeset
5004 }
Ritor1
parents:
diff changeset
5005 }
Ritor1
parents:
diff changeset
5006 }
Ritor1
parents:
diff changeset
5007
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5008
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5009 //----- (00479A53) --------------------------------------------------------
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5010 void Render::DrawIndoorPolygonNoLight(unsigned int uNumVertices, unsigned int uFaceID)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5011 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5012 BLVFace *pFace; // esi@1
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5013 //unsigned int v3; // edi@1
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5014 //PolygonType v4; // al@1
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5015 double v5; // st7@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5016 signed __int64 v6; // qax@3
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5017 //PolygonType v7; // cl@3
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5018 //int v8; // esi@7
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5019 //int v9; // eax@7
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5020 //unsigned int v10; // eax@7
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5021 //double v11; // st6@7
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5022 int v12; // edx@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5023 int v13; // eax@7
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5024 //char *v14; // esi@8
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5025 void *v15; // ecx@9
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5026 //int v16; // eax@9
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5027 int v17; // edi@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5028 double v18; // st7@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5029 signed int v19; // ebx@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5030 void *v20; // ecx@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5031 int v21; // ebx@11
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5032 int v22; // eax@14
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5033 signed __int64 v23; // qtt@16
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5034 double v24; // st7@16
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5035 unsigned __int8 v25; // sf@16
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5036 unsigned __int8 v26; // of@16
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5037 Render *v27; // ecx@17
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5038 double v28; // st7@20
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5039 char *v29; // ebx@20
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5040 char *v30; // edx@20
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5041 unsigned __int8 v31; // c0@21
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5042 unsigned __int8 v32; // c3@21
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5043 double v33; // st6@23
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5044 char *v34; // esi@30
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5045 const void *v35; // ecx@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5046 int v36; // eax@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5047 const void *v37; // edi@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5048 signed __int64 v38; // qax@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5049 int v39; // ecx@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5050 int v40; // ebx@33
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5051 int v41; // eax@36
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5052 signed __int64 v42; // qtt@39
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5053 int v43; // eax@39
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5054 char v44; // zf@39
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5055 double v45; // st7@39
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5056 double v46; // st7@39
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5057 unsigned int v47; // edx@40
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5058 double v48; // st7@41
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5059 RenderVertexSoft *v49; // ebx@41
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5060 void *v50; // edi@43
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5061 double v51; // st7@46
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5062 RenderVertexSoft *v52; // edx@46
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5063 void *v53; // edi@48
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5064 //char *v54; // ebx@52
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5065 //unsigned int v55; // eax@53
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5066 //unsigned int v56; // eax@55
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5067 //int v57; // ST10_4@55
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5068 //Texture *v58; // eax@55
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5069 signed int v59; // [sp-4h] [bp-178h]@17
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
5070 struct Polygon *v60; // [sp+0h] [bp-174h]@17
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5071 IDirect3DTexture2 *v61; // [sp+4h] [bp-170h]@17
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
5072 struct Polygon v62; // [sp+14h] [bp-160h]@6
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5073 unsigned int v63; // [sp+120h] [bp-54h]@7
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5074 //double v64; // [sp+124h] [bp-50h]@7
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5075 unsigned int v65; // [sp+128h] [bp-4Ch]@1
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5076 unsigned int v66; // [sp+12Ch] [bp-48h]@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5077 float v67; // [sp+130h] [bp-44h]@7
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5078 //__int64 v68; // [sp+134h] [bp-40h]@3
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5079 __int64 v69; // [sp+13Ch] [bp-38h]@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5080 int v70; // [sp+144h] [bp-30h]@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5081 int X; // [sp+148h] [bp-2Ch]@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5082 int v72; // [sp+14Ch] [bp-28h]@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5083 float v73; // [sp+150h] [bp-24h]@16
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5084 unsigned int v74; // [sp+154h] [bp-20h]@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5085 RenderVertexSoft *v75; // [sp+158h] [bp-1Ch]@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5086 float v76; // [sp+15Ch] [bp-18h]@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5087 int v77; // [sp+160h] [bp-14h]@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5088 int v78; // [sp+164h] [bp-10h]@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5089 void *v79; // [sp+168h] [bp-Ch]@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5090 float v80; // [sp+16Ch] [bp-8h]@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5091 const void *v81; // [sp+170h] [bp-4h]@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5092
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5093 pFace = &pIndoor->pFaces[uFaceID];
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5094 if (pFace->uPolygonType == POLYGON_InBetweenFloorAndWall || pFace->uPolygonType == POLYGON_Floor)
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5095 {
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5096 int v69 = (GetTickCount() / 32) - pGame->pIndoorCameraD3D->vPartyPos.x;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5097 int v55 = (GetTickCount() / 32) + pGame->pIndoorCameraD3D->vPartyPos.y;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5098 for (uint i = 0; i < uNumVertices; ++i)
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5099 {
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5100 array_507D30[i].u = (v69 + array_507D30[i].u) * 0.25f;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5101 array_507D30[i].v = (v55 + array_507D30[i].v) * 0.25f;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5102 }
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5103 pRenderer->DrawIndoorPolygon(uNumVertices, pFace, pBitmaps_LOD->pHardwareTextures[pFace->uBitmapID], pFace->GetTexture(), PID(OBJECT_BModel, uFaceID), -1, 0);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5104 return;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5105 }
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5106
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5107 *(float *)&v74 = (double)pBLVRenderParams->uViewportCenterY;
1641
466c5e15f524 Excess wrapper (IndoorLocation_drawstru) removed.
Nomad
parents: 1640
diff changeset
5108 v70 = (signed __int64)((double)(pBLVRenderParams->fov_rad_fixpoint * pGame->pIndoorCameraD3D->vPartyPos.z)
466c5e15f524 Excess wrapper (IndoorLocation_drawstru) removed.
Nomad
parents: 1640
diff changeset
5109 / (((double)pBLVRenderParams->fov_rad_fixpoint + 16192.0)
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5110 * 65536.0)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5111 + *(float *)&v74);
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
5112 v5 = (double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5113 *(float *)&v75 = v5;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5114 v6 = (signed __int64)(*(float *)&v74
1641
466c5e15f524 Excess wrapper (IndoorLocation_drawstru) removed.
Nomad
parents: 1640
diff changeset
5115 - (double)pBLVRenderParams->fov_rad_fixpoint
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5116 / ((cos(v5) * 16192.0 + 0.0000001)
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5117 * 65535.0)
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5118 * (sin(*(float *)&v75) * -16192.0 - (double)pGame->pIndoorCameraD3D->vPartyPos.z));
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5119
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5120
1544
499761153844 stru149
Nomad
parents: 1542
diff changeset
5121 stru_8019C8._48653D_frustum_blv(65536, 0, 0, 0, 65536, 0);
1427
Ritor1
parents: 1424
diff changeset
5122 v62.Create_48607B(&stru_8019C8);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5123 v62.uTileBitmapID = pFace->uBitmapID;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5124
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5125 v62.pTexture = pBitmaps_LOD->GetTexture(v62.uTileBitmapID);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5126 if ( !v62.pTexture )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5127 return;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5128
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5129 v62.dimming_level = 0;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5130 v62.uNumVertices = uNumVertices;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5131 v62.v_18.y = 0;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5132 v62.v_18.x = -stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationX + 16);
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5133 v62.v_18.z = -stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationX + 16);
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5134 memcpy(&array_507D30[uNumVertices], array_507D30, sizeof(array_507D30[uNumVertices]));
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5135 v62.field_24 = 0x2000000;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5136
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5137 extern float _calc_fov(int viewport_width, int angle_degree);
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5138 //v64 = (double)(signed int)(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX) * 0.5;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5139 //v72 = 65536 / (signed int)(signed __int64)(v64 / tan(0.6457717418670654) + 0.5);
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5140 v72 = 65536.0f / _calc_fov(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX, 74);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5141 v12 = v62.pTexture->uWidthMinus1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5142 v13 = v62.pTexture->uHeightMinus1;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5143 v67 = 1.0 / (double)v62.pTexture->uTextureWidth;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5144 v63 = 224 * pMiscTimer->uTotalGameTimeElapsed & v13;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5145 v66 = 224 * pMiscTimer->uTotalGameTimeElapsed & v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5146 v78 = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5147 v81 = 0;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5148 float v68 = 1.0 / (double)v62.pTexture->uTextureHeight;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5149 if ( (signed int)v62.uNumVertices <= 0 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5150 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5151 LABEL_17:
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5152 v61 = pBitmaps_LOD->pHardwareTextures[(signed __int16)v62.uTileBitmapID];
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5153 v27 = pRenderer;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5154 v60 = &v62;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5155 v59 = v62.uNumVertices;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5156 goto LABEL_18;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5157 }
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5158
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5159 //v14 = (char *)&array_507D30[0].vWorldViewProjY;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5160 int _507D30_idx = 0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5161 while ( 2 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5162 {
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5163 v15 = (void *)(v72 * (v70 - (int)array_507D30[_507D30_idx].vWorldViewProjY));
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5164 v77 = (unsigned __int64)(v62.ptr_38->field_14 * (signed __int64)(signed int)v15) >> 16;
1809
8f20f7e1091d original DrawSkyD3D() fix
Ritor1
parents: 1799
diff changeset
5165 v74 = v77 + v62.ptr_38->angle_from_north;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5166 v77 = (int)v15;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5167 v77 = (unsigned __int64)(v62.ptr_38->field_20 * (signed __int64)(signed int)v15) >> 16;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5168 v79 = v15;
1809
8f20f7e1091d original DrawSkyD3D() fix
Ritor1
parents: 1799
diff changeset
5169 v75 = (RenderVertexSoft *)(v77 + v62.ptr_38->angle_from_east);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5170 v79 = (void *)((unsigned __int64)(v62.v_18.z * (signed __int64)(signed int)v15) >> 16);
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5171 v17 = v72 * (pBLVRenderParams->uViewportCenterX - (int)array_507D30[_507D30_idx].vWorldViewProjX);
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5172 v18 = array_507D30[_507D30_idx].vWorldViewProjY - 1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5173 v19 = -v62.field_24;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5174 v77 = -v62.field_24;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5175 X = (int)((char *)v79 + v62.v_18.x);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5176 LODWORD(v76) = (signed __int64)v18;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5177 v20 = (void *)(v72 * (v70 - LODWORD(v76)));
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5178 while ( 1 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5179 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5180 v79 = v20;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5181 if ( !X )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5182 goto LABEL_14;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5183 v21 = abs(v19 >> 14);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5184 if ( v21 <= abs(X) )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5185 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5186 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5187 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5188 v19 = v77;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5189 v20 = v79;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5190 LABEL_14:
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5191 v79 = (void *)((unsigned __int64)(v62.v_18.z * (signed __int64)(signed int)v20) >> 16);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5192 v22 = (unsigned __int64)(v62.v_18.z * (signed __int64)(signed int)v20) >> 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5193 --LODWORD(v76);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5194 v20 = (char *)v20 + v72;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5195 X = v22 + v62.v_18.x;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5196 v78 = 1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5197 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5198 if ( !v78 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5199 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5200 LODWORD(v23) = v77 << 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5201 HIDWORD(v23) = v77 >> 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5202 v79 = (void *)(v23 / X);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5203 v77 = v17;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5204 v77 = v17;
1809
8f20f7e1091d original DrawSkyD3D() fix
Ritor1
parents: 1799
diff changeset
5205 LODWORD(v76) = v74 + ((unsigned __int64)(v62.ptr_38->angle_from_west * (signed __int64)v17) >> 16);
8f20f7e1091d original DrawSkyD3D() fix
Ritor1
parents: 1799
diff changeset
5206 v75 = (RenderVertexSoft *)((char *)v75 + ((unsigned __int64)(v62.ptr_38->angle_from_south * (signed __int64)v17) >> 16));
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5207 v77 = (unsigned __int64)(SLODWORD(v76) * v23 / X) >> 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5208 LODWORD(v73) = (unsigned __int64)((signed int)v75 * v23 / X) >> 16;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5209 //v14 += 48;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5210 LODWORD(v80) = v66 + ((signed int)((unsigned __int64)(SLODWORD(v76) * v23 / X) >> 16) >> 4);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5211 v81 = (char *)v81 + 1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5212 v24 = (double)SLODWORD(v80) * 0.000015259022;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5213 LODWORD(v80) = v63 + ((signed int)((unsigned __int64)((signed int)v75 * v23 / X) >> 16) >> 4);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5214 v26 = __OFSUB__((int)v81, v62.uNumVertices);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5215 v25 = (signed int)((char *)v81 - v62.uNumVertices) < 0;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5216 array_507D30[_507D30_idx].u = v24 * v67;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5217 array_507D30[_507D30_idx].v = (double)SLODWORD(v80) * 0.000015259022 * v68;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5218 array_507D30[_507D30_idx]._rhw = 65536.0 / (double)(signed int)v79;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5219 _507D30_idx++;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5220 if ( !(v25 ^ v26) )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5221 goto LABEL_17;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5222 continue;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5223 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5224 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5225 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5226 LODWORD(v73) = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5227 v80 = v76;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5228 if ( (signed int)v62.uNumVertices > 0 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5229 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5230 v28 = (double)SLODWORD(v76);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5231 LODWORD(v76) = (int)(char *)array_50AC10 + 28;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5232 v29 = (char *)&array_50AC10[0].vWorldViewProjX;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5233 v30 = (char *)&array_507D30[1].vWorldViewProjY;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5234 v79 = array_50AC10;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5235 v81 = array_507D30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5236 v78 = v62.uNumVertices;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5237 do
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5238 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5239 v31 = v28 < *((float *)v30 - 12);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5240 v32 = v28 == *((float *)v30 - 12);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5241 ++LODWORD(v73);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5242 memcpy(v79, v81, 0x30u);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5243 v79 = (char *)v79 + 48;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5244 LODWORD(v76) += 48;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5245 v29 += 48;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5246 if ( v31 | v32 || v28 >= *(float *)v30 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5247 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5248 if ( v28 >= *((float *)v30 - 12) || v28 <= *(float *)v30 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5249 goto LABEL_28;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5250 v33 = (*((float *)v30 - 1) - *((float *)v30 - 13)) * v28 / (*(float *)v30 - *((float *)v30 - 12))
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5251 + *((float *)v30 - 1);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5252 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5253 else
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5254 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5255 v33 = (*((float *)v30 - 13) - *((float *)v30 - 1)) * v28 / (*((float *)v30 - 12) - *(float *)v30)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5256 + *((float *)v30 - 13);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5257 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5258 *(float *)v29 = v33;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5259 v79 = (char *)v79 + 48;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5260 v29 += 48;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5261 ++LODWORD(v73);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5262 *(unsigned int *)LODWORD(v76) = v28;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5263 LODWORD(v76) += 48;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5264 LABEL_28:
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5265 v81 = (char *)v81 + 48;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5266 v30 += 48;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5267 --v78;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5268 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5269 while ( v78 );
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5270 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5271 if ( SLODWORD(v73) <= 0 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5272 goto LABEL_40;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5273 v34 = (char *)&array_50AC10[0].vWorldViewProjY;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5274 v65 = v77 >> 14;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5275 HIDWORD(v69) = LODWORD(v73);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5276 do
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5277 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5278 v35 = (const void *)(v72 * (v70 - (unsigned __int64)(signed __int64)*(float *)v34));
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5279 v78 = v62.ptr_38->field_14;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5280 v81 = (const void *)((unsigned __int64)(v78 * (signed __int64)(signed int)v35) >> 16);
1809
8f20f7e1091d original DrawSkyD3D() fix
Ritor1
parents: 1799
diff changeset
5281 v36 = (int)((char *)v81 + v62.ptr_38->angle_from_north);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5282 v81 = v35;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5283 v74 = v36;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5284 v78 = v62.ptr_38->field_20;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5285 v81 = (const void *)((unsigned __int64)(v78 * (signed __int64)(signed int)v35) >> 16);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5286 v78 = (int)v35;
1809
8f20f7e1091d original DrawSkyD3D() fix
Ritor1
parents: 1799
diff changeset
5287 v75 = (RenderVertexSoft *)((char *)v81 + v62.ptr_38->angle_from_east);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5288 v81 = (const void *)v62.v_18.z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5289 v78 = (unsigned __int64)(v62.v_18.z * (signed __int64)(signed int)v35) >> 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5290 v37 = (const void *)(v72
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5291 * (pBLVRenderParams->uViewportCenterX - (unsigned __int64)(signed __int64)*((float *)v34 - 1)));
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5292 v38 = (signed __int64)(*(float *)v34 - 1.0);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5293 v81 = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5294 LODWORD(v76) = v38;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5295 v39 = v72 * (v70 - v38);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5296 while ( 1 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5297 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5298 v78 = v39;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5299 if ( !X )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5300 goto LABEL_36;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5301 v40 = abs(X);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5302 if ( abs((signed __int64)v65) <= v40 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5303 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5304 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5305 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5306 v39 = v78;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5307 LABEL_36:
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5308 v78 = v62.v_18.z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5309 v41 = (unsigned __int64)(v62.v_18.z * (signed __int64)v39) >> 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5310 --LODWORD(v76);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5311 v39 += v72;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5312 X = v41 + v62.v_18.x;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5313 v81 = (const void *)1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5314 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5315 if ( v81 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5316 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5317 v79 = (void *)v62.v_18.z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5318 v78 = 2 * LODWORD(v76);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5319 v81 = (const void *)((unsigned __int64)(v62.v_18.z
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5320 * (signed __int64)(signed int)(signed __int64)(((double)v70
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5321 - ((double)(2 * LODWORD(v76))
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5322 - *(float *)v34))
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5323 * (double)v72)) >> 16);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5324 X = (int)((char *)v81 + v62.v_18.x);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5325 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5326 LODWORD(v42) = v77 << 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5327 HIDWORD(v42) = v77 >> 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5328 v79 = (void *)(v42 / X);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5329 v81 = v37;
1809
8f20f7e1091d original DrawSkyD3D() fix
Ritor1
parents: 1799
diff changeset
5330 v78 = v62.ptr_38->angle_from_west;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5331 v81 = (const void *)((unsigned __int64)(v78 * (signed __int64)(signed int)v37) >> 16);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5332 v43 = v74 + ((unsigned __int64)(v78 * (signed __int64)(signed int)v37) >> 16);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5333 v74 = (unsigned int)v37;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5334 LODWORD(v76) = v43;
1809
8f20f7e1091d original DrawSkyD3D() fix
Ritor1
parents: 1799
diff changeset
5335 v78 = v62.ptr_38->angle_from_south;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5336 v75 = (RenderVertexSoft *)((char *)v75 + ((unsigned __int64)(v78 * (signed __int64)(signed int)v37) >> 16));
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5337 v74 = (unsigned __int64)(v43 * v42 / X) >> 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5338 v81 = (const void *)((unsigned __int64)((signed int)v75 * v42 / X) >> 16);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5339 v34 += 48;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5340 v78 = v66 + ((signed int)v74 >> 4);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5341 v44 = HIDWORD(v69)-- == 1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5342 v45 = (double)v78 * 0.000015259022;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5343 v78 = v63 + ((signed int)((unsigned __int64)((signed int)v75 * v42 / X) >> 16) >> 4);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5344 *((float *)v34 - 10) = v45 * v67;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5345 *((float *)v34 - 9) = (double)v78 * 0.000015259022 * v68;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5346 v46 = (double)(signed int)v79;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5347 *((float *)v34 - 16) = 0.000015258789 * v46;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5348 *((float *)v34 - 11) = 65536.0 / v46;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5349 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5350 while ( !v44 );
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5351 LABEL_40:
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5352 v47 = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5353 if ( SLODWORD(v73) > 0 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5354 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5355 v48 = (double)SLODWORD(v80);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5356 v75 = array_507D30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5357 v49 = array_50AC10;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5358 HIDWORD(v69) = LODWORD(v73);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5359 do
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5360 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5361 if ( v48 >= v49->vWorldViewProjY )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5362 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5363 v50 = v75;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5364 ++v47;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5365 ++v75;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5366 memcpy(v50, v49, 0x30u);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5367 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5368 ++v49;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5369 --HIDWORD(v69);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5370 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5371 while ( HIDWORD(v69) );
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5372 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5373 v62.uNumVertices = v47;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5374 pRenderer->_4A2ED5(v47, &v62, pBitmaps_LOD->pHardwareTextures[(signed __int16)v62.uTileBitmapID]);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5375 *(float *)&v74 = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5376 if ( SLODWORD(v73) > 0 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5377 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5378 v51 = (double)SLODWORD(v80);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5379 v75 = array_507D30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5380 v52 = array_50AC10;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5381 v80 = v73;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5382 do
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5383 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5384 if ( v51 <= v52->vWorldViewProjY )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5385 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5386 v53 = v75;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5387 ++v74;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5388 ++v75;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5389 memcpy(v53, v52, 0x30u);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5390 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5391 ++v52;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5392 --LODWORD(v80);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5393 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5394 while ( v80 != 0.0 );
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5395 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5396 v62.uNumVertices = v74;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5397 v61 = pBitmaps_LOD->pHardwareTextures[(signed __int16)v62.uTileBitmapID];
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5398 v60 = &v62;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5399 v59 = v74;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5400 v27 = pRenderer;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5401 LABEL_18:
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5402 v27->_4A2ED5(v59, v60, v61);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5403 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5404
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5405
0
Ritor1
parents:
diff changeset
5406 //----- (004A2FC0) --------------------------------------------------------
Ritor1
parents:
diff changeset
5407 void Render::DrawIndoorPolygon(unsigned int uNumVertices, BLVFace *pFace, IDirect3DTexture2 *pHwTex, Texture *pTex, int uPackedID, unsigned int uColor, int a8)
Ritor1
parents:
diff changeset
5408 {
Ritor1
parents:
diff changeset
5409 //Render *v8; // edi@1
Ritor1
parents:
diff changeset
5410 //unsigned int v9; // esi@3
1072
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5411 RenderVertexSoft *v12; // ecx@9
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5412 RenderVertexD3D3 *v13; // eax@9
0
Ritor1
parents:
diff changeset
5413 double v14; // st6@10
Ritor1
parents:
diff changeset
5414 int v15; // edx@10
Ritor1
parents:
diff changeset
5415 Texture *v16; // edx@10
Ritor1
parents:
diff changeset
5416 double v17; // st6@10
Ritor1
parents:
diff changeset
5417 //char v18; // zf@10
Ritor1
parents:
diff changeset
5418 Texture *v19; // edx@10
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5419 //Texture *v23; // edx@16
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5420 //char *v24; // ecx@16
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5421 //char *v25; // eax@16
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5422 //double v26; // st6@17
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5423 //int v27; // esi@17
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5424 //double v28; // st6@17
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5425 //unsigned int v33; // ecx@18
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5426 //char *v34; // eax@19
0
Ritor1
parents:
diff changeset
5427 //Texture *v45; // edx@23
Ritor1
parents:
diff changeset
5428 //char *v46; // ecx@23
Ritor1
parents:
diff changeset
5429 //char *v47; // eax@23
Ritor1
parents:
diff changeset
5430 //double v48; // st6@24
Ritor1
parents:
diff changeset
5431 //int v49; // esi@24
Ritor1
parents:
diff changeset
5432 //double v50; // st6@24
Ritor1
parents:
diff changeset
5433 const char *v53; // [sp-Ch] [bp-20h]@21
Ritor1
parents:
diff changeset
5434 //int v54; // [sp-8h] [bp-1Ch]@21
Ritor1
parents:
diff changeset
5435 //unsigned int v55; // [sp-4h] [bp-18h]@21
Ritor1
parents:
diff changeset
5436 const char *v56; // [sp+0h] [bp-14h]@0
Ritor1
parents:
diff changeset
5437 int v57; // [sp+4h] [bp-10h]@0
Ritor1
parents:
diff changeset
5438 unsigned int v58; // [sp+8h] [bp-Ch]@0
Ritor1
parents:
diff changeset
5439 //LightmapBuilder *v59; // [sp+Ch] [bp-8h]@3
Ritor1
parents:
diff changeset
5440 //int a3a; // [sp+10h] [bp-4h]@4
Ritor1
parents:
diff changeset
5441
Ritor1
parents:
diff changeset
5442 //v8 = this;
Ritor1
parents:
diff changeset
5443 if (!uNumD3DSceneBegins || uNumVertices < 3)
Ritor1
parents:
diff changeset
5444 return;
Ritor1
parents:
diff changeset
5445
Ritor1
parents:
diff changeset
5446 //auto a3 = pFace;
Ritor1
parents:
diff changeset
5447 //auto a6 = uPackedID;
Ritor1
parents:
diff changeset
5448 //v59 = pGame->pLightmapBuilder;
Ritor1
parents:
diff changeset
5449 //v9 = v59->std__vector_000004_size;
Ritor1
parents:
diff changeset
5450
Ritor1
parents:
diff changeset
5451 auto uCorrectedColor = uColor;
Ritor1
parents:
diff changeset
5452 if (pGame->pLightmapBuilder->std__vector_000004_size)
Ritor1
parents:
diff changeset
5453 uCorrectedColor = 0xFFFFFFFF;
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
5454 pGame->AlterGamma_BLV(pFace, &uCorrectedColor);
0
Ritor1
parents:
diff changeset
5455
792
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5456
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5457 if (pFace->uAttributes & FACE_OUTLINED)
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5458 {
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5459 int color;
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5460 if (GetTickCount() % 300 >= 150)
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5461 uColor = uCorrectedColor = 0xFF20FF20;
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5462 else uColor = uCorrectedColor = 0xFF109010;
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5463 }
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5464
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
5465 if (byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01)
0
Ritor1
parents:
diff changeset
5466 {
Ritor1
parents:
diff changeset
5467 __debugbreak();
Ritor1
parents:
diff changeset
5468 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5469 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
1072
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5470 for (uint i = 0; i < uNumVertices; ++i)
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5471 {
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5472 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5473 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5474 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894);
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5475 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5476 d3d_vertex_buffer[i].diffuse = uCorrectedColor;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5477 d3d_vertex_buffer[i].specular = 0;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5478 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5479 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5480 }
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5481
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5482 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
5483 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
Ritor1
parents:
diff changeset
5484 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(
Ritor1
parents:
diff changeset
5485 D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
5486 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
5487 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
5488 uNumVertices,
Ritor1
parents:
diff changeset
5489 28));
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
5490 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/);
0
Ritor1
parents:
diff changeset
5491 }
Ritor1
parents:
diff changeset
5492 else
Ritor1
parents:
diff changeset
5493 {
Ritor1
parents:
diff changeset
5494 if (!pGame->pLightmapBuilder->std__vector_000004_size ||
Ritor1
parents:
diff changeset
5495 byte_4D864C && pGame->uFlags & 2)
Ritor1
parents:
diff changeset
5496 {
Ritor1
parents:
diff changeset
5497 for (uint i = 0; i < uNumVertices; ++i)
Ritor1
parents:
diff changeset
5498 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5499 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5500 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5501 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5502 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5503 d3d_vertex_buffer[i].diffuse = uCorrectedColor;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5504 d3d_vertex_buffer[i].specular = 0;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5505 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5506 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5507 }
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5508
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5509 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
5510 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex));
Ritor1
parents:
diff changeset
5511 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
5512 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
5513 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
5514 uNumVertices,
Ritor1
parents:
diff changeset
5515 28));
Ritor1
parents:
diff changeset
5516 }
Ritor1
parents:
diff changeset
5517 else
Ritor1
parents:
diff changeset
5518 {
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5519 for (uint i = 0; i < uNumVertices; ++i)
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5520 {
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5521 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5522 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5523 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894);
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5524 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5525 d3d_vertex_buffer[i].diffuse = uColor;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5526 d3d_vertex_buffer[i].specular = 0;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5527 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5528 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5529 }
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5530 //__debugbreak();
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5531 //if ( (signed int)uNumVertices > 0 )
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5532 //{
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5533 //v23 = pTex;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5534 //v24 = (char *)&array_507D30[0].vWorldViewPosition;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5535 //v25 = (char *)&d3d_vertex_buffer[0].pos.y;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5536 //pTex = (Texture *)uNumVertices;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5537 //uint v18;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5538 //do
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5539 //{
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5540 //v26 = *(float *)v24 * 0.061758894;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5541 //v27 = *((int *)v24 + 3);
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5542 //*((int *)v25 + 4) = 0;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5543 //*((int *)v25 - 1) = v27;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5544 //*(int *)v25 = *((int *)v24 + 4);
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5545 //*((int *)v25 + 3) = uColor;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5546 //v25 += 32;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5547 //*((float *)v25 - 7) = 1.0 - 1.0 / v26;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5548 //v28 = 1.0 / *(float *)v24;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5549 //v24 += 48;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5550 //v18 = pTex == (Texture *)1;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5551 //pTex = (Texture *)((char *)pTex - 1);
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5552 //*((float *)v25 - 6) = v28;
0
Ritor1
parents:
diff changeset
5553 //a3 = (BLVFace *)v23->uTextureWidth;
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5554 //*((float *)v25 - 3) = *((float *)v24 - 6) / (double)(signed int)v23->uTextureWidth;
0
Ritor1
parents:
diff changeset
5555 //a3 = (BLVFace *)v23->uTextureHeight;
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5556 //*((float *)v25 - 2) = *((float *)v24 - 5) / (double)(signed int)v23->uTextureHeight;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5557 //}
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5558 //while ( !v18 );
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5559 //}
0
Ritor1
parents:
diff changeset
5560 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5561 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
5562 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5563 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
5564 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
5565 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
5566 uNumVertices,
Ritor1
parents:
diff changeset
5567 28));
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5568
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5569 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
5570 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/);
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5571
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5572 for (uint i = 0; i < uNumVertices; ++i)
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5573 d3d_vertex_buffer[i].diffuse = uCorrectedColor;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5574 /*v33 = uNumVertices;
0
Ritor1
parents:
diff changeset
5575 if ( (signed int)uNumVertices > 0 )
Ritor1
parents:
diff changeset
5576 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5577 v34 = (char *)&d3d_vertex_buffer[0].diffuse;
0
Ritor1
parents:
diff changeset
5578 do
Ritor1
parents:
diff changeset
5579 {
Ritor1
parents:
diff changeset
5580 *(int *)v34 = uCorrectedColor;
Ritor1
parents:
diff changeset
5581 v34 += 32;
Ritor1
parents:
diff changeset
5582 --v33;
Ritor1
parents:
diff changeset
5583 }
Ritor1
parents:
diff changeset
5584 while ( v33 );
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5585 }*/
0
Ritor1
parents:
diff changeset
5586 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5587 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5588 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5589 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5590 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5591 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5592 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
5593 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
5594 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
5595 uNumVertices,
Ritor1
parents:
diff changeset
5596 28));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5597 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5598 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5599 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
0
Ritor1
parents:
diff changeset
5600 }
Ritor1
parents:
diff changeset
5601 }
Ritor1
parents:
diff changeset
5602 }
Ritor1
parents:
diff changeset
5603 // 4D864C: using guessed type char byte_4D864C;
Ritor1
parents:
diff changeset
5604
Ritor1
parents:
diff changeset
5605 //----- (004A43B1) --------------------------------------------------------
717
Ritor1
parents: 688
diff changeset
5606 void Render::DrawBillboard_Indoor(RenderBillboardTransform_local0 *pSoftBillboard, Sprite *pSprite, int dimming_level)
Ritor1
parents: 688
diff changeset
5607 {
Ritor1
parents: 688
diff changeset
5608 //RenderBillboardTransform_local0 *v4; // ebx@2
Ritor1
parents: 688
diff changeset
5609 //double v5; // st7@2
Ritor1
parents: 688
diff changeset
5610 //float v6; // ST08_4@2
0
Ritor1
parents:
diff changeset
5611 unsigned int v7; // eax@2
717
Ritor1
parents: 688
diff changeset
5612 //int v8; // ecx@2
Ritor1
parents: 688
diff changeset
5613 //unsigned int v9; // esi@2
Ritor1
parents: 688
diff changeset
5614 //Sprite *v10; // edi@5
0
Ritor1
parents:
diff changeset
5615 signed int v11; // eax@9
Ritor1
parents:
diff changeset
5616 signed int v12; // eax@9
717
Ritor1
parents: 688
diff changeset
5617 //double v13; // st7@12
Ritor1
parents: 688
diff changeset
5618 //double v14; // st6@12
0
Ritor1
parents:
diff changeset
5619 double v15; // st5@12
Ritor1
parents:
diff changeset
5620 double v16; // st4@12
Ritor1
parents:
diff changeset
5621 double v17; // st3@12
Ritor1
parents:
diff changeset
5622 double v18; // st2@12
Ritor1
parents:
diff changeset
5623 int v19; // ecx@14
Ritor1
parents:
diff changeset
5624 double v20; // st3@14
Ritor1
parents:
diff changeset
5625 int v21; // ecx@16
Ritor1
parents:
diff changeset
5626 double v22; // st3@16
717
Ritor1
parents: 688
diff changeset
5627 //IDirect3DTexture2 *v23; // eax@18
Ritor1
parents: 688
diff changeset
5628 //signed int v24; // [sp+18h] [bp-18h]@5
Ritor1
parents: 688
diff changeset
5629 //signed int v25; // [sp+1Ch] [bp-14h]@5
Ritor1
parents: 688
diff changeset
5630 //Render *v26; // [sp+20h] [bp-10h]@1
0
Ritor1
parents:
diff changeset
5631 float v27; // [sp+24h] [bp-Ch]@5
Ritor1
parents:
diff changeset
5632 int v28; // [sp+28h] [bp-8h]@2
Ritor1
parents:
diff changeset
5633 float v29; // [sp+2Ch] [bp-4h]@5
717
Ritor1
parents: 688
diff changeset
5634 //float pSoftBillboarda; // [sp+38h] [bp+8h]@2
0
Ritor1
parents:
diff changeset
5635 float v31; // [sp+3Ch] [bp+Ch]@5
717
Ritor1
parents: 688
diff changeset
5636 //float v32; // [sp+3Ch] [bp+Ch]@12
0
Ritor1
parents:
diff changeset
5637 float a1; // [sp+40h] [bp+10h]@5
Ritor1
parents:
diff changeset
5638
717
Ritor1
parents: 688
diff changeset
5639 //v26 = this;
0
Ritor1
parents:
diff changeset
5640 if ( this->uNumD3DSceneBegins )
Ritor1
parents:
diff changeset
5641 {
717
Ritor1
parents: 688
diff changeset
5642 //v4 = pSoftBillboard;
Ritor1
parents: 688
diff changeset
5643 //v5 = (double)pSoftBillboard->zbuffer_depth;
Ritor1
parents: 688
diff changeset
5644 //pSoftBillboarda = pSoftBillboard->zbuffer_depth;
Ritor1
parents: 688
diff changeset
5645 //v6 = pSoftBillboard->zbuffer_depth;
Ritor1
parents: 688
diff changeset
5646 v7 = Billboard_ProbablyAddToListAndSortByZOrder(pSoftBillboard->zbuffer_depth);
Ritor1
parents: 688
diff changeset
5647 //v8 = dimming_level;
Ritor1
parents: 688
diff changeset
5648 //v9 = v7;
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
5649 v28 = dimming_level & 0xFF000000;
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
5650 if ( dimming_level & 0xFF000000 )
717
Ritor1
parents: 688
diff changeset
5651 pBillboardRenderListD3D[v7].uOpacity = RenderBillboardD3D::Opaque_3;
0
Ritor1
parents:
diff changeset
5652 else
717
Ritor1
parents: 688
diff changeset
5653 pBillboardRenderListD3D[v7].uOpacity = RenderBillboardD3D::Transparent;
Ritor1
parents: 688
diff changeset
5654 //v10 = a3;
Ritor1
parents: 688
diff changeset
5655 pBillboardRenderListD3D[v7].field_90 = pSoftBillboard->field_44;
Ritor1
parents: 688
diff changeset
5656 pBillboardRenderListD3D[v7].sZValue = pSoftBillboard->sZValue;
Ritor1
parents: 688
diff changeset
5657 pBillboardRenderListD3D[v7].uParentBillboardID = pSoftBillboard->uParentBillboardID;
Ritor1
parents: 688
diff changeset
5658 //v25 = pSoftBillboard->uScreenSpaceX;
Ritor1
parents: 688
diff changeset
5659 //v24 = pSoftBillboard->uScreenSpaceY;
Ritor1
parents: 688
diff changeset
5660 a1 = (pSoftBillboard->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_x_scaler_packedfloat);
Ritor1
parents: 688
diff changeset
5661 v29 = (pSoftBillboard->_screenspace_y_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_y_scaler_packedfloat);
Ritor1
parents: 688
diff changeset
5662 v31 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX);
Ritor1
parents: 688
diff changeset
5663 v27 = (double)(pSprite->uBufferHeight - pSprite->uAreaY);
Ritor1
parents: 688
diff changeset
5664 if ( pSoftBillboard->uFlags & 4 )
0
Ritor1
parents:
diff changeset
5665 v31 = v31 * -1.0;
717
Ritor1
parents: 688
diff changeset
5666 if ( pSoftBillboard->uTintColor && this->bTinting )
Ritor1
parents: 688
diff changeset
5667 {
Ritor1
parents: 688
diff changeset
5668 v11 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0);
737
225d92620998 004A19D8 refactored
Nomad
parents: 734
diff changeset
5669 v12 = BlendColors(pSoftBillboard->uTintColor, v11);
0
Ritor1
parents:
diff changeset
5670 if ( v28 )
Ritor1
parents:
diff changeset
5671 v12 = (unsigned int)((char *)&array_77EC08[1852].pEdgeList1[17] + 3) & ((unsigned int)v12 >> 1);
Ritor1
parents:
diff changeset
5672 }
Ritor1
parents:
diff changeset
5673 else
Ritor1
parents:
diff changeset
5674 {
717
Ritor1
parents: 688
diff changeset
5675 v12 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0);
Ritor1
parents: 688
diff changeset
5676 }
Ritor1
parents: 688
diff changeset
5677 //v13 = (double)v25;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5678 pBillboardRenderListD3D[v7].pQuads[0].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5679 pBillboardRenderListD3D[v7].pQuads[0].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5680 pBillboardRenderListD3D[v7].pQuads[0].pos.x = pSoftBillboard->uScreenSpaceX - v31 * a1;
717
Ritor1
parents: 688
diff changeset
5681 //v14 = (double)v24;
Ritor1
parents: 688
diff changeset
5682 //v32 = v14;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5683 pBillboardRenderListD3D[v7].pQuads[0].pos.y = pSoftBillboard->uScreenSpaceY - v27 * v29;
717
Ritor1
parents: 688
diff changeset
5684 v15 = 1.0 - 1.0 / (pSoftBillboard->zbuffer_depth * 0.061758894);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5685 pBillboardRenderListD3D[v7].pQuads[0].pos.z = v15;
717
Ritor1
parents: 688
diff changeset
5686 v16 = 1.0 / pSoftBillboard->zbuffer_depth;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5687 pBillboardRenderListD3D[v7].pQuads[0].rhw = 1.0 / pSoftBillboard->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5688 pBillboardRenderListD3D[v7].pQuads[0].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5689 pBillboardRenderListD3D[v7].pQuads[0].texcoord.y = 0.0;
717
Ritor1
parents: 688
diff changeset
5690 v17 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX);
Ritor1
parents: 688
diff changeset
5691 v18 = (double)(pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight);
Ritor1
parents: 688
diff changeset
5692 if ( pSoftBillboard->uFlags & 4 )
0
Ritor1
parents:
diff changeset
5693 v17 = v17 * -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5694 pBillboardRenderListD3D[v7].pQuads[1].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5695 pBillboardRenderListD3D[v7].pQuads[1].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5696 pBillboardRenderListD3D[v7].pQuads[1].pos.x = pSoftBillboard->uScreenSpaceX - v17 * a1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5697 pBillboardRenderListD3D[v7].pQuads[1].pos.y = pSoftBillboard->uScreenSpaceY - v18 * v29;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5698 pBillboardRenderListD3D[v7].pQuads[1].pos.z = v15;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5699 pBillboardRenderListD3D[v7].pQuads[1].rhw = v16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5700 pBillboardRenderListD3D[v7].pQuads[1].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5701 pBillboardRenderListD3D[v7].pQuads[1].texcoord.y = 1.0;
717
Ritor1
parents: 688
diff changeset
5702 v19 = pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight;
Ritor1
parents: 688
diff changeset
5703 v20 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth);
Ritor1
parents: 688
diff changeset
5704 if ( pSoftBillboard->uFlags & 4 )
0
Ritor1
parents:
diff changeset
5705 v20 = v20 * -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5706 pBillboardRenderListD3D[v7].pQuads[2].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5707 pBillboardRenderListD3D[v7].pQuads[2].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5708 pBillboardRenderListD3D[v7].pQuads[2].pos.x = v20 * a1 + pSoftBillboard->uScreenSpaceX;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5709 pBillboardRenderListD3D[v7].pQuads[2].pos.y = pSoftBillboard->uScreenSpaceY - (double)v19 * v29;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5710 pBillboardRenderListD3D[v7].pQuads[2].pos.z = v15;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5711 pBillboardRenderListD3D[v7].pQuads[2].rhw = v16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5712 pBillboardRenderListD3D[v7].pQuads[2].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5713 pBillboardRenderListD3D[v7].pQuads[2].texcoord.y = 1.0;
717
Ritor1
parents: 688
diff changeset
5714 v21 = pSprite->uBufferHeight - pSprite->uAreaY;
Ritor1
parents: 688
diff changeset
5715 v22 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth);
Ritor1
parents: 688
diff changeset
5716 if ( pSoftBillboard->uFlags & 4 )
0
Ritor1
parents:
diff changeset
5717 v22 = v22 * -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5718 pBillboardRenderListD3D[v7].pQuads[3].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5719 pBillboardRenderListD3D[v7].pQuads[3].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5720 pBillboardRenderListD3D[v7].pQuads[3].pos.x = v22 * a1 + pSoftBillboard->uScreenSpaceX;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5721 pBillboardRenderListD3D[v7].pQuads[3].pos.y = pSoftBillboard->uScreenSpaceY - (double)v21 * v29;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5722 pBillboardRenderListD3D[v7].pQuads[3].pos.z = v15;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5723 pBillboardRenderListD3D[v7].pQuads[3].rhw = v16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5724 pBillboardRenderListD3D[v7].pQuads[3].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5725 pBillboardRenderListD3D[v7].pQuads[3].texcoord.y = 0.0;
717
Ritor1
parents: 688
diff changeset
5726 //v23 = pSprite->pTexture;
Ritor1
parents: 688
diff changeset
5727 pBillboardRenderListD3D[v7].uNumVertices = 4;
Ritor1
parents: 688
diff changeset
5728 pBillboardRenderListD3D[v7].z_order = pSoftBillboard->zbuffer_depth;
Ritor1
parents: 688
diff changeset
5729 pBillboardRenderListD3D[v7].pTexture = pSprite->pTexture;
0
Ritor1
parents:
diff changeset
5730 }
Ritor1
parents:
diff changeset
5731 }
Ritor1
parents:
diff changeset
5732
Ritor1
parents:
diff changeset
5733 //----- (004A354F) --------------------------------------------------------
Ritor1
parents:
diff changeset
5734 void Render::MakeParticleBillboardAndPush_BLV(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle)
Ritor1
parents:
diff changeset
5735 {
743
Ritor1
parents: 741
diff changeset
5736 //double v5; // st7@3
Ritor1
parents: 741
diff changeset
5737 //float v6; // ST20_4@3
Ritor1
parents: 741
diff changeset
5738 //float v7; // ST00_4@3
0
Ritor1
parents:
diff changeset
5739 unsigned int v8; // esi@3
743
Ritor1
parents: 741
diff changeset
5740 //int v9; // eax@3
Ritor1
parents: 741
diff changeset
5741 //int v10; // ebx@3
0
Ritor1
parents:
diff changeset
5742 float v11; // ST28_4@3
743
Ritor1
parents: 741
diff changeset
5743 //double v12; // st7@3
Ritor1
parents: 741
diff changeset
5744 //float v13; // ST24_4@3
Ritor1
parents: 741
diff changeset
5745 //double v14; // st6@3
Ritor1
parents: 741
diff changeset
5746 //float v15; // ST1C_4@3
0
Ritor1
parents:
diff changeset
5747 float v16; // ST2C_4@3
Ritor1
parents:
diff changeset
5748 float v17; // ST30_4@3
Ritor1
parents:
diff changeset
5749 signed int v18; // ST18_4@3
Ritor1
parents:
diff changeset
5750 signed int v19; // ST14_4@3
Ritor1
parents:
diff changeset
5751 signed int v20; // ST10_4@3
Ritor1
parents:
diff changeset
5752 signed int v21; // eax@3
Ritor1
parents:
diff changeset
5753 double v22; // st6@3
Ritor1
parents:
diff changeset
5754 float v23; // ST2C_4@3
Ritor1
parents:
diff changeset
5755 float v24; // ST30_4@3
Ritor1
parents:
diff changeset
5756 signed int v25; // ST10_4@3
Ritor1
parents:
diff changeset
5757 signed int v26; // ST14_4@3
Ritor1
parents:
diff changeset
5758 signed int v27; // ST18_4@3
Ritor1
parents:
diff changeset
5759 signed int v28; // eax@3
Ritor1
parents:
diff changeset
5760 double v29; // st6@3
Ritor1
parents:
diff changeset
5761 float v30; // ecx@3
Ritor1
parents:
diff changeset
5762 float v31; // ST2C_4@3
Ritor1
parents:
diff changeset
5763 float v32; // ST30_4@3
Ritor1
parents:
diff changeset
5764 signed int v33; // ST10_4@3
Ritor1
parents:
diff changeset
5765 signed int v34; // ST14_4@3
Ritor1
parents:
diff changeset
5766 signed int v35; // ST18_4@3
Ritor1
parents:
diff changeset
5767 signed int v36; // eax@3
Ritor1
parents:
diff changeset
5768 float v37; // ecx@3
Ritor1
parents:
diff changeset
5769 double v38; // st6@3
Ritor1
parents:
diff changeset
5770 float v39; // ST2C_4@3
Ritor1
parents:
diff changeset
5771 float v40; // ST30_4@3
Ritor1
parents:
diff changeset
5772 signed int v41; // ST10_4@3
Ritor1
parents:
diff changeset
5773 signed int v42; // ST14_4@3
Ritor1
parents:
diff changeset
5774 signed int v43; // ST18_4@3
Ritor1
parents:
diff changeset
5775 signed int v44; // eax@3
Ritor1
parents:
diff changeset
5776 double v45; // st6@3
Ritor1
parents:
diff changeset
5777 float v46; // eax@3
Ritor1
parents:
diff changeset
5778
Ritor1
parents:
diff changeset
5779 if ( this->uNumD3DSceneBegins )
Ritor1
parents:
diff changeset
5780 {
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5781 if (a2->zbuffer_depth)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5782 {
743
Ritor1
parents: 741
diff changeset
5783 //v5 = (double)a2->zbuffer_depth;
Ritor1
parents: 741
diff changeset
5784 //v6 = v5;
Ritor1
parents: 741
diff changeset
5785 //v7 = v5;
Ritor1
parents: 741
diff changeset
5786 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth);
0
Ritor1
parents:
diff changeset
5787 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Opaque_1;
Ritor1
parents:
diff changeset
5788 pBillboardRenderListD3D[v8].field_90 = a2->field_44;
Ritor1
parents:
diff changeset
5789 pBillboardRenderListD3D[v8].sZValue = a2->sZValue;
Ritor1
parents:
diff changeset
5790 pBillboardRenderListD3D[v8].uParentBillboardID = a2->uParentBillboardID;
743
Ritor1
parents: 741
diff changeset
5791 //v9 = a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5792 //v10 = a2->uScreenSpaceY;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5793 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat);
743
Ritor1
parents: 741
diff changeset
5794 //v12 = (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5795 //v13 = v12;
Ritor1
parents: 741
diff changeset
5796 //v14 = (double)(a2->uScreenSpaceY - 12);
Ritor1
parents: 741
diff changeset
5797 //v15 = v14;
Ritor1
parents: 741
diff changeset
5798 v16 = (double)( a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5799 v17 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5800 v18 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5801 v19 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5802 v20 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5803 v21 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5804 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022
0
Ritor1
parents:
diff changeset
5805 + (double)(v18 >> 16))
Ritor1
parents:
diff changeset
5806 * v16
Ritor1
parents:
diff changeset
5807 - ((double)(unsigned __int16)v19 * 0.000015259022
Ritor1
parents:
diff changeset
5808 + (double)(v19 >> 16))
Ritor1
parents:
diff changeset
5809 * v17)
743
Ritor1
parents: 741
diff changeset
5810 * v11 + (double) a2->uScreenSpaceX;
0
Ritor1
parents:
diff changeset
5811 v22 = (((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v17
Ritor1
parents:
diff changeset
5812 + ((double)(unsigned __int16)v20 * 0.000015259022 + (double)(v20 >> 16)) * v16
Ritor1
parents:
diff changeset
5813 - 12.0)
Ritor1
parents:
diff changeset
5814 * v11
Ritor1
parents:
diff changeset
5815 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5816 pBillboardRenderListD3D[v8].pQuads[0].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5817 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5818 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v22;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5819 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 0.061758894);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5820 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5821 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5822 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0;
743
Ritor1
parents: 741
diff changeset
5823 v31 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5824 v32 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5825 v25 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5826 v26 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5827 v27 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5828 v28 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5829 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v25 * 0.000015259022
0
Ritor1
parents:
diff changeset
5830 + (double)(v25 >> 16))
740
Ritor1
parents: 728
diff changeset
5831 * v31
0
Ritor1
parents:
diff changeset
5832 - ((double)(unsigned __int16)v26 * 0.000015259022
Ritor1
parents:
diff changeset
5833 + (double)(v26 >> 16))
740
Ritor1
parents: 728
diff changeset
5834 * v32)
743
Ritor1
parents: 741
diff changeset
5835 * v11 + (double) a2->uScreenSpaceX;
740
Ritor1
parents: 728
diff changeset
5836 v29 = (((double)(unsigned __int16)v28 * 0.000015259022 + (double)(v28 >> 16)) * v32
Ritor1
parents: 728
diff changeset
5837 + ((double)(unsigned __int16)v27 * 0.000015259022 + (double)(v27 >> 16)) * v31
0
Ritor1
parents:
diff changeset
5838 - 12.0)
Ritor1
parents:
diff changeset
5839 * v11
Ritor1
parents:
diff changeset
5840 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5841 pBillboardRenderListD3D[v8].pQuads[1].pos.z = pRenderer->pBillboardRenderListD3D[v8].pQuads[0].pos.z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5842 v30 = pBillboardRenderListD3D[v8].pQuads[0].rhw;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5843 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v29;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5844 pBillboardRenderListD3D[v8].pQuads[1].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5845 pBillboardRenderListD3D[v8].pQuads[1].rhw = v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5846 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5847 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5848 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0;
743
Ritor1
parents: 741
diff changeset
5849 v23 = (double)(a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5850 v24 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5851 v33 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5852 v34 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5853 v35 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5854 v36 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5855 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v33 * 0.000015259022
0
Ritor1
parents:
diff changeset
5856 + (double)(v33 >> 16))
740
Ritor1
parents: 728
diff changeset
5857 * v23
0
Ritor1
parents:
diff changeset
5858 - ((double)(unsigned __int16)v34 * 0.000015259022
Ritor1
parents:
diff changeset
5859 + (double)(v34 >> 16))
740
Ritor1
parents: 728
diff changeset
5860 * v24)
743
Ritor1
parents: 741
diff changeset
5861 * v11 + (double) a2->uScreenSpaceX;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5862 v37 = pBillboardRenderListD3D[v8].pQuads[0].pos.z;
740
Ritor1
parents: 728
diff changeset
5863 v38 = (((double)(unsigned __int16)v36 * 0.000015259022 + (double)(v36 >> 16)) * v24
Ritor1
parents: 728
diff changeset
5864 + ((double)(unsigned __int16)v35 * 0.000015259022 + (double)(v35 >> 16)) * v23
0
Ritor1
parents:
diff changeset
5865 - 12.0)
Ritor1
parents:
diff changeset
5866 * v11
Ritor1
parents:
diff changeset
5867 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5868 pBillboardRenderListD3D[v8].pQuads[2].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5869 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v37;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5870 pBillboardRenderListD3D[v8].pQuads[2].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5871 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5872 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v38;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5873 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5874 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0;
743
Ritor1
parents: 741
diff changeset
5875 v39 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5876 v40 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5877 v41 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5878 v42 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5879 v43 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5880 v44 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5881 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v41 * 0.000015259022
0
Ritor1
parents:
diff changeset
5882 + (double)(v41 >> 16))
Ritor1
parents:
diff changeset
5883 * v39
Ritor1
parents:
diff changeset
5884 - ((double)(unsigned __int16)v42 * 0.000015259022
Ritor1
parents:
diff changeset
5885 + (double)(v42 >> 16))
Ritor1
parents:
diff changeset
5886 * v40)
743
Ritor1
parents: 741
diff changeset
5887 * v11 + (double) a2->uScreenSpaceX;
0
Ritor1
parents:
diff changeset
5888 v45 = (((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40
Ritor1
parents:
diff changeset
5889 + ((double)(unsigned __int16)v43 * 0.000015259022 + (double)(v43 >> 16)) * v39
Ritor1
parents:
diff changeset
5890 - 12.0)
Ritor1
parents:
diff changeset
5891 * v11
Ritor1
parents:
diff changeset
5892 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5893 v46 = pBillboardRenderListD3D[v8].pQuads[0].pos.z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5894 pBillboardRenderListD3D[v8].pQuads[3].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5895 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v46;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5896 pBillboardRenderListD3D[v8].pQuads[3].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5897 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse;
0
Ritor1
parents:
diff changeset
5898 pBillboardRenderListD3D[v8].pTexture = a3;
743
Ritor1
parents: 741
diff changeset
5899 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth;
0
Ritor1
parents:
diff changeset
5900 pBillboardRenderListD3D[v8].uNumVertices = 4;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5901 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v45;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5902 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5903 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0;
0
Ritor1
parents:
diff changeset
5904 }
Ritor1
parents:
diff changeset
5905 }
Ritor1
parents:
diff changeset
5906 }
Ritor1
parents:
diff changeset
5907
Ritor1
parents:
diff changeset
5908 //----- (004A3AD9) --------------------------------------------------------
Ritor1
parents:
diff changeset
5909 void Render::MakeParticleBillboardAndPush_ODM(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle)
Ritor1
parents:
diff changeset
5910 {
Ritor1
parents:
diff changeset
5911 double v5; // st7@2
Ritor1
parents:
diff changeset
5912 float v6; // ST28_4@2
Ritor1
parents:
diff changeset
5913 float v7; // ST00_4@2
Ritor1
parents:
diff changeset
5914 unsigned int v8; // esi@2
Ritor1
parents:
diff changeset
5915 int v9; // eax@2
Ritor1
parents:
diff changeset
5916 int v10; // ebx@2
Ritor1
parents:
diff changeset
5917 float v11; // ST34_4@2
Ritor1
parents:
diff changeset
5918 double v12; // st7@2
Ritor1
parents:
diff changeset
5919 float v13; // ST2C_4@2
Ritor1
parents:
diff changeset
5920 double v14; // st6@2
Ritor1
parents:
diff changeset
5921 float v15; // ST24_4@2
Ritor1
parents:
diff changeset
5922 float v16; // ST38_4@2
Ritor1
parents:
diff changeset
5923 float v17; // ST3C_4@2
Ritor1
parents:
diff changeset
5924 signed int v18; // ST1C_4@2
Ritor1
parents:
diff changeset
5925 int v19; // ST30_4@2
Ritor1
parents:
diff changeset
5926 signed int v20; // ST20_4@2
Ritor1
parents:
diff changeset
5927 signed int v21; // ST18_4@2
Ritor1
parents:
diff changeset
5928 signed int v22; // eax@2
Ritor1
parents:
diff changeset
5929 double v23; // st6@2
Ritor1
parents:
diff changeset
5930 float v24; // ST20_4@2
Ritor1
parents:
diff changeset
5931 float v25; // ST1C_4@2
Ritor1
parents:
diff changeset
5932 float v26; // ST38_4@2
Ritor1
parents:
diff changeset
5933 float v27; // ST3C_4@2
Ritor1
parents:
diff changeset
5934 signed int v28; // ST18_4@2
Ritor1
parents:
diff changeset
5935 signed int v29; // ST14_4@2
Ritor1
parents:
diff changeset
5936 signed int v30; // ST10_4@2
Ritor1
parents:
diff changeset
5937 signed int v31; // eax@2
Ritor1
parents:
diff changeset
5938 double v32; // st6@2
Ritor1
parents:
diff changeset
5939 float v33; // ST38_4@2
Ritor1
parents:
diff changeset
5940 float v34; // ST3C_4@2
Ritor1
parents:
diff changeset
5941 signed int v35; // ST10_4@2
Ritor1
parents:
diff changeset
5942 signed int v36; // ST14_4@2
Ritor1
parents:
diff changeset
5943 signed int v37; // ST18_4@2
Ritor1
parents:
diff changeset
5944 signed int v38; // eax@2
Ritor1
parents:
diff changeset
5945 double v39; // st6@2
Ritor1
parents:
diff changeset
5946 float v40; // ST38_4@2
Ritor1
parents:
diff changeset
5947 float v41; // ST3C_4@2
Ritor1
parents:
diff changeset
5948 signed int v42; // ST10_4@2
Ritor1
parents:
diff changeset
5949 signed int v43; // ST14_4@2
Ritor1
parents:
diff changeset
5950 signed int v44; // ST18_4@2
Ritor1
parents:
diff changeset
5951 signed int v45; // eax@2
Ritor1
parents:
diff changeset
5952 double v46; // st6@2
Ritor1
parents:
diff changeset
5953
Ritor1
parents:
diff changeset
5954 if ( this->uNumD3DSceneBegins )
Ritor1
parents:
diff changeset
5955 {
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5956 v5 = (double)a2->zbuffer_depth;
0
Ritor1
parents:
diff changeset
5957 v6 = v5;
Ritor1
parents:
diff changeset
5958 v7 = v5;
Ritor1
parents:
diff changeset
5959 v8 = Billboard_ProbablyAddToListAndSortByZOrder(LODWORD(v7));
Ritor1
parents:
diff changeset
5960 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Opaque_1;
Ritor1
parents:
diff changeset
5961 pBillboardRenderListD3D[v8].field_90 = a2->field_44;
Ritor1
parents:
diff changeset
5962 pBillboardRenderListD3D[v8].sZValue = a2->sZValue;
Ritor1
parents:
diff changeset
5963 pBillboardRenderListD3D[v8].uParentBillboardID = a2->uParentBillboardID;
Ritor1
parents:
diff changeset
5964 v9 = a2->uScreenSpaceX;
Ritor1
parents:
diff changeset
5965 v10 = a2->uScreenSpaceY;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5966 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat);
0
Ritor1
parents:
diff changeset
5967 v12 = (double)v9;
Ritor1
parents:
diff changeset
5968 v13 = v12;
Ritor1
parents:
diff changeset
5969 v14 = (double)(v10 - 12);
Ritor1
parents:
diff changeset
5970 v15 = v14;
Ritor1
parents:
diff changeset
5971 v16 = (double)(v9 - 12) - v12;
Ritor1
parents:
diff changeset
5972 v17 = (double)(v10 - 25) - v14;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5973 v18 = stru_5C6E00->Cos(angle);
0
Ritor1
parents:
diff changeset
5974 v19 = angle - stru_5C6E00->uIntegerHalfPi;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5975 v20 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5976 v21 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5977 v22 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5978 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022
0
Ritor1
parents:
diff changeset
5979 + (double)(v18 >> 16))
Ritor1
parents:
diff changeset
5980 * v16
Ritor1
parents:
diff changeset
5981 - ((double)(unsigned __int16)v20 * 0.000015259022
Ritor1
parents:
diff changeset
5982 + (double)(v20 >> 16))
Ritor1
parents:
diff changeset
5983 * v17)
Ritor1
parents:
diff changeset
5984 * v11 + v13;
Ritor1
parents:
diff changeset
5985 v23 = (((double)(unsigned __int16)v22 * 0.000015259022 + (double)(v22 >> 16)) * v17
Ritor1
parents:
diff changeset
5986 + ((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v16
Ritor1
parents:
diff changeset
5987 - 12.0)
Ritor1
parents:
diff changeset
5988 * v11
Ritor1
parents:
diff changeset
5989 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5990 pBillboardRenderListD3D[v8].pQuads[0].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5991 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5992 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v23;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
5993 v24 = 1.0 - 1.0 / (v6 * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5994 pBillboardRenderListD3D[v8].pQuads[0].pos.z = v24;
0
Ritor1
parents:
diff changeset
5995 v25 = 1.0 / v6;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5996 pBillboardRenderListD3D[v8].pQuads[0].rhw = v25;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5997 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5998 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0;
0
Ritor1
parents:
diff changeset
5999 v26 = (double)(a2->uScreenSpaceX - 12) - v13;
Ritor1
parents:
diff changeset
6000 v27 = (double)a2->uScreenSpaceY - v15;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6001 v28 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6002 v29 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6003 v30 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6004 v31 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6005 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v28 * 0.000015259022
0
Ritor1
parents:
diff changeset
6006 + (double)(v28 >> 16))
Ritor1
parents:
diff changeset
6007 * v26
Ritor1
parents:
diff changeset
6008 - ((double)(unsigned __int16)v29 * 0.000015259022
Ritor1
parents:
diff changeset
6009 + (double)(v29 >> 16))
Ritor1
parents:
diff changeset
6010 * v27)
Ritor1
parents:
diff changeset
6011 * v11 + v13;
Ritor1
parents:
diff changeset
6012 v32 = (((double)(unsigned __int16)v31 * 0.000015259022 + (double)(v31 >> 16)) * v27
Ritor1
parents:
diff changeset
6013 + ((double)(unsigned __int16)v30 * 0.000015259022 + (double)(v30 >> 16)) * v26
Ritor1
parents:
diff changeset
6014 - 12.0)
Ritor1
parents:
diff changeset
6015 * v11
Ritor1
parents:
diff changeset
6016 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6017 pBillboardRenderListD3D[v8].pQuads[1].pos.z = v24;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6018 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v32;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6019 pBillboardRenderListD3D[v8].pQuads[1].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6020 pBillboardRenderListD3D[v8].pQuads[1].rhw = v25;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6021 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6022 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6023 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0;
0
Ritor1
parents:
diff changeset
6024 v33 = (double)(a2->uScreenSpaceX + 12) - v13;
Ritor1
parents:
diff changeset
6025 v34 = (double)a2->uScreenSpaceY - v15;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6026 v35 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6027 v36 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6028 v37 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6029 v38 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6030 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v35 * 0.000015259022
0
Ritor1
parents:
diff changeset
6031 + (double)(v35 >> 16))
Ritor1
parents:
diff changeset
6032 * v33
Ritor1
parents:
diff changeset
6033 - ((double)(unsigned __int16)v36 * 0.000015259022
Ritor1
parents:
diff changeset
6034 + (double)(v36 >> 16))
Ritor1
parents:
diff changeset
6035 * v34)
Ritor1
parents:
diff changeset
6036 * v11 + v13;
Ritor1
parents:
diff changeset
6037 v39 = (((double)(unsigned __int16)v38 * 0.000015259022 + (double)(v38 >> 16)) * v34
Ritor1
parents:
diff changeset
6038 + ((double)(unsigned __int16)v37 * 0.000015259022 + (double)(v37 >> 16)) * v33
Ritor1
parents:
diff changeset
6039 - 12.0)
Ritor1
parents:
diff changeset
6040 * v11
Ritor1
parents:
diff changeset
6041 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6042 pBillboardRenderListD3D[v8].pQuads[2].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6043 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v24;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6044 pBillboardRenderListD3D[v8].pQuads[2].rhw = v25;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6045 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6046 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v39;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6047 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6048 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0;
0
Ritor1
parents:
diff changeset
6049 v40 = (double)(a2->uScreenSpaceX + 12) - v13;
Ritor1
parents:
diff changeset
6050 v41 = (double)(a2->uScreenSpaceY - 25) - v15;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6051 v42 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6052 v43 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6053 v44 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
6054 v45 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6055 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v42 * 0.000015259022
0
Ritor1
parents:
diff changeset
6056 + (double)(v42 >> 16))
Ritor1
parents:
diff changeset
6057 * v40
Ritor1
parents:
diff changeset
6058 - ((double)(unsigned __int16)v43 * 0.000015259022
Ritor1
parents:
diff changeset
6059 + (double)(v43 >> 16))
Ritor1
parents:
diff changeset
6060 * v41)
Ritor1
parents:
diff changeset
6061 * v11 + v13;
Ritor1
parents:
diff changeset
6062 v46 = (((double)(unsigned __int16)v45 * 0.000015259022 + (double)(v45 >> 16)) * v41
Ritor1
parents:
diff changeset
6063 + ((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40
Ritor1
parents:
diff changeset
6064 - 12.0)
Ritor1
parents:
diff changeset
6065 * v11
Ritor1
parents:
diff changeset
6066 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6067 pBillboardRenderListD3D[v8].pQuads[3].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6068 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v24;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6069 pBillboardRenderListD3D[v8].pQuads[3].rhw = v25;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6070 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse;
0
Ritor1
parents:
diff changeset
6071 pBillboardRenderListD3D[v8].pTexture = a3;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6072 pBillboardRenderListD3D[v8].z_order = v6;
0
Ritor1
parents:
diff changeset
6073 pBillboardRenderListD3D[v8].uNumVertices = 4;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6074 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v46;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6075 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6076 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0;
0
Ritor1
parents:
diff changeset
6077 }
Ritor1
parents:
diff changeset
6078 }
Ritor1
parents:
diff changeset
6079
Ritor1
parents:
diff changeset
6080 //----- (004A4023) --------------------------------------------------------
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
6081 void Render::TransformBillboard(RenderBillboardTransform_local0 *a2, Sprite *pSprite, int dimming_level, RenderBillboard *pBillboard)
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6082 {
0
Ritor1
parents:
diff changeset
6083 unsigned int v8; // esi@2
Ritor1
parents:
diff changeset
6084 double v14; // st6@14
Ritor1
parents:
diff changeset
6085 double v15; // st5@14
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6086 //unsigned int v16; // ecx@16
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6087 //double v17; // st7@16
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6088 //double v18; // st5@16
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6089 //double v19; // st4@16
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6090 //double v20; // st5@18
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6091 //double v21; // st4@18
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6092 //signed int v23; // [sp+18h] [bp-18h]@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6093 //signed int v24; // [sp+1Ch] [bp-14h]@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6094 //float v26; // [sp+20h] [bp-10h]@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6095 //float v27; // [sp+20h] [bp-10h]@12
0
Ritor1
parents:
diff changeset
6096 float v29; // [sp+28h] [bp-8h]@5
Ritor1
parents:
diff changeset
6097 float v30; // [sp+2Ch] [bp-4h]@5
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6098 //float pSpritea; // [sp+3Ch] [bp+Ch]@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6099
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6100 if (!uNumD3DSceneBegins)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6101 return;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6102
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6103 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6104
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6105 v30 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) / 65530.0 + HIWORD(a2->_screenspace_x_scaler_packedfloat);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6106 v29 = (a2->_screenspace_y_scaler_packedfloat & 0xFFFF) / 65530.0 + HIWORD(a2->_screenspace_y_scaler_packedfloat);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6107
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
6108 unsigned int diffuse = ::GetActorTintColor(dimming_level, 0, a2->zbuffer_depth, 0, pBillboard);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6109 if (a2->uTintColor & 0x00FFFFFF && bTinting)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6110 {
737
225d92620998 004A19D8 refactored
Nomad
parents: 734
diff changeset
6111 diffuse = BlendColors(a2->uTintColor, diffuse);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6112 if (a2->uTintColor & 0xFF000000)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6113 diffuse = 0x007F7F7F & ((unsigned int)diffuse >> 1);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6114 }
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6115
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6116 unsigned int specular = 0;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6117 if (bUsingSpecular)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6118 specular = sub_47C3D7_get_fog_related_stuff(0, 0, a2->zbuffer_depth);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6119
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6120 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6121 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6122 if (a2->uFlags & 4)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6123 v14 *= -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6124 pBillboardRenderListD3D[v8].pQuads[0].diffuse = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6125 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (double)a2->uScreenSpaceX - v14 * v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6126 pBillboardRenderListD3D[v8].pQuads[0].pos.y = (double)a2->uScreenSpaceY - v15 * v29;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6127 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6128 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6129 pBillboardRenderListD3D[v8].pQuads[0].specular = specular;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6130 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6131 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6132
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6133 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6134 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6135 if ( a2->uFlags & 4 )
0
Ritor1
parents:
diff changeset
6136 v14 = v14 * -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6137 pBillboardRenderListD3D[v8].pQuads[1].specular = specular;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6138 pBillboardRenderListD3D[v8].pQuads[1].diffuse = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6139 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (double)a2->uScreenSpaceX - v14 * v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6140 pBillboardRenderListD3D[v8].pQuads[1].pos.y = (double)a2->uScreenSpaceY - v15 * v29;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6141 pBillboardRenderListD3D[v8].pQuads[1].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6142 pBillboardRenderListD3D[v8].pQuads[1].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6143 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6144 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6145
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6146 v14 = (double)((int)pSprite->uAreaWidth + pSprite->uAreaX + pSprite->uBufferWidth / 2 - pSprite->uBufferWidth);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6147 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6148 if ( a2->uFlags & 4 )
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6149 v14 *= -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6150 pBillboardRenderListD3D[v8].pQuads[2].diffuse = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6151 pBillboardRenderListD3D[v8].pQuads[2].specular = specular;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6152 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (double)a2->uScreenSpaceX + v14 * v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6153 pBillboardRenderListD3D[v8].pQuads[2].pos.y = (double)a2->uScreenSpaceY - v15 * v29;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6154 pBillboardRenderListD3D[v8].pQuads[2].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6155 pBillboardRenderListD3D[v8].pQuads[2].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6156 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6157 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6158
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6159 v14 = (double)((int)pSprite->uAreaWidth + pSprite->uAreaX + pSprite->uBufferWidth / 2 - pSprite->uBufferWidth);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6160 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6161 if ( a2->uFlags & 4 )
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6162 v14 *= -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6163 pBillboardRenderListD3D[v8].pQuads[3].diffuse = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6164 pBillboardRenderListD3D[v8].pQuads[3].specular = specular;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6165 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (double)a2->uScreenSpaceX + v14 * v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6166 pBillboardRenderListD3D[v8].pQuads[3].pos.y = (double)a2->uScreenSpaceY - v15 * v29;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6167 pBillboardRenderListD3D[v8].pQuads[3].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6168 pBillboardRenderListD3D[v8].pQuads[3].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6169 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6170 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6171
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6172 pBillboardRenderListD3D[v8].uNumVertices = 4;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6173 pBillboardRenderListD3D[v8].pTexture = pSprite->pTexture;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6174 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6175 pBillboardRenderListD3D[v8].field_90 = a2->field_44;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6176 pBillboardRenderListD3D[v8].sZValue = a2->sZValue;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6177 pBillboardRenderListD3D[v8].uParentBillboardID = a2->uParentBillboardID;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6178
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6179 if (a2->uTintColor & 0xFF000000)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6180 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Opaque_3;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6181 else
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6182 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Transparent;
0
Ritor1
parents:
diff changeset
6183 }
Ritor1
parents:
diff changeset
6184
Ritor1
parents:
diff changeset
6185 //----- (004A48E4) --------------------------------------------------------
Ritor1
parents:
diff changeset
6186 int Render::MakeParticleBillboardAndPush_BLV_Software(int screenSpaceX, int screenSpaceY, int z, int lightColor, int a6)
Ritor1
parents:
diff changeset
6187 {
Ritor1
parents:
diff changeset
6188 int v6; // ecx@1
Ritor1
parents:
diff changeset
6189 int v7; // ebx@1
Ritor1
parents:
diff changeset
6190 int v8; // ecx@1
Ritor1
parents:
diff changeset
6191 int v9; // edx@1
Ritor1
parents:
diff changeset
6192 int v10; // edi@1
Ritor1
parents:
diff changeset
6193 unsigned int x; // esi@1
Ritor1
parents:
diff changeset
6194 int result; // eax@8
Ritor1
parents:
diff changeset
6195 int v13; // [sp+Ch] [bp-10h]@1
Ritor1
parents:
diff changeset
6196 int v14; // [sp+10h] [bp-Ch]@1
Ritor1
parents:
diff changeset
6197 int v15; // [sp+14h] [bp-8h]@1
Ritor1
parents:
diff changeset
6198 int v16; // [sp+18h] [bp-4h]@1
Ritor1
parents:
diff changeset
6199 int v17; // [sp+24h] [bp+8h]@1
Ritor1
parents:
diff changeset
6200 unsigned int v18; // [sp+28h] [bp+Ch]@1
Ritor1
parents:
diff changeset
6201 int v19; // [sp+34h] [bp+18h]@1
Ritor1
parents:
diff changeset
6202
Ritor1
parents:
diff changeset
6203 v6 = screenSpaceX;
Ritor1
parents:
diff changeset
6204 v7 = (a6 >> 1) + screenSpaceY;
Ritor1
parents:
diff changeset
6205 v17 = 0;
Ritor1
parents:
diff changeset
6206 v15 = 0;
Ritor1
parents:
diff changeset
6207 v8 = (a6 >> 1) + v6;
Ritor1
parents:
diff changeset
6208 v14 = (a6 >> 1) * (a6 >> 1);
Ritor1
parents:
diff changeset
6209 v9 = 2 * (a6 >> 1);
Ritor1
parents:
diff changeset
6210 v10 = (a6 >> 1) * ((a6 >> 1) - 1);
Ritor1
parents:
diff changeset
6211 x = v8 - (a6 >> 1);
Ritor1
parents:
diff changeset
6212 v16 = (a6 >> 1) + screenSpaceY - v8;
Ritor1
parents:
diff changeset
6213 v19 = a6 >> 1;
Ritor1
parents:
diff changeset
6214 v13 = v9;
Ritor1
parents:
diff changeset
6215 v18 = v8;
Ritor1
parents:
diff changeset
6216 do
Ritor1
parents:
diff changeset
6217 {
Ritor1
parents:
diff changeset
6218 sr_4A46E6_draw_particle_segment(x, v16 + v18, z, 2 * v19, lightColor);
Ritor1
parents:
diff changeset
6219 if ( v15 )
Ritor1
parents:
diff changeset
6220 sr_4A46E6_draw_particle_segment(x, v17 + v7, z, 2 * v19, lightColor);
Ritor1
parents:
diff changeset
6221 v14 -= v15;
Ritor1
parents:
diff changeset
6222 if ( v14 <= v10 )
Ritor1
parents:
diff changeset
6223 {
Ritor1
parents:
diff changeset
6224 if ( v19 != v17 )
Ritor1
parents:
diff changeset
6225 {
Ritor1
parents:
diff changeset
6226 sr_4A46E6_draw_particle_segment(v18, v16 + x, z, 2 * v17, lightColor);
Ritor1
parents:
diff changeset
6227 sr_4A46E6_draw_particle_segment(v18, v19 + v7, z, 2 * v17, lightColor);
Ritor1
parents:
diff changeset
6228 }
Ritor1
parents:
diff changeset
6229 --v19;
Ritor1
parents:
diff changeset
6230 v13 -= 2;
Ritor1
parents:
diff changeset
6231 ++x;
Ritor1
parents:
diff changeset
6232 v10 -= v13;
Ritor1
parents:
diff changeset
6233 }
Ritor1
parents:
diff changeset
6234 result = v17++;
Ritor1
parents:
diff changeset
6235 v15 += 2;
Ritor1
parents:
diff changeset
6236 --v18;
Ritor1
parents:
diff changeset
6237 }
Ritor1
parents:
diff changeset
6238 while ( result < v19 );
Ritor1
parents:
diff changeset
6239 return result;
Ritor1
parents:
diff changeset
6240 }
Ritor1
parents:
diff changeset
6241
Ritor1
parents:
diff changeset
6242 //----- (004A49D0) --------------------------------------------------------
Ritor1
parents:
diff changeset
6243 void Render::DrawProjectile(float srcX, float srcY, float a3, float a4, float dstX, float dstY, float a7, float a8, IDirect3DTexture2 *a9)
Ritor1
parents:
diff changeset
6244 {
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6245 int absXDifference; // eax@1
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6246 int absYDifference; // eax@1
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6247 unsigned int smallerabsdiff; // ebx@1
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6248 unsigned int largerabsdiff;
0
Ritor1
parents:
diff changeset
6249 double v16; // st7@7
Ritor1
parents:
diff changeset
6250 double v17; // st7@7
Ritor1
parents:
diff changeset
6251 double v18; // st6@7
Ritor1
parents:
diff changeset
6252 double v20; // st4@8
Ritor1
parents:
diff changeset
6253 double v21; // st4@10
Ritor1
parents:
diff changeset
6254 double v22; // st4@10
Ritor1
parents:
diff changeset
6255 double v23; // st4@10
Ritor1
parents:
diff changeset
6256 double v25; // st4@11
Ritor1
parents:
diff changeset
6257 double v26; // st4@13
Ritor1
parents:
diff changeset
6258 double v28; // st4@13
Ritor1
parents:
diff changeset
6259 RenderVertexD3D3 v29[4]; // [sp+0h] [bp-94h]@7
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6260 int xDifference; // [sp+88h] [bp-Ch]@1
0
Ritor1
parents:
diff changeset
6261 signed int v32; // [sp+8Ch] [bp-8h]@1
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6262 int yDifference; // [sp+90h] [bp-4h]@1
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6263
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6264 xDifference = bankersRounding(dstX - srcX);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6265 yDifference = bankersRounding(dstY - srcY);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6266 absYDifference = abs(yDifference);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6267 absXDifference = abs(xDifference);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6268 smallerabsdiff = min(absXDifference, absYDifference);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6269 largerabsdiff = max(absXDifference, absYDifference);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6270 v32 = (11 * smallerabsdiff >> 5) + largerabsdiff;
0
Ritor1
parents:
diff changeset
6271 v16 = 1.0 / (double)v32;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6272 v17 = (double)yDifference * v16 * a4;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6273 v18 = (double)xDifference * v16 * a4;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6274 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor )
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6275 {
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6276 v20 = a3 * 1000.0 / (double)pODMRenderParams->shading_dist_mist;
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6277 v25 = a7 * 1000.0 / (double)pODMRenderParams->shading_dist_mist;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6278 }
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6279 else
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6280 {
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6281 v20 = a3 * 0.061758894;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6282 v25 = a7 * 0.061758894;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6283 }
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6284 v21 = 1.0 / a3;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6285 v22 = (double)yDifference * v16 * a8;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6286 v23 = (double)xDifference * v16 * a8;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6287 v26 = 1.0 - 1.0 / v25;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6288 v28 = 1.0 / a7;
0
Ritor1
parents:
diff changeset
6289 v29[0].pos.x = srcX + v17;
Ritor1
parents:
diff changeset
6290 v29[0].pos.y = srcY - v18;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6291 v29[0].pos.z = 1.0 - 1.0 / v20;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6292 v29[0].rhw = v21;
0
Ritor1
parents:
diff changeset
6293 v29[0].diffuse = -1;
Ritor1
parents:
diff changeset
6294 v29[0].specular = 0;
Ritor1
parents:
diff changeset
6295 v29[0].texcoord.x = 1.0;
Ritor1
parents:
diff changeset
6296 v29[0].texcoord.y = 0.0;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6297
0
Ritor1
parents:
diff changeset
6298 v29[1].pos.x = v22 + dstX;
Ritor1
parents:
diff changeset
6299 v29[1].pos.y = dstY - v23;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6300 v29[1].pos.z = v26;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6301 v29[1].rhw = v28;
0
Ritor1
parents:
diff changeset
6302 v29[1].diffuse = -16711936;
Ritor1
parents:
diff changeset
6303 v29[1].specular = 0;
Ritor1
parents:
diff changeset
6304 v29[1].texcoord.x = 1.0;
Ritor1
parents:
diff changeset
6305 v29[1].texcoord.y = 1.0;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6306
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6307 v29[2].pos.x = dstX - v22;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6308 v29[2].pos.y = v23 + dstY;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6309 v29[2].pos.z = v26;
0
Ritor1
parents:
diff changeset
6310 v29[2].rhw = v28;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6311 v29[2].diffuse = -1;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6312 v29[2].specular = 0;
0
Ritor1
parents:
diff changeset
6313 v29[2].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6314 v29[2].texcoord.y = 1.0;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6315
0
Ritor1
parents:
diff changeset
6316 v29[3].pos.x = srcX - v17;
Ritor1
parents:
diff changeset
6317 v29[3].pos.y = v18 + srcY;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6318 v29[3].pos.z = v29[0].pos.z;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6319 v29[3].rhw = v21;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6320 v29[3].diffuse = -1;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6321 v29[3].specular = 0;
0
Ritor1
parents:
diff changeset
6322 v29[3].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6323 v29[3].texcoord.y = 0.0;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6324 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6325 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6326 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6327 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6328 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6329 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
0
Ritor1
parents:
diff changeset
6330 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, a9));
Ritor1
parents:
diff changeset
6331 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(
Ritor1
parents:
diff changeset
6332 D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
6333 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
Ritor1
parents:
diff changeset
6334 v29,
Ritor1
parents:
diff changeset
6335 4,
Ritor1
parents:
diff changeset
6336 24));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6337 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6338 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6339 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6340 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6341 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6342 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW));
0
Ritor1
parents:
diff changeset
6343 }
Ritor1
parents:
diff changeset
6344
Ritor1
parents:
diff changeset
6345 //----- (004A4CC9) --------------------------------------------------------
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6346 void Render::_4A4CC9_AddSomeBillboard(stru6_stru1_indoor_sw_billboard *a1, int diffuse)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6347 {
0
Ritor1
parents:
diff changeset
6348 unsigned int v5; // eax@7
Ritor1
parents:
diff changeset
6349 char *v7; // edx@8
Ritor1
parents:
diff changeset
6350 double v10; // st6@9
Ritor1
parents:
diff changeset
6351 double v11; // st6@10
Ritor1
parents:
diff changeset
6352 int v12; // ebx@13
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6353
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6354 if (a1->uNumVertices < 3)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6355 return;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6356
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6357 float depth = 1000000.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6358 for (uint i = 0; i < a1->uNumVertices; ++i)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6359 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6360 if (a1->field_104[i].z < depth)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6361 depth = a1->field_104[i * 4].z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6362 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6363
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6364 v5 = Billboard_ProbablyAddToListAndSortByZOrder(depth);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6365 pBillboardRenderListD3D[v5].field_90 = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6366 pBillboardRenderListD3D[v5].uParentBillboardID = -1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6367 pBillboardRenderListD3D[v5].uOpacity = RenderBillboardD3D::Opaque_2;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6368 pBillboardRenderListD3D[v5].pTexture = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6369 pBillboardRenderListD3D[v5].uNumVertices = a1->uNumVertices;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6370 pBillboardRenderListD3D[v5].z_order = depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6371
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6372 for (uint i = 0; i < a1->uNumVertices; ++i)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6373 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6374 pBillboardRenderListD3D[v5].pQuads[i].pos.x = a1->field_104[i].x;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6375 pBillboardRenderListD3D[v5].pQuads[i].pos.y = a1->field_104[i].y;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6376
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6377 v10 = a1->field_104[i].z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6378 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6379 v11 = v10 * 0.061758894;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6380 else
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6381 v11 = v10 * 1000.0 / (double)pODMRenderParams->shading_dist_mist;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6382 pBillboardRenderListD3D[v5].pQuads[i].pos.z = 1.0 - 1.0 / v11;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6383 pBillboardRenderListD3D[v5].pQuads[i].rhw = 1.0 / a1->field_104[i].z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6384
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6385 if (diffuse & 0xFF000000)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6386 v12 = a1->field_104[i].diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6387 else
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6388 v12 = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6389 pBillboardRenderListD3D[v5].pQuads[i].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6390 pBillboardRenderListD3D[v5].pQuads[i].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6391
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6392 pBillboardRenderListD3D[v5].pQuads[i].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6393 pBillboardRenderListD3D[v5].pQuads[i].texcoord.y = 0.0;
0
Ritor1
parents:
diff changeset
6394 }
Ritor1
parents:
diff changeset
6395 }
Ritor1
parents:
diff changeset
6396
Ritor1
parents:
diff changeset
6397 //----- (004A4DE1) --------------------------------------------------------
Ritor1
parents:
diff changeset
6398 bool Render::LoadTexture(const char *pName, unsigned int bMipMaps, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture)
Ritor1
parents:
diff changeset
6399 {
Ritor1
parents:
diff changeset
6400 HRESULT v12; // eax@14
Ritor1
parents:
diff changeset
6401 unsigned __int16 *v13; // ecx@19
Ritor1
parents:
diff changeset
6402 unsigned __int16 *v14; // eax@19
Ritor1
parents:
diff changeset
6403 DWORD v15; // edx@20
Ritor1
parents:
diff changeset
6404 HRESULT v16; // eax@23
Ritor1
parents:
diff changeset
6405 stru350 Dst; // [sp+Ch] [bp-F8h]@12
Ritor1
parents:
diff changeset
6406
Ritor1
parents:
diff changeset
6407 auto pHWLTexture = pD3DBitmaps.LoadTexture(pName, bMipMaps);
Ritor1
parents:
diff changeset
6408 if ( pHWLTexture )
Ritor1
parents:
diff changeset
6409 {
Ritor1
parents:
diff changeset
6410 bMipMaps = !strncmp(pName, "HDWTR", 5);
Ritor1
parents:
diff changeset
6411 if ( !pRenderD3D->CreateTexture(
Ritor1
parents:
diff changeset
6412 pHWLTexture->uWidth,
Ritor1
parents:
diff changeset
6413 pHWLTexture->uHeight,
Ritor1
parents:
diff changeset
6414 pOutSurface,
Ritor1
parents:
diff changeset
6415 pOutTexture,
Ritor1
parents:
diff changeset
6416 true,
Ritor1
parents:
diff changeset
6417 bMipMaps,
Ritor1
parents:
diff changeset
6418 uMinDeviceTextureDim) )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
6419 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0);
0
Ritor1
parents:
diff changeset
6420 //v10 = *pOutSurface;
Ritor1
parents:
diff changeset
6421 //v11 = 0;
1578
56cc81b1ed49 workaround for crash on startup
Beri Levi berilevi@gmail.com
parents: 1574
diff changeset
6422 if (bMipMaps)
0
Ritor1
parents:
diff changeset
6423 {
Ritor1
parents:
diff changeset
6424 Dst._450DDE();
Ritor1
parents:
diff changeset
6425 //v20 = 0;
Ritor1
parents:
diff changeset
6426 Dst._450DF1(&stru_4EFCBC, &stru_4EFCBC);
Ritor1
parents:
diff changeset
6427
Ritor1
parents:
diff changeset
6428 IDirectDrawSurface4 *pNextSurf = *pOutSurface;
Ritor1
parents:
diff changeset
6429 while ( 1 )
Ritor1
parents:
diff changeset
6430 {
Ritor1
parents:
diff changeset
6431 DDSCAPS2 v19;
Ritor1
parents:
diff changeset
6432 memset(&v19, 0, sizeof(DDSCAPS2));
Ritor1
parents:
diff changeset
6433 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP;
Ritor1
parents:
diff changeset
6434
Ritor1
parents:
diff changeset
6435 DDSURFACEDESC2 desc;
Ritor1
parents:
diff changeset
6436 memset(&desc, 0, sizeof(DDSURFACEDESC2));
Ritor1
parents:
diff changeset
6437 desc.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
6438
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
6439 if ( LockSurface_DDraw4(pNextSurf, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) )
0
Ritor1
parents:
diff changeset
6440 {
1578
56cc81b1ed49 workaround for crash on startup
Beri Levi berilevi@gmail.com
parents: 1574
diff changeset
6441 /*Dst.sub_451007_scale_image_bicubic(
0
Ritor1
parents:
diff changeset
6442 pHWLTexture->pPixels,
Ritor1
parents:
diff changeset
6443 pHWLTexture->uWidth,
Ritor1
parents:
diff changeset
6444 pHWLTexture->uHeight,
Ritor1
parents:
diff changeset
6445 pHWLTexture->uWidth,
Ritor1
parents:
diff changeset
6446 (unsigned short *)desc.lpSurface,
Ritor1
parents:
diff changeset
6447 desc.dwWidth,
Ritor1
parents:
diff changeset
6448 desc.dwHeight,
Ritor1
parents:
diff changeset
6449 desc.lPitch >> 1,
Ritor1
parents:
diff changeset
6450 0,
1578
56cc81b1ed49 workaround for crash on startup
Beri Levi berilevi@gmail.com
parents: 1574
diff changeset
6451 0);*/
0
Ritor1
parents:
diff changeset
6452 ErrD3D(pNextSurf->Unlock(0));
Ritor1
parents:
diff changeset
6453 //bMipMaps = 0x4D86ACu;
Ritor1
parents:
diff changeset
6454 }
Ritor1
parents:
diff changeset
6455 if (FAILED(pNextSurf->GetAttachedSurface(&v19, &pNextSurf)))
Ritor1
parents:
diff changeset
6456 break;
Ritor1
parents:
diff changeset
6457 //v10 = (IDirectDrawSurface4 *)pName;
Ritor1
parents:
diff changeset
6458 //v11 = 0;
Ritor1
parents:
diff changeset
6459 }
Ritor1
parents:
diff changeset
6460 //v20 = -1;
Ritor1
parents:
diff changeset
6461 //nullsub_1();
Ritor1
parents:
diff changeset
6462 }
Ritor1
parents:
diff changeset
6463 else
Ritor1
parents:
diff changeset
6464 {
Ritor1
parents:
diff changeset
6465 DDSCAPS2 v19;
Ritor1
parents:
diff changeset
6466 memset(&v19, 0, sizeof(DDSCAPS2));
Ritor1
parents:
diff changeset
6467 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP;
Ritor1
parents:
diff changeset
6468
Ritor1
parents:
diff changeset
6469 DDSURFACEDESC2 desc;
Ritor1
parents:
diff changeset
6470 memset(&desc, 0, sizeof(DDSURFACEDESC2));
Ritor1
parents:
diff changeset
6471 desc.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
6472
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
6473 if ( LockSurface_DDraw4(*pOutSurface, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) )
0
Ritor1
parents:
diff changeset
6474 {
Ritor1
parents:
diff changeset
6475 bMipMaps = 0;
Ritor1
parents:
diff changeset
6476 v13 = pHWLTexture->pPixels;
Ritor1
parents:
diff changeset
6477 v14 = (unsigned __int16 *)desc.lpSurface;
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6478 for(int bMipMaps = 0; bMipMaps < desc.dwHeight; bMipMaps++)
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6479 {
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6480 for (v15 = 0; v15 < desc.dwWidth; v15++)
0
Ritor1
parents:
diff changeset
6481 {
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6482 *v14 = *v13;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6483 ++v14;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6484 ++v13;
0
Ritor1
parents:
diff changeset
6485 }
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6486 v14 += (desc.lPitch >> 1) - desc.dwWidth;
0
Ritor1
parents:
diff changeset
6487 }
Ritor1
parents:
diff changeset
6488 ErrD3D((*pOutSurface)->Unlock(0));
Ritor1
parents:
diff changeset
6489 }
Ritor1
parents:
diff changeset
6490 }
Ritor1
parents:
diff changeset
6491 delete [] pHWLTexture->pPixels;
Ritor1
parents:
diff changeset
6492 delete pHWLTexture;
Ritor1
parents:
diff changeset
6493 return true;
Ritor1
parents:
diff changeset
6494 }
Ritor1
parents:
diff changeset
6495 return false;
Ritor1
parents:
diff changeset
6496 }
Ritor1
parents:
diff changeset
6497
Ritor1
parents:
diff changeset
6498 //----- (004A5048) --------------------------------------------------------
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6499 bool Render::MoveSpriteToDevice( Sprite *pSprite )
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6500 {
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6501
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6502 HWLTexture *sprite_texture; // eax@1
0
Ritor1
parents:
diff changeset
6503 unsigned __int16 *v9; // edx@5
Ritor1
parents:
diff changeset
6504 LPVOID v10; // eax@5
Ritor1
parents:
diff changeset
6505 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4
Ritor1
parents:
diff changeset
6506
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6507 sprite_texture = pD3DSprites.LoadTexture(pSprite->pName, pSprite->uPaletteID);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6508 if ( sprite_texture )
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6509 {
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6510 _gpu_memory_used += 2 * sprite_texture->uWidth * sprite_texture->uHeight;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6511 pSprite->uAreaX = sprite_texture->uAreaX;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6512 pSprite->uAreaY = sprite_texture->uAreaY;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6513 pSprite->uBufferWidth = sprite_texture->uBufferWidth;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6514 pSprite->uBufferHeight = sprite_texture->uBufferHeight;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6515 pSprite->uAreaWidth = sprite_texture->uAreaWidth;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6516 pSprite->uAreaHeight = sprite_texture->uAreaHeigth;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6517 //v6 = v3->uMinDeviceTextureDim;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6518 //v7 = v3->pRenderD3D;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6519 if (!pRenderD3D->CreateTexture(sprite_texture->uWidth, sprite_texture->uHeight, &pSprite->pTextureSurface, &pSprite->pTexture, 1u, 0, uMinDeviceTextureDim))
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
6520 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0);
0
Ritor1
parents:
diff changeset
6521 //pSprite = v2->pTextureSurface;
Ritor1
parents:
diff changeset
6522 //pSprite = (Sprite *)pSprite->pName;
Ritor1
parents:
diff changeset
6523 //v8 = pSprite;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6524 memset(&Dst, 0, sizeof(DDSURFACEDESC2));
0
Ritor1
parents:
diff changeset
6525 Dst.dwSize = 124;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6526 if ( LockSurface_DDraw4((IDirectDrawSurface4 *)pSprite->pTextureSurface, &Dst, DDLOCK_WAIT | DDLOCK_WRITEONLY) )
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6527 {
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6528 v9 = sprite_texture->pPixels;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6529 v10 = Dst.lpSurface;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6530 for (int i=0; i<sprite_texture->uHeight; ++i)
0
Ritor1
parents:
diff changeset
6531 {
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6532 for (int j=0; j<sprite_texture->uWidth/2; ++j)
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6533 {
0
Ritor1
parents:
diff changeset
6534 *(int *)v10 = *(int *)v9;
Ritor1
parents:
diff changeset
6535 v9 += 2;
Ritor1
parents:
diff changeset
6536 v10 = (char *)v10 + 4;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6537 }
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6538 v10 = (char *)v10+Dst.lPitch-sprite_texture->uWidth*2;
0
Ritor1
parents:
diff changeset
6539 }
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6540 ErrD3D(pSprite->pTextureSurface->Unlock(0));
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6541 }
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6542 free(sprite_texture->pPixels);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6543 free(sprite_texture);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6544 return true;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6545 }
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6546 return false;
0
Ritor1
parents:
diff changeset
6547 }
Ritor1
parents:
diff changeset
6548
Ritor1
parents:
diff changeset
6549 //----- (004A51CB) --------------------------------------------------------
Ritor1
parents:
diff changeset
6550 void Render::BeginScene()
Ritor1
parents:
diff changeset
6551 {
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6552 //Render *v1; // esi@1
0
Ritor1
parents:
diff changeset
6553 unsigned int v2; // eax@1
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6554 /*int v3; // eax@5
0
Ritor1
parents:
diff changeset
6555 unsigned __int16 **v4; // edi@6
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6556 char *v5; // ebx@7*/
0
Ritor1
parents:
diff changeset
6557 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4
Ritor1
parents:
diff changeset
6558
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6559 //v1 = this;
0
Ritor1
parents:
diff changeset
6560 v2 = this->uNumSceneBegins;
Ritor1
parents:
diff changeset
6561 this->uNumSceneBegins = v2 + 1;
Ritor1
parents:
diff changeset
6562 if ( !v2 )
Ritor1
parents:
diff changeset
6563 {
Ritor1
parents:
diff changeset
6564 if ( this->pRenderD3D )
Ritor1
parents:
diff changeset
6565 {
Ritor1
parents:
diff changeset
6566 if ( this->bColorKeySupported )
Ritor1
parents:
diff changeset
6567 {
Ritor1
parents:
diff changeset
6568 memset(&Dst, 0, 0x7Cu);
Ritor1
parents:
diff changeset
6569 Dst.dwSize = 124;
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6570 if ( LockSurface_DDraw4(this->pColorKeySurface4, &Dst, 0x800 | DDLOCK_WAIT) )
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6571 {
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6572 this->pTargetSurface = (unsigned __int16 *)Dst.lpSurface;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6573 this->uTargetSurfacePitch = Dst.lPitch >> 1;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6574 this->field_18_locked_pitch = Dst.lPitch >> 1;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6575 }
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6576 --this->uNumSceneBegins;
0
Ritor1
parents:
diff changeset
6577 }
Ritor1
parents:
diff changeset
6578 }
Ritor1
parents:
diff changeset
6579 else
Ritor1
parents:
diff changeset
6580 {
Ritor1
parents:
diff changeset
6581 if ( !this->pTargetSurface )
Ritor1
parents:
diff changeset
6582 {
Ritor1
parents:
diff changeset
6583 LockRenderSurface((void **)&this->pTargetSurface, &this->uTargetSurfacePitch);
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6584 if ( this->pTargetSurface )
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6585 {
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6586 this->field_18_locked_pitch = this->uTargetSurfacePitch;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6587 }
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6588 --this->uNumSceneBegins;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6589 }
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6590 }
0
Ritor1
parents:
diff changeset
6591 RestoreFrontBuffer();
Ritor1
parents:
diff changeset
6592 }
Ritor1
parents:
diff changeset
6593 }
Ritor1
parents:
diff changeset
6594
Ritor1
parents:
diff changeset
6595 //----- (004A527D) --------------------------------------------------------
Ritor1
parents:
diff changeset
6596 void Render::EndScene()
Ritor1
parents:
diff changeset
6597 {
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6598 if ( this->uNumSceneBegins )
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6599 {
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6600 this->uNumSceneBegins--;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6601 if ( !this->uNumSceneBegins )
0
Ritor1
parents:
diff changeset
6602 {
Ritor1
parents:
diff changeset
6603 if ( this->pRenderD3D )
Ritor1
parents:
diff changeset
6604 {
Ritor1
parents:
diff changeset
6605 if ( this->bColorKeySupported )
Ritor1
parents:
diff changeset
6606 {
Ritor1
parents:
diff changeset
6607 this->pTargetSurface = 0;
Ritor1
parents:
diff changeset
6608 this->uTargetSurfacePitch = 0;
Ritor1
parents:
diff changeset
6609 this->field_18_locked_pitch = 0;
Ritor1
parents:
diff changeset
6610 ErrD3D(this->pColorKeySurface4->Unlock(0));
Ritor1
parents:
diff changeset
6611 }
Ritor1
parents:
diff changeset
6612 }
Ritor1
parents:
diff changeset
6613 else
Ritor1
parents:
diff changeset
6614 {
Ritor1
parents:
diff changeset
6615 this->pTargetSurface = 0;
Ritor1
parents:
diff changeset
6616 this->uTargetSurfacePitch = 0;
Ritor1
parents:
diff changeset
6617 this->field_18_locked_pitch = 0;
Ritor1
parents:
diff changeset
6618 UnlockBackBuffer();
Ritor1
parents:
diff changeset
6619 }
Ritor1
parents:
diff changeset
6620 }
Ritor1
parents:
diff changeset
6621 }
Ritor1
parents:
diff changeset
6622 }
Ritor1
parents:
diff changeset
6623
Ritor1
parents:
diff changeset
6624 //----- ( ) --------------------------------------------------------
Ritor1
parents:
diff changeset
6625 unsigned int Render::_4A52F1(unsigned int this_, float a3)
Ritor1
parents:
diff changeset
6626 {
Ritor1
parents:
diff changeset
6627 unsigned int v3; // esi@1
Ritor1
parents:
diff changeset
6628 double v4; // st7@2
Ritor1
parents:
diff changeset
6629 double v5; // st7@6
Ritor1
parents:
diff changeset
6630 double v6; // st6@6
Ritor1
parents:
diff changeset
6631 unsigned int v7; // eax@6
Ritor1
parents:
diff changeset
6632 double v8; // st5@6
Ritor1
parents:
diff changeset
6633 double v9; // st4@6
Ritor1
parents:
diff changeset
6634 HRESULT v10; // eax@6
Ritor1
parents:
diff changeset
6635 HRESULT v11; // eax@6
Ritor1
parents:
diff changeset
6636 unsigned int result; // eax@6
Ritor1
parents:
diff changeset
6637 unsigned int v13; // eax@7
Ritor1
parents:
diff changeset
6638 unsigned __int16 *v14; // ecx@7
Ritor1
parents:
diff changeset
6639 int *v15; // eax@7
Ritor1
parents:
diff changeset
6640 unsigned int v16; // ecx@8
Ritor1
parents:
diff changeset
6641 __int16 v17; // ax@10
Ritor1
parents:
diff changeset
6642 int v18; // esi@10
Ritor1
parents:
diff changeset
6643 float v19; // edi@10
Ritor1
parents:
diff changeset
6644 void *v20; // esi@10
Ritor1
parents:
diff changeset
6645 int v21; // edx@10
Ritor1
parents:
diff changeset
6646 int v22; // ecx@11
Ritor1
parents:
diff changeset
6647 int v23; // edx@12
Ritor1
parents:
diff changeset
6648 __int16 v24; // ax@15
Ritor1
parents:
diff changeset
6649 int v25; // esi@15
Ritor1
parents:
diff changeset
6650 float v26; // edi@15
Ritor1
parents:
diff changeset
6651 char *v27; // esi@15
Ritor1
parents:
diff changeset
6652 int v28; // edx@15
Ritor1
parents:
diff changeset
6653 int v29; // ecx@16
Ritor1
parents:
diff changeset
6654 int v30; // edx@17
Ritor1
parents:
diff changeset
6655 int v31; // [sp-Ch] [bp-ACh]@11
Ritor1
parents:
diff changeset
6656 int v32; // [sp-Ch] [bp-ACh]@16
Ritor1
parents:
diff changeset
6657 const char *v33; // [sp+0h] [bp-A0h]@0
Ritor1
parents:
diff changeset
6658 int v34; // [sp+4h] [bp-9Ch]@0
Ritor1
parents:
diff changeset
6659 unsigned int v35; // [sp+8h] [bp-98h]@0
Ritor1
parents:
diff changeset
6660 RenderVertexD3D3 v36[4]; // [sp+Ch] [bp-94h]@6
Ritor1
parents:
diff changeset
6661 unsigned int v37; // [sp+8Ch] [bp-14h]@7
Ritor1
parents:
diff changeset
6662 int v38; // [sp+90h] [bp-10h]@7
Ritor1
parents:
diff changeset
6663 double v39; // [sp+94h] [bp-Ch]@6
Ritor1
parents:
diff changeset
6664 float v40; // [sp+9Ch] [bp-4h]@6
Ritor1
parents:
diff changeset
6665
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
6666 __debugbreak();
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
6667
0
Ritor1
parents:
diff changeset
6668 auto ecx0 = this;
Ritor1
parents:
diff changeset
6669 v3 = 0;
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6670
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6671 if (!this->pRenderD3D)
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6672 __debugbreak(); // sw render
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6673
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6674 //{
0
Ritor1
parents:
diff changeset
6675 v4 = a3;
Ritor1
parents:
diff changeset
6676 if ( a3 <= 1.0 )
Ritor1
parents:
diff changeset
6677 {
Ritor1
parents:
diff changeset
6678 if ( v4 < 0.0 )
Ritor1
parents:
diff changeset
6679 v4 = 0.0;
Ritor1
parents:
diff changeset
6680 }
Ritor1
parents:
diff changeset
6681 else
Ritor1
parents:
diff changeset
6682 {
Ritor1
parents:
diff changeset
6683 v4 = 1.0;
Ritor1
parents:
diff changeset
6684 }
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6685 __debugbreak(); // banker's rounding again
0
Ritor1
parents:
diff changeset
6686 a3 = v4 * 255.0;
Ritor1
parents:
diff changeset
6687 v39 = a3 + 6.7553994e15;
Ritor1
parents:
diff changeset
6688 LODWORD(v40) = LODWORD(v39);
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6689 v5 = (double)(signed int)pViewport->uViewportTL_X;
0
Ritor1
parents:
diff changeset
6690 v36[0].pos.x = v5;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6691 v6 = (double)(signed int)pViewport->uViewportTL_Y;
0
Ritor1
parents:
diff changeset
6692 v7 = this_ | (LODWORD(v39) << 24);
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6693 this_ = pViewport->uViewportBR_Y + 1;
0
Ritor1
parents:
diff changeset
6694 v36[0].specular = 0;
Ritor1
parents:
diff changeset
6695 v36[0].pos.y = v6;
Ritor1
parents:
diff changeset
6696 v36[0].diffuse = v7;
Ritor1
parents:
diff changeset
6697 v36[1].diffuse = v7;
Ritor1
parents:
diff changeset
6698 v36[0].pos.z = 0.0;
Ritor1
parents:
diff changeset
6699 v36[2].diffuse = v7;
Ritor1
parents:
diff changeset
6700 v36[3].diffuse = v7;
Ritor1
parents:
diff changeset
6701 v36[0].rhw = 1.0;
Ritor1
parents:
diff changeset
6702 v36[1].specular = 0;
Ritor1
parents:
diff changeset
6703 v36[0].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6704 v36[2].specular = 0;
Ritor1
parents:
diff changeset
6705 v36[3].specular = 0;
Ritor1
parents:
diff changeset
6706 v36[0].texcoord.y = 0.0;
Ritor1
parents:
diff changeset
6707 v36[1].pos.x = v5;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6708 v8 = (double)(pViewport->uViewportBR_Y + 1);
0
Ritor1
parents:
diff changeset
6709 v36[1].pos.y = v8;
Ritor1
parents:
diff changeset
6710 v36[1].pos.z = 0.0;
Ritor1
parents:
diff changeset
6711 v36[1].rhw = 1.0;
Ritor1
parents:
diff changeset
6712 v36[1].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6713 v36[1].texcoord.y = 0.0;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6714 v9 = (double)(signed int)pViewport->uViewportBR_X;
0
Ritor1
parents:
diff changeset
6715 v36[2].pos.x = v9;
Ritor1
parents:
diff changeset
6716 v36[2].pos.y = v8;
Ritor1
parents:
diff changeset
6717 v36[2].pos.z = 0.0;
Ritor1
parents:
diff changeset
6718 v36[2].rhw = 1.0;
Ritor1
parents:
diff changeset
6719 v36[2].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6720 v36[2].texcoord.y = 0.0;
Ritor1
parents:
diff changeset
6721 v36[3].pos.x = v9;
Ritor1
parents:
diff changeset
6722 v36[3].pos.y = v6;
Ritor1
parents:
diff changeset
6723 v36[3].pos.z = 0.0;
Ritor1
parents:
diff changeset
6724 v36[3].rhw = 1.0;
Ritor1
parents:
diff changeset
6725 v36[3].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6726 v36[3].texcoord.y = 0.0;
Ritor1
parents:
diff changeset
6727 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6728 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6729 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6730 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6731 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6732 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6733 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6734 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_ALWAYS));
0
Ritor1
parents:
diff changeset
6735 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(
Ritor1
parents:
diff changeset
6736 D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
6737 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
Ritor1
parents:
diff changeset
6738 v36,
Ritor1
parents:
diff changeset
6739 4,
Ritor1
parents:
diff changeset
6740 28));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6741 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6742 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6743 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6744 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6745 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6746 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_LESS));
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6747 /*}
0
Ritor1
parents:
diff changeset
6748 else
Ritor1
parents:
diff changeset
6749 {
Ritor1
parents:
diff changeset
6750 v40 = (1.0 - a3) * 65536.0;
Ritor1
parents:
diff changeset
6751 v39 = v40 + 6.7553994e15;
Ritor1
parents:
diff changeset
6752 LODWORD(a3) = LODWORD(v39);
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6753 v38 = (signed int)(pViewport->uViewportBR_X - pViewport->uViewportTL_X) >> 1;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6754 HIDWORD(v39) = pViewport->uViewportBR_Y - pViewport->uViewportTL_Y + 1;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6755 v13 = pViewport->uViewportTL_X + ecx0->uTargetSurfacePitch - pViewport->uViewportBR_X;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6756 v14 = &ecx0->pTargetSurface[pViewport->uViewportTL_X + pViewport->uViewportTL_Y * ecx0->uTargetSurfacePitch];
0
Ritor1
parents:
diff changeset
6757 v37 = 2 * v13;
Ritor1
parents:
diff changeset
6758 LODWORD(v40) = (int)v14;
Ritor1
parents:
diff changeset
6759
Ritor1
parents:
diff changeset
6760 int __i = 0;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
6761 v15 = dword_F1B430.data();
0
Ritor1
parents:
diff changeset
6762 do
Ritor1
parents:
diff changeset
6763 {
Ritor1
parents:
diff changeset
6764 v16 = v3;
Ritor1
parents:
diff changeset
6765 v3 += LODWORD(a3);
Ritor1
parents:
diff changeset
6766 dword_F1B430[__i++] = v16 >> 16;
Ritor1
parents:
diff changeset
6767 }
Ritor1
parents:
diff changeset
6768 //while ( (signed int)v15 < (signed int)&Aureal3D_SplashScreen );
Ritor1
parents:
diff changeset
6769 while (__i < 32);
Ritor1
parents:
diff changeset
6770
Ritor1
parents:
diff changeset
6771 if ( pRenderer->uTargetGBits == 6 )
Ritor1
parents:
diff changeset
6772 {
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6773 v17 = sr_42690D_colors_cvt(this_);
0
Ritor1
parents:
diff changeset
6774 v18 = (65536 - LODWORD(a3)) * (v17 & 0x1F);
Ritor1
parents:
diff changeset
6775 this_ = (((65536 - LODWORD(a3)) * (unsigned __int16)(v17 & 0xF800) & 0xF800FFFF | v18 & 0x1F0000 | (65536 - LODWORD(a3)) * (v17 & 0x7E0) & 0x7E00000u) >> 16 << 16) | (((65536 - LODWORD(a3)) * (unsigned __int16)(v17 & 0xF800) & 0xF800FFFF | v18 & 0x1F0000 | (65536 - LODWORD(a3)) * (v17 & 0x7E0) & 0x7E00000u) >> 16);
Ritor1
parents:
diff changeset
6776 v19 = v40;
Ritor1
parents:
diff changeset
6777 v20 = off_4EFDB0;
Ritor1
parents:
diff changeset
6778 v21 = HIDWORD(v39);
Ritor1
parents:
diff changeset
6779 do
Ritor1
parents:
diff changeset
6780 {
Ritor1
parents:
diff changeset
6781 v22 = v38;
Ritor1
parents:
diff changeset
6782 v31 = v21;
Ritor1
parents:
diff changeset
6783 do
Ritor1
parents:
diff changeset
6784 {
Ritor1
parents:
diff changeset
6785 v23 = (*(int *)((char *)v20
Ritor1
parents:
diff changeset
6786 + ((((unsigned __int16)(*(short *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | *(unsigned int *)LODWORD(v19) & 0x7FF) & 0x7C0u) >> 4)) << 6) | (*(int *)((char *)v20 + ((((*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | (*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF8000000u) >> 25)) << 27) | *(unsigned int *)LODWORD(v19) & 0x7FF07FF) & 0x7C00000u) >> 20)) << 22) | ((*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | (*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF8000000u) >> 25)) << 27) | *(unsigned int *)LODWORD(v19) & 0x7FF07FF) & 0xF81FF81F;
Ritor1
parents:
diff changeset
6787 result = this_
Ritor1
parents:
diff changeset
6788 + (*((int *)v20
Ritor1
parents:
diff changeset
6789 + (((unsigned __int8)(*((char *)v20
Ritor1
parents:
diff changeset
6790 + ((((unsigned __int16)(*(short *)((char *)v20
Ritor1
parents:
diff changeset
6791 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | *(unsigned int *)LODWORD(v19) & 0x7FF) & 0x7C0u) >> 4)) << 6) | *(unsigned int *)LODWORD(v19) & 0x1F) & 0x1F)) | (*(int *)((char *)v20 + ((v23 & 0x1F0000u) >> 14)) << 16) | ((*(int *)((char *)v20 + ((((unsigned __int16)(*(short *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | *(unsigned int *)LODWORD(v19) & 0x7FF) & 0x7C0u) >> 4)) << 6) | (*(int *)((char *)v20 + ((((*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | (*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF8000000u) >> 25)) << 27) | *(unsigned int *)LODWORD(v19) & 0x7FF07FF) & 0x7C00000u) >> 20)) << 22) | ((*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | (*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF8000000u) >> 25)) << 27) | *(unsigned int *)LODWORD(v19) & 0x7FF07FF) & 0xF81FF81F) & 0xFFE0FFE0);
Ritor1
parents:
diff changeset
6792 *(unsigned int *)LODWORD(v19) = result;
Ritor1
parents:
diff changeset
6793 LODWORD(v19) += 4;
Ritor1
parents:
diff changeset
6794 --v22;
Ritor1
parents:
diff changeset
6795 }
Ritor1
parents:
diff changeset
6796 while ( v22 );
Ritor1
parents:
diff changeset
6797 LODWORD(v19) += v37;
Ritor1
parents:
diff changeset
6798 v21 = v31 - 1;
Ritor1
parents:
diff changeset
6799 }
Ritor1
parents:
diff changeset
6800 while ( v31 != 1 );
Ritor1
parents:
diff changeset
6801 }
Ritor1
parents:
diff changeset
6802 else
Ritor1
parents:
diff changeset
6803 {
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6804 v24 = sr_4268E3_smthn_to_a1r5g5b5(this_);
0
Ritor1
parents:
diff changeset
6805 v25 = (65536 - LODWORD(a3)) * (v24 & 0x1F);
Ritor1
parents:
diff changeset
6806 this_ = (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3))
Ritor1
parents:
diff changeset
6807 * (v24 & 0x3E0) & 0x3E00000u) >> 16 << 16) | (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3)) * (v24 & 0x3E0) & 0x3E00000u) >> 16);
Ritor1
parents:
diff changeset
6808 v26 = v40;
Ritor1
parents:
diff changeset
6809 v27 = (char *)off_4EFDB0;
Ritor1
parents:
diff changeset
6810 v28 = HIDWORD(v39);
Ritor1
parents:
diff changeset
6811 do
Ritor1
parents:
diff changeset
6812 {
Ritor1
parents:
diff changeset
6813 v29 = v38;
Ritor1
parents:
diff changeset
6814 v32 = v28;
Ritor1
parents:
diff changeset
6815 do
Ritor1
parents:
diff changeset
6816 {
Ritor1
parents:
diff changeset
6817 v30 = 32
Ritor1
parents:
diff changeset
6818 * *(int *)&v27[(((unsigned __int16)(*(short *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | *(unsigned int *)LODWORD(v26) & 0x3FF) & 0x3E0u) >> 3] | (*(int *)&v27[(((*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | (*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C000000u) >> 24] << 26) | *(unsigned int *)LODWORD(v26) & 0x3FF03FF) & 0x3E00000u) >> 19] << 21) | ((*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | (*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C000000u) >> 24] << 26) | *(unsigned int *)LODWORD(v26) & 0x3FF03FF) & 0x7C1F7C1F;
Ritor1
parents:
diff changeset
6819 result = this_
Ritor1
parents:
diff changeset
6820 + (*(int *)&v27[4
Ritor1
parents:
diff changeset
6821 * (((unsigned __int8)(32
Ritor1
parents:
diff changeset
6822 * v27[(((unsigned __int16)(*(short *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | *(unsigned int *)LODWORD(v26) & 0x3FF) & 0x3E0u) >> 3]) | *(unsigned int *)LODWORD(v26) & 0x1F) & 0x1F)] | (*(int *)&v27[(v30 & 0x1F0000u) >> 14] << 16) | (32 * *(int *)&v27[(((unsigned __int16)(*(short *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | *(unsigned int *)LODWORD(v26) & 0x3FF) & 0x3E0u) >> 3] | (*(int *)&v27[(((*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | (*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C000000u) >> 24] << 26) | *(unsigned int *)LODWORD(v26) & 0x3FF03FF) & 0x3E00000u) >> 19] << 21) | ((*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | (*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C000000u) >> 24] << 26) | *(unsigned int *)LODWORD(v26) & 0x3FF03FF) & 0x7C1F7C1F) & 0xFFE0FFE0);
Ritor1
parents:
diff changeset
6823 *(unsigned int *)LODWORD(v26) = result;
Ritor1
parents:
diff changeset
6824 LODWORD(v26) += 4;
Ritor1
parents:
diff changeset
6825 --v29;
Ritor1
parents:
diff changeset
6826 }
Ritor1
parents:
diff changeset
6827 while ( v29 );
Ritor1
parents:
diff changeset
6828 LODWORD(v26) += v37;
Ritor1
parents:
diff changeset
6829 v28 = v32 - 1;
Ritor1
parents:
diff changeset
6830 }
Ritor1
parents:
diff changeset
6831 while ( v32 != 1 );
Ritor1
parents:
diff changeset
6832 }
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6833 }*/
0
Ritor1
parents:
diff changeset
6834 return result;
Ritor1
parents:
diff changeset
6835 }
Ritor1
parents:
diff changeset
6836
Ritor1
parents:
diff changeset
6837 //----- (004A5B81) --------------------------------------------------------
727
da130dd3092a Big time Travel ouverhaul
Nomad
parents: 710
diff changeset
6838 void Render::SetTextureClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW)
0
Ritor1
parents:
diff changeset
6839 {
Ritor1
parents:
diff changeset
6840 this->bClip = 1;
Ritor1
parents:
diff changeset
6841 this->uClipY = uY;
Ritor1
parents:
diff changeset
6842 this->uClipX = uX;
Ritor1
parents:
diff changeset
6843 this->uClipW = uW;
Ritor1
parents:
diff changeset
6844 this->uClipZ = uZ;
Ritor1
parents:
diff changeset
6845 }
Ritor1
parents:
diff changeset
6846
Ritor1
parents:
diff changeset
6847 //----- (004A5BB6) --------------------------------------------------------
727
da130dd3092a Big time Travel ouverhaul
Nomad
parents: 710
diff changeset
6848 void Render::ResetTextureClipRect()
0
Ritor1
parents:
diff changeset
6849 {
Ritor1
parents:
diff changeset
6850 this->uClipY = 0;
Ritor1
parents:
diff changeset
6851 this->uClipX = 0;
Ritor1
parents:
diff changeset
6852 this->bClip = 1;
Ritor1
parents:
diff changeset
6853 this->uClipW = 480;
Ritor1
parents:
diff changeset
6854 this->uClipZ = 640;
Ritor1
parents:
diff changeset
6855 }
Ritor1
parents:
diff changeset
6856
Ritor1
parents:
diff changeset
6857 //----- (004A5BE3) --------------------------------------------------------
Ritor1
parents:
diff changeset
6858 void Render::DrawTextureRGB(unsigned int uOutX, unsigned int uOutY, RGBTexture *a4)
Ritor1
parents:
diff changeset
6859 {
Ritor1
parents:
diff changeset
6860 int v4; // edi@3
Ritor1
parents:
diff changeset
6861 unsigned __int16 *v5; // edx@3
Ritor1
parents:
diff changeset
6862 unsigned __int16 *v6; // esi@3
Ritor1
parents:
diff changeset
6863 unsigned int v8; // eax@5
Ritor1
parents:
diff changeset
6864 unsigned int v9; // ebx@5
Ritor1
parents:
diff changeset
6865 unsigned int v11; // eax@7
Ritor1
parents:
diff changeset
6866 unsigned int v12; // ebx@8
Ritor1
parents:
diff changeset
6867 unsigned int v15; // eax@14
Ritor1
parents:
diff changeset
6868 int v19; // [sp+10h] [bp-8h]@3
Ritor1
parents:
diff changeset
6869 unsigned int uOutXa; // [sp+20h] [bp+8h]@16
Ritor1
parents:
diff changeset
6870 int v23; // [sp+28h] [bp+10h]@3
Ritor1
parents:
diff changeset
6871
Ritor1
parents:
diff changeset
6872 if ( this->uNumSceneBegins && a4 )
Ritor1
parents:
diff changeset
6873 {
Ritor1
parents:
diff changeset
6874 v4 = a4->uWidth;
Ritor1
parents:
diff changeset
6875 v5 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch];
Ritor1
parents:
diff changeset
6876 v6 = a4->pPixels;
Ritor1
parents:
diff changeset
6877 v23 = a4->uHeight;
Ritor1
parents:
diff changeset
6878 v19 = v4;
Ritor1
parents:
diff changeset
6879 if ( this->bClip )
Ritor1
parents:
diff changeset
6880 {
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6881 if ( (signed int)uOutX < (signed int)this->uClipX )
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6882 {
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6883 v8 = this->uClipX - uOutX;
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6884 v9 = uOutX - this->uClipX;
0
Ritor1
parents:
diff changeset
6885 v8 *= 2;
Ritor1
parents:
diff changeset
6886 v4 += v9;
Ritor1
parents:
diff changeset
6887 v6 = (unsigned __int16 *)((char *)v6 + v8);
Ritor1
parents:
diff changeset
6888 v5 = (unsigned __int16 *)((char *)v5 + v8);
Ritor1
parents:
diff changeset
6889 }
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6890 if ( (signed int)uOutY < (signed int)this->uClipY )
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6891 {
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6892 v11 = this->uClipY - uOutY;
0
Ritor1
parents:
diff changeset
6893 v6 += v19 * v11;
Ritor1
parents:
diff changeset
6894 v23 += uOutY - this->uClipY;
Ritor1
parents:
diff changeset
6895 v5 += this->uTargetSurfacePitch * v11;
Ritor1
parents:
diff changeset
6896 }
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6897 v12 = max(this->uClipX, uOutX);
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6898 if ( (signed int)(v4 + v12) > (signed int)this->uClipZ )
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6899 {
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6900 v4 = this->uClipZ - max(this->uClipX, uOutX);
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6901 }
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6902 v15 = max(this->uClipY, uOutY);
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6903 if ( (signed int)(v15 + v23) > (signed int)this->uClipW )
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6904 {
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6905 v23 = this->uClipW - max(this->uClipY, uOutY);
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6906 }
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6907 }
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6908
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6909 for (int outerCounter = 0; outerCounter < v23; outerCounter++)
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6910 {
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6911 for (int counter = 0; counter < v4; counter++)
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6912 {
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6913 *v5 = *v6;
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6914 ++v5;
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6915 ++v6;
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6916 }
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6917 v6 += v19 - v4;
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6918 v5 += this->uTargetSurfacePitch - v4;
0
Ritor1
parents:
diff changeset
6919 }
Ritor1
parents:
diff changeset
6920 }
Ritor1
parents:
diff changeset
6921 }
Ritor1
parents:
diff changeset
6922
Ritor1
parents:
diff changeset
6923 //----- (004A5D33) --------------------------------------------------------
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6924 void Render::CreditsTextureScroll(unsigned int pX, unsigned int pY, int move_X, int move_Y, RGBTexture *pTexture)
0
Ritor1
parents:
diff changeset
6925 {
Ritor1
parents:
diff changeset
6926 unsigned __int16 *v7; // ebx@3
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6927 int full_width; // ecx@3
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6928 int full_height; // edi@3
0
Ritor1
parents:
diff changeset
6929 int v23; // edi@23
Ritor1
parents:
diff changeset
6930 unsigned __int16 *pTexturea; // [sp+28h] [bp+18h]@3
Ritor1
parents:
diff changeset
6931
Ritor1
parents:
diff changeset
6932 if ( this->uNumSceneBegins && pTexture )
Ritor1
parents:
diff changeset
6933 {
Ritor1
parents:
diff changeset
6934 v7 = &this->pTargetSurface[pX + pY * this->uTargetSurfacePitch];
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6935 full_width = pTexture->uWidth - move_X;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6936 full_height = pTexture->uHeight - move_Y;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6937 pTexturea = &pTexture->pPixels[move_X + move_Y * pTexture->uWidth];
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6938 if ( this->bClip )
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6939 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6940 if ( pX < this->uClipX )//åñëè êàäð âûõîäèò çà ïðàâóþ ãðàíèöó
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6941 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6942 pTexturea = (unsigned __int16 *)((char *)pTexturea + (2 * (this->uClipX - pX)));
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6943 full_width += pX - this->uClipX;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6944 v7 = (unsigned __int16 *)((char *)v7 + (2 * (this->uClipX - pX)));
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6945 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6946 if ( pY < this->uClipY )//åñëè êàäð âûõîäèò çà âåðõíþþ ãðàíèöó
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6947 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6948 pTexturea += pTexture->uWidth * (this->uClipY - pY);
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6949 full_height += pY - this->uClipY;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6950 v7 += this->uTargetSurfacePitch * (this->uClipY - pY);
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6951 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6952 if ( this->uClipX < pX )//åñëè ïðàâàÿ ãðàíèöà îêíà ìåíüøå õ êîîðäèíàòû êàäðà
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6953 this->uClipX = pX;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6954 if ( this->uClipY < pY )//åñëè âåðõíÿÿ ãðàíèöà îêíà ìåíüøå y êîîðäèíàòû êàäðà
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6955 this->uClipY = pY;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6956 if ( (full_width + this->uClipX) > this->uClipZ )//åñëè øèðèíà êàäðà âûõîäèò çà ïðàâóþ ãðàíèöó
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6957 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6958 if ( this->uClipX < pX )
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6959 this->uClipX = pX;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6960 full_width = this->uClipZ - this->uClipX;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6961 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6962 if ( (full_height + this->uClipY) > this->uClipW )//åñëè âûñîòà êàäðà âûõîäèò çà íèæíþþ ãðàíèöó
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6963 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6964 if ( this->uClipY < pY )
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6965 this->uClipY = pY;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6966 full_height = this->uClipW - this->uClipY;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6967 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6968 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6969 if ( full_height > 0 )
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6970 {
0
Ritor1
parents:
diff changeset
6971 do
Ritor1
parents:
diff changeset
6972 {
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6973 if ( full_width > 0 )
0
Ritor1
parents:
diff changeset
6974 {
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6975 v23 = full_width;
0
Ritor1
parents:
diff changeset
6976 do
Ritor1
parents:
diff changeset
6977 {
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6978 if ( *pTexturea != TargetColor(0, 0xFFu, 0xFFu) )
0
Ritor1
parents:
diff changeset
6979 *v7 = *pTexturea;
Ritor1
parents:
diff changeset
6980 ++pTexturea;
Ritor1
parents:
diff changeset
6981 ++v7;
Ritor1
parents:
diff changeset
6982 --v23;
Ritor1
parents:
diff changeset
6983 }
Ritor1
parents:
diff changeset
6984 while ( v23 );
Ritor1
parents:
diff changeset
6985 }
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6986 v7 += this->uTargetSurfacePitch - full_width;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6987 pTexturea = (unsigned __int16 *)((char *)pTexturea + 2 * (pTexture->uWidth - full_width));
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6988 --full_height;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6989 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6990 while ( full_height );
0
Ritor1
parents:
diff changeset
6991 }
Ritor1
parents:
diff changeset
6992 }
Ritor1
parents:
diff changeset
6993 }
Ritor1
parents:
diff changeset
6994
Ritor1
parents:
diff changeset
6995 //----- (004A6E7E) --------------------------------------------------------
Ritor1
parents:
diff changeset
6996 void Render::_4A6E7E(unsigned int a2, unsigned int a3, Texture *a4)
Ritor1
parents:
diff changeset
6997 {
Ritor1
parents:
diff changeset
6998 unsigned __int16 *v4; // eax@4
Ritor1
parents:
diff changeset
6999 int v5; // edx@4
Ritor1
parents:
diff changeset
7000 unsigned int v6; // edi@4
Ritor1
parents:
diff changeset
7001 unsigned int v7; // edx@5
Ritor1
parents:
diff changeset
7002 unsigned int v8; // edx@6
Ritor1
parents:
diff changeset
7003 unsigned int v9; // edx@7
Ritor1
parents:
diff changeset
7004 unsigned int v10; // edx@8
Ritor1
parents:
diff changeset
7005 unsigned int v11; // ebx@9
Ritor1
parents:
diff changeset
7006 unsigned int v12; // esi@11
Ritor1
parents:
diff changeset
7007 unsigned int v13; // edx@12
Ritor1
parents:
diff changeset
7008 unsigned int v14; // ebx@15
Ritor1
parents:
diff changeset
7009 unsigned int v15; // esi@17
Ritor1
parents:
diff changeset
7010 unsigned int v16; // edi@18
Ritor1
parents:
diff changeset
7011 char v17; // zf@29
Ritor1
parents:
diff changeset
7012 int v18; // [sp+14h] [bp-Ch]@4
Ritor1
parents:
diff changeset
7013 int v19; // [sp+18h] [bp-8h]@4
Ritor1
parents:
diff changeset
7014 unsigned __int8 *v20; // [sp+1Ch] [bp-4h]@4
Ritor1
parents:
diff changeset
7015 int v21; // [sp+28h] [bp+8h]@25
Ritor1
parents:
diff changeset
7016 int v22; // [sp+28h] [bp+8h]@34
Ritor1
parents:
diff changeset
7017 unsigned int v23; // [sp+2Ch] [bp+Ch]@23
Ritor1
parents:
diff changeset
7018 unsigned int v24; // [sp+2Ch] [bp+Ch]@32
Ritor1
parents:
diff changeset
7019
Ritor1
parents:
diff changeset
7020 if ( this->uNumSceneBegins && a4 && a4->pPalette16 )
Ritor1
parents:
diff changeset
7021 {
Ritor1
parents:
diff changeset
7022 v4 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7023 v20 = a4->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
7024 v5 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
7025 v6 = a4->uTextureHeight;
Ritor1
parents:
diff changeset
7026 v19 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
7027 v18 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
7028 if ( this->bClip )
Ritor1
parents:
diff changeset
7029 {
Ritor1
parents:
diff changeset
7030 v7 = this->uClipX;
Ritor1
parents:
diff changeset
7031 if ( (signed int)a2 < (signed int)v7 )
Ritor1
parents:
diff changeset
7032 {
Ritor1
parents:
diff changeset
7033 v8 = v7 - a2;
Ritor1
parents:
diff changeset
7034 v20 += v8;
Ritor1
parents:
diff changeset
7035 v19 += a2 - this->uClipX;
Ritor1
parents:
diff changeset
7036 v4 += v8;
Ritor1
parents:
diff changeset
7037 }
Ritor1
parents:
diff changeset
7038 v9 = this->uClipY;
Ritor1
parents:
diff changeset
7039 if ( (signed int)a3 < (signed int)v9 )
Ritor1
parents:
diff changeset
7040 {
Ritor1
parents:
diff changeset
7041 v10 = v9 - a3;
Ritor1
parents:
diff changeset
7042 v20 += v18 * v10;
Ritor1
parents:
diff changeset
7043 v6 = a3 - this->uClipY + a4->uTextureHeight;
Ritor1
parents:
diff changeset
7044 v4 += this->uTargetSurfacePitch * v10;
Ritor1
parents:
diff changeset
7045 }
Ritor1
parents:
diff changeset
7046 v11 = this->uClipX;
Ritor1
parents:
diff changeset
7047 v5 = v19;
Ritor1
parents:
diff changeset
7048 if ( (signed int)v11 < (signed int)a2 )
Ritor1
parents:
diff changeset
7049 v11 = a2;
Ritor1
parents:
diff changeset
7050 v12 = this->uClipZ;
Ritor1
parents:
diff changeset
7051 if ( (signed int)(v19 + v11) > (signed int)v12 )
Ritor1
parents:
diff changeset
7052 {
Ritor1
parents:
diff changeset
7053 v13 = this->uClipX;
Ritor1
parents:
diff changeset
7054 if ( (signed int)v13 < (signed int)a2 )
Ritor1
parents:
diff changeset
7055 v13 = a2;
Ritor1
parents:
diff changeset
7056 v5 = v12 - v13;
Ritor1
parents:
diff changeset
7057 }
Ritor1
parents:
diff changeset
7058 v14 = this->uClipY;
Ritor1
parents:
diff changeset
7059 if ( (signed int)v14 < (signed int)a3 )
Ritor1
parents:
diff changeset
7060 v14 = a3;
Ritor1
parents:
diff changeset
7061 v15 = this->uClipW;
Ritor1
parents:
diff changeset
7062 if ( (signed int)(v6 + v14) > (signed int)v15 )
Ritor1
parents:
diff changeset
7063 {
Ritor1
parents:
diff changeset
7064 v16 = this->uClipY;
Ritor1
parents:
diff changeset
7065 if ( (signed int)v16 < (signed int)a3 )
Ritor1
parents:
diff changeset
7066 v16 = a3;
Ritor1
parents:
diff changeset
7067 v6 = v15 - v16;
Ritor1
parents:
diff changeset
7068 }
Ritor1
parents:
diff changeset
7069 }
Ritor1
parents:
diff changeset
7070 if ( pRenderer->uTargetGBits == 5 )
Ritor1
parents:
diff changeset
7071 {
Ritor1
parents:
diff changeset
7072 if ( (signed int)v6 > 0 )
Ritor1
parents:
diff changeset
7073 {
Ritor1
parents:
diff changeset
7074 v23 = v6;
Ritor1
parents:
diff changeset
7075 do
Ritor1
parents:
diff changeset
7076 {
Ritor1
parents:
diff changeset
7077 if ( v5 > 0 )
Ritor1
parents:
diff changeset
7078 {
Ritor1
parents:
diff changeset
7079 v21 = v5;
Ritor1
parents:
diff changeset
7080 do
Ritor1
parents:
diff changeset
7081 {
Ritor1
parents:
diff changeset
7082 if ( *v20 )
Ritor1
parents:
diff changeset
7083 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x3DEF;
Ritor1
parents:
diff changeset
7084 ++v4;
Ritor1
parents:
diff changeset
7085 ++v20;
Ritor1
parents:
diff changeset
7086 --v21;
Ritor1
parents:
diff changeset
7087 }
Ritor1
parents:
diff changeset
7088 while ( v21 );
Ritor1
parents:
diff changeset
7089 }
Ritor1
parents:
diff changeset
7090 v20 += v18 - v5;
Ritor1
parents:
diff changeset
7091 v17 = v23-- == 1;
Ritor1
parents:
diff changeset
7092 v4 += this->uTargetSurfacePitch - v5;
Ritor1
parents:
diff changeset
7093 }
Ritor1
parents:
diff changeset
7094 while ( !v17 );
Ritor1
parents:
diff changeset
7095 }
Ritor1
parents:
diff changeset
7096 }
Ritor1
parents:
diff changeset
7097 else
Ritor1
parents:
diff changeset
7098 {
Ritor1
parents:
diff changeset
7099 if ( (signed int)v6 > 0 )
Ritor1
parents:
diff changeset
7100 {
Ritor1
parents:
diff changeset
7101 v24 = v6;
Ritor1
parents:
diff changeset
7102 do
Ritor1
parents:
diff changeset
7103 {
Ritor1
parents:
diff changeset
7104 if ( v5 > 0 )
Ritor1
parents:
diff changeset
7105 {
Ritor1
parents:
diff changeset
7106 v22 = v5;
Ritor1
parents:
diff changeset
7107 do
Ritor1
parents:
diff changeset
7108 {
Ritor1
parents:
diff changeset
7109 if ( *v20 )
Ritor1
parents:
diff changeset
7110 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x7BEF;
Ritor1
parents:
diff changeset
7111 ++v4;
Ritor1
parents:
diff changeset
7112 ++v20;
Ritor1
parents:
diff changeset
7113 --v22;
Ritor1
parents:
diff changeset
7114 }
Ritor1
parents:
diff changeset
7115 while ( v22 );
Ritor1
parents:
diff changeset
7116 }
Ritor1
parents:
diff changeset
7117 v20 += v18 - v5;
Ritor1
parents:
diff changeset
7118 v17 = v24-- == 1;
Ritor1
parents:
diff changeset
7119 v4 += this->uTargetSurfacePitch - v5;
Ritor1
parents:
diff changeset
7120 }
Ritor1
parents:
diff changeset
7121 while ( !v17 );
Ritor1
parents:
diff changeset
7122 }
Ritor1
parents:
diff changeset
7123 }
Ritor1
parents:
diff changeset
7124 }
Ritor1
parents:
diff changeset
7125 }
Ritor1
parents:
diff changeset
7126
Ritor1
parents:
diff changeset
7127 //----- (004A6DF5) --------------------------------------------------------
Ritor1
parents:
diff changeset
7128 int Render::_4A6DF5(unsigned __int16 *pBitmap, unsigned int uBitmapPitch, Vec2_int_ *pBitmapXY, unsigned __int16 *pTarget, unsigned int uTargetPitch, Vec4_int_ *a7)
Ritor1
parents:
diff changeset
7129 {
Ritor1
parents:
diff changeset
7130 int result; // eax@0
Ritor1
parents:
diff changeset
7131 int v8; // ecx@3
Ritor1
parents:
diff changeset
7132 unsigned __int16 *v9; // edi@4
Ritor1
parents:
diff changeset
7133 unsigned __int16 *v10; // ebx@4
Ritor1
parents:
diff changeset
7134 int v11; // esi@4
Ritor1
parents:
diff changeset
7135 unsigned __int16 *pBitmapa; // [sp+14h] [bp+8h]@3
Ritor1
parents:
diff changeset
7136 unsigned __int16 *pTargeta; // [sp+20h] [bp+14h]@3
Ritor1
parents:
diff changeset
7137
Ritor1
parents:
diff changeset
7138 if ( pBitmap )
Ritor1
parents:
diff changeset
7139 {
Ritor1
parents:
diff changeset
7140 if ( pTarget )
Ritor1
parents:
diff changeset
7141 {
Ritor1
parents:
diff changeset
7142 pBitmapa = &pBitmap[pBitmapXY->x + uBitmapPitch * pBitmapXY->y];
Ritor1
parents:
diff changeset
7143 pTargeta = &pTarget[a7->x + uTargetPitch * a7->y];
Ritor1
parents:
diff changeset
7144 v8 = a7->z - a7->x;
Ritor1
parents:
diff changeset
7145 result = a7->w - a7->y;
Ritor1
parents:
diff changeset
7146 if ( result > 0 )
Ritor1
parents:
diff changeset
7147 {
Ritor1
parents:
diff changeset
7148 v9 = pBitmapa;
Ritor1
parents:
diff changeset
7149 v10 = pTargeta;
Ritor1
parents:
diff changeset
7150 v11 = a7->w - a7->y;
Ritor1
parents:
diff changeset
7151 do
Ritor1
parents:
diff changeset
7152 {
Ritor1
parents:
diff changeset
7153 if ( v8 > 0 )
Ritor1
parents:
diff changeset
7154 {
Ritor1
parents:
diff changeset
7155 result = v8;
Ritor1
parents:
diff changeset
7156 do
Ritor1
parents:
diff changeset
7157 {
Ritor1
parents:
diff changeset
7158 *v9 = *v10;
Ritor1
parents:
diff changeset
7159 ++v9;
Ritor1
parents:
diff changeset
7160 ++v10;
Ritor1
parents:
diff changeset
7161 --result;
Ritor1
parents:
diff changeset
7162 }
Ritor1
parents:
diff changeset
7163 while ( result );
Ritor1
parents:
diff changeset
7164 }
Ritor1
parents:
diff changeset
7165 v9 += uBitmapPitch - v8;
Ritor1
parents:
diff changeset
7166 v10 += uTargetPitch - v8;
Ritor1
parents:
diff changeset
7167 --v11;
Ritor1
parents:
diff changeset
7168 }
Ritor1
parents:
diff changeset
7169 while ( v11 );
Ritor1
parents:
diff changeset
7170 }
Ritor1
parents:
diff changeset
7171 }
Ritor1
parents:
diff changeset
7172 }
Ritor1
parents:
diff changeset
7173 return result;
Ritor1
parents:
diff changeset
7174 }
Ritor1
parents:
diff changeset
7175
Ritor1
parents:
diff changeset
7176 //----- (004A6D87) --------------------------------------------------------
Ritor1
parents:
diff changeset
7177 void Render::FillRectFast(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, unsigned int uColor16)
Ritor1
parents:
diff changeset
7178 {
Ritor1
parents:
diff changeset
7179 if (!uNumSceneBegins)
Ritor1
parents:
diff changeset
7180 return;
Ritor1
parents:
diff changeset
7181
Ritor1
parents:
diff changeset
7182 unsigned __int32 twoColors = (uColor16 << 16) | uColor16;
Ritor1
parents:
diff changeset
7183 for (uint y = 0; y < uHeight; ++y)
Ritor1
parents:
diff changeset
7184 {
Ritor1
parents:
diff changeset
7185 auto pDst = &pTargetSurface[uX + (y + uY) * uTargetSurfacePitch];
Ritor1
parents:
diff changeset
7186
Ritor1
parents:
diff changeset
7187 memset32(pDst, twoColors, uWidth / 2);
Ritor1
parents:
diff changeset
7188 if (uWidth & 1)
Ritor1
parents:
diff changeset
7189 pDst[uWidth - 1] = uColor16;
Ritor1
parents:
diff changeset
7190 }
Ritor1
parents:
diff changeset
7191 }
Ritor1
parents:
diff changeset
7192
Ritor1
parents:
diff changeset
7193 //----- (004A6C4F) --------------------------------------------------------
Ritor1
parents:
diff changeset
7194 void Render::DrawText(signed int uOutX, signed int uOutY, unsigned __int8 *pFontPixels, unsigned int uCharWidth, unsigned int uCharHeight, unsigned __int16 *pFontPalette, unsigned __int16 uFaceColor, unsigned __int16 uShadowColor)
Ritor1
parents:
diff changeset
7195 {
Ritor1
parents:
diff changeset
7196 unsigned int v9; // edi@2
Ritor1
parents:
diff changeset
7197 unsigned int v10; // esi@2
Ritor1
parents:
diff changeset
7198 unsigned __int16 *v11; // eax@2
Ritor1
parents:
diff changeset
7199 unsigned int v12; // ebx@3
Ritor1
parents:
diff changeset
7200 signed int v13; // edx@5
Ritor1
parents:
diff changeset
7201 int v14; // edx@6
Ritor1
parents:
diff changeset
7202 signed int v15; // ebx@7
Ritor1
parents:
diff changeset
7203 unsigned int v16; // edx@9
Ritor1
parents:
diff changeset
7204 signed int v17; // edi@10
Ritor1
parents:
diff changeset
7205 signed int v18; // ebx@13
Ritor1
parents:
diff changeset
7206 unsigned int v19; // edx@15
Ritor1
parents:
diff changeset
7207 signed int v20; // esi@16
Ritor1
parents:
diff changeset
7208 unsigned int v21; // esi@22
Ritor1
parents:
diff changeset
7209 unsigned __int16 v22; // dx@24
Ritor1
parents:
diff changeset
7210 char v23; // zf@28
Ritor1
parents:
diff changeset
7211 unsigned __int8 *v24; // [sp+Ch] [bp-4h]@2
Ritor1
parents:
diff changeset
7212 unsigned int uOutXa; // [sp+18h] [bp+8h]@20
Ritor1
parents:
diff changeset
7213
Ritor1
parents:
diff changeset
7214 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7215 {
Ritor1
parents:
diff changeset
7216 v9 = uCharWidth;
Ritor1
parents:
diff changeset
7217 v10 = uCharHeight;
Ritor1
parents:
diff changeset
7218 v11 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch];
Ritor1
parents:
diff changeset
7219 v24 = pFontPixels;
Ritor1
parents:
diff changeset
7220 if ( this->bClip )
Ritor1
parents:
diff changeset
7221 {
Ritor1
parents:
diff changeset
7222 v12 = this->uClipX;
Ritor1
parents:
diff changeset
7223 if ( uOutX < (signed int)v12 )
Ritor1
parents:
diff changeset
7224 {
Ritor1
parents:
diff changeset
7225 v24 = &pFontPixels[v12 - uOutX];
Ritor1
parents:
diff changeset
7226 v11 += v12 - uOutX;
Ritor1
parents:
diff changeset
7227 v9 = uCharWidth + uOutX - v12;
Ritor1
parents:
diff changeset
7228 }
Ritor1
parents:
diff changeset
7229 v13 = this->uClipY;
Ritor1
parents:
diff changeset
7230 if ( uOutY < v13 )
Ritor1
parents:
diff changeset
7231 {
Ritor1
parents:
diff changeset
7232 v14 = v13 - uOutY;
Ritor1
parents:
diff changeset
7233 v24 += uCharWidth * v14;
Ritor1
parents:
diff changeset
7234 v10 = uCharHeight + uOutY - this->uClipY;
Ritor1
parents:
diff changeset
7235 v11 += this->uTargetSurfacePitch * v14;
Ritor1
parents:
diff changeset
7236 }
Ritor1
parents:
diff changeset
7237 v15 = this->uClipX;
Ritor1
parents:
diff changeset
7238 if ( v15 < uOutX )
Ritor1
parents:
diff changeset
7239 v15 = uOutX;
Ritor1
parents:
diff changeset
7240 v16 = this->uClipZ;
Ritor1
parents:
diff changeset
7241 if ( (signed int)(v9 + v15) > (signed int)v16 )
Ritor1
parents:
diff changeset
7242 {
Ritor1
parents:
diff changeset
7243 v17 = this->uClipX;
Ritor1
parents:
diff changeset
7244 if ( v17 < uOutX )
Ritor1
parents:
diff changeset
7245 v17 = uOutX;
Ritor1
parents:
diff changeset
7246 v9 = v16 - v17;
Ritor1
parents:
diff changeset
7247 }
Ritor1
parents:
diff changeset
7248 v18 = this->uClipY;
Ritor1
parents:
diff changeset
7249 if ( v18 < uOutY )
Ritor1
parents:
diff changeset
7250 v18 = uOutY;
Ritor1
parents:
diff changeset
7251 v19 = this->uClipW;
Ritor1
parents:
diff changeset
7252 if ( (signed int)(v10 + v18) > (signed int)v19 )
Ritor1
parents:
diff changeset
7253 {
Ritor1
parents:
diff changeset
7254 v20 = this->uClipY;
Ritor1
parents:
diff changeset
7255 if ( v20 < uOutY )
Ritor1
parents:
diff changeset
7256 v20 = uOutY;
Ritor1
parents:
diff changeset
7257 v10 = v19 - v20;
Ritor1
parents:
diff changeset
7258 }
Ritor1
parents:
diff changeset
7259 }
Ritor1
parents:
diff changeset
7260 if ( (signed int)v10 > 0 )
Ritor1
parents:
diff changeset
7261 {
Ritor1
parents:
diff changeset
7262 uOutXa = v10;
Ritor1
parents:
diff changeset
7263 do
Ritor1
parents:
diff changeset
7264 {
Ritor1
parents:
diff changeset
7265 if ( (signed int)v9 > 0 )
Ritor1
parents:
diff changeset
7266 {
Ritor1
parents:
diff changeset
7267 v21 = v9;
Ritor1
parents:
diff changeset
7268 do
Ritor1
parents:
diff changeset
7269 {
Ritor1
parents:
diff changeset
7270 if ( *v24 )
Ritor1
parents:
diff changeset
7271 {
Ritor1
parents:
diff changeset
7272 v22 = uShadowColor;
Ritor1
parents:
diff changeset
7273 if ( *v24 != 1 )
Ritor1
parents:
diff changeset
7274 v22 = uFaceColor;
Ritor1
parents:
diff changeset
7275 *v11 = v22;
Ritor1
parents:
diff changeset
7276 }
Ritor1
parents:
diff changeset
7277 ++v11;
Ritor1
parents:
diff changeset
7278 ++v24;
Ritor1
parents:
diff changeset
7279 --v21;
Ritor1
parents:
diff changeset
7280 }
Ritor1
parents:
diff changeset
7281 while ( v21 );
Ritor1
parents:
diff changeset
7282 }
Ritor1
parents:
diff changeset
7283 v24 += uCharWidth - v9;
Ritor1
parents:
diff changeset
7284 v23 = uOutXa-- == 1;
Ritor1
parents:
diff changeset
7285 v11 += this->uTargetSurfacePitch - v9;
Ritor1
parents:
diff changeset
7286 }
Ritor1
parents:
diff changeset
7287 while ( !v23 );
Ritor1
parents:
diff changeset
7288 }
Ritor1
parents:
diff changeset
7289 }
Ritor1
parents:
diff changeset
7290 }
Ritor1
parents:
diff changeset
7291
Ritor1
parents:
diff changeset
7292 //----- (004A6A68) --------------------------------------------------------
1496
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7293 void Render::GetLeather(unsigned int a2, unsigned int a3, Texture *a4, __int16 height)
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7294 {
0
Ritor1
parents:
diff changeset
7295 Texture tex; // [sp+Ch] [bp-48h]@1
1496
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7296
0
Ritor1
parents:
diff changeset
7297 memcpy(&tex, a4, sizeof(tex));
1496
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7298 tex.uTextureHeight = a4->uTextureHeight - height;
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7299 if ( (signed __int16)tex.uTextureHeight > 0 )
0
Ritor1
parents:
diff changeset
7300 DrawTextureIndexed(a2, a3, &tex);
Ritor1
parents:
diff changeset
7301 }
Ritor1
parents:
diff changeset
7302
Ritor1
parents:
diff changeset
7303 //----- (004A6AB1) --------------------------------------------------------
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7304 void Render::DrawTextPalette( int x, int y, unsigned char* font_pixels, int a5, unsigned int uFontHeight, unsigned __int16 *pPalette, int a8 )
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7305 {
0
Ritor1
parents:
diff changeset
7306 int v8; // edi@2
Ritor1
parents:
diff changeset
7307 unsigned int v9; // esi@2
Ritor1
parents:
diff changeset
7308 unsigned __int16 *v10; // eax@2
Ritor1
parents:
diff changeset
7309 unsigned char *v11; // edx@2
Ritor1
parents:
diff changeset
7310 unsigned int v12; // ebx@3
Ritor1
parents:
diff changeset
7311 signed int v13; // edx@5
Ritor1
parents:
diff changeset
7312 int v14; // edx@6
Ritor1
parents:
diff changeset
7313 signed int v15; // ebx@7
Ritor1
parents:
diff changeset
7314 unsigned int v16; // edx@9
Ritor1
parents:
diff changeset
7315 signed int v17; // edi@10
Ritor1
parents:
diff changeset
7316 signed int v18; // ebx@13
Ritor1
parents:
diff changeset
7317 unsigned int v19; // edx@15
Ritor1
parents:
diff changeset
7318 signed int v20; // esi@16
Ritor1
parents:
diff changeset
7319 int v21; // ebx@22
Ritor1
parents:
diff changeset
7320 char v22; // zf@28
Ritor1
parents:
diff changeset
7321 int v23; // ebx@31
Ritor1
parents:
diff changeset
7322 unsigned __int16 v24; // si@35
Ritor1
parents:
diff changeset
7323 int v25; // [sp+Ch] [bp-4h]@2
Ritor1
parents:
diff changeset
7324 int v26; // [sp+1Ch] [bp+Ch]@24
Ritor1
parents:
diff changeset
7325 int v27; // [sp+1Ch] [bp+Ch]@33
Ritor1
parents:
diff changeset
7326 unsigned int v28; // [sp+20h] [bp+10h]@30
Ritor1
parents:
diff changeset
7327 unsigned int v29; // [sp+24h] [bp+14h]@22
Ritor1
parents:
diff changeset
7328 unsigned int v30; // [sp+24h] [bp+14h]@31
Ritor1
parents:
diff changeset
7329
Ritor1
parents:
diff changeset
7330 auto a2 = x;
Ritor1
parents:
diff changeset
7331 auto a3 = y;
Ritor1
parents:
diff changeset
7332 auto a6 = uFontHeight;
Ritor1
parents:
diff changeset
7333 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7334 {
Ritor1
parents:
diff changeset
7335 v8 = a5;
Ritor1
parents:
diff changeset
7336 v9 = a6;
Ritor1
parents:
diff changeset
7337 v10 = &pTargetSurface[x + y * uTargetSurfacePitch];
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7338 v11 = (unsigned char *)font_pixels;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7339 v25 = (int)font_pixels;
0
Ritor1
parents:
diff changeset
7340 if ( this->bClip )
Ritor1
parents:
diff changeset
7341 {
Ritor1
parents:
diff changeset
7342 v12 = this->uClipX;
Ritor1
parents:
diff changeset
7343 if ( a2 < (signed int)v12 )
Ritor1
parents:
diff changeset
7344 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7345 v25 = v12 - a2 + (int)font_pixels;
0
Ritor1
parents:
diff changeset
7346 v10 += v12 - a2;
Ritor1
parents:
diff changeset
7347 v8 = a5 + a2 - v12;
Ritor1
parents:
diff changeset
7348 }
Ritor1
parents:
diff changeset
7349 v13 = this->uClipY;
Ritor1
parents:
diff changeset
7350 if ( a3 < v13 )
Ritor1
parents:
diff changeset
7351 {
Ritor1
parents:
diff changeset
7352 v14 = v13 - a3;
Ritor1
parents:
diff changeset
7353 v25 += a5 * v14;
Ritor1
parents:
diff changeset
7354 v9 = a6 + a3 - this->uClipY;
Ritor1
parents:
diff changeset
7355 v10 += this->uTargetSurfacePitch * v14;
Ritor1
parents:
diff changeset
7356 }
Ritor1
parents:
diff changeset
7357 v15 = this->uClipX;
Ritor1
parents:
diff changeset
7358 if ( v15 < a2 )
Ritor1
parents:
diff changeset
7359 v15 = a2;
Ritor1
parents:
diff changeset
7360 v16 = this->uClipZ;
Ritor1
parents:
diff changeset
7361 if ( v8 + v15 > (signed int)v16 )
Ritor1
parents:
diff changeset
7362 {
Ritor1
parents:
diff changeset
7363 v17 = this->uClipX;
Ritor1
parents:
diff changeset
7364 if ( v17 < a2 )
Ritor1
parents:
diff changeset
7365 v17 = a2;
Ritor1
parents:
diff changeset
7366 v8 = v16 - v17;
Ritor1
parents:
diff changeset
7367 }
Ritor1
parents:
diff changeset
7368 v18 = this->uClipY;
Ritor1
parents:
diff changeset
7369 if ( v18 < a3 )
Ritor1
parents:
diff changeset
7370 v18 = a3;
Ritor1
parents:
diff changeset
7371 v19 = this->uClipW;
Ritor1
parents:
diff changeset
7372 if ( (signed int)(v9 + v18) > (signed int)v19 )
Ritor1
parents:
diff changeset
7373 {
Ritor1
parents:
diff changeset
7374 v20 = this->uClipY;
Ritor1
parents:
diff changeset
7375 if ( v20 < a3 )
Ritor1
parents:
diff changeset
7376 v20 = a3;
Ritor1
parents:
diff changeset
7377 v9 = v19 - v20;
Ritor1
parents:
diff changeset
7378 }
Ritor1
parents:
diff changeset
7379 v11 = (unsigned char *)v25;
Ritor1
parents:
diff changeset
7380 }
Ritor1
parents:
diff changeset
7381 if ( a8 )
Ritor1
parents:
diff changeset
7382 {
Ritor1
parents:
diff changeset
7383 v28 = pRenderer->uTargetGMask | pRenderer->uTargetBMask;
Ritor1
parents:
diff changeset
7384 if ( (signed int)v9 > 0 )
Ritor1
parents:
diff changeset
7385 {
Ritor1
parents:
diff changeset
7386 v23 = a5;
Ritor1
parents:
diff changeset
7387 v30 = v9;
Ritor1
parents:
diff changeset
7388 do
Ritor1
parents:
diff changeset
7389 {
Ritor1
parents:
diff changeset
7390 if ( v8 > 0 )
Ritor1
parents:
diff changeset
7391 {
Ritor1
parents:
diff changeset
7392 v27 = v8;
Ritor1
parents:
diff changeset
7393 do
Ritor1
parents:
diff changeset
7394 {
Ritor1
parents:
diff changeset
7395 if ( *v11 )
Ritor1
parents:
diff changeset
7396 v24 = pPalette[*v11];
Ritor1
parents:
diff changeset
7397 else
Ritor1
parents:
diff changeset
7398 v24 = v28;
Ritor1
parents:
diff changeset
7399 *v10 = v24;
Ritor1
parents:
diff changeset
7400 ++v10;
Ritor1
parents:
diff changeset
7401 ++v11;
Ritor1
parents:
diff changeset
7402 --v27;
Ritor1
parents:
diff changeset
7403 }
Ritor1
parents:
diff changeset
7404 while ( v27 );
Ritor1
parents:
diff changeset
7405 }
Ritor1
parents:
diff changeset
7406 v11 += v23 - v8;
Ritor1
parents:
diff changeset
7407 v22 = v30-- == 1;
Ritor1
parents:
diff changeset
7408 v10 += this->uTargetSurfacePitch - v8;
Ritor1
parents:
diff changeset
7409 }
Ritor1
parents:
diff changeset
7410 while ( !v22 );
Ritor1
parents:
diff changeset
7411 }
Ritor1
parents:
diff changeset
7412 }
Ritor1
parents:
diff changeset
7413 else
Ritor1
parents:
diff changeset
7414 {
Ritor1
parents:
diff changeset
7415 if ( (signed int)v9 > 0 )
Ritor1
parents:
diff changeset
7416 {
Ritor1
parents:
diff changeset
7417 v21 = a5;
Ritor1
parents:
diff changeset
7418 v29 = v9;
Ritor1
parents:
diff changeset
7419 do
Ritor1
parents:
diff changeset
7420 {
Ritor1
parents:
diff changeset
7421 if ( v8 > 0 )
Ritor1
parents:
diff changeset
7422 {
Ritor1
parents:
diff changeset
7423 v26 = v8;
Ritor1
parents:
diff changeset
7424 do
Ritor1
parents:
diff changeset
7425 {
Ritor1
parents:
diff changeset
7426 if ( *v11 )
Ritor1
parents:
diff changeset
7427 *v10 = pPalette[*v11];
Ritor1
parents:
diff changeset
7428 ++v10;
Ritor1
parents:
diff changeset
7429 ++v11;
Ritor1
parents:
diff changeset
7430 --v26;
Ritor1
parents:
diff changeset
7431 }
Ritor1
parents:
diff changeset
7432 while ( v26 );
Ritor1
parents:
diff changeset
7433 }
Ritor1
parents:
diff changeset
7434 v11 += v21 - v8;
Ritor1
parents:
diff changeset
7435 v22 = v29-- == 1;
Ritor1
parents:
diff changeset
7436 v10 += this->uTargetSurfacePitch - v8;
Ritor1
parents:
diff changeset
7437 }
Ritor1
parents:
diff changeset
7438 while ( !v22 );
Ritor1
parents:
diff changeset
7439 }
Ritor1
parents:
diff changeset
7440 }
Ritor1
parents:
diff changeset
7441 }
Ritor1
parents:
diff changeset
7442 }
Ritor1
parents:
diff changeset
7443
Ritor1
parents:
diff changeset
7444 //----- (004A68EF) --------------------------------------------------------
Ritor1
parents:
diff changeset
7445 void Render::DrawTransparentGreenShade(signed int a2, signed int a3, Texture *pTexture)
Ritor1
parents:
diff changeset
7446 {
Ritor1
parents:
diff changeset
7447 Texture *v4; // edi@2
Ritor1
parents:
diff changeset
7448 unsigned int v5; // ebx@4
Ritor1
parents:
diff changeset
7449 unsigned __int16 *v6; // eax@4
Ritor1
parents:
diff changeset
7450 signed int v7; // edx@5
Ritor1
parents:
diff changeset
7451 int v8; // edx@6
Ritor1
parents:
diff changeset
7452 signed int v9; // edx@7
Ritor1
parents:
diff changeset
7453 int v10; // edx@8
Ritor1
parents:
diff changeset
7454 signed int v11; // edx@9
Ritor1
parents:
diff changeset
7455 signed int v12; // esi@12
Ritor1
parents:
diff changeset
7456 signed int v13; // esi@15
Ritor1
parents:
diff changeset
7457 unsigned int v14; // edx@17
Ritor1
parents:
diff changeset
7458 signed int v15; // esi@18
Ritor1
parents:
diff changeset
7459 unsigned __int8 *v16; // ebx@22
Ritor1
parents:
diff changeset
7460 char v17; // zf@28
Ritor1
parents:
diff changeset
7461 int v18; // [sp+10h] [bp-10h]@4
Ritor1
parents:
diff changeset
7462 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4
Ritor1
parents:
diff changeset
7463 int v20; // [sp+1Ch] [bp-4h]@4
Ritor1
parents:
diff changeset
7464 int v21; // [sp+28h] [bp+8h]@24
Ritor1
parents:
diff changeset
7465 unsigned int v22; // [sp+2Ch] [bp+Ch]@22
Ritor1
parents:
diff changeset
7466 unsigned int pTexturea; // [sp+30h] [bp+10h]@11
Ritor1
parents:
diff changeset
7467
Ritor1
parents:
diff changeset
7468 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7469 {
Ritor1
parents:
diff changeset
7470 v4 = pTexture;
Ritor1
parents:
diff changeset
7471 if ( pTexture )
Ritor1
parents:
diff changeset
7472 {
Ritor1
parents:
diff changeset
7473 if ( pTexture->pPalette16 )
Ritor1
parents:
diff changeset
7474 {
Ritor1
parents:
diff changeset
7475 v5 = pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
7476 v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7477 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
7478 v20 = pTexture->uTextureWidth;
Ritor1
parents:
diff changeset
7479 v18 = pTexture->uTextureWidth;
Ritor1
parents:
diff changeset
7480 if ( this->bClip )
Ritor1
parents:
diff changeset
7481 {
Ritor1
parents:
diff changeset
7482 v7 = this->uClipX;
Ritor1
parents:
diff changeset
7483 if ( a2 < v7 )
Ritor1
parents:
diff changeset
7484 {
Ritor1
parents:
diff changeset
7485 v8 = v7 - a2;
Ritor1
parents:
diff changeset
7486 v19 += v8;
Ritor1
parents:
diff changeset
7487 v20 += a2 - this->uClipX;
Ritor1
parents:
diff changeset
7488 v6 += v8;
Ritor1
parents:
diff changeset
7489 }
Ritor1
parents:
diff changeset
7490 v9 = this->uClipY;
Ritor1
parents:
diff changeset
7491 v5 = pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
7492 if ( a3 < v9 )
Ritor1
parents:
diff changeset
7493 {
Ritor1
parents:
diff changeset
7494 v10 = v9 - a3;
Ritor1
parents:
diff changeset
7495 v19 += v18 * v10;
Ritor1
parents:
diff changeset
7496 v5 = a3 - this->uClipY + pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
7497 v4 = pTexture;
Ritor1
parents:
diff changeset
7498 v6 += this->uTargetSurfacePitch * v10;
Ritor1
parents:
diff changeset
7499 }
Ritor1
parents:
diff changeset
7500 v11 = this->uClipX;
Ritor1
parents:
diff changeset
7501 if ( v11 < a2 )
Ritor1
parents:
diff changeset
7502 v11 = a2;
Ritor1
parents:
diff changeset
7503 pTexturea = this->uClipZ;
Ritor1
parents:
diff changeset
7504 if ( v11 + v20 > (signed int)pTexturea )
Ritor1
parents:
diff changeset
7505 {
Ritor1
parents:
diff changeset
7506 v12 = this->uClipX;
Ritor1
parents:
diff changeset
7507 if ( v12 < a2 )
Ritor1
parents:
diff changeset
7508 v12 = a2;
Ritor1
parents:
diff changeset
7509 v20 = pTexturea - v12;
Ritor1
parents:
diff changeset
7510 }
Ritor1
parents:
diff changeset
7511 v13 = this->uClipY;
Ritor1
parents:
diff changeset
7512 if ( v13 < a3 )
Ritor1
parents:
diff changeset
7513 v13 = a3;
Ritor1
parents:
diff changeset
7514 v14 = this->uClipW;
Ritor1
parents:
diff changeset
7515 if ( (signed int)(v5 + v13) > (signed int)v14 )
Ritor1
parents:
diff changeset
7516 {
Ritor1
parents:
diff changeset
7517 v15 = this->uClipY;
Ritor1
parents:
diff changeset
7518 if ( v15 < a3 )
Ritor1
parents:
diff changeset
7519 v15 = a3;
Ritor1
parents:
diff changeset
7520 v5 = v14 - v15;
Ritor1
parents:
diff changeset
7521 }
Ritor1
parents:
diff changeset
7522 }
Ritor1
parents:
diff changeset
7523 if ( (signed int)v5 > 0 )
Ritor1
parents:
diff changeset
7524 {
Ritor1
parents:
diff changeset
7525 v22 = v5;
Ritor1
parents:
diff changeset
7526 v16 = v19;
Ritor1
parents:
diff changeset
7527 do
Ritor1
parents:
diff changeset
7528 {
Ritor1
parents:
diff changeset
7529 if ( v20 > 0 )
Ritor1
parents:
diff changeset
7530 {
Ritor1
parents:
diff changeset
7531 v21 = v20;
Ritor1
parents:
diff changeset
7532 do
Ritor1
parents:
diff changeset
7533 {
Ritor1
parents:
diff changeset
7534 if ( *v16 )
Ritor1
parents:
diff changeset
7535 *v6 = this->uTargetGMask & v4->pPalette16[*v16];
Ritor1
parents:
diff changeset
7536 ++v6;
Ritor1
parents:
diff changeset
7537 ++v16;
Ritor1
parents:
diff changeset
7538 --v21;
Ritor1
parents:
diff changeset
7539 }
Ritor1
parents:
diff changeset
7540 while ( v21 );
Ritor1
parents:
diff changeset
7541 }
Ritor1
parents:
diff changeset
7542 v16 += v18 - v20;
Ritor1
parents:
diff changeset
7543 v17 = v22-- == 1;
Ritor1
parents:
diff changeset
7544 v6 += this->uTargetSurfacePitch - v20;
Ritor1
parents:
diff changeset
7545 }
Ritor1
parents:
diff changeset
7546 while ( !v17 );
Ritor1
parents:
diff changeset
7547 }
Ritor1
parents:
diff changeset
7548 }
Ritor1
parents:
diff changeset
7549 }
Ritor1
parents:
diff changeset
7550 }
Ritor1
parents:
diff changeset
7551 }
Ritor1
parents:
diff changeset
7552
Ritor1
parents:
diff changeset
7553 //----- (004A6776) --------------------------------------------------------
315
2a09e1d6fc8f Some 0041D895 GameUI_DrawItemInfo overhaul
Nomad
parents: 265
diff changeset
7554 void Render::DrawTransparentRedShade(unsigned int a2, unsigned int a3, Texture *a4)
0
Ritor1
parents:
diff changeset
7555 {
Ritor1
parents:
diff changeset
7556 Texture *v4; // edi@2
Ritor1
parents:
diff changeset
7557 unsigned int v5; // ebx@4
Ritor1
parents:
diff changeset
7558 unsigned __int16 *v6; // eax@4
Ritor1
parents:
diff changeset
7559 unsigned int v7; // edx@5
Ritor1
parents:
diff changeset
7560 unsigned int v8; // edx@6
Ritor1
parents:
diff changeset
7561 unsigned int v9; // edx@7
Ritor1
parents:
diff changeset
7562 unsigned int v10; // edx@8
Ritor1
parents:
diff changeset
7563 unsigned int v11; // edx@9
Ritor1
parents:
diff changeset
7564 unsigned int v12; // esi@12
Ritor1
parents:
diff changeset
7565 unsigned int v13; // esi@15
Ritor1
parents:
diff changeset
7566 unsigned int v14; // edx@17
Ritor1
parents:
diff changeset
7567 unsigned int v15; // esi@18
Ritor1
parents:
diff changeset
7568 unsigned __int8 *v16; // ebx@22
Ritor1
parents:
diff changeset
7569 char v17; // zf@28
Ritor1
parents:
diff changeset
7570 int v18; // [sp+10h] [bp-10h]@4
Ritor1
parents:
diff changeset
7571 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4
Ritor1
parents:
diff changeset
7572 int v20; // [sp+1Ch] [bp-4h]@4
Ritor1
parents:
diff changeset
7573 int a2a; // [sp+28h] [bp+8h]@24
Ritor1
parents:
diff changeset
7574 unsigned int a3a; // [sp+2Ch] [bp+Ch]@22
Ritor1
parents:
diff changeset
7575 unsigned int a4a; // [sp+30h] [bp+10h]@11
Ritor1
parents:
diff changeset
7576
Ritor1
parents:
diff changeset
7577 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7578 {
Ritor1
parents:
diff changeset
7579 v4 = a4;
Ritor1
parents:
diff changeset
7580 if ( a4 )
Ritor1
parents:
diff changeset
7581 {
Ritor1
parents:
diff changeset
7582 if ( a4->pPalette16 )
Ritor1
parents:
diff changeset
7583 {
Ritor1
parents:
diff changeset
7584 v5 = a4->uTextureHeight;
Ritor1
parents:
diff changeset
7585 v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7586 v19 = a4->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
7587 v20 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
7588 v18 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
7589 if ( this->bClip )
Ritor1
parents:
diff changeset
7590 {
Ritor1
parents:
diff changeset
7591 v7 = this->uClipX;
Ritor1
parents:
diff changeset
7592 if ( (signed int)a2 < (signed int)v7 )
Ritor1
parents:
diff changeset
7593 {
Ritor1
parents:
diff changeset
7594 v8 = v7 - a2;
Ritor1
parents:
diff changeset
7595 v19 += v8;
Ritor1
parents:
diff changeset
7596 v20 += a2 - this->uClipX;
Ritor1
parents:
diff changeset
7597 v6 += v8;
Ritor1
parents:
diff changeset
7598 }
Ritor1
parents:
diff changeset
7599 v9 = this->uClipY;
Ritor1
parents:
diff changeset
7600 v5 = a4->uTextureHeight;
Ritor1
parents:
diff changeset
7601 if ( (signed int)a3 < (signed int)v9 )
Ritor1
parents:
diff changeset
7602 {
Ritor1
parents:
diff changeset
7603 v10 = v9 - a3;
Ritor1
parents:
diff changeset
7604 v19 += v18 * v10;
Ritor1
parents:
diff changeset
7605 v5 = a3 - this->uClipY + a4->uTextureHeight;
Ritor1
parents:
diff changeset
7606 v4 = a4;
Ritor1
parents:
diff changeset
7607 v6 += this->uTargetSurfacePitch * v10;
Ritor1
parents:
diff changeset
7608 }
Ritor1
parents:
diff changeset
7609 v11 = this->uClipX;
Ritor1
parents:
diff changeset
7610 if ( (signed int)v11 < (signed int)a2 )
Ritor1
parents:
diff changeset
7611 v11 = a2;
Ritor1
parents:
diff changeset
7612 a4a = this->uClipZ;
Ritor1
parents:
diff changeset
7613 if ( (signed int)(v11 + v20) > (signed int)a4a )
Ritor1
parents:
diff changeset
7614 {
Ritor1
parents:
diff changeset
7615 v12 = this->uClipX;
Ritor1
parents:
diff changeset
7616 if ( (signed int)v12 < (signed int)a2 )
Ritor1
parents:
diff changeset
7617 v12 = a2;
Ritor1
parents:
diff changeset
7618 v20 = a4a - v12;
Ritor1
parents:
diff changeset
7619 }
Ritor1
parents:
diff changeset
7620 v13 = this->uClipY;
Ritor1
parents:
diff changeset
7621 if ( (signed int)v13 < (signed int)a3 )
Ritor1
parents:
diff changeset
7622 v13 = a3;
Ritor1
parents:
diff changeset
7623 v14 = this->uClipW;
Ritor1
parents:
diff changeset
7624 if ( (signed int)(v5 + v13) > (signed int)v14 )
Ritor1
parents:
diff changeset
7625 {
Ritor1
parents:
diff changeset
7626 v15 = this->uClipY;
Ritor1
parents:
diff changeset
7627 if ( (signed int)v15 < (signed int)a3 )
Ritor1
parents:
diff changeset
7628 v15 = a3;
Ritor1
parents:
diff changeset
7629 v5 = v14 - v15;
Ritor1
parents:
diff changeset
7630 }
Ritor1
parents:
diff changeset
7631 }
Ritor1
parents:
diff changeset
7632 if ( (signed int)v5 > 0 )
Ritor1
parents:
diff changeset
7633 {
Ritor1
parents:
diff changeset
7634 a3a = v5;
Ritor1
parents:
diff changeset
7635 v16 = v19;
Ritor1
parents:
diff changeset
7636 do
Ritor1
parents:
diff changeset
7637 {
Ritor1
parents:
diff changeset
7638 if ( v20 > 0 )
Ritor1
parents:
diff changeset
7639 {
Ritor1
parents:
diff changeset
7640 a2a = v20;
Ritor1
parents:
diff changeset
7641 do
Ritor1
parents:
diff changeset
7642 {
Ritor1
parents:
diff changeset
7643 if ( *v16 )
Ritor1
parents:
diff changeset
7644 *v6 = this->uTargetRMask & v4->pPalette16[*v16];
Ritor1
parents:
diff changeset
7645 ++v6;
Ritor1
parents:
diff changeset
7646 ++v16;
Ritor1
parents:
diff changeset
7647 --a2a;
Ritor1
parents:
diff changeset
7648 }
Ritor1
parents:
diff changeset
7649 while ( a2a );
Ritor1
parents:
diff changeset
7650 }
Ritor1
parents:
diff changeset
7651 v16 += v18 - v20;
Ritor1
parents:
diff changeset
7652 v17 = a3a-- == 1;
Ritor1
parents:
diff changeset
7653 v6 += this->uTargetSurfacePitch - v20;
Ritor1
parents:
diff changeset
7654 }
Ritor1
parents:
diff changeset
7655 while ( !v17 );
Ritor1
parents:
diff changeset
7656 }
Ritor1
parents:
diff changeset
7657 }
Ritor1
parents:
diff changeset
7658 }
Ritor1
parents:
diff changeset
7659 }
Ritor1
parents:
diff changeset
7660 }
Ritor1
parents:
diff changeset
7661
Ritor1
parents:
diff changeset
7662 //----- (004A65CC) --------------------------------------------------------
Ritor1
parents:
diff changeset
7663 void Render::_4A65CC(unsigned int x, unsigned int y, Texture *a4, Texture *a5, int a6, int a7, int a8)
Ritor1
parents:
diff changeset
7664 {
Ritor1
parents:
diff changeset
7665 unsigned __int16 *v8; // esi@6
Ritor1
parents:
diff changeset
7666 unsigned int v9; // edi@6
Ritor1
parents:
diff changeset
7667 unsigned int v10; // eax@7
Ritor1
parents:
diff changeset
7668 unsigned int v11; // eax@8
Ritor1
parents:
diff changeset
7669 unsigned int v12; // eax@9
Ritor1
parents:
diff changeset
7670 unsigned int v13; // eax@10
Ritor1
parents:
diff changeset
7671 unsigned int v14; // edx@11
Ritor1
parents:
diff changeset
7672 unsigned int v15; // eax@13
Ritor1
parents:
diff changeset
7673 unsigned int v16; // edx@14
Ritor1
parents:
diff changeset
7674 unsigned int v17; // edx@17
Ritor1
parents:
diff changeset
7675 unsigned int v18; // eax@19
Ritor1
parents:
diff changeset
7676 unsigned int v19; // edx@20
Ritor1
parents:
diff changeset
7677 int v20; // eax@27
Ritor1
parents:
diff changeset
7678 int v21; // edx@29
Ritor1
parents:
diff changeset
7679 int v22; // [sp+Ch] [bp-Ch]@6
Ritor1
parents:
diff changeset
7680 int v23; // [sp+Ch] [bp-Ch]@24
Ritor1
parents:
diff changeset
7681 unsigned __int8 *v24; // [sp+14h] [bp-4h]@6
Ritor1
parents:
diff changeset
7682 int xa; // [sp+20h] [bp+8h]@26
Ritor1
parents:
diff changeset
7683 unsigned int ya; // [sp+24h] [bp+Ch]@24
Ritor1
parents:
diff changeset
7684 int v27; // [sp+2Ch] [bp+14h]@6
Ritor1
parents:
diff changeset
7685
Ritor1
parents:
diff changeset
7686 if ( this->uNumSceneBegins && a4 && a4->pPalette16 && a5 && a5->pPalette16 )
Ritor1
parents:
diff changeset
7687 {
Ritor1
parents:
diff changeset
7688 v8 = &this->pTargetSurface[x + y * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7689 v24 = a4->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
7690 v27 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
7691 v9 = a4->uTextureHeight;
Ritor1
parents:
diff changeset
7692 v22 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
7693 if ( this->bClip )
Ritor1
parents:
diff changeset
7694 {
Ritor1
parents:
diff changeset
7695 v10 = this->uClipX;
Ritor1
parents:
diff changeset
7696 if ( (signed int)x < (signed int)v10 )
Ritor1
parents:
diff changeset
7697 {
Ritor1
parents:
diff changeset
7698 v11 = v10 - x;
Ritor1
parents:
diff changeset
7699 v24 += v11;
Ritor1
parents:
diff changeset
7700 v27 += x - this->uClipX;
Ritor1
parents:
diff changeset
7701 v8 += v11;
Ritor1
parents:
diff changeset
7702 }
Ritor1
parents:
diff changeset
7703 v12 = this->uClipY;
Ritor1
parents:
diff changeset
7704 if ( (signed int)y < (signed int)v12 )
Ritor1
parents:
diff changeset
7705 {
Ritor1
parents:
diff changeset
7706 v13 = v12 - y;
Ritor1
parents:
diff changeset
7707 v24 += v22 * v13;
Ritor1
parents:
diff changeset
7708 v9 = y - this->uClipY + a4->uTextureHeight;
Ritor1
parents:
diff changeset
7709 v8 += this->uTargetSurfacePitch * v13;
Ritor1
parents:
diff changeset
7710 }
Ritor1
parents:
diff changeset
7711 v14 = this->uClipX;
Ritor1
parents:
diff changeset
7712 if ( (signed int)v14 < (signed int)x )
Ritor1
parents:
diff changeset
7713 v14 = x;
Ritor1
parents:
diff changeset
7714 v15 = this->uClipZ;
Ritor1
parents:
diff changeset
7715 if ( (signed int)(v27 + v14) > (signed int)v15 )
Ritor1
parents:
diff changeset
7716 {
Ritor1
parents:
diff changeset
7717 v16 = this->uClipX;
Ritor1
parents:
diff changeset
7718 if ( (signed int)v16 < (signed int)x )
Ritor1
parents:
diff changeset
7719 v16 = x;
Ritor1
parents:
diff changeset
7720 v27 = v15 - v16;
Ritor1
parents:
diff changeset
7721 }
Ritor1
parents:
diff changeset
7722 v17 = this->uClipY;
Ritor1
parents:
diff changeset
7723 if ( (signed int)v17 < (signed int)y )
Ritor1
parents:
diff changeset
7724 v17 = y;
Ritor1
parents:
diff changeset
7725 v18 = this->uClipW;
Ritor1
parents:
diff changeset
7726 if ( (signed int)(v9 + v17) > (signed int)v18 )
Ritor1
parents:
diff changeset
7727 {
Ritor1
parents:
diff changeset
7728 v19 = this->uClipY;
Ritor1
parents:
diff changeset
7729 if ( (signed int)v19 < (signed int)y )
Ritor1
parents:
diff changeset
7730 v19 = y;
Ritor1
parents:
diff changeset
7731 v9 = v18 - v19;
Ritor1
parents:
diff changeset
7732 }
Ritor1
parents:
diff changeset
7733 }
Ritor1
parents:
diff changeset
7734 if ( (signed int)v9 > 0 )
Ritor1
parents:
diff changeset
7735 {
Ritor1
parents:
diff changeset
7736 ya = v9;
Ritor1
parents:
diff changeset
7737 v23 = v22 - v27;
Ritor1
parents:
diff changeset
7738 do
Ritor1
parents:
diff changeset
7739 {
Ritor1
parents:
diff changeset
7740 if ( v27 > 0 )
Ritor1
parents:
diff changeset
7741 {
Ritor1
parents:
diff changeset
7742 xa = v27;
Ritor1
parents:
diff changeset
7743 do
Ritor1
parents:
diff changeset
7744 {
Ritor1
parents:
diff changeset
7745 v20 = *v24;
Ritor1
parents:
diff changeset
7746 if ( v20 >= a7 && v20 <= a8 )
Ritor1
parents:
diff changeset
7747 {
Ritor1
parents:
diff changeset
7748 v21 = a7 + (a6 + v20) % (2 * (a8 - a7));
Ritor1
parents:
diff changeset
7749 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 )
Ritor1
parents:
diff changeset
7750 v21 = 2 * a8 - v21 - a7;
Ritor1
parents:
diff changeset
7751 *v8 = a4->pPalette16[v21];
Ritor1
parents:
diff changeset
7752 }
Ritor1
parents:
diff changeset
7753 ++v8;
Ritor1
parents:
diff changeset
7754 ++v24;
Ritor1
parents:
diff changeset
7755 --xa;
Ritor1
parents:
diff changeset
7756 }
Ritor1
parents:
diff changeset
7757 while ( xa );
Ritor1
parents:
diff changeset
7758 }
Ritor1
parents:
diff changeset
7759 v8 += this->uTargetSurfacePitch - v27;
Ritor1
parents:
diff changeset
7760 v24 += v23;
Ritor1
parents:
diff changeset
7761 --ya;
Ritor1
parents:
diff changeset
7762 }
Ritor1
parents:
diff changeset
7763 while ( ya );
Ritor1
parents:
diff changeset
7764 }
Ritor1
parents:
diff changeset
7765 }
Ritor1
parents:
diff changeset
7766 }
Ritor1
parents:
diff changeset
7767
Ritor1
parents:
diff changeset
7768 //----- (004A63E6) --------------------------------------------------------
1455
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1445
diff changeset
7769 void Render::DrawAura(unsigned int a2, unsigned int a3, Texture *a4, Texture *a5, int a6, int a7, int a8)
0
Ritor1
parents:
diff changeset
7770 {
Ritor1
parents:
diff changeset
7771 Texture *v8; // eax@2
Ritor1
parents:
diff changeset
7772 Texture *v9; // ebx@4
Ritor1
parents:
diff changeset
7773 unsigned __int16 *v10; // esi@6
Ritor1
parents:
diff changeset
7774 unsigned int v11; // edi@7
Ritor1
parents:
diff changeset
7775 unsigned int v12; // eax@9
Ritor1
parents:
diff changeset
7776 unsigned int v13; // eax@10
Ritor1
parents:
diff changeset
7777 unsigned int v14; // edx@11
Ritor1
parents:
diff changeset
7778 unsigned int v15; // eax@13
Ritor1
parents:
diff changeset
7779 unsigned int v16; // edx@14
Ritor1
parents:
diff changeset
7780 unsigned int v17; // edx@17
Ritor1
parents:
diff changeset
7781 unsigned int v18; // eax@19
Ritor1
parents:
diff changeset
7782 unsigned int v19; // edx@20
Ritor1
parents:
diff changeset
7783 int v20; // eax@27
Ritor1
parents:
diff changeset
7784 int v21; // edx@29
Ritor1
parents:
diff changeset
7785 int v22; // [sp+Ch] [bp-Ch]@6
Ritor1
parents:
diff changeset
7786 int v23; // [sp+Ch] [bp-Ch]@24
Ritor1
parents:
diff changeset
7787 int v24; // [sp+10h] [bp-8h]@6
Ritor1
parents:
diff changeset
7788 int v25; // [sp+14h] [bp-4h]@6
Ritor1
parents:
diff changeset
7789 int i; // [sp+20h] [bp+8h]@25
Ritor1
parents:
diff changeset
7790 int v27; // [sp+24h] [bp+Ch]@23
Ritor1
parents:
diff changeset
7791 unsigned __int8 *v28; // [sp+28h] [bp+10h]@6
Ritor1
parents:
diff changeset
7792
Ritor1
parents:
diff changeset
7793 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7794 {
Ritor1
parents:
diff changeset
7795 v8 = a4;
Ritor1
parents:
diff changeset
7796 if ( a4 )
Ritor1
parents:
diff changeset
7797 {
Ritor1
parents:
diff changeset
7798 if ( a4->pPalette16 )
Ritor1
parents:
diff changeset
7799 {
Ritor1
parents:
diff changeset
7800 v9 = a5;
Ritor1
parents:
diff changeset
7801 if ( a5 )
Ritor1
parents:
diff changeset
7802 {
Ritor1
parents:
diff changeset
7803 if ( a5->pPalette16 )
Ritor1
parents:
diff changeset
7804 {
Ritor1
parents:
diff changeset
7805 v10 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7806 v28 = a4->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
7807 v25 = v8->uTextureWidth;
Ritor1
parents:
diff changeset
7808 v24 = v8->uTextureHeight;
Ritor1
parents:
diff changeset
7809 v22 = v8->uTextureWidth;
Ritor1
parents:
diff changeset
7810 if ( this->bClip )
Ritor1
parents:
diff changeset
7811 {
Ritor1
parents:
diff changeset
7812 v11 = this->uClipX;
Ritor1
parents:
diff changeset
7813 if ( (signed int)a2 < (signed int)v11 )
Ritor1
parents:
diff changeset
7814 {
Ritor1
parents:
diff changeset
7815 v28 += v11 - a2;
Ritor1
parents:
diff changeset
7816 v25 += a2 - v11;
Ritor1
parents:
diff changeset
7817 v9 = a5;
Ritor1
parents:
diff changeset
7818 v10 += v11 - a2;
Ritor1
parents:
diff changeset
7819 }
Ritor1
parents:
diff changeset
7820 v12 = this->uClipY;
Ritor1
parents:
diff changeset
7821 if ( (signed int)a3 < (signed int)v12 )
Ritor1
parents:
diff changeset
7822 {
Ritor1
parents:
diff changeset
7823 v13 = v12 - a3;
Ritor1
parents:
diff changeset
7824 v9 = a5;
Ritor1
parents:
diff changeset
7825 v28 += v22 * v13;
Ritor1
parents:
diff changeset
7826 v24 += a3 - this->uClipY;
Ritor1
parents:
diff changeset
7827 v10 += this->uTargetSurfacePitch * v13;
Ritor1
parents:
diff changeset
7828 }
Ritor1
parents:
diff changeset
7829 v14 = this->uClipX;
Ritor1
parents:
diff changeset
7830 if ( (signed int)v14 < (signed int)a2 )
Ritor1
parents:
diff changeset
7831 v14 = a2;
Ritor1
parents:
diff changeset
7832 v15 = this->uClipZ;
Ritor1
parents:
diff changeset
7833 if ( (signed int)(v25 + v14) > (signed int)v15 )
Ritor1
parents:
diff changeset
7834 {
Ritor1
parents:
diff changeset
7835 v16 = this->uClipX;
Ritor1
parents:
diff changeset
7836 if ( (signed int)v16 < (signed int)a2 )
Ritor1
parents:
diff changeset
7837 v16 = a2;
Ritor1
parents:
diff changeset
7838 v25 = v15 - v16;
Ritor1
parents:
diff changeset
7839 }
Ritor1
parents:
diff changeset
7840 v17 = this->uClipY;
Ritor1
parents:
diff changeset
7841 if ( (signed int)v17 < (signed int)a3 )
Ritor1
parents:
diff changeset
7842 v17 = a3;
Ritor1
parents:
diff changeset
7843 v18 = this->uClipW;
Ritor1
parents:
diff changeset
7844 if ( (signed int)(v24 + v17) > (signed int)v18 )
Ritor1
parents:
diff changeset
7845 {
Ritor1
parents:
diff changeset
7846 v19 = this->uClipY;
Ritor1
parents:
diff changeset
7847 if ( (signed int)v19 < (signed int)a3 )
Ritor1
parents:
diff changeset
7848 v19 = a3;
Ritor1
parents:
diff changeset
7849 v24 = v18 - v19;
Ritor1
parents:
diff changeset
7850 }
Ritor1
parents:
diff changeset
7851 }
Ritor1
parents:
diff changeset
7852 v27 = 0;
Ritor1
parents:
diff changeset
7853 if ( v24 > 0 )
Ritor1
parents:
diff changeset
7854 {
Ritor1
parents:
diff changeset
7855 v23 = v22 - v25;
Ritor1
parents:
diff changeset
7856 do
Ritor1
parents:
diff changeset
7857 {
Ritor1
parents:
diff changeset
7858 for ( i = 0; i < v25; ++v28 )
Ritor1
parents:
diff changeset
7859 {
Ritor1
parents:
diff changeset
7860 if ( *v28 )
Ritor1
parents:
diff changeset
7861 {
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7862 v20 = *(&v9->pLevelOfDetail0_prolly_alpha_mask[i & v9->uWidthMinus1] + v9->uTextureWidth * (v27 & v9->uHeightMinus1));
0
Ritor1
parents:
diff changeset
7863 if ( v20 >= a7 )
Ritor1
parents:
diff changeset
7864 {
Ritor1
parents:
diff changeset
7865 if ( v20 <= a8 )
Ritor1
parents:
diff changeset
7866 {
Ritor1
parents:
diff changeset
7867 v21 = a7 + (a6 + v20) % (2 * (a8 - a7));
Ritor1
parents:
diff changeset
7868 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 )
Ritor1
parents:
diff changeset
7869 v21 = 2 * a8 - v21 - a7;
Ritor1
parents:
diff changeset
7870 v9 = a5;
Ritor1
parents:
diff changeset
7871 *v10 = a5->pPalette16[v21];
Ritor1
parents:
diff changeset
7872 }
Ritor1
parents:
diff changeset
7873 }
Ritor1
parents:
diff changeset
7874 }
Ritor1
parents:
diff changeset
7875 ++i;
Ritor1
parents:
diff changeset
7876 ++v10;
Ritor1
parents:
diff changeset
7877 }
Ritor1
parents:
diff changeset
7878 ++v27;
Ritor1
parents:
diff changeset
7879 v10 += this->uTargetSurfacePitch - v25;
Ritor1
parents:
diff changeset
7880 v28 += v23;
Ritor1
parents:
diff changeset
7881 }
Ritor1
parents:
diff changeset
7882 while ( v27 < v24 );
Ritor1
parents:
diff changeset
7883 }
Ritor1
parents:
diff changeset
7884 }
Ritor1
parents:
diff changeset
7885 }
Ritor1
parents:
diff changeset
7886 }
Ritor1
parents:
diff changeset
7887 }
Ritor1
parents:
diff changeset
7888 }
Ritor1
parents:
diff changeset
7889 }
Ritor1
parents:
diff changeset
7890
Ritor1
parents:
diff changeset
7891 //----- (004A6274) --------------------------------------------------------
Ritor1
parents:
diff changeset
7892 void Render::DrawTextureTransparent(unsigned int uX, unsigned int uY, Texture *pTexture)
Ritor1
parents:
diff changeset
7893 {
Ritor1
parents:
diff changeset
7894 Texture *pCurrentTexture; // edi@2
Ritor1
parents:
diff changeset
7895 int uHeight; // ebx@4
Ritor1
parents:
diff changeset
7896 unsigned __int16 *v6; // eax@4
Ritor1
parents:
diff changeset
7897 unsigned int v7; // edx@5
Ritor1
parents:
diff changeset
7898 unsigned int v8; // edx@6
Ritor1
parents:
diff changeset
7899 unsigned int v9; // edx@7
Ritor1
parents:
diff changeset
7900 unsigned int v10; // edx@8
Ritor1
parents:
diff changeset
7901 unsigned int v11; // edx@9
Ritor1
parents:
diff changeset
7902 unsigned int v12; // esi@12
Ritor1
parents:
diff changeset
7903 unsigned int v13; // esi@15
Ritor1
parents:
diff changeset
7904 unsigned int v14; // edx@17
Ritor1
parents:
diff changeset
7905 unsigned int v15; // esi@18
Ritor1
parents:
diff changeset
7906 unsigned __int8 *v16; // ebx@22
Ritor1
parents:
diff changeset
7907 char uFlag; // zf@28
Ritor1
parents:
diff changeset
7908 int v18; // [sp+10h] [bp-10h]@4
Ritor1
parents:
diff changeset
7909 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4
Ritor1
parents:
diff changeset
7910 int uWidth; // [sp+1Ch] [bp-4h]@4
Ritor1
parents:
diff changeset
7911 int uXa; // [sp+28h] [bp+8h]@24
Ritor1
parents:
diff changeset
7912 unsigned int uYa; // [sp+2Ch] [bp+Ch]@22
Ritor1
parents:
diff changeset
7913 unsigned int pTexturea; // [sp+30h] [bp+10h]@11
Ritor1
parents:
diff changeset
7914
Ritor1
parents:
diff changeset
7915 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7916 {
Ritor1
parents:
diff changeset
7917 pCurrentTexture = pTexture;
Ritor1
parents:
diff changeset
7918 if ( pTexture )
Ritor1
parents:
diff changeset
7919 {
Ritor1
parents:
diff changeset
7920 if ( pTexture->pPalette16 )
Ritor1
parents:
diff changeset
7921 {
Ritor1
parents:
diff changeset
7922 uHeight = pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
7923 v6 = &this->pTargetSurface[uX + uY * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7924 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
7925 uWidth = pTexture->uTextureWidth;
Ritor1
parents:
diff changeset
7926 v18 = pTexture->uTextureWidth;
Ritor1
parents:
diff changeset
7927 if ( this->bClip )
Ritor1
parents:
diff changeset
7928 {
Ritor1
parents:
diff changeset
7929 v7 = this->uClipX;
Ritor1
parents:
diff changeset
7930 if ( (signed int)uX < (signed int)v7 )
Ritor1
parents:
diff changeset
7931 {
Ritor1
parents:
diff changeset
7932 v8 = v7 - uX;
Ritor1
parents:
diff changeset
7933 v19 += v8;
Ritor1
parents:
diff changeset
7934 uWidth += uX - this->uClipX;
Ritor1
parents:
diff changeset
7935 v6 += v8;
Ritor1
parents:
diff changeset
7936 }
Ritor1
parents:
diff changeset
7937 v9 = this->uClipY;
Ritor1
parents:
diff changeset
7938 uHeight = pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
7939 if ( (signed int)uY < (signed int)v9 )
Ritor1
parents:
diff changeset
7940 {
Ritor1
parents:
diff changeset
7941 v10 = v9 - uY;
Ritor1
parents:
diff changeset
7942 v19 += v18 * v10;
Ritor1
parents:
diff changeset
7943 uHeight = uY - this->uClipY + pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
7944 pCurrentTexture = pTexture;
Ritor1
parents:
diff changeset
7945 v6 += this->uTargetSurfacePitch * v10;
Ritor1
parents:
diff changeset
7946 }
Ritor1
parents:
diff changeset
7947 v11 = this->uClipX;
Ritor1
parents:
diff changeset
7948 if ( (signed int)v11 < (signed int)uX )
Ritor1
parents:
diff changeset
7949 v11 = uX;
Ritor1
parents:
diff changeset
7950 pTexturea = this->uClipZ;
Ritor1
parents:
diff changeset
7951 if ( (signed int)(v11 + uWidth) > (signed int)pTexturea )
Ritor1
parents:
diff changeset
7952 {
Ritor1
parents:
diff changeset
7953 v12 = this->uClipX;
Ritor1
parents:
diff changeset
7954 if ( (signed int)v12 < (signed int)uX )
Ritor1
parents:
diff changeset
7955 v12 = uX;
Ritor1
parents:
diff changeset
7956 uWidth = pTexturea - v12;
Ritor1
parents:
diff changeset
7957 }
Ritor1
parents:
diff changeset
7958 v13 = this->uClipY;
Ritor1
parents:
diff changeset
7959 if ( (signed int)v13 < (signed int)uY )
Ritor1
parents:
diff changeset
7960 v13 = uY;
Ritor1
parents:
diff changeset
7961 v14 = this->uClipW;
Ritor1
parents:
diff changeset
7962 if ( (signed int)(uHeight + v13) > (signed int)v14 )
Ritor1
parents:
diff changeset
7963 {
Ritor1
parents:
diff changeset
7964 v15 = this->uClipY;
Ritor1
parents:
diff changeset
7965 if ( (signed int)v15 < (signed int)uY )
Ritor1
parents:
diff changeset
7966 v15 = uY;
Ritor1
parents:
diff changeset
7967 uHeight = v14 - v15;
Ritor1
parents:
diff changeset
7968 }
Ritor1
parents:
diff changeset
7969 }
Ritor1
parents:
diff changeset
7970 if ( (signed int)uHeight > 0 )
Ritor1
parents:
diff changeset
7971 {
Ritor1
parents:
diff changeset
7972 uYa = uHeight;
Ritor1
parents:
diff changeset
7973 v16 = v19;
Ritor1
parents:
diff changeset
7974 do
Ritor1
parents:
diff changeset
7975 {
Ritor1
parents:
diff changeset
7976 if ( uWidth > 0 )
Ritor1
parents:
diff changeset
7977 {
Ritor1
parents:
diff changeset
7978 uXa = uWidth;
Ritor1
parents:
diff changeset
7979 do
Ritor1
parents:
diff changeset
7980 {
Ritor1
parents:
diff changeset
7981 if ( *v16 )
Ritor1
parents:
diff changeset
7982 *v6 = pCurrentTexture->pPalette16[*v16];
Ritor1
parents:
diff changeset
7983 ++v6;
Ritor1
parents:
diff changeset
7984 ++v16;
Ritor1
parents:
diff changeset
7985 }
Ritor1
parents:
diff changeset
7986 while ( uXa-- !=1 );
Ritor1
parents:
diff changeset
7987 }
Ritor1
parents:
diff changeset
7988 v16 += v18 - uWidth;
Ritor1
parents:
diff changeset
7989 uFlag = uYa-- == 1;
Ritor1
parents:
diff changeset
7990 v6 += this->uTargetSurfacePitch - uWidth;
Ritor1
parents:
diff changeset
7991 }
Ritor1
parents:
diff changeset
7992 while ( !uFlag );
Ritor1
parents:
diff changeset
7993 }
Ritor1
parents:
diff changeset
7994 }
Ritor1
parents:
diff changeset
7995 }
Ritor1
parents:
diff changeset
7996 }
Ritor1
parents:
diff changeset
7997 }
Ritor1
parents:
diff changeset
7998
Ritor1
parents:
diff changeset
7999 //----- (004A612A) --------------------------------------------------------
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
8000 void Render::DrawMaskToZBuffer(signed int uOutX, unsigned int uOutY, Texture *pTexture, int zVal)
0
Ritor1
parents:
diff changeset
8001 {
Ritor1
parents:
diff changeset
8002 Texture *v5; // eax@2
Ritor1
parents:
diff changeset
8003 unsigned int v6; // edx@3
Ritor1
parents:
diff changeset
8004 int v7; // ebx@3
Ritor1
parents:
diff changeset
8005 int v8; // edi@3
Ritor1
parents:
diff changeset
8006 signed int v9; // eax@4
Ritor1
parents:
diff changeset
8007 int v10; // eax@5
Ritor1
parents:
diff changeset
8008 unsigned int v11; // esi@6
Ritor1
parents:
diff changeset
8009 signed int v12; // esi@8
Ritor1
parents:
diff changeset
8010 unsigned int v13; // eax@10
Ritor1
parents:
diff changeset
8011 signed int v14; // esi@11
Ritor1
parents:
diff changeset
8012 unsigned int v15; // esi@14
Ritor1
parents:
diff changeset
8013 unsigned int v16; // eax@16
Ritor1
parents:
diff changeset
8014 unsigned int v17; // ecx@17
Ritor1
parents:
diff changeset
8015 int v18; // edx@23
Ritor1
parents:
diff changeset
8016 int v19; // [sp+Ch] [bp-Ch]@3
Ritor1
parents:
diff changeset
8017 int v20; // [sp+10h] [bp-8h]@3
Ritor1
parents:
diff changeset
8018 int uOutXa; // [sp+20h] [bp+8h]@21
Ritor1
parents:
diff changeset
8019 unsigned __int8 *uOutYa; // [sp+24h] [bp+Ch]@3
Ritor1
parents:
diff changeset
8020 int *pZBuffer; // [sp+28h] [bp+10h]@3
Ritor1
parents:
diff changeset
8021
Ritor1
parents:
diff changeset
8022 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
8023 {
Ritor1
parents:
diff changeset
8024 v5 = pTexture;
Ritor1
parents:
diff changeset
8025 if ( pTexture )
Ritor1
parents:
diff changeset
8026 {
Ritor1
parents:
diff changeset
8027 v6 = uOutY;
Ritor1
parents:
diff changeset
8028 v7 = pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
8029 pZBuffer = &this->pActiveZBuffer[uOutX + 640 * uOutY];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
8030 uOutYa = v5->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
8031 v8 = v5->uTextureWidth;
Ritor1
parents:
diff changeset
8032 v20 = v5->uTextureWidth;
Ritor1
parents:
diff changeset
8033 v19 = v5->uTextureWidth;
Ritor1
parents:
diff changeset
8034 if ( this->bClip )
Ritor1
parents:
diff changeset
8035 {
Ritor1
parents:
diff changeset
8036 v9 = this->uClipX;
Ritor1
parents:
diff changeset
8037 if ( uOutX < v9 )
Ritor1
parents:
diff changeset
8038 {
Ritor1
parents:
diff changeset
8039 v10 = v9 - uOutX;
Ritor1
parents:
diff changeset
8040 uOutYa += v10;
Ritor1
parents:
diff changeset
8041 v8 += uOutX - this->uClipX;
Ritor1
parents:
diff changeset
8042 v20 = v8;
Ritor1
parents:
diff changeset
8043 pZBuffer += v10;
Ritor1
parents:
diff changeset
8044 }
Ritor1
parents:
diff changeset
8045 v11 = this->uClipY;
Ritor1
parents:
diff changeset
8046 if ( (signed int)v6 < (signed int)v11 )
Ritor1
parents:
diff changeset
8047 {
Ritor1
parents:
diff changeset
8048 uOutYa += v19 * (v11 - v6);
Ritor1
parents:
diff changeset
8049 v7 += v6 - v11;
Ritor1
parents:
diff changeset
8050 pZBuffer += 640 * (v11 - v6);
Ritor1
parents:
diff changeset
8051 v8 = v20;
Ritor1
parents:
diff changeset
8052 }
Ritor1
parents:
diff changeset
8053 v12 = this->uClipX;
Ritor1
parents:
diff changeset
8054 if ( v12 < uOutX )
Ritor1
parents:
diff changeset
8055 v12 = uOutX;
Ritor1
parents:
diff changeset
8056 v13 = this->uClipZ;
Ritor1
parents:
diff changeset
8057 if ( v8 + v12 > (signed int)v13 )
Ritor1
parents:
diff changeset
8058 {
Ritor1
parents:
diff changeset
8059 v14 = this->uClipX;
Ritor1
parents:
diff changeset
8060 if ( v14 < uOutX )
Ritor1
parents:
diff changeset
8061 v14 = uOutX;
Ritor1
parents:
diff changeset
8062 v8 = v13 - v14;
Ritor1
parents:
diff changeset
8063 }
Ritor1
parents:
diff changeset
8064 v15 = this->uClipY;
Ritor1
parents:
diff changeset
8065 if ( (signed int)v15 < (signed int)v6 )
Ritor1
parents:
diff changeset
8066 v15 = v6;
Ritor1
parents:
diff changeset
8067 v16 = this->uClipW;
Ritor1
parents:
diff changeset
8068 if ( (signed int)(v7 + v15) > (signed int)v16 )
Ritor1
parents:
diff changeset
8069 {
Ritor1
parents:
diff changeset
8070 v17 = this->uClipY;
Ritor1
parents:
diff changeset
8071 if ( (signed int)v17 >= (signed int)v6 )
Ritor1
parents:
diff changeset
8072 v6 = v17;
Ritor1
parents:
diff changeset
8073 v7 = v16 - v6;
Ritor1
parents:
diff changeset
8074 }
Ritor1
parents:
diff changeset
8075 }
Ritor1
parents:
diff changeset
8076 if ( v7 > 0 )
Ritor1
parents:
diff changeset
8077 {
Ritor1
parents:
diff changeset
8078 uOutXa = v7;
Ritor1
parents:
diff changeset
8079 do
Ritor1
parents:
diff changeset
8080 {
Ritor1
parents:
diff changeset
8081 if ( v8 > 0 )
Ritor1
parents:
diff changeset
8082 {
Ritor1
parents:
diff changeset
8083 v18 = v8;
Ritor1
parents:
diff changeset
8084 do
Ritor1
parents:
diff changeset
8085 {
Ritor1
parents:
diff changeset
8086 if ( *uOutYa )
Ritor1
parents:
diff changeset
8087 *pZBuffer = zVal;
Ritor1
parents:
diff changeset
8088 ++pZBuffer;
Ritor1
parents:
diff changeset
8089 ++uOutYa;
Ritor1
parents:
diff changeset
8090 --v18;
Ritor1
parents:
diff changeset
8091 }
Ritor1
parents:
diff changeset
8092 while ( v18 );
Ritor1
parents:
diff changeset
8093 }
Ritor1
parents:
diff changeset
8094 pZBuffer += 640 - v8;
Ritor1
parents:
diff changeset
8095 uOutYa += v19 - v8;
Ritor1
parents:
diff changeset
8096 --uOutXa;
Ritor1
parents:
diff changeset
8097 }
Ritor1
parents:
diff changeset
8098 while ( uOutXa );
Ritor1
parents:
diff changeset
8099 }
Ritor1
parents:
diff changeset
8100 }
Ritor1
parents:
diff changeset
8101 }
Ritor1
parents:
diff changeset
8102 }
Ritor1
parents:
diff changeset
8103
Ritor1
parents:
diff changeset
8104 //----- (004A601E) --------------------------------------------------------
991
c5d8ea1e6ccb CharacterUI cleanings.
Nomad
parents: 973
diff changeset
8105 void Render::ZBuffer_Fill_2(signed int a2, signed int a3, Texture *pTexture, int a5)
0
Ritor1
parents:
diff changeset
8106 {
Ritor1
parents:
diff changeset
8107 signed int v5; // edx@3
Ritor1
parents:
diff changeset
8108 int v6; // ebx@3
Ritor1
parents:
diff changeset
8109 int v7; // esi@3
Ritor1
parents:
diff changeset
8110 void *v8; // esi@3
Ritor1
parents:
diff changeset
8111 unsigned int v9; // eax@4
Ritor1
parents:
diff changeset
8112 unsigned int v10; // eax@6
Ritor1
parents:
diff changeset
8113 signed int v11; // edi@8
Ritor1
parents:
diff changeset
8114 unsigned int v12; // eax@10
Ritor1
parents:
diff changeset
8115 signed int v13; // edi@11
Ritor1
parents:
diff changeset
8116 unsigned int v14; // edi@14
Ritor1
parents:
diff changeset
8117 unsigned int v15; // eax@16
Ritor1
parents:
diff changeset
8118 unsigned int v16; // ecx@17
Ritor1
parents:
diff changeset
8119 int v17; // [sp+18h] [bp+Ch]@3
Ritor1
parents:
diff changeset
8120 unsigned int pTexturea; // [sp+1Ch] [bp+10h]@3
Ritor1
parents:
diff changeset
8121
Ritor1
parents:
diff changeset
8122 if ( this->uNumSceneBegins && pTexture )
Ritor1
parents:
diff changeset
8123 {
Ritor1
parents:
diff changeset
8124 v5 = a3;
Ritor1
parents:
diff changeset
8125 v6 = pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
8126 v7 = 5 * a3;
Ritor1
parents:
diff changeset
8127 v17 = pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
8128 v8 = &this->pActiveZBuffer[a2 + (v7 << 7)];
Ritor1
parents:
diff changeset
8129 pTexturea = pTexture->uTextureWidth;
Ritor1
parents:
diff changeset
8130 if ( this->bClip )
Ritor1
parents:
diff changeset
8131 {
Ritor1
parents:
diff changeset
8132 v9 = this->uClipX;
Ritor1
parents:
diff changeset
8133 if ( a2 < (signed int)v9 )
Ritor1
parents:
diff changeset
8134 {
Ritor1
parents:
diff changeset
8135 pTexturea += a2 - v9;
Ritor1
parents:
diff changeset
8136 v8 = (char *)v8 + 4 * (v9 - a2);
Ritor1
parents:
diff changeset
8137 }
Ritor1
parents:
diff changeset
8138 v10 = this->uClipY;
Ritor1
parents:
diff changeset
8139 if ( v5 < (signed int)v10 )
Ritor1
parents:
diff changeset
8140 {
Ritor1
parents:
diff changeset
8141 v17 += v5 - v10;
Ritor1
parents:
diff changeset
8142 v8 = (char *)v8 + 2560 * (v10 - v5);
Ritor1
parents:
diff changeset
8143 }
Ritor1
parents:
diff changeset
8144 v11 = this->uClipX;
Ritor1
parents:
diff changeset
8145 if ( v11 < a2 )
Ritor1
parents:
diff changeset
8146 v11 = a2;
Ritor1
parents:
diff changeset
8147 v12 = this->uClipZ;
Ritor1
parents:
diff changeset
8148 if ( (signed int)(pTexturea + v11) > (signed int)v12 )
Ritor1
parents:
diff changeset
8149 {
Ritor1
parents:
diff changeset
8150 v13 = this->uClipX;
Ritor1
parents:
diff changeset
8151 if ( v13 < a2 )
Ritor1
parents:
diff changeset
8152 v13 = a2;
Ritor1
parents:
diff changeset
8153 pTexturea = v12 - v13;
Ritor1
parents:
diff changeset
8154 }
Ritor1
parents:
diff changeset
8155 v14 = this->uClipY;
Ritor1
parents:
diff changeset
8156 if ( (signed int)v14 < v5 )
Ritor1
parents:
diff changeset
8157 v14 = v5;
Ritor1
parents:
diff changeset
8158 v6 = v17;
Ritor1
parents:
diff changeset
8159 v15 = this->uClipW;
Ritor1
parents:
diff changeset
8160 if ( (signed int)(v17 + v14) > (signed int)v15 )
Ritor1
parents:
diff changeset
8161 {
Ritor1
parents:
diff changeset
8162 v16 = this->uClipY;
Ritor1
parents:
diff changeset
8163 if ( (signed int)v16 < v5 )
Ritor1
parents:
diff changeset
8164 v16 = v5;
Ritor1
parents:
diff changeset
8165 v6 = v15 - v16;
Ritor1
parents:
diff changeset
8166 }
Ritor1
parents:
diff changeset
8167 }
Ritor1
parents:
diff changeset
8168 if ( v6 > 0 )
Ritor1
parents:
diff changeset
8169 {
Ritor1
parents:
diff changeset
8170 do
Ritor1
parents:
diff changeset
8171 {
Ritor1
parents:
diff changeset
8172 if ( (signed int)pTexturea > 0 )
Ritor1
parents:
diff changeset
8173 {
Ritor1
parents:
diff changeset
8174 memset32(v8, a5, pTexturea);
Ritor1
parents:
diff changeset
8175 v8 = (char *)v8 + 4 * pTexturea;
Ritor1
parents:
diff changeset
8176 }
Ritor1
parents:
diff changeset
8177 v8 = (char *)v8 + 4 * (640 - pTexturea);
Ritor1
parents:
diff changeset
8178 --v6;
Ritor1
parents:
diff changeset
8179 }
Ritor1
parents:
diff changeset
8180 while ( v6 );
Ritor1
parents:
diff changeset
8181 }
Ritor1
parents:
diff changeset
8182 }
Ritor1
parents:
diff changeset
8183 }
Ritor1
parents:
diff changeset
8184
Ritor1
parents:
diff changeset
8185 //----- (004A5EB2) --------------------------------------------------------
Ritor1
parents:
diff changeset
8186 void Render::DrawTextureIndexed(unsigned int uX, unsigned int uY, Texture *a4)
Ritor1
parents:
diff changeset
8187 {
Ritor1
parents:
diff changeset
8188 Texture *v4; // edi@2
Ritor1
parents:
diff changeset
8189 unsigned int v5; // ebx@4
Ritor1
parents:
diff changeset
8190 unsigned __int16 *pTarget; // eax@4
Ritor1
parents:
diff changeset
8191 unsigned int v7; // edx@5
Ritor1
parents:
diff changeset
8192 unsigned int v8; // edx@6
Ritor1
parents:
diff changeset
8193 unsigned int v9; // edx@7
Ritor1
parents:
diff changeset
8194 unsigned int v10; // edx@8
Ritor1
parents:
diff changeset
8195 unsigned int v11; // edx@9
Ritor1
parents:
diff changeset
8196 unsigned int v12; // esi@12
Ritor1
parents:
diff changeset
8197 unsigned int v13; // esi@15
Ritor1
parents:
diff changeset
8198 unsigned int v14; // edx@17
Ritor1
parents:
diff changeset
8199 unsigned int v15; // esi@18
Ritor1
parents:
diff changeset
8200 unsigned __int8 *v16; // edx@22
Ritor1
parents:
diff changeset
8201 char v17; // zf@26
Ritor1
parents:
diff changeset
8202 int v18; // [sp+10h] [bp-10h]@4
Ritor1
parents:
diff changeset
8203 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4
Ritor1
parents:
diff changeset
8204 int v20; // [sp+1Ch] [bp-4h]@4
Ritor1
parents:
diff changeset
8205 int uXa; // [sp+28h] [bp+8h]@24
Ritor1
parents:
diff changeset
8206 unsigned int uYa; // [sp+2Ch] [bp+Ch]@22
Ritor1
parents:
diff changeset
8207 unsigned int v23; // [sp+30h] [bp+10h]@11
Ritor1
parents:
diff changeset
8208
Ritor1
parents:
diff changeset
8209 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
8210 {
Ritor1
parents:
diff changeset
8211 v4 = a4;
Ritor1
parents:
diff changeset
8212 if ( a4 )
Ritor1
parents:
diff changeset
8213 {
Ritor1
parents:
diff changeset
8214 if ( a4->pPalette16 )
Ritor1
parents:
diff changeset
8215 {
Ritor1
parents:
diff changeset
8216 v5 = a4->uTextureHeight;
Ritor1
parents:
diff changeset
8217 pTarget = &this->pTargetSurface[uX + uY * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
8218 v19 = a4->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
8219 v20 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
8220 v18 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
8221 if ( this->bClip )
Ritor1
parents:
diff changeset
8222 {
Ritor1
parents:
diff changeset
8223 v7 = this->uClipX;
Ritor1
parents:
diff changeset
8224 if ( (signed int)uX < (signed int)v7 )
Ritor1
parents:
diff changeset
8225 {
Ritor1
parents:
diff changeset
8226 v8 = v7 - uX;
Ritor1
parents:
diff changeset
8227 v19 += v8;
Ritor1
parents:
diff changeset
8228 v20 += uX - this->uClipX;
Ritor1
parents:
diff changeset
8229 pTarget += v8;
Ritor1
parents:
diff changeset
8230 }
Ritor1
parents:
diff changeset
8231 v9 = this->uClipY;
Ritor1
parents:
diff changeset
8232 v5 = a4->uTextureHeight;
Ritor1
parents:
diff changeset
8233 if ( (signed int)uY < (signed int)v9 )
Ritor1
parents:
diff changeset
8234 {
Ritor1
parents:
diff changeset
8235 v10 = v9 - uY;
Ritor1
parents:
diff changeset
8236 v19 += v18 * v10;
Ritor1
parents:
diff changeset
8237 v5 = uY - this->uClipY + a4->uTextureHeight;
Ritor1
parents:
diff changeset
8238 v4 = a4;
Ritor1
parents:
diff changeset
8239 pTarget += this->uTargetSurfacePitch * v10;
Ritor1
parents:
diff changeset
8240 }
Ritor1
parents:
diff changeset
8241 v11 = this->uClipX;
Ritor1
parents:
diff changeset
8242 if ( (signed int)v11 < (signed int)uX )
Ritor1
parents:
diff changeset
8243 v11 = uX;
Ritor1
parents:
diff changeset
8244 v23 = this->uClipZ;
Ritor1
parents:
diff changeset
8245 if ( (signed int)(v11 + v20) > (signed int)v23 )
Ritor1
parents:
diff changeset
8246 {
Ritor1
parents:
diff changeset
8247 v12 = this->uClipX;
Ritor1
parents:
diff changeset
8248 if ( (signed int)v12 < (signed int)uX )
Ritor1
parents:
diff changeset
8249 v12 = uX;
Ritor1
parents:
diff changeset
8250 v20 = v23 - v12;
Ritor1
parents:
diff changeset
8251 }
Ritor1
parents:
diff changeset
8252 v13 = this->uClipY;
Ritor1
parents:
diff changeset
8253 if ( (signed int)v13 < (signed int)uY )
Ritor1
parents:
diff changeset
8254 v13 = uY;
Ritor1
parents:
diff changeset
8255 v14 = this->uClipW;
Ritor1
parents:
diff changeset
8256 if ( (signed int)(v5 + v13) > (signed int)v14 )
Ritor1
parents:
diff changeset
8257 {
Ritor1
parents:
diff changeset
8258 v15 = this->uClipY;
Ritor1
parents:
diff changeset
8259 if ( (signed int)v15 < (signed int)uY )
Ritor1
parents:
diff changeset
8260 v15 = uY;
Ritor1
parents:
diff changeset
8261 v5 = v14 - v15;
Ritor1
parents:
diff changeset
8262 }
Ritor1
parents:
diff changeset
8263 }
Ritor1
parents:
diff changeset
8264 if ( (signed int)v5 > 0 )
Ritor1
parents:
diff changeset
8265 {
Ritor1
parents:
diff changeset
8266 uYa = v5;
Ritor1
parents:
diff changeset
8267 v16 = v19;
Ritor1
parents:
diff changeset
8268 do
Ritor1
parents:
diff changeset
8269 {
Ritor1
parents:
diff changeset
8270 if ( v20 > 0 )
Ritor1
parents:
diff changeset
8271 {
Ritor1
parents:
diff changeset
8272 uXa = v20;
Ritor1
parents:
diff changeset
8273 do
Ritor1
parents:
diff changeset
8274 {
Ritor1
parents:
diff changeset
8275 *pTarget = v4->pPalette16[*v16];
Ritor1
parents:
diff changeset
8276 ++pTarget;
Ritor1
parents:
diff changeset
8277 ++v16;
Ritor1
parents:
diff changeset
8278 --uXa;
Ritor1
parents:
diff changeset
8279 }
Ritor1
parents:
diff changeset
8280 while ( uXa );
Ritor1
parents:
diff changeset
8281 }
Ritor1
parents:
diff changeset
8282 v16 += v18 - v20;
Ritor1
parents:
diff changeset
8283 v17 = uYa-- == 1;
Ritor1
parents:
diff changeset
8284 pTarget += this->uTargetSurfacePitch - v20;
Ritor1
parents:
diff changeset
8285 }
Ritor1
parents:
diff changeset
8286 while ( !v17 );
Ritor1
parents:
diff changeset
8287 }
Ritor1
parents:
diff changeset
8288 }
Ritor1
parents:
diff changeset
8289 }
Ritor1
parents:
diff changeset
8290 }
Ritor1
parents:
diff changeset
8291 }
Ritor1
parents:
diff changeset
8292
Ritor1
parents:
diff changeset
8293 //----- (004667E9) --------------------------------------------------------
Ritor1
parents:
diff changeset
8294 void Render::ChangeBetweenWinFullscreenModes()
Ritor1
parents:
diff changeset
8295 {
Ritor1
parents:
diff changeset
8296 float v0; // ST14_4@17
Ritor1
parents:
diff changeset
8297 int v4; // edx@26
Ritor1
parents:
diff changeset
8298 ObjectDesc *v5; // eax@26
Ritor1
parents:
diff changeset
8299 RGBTexture *v6; // esi@33
Ritor1
parents:
diff changeset
8300 const char *v8; // [sp-4h] [bp-28h]@33
Ritor1
parents:
diff changeset
8301 struct tagRECT Rect; // [sp+14h] [bp-10h]@15
Ritor1
parents:
diff changeset
8302
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8303 if ( !pRenderer->bWindowMode && (dword_6BE364_game_settings_1 & 2) )
0
Ritor1
parents:
diff changeset
8304 {
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
8305 ModalWindow(pGlobalTXT_LocalizationStrings[62], UIMSG_0);// "Might and Magic VII requires your desktop to be in 16bit (32k or 65k) Color mode in order to operate in a window."
0
Ritor1
parents:
diff changeset
8306 return;
Ritor1
parents:
diff changeset
8307 }
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8308 if ( pRenderer->bWindowMode || !pRenderer->pRenderD3D || pRenderer->pRenderD3D->pAvailableDevices->bIsDeviceCompatible )
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8309 {
0
Ritor1
parents:
diff changeset
8310 if ( pEventTimer->bPaused )
Ritor1
parents:
diff changeset
8311 BYTE1(dword_6BE364_game_settings_1) |= 8u;
Ritor1
parents:
diff changeset
8312 else
Ritor1
parents:
diff changeset
8313 pEventTimer->Pause();
Ritor1
parents:
diff changeset
8314 if ( pMiscTimer->bPaused )
Ritor1
parents:
diff changeset
8315 BYTE1(dword_6BE364_game_settings_1) |= 0x10u;
Ritor1
parents:
diff changeset
8316 else
Ritor1
parents:
diff changeset
8317 pMiscTimer->Pause();
Ritor1
parents:
diff changeset
8318 pMouse->bActive = 0;
Ritor1
parents:
diff changeset
8319 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
8320 {
Ritor1
parents:
diff changeset
8321 pBitmaps_LOD->ReleaseHardwareTextures();
Ritor1
parents:
diff changeset
8322 pSprites_LOD->ReleaseAll();
Ritor1
parents:
diff changeset
8323 }
Ritor1
parents:
diff changeset
8324 if ( pRenderer->bWindowMode )
Ritor1
parents:
diff changeset
8325 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8326 //SetMenu(hWnd, 0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8327 //SetWindowLongA(hWnd, -20, 0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8328 //SetWindowLongA(hWnd, -16, 0x10000000u);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8329 window->SetFullscreenMode();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8330 pRenderer->InitializeFullscreen();
0
Ritor1
parents:
diff changeset
8331 v0 = (double)(signed int)uGammaPos * 0.1 + 0.6;
Ritor1
parents:
diff changeset
8332 pGame->pGammaController->Initialize(v0);
Ritor1
parents:
diff changeset
8333 }
Ritor1
parents:
diff changeset
8334 else
Ritor1
parents:
diff changeset
8335 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8336 //ClipCursor(0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8337 window->SetWindowedMode(window->GetWidth(), window->GetHeight());
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8338 pRenderer->SwitchToWindow();
0
Ritor1
parents:
diff changeset
8339 }
Ritor1
parents:
diff changeset
8340 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
8341 {
Ritor1
parents:
diff changeset
8342 pBitmaps_LOD->_410423_move_textures_to_device();
Ritor1
parents:
diff changeset
8343 pSprites_LOD->MoveSpritesToVideoMemory();
Ritor1
parents:
diff changeset
8344 }
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8345 if (!( pPaletteManager->uNumTargetBBits == pRenderer->uTargetBBits
0
Ritor1
parents:
diff changeset
8346 && pPaletteManager->uNumTargetGBits == pRenderer->uTargetGBits
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8347 && pPaletteManager->uNumTargetRBits == pRenderer->uTargetRBits ))
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8348 {
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8349 pPaletteManager->SetColorChannelInfo(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8350 pPaletteManager->RecalculateAll();
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8351 pBitmaps_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8352 pIcons_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8353 for (int i = 0; i < pObjectList->uNumObjects; i++)
0
Ritor1
parents:
diff changeset
8354 {
Ritor1
parents:
diff changeset
8355 BYTE3(v4) = 0;
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8356 v5 = &pObjectList->pObjects[i];
0
Ritor1
parents:
diff changeset
8357 *(short *)((char *)&v4 + 1) = v5->uParticleTrailColorR;
Ritor1
parents:
diff changeset
8358 LOBYTE(v4) = v5->uParticleTrailColorG;
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1110
diff changeset
8359 v5->uParticleTrailColor = v5->uParticleTrailColorB | (v4 << 8);
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8360 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8361 SetUserInterface(pParty->alignment, true);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8362 if ( pVideoPlayer->pVideoFrame.pPixels )
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8363 pVideoPlayer->pVideoFrame.Load(pVideoPlayer->pVideoFrameTextureFilename, 1);
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
8364 if ( uCurrentMenuID != MENU_CREATEPARTY )
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
8365 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
8366 if ( uCurrentMenuID == MENU_CREDITSPROC )
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8367 dword_A74C88 = 1;
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8368 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8369 else
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8370 {
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8371 if ( uCurrentMenuID )
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8372 {
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8373 v6 = &pTexture_PCX;
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8374 pTexture_PCX.Release();
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8375 v8 = "makeme.pcx";
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8376 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8377 else
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8378 {
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8379 v6 = &pTexture_PCX;
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8380 pTexture_PCX.Release();
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8381 v8 = "title.pcx";
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8382 if ( uCurrentMenuID )
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8383 v8 = "lsave640.pcx";
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8384 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8385 v6->Load(v8, 0);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8386 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8387 }
0
Ritor1
parents:
diff changeset
8388 viewparams->bRedrawGameUI = 1;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 670
diff changeset
8389 viewparams->InitGrayPalette();
0
Ritor1
parents:
diff changeset
8390 pMouse->SetCurrentCursorBitmap();
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8391 /*if ( pRenderer->bWindowMode )
0
Ritor1
parents:
diff changeset
8392 {
1655
a7eebb6ee7a2 Window Resize (change arguments to MM7_Initialize)
Nomad
parents: 1644
diff changeset
8393 //MoveWindow(hWnd, uWindowX, uWindowY, uWindowWidth, uWindowHeight, 0);
a7eebb6ee7a2 Window Resize (change arguments to MM7_Initialize)
Nomad
parents: 1644
diff changeset
8394 CenterWindowAndAdjustSize(hWnd, windowed_mode_width, windowed_mode_height);
1586
c24e91e9a108 Replace minor Windows constants.
yoctozepto
parents: 1584
diff changeset
8395 ShowWindow(hWnd, SW_SHOWNORMAL);
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8396 }*/
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8397 pMouse->bActive = true;
0
Ritor1
parents:
diff changeset
8398 if ( pVideoPlayer->AnyMovieLoaded() )
898
10fa7dad1391 DrawPaperdoll clean
Ritor1
parents: 872
diff changeset
8399 pVideoPlayer->SelectMovieType();
1655
a7eebb6ee7a2 Window Resize (change arguments to MM7_Initialize)
Nomad
parents: 1644
diff changeset
8400 if (dword_6BE364_game_settings_1 & 0x0800 )
0
Ritor1
parents:
diff changeset
8401 BYTE1(dword_6BE364_game_settings_1) &= 0xF7u;
Ritor1
parents:
diff changeset
8402 else
Ritor1
parents:
diff changeset
8403 pEventTimer->Resume();
Ritor1
parents:
diff changeset
8404 if ( BYTE1(dword_6BE364_game_settings_1) & 0x10 )
Ritor1
parents:
diff changeset
8405 BYTE1(dword_6BE364_game_settings_1) &= 0xEFu;
Ritor1
parents:
diff changeset
8406 else
Ritor1
parents:
diff changeset
8407 pMiscTimer->Resume();
Ritor1
parents:
diff changeset
8408 }
Ritor1
parents:
diff changeset
8409 }
Ritor1
parents:
diff changeset
8410 // 6BE364: using guessed type int dword_6BE364_game_settings_1;
Ritor1
parents:
diff changeset
8411 // A74C88: using guessed type int dword_A74C88;
Ritor1
parents:
diff changeset
8412
Ritor1
parents:
diff changeset
8413
Ritor1
parents:
diff changeset
8414 //----- (004524D8) --------------------------------------------------------
Ritor1
parents:
diff changeset
8415 HWLTexture *RenderHWLContainer::LoadTexture(const char *pName, int bMipMaps)
Ritor1
parents:
diff changeset
8416 {
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8417 //int v11; // eax@13
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8418 //int v12; // ecx@13
0
Ritor1
parents:
diff changeset
8419 void *v13; // eax@13
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8420 //unsigned __int8 v14; // zf@13
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8421 //unsigned __int8 v15; // sf@13
0
Ritor1
parents:
diff changeset
8422 int v16; // esi@14
Ritor1
parents:
diff changeset
8423 int v17; // ecx@16
Ritor1
parents:
diff changeset
8424 int v18; // esi@16
Ritor1
parents:
diff changeset
8425 unsigned __int16 *v19; // eax@16
Ritor1
parents:
diff changeset
8426 int v20; // edx@16
Ritor1
parents:
diff changeset
8427 int v21; // ecx@16
Ritor1
parents:
diff changeset
8428 int v22; // eax@16
Ritor1
parents:
diff changeset
8429 int v23; // esi@16
Ritor1
parents:
diff changeset
8430 unsigned __int16 *v26; // [sp+24h] [bp-10h]@13
Ritor1
parents:
diff changeset
8431 int v27; // [sp+28h] [bp-Ch]@14
Ritor1
parents:
diff changeset
8432 int v28; // [sp+2Ch] [bp-8h]@13
Ritor1
parents:
diff changeset
8433 int pDestb; // [sp+3Ch] [bp+8h]@15
Ritor1
parents:
diff changeset
8434
Ritor1
parents:
diff changeset
8435 //v3 = this;
Ritor1
parents:
diff changeset
8436 //sprintf(Str1, "%s", pName);
Ritor1
parents:
diff changeset
8437 //v4 = uNumItems;
Ritor1
parents:
diff changeset
8438 if (!uNumItems)
Ritor1
parents:
diff changeset
8439 return nullptr;
Ritor1
parents:
diff changeset
8440
Ritor1
parents:
diff changeset
8441 //{
Ritor1
parents:
diff changeset
8442 //v5 = 0, pDesta = uNumItems;
Ritor1
parents:
diff changeset
8443 uint idx1 = 0,
Ritor1
parents:
diff changeset
8444 idx2 = uNumItems;
Ritor1
parents:
diff changeset
8445 while (true)
Ritor1
parents:
diff changeset
8446 {
Ritor1
parents:
diff changeset
8447 auto i = idx1 + (idx2 - idx1) / 2;
Ritor1
parents:
diff changeset
8448
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1164
diff changeset
8449 auto res = _stricmp(pName, pSpriteNames[i]);
0
Ritor1
parents:
diff changeset
8450 if (!res)
Ritor1
parents:
diff changeset
8451 {
Ritor1
parents:
diff changeset
8452 fseek(pFile, pSpriteOffsets[i], SEEK_SET);
Ritor1
parents:
diff changeset
8453 break;
Ritor1
parents:
diff changeset
8454 }
Ritor1
parents:
diff changeset
8455 else if (res < 0)
Ritor1
parents:
diff changeset
8456 idx2 = idx1 + (idx2 - idx1) / 2;
Ritor1
parents:
diff changeset
8457 else
Ritor1
parents:
diff changeset
8458 idx1 = i + 1;
Ritor1
parents:
diff changeset
8459
Ritor1
parents:
diff changeset
8460 if ( idx1 >= idx2 )
Ritor1
parents:
diff changeset
8461 return false;
Ritor1
parents:
diff changeset
8462 }
Ritor1
parents:
diff changeset
8463
Ritor1
parents:
diff changeset
8464
Ritor1
parents:
diff changeset
8465 uint uCompressedSize = 0;
Ritor1
parents:
diff changeset
8466 fread(&uCompressedSize, 4, 1, pFile);
Ritor1
parents:
diff changeset
8467
Ritor1
parents:
diff changeset
8468 auto pTex = new HWLTexture;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8469 fread(&pTex->uBufferWidth, 4, 1, pFile);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8470 fread(&pTex->uBufferHeight, 4, 1, pFile);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8471 fread(&pTex->uAreaWidth, 4, 1, pFile);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8472 fread(&pTex->uAreaHeigth, 4, 1, pFile);
0
Ritor1
parents:
diff changeset
8473 fread(&pTex->uWidth, 4, 1, pFile);
Ritor1
parents:
diff changeset
8474 fread(&pTex->uHeight, 4, 1, pFile);
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8475 fread(&pTex->uAreaX, 4, 1, pFile);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8476 fread(&pTex->uAreaY, 4, 1, pFile);
0
Ritor1
parents:
diff changeset
8477
Ritor1
parents:
diff changeset
8478 pTex->pPixels = new unsigned __int16[pTex->uWidth * pTex->uHeight];
Ritor1
parents:
diff changeset
8479 if (uCompressedSize)
Ritor1
parents:
diff changeset
8480 {
Ritor1
parents:
diff changeset
8481 auto pCompressedData = new char[uCompressedSize];
Ritor1
parents:
diff changeset
8482 {
Ritor1
parents:
diff changeset
8483 fread(pCompressedData, 1, uCompressedSize, pFile);
Ritor1
parents:
diff changeset
8484 auto uDecompressedSize = pTex->uWidth * pTex->uHeight * sizeof(short);
Ritor1
parents:
diff changeset
8485 zlib::MemUnzip(pTex->pPixels, &uDecompressedSize, pCompressedData, uCompressedSize);
Ritor1
parents:
diff changeset
8486 }
Ritor1
parents:
diff changeset
8487 delete [] pCompressedData;
Ritor1
parents:
diff changeset
8488 }
Ritor1
parents:
diff changeset
8489 else
Ritor1
parents:
diff changeset
8490 fread(pTex->pPixels, 2, pTex->uWidth * pTex->uHeight, pFile);
Ritor1
parents:
diff changeset
8491
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8492 if ( scale_hwls_to_half )
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8493 {
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8494 pTex->uHeight /= 2;
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8495 pTex->uWidth /= 2;
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8496 v13 = new unsigned __int16[pTex->uWidth * pTex->uHeight];
0
Ritor1
parents:
diff changeset
8497 v28 = 0;
Ritor1
parents:
diff changeset
8498 v26 = (unsigned __int16 *)v13;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8499 if ( pTex->uHeight > 0 )
0
Ritor1
parents:
diff changeset
8500 {
Ritor1
parents:
diff changeset
8501 v16 = pTex->uWidth;
Ritor1
parents:
diff changeset
8502 v27 = 1;
Ritor1
parents:
diff changeset
8503 do
Ritor1
parents:
diff changeset
8504 {
Ritor1
parents:
diff changeset
8505 pDestb = 0;
Ritor1
parents:
diff changeset
8506 if ( v16 > 0 )
Ritor1
parents:
diff changeset
8507 {
Ritor1
parents:
diff changeset
8508 do
Ritor1
parents:
diff changeset
8509 {
Ritor1
parents:
diff changeset
8510 v17 = v16 * v27;
Ritor1
parents:
diff changeset
8511 v18 = v28 * v16;
Ritor1
parents:
diff changeset
8512 v19 = pTex->pPixels;
Ritor1
parents:
diff changeset
8513 v20 = pDestb + 2 * v18;
Ritor1
parents:
diff changeset
8514 v21 = (int)&v19[2 * (pDestb + v17)];
Ritor1
parents:
diff changeset
8515 v22 = (int)&v19[2 * v20];
Ritor1
parents:
diff changeset
8516 LOWORD(v20) = *(unsigned short *)(v21 + 2);
Ritor1
parents:
diff changeset
8517 LOWORD(v21) = *(unsigned short *)v21;
Ritor1
parents:
diff changeset
8518 v23 = pDestb++ + v18;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8519 extern unsigned int __fastcall _452442_color_cvt(unsigned __int16 a1, unsigned __int16 a2, int a3, int a4);
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8520 v26[v23] = _452442_color_cvt(*(unsigned short *)v22, *(unsigned short *)(v22 + 2), v21, v20);
0
Ritor1
parents:
diff changeset
8521 v16 = pTex->uWidth;
Ritor1
parents:
diff changeset
8522 }
Ritor1
parents:
diff changeset
8523 while (pDestb < pTex->uWidth);
Ritor1
parents:
diff changeset
8524 }
Ritor1
parents:
diff changeset
8525 ++v28;
Ritor1
parents:
diff changeset
8526 v27 += 2;
Ritor1
parents:
diff changeset
8527 }
Ritor1
parents:
diff changeset
8528 while ( v28 < (signed int)pTex->uHeight );
Ritor1
parents:
diff changeset
8529 }
Ritor1
parents:
diff changeset
8530 delete [] pTex->pPixels;
Ritor1
parents:
diff changeset
8531 pTex->pPixels = v26;
Ritor1
parents:
diff changeset
8532 }
Ritor1
parents:
diff changeset
8533 return pTex;
Ritor1
parents:
diff changeset
8534 }
Ritor1
parents:
diff changeset
8535
Ritor1
parents:
diff changeset
8536 //----- (0045271F) --------------------------------------------------------
Ritor1
parents:
diff changeset
8537 bool RenderHWLContainer::Release()
Ritor1
parents:
diff changeset
8538 {
Ritor1
parents:
diff changeset
8539 __int32 v4; // eax@6
Ritor1
parents:
diff changeset
8540 FILE *v5; // ST24_4@6
Ritor1
parents:
diff changeset
8541 FILE *File; // [sp+4h] [bp-4h]@6
Ritor1
parents:
diff changeset
8542
1162
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8543 if ( this->bDumpDebug)
0
Ritor1
parents:
diff changeset
8544 {
Ritor1
parents:
diff changeset
8545 File = fopen("logd3d.txt", "w");
1162
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8546 v4 = ftell(this->pFile);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8547 v5 = this->pFile;
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8548 this->uDataOffset = v4;
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8549 fwrite(&this->uNumItems, 4u, 1u, v5);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8550 for (int i = 0; i < this->uNumItems; i++)
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8551 {
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8552 fwrite(this->pSpriteNames[i], 1u, 0x14u, this->pFile);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8553 fprintf(File, "D3D texture name: %s\t\toffset: %x\n", this->pSpriteNames[i], *(unsigned int *)(&(this->pSpriteNames[i]) + 200000/sizeof(char*)));
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8554 }
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8555 fwrite(this->pSpriteOffsets, 4u, this->uNumItems, this->pFile);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8556 fseek(this->pFile, 4, 0);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8557 fwrite(&this->uDataOffset, 4u, 1u, this->pFile);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8558 fclose(this->pFile);
0
Ritor1
parents:
diff changeset
8559 fclose(File);
Ritor1
parents:
diff changeset
8560 }
Ritor1
parents:
diff changeset
8561 else
Ritor1
parents:
diff changeset
8562 {
Ritor1
parents:
diff changeset
8563 fclose(this->pFile);
1162
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8564 for (int i = 0; i < this->uNumItems; i++)
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8565 {
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8566 free(this->pSpriteNames[i]);
0
Ritor1
parents:
diff changeset
8567 }
Ritor1
parents:
diff changeset
8568 }
1093
c59ac5ea63f5 * stru154::GetFacePlane mistake fixed
zipi
parents: 1075
diff changeset
8569 return true;
0
Ritor1
parents:
diff changeset
8570 }
Ritor1
parents:
diff changeset
8571
Ritor1
parents:
diff changeset
8572 //----- (00452347) --------------------------------------------------------
Ritor1
parents:
diff changeset
8573 RenderHWLContainer::RenderHWLContainer():
Ritor1
parents:
diff changeset
8574 bDumpDebug(false)
Ritor1
parents:
diff changeset
8575 {
Ritor1
parents:
diff changeset
8576 this->pFile = 0;
Ritor1
parents:
diff changeset
8577 uSignature = 0;
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8578 this->uDataOffset = 0;
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8579 memset(&this->uNumItems, 0, 0x61A84u);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8580 this->uNumItems = 0;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8581 this->scale_hwls_to_half = false;
0
Ritor1
parents:
diff changeset
8582 }
Ritor1
parents:
diff changeset
8583
Ritor1
parents:
diff changeset
8584 //----- (0045237F) --------------------------------------------------------
Ritor1
parents:
diff changeset
8585 bool RenderHWLContainer::Load(const wchar_t *pFilename)
Ritor1
parents:
diff changeset
8586 {
Ritor1
parents:
diff changeset
8587 pFile = _wfopen(pFilename, L"rb");
Ritor1
parents:
diff changeset
8588 if (!pFile)
Ritor1
parents:
diff changeset
8589 {
Ritor1
parents:
diff changeset
8590 Log::Warning(L"Failed to open file: %s", pFilename);
Ritor1
parents:
diff changeset
8591 return false;
Ritor1
parents:
diff changeset
8592 }
Ritor1
parents:
diff changeset
8593
Ritor1
parents:
diff changeset
8594 fread(&uSignature, 1, 4, pFile);
Ritor1
parents:
diff changeset
8595 if (uSignature != 'TD3D')
Ritor1
parents:
diff changeset
8596 {
Ritor1
parents:
diff changeset
8597 Log::Warning(L"Invalid format: %s", pFilename);
Ritor1
parents:
diff changeset
8598 return false;
Ritor1
parents:
diff changeset
8599 }
Ritor1
parents:
diff changeset
8600
Ritor1
parents:
diff changeset
8601 fread(&uDataOffset, 4, 1, pFile);
Ritor1
parents:
diff changeset
8602 fseek(pFile, uDataOffset, SEEK_SET);
Ritor1
parents:
diff changeset
8603 fread(&uNumItems, 4, 1, pFile);
Ritor1
parents:
diff changeset
8604
Ritor1
parents:
diff changeset
8605 memset(pSpriteNames, 0, 50000 * sizeof(char *));
Ritor1
parents:
diff changeset
8606 for (uint i = 0; i < uNumItems; ++i)
Ritor1
parents:
diff changeset
8607 {
Ritor1
parents:
diff changeset
8608 pSpriteNames[i] = new char[20];
Ritor1
parents:
diff changeset
8609 fread(pSpriteNames[i], 1, 20, pFile);
Ritor1
parents:
diff changeset
8610 }
Ritor1
parents:
diff changeset
8611 fread(pSpriteOffsets, 4, uNumItems, pFile);
Ritor1
parents:
diff changeset
8612
Ritor1
parents:
diff changeset
8613 return true;
Ritor1
parents:
diff changeset
8614 }
Ritor1
parents:
diff changeset
8615
Ritor1
parents:
diff changeset
8616 //----- (004A1C1E) --------------------------------------------------------
Ritor1
parents:
diff changeset
8617 void DoRenderBillboards_D3D()
Ritor1
parents:
diff changeset
8618 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8619 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8620 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8621 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8622 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8623
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8624 /*if (pRenderer->uNumBillboardsToDraw)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8625 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8626 auto p = &pRenderer->pBillboardRenderListD3D[0];
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8627 for (int i = 0; i < p->uNumVertices; ++i)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8628 {
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8629 p->pQuads[i].pos.z -= p->pQuads[i].pos.z * 0.6;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8630 //p->pQuads[i].rhw = + 0.8 * (1.0f - p->pQuads[i].rhw);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8631 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8632 p->pQuads[0].pos.x = 10;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8633 p->pQuads[0].pos.y = 10;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8634
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8635 p->pQuads[1].pos.x = 10;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8636 p->pQuads[1].pos.y = 200;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8637
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8638 p->pQuads[2].pos.x = 100;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8639 p->pQuads[2].pos.y = 200;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8640
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8641 p->pQuads[3].pos.x = 100;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8642 p->pQuads[3].pos.y = 10;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8643
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8644 if (p->uOpacity != RenderBillboardD3D::NoBlend)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8645 SetBillboardBlendOptions(p->uOpacity);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8646
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8647 pRenderer->pRenderD3D->pDevice->SetTexture(0, p->pTexture);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8648 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8649 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8650 p->pQuads, p->uNumVertices,
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8651 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS));
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8652
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8653 }*/
0
Ritor1
parents:
diff changeset
8654
Ritor1
parents:
diff changeset
8655 for (uint i = pRenderer->uNumBillboardsToDraw - 1; i != (uint)-1; --i)
Ritor1
parents:
diff changeset
8656 {
101
2fb33d31ca0d 8.02.13
Ritor1
parents: 98
diff changeset
8657 auto p = &pRenderer->pBillboardRenderListD3D[i];
0
Ritor1
parents:
diff changeset
8658
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8659 if (p->uOpacity != RenderBillboardD3D::NoBlend)
0
Ritor1
parents:
diff changeset
8660 SetBillboardBlendOptions(p->uOpacity);
Ritor1
parents:
diff changeset
8661
101
2fb33d31ca0d 8.02.13
Ritor1
parents: 98
diff changeset
8662 pRenderer->pRenderD3D->pDevice->SetTexture(0, p->pTexture);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8663 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8664 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8665 p->pQuads, p->uNumVertices,
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8666 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS));
0
Ritor1
parents:
diff changeset
8667 }
Ritor1
parents:
diff changeset
8668
Ritor1
parents:
diff changeset
8669 if (pRenderer->bFogEnabled)
Ritor1
parents:
diff changeset
8670 {
Ritor1
parents:
diff changeset
8671 pRenderer->bFogEnabled = false;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8672 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
0
Ritor1
parents:
diff changeset
8673 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF));
Ritor1
parents:
diff changeset
8674 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0));
Ritor1
parents:
diff changeset
8675 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8676 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8677 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8678 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8679 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8680 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8681 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
0
Ritor1
parents:
diff changeset
8682 }
Ritor1
parents:
diff changeset
8683
Ritor1
parents:
diff changeset
8684 //----- (004A1DA8) --------------------------------------------------------
Ritor1
parents:
diff changeset
8685 void SetBillboardBlendOptions(RenderBillboardD3D::OpacityType a1)
Ritor1
parents:
diff changeset
8686 {
Ritor1
parents:
diff changeset
8687 switch (a1)
Ritor1
parents:
diff changeset
8688 {
Ritor1
parents:
diff changeset
8689 case RenderBillboardD3D::Transparent:
Ritor1
parents:
diff changeset
8690 {
Ritor1
parents:
diff changeset
8691 if (pRenderer->bFogEnabled)
Ritor1
parents:
diff changeset
8692 {
Ritor1
parents:
diff changeset
8693 pRenderer->bFogEnabled = false;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8694 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
0
Ritor1
parents:
diff changeset
8695 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF));
Ritor1
parents:
diff changeset
8696 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0));
Ritor1
parents:
diff changeset
8697 }
Ritor1
parents:
diff changeset
8698
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8699 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8700 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8701 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
0
Ritor1
parents:
diff changeset
8702 }
Ritor1
parents:
diff changeset
8703 break;
Ritor1
parents:
diff changeset
8704
Ritor1
parents:
diff changeset
8705 case RenderBillboardD3D::Opaque_1:
Ritor1
parents:
diff changeset
8706 case RenderBillboardD3D::Opaque_2:
Ritor1
parents:
diff changeset
8707 case RenderBillboardD3D::Opaque_3:
Ritor1
parents:
diff changeset
8708 {
Ritor1
parents:
diff changeset
8709 if (pRenderer->bUsingSpecular)
Ritor1
parents:
diff changeset
8710 {
Ritor1
parents:
diff changeset
8711 if (!pRenderer->bFogEnabled)
Ritor1
parents:
diff changeset
8712 {
Ritor1
parents:
diff changeset
8713 pRenderer->bFogEnabled = true;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8714 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8715 }
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8716 }
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8717
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8718 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8719 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8720 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
0
Ritor1
parents:
diff changeset
8721 }
Ritor1
parents:
diff changeset
8722 break;
Ritor1
parents:
diff changeset
8723
Ritor1
parents:
diff changeset
8724 default:
Ritor1
parents:
diff changeset
8725 Log::Warning(L"SetBillboardBlendOptions: invalid opacity type (%u)", a1);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8726 assert(false);
0
Ritor1
parents:
diff changeset
8727 break;
Ritor1
parents:
diff changeset
8728 }
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8729 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8730
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8731 //----- (00424EE0) --------------------------------------------------------
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8732 int BuildingVerticesClipping(unsigned int uNumVertices)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8733 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8734 signed int previous_vertices_flag; // edi@1
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8735 double t; // st6@10
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8736 bool current_vertices_flag; // [sp+Ch] [bp-28h]@6
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8737 signed int depth_num_vertices; // [sp+18h] [bp-1Ch]@1
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8738 int pNextVertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8739 //Äîï èíôî "Ïðîãðàììèðîâàíèå òð¸õìåðíûõ èãð äëÿ windows" Ëàìîò ñòð 910
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8740
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8741 memcpy(&array_50AC10[uNumVertices], array_50AC10, sizeof(array_50AC10[uNumVertices]));
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8742 depth_num_vertices = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8743 previous_vertices_flag = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8744 if ( array_50AC10[0].vWorldViewPosition.x <= pODMRenderParams->shading_dist_mist )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8745 previous_vertices_flag = 1;//ïðåäûäóùàÿ ãðàíü ìåíüøå ãðàíèöû âèäèìîñòè
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8746 if ( (signed int)uNumVertices <= 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8747 return 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8748 for ( uint i = 1; i <= uNumVertices; ++i )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8749 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8750 current_vertices_flag = pODMRenderParams->shading_dist_mist >= array_50AC10[i].vWorldViewPosition.x;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8751 if ( previous_vertices_flag != current_vertices_flag )//îäíà èç ãðàíåé çà ãðàíèöåé âèäèìîñòè
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8752 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8753 if ( current_vertices_flag )//òåêóùàÿ ãðàíü ìåíüøå ãðàíèöû âèäèìîñòè(ïðåäûäóùàÿ ãðàíü çà ïðåäåëàìè âèäèìîñòè)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8754 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8755 //t = far_clip - v0.x / v1.x - v0.x (ôîðìóëà ïîëó÷åíèÿ òî÷êè ïåðåñå÷åíèÿ îòðåçêà ñ ïëîñêîñòüþ)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8756 t = (pODMRenderParams->shading_dist_mist - array_50AC10[i - 1].vWorldViewPosition.x) / (array_50AC10[i].vWorldViewPosition.x - array_50AC10[i - 1].vWorldViewPosition.x);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8757 array_507D30[depth_num_vertices].vWorldViewPosition.y = (array_50AC10[i].vWorldViewPosition.y - array_50AC10[i - 1].vWorldViewPosition.y) * t + array_50AC10[i - 1].vWorldViewPosition.y;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8758 array_507D30[depth_num_vertices].vWorldViewPosition.z = (array_50AC10[i].vWorldViewPosition.z - array_50AC10[i - 1].vWorldViewPosition.z) * t + array_50AC10[i - 1].vWorldViewPosition.z;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8759 array_507D30[depth_num_vertices].u = (array_50AC10[i].u - array_50AC10[i - 1].u) * t + array_50AC10[i - 1].u;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8760 array_507D30[depth_num_vertices].v = (array_50AC10[i].v - array_50AC10[i - 1].v) * t + array_50AC10[i - 1].v;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8761 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8762 else//ïðåäûäóùàÿ ãðàíü ìåíüøå ãðàíèöû âèäèìîñòè(òåêóùàÿ ãðàíü âûøëà çà ïðåäåëû âèäèìîñòè)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8763 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8764 //t = far_clip - v1.x / v0.x - v1.x
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8765 t = (pODMRenderParams->shading_dist_mist - array_50AC10[i].vWorldViewPosition.x) / (array_50AC10[i - 1].vWorldViewPosition.x - array_50AC10[i].vWorldViewPosition.x);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8766 array_507D30[depth_num_vertices].vWorldViewPosition.y = (array_50AC10[i - 1].vWorldViewPosition.y - array_50AC10[i].vWorldViewPosition.y) * t + array_50AC10[i].vWorldViewPosition.y;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8767 array_507D30[depth_num_vertices].vWorldViewPosition.z = (array_50AC10[i - 1].vWorldViewPosition.z - array_50AC10[i].vWorldViewPosition.z) * t + array_50AC10[i].vWorldViewPosition.z;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8768 array_507D30[depth_num_vertices].u = (array_50AC10[i - 1].u - array_50AC10[i].u) * t + array_50AC10[i].u;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8769 array_507D30[depth_num_vertices].v = (array_50AC10[i - 1].v - array_50AC10[i].v) * t + array_50AC10[i].v;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8770 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8771 array_507D30[depth_num_vertices].vWorldViewPosition.x = pODMRenderParams->shading_dist_mist;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8772 array_507D30[depth_num_vertices]._rhw = 1.0 / pODMRenderParams->shading_dist_mist;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8773 ++depth_num_vertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8774 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8775 if ( current_vertices_flag )//îáà â ãðàíèöå âèäèìîñòè
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8776 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8777 pNextVertices = depth_num_vertices++;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8778 memcpy(&array_507D30[pNextVertices], &array_50AC10[i], 0x30);
1799
dfafcd39c67b GetSpellColor, DrawSkyD3D()(continue)
Ritor1
parents: 1787
diff changeset
8779 //array_507D30[pNextVertices]._rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001);
dfafcd39c67b GetSpellColor, DrawSkyD3D()(continue)
Ritor1
parents: 1787
diff changeset
8780 //array_507D30[pNextVertices].flt_2C = array_50AC10[i].flt_2C;
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8781 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8782 previous_vertices_flag = current_vertices_flag;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8783 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8784 if ( depth_num_vertices < 3 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8785 return 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8786 return depth_num_vertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8787 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8788
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8789 //----- (0047840D) --------------------------------------------------------
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8790 void Render::DrawBuildingsD3D()
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8791 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8792 int v9; // ecx@8
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8793 Texture *pFaceTexture; // eax@10
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8794 unsigned int v16; // edi@22
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8795 int v27; // eax@57
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8796 int vertex_id; // eax@58
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8797 unsigned int v34; // eax@80
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8798 int v40; // [sp-4h] [bp-5Ch]@2
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8799 int v49; // [sp+2Ch] [bp-2Ch]@10
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8800 int v50; // [sp+30h] [bp-28h]@34
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8801 int v51; // [sp+34h] [bp-24h]@35
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8802 int v52; // [sp+38h] [bp-20h]@36
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8803 int v53; // [sp+3Ch] [bp-1Ch]@8
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8804 int uNumVertices; // [sp+4Ch] [bp-Ch]@34
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8805 int unused; // [sp+50h] [bp-8h]@3
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8806
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8807 if ( !pRenderer->pRenderD3D )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8808 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8809 MessageBoxW(nullptr, L"D3D version of RenderBuildings called in software!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odbuild.cpp:73", 0);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8810 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8811
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8812 unused = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8813 if ( (signed int)pOutdoor->uNumBModels > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8814 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8815 for ( uint model_id = 0; model_id < pOutdoor->uNumBModels; model_id++ )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8816 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8817 if ( IsBModelVisible(model_id, &unused) )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8818 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8819 pOutdoor->pBModels[model_id].field_40 |= 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8820 if ( pOutdoor->pBModels[model_id].uNumFaces > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8821 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8822 for ( int face_id = 0; face_id < pOutdoor->pBModels[model_id].uNumFaces; face_id++ )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8823 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8824 if (!pOutdoor->pBModels[model_id].pFaces[face_id].Invisible())
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8825 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8826 v53 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8827 array_77EC08[pODMRenderParams->uNumPolygons].flags = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8828 array_77EC08[pODMRenderParams->uNumPolygons].field_32 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8829 v9 = pOutdoor->pBModels[model_id].pFaces[face_id].uTextureID;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8830 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_TEXTURE_FRAME)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8831 v9 = pTextureFrameTable->GetFrameTexture(v9, pEventTimer->uTotalGameTimeElapsed);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8832 pFaceTexture = pBitmaps_LOD->GetTexture(v9);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8833 array_77EC08[pODMRenderParams->uNumPolygons].pTexture = pFaceTexture;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8834 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_FLUID)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8835 array_77EC08[pODMRenderParams->uNumPolygons].flags |= 2;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8836 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_DO_NOT_LIGHT )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8837 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 4;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8838 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & 4 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8839 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 4;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8840 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8841 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8842 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & 0x20 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8843 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 8;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8844 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8845 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & 0x0800)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8846 array_77EC08[pODMRenderParams->uNumPolygons].flags |= 0x2000;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8847 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8848 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8849 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_DONT_CACHE_TEXTURE)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8850 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 0x10u;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8851 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8852 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU = pOutdoor->pBModels[model_id].pFaces[face_id].sTextureDeltaU;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8853 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV = pOutdoor->pBModels[model_id].pFaces[face_id].sTextureDeltaV;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8854 v16 = GetTickCount() >> 4;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8855 if ( pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z && abs(pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z) >= 59082 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8856 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8857 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 4 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8858 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8859 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 8 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8860 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8861 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8862 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8863 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8864 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 4 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8865 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8866 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 8 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8867 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8868 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8869 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x10 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8870 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uWidthMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8871 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8872 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8873 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x20 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8874 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uWidthMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8875 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8876 v50 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8877 v49 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8878 uNumVertices = pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8879 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8880 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8881 for ( uint vertex_id = 1; vertex_id <= pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; vertex_id++ )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8882 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8883 array_73D150[vertex_id - 1].vWorldPosition.x = pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[vertex_id - 1]].x;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8884 array_73D150[vertex_id - 1].vWorldPosition.y = pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[vertex_id - 1]].y;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8885 array_73D150[vertex_id - 1].vWorldPosition.z = pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[vertex_id - 1]].z;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8886 array_73D150[vertex_id - 1].u = (array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU + (signed __int16)pOutdoor->pBModels[model_id].pFaces[face_id].pTextureUIDs[vertex_id - 1]) * (1.0 / (double)pFaceTexture->uTextureWidth);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8887 array_73D150[vertex_id - 1].v = (array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV + (signed __int16)pOutdoor->pBModels[model_id].pFaces[face_id].pTextureVIDs[vertex_id - 1]) * (1.0 / (double)pFaceTexture->uTextureHeight);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8888 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8889 for ( uint i = 1; i <= pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; i++ )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8890 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8891 if ( pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[0]].z == array_73D150[i - 1].vWorldPosition.z )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8892 ++v53;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8893 pGame->pIndoorCameraD3D->ViewTransform(&array_73D150[i - 1], 1);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8894 if ( array_73D150[i - 1].vWorldViewPosition.x < 8.0 || array_73D150[i - 1].vWorldViewPosition.x > pODMRenderParams->shading_dist_mist )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8895 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8896 if ( array_73D150[i - 1].vWorldViewPosition.x >= 8.0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8897 v49 = 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8898 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8899 v50 = 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8900 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8901 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8902 pGame->pIndoorCameraD3D->Project(&array_73D150[i - 1], 1, 0);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8903 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8904 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8905 if ( v53 == pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8906 LOBYTE(array_77EC08[pODMRenderParams->uNumPolygons].field_32) |= 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8907 array_77EC08[pODMRenderParams->uNumPolygons].pODMFace = &pOutdoor->pBModels[model_id].pFaces[face_id];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8908 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8909 array_77EC08[pODMRenderParams->uNumPolygons].field_59 = 5;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8910 v51 = (unsigned __int64)(-pOutdoor->vSunlight.x * (signed __int64)pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.x) >> 16;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8911 v53 = (unsigned __int64)(-pOutdoor->vSunlight.y * (signed __int64)pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.y) >> 16;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8912 v52 = (unsigned __int64)(-pOutdoor->vSunlight.z * (signed __int64)pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z) >> 16;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8913 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 20 - (20 * (signed int)(v51 + v53 + v52) >> 16);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8914 if ( array_77EC08[pODMRenderParams->uNumPolygons].dimming_level < 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8915 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8916 if ( array_77EC08[pODMRenderParams->uNumPolygons].dimming_level > 31 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8917 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 31;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8918 if ( pODMRenderParams->uNumPolygons >= 1999 + 5000)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8919 return;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8920 if ( ODMFace::IsBackfaceCulled(&pOutdoor->pBModels[model_id].pFaces[face_id], array_73D150, &array_77EC08[pODMRenderParams->uNumPolygons]) )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8921 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8922 pOutdoor->pBModels[model_id].pFaces[face_id].bVisible = 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8923 array_77EC08[pODMRenderParams->uNumPolygons].uBModelFaceID = face_id;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8924 array_77EC08[pODMRenderParams->uNumPolygons].uBModelID = model_id;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8925 v27 = 8 * (face_id | (model_id << 6));
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8926 LOBYTE(v27) = v27 | 6;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8927 array_77EC08[pODMRenderParams->uNumPolygons].field_50 = v27;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8928 for ( int vertex_id = 0; vertex_id < pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; ++vertex_id)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8929 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8930 memcpy(&array_50AC10[vertex_id], &array_73D150[vertex_id], sizeof(array_50AC10[vertex_id]));
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8931 array_50AC10[vertex_id]._rhw = 1.0 / (array_73D150[vertex_id].vWorldViewPosition.x + 0.0000001);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8932 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8933 static stru154 static_RenderBuildingsD3D_stru_73C834;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8934 /*static bool __init_flag = false;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8935 if (!__init_flag)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8936 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8937 __init_flag = true;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8938 static_RenderBuildingsD3D_byte_73C84C_init_flag |= 1u;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8939 stru154::stru154(&static_RenderBuildingsD3D_stru_73C834);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8940 atexit(loc_4789D4);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8941 }*/
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8942
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8943 v40 = (int)&pOutdoor->pBModels[model_id].pFaces[face_id];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8944 pGame->pLightmapBuilder->ApplyLights_OutdoorFace(&pOutdoor->pBModels[model_id].pFaces[face_id]);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8945 pDecalBuilder->ApplyDecals_OutdoorFace(&pOutdoor->pBModels[model_id].pFaces[face_id]);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8946 pGame->pLightmapBuilder->std__vector_000004_size = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8947 int v31 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8948 if ( stru_F8AD28.uNumLightsApplied > 0 || pDecalBuilder->uNumDecals > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8949 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8950 v31 = v50 ? 3 : v49 != 0 ? 5 : 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8951 static_RenderBuildingsD3D_stru_73C834.GetFacePlaneAndClassify(&pOutdoor->pBModels[model_id].pFaces[face_id], &pOutdoor->pBModels[model_id].pVertices);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8952 if ( pDecalBuilder->uNumDecals > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8953 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8954 v40 = -1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8955 pDecalBuilder->ApplyDecals(31 - array_77EC08[pODMRenderParams->uNumPolygons].dimming_level, 2, &static_RenderBuildingsD3D_stru_73C834,
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8956 pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices, array_50AC10, 0, (char)v31, -1);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8957 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8958 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8959 if ( stru_F8AD28.uNumLightsApplied > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8960 pGame->pLightmapBuilder->ApplyLights(&stru_F8AD28, &static_RenderBuildingsD3D_stru_73C834, uNumVertices, array_50AC10, 0, (char)v31);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8961 if ( v50 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8962 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8963 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = sr_424CD7(pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8964 uNumVertices = array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8965 ODM_Project(array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8966 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8967 if ( v49 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8968 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8969 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = BuildingVerticesClipping(pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8970 uNumVertices = array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8971 ODM_Project(array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8972 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8973 if ( uNumVertices )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8974 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8975 if ( array_77EC08[pODMRenderParams->uNumPolygons].flags & 2 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8976 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8977 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x3C )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8978 v34 = pRenderer->pHDWaterBitmapIDs[0];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8979 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8980 v34 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8981 v40 = (int)pBitmaps_LOD->pHardwareTextures[v34];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8982 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8983 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8984 v40 = (int)pBitmaps_LOD->pHardwareTextures[v9];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8985 pRenderer->DrawPolygon(uNumVertices, &array_77EC08[pODMRenderParams->uNumPolygons], &pOutdoor->pBModels[model_id].pFaces[face_id], (IDirect3DTexture2 *)v40);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8986 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8987 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8988 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8989 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8990 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8991 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8992 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8993 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8994 return;
1679
4da5644df18f Cosmetics
Nomad
parents: 1675
diff changeset
8995 }