Mercurial > mm7
annotate Render.cpp @ 1675:f1cdf8c062d4
MainMenuUI_Credits_Loop() and CreditsTextureScroll
author | Ritor1 |
---|---|
date | Thu, 19 Sep 2013 16:45:21 +0600 |
parents | 5302a9811767 |
children | 4da5644df18f |
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 | 5 #include "Outdoor_stuff.h" |
1016 | 6 #include "VideoPlayer.h" |
7 #include "Sprites.h" | |
8 #include "Mouse.h" | |
9 #include "GammaControl.h" | |
10 #include "stru6.h" | |
1183 | 11 #include "GUIWindow.h" |
1016 | 12 #include "DecalBuilder.h" |
13 #include "ParticleEngine.h" | |
0 | 14 #include "Render.h" |
15 #include "Outdoor.h" | |
16 #include "Party.h" | |
17 #include "LOD.h" | |
18 #include "Viewport.h" | |
19 #include "Math.h" | |
20 #include "PaletteManager.h" | |
21 #include "Time.h" | |
22 #include "Game.h" | |
23 #include "LightmapBuilder.h" | |
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 | 26 #include "DecorationList.h" |
27 #include "OSInfo.h" | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
28 #include "Actor.h" |
0 | 29 #include "Log.h" |
179 | 30 #include "TileFrameTable.h" |
189 | 31 #include "texts.h" |
0 | 32 #include "mm7_data.h" |
860 | 33 #include "MM7.h" |
1262 | 34 #include "Lights.h" |
0 | 35 |
36 #pragma comment(lib, "lib\\legacy_dx\\lib\\ddraw.lib") | |
37 #pragma comment(lib, "lib\\legacy_dx\\lib\\dxguid.lib") | |
38 | |
39 struct IDirectDrawClipper *pDDrawClipper; | |
40 struct Render *pRenderer; // idb | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
41 struct RenderVertexD3D3 pVertices[50]; |
0 | 42 int uNumDecorationsDrawnThisFrame; // weak |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
43 RenderBillboard pBillboardRenderList[500]; |
0 | 44 unsigned int uNumBillboardsToDraw; |
45 int uNumSpritesDrawnThisFrame; // weak | |
46 | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
47 RenderVertexSoft array_507D30[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
48 RenderVertexSoft array_50AC10[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
49 RenderVertexSoft array_73D150[20]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
50 |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
51 RenderVertexD3D3 d3d_vertex_buffer[50]; |
0 | 52 |
53 void SetBillboardBlendOptions(RenderBillboardD3D::OpacityType a1); | |
54 | |
55 /* 384 */ | |
56 #pragma pack(push, 1) | |
57 struct PCXHeader_1 | |
58 { | |
59 char manufacturer; | |
60 char version; | |
61 char encoding; | |
62 char bpp; | |
63 __int16 left; | |
64 __int16 up; | |
65 __int16 right; | |
66 __int16 bottom; | |
67 __int16 hdpi; | |
68 __int16 vdpi; | |
69 }; | |
70 #pragma pack(pop) | |
71 | |
72 /* 385 */ | |
73 #pragma pack(push, 1) | |
74 struct PCXHeader_2 | |
75 { | |
76 char reserved; | |
77 char planes; | |
78 __int16 pitch; | |
79 __int16 palette_info; | |
80 }; | |
81 #pragma pack(pop) | |
82 | |
83 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst); | |
84 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2); | |
85 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, struct RenderD3D_aux *a6); | |
86 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut); // idb | |
87 | |
88 //----- (0049E79F) -------------------------------------------------------- | |
1458 | 89 bool CheckTextureStages() |
0 | 90 { |
91 bool v0; // edi@1 | |
92 IDirectDrawSurface4 *pSurface2; // [sp+Ch] [bp-14h]@1 | |
93 IDirectDrawSurface4 *pSurface1; // [sp+10h] [bp-10h]@1 | |
94 DWORD v4; // [sp+14h] [bp-Ch]@1 | |
95 IDirect3DTexture2 *pTexture2; // [sp+18h] [bp-8h]@1 | |
96 IDirect3DTexture2 *pTexture1; // [sp+1Ch] [bp-4h]@1 | |
97 | |
98 v0 = false; | |
99 pRenderer->pRenderD3D->CreateTexture(64u, 64u, &pSurface1, &pTexture1, true, false, 32u); | |
100 pRenderer->pRenderD3D->CreateTexture(64u, 64u, &pSurface2, &pTexture2, true, false, 32u); | |
101 | |
102 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture1)); | |
186 | 103 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 104 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 2u)); |
105 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u)); | |
106 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u)); | |
107 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u)); | |
108 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 1u)); | |
109 | |
110 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture2)); | |
186 | 111 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP)); |
0 | 112 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_TEXCOORDINDEX, 1u)); |
113 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 7u)); | |
114 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG1, 2u)); | |
115 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG2, 1u)); | |
116 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MAGFILTER, 2u)); | |
117 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MINFILTER, 2u)); | |
118 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MIPFILTER, 1u)); | |
119 | |
120 if ( !pRenderer->pRenderD3D->pDevice->ValidateDevice(&v4) && v4 == 1 ) | |
121 v0 = true; | |
122 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 1u)); | |
123 pTexture1->Release(); | |
124 pTexture2->Release(); | |
125 pSurface1->Release(); | |
126 pSurface2->Release(); | |
127 return v0; | |
128 } | |
129 | |
130 //----- (00440CB8) -------------------------------------------------------- | |
131 void Render::DrawBillboardList_BLV() | |
132 { | |
133 __int16 v2; // ax@3 | |
134 int v5; // eax@11 | |
135 RenderBillboardTransform_local0 soft_billboard; // [sp+4h] [bp-50h]@1 | |
136 | |
137 soft_billboard.uParentBillboardID = -1; | |
138 soft_billboard.pTarget = pBLVRenderParams->pRenderTarget; | |
139 soft_billboard.pTargetZ = pBLVRenderParams->pTargetZBuffer; | |
140 soft_billboard.uTargetPitch = pRenderer->uTargetSurfacePitch; | |
141 soft_billboard.uViewportX = pBLVRenderParams->uViewportX; | |
142 soft_billboard.uViewportY = pBLVRenderParams->uViewportY; | |
143 soft_billboard.uViewportZ = pBLVRenderParams->uViewportZ - 1; | |
144 soft_billboard.uViewportW = pBLVRenderParams->uViewportW; | |
145 | |
1637 | 146 pODMRenderParams->uNumBillboards = ::uNumBillboardsToDraw; |
617 | 147 for (uint i = 0; i < ::uNumBillboardsToDraw; ++i) |
0 | 148 { |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
149 auto p = pBillboardRenderList + i; |
0 | 150 |
151 soft_billboard.uScreenSpaceX = p->uScreenSpaceX; | |
152 soft_billboard.uParentBillboardID = i; | |
153 soft_billboard.uScreenSpaceY = p->uScreenSpaceY; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
154 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
|
155 soft_billboard._screenspace_y_scaler_packedfloat = p->_screenspace_y_scaler_packedfloat; |
0 | 156 soft_billboard.sZValue = p->sZValue; |
157 soft_billboard.uFlags = p->field_1E; | |
158 soft_billboard.uTintColor = p->uTintColor; | |
159 v2 = p->uHwSpriteID; | |
160 if ( v2 != -1 ) | |
161 { | |
162 if ( pRenderer->pRenderD3D ) | |
657 | 163 pRenderer->DrawBillboard_Indoor(&soft_billboard, &pSprites_LOD->pHardwareSprites[v2], p->dimming_level); |
0 | 164 else |
165 { | |
657 | 166 soft_billboard.pPalette = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, p->dimming_level, 1); |
0 | 167 if (p->field_1E & 0x0100) |
168 soft_billboard.pPalette = pPaletteManager->field_261600[p->uPalette]; | |
169 if ( !(soft_billboard.uFlags & 0x40) && soft_billboard.uFlags & 0x80 ) | |
170 soft_billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, 0, 1); | |
171 v5 = p->uHwSpriteID; | |
172 if ( v5 >= 0 ) | |
733 | 173 pSprites_LOD->pSpriteHeaders[v5].DrawSprite_sw(&soft_billboard, 1); |
0 | 174 } |
175 } | |
176 } | |
177 } | |
178 | |
179 //----- (004A16A5) -------------------------------------------------------- | |
1458 | 180 bool AreRenderSurfacesOk() |
0 | 181 { |
182 char v0; // zf@4 | |
183 bool result; // eax@8 | |
184 | |
185 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
186 { | |
187 if ( !pRenderer->pBackBuffer4 ) | |
188 goto LABEL_9; | |
189 v0 = pRenderer->pFrontBuffer4 == 0; | |
190 } | |
191 else | |
192 { | |
193 if ( !pRenderer->pBackBuffer2 ) | |
194 goto LABEL_9; | |
195 v0 = pRenderer->pFrontBuffer2 == 0; | |
196 } | |
197 if ( !v0 ) | |
198 { | |
199 LOBYTE(result) = 1; | |
200 return result; | |
201 } | |
202 LABEL_9: | |
203 LOBYTE(result) = 0; | |
204 return result; | |
205 } | |
206 | |
1338 | 207 void Render::RenderTerrainD3D() // New function |
86 | 208 { |
209 int v6; // ecx@8 | |
1427 | 210 struct Polygon *pTilePolygon; // ebx@8 |
186 | 211 |
212 //warning: the game uses CW culling by default, ccw is incosistent | |
213 pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CCW); | |
214 | |
1338 | 215 static RenderVertexSoft pTerrainVertices[128 * 128];//vertexCountX and vertexCountZ |
216 | |
217 //Ãåíåðàöèÿ ìåñòîïîëîæåíèÿ âåðøèí------------------------------------------------------------------------- | |
218 //ðåø¸òêà âåðøèí äåëèòñÿ íà äâå ÷àñòè îò -64 äî 0 è îò 0 äî 64 | |
219 // | |
220 // -64 X 0 64 | |
221 // --------------- 64 | |
222 // | | | | |
223 // | | | | |
224 // | | | | |
225 // 0|------+------| Z | |
226 // | | | | |
227 // | | | | |
228 // | | | | |
229 // --------------- | |
230 // -64 | |
231 | |
232 int blockScale = 512; | |
233 int heightScale = 32; | |
234 for (unsigned int z = 0; z < 128; ++z) | |
235 { | |
236 for (unsigned int x = 0; x < 128; ++x) | |
237 { | |
238 pTerrainVertices[z * 128 + x].vWorldPosition.x = (-64 + (signed)x) * blockScale; | |
239 pTerrainVertices[z * 128 + x].vWorldPosition.y = (64 - (signed)z) * blockScale; | |
240 pTerrainVertices[z * 128 + x].vWorldPosition.z = heightScale * pOutdoor->pTerrain.pHeightmap[z * 128 + x]; | |
121 | 241 pGame->pIndoorCameraD3D->ViewTransform(&pTerrainVertices[z * 128 + x], 1); |
242 pGame->pIndoorCameraD3D->Project(&pTerrainVertices[z * 128 + x], 1, 0); | |
106 | 243 } |
244 } | |
1338 | 245 //-------------------------------------------------------------------------------------------------------------------- |
246 | |
247 // | |
1344 | 248 for (unsigned int z = 0; z < 127; ++z) |
249 { | |
250 for (unsigned int x = 0; x < 127; ++x) | |
1338 | 251 { |
1637 | 252 pTilePolygon = &array_77EC08[pODMRenderParams->uNumPolygons]; |
1427 | 253 pTilePolygon->flags = 0; |
254 pTilePolygon->field_32 = 0; | |
255 pTilePolygon->uTileBitmapID = pOutdoor->DoGetTileTexture(x, z); | |
256 pTilePolygon->pTexture = (Texture *)&pBitmaps_LOD->pHardwareTextures[pTilePolygon->uTileBitmapID]; | |
257 if (pTilePolygon->uTileBitmapID == 0xFFFF) | |
106 | 258 continue; |
186 | 259 |
1338 | 260 //pTile->flags = 0x8010 |pOutdoor->GetSomeOtherTileInfo(x, z); |
1427 | 261 pTilePolygon->flags = pOutdoor->GetSomeOtherTileInfo(x, z); |
262 pTilePolygon->field_32 = 0; | |
263 pTilePolygon->field_59 = 1; | |
264 pTilePolygon->sTextureDeltaU = 0; | |
265 pTilePolygon->sTextureDeltaV = 0; | |
1338 | 266 // x,z x+1,z |
267 // .____________. | |
268 // | | | |
269 // | | | |
270 // | | | |
271 // | | | |
272 // | | | |
273 // .____________. | |
274 // x,z+1 x+1,z+1 | |
275 memcpy(&array_73D150[0], &pTerrainVertices[z * 128 + x], sizeof(RenderVertexSoft));//x, z | |
106 | 276 array_73D150[0].u = 0; |
277 array_73D150[0].v = 0; | |
1338 | 278 memcpy(&array_73D150[1], &pTerrainVertices[z * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z |
106 | 279 array_73D150[1].u = 1; |
280 array_73D150[1].v = 0; | |
1338 | 281 memcpy(&array_73D150[2], &pTerrainVertices[(z + 1) * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z + 1 |
106 | 282 array_73D150[2].u = 1; |
283 array_73D150[2].v = 1; | |
1338 | 284 memcpy(&array_73D150[3], &pTerrainVertices[(z + 1) * 128 + x], sizeof(RenderVertexSoft));//x, z + 1 |
106 | 285 array_73D150[3].u = 0; |
286 array_73D150[3].v = 1; | |
1338 | 287 //v58 = 0; |
288 //if (v58 == 4) // if all y == first y; primitive in xz plane | |
289 //pTile->field_32 |= 0x0001; | |
1427 | 290 pTilePolygon->pODMFace = nullptr; |
291 pTilePolygon->uNumVertices = 4; | |
292 pTilePolygon->field_59 = 5; | |
1338 | 293 |
294 //shading (çàòåíåíèå)---------------------------------------------------------------------------- | |
295 //uint norm_idx = pTerrainNormalIndices[2 * (z * 128 + x) + 1]; | |
1424 | 296 uint norm_idx = pTerrainNormalIndices[2 * (x * 128 + z) + 2]; |
638 | 297 assert(norm_idx < uNumTerrainNormals); |
298 | |
299 auto norm = pTerrainNormals + norm_idx; | |
1338 | 300 float _f = ((norm->x * (float)pOutdoor->vSunlight.x / 65536.0) - |
301 (norm->y * (float)pOutdoor->vSunlight.y / 65536.0) - | |
302 (norm->z * (float)pOutdoor->vSunlight.z / 65536.0)); | |
1427 | 303 pTilePolygon->dimming_level = 20.0 - floorf(20.0 * _f + 0.5f); |
1338 | 304 //----------------------------------------------------------------------------------------------- |
638 | 305 |
1637 | 306 ++pODMRenderParams->uNumPolygons; |
307 ++pODMRenderParams->field_44; | |
308 assert(pODMRenderParams->uNumPolygons < 20000); | |
265 | 309 |
1427 | 310 pTilePolygon->uBModelID = 0; |
311 pTilePolygon->uBModelFaceID = 0; | |
312 pTilePolygon->field_50 = (8 * (0 | (0 << 6))) | 6; | |
313 for (unsigned int k = 0; k < pTilePolygon->uNumVertices; ++k) | |
106 | 314 { |
315 memcpy(&array_50AC10[k], &array_73D150[k], sizeof(struct RenderVertexSoft)); | |
168 | 316 array_50AC10[k]._rhw = 1.0 / (array_73D150[k].vWorldViewPosition.x + 0.0000001000000011686097); |
106 | 317 } |
140 | 318 |
1338 | 319 // check the transparency and texture (tiles) mapping (ïðîâåðêà ïðîçðà÷íîñòè è íàëîæåíèå òåêñòóð (òàéëîâ))---------------------- |
186 | 320 bool transparent = false; |
1427 | 321 if ( !( pTilePolygon->flags & 1 ) ) // íå ïîääåðæèâàåòñÿ TextureFrameTable |
322 { | |
323 if ( /*pTile->flags & 2 && */pTilePolygon->uTileBitmapID == pRenderer->hd_water_tile_id) | |
1338 | 324 { |
325 //transparent = false; | |
326 v6 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame]; | |
327 } | |
328 else | |
329 { | |
1427 | 330 v6 = pTilePolygon->uTileBitmapID; |
331 if ( !_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5) ) | |
1338 | 332 transparent = true; |
333 } | |
179 | 334 |
140 | 335 assert(v6 < 1000); // many random crashes here |
186 | 336 |
337 // for all shore tiles - draw a tile water under them since they're half-empty | |
1427 | 338 if (!_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5)) // all shore tile filenames are wtrdrXXX |
339 pTilePolygon->DrawBorderTiles(); | |
340 | |
341 pRenderer->DrawTerrainPolygon(pTilePolygon->uNumVertices, pTilePolygon, pBitmaps_LOD->pHardwareTextures[v6], transparent, true); | |
1338 | 342 } |
343 //else //çäåñü óæå ïîãðàíè÷íûå òàéëû âîäû | |
344 //pTile->DrawBorderTiles(); | |
345 //-------------------------------------------------------------------------------------------------------------------------------- | |
186 | 346 |
1637 | 347 --pODMRenderParams->uNumPolygons; |
348 --pODMRenderParams->field_44; | |
106 | 349 } |
350 } | |
351 } | |
0 | 352 |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
353 |
0 | 354 |
355 //----- (0047BACF) -------------------------------------------------------- | |
356 void Render::TransformBillboardsAndSetPalettesODM() | |
357 { | |
142 | 358 //int v0; // edi@1 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
359 //char *v1; // esi@2 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
360 //unsigned int v2; // edx@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
361 //int v3; // eax@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
362 //int v4; // edi@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
363 //int v5; // eax@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
364 //__int16 v6; // di@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
365 //int v7; // eax@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
366 //int v8; // ebx@4 |
0 | 367 unsigned __int16 *v9; // eax@7 |
368 char v10; // zf@9 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
369 //DWORD v11; // eax@13 |
0 | 370 int v12; // eax@13 |
371 int v13; // eax@14 | |
372 RenderBillboardTransform_local0 billboard; // [sp+4h] [bp-60h]@1 | |
373 int v15; // [sp+54h] [bp-10h]@13 | |
142 | 374 //int v16; // [sp+58h] [bp-Ch]@1 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
375 //int v17; // [sp+5Ch] [bp-8h]@2 |
0 | 376 int v18; // [sp+60h] [bp-4h]@13 |
377 | |
378 billboard.uParentBillboardID = -1; | |
379 billboard.pTarget = pRenderer->pTargetSurface; | |
380 billboard.pTargetZ = pRenderer->pActiveZBuffer; | |
381 billboard.uTargetPitch = pRenderer->uTargetSurfacePitch; | |
693 | 382 billboard.uViewportX = pViewport->uViewportTL_X; |
383 billboard.uViewportY = pViewport->uViewportTL_Y; | |
384 billboard.uViewportZ = pViewport->uViewportBR_X - 1; | |
385 billboard.uViewportW = pViewport->uViewportBR_Y; | |
1637 | 386 pODMRenderParams->uNumBillboards = uNumBillboardsToDraw; |
142 | 387 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
388 for (int i = 0; i < ::uNumBillboardsToDraw; ++i) |
0 | 389 { |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
390 auto pBillboard = pBillboardRenderList + i; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
391 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
392 billboard.uScreenSpaceX = pBillboard->uScreenSpaceX; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
393 billboard.uScreenSpaceY = pBillboard->uScreenSpaceY; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
394 billboard.uParentBillboardID = i; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
395 billboard._screenspace_x_scaler_packedfloat = pBillboard->_screenspace_x_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
396 billboard.uTintColor = pBillboard->uTintColor; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
397 billboard._screenspace_y_scaler_packedfloat = pBillboard->_screenspace_y_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
398 billboard.sZValue = pBillboard->sZValue; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
399 billboard.uFlags = pBillboard->field_1E; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
400 if (pBillboard->uHwSpriteID != -1) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
401 { |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
402 if (!pRenderer->pRenderD3D) __debugbreak(); // no sw rendering |
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
403 //if (pRenderer->pRenderD3D) |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
404 pRenderer->TransformBillboard(&billboard, |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
405 &pSprites_LOD->pHardwareSprites[pBillboard->uHwSpriteID], |
657 | 406 pBillboard->dimming_level, pBillboard); |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
407 /*else |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
408 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
409 assert(false); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
410 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
411 auto v1 = (char *)&pBillboard->uScreenSpaceY; |
0 | 412 if ( *(v1 - 10) & 2 ) |
413 v9 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 0, 1); | |
414 else | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
415 v9 = sr_GetBillboardPalette((RenderBillboard *)(v1 - 40), *((short *)v1 - 7), pBillboard->sZValue, *((short *)v1 + 1)); |
0 | 416 v10 = (*(v1 - 9) & 1) == 0; |
417 billboard.pPalette = v9; | |
418 if ( !v10 ) | |
419 billboard.pPalette = pPaletteManager->field_261600[*((short *)v1 - 7)]; | |
420 if ( !(billboard.uFlags & 0x40) && billboard.uFlags & 0x80 ) | |
421 { | |
323 | 422 v12 = stru_5C6E00->Cos(i * 5 + GetTickCount()); |
0 | 423 v15 = abs(v12); |
424 v18 = (unsigned __int64)(15i64 * v15) >> 16; | |
425 billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 15 - v18, 1); | |
426 } | |
427 v13 = *((short *)v1 - 8); | |
428 if ( v13 >= 0 ) | |
733 | 429 pSprites_LOD->pSpriteHeaders[v13].DrawSprite_sw(&billboard, 1); |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
430 }*/ |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
431 } |
0 | 432 } |
433 } | |
434 | |
435 //----- (0047AF11) -------------------------------------------------------- | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
436 void Render::DrawSpriteObjects_ODM() |
0 | 437 { |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
438 //char *v0; // edi@2 |
430 | 439 //ObjectDesc *v1; // ebx@4 |
0 | 440 __int16 v2; // cx@5 |
441 RenderBillboard *v3; // esi@10 | |
442 SpriteFrame *v4; // eax@10 | |
430 | 443 //SpriteFrame *v5; // ebx@10 |
0 | 444 unsigned int v6; // eax@10 |
430 | 445 //int v7; // ecx@10 |
446 //int v8; // edx@10 | |
0 | 447 int v9; // ecx@10 |
448 unsigned __int16 v10; // ax@10 | |
430 | 449 //int *v11; // eax@14 |
0 | 450 int v12; // eax@22 |
451 int v13; // ST3C_4@23 | |
452 int v14; // eax@23 | |
453 int v15; // ecx@23 | |
454 int v16; // ebx@23 | |
455 int v17; // ecx@25 | |
456 int v18; // eax@25 | |
457 int v19; // ST40_4@26 | |
458 int v20; // ecx@26 | |
459 int v21; // ST44_4@28 | |
460 int v22; // ST3C_4@29 | |
461 signed __int64 v23; // qtt@30 | |
462 int v24; // ebx@30 | |
463 int v25; // ST3C_4@30 | |
464 int v26; // eax@31 | |
465 char v27; // zf@31 | |
430 | 466 //SpriteFrame *v28; // [sp+Ch] [bp-34h]@10 |
467 //__int16 a5; // [sp+10h] [bp-30h]@10 | |
0 | 468 int v30; // [sp+14h] [bp-2Ch]@23 |
469 int v31; // [sp+14h] [bp-2Ch]@29 | |
470 __int16 v32; // [sp+14h] [bp-2Ch]@30 | |
471 int v33; // [sp+18h] [bp-28h]@23 | |
472 int v34; // [sp+18h] [bp-28h]@26 | |
473 int v35; // [sp+18h] [bp-28h]@30 | |
474 int v36; // [sp+1Ch] [bp-24h]@10 | |
475 int v37; // [sp+1Ch] [bp-24h]@23 | |
476 int a6; // [sp+20h] [bp-20h]@10 | |
477 int a6a; // [sp+20h] [bp-20h]@23 | |
478 int v40; // [sp+24h] [bp-1Ch]@25 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
479 //signed int v41; // [sp+28h] [bp-18h]@1 |
0 | 480 int v42; // [sp+2Ch] [bp-14h]@23 |
481 int y; // [sp+30h] [bp-10h]@10 | |
482 int x; // [sp+34h] [bp-Ch]@10 | |
483 int z; // [sp+38h] [bp-8h]@10 | |
484 signed __int16 v46; // [sp+3Ch] [bp-4h]@12 | |
485 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
486 //v41 = 0; |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
487 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
|
488 { |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
489 auto object = &pSpriteObjects[i]; |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
490 //auto v0 = (char *)&pSpriteObjects[i].uSectorID; |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
491 //v0 = (char *)&pSpriteObjects[0].uSectorID; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
492 //do |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
493 //{ |
430 | 494 if (!object->uObjectDescID) // item probably pciked up |
495 continue; | |
496 | |
497 assert(object->uObjectDescID < pObjectList->uNumObjects); | |
498 auto object_desc = pObjectList->pObjects + object->uObjectDescID; | |
499 if (object_desc->NoSprite()) | |
500 continue; | |
501 | |
502 //v1 = &pObjectList->pObjects[*((short *)v0 - 13)]; | |
503 //if ( !(v1->uFlags & 1) ) | |
504 //{ | |
505 //v2 = *((short *)v0 - 14) | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
506 v2 = object->uType; |
430 | 507 if ( (v2 < 1000 || v2 >= 10000) && (v2 < 500 || v2 >= 600) || pGame->pStru6Instance->_4A81CA(object) ) |
508 { | |
509 //a5 = *(short *)v0; | |
510 x = object->vPosition.x; | |
511 y = object->vPosition.y; | |
512 z = object->vPosition.z; | |
513 v3 = &pBillboardRenderList[::uNumBillboardsToDraw]; | |
514 v4 = pSpriteFrameTable->GetFrame(object_desc->uSpriteID, object->uSpriteFrameID); | |
515 //v5 = v4; | |
516 //v28 = v4; | |
517 v36 = v4->uFlags; | |
518 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
|
519 v6 = stru_5C6E00->Atan2(object->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x, object->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y); |
430 | 520 //LOWORD(v7) = object->uFacing; |
521 //v8 = v36; | |
522 v9 = ((signed int)(stru_5C6E00->uIntegerPi + ((signed int)stru_5C6E00->uIntegerPi >> 3) + object->uFacing - v6) >> 8) & 7; | |
523 v10 = v4->pHwSpriteIDs[v9]; | |
0 | 524 v3->uHwSpriteID = v10; |
525 if ( v36 & 0x20 ) | |
526 { | |
430 | 527 //v8 = v36; |
528 z -= (signed int)((unsigned __int64)(v4->scale * (signed __int64)pSprites_LOD->pSpriteHeaders[(signed __int16)v10].uHeight) >> 16) >> 1; | |
0 | 529 } |
530 v46 = 0; | |
430 | 531 if ( v36 & 2 ) |
0 | 532 v46 = 2; |
430 | 533 //v11 = (int *)(256 << v9); |
534 if ( (256 << v9) & v36 ) | |
0 | 535 v46 |= 4u; |
430 | 536 if ( v36 & 0x40000 ) |
0 | 537 v46 |= 0x40u; |
430 | 538 if ( v36 & 0x20000 ) |
0 | 539 LOBYTE(v46) = v46 | 0x80; |
540 if ( a6 ) | |
541 { | |
430 | 542 //LOBYTE(v11) = byte_4E94D3; |
543 pMobileLightsStack->AddLight(x, y, z, object->uSectorID, a6, 0xFFu, 0xFFu, 0xFFu, byte_4E94D3); | |
0 | 544 } |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
545 v12 = (x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
546 if (pGame->pIndoorCameraD3D->sRotationX) |
0 | 547 { |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
548 v13 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 549 v30 = ((unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) |
550 + ((unsigned __int64)(v13 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
551 v37 = (unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
552 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
|
553 v33 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1642 | 554 v14 = (unsigned __int64)(v30 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16; |
555 v15 = (unsigned __int64)(v33 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16; | |
0 | 556 v16 = v15 + v14; |
557 v42 = v15 + v14; | |
1637 | 558 if ( v15 + v14 >= 262144 && v16 <= pODMRenderParams->shading_dist_mist << 16 ) |
0 | 559 { |
560 v17 = a6a - v37; | |
561 v40 = a6a - v37; | |
1642 | 562 v18 = ((unsigned __int64)(v33 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) |
563 - ((unsigned __int64)(v30 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
0 | 564 goto LABEL_29; |
565 } | |
566 } | |
567 else | |
568 { | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
569 v34 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 570 v19 = (unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; |
571 v20 = (unsigned __int64)(v34 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
0 | 572 v16 = v20 + v19; |
573 v42 = v20 + v19; | |
1637 | 574 if ( v20 + v19 >= 262144 && v16 <= pODMRenderParams->shading_dist_mist << 16 ) |
0 | 575 { |
1642 | 576 v21 = (unsigned __int64)(((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16) * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
577 v17 = ((unsigned __int64)(v34 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v21; | |
578 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
|
579 v18 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
0 | 580 LABEL_29: |
581 v31 = v18; | |
582 v22 = abs(v17); | |
583 if ( abs(v16) >= v22 ) | |
584 { | |
585 LODWORD(v23) = 0; | |
1637 | 586 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad); |
0 | 587 v24 = v23 / v42; |
588 v25 = v23 / v42; | |
589 LODWORD(v23) = 0; | |
1637 | 590 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad); |
430 | 591 v35 = pViewport->uScreenCenterX - ((signed int)(((unsigned __int64)(v25 * (signed __int64)v40) >> 16) + 32768) >> 16); |
592 v32 = LOWORD(pViewport->uScreenCenterY) - (((unsigned int)((unsigned __int64)(v23 / v42 * v31) >> 16) + 32768) >> 16); | |
593 | |
594 //if (::uNumBillboardsToDraw >= 500) | |
595 // return; | |
596 assert(::uNumBillboardsToDraw < 500); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
597 ++::uNumBillboardsToDraw; |
0 | 598 ++uNumSpritesDrawnThisFrame; |
430 | 599 |
600 object->uAttributes |= 1; | |
601 v3->uPalette = v4->uPaletteIndex; | |
602 v3->uIndoorSectorID = object->uSectorID; | |
603 v3->_screenspace_x_scaler_packedfloat = (unsigned __int64)(v4->scale * (signed __int64)v24) >> 16; | |
604 v26 = (unsigned __int64)(v4->scale * (signed __int64)v24) >> 16; | |
605 v3->pSpriteFrame = v4; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
606 v3->_screenspace_y_scaler_packedfloat = v26; |
0 | 607 v3->field_1E = v46; |
430 | 608 v3->world_x = x; |
609 v3->world_y = y; | |
610 v3->world_z = z; | |
0 | 611 v3->uScreenSpaceX = v35; |
612 v3->uScreenSpaceY = v32; | |
613 HIWORD(v26) = HIWORD(v42); | |
614 LOWORD(v26) = 0; | |
430 | 615 v27 = (object->uAttributes & 0x20) == 0; |
862 | 616 v3->sZValue = v26 + (PID(OBJECT_Item,i)); |
657 | 617 v3->dimming_level = 0; |
0 | 618 v3->uTintColor = 0; |
619 if ( !v27 ) | |
620 { | |
621 if ( !pRenderer->pRenderD3D ) | |
622 v3->sZValue = 0; | |
623 } | |
624 } | |
625 goto LABEL_34; | |
626 } | |
627 } | |
628 } | |
430 | 629 //} |
0 | 630 LABEL_34: |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
631 ; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
632 //++v41; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
633 //v0 += 112; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
634 //} |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
635 //while ( v41 < (signed int)uNumSpriteObjects ); |
0 | 636 } |
637 } | |
638 | |
639 //----- (0049D9BC) -------------------------------------------------------- | |
640 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut) | |
641 { | |
642 size_t v4; // eax@1 | |
643 size_t v5; // eax@1 | |
644 IUnknown *v6; // eax@10 | |
645 size_t v7; // eax@13 | |
646 DDDEVICEIDENTIFIER ddDevId; // [sp+4h] [bp-4F8h]@11 | |
647 DDSURFACEDESC2 v10;/*int v10; // [sp+42Ch] [bp-D0h]@16 | |
648 int v11; // [sp+430h] [bp-CCh]@16 | |
649 int v12; // [sp+434h] [bp-C8h]@16 | |
650 int v13; // [sp+438h] [bp-C4h]@16 | |
651 int v14; // [sp+474h] [bp-88h]@16*/ | |
652 DDSCAPS2 ddsCaps; // [sp+4A8h] [bp-54h]@14 | |
653 unsigned int uFreeVideoMem; // [sp+4B8h] [bp-44h]@14 | |
654 RenderD3D_aux aux; // [sp+4BCh] [bp-40h]@19 | |
655 IDirect3D3 *pDirect3D3; // [sp+4C4h] [bp-38h]@18 | |
656 int v19; // [sp+4C8h] [bp-34h]@16 | |
657 RenderD3D_D3DDevDesc v20; // [sp+4CCh] [bp-30h]@1 | |
658 LPDIRECTDRAW pDirectDraw; // [sp+4F4h] [bp-8h]@4 | |
659 IDirectDraw4 *pDirectDraw4; // [sp+4F8h] [bp-4h]@7 | |
660 | |
661 v4 = strlen(lpDriverName); | |
662 v20.pDriverName = new char[v4 + 1]; | |
663 v5 = strlen(lpDevDesc); | |
664 v20.pDeviceDesc = new char[v5 + 1]; | |
665 strcpy(v20.pDriverName, lpDriverName); | |
666 strcpy(v20.pDeviceDesc, lpDevDesc); | |
667 if ( lpGUID ) | |
668 { | |
669 v20.pGUID = new GUID; | |
670 memcpy(v20.pGUID, lpGUID, 0x10u); | |
671 } | |
672 else | |
673 { | |
674 v20.pGUID = 0; | |
675 } | |
676 | |
677 if (FAILED(DirectDrawCreate(v20.pGUID, &pDirectDraw, 0))) | |
678 { | |
679 delete [] v20.pDriverName; | |
680 delete [] v20.pDeviceDesc; | |
681 if ( v20.pGUID ) | |
682 delete v20.pGUID; | |
683 } | |
684 else | |
685 { | |
686 if (FAILED(pDirectDraw->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pDirectDraw4))) | |
687 { | |
688 delete [] v20.pDriverName; | |
689 delete [] v20.pDeviceDesc; | |
690 if ( v20.pGUID ) | |
691 delete v20.pGUID; | |
692 v6 = (IUnknown *)pDirectDraw; | |
693 } | |
694 else | |
695 { | |
696 pDirectDraw->Release(); | |
697 if (FAILED( pDirectDraw4->GetDeviceIdentifier(&ddDevId, 1u))) | |
698 { | |
699 v20.pDDraw4DevDesc = 0; | |
700 } | |
701 else | |
702 { | |
703 v7 = strlen(ddDevId.szDescription); | |
704 v20.pDDraw4DevDesc = new char[v7 + 1]; | |
705 strcpy(v20.pDDraw4DevDesc, ddDevId.szDescription); | |
706 } | |
707 memset(&ddsCaps, 0, 0x10u); | |
708 if (FAILED(pDirectDraw4->GetAvailableVidMem( | |
709 &ddsCaps, | |
710 (LPDWORD)&v20.uVideoMem, | |
711 (LPDWORD)&uFreeVideoMem))) | |
712 v20.uVideoMem = 0; | |
713 memset(&v10, 0, 0x7Cu); | |
714 v10.dwSize = 124; | |
715 v10.dwFlags = 6; | |
716 v10.dwHeight = 640; | |
717 v10.dwWidth = 480; | |
718 v10.ddpfPixelFormat.dwSize = 32; | |
719 | |
720 v19 = 0; | |
721 if ( FAILED(pDirectDraw4->EnumDisplayModes( | |
722 0, | |
723 0, | |
724 &v19, | |
725 (LPDDENUMMODESCALLBACK2)DDrawDisplayModesEnumerator)) | |
726 || !v19 | |
727 || FAILED(pDirectDraw4->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D3))) | |
728 { | |
729 delete [] v20.pDriverName; | |
730 delete [] v20.pDeviceDesc; | |
731 if ( v20.pDDraw4DevDesc ) | |
732 free(v20.pDDraw4DevDesc); | |
733 if ( v20.pGUID ) | |
734 delete v20.pGUID; | |
735 v6 = (IUnknown *)pDirectDraw4; | |
736 } | |
737 else | |
738 { | |
739 aux.pInfo = pOut; | |
740 aux.ptr_4 = &v20; | |
741 pDirect3D3->EnumDevices((LPD3DENUMDEVICESCALLBACK)D3DDeviceEnumerator, &aux); | |
742 delete [] v20.pDriverName; | |
743 delete [] v20.pDeviceDesc; | |
744 if ( v20.pDDraw4DevDesc ) | |
745 free(v20.pDDraw4DevDesc); | |
746 if ( v20.pGUID ) | |
747 delete v20.pGUID; | |
748 pDirectDraw4->Release(); | |
749 v6 = (IUnknown *)pDirect3D3; | |
750 pDirectDraw4 = 0; | |
751 } | |
752 } | |
753 v6->Release(); | |
754 } | |
755 return 1; | |
756 } | |
757 | |
758 //----- (0049D784) -------------------------------------------------------- | |
759 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, RenderD3D_aux *a6) | |
760 { | |
761 int v6; // eax@1 | |
762 signed int v7; // edi@1 | |
763 signed int v8; // edi@14 | |
764 size_t v9; // eax@30 | |
765 size_t v10; // eax@30 | |
766 size_t v11; // eax@30 | |
767 size_t v12; // eax@30 | |
768 size_t v13; // eax@30 | |
769 | |
770 v6 = pHWDesc->dwFlags; | |
771 v7 = -1; | |
772 if ( v6 ) | |
773 { | |
774 if ( !a6->ptr_4->pGUID ) | |
775 v7 = 0; | |
776 if ( v6 && a6->ptr_4->pGUID ) | |
777 v7 = 1; | |
778 } | |
779 if ( !strcmp(lpDeviceName, "RGB Emulation") && !a6->ptr_4->pGUID ) | |
780 v7 = 2; | |
781 if ( !strcmp(lpDeviceName, "Reference Rasterizer") && !a6->ptr_4->pGUID ) | |
782 v7 = 3; | |
783 if ( v7 != -1 ) | |
784 { | |
785 v8 = v7; | |
786 a6->pInfo[v8].bIsDeviceCompatible = 1; | |
787 a6->pInfo[v8].uCaps = 0; | |
788 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 0x10) ) | |
789 a6->pInfo[v8].uCaps |= 2u; | |
790 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 2) ) | |
791 a6->pInfo[v8].uCaps |= 4u; | |
792 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 1) ) | |
793 a6->pInfo[v8].uCaps |= 8u; | |
794 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 0x20) ) | |
795 a6->pInfo[v8].uCaps |= 0x10u; | |
796 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 2) ) | |
797 a6->pInfo[v8].uCaps |= 0x20u; | |
798 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 4) ) | |
799 a6->pInfo[v8].uCaps |= 0x40u; | |
800 if ( !(BYTE1(pHWDesc->dwDevCaps) & 0x10) ) | |
801 BYTE1(a6->pInfo[v8].uCaps) |= 1u; | |
802 if ( pHWDesc->dpcTriCaps.dwTextureCaps & 0x20 ) | |
803 LOBYTE(a6->pInfo[v8].uCaps) |= 0x80u; | |
804 v9 = strlen(lpDeviceName); | |
805 a6->pInfo[v8].pName = new char[v9 + 1]; | |
806 strcpy(a6->pInfo[v8].pName, lpDeviceName); | |
807 v10 = strlen(lpDeviceDesc); | |
808 a6->pInfo[v8].pDescription = new char[v10 + 1]; | |
809 strcpy(a6->pInfo[v8].pDescription, lpDeviceDesc); | |
1631 | 810 a6->pInfo[v8].pGUID = new GUID; |
0 | 811 memcpy(a6->pInfo[v8].pGUID, lpGUID, 0x10u); |
812 v11 = strlen(a6->ptr_4->pDriverName); | |
813 a6->pInfo[v8].pDriverName = new char[v11 + 1]; | |
814 strcpy(a6->pInfo[v8].pDriverName, a6->ptr_4->pDriverName); | |
815 v12 = strlen(a6->ptr_4->pDeviceDesc); | |
816 a6->pInfo[v8].pDeviceDesc = new char[v12 + 1]; | |
817 strcpy(a6->pInfo[v8].pDeviceDesc, a6->ptr_4->pDeviceDesc); | |
818 v13 = strlen(a6->ptr_4->pDDraw4DevDesc); | |
819 a6->pInfo[v8].pDDraw4DevDesc = new char[v13 + 1]; | |
820 strcpy(a6->pInfo[v8].pDDraw4DevDesc, a6->ptr_4->pDDraw4DevDesc); | |
821 if ( a6->ptr_4->pGUID ) | |
822 { | |
823 a6->pInfo[v8].pDirectDrawGUID = new GUID; | |
824 memcpy(a6->pInfo[v8].pDirectDrawGUID, a6->ptr_4->pGUID, 0x10u); | |
825 } | |
826 else | |
827 { | |
828 a6->pInfo[v8].pDirectDrawGUID = 0; | |
829 } | |
830 a6->pInfo[v8].uVideoMem = a6->ptr_4->uVideoMem; | |
831 } | |
832 return 1; | |
833 } | |
834 | |
835 //----- (0049D75C) -------------------------------------------------------- | |
836 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2) | |
837 { | |
838 HRESULT result; // eax@3 | |
839 | |
840 if ( pSurfaceDesc->ddsCaps.dwCaps | 0x2000 && pSurfaceDesc->ddpfPixelFormat.dwRGBBitCount == 16 ) | |
841 { | |
842 *a2 = 1; | |
843 result = 0; | |
844 } | |
845 else | |
846 { | |
847 result = 1; | |
848 } | |
849 return result; | |
850 } | |
851 | |
852 //----- (0047A95E) -------------------------------------------------------- | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
853 void Render::PrepareDecorationsRenderList_ODM() |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
854 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
855 //char *v0; // esi@2 |
639 | 856 //DecorationDesc *v1; // ebx@6 |
0 | 857 __int16 v2; // ax@6 |
858 double v3; // st7@7 | |
639 | 859 //int v4; // eax@9 |
860 //int v5; // edx@9 | |
0 | 861 unsigned int v6; // edi@9 |
862 int v7; // eax@9 | |
863 SpriteFrame *v8; // eax@9 | |
635 | 864 //SpriteFrame *v9; // edi@9 |
0 | 865 unsigned __int16 *v10; // eax@9 |
866 int v11; // ecx@9 | |
867 int v12; // eax@9 | |
868 int v13; // ecx@9 | |
869 int v14; // ecx@20 | |
870 char v15; // dl@20 | |
871 signed int v16; // eax@20 | |
872 int v17; // eax@23 | |
873 int v18; // ecx@24 | |
874 int v19; // eax@24 | |
875 int v20; // ecx@24 | |
876 int v21; // ebx@26 | |
877 int v22; // eax@26 | |
878 int v23; // eax@30 | |
879 signed __int64 v24; // qtt@31 | |
880 int v25; // ebx@31 | |
881 int v26; // ecx@32 | |
882 RenderBillboard *v27; // eax@37 | |
883 __int16 v28; // dx@37 | |
884 __int16 v29; // cx@37 | |
885 int v30; // ecx@37 | |
886 int v31; // ebx@37 | |
619 | 887 Particle_sw local_0; // [sp+Ch] [bp-98h]@7 |
639 | 888 //int x; // [sp+74h] [bp-30h]@9 |
889 //int y; // [sp+78h] [bp-2Ch]@9 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
890 //int v35; // [sp+7Ch] [bp-28h]@1 |
639 | 891 //int v36; // [sp+80h] [bp-24h]@9 |
0 | 892 unsigned __int16 *v37; // [sp+84h] [bp-20h]@9 |
893 int v38; // [sp+88h] [bp-1Ch]@9 | |
894 int v39; // [sp+8Ch] [bp-18h]@24 | |
895 int v40; // [sp+90h] [bp-14h]@24 | |
896 int v41; // [sp+94h] [bp-10h]@24 | |
897 int v42; // [sp+98h] [bp-Ch]@9 | |
898 int a5; // [sp+9Ch] [bp-8h]@9 | |
899 int b; // [sp+A0h] [bp-4h]@22 | |
900 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
901 //v35 = 0; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
902 //if ( (signed int)uNumLevelDecorations > 0 ) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
903 //{ |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
904 //v0 = (char *)&pLevelDecorations[0].vPosition.y; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
905 //do |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
906 for (int i = 0; i < uNumLevelDecorations; ++i) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
907 { |
1202 | 908 auto decor = &pLevelDecorations[i]; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
909 auto v0 = (char *)&pLevelDecorations[i].vPosition.y; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
910 |
1491
6d21ef91cb2d
Rename LevelDecoration::_47A825 to LevelDecoration::IsObeliskChestActive().
yoctozepto
parents:
1490
diff
changeset
|
911 if ((!(decor->uFlags & LEVEL_DECORATION_OBELISK_CHEST) || decor->IsObeliskChestActive()) && !(decor->uFlags & LEVEL_DECORATION_INVISIBLE)) |
1490 | 912 { |
913 //v1 = &pDecorationList->pDecorations[decor->uDecorationDescID]; | |
914 auto decor_desc = pDecorationList->pDecorations + decor->uDecorationDescID; | |
915 v2 = decor_desc->uFlags; | |
916 if ( (char)v2 >= 0 ) | |
917 { | |
918 if ( !(v2 & 0x22) ) | |
0 | 919 { |
1490 | 920 //v4 = decor->vPosition.x; |
921 //v5 = decor->vPosition.z; | |
922 v6 = pMiscTimer->uTotalGameTimeElapsed; | |
923 //y = decor->vPosition.y; | |
924 //x = decor->vPosition.x; | |
925 //v36 = decor->vPosition.z; | |
926 v7 = abs(decor->vPosition.x + decor->vPosition.y); | |
927 | |
928 | |
929 #pragma region "New: seasons change" | |
930 extern bool change_seasons; | |
931 if (change_seasons) | |
932 switch (pParty->uCurrentMonth) | |
933 { | |
934 // case 531 (tree60), 536 (tree65), 537 (tree66) have no autumn/winter sprites | |
935 case 11: case 0: case 1: // winter | |
936 switch (decor_desc->uSpriteID) | |
937 { | |
938 //case 468: //bush02 grows on swamps, which are evergreeen actually | |
939 case 548: // flower10 | |
940 case 547: // flower09 | |
941 case 541: // flower03 | |
942 case 539: continue; // flower01 | |
943 | |
944 case 483: // tree01 | |
945 case 486: // tree04 | |
946 case 492: // tree10 | |
947 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 2); | |
948 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 2, v6 + v7); | |
949 break; | |
950 | |
951 default: | |
952 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
953 } | |
954 break; | |
955 | |
956 case 2: case 3: case 4: // spring | |
957 switch (decor_desc->uSpriteID) | |
958 { | |
959 } | |
960 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
961 break; | |
962 | |
963 case 8: case 9: case 10: // autumn | |
964 switch (decor_desc->uSpriteID) | |
965 { | |
966 //case 468: //bush02 grows on swamps, which are evergreeen actually | |
967 case 548: // flower10 | |
968 case 547: // flower09 | |
969 case 541: // flower03 | |
970 case 539: continue; // flower01 | |
971 | |
972 case 483: // tree01 | |
973 case 486: // tree04 | |
974 case 492: // tree10 | |
975 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 1); | |
976 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 1, v6 + v7); | |
977 break; | |
978 | |
979 default: | |
980 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
981 } | |
982 break; | |
983 | |
984 case 5: case 6: case 7: // summer | |
985 //all green by default | |
986 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
987 break; | |
988 | |
989 default: assert(pParty->uCurrentMonth >= 0 && pParty->uCurrentMonth < 12); | |
990 } | |
991 else | |
992 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
993 #pragma endregion | |
994 //v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
995 | |
996 //v9 = v8; | |
997 v42 = v8->uFlags; | |
998 a5 = v8->uGlowRadius; | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
999 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
|
1000 decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y); |
1490 | 1001 v11 = *((int *)v0 + 2); |
1002 v37 = v10; | |
1003 v12 = v42; | |
1004 v38 = 0; | |
1005 v13 = ((signed int)(stru_5C6E00->uIntegerPi | |
1006 + ((signed int)stru_5C6E00->uIntegerPi >> 3) | |
1007 + v11 | |
1008 - (signed int)v37) >> 8) & 7; | |
1009 v37 = (unsigned __int16 *)v13; | |
1010 if ( v42 & 2 ) | |
1011 v38 = 2; | |
1012 if ( (256 << v13) & v42 ) | |
1013 v38 |= 4u; | |
1014 if ( v12 & 0x40000 ) | |
1015 v38 |= 0x40u; | |
1016 if ( v12 & 0x20000 ) | |
1017 LOBYTE(v38) = v38 | 0x80; | |
1018 if ( a5 ) | |
0 | 1019 { |
1490 | 1020 if ( pRenderer->pRenderD3D && pRenderer->bUseColoredLights ) |
0 | 1021 { |
1490 | 1022 v14 = decor_desc->uColoredLightRed; |
1023 v15 = decor_desc->uColoredLightGreen; | |
1024 v16 = decor_desc->uColoredLightBlue; | |
0 | 1025 } |
1026 else | |
1027 { | |
1490 | 1028 v16 = 255; |
1029 v14 = 255; | |
1030 v15 = 255; | |
1031 } | |
1032 b = v16; | |
1033 pStationaryLightsStack->AddLight( | |
1034 decor->vPosition.x, | |
1035 decor->vPosition.y, | |
1036 decor->vPosition.z + decor_desc->uDecorationHeight / 2, | |
1037 a5, | |
1038 v14, | |
1039 v15, | |
1040 v16, | |
1041 byte_4E94D0); | |
1042 } | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1043 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
|
1044 if (pGame->pIndoorCameraD3D->sRotationX) |
1490 | 1045 { |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1046 v40 = (decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 1047 v18 = ((unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) |
1048 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
1490 | 1049 v42 = v18; |
1642 | 1050 b = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
1051 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
|
1052 v40 = (decor->vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1642 | 1053 v41 = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16; |
1054 v19 = (unsigned __int64)(v18 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16; | |
1055 v20 = v19 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
1056 v39 = v19 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
1637 | 1057 if ( v20 >= 262144 && v20 <= pODMRenderParams->shading_dist_mist << 16 ) |
1490 | 1058 { |
1059 v21 = a5 - b; | |
1060 v41 = a5 - b; | |
1642 | 1061 a5 = (unsigned __int64)(v42 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16; |
1062 b = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16; | |
1063 v22 = ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) - a5; | |
1490 | 1064 LABEL_30: |
1065 v42 = v22; | |
1066 v40 = 2 * abs(v20); | |
1067 v23 = abs(v21); | |
1068 if ( v40 >= v23 ) | |
0 | 1069 { |
1490 | 1070 LODWORD(v24) = 0; |
1637 | 1071 HIDWORD(v24) = SLOWORD(pODMRenderParams->int_fov_rad); |
1490 | 1072 a5 = v24 / v39; |
1073 v25 = pViewport->uScreenCenterX | |
1074 - ((signed int)(((unsigned __int64)(v24 / v39 * v41) >> 16) + 32768) >> 16); | |
1075 b = (unsigned __int64)(a5 * (signed __int64)v42) >> 16; | |
1076 v41 = v24 / v39; | |
1077 v40 = pViewport->uScreenCenterY | |
1078 - ((signed int)(((unsigned __int64)(a5 * (signed __int64)v42) >> 16) + 32768) >> 16); | |
1079 v42 = v8->scale; | |
1080 v41 = (unsigned __int64)(v42 * v24 / v39) >> 16; | |
1081 v37 = (unsigned __int16 *)&v8->pHwSpriteIDs[(int)v37]; | |
1082 if ( pRenderer->pRenderD3D ) | |
1083 { | |
1084 v26 = v41; | |
1085 v42 = pSprites_LOD->pHardwareSprites[(signed __int16)*v37].uBufferWidth >> 1; | |
1086 b = (unsigned __int64)(v42 * (signed __int64)v41) >> 16; | |
1087 } | |
1088 else | |
1089 { | |
1090 v26 = v41; | |
1091 v42 = pSprites_LOD->pSpriteHeaders[(signed __int16)*v37].uWidth >> 1; | |
1092 b = (unsigned __int64)(v42 * (signed __int64)v41) >> 16; | |
1093 } | |
1094 if ( b + v25 >= (signed int)pViewport->uViewportTL_X && v25 - b <= (signed int)pViewport->uViewportBR_X ) | |
1095 { | |
1096 if (::uNumBillboardsToDraw >= 500) | |
1097 return; | |
1098 v27 = &pBillboardRenderList[::uNumBillboardsToDraw++]; | |
1099 ++uNumDecorationsDrawnThisFrame; | |
1100 v27->uHwSpriteID = *v37; | |
1101 v28 = v8->uPaletteIndex; | |
1102 v27->_screenspace_x_scaler_packedfloat = v26; | |
1103 v27->_screenspace_y_scaler_packedfloat = v26; | |
1104 v29 = v38; | |
1105 v27->uScreenSpaceX = v25; | |
1106 HIBYTE(v29) |= 2u; | |
1107 v27->uPalette = v28; | |
1108 v27->field_1E = v29; | |
1109 v27->world_x = decor->vPosition.x; | |
1110 v27->world_y = decor->vPosition.y; | |
1111 v27->world_z = decor->vPosition.z; | |
1112 v27->uScreenSpaceY = v40; | |
1113 HIWORD(v30) = HIWORD(v39); | |
1114 v31 = PID(OBJECT_Decoration,i); | |
1115 LOWORD(v30) = 0; | |
1116 v27->uIndoorSectorID = 0; | |
1117 v27->sZValue = v30 + v31; | |
1118 v27->dimming_level = 0; | |
1119 v27->pSpriteFrame = v8; | |
1120 v27->uTintColor = 0; | |
1121 } | |
0 | 1122 } |
1490 | 1123 goto LABEL_38; |
1124 } | |
1125 } | |
1126 else | |
1127 { | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1128 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
|
1129 v40 = (decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 1130 b = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; |
1131 a5 = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
1132 v20 = b + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
1133 v39 = b + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
1637 | 1134 if ( v20 >= 262144 && v20 <= pODMRenderParams->shading_dist_mist << 16 ) |
1490 | 1135 { |
1642 | 1136 a5 = (unsigned __int64)(v42 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
1137 b = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; | |
1138 v21 = ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - a5; | |
1139 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
|
1140 v22 = (decor->vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1490 | 1141 goto LABEL_30; |
0 | 1142 } |
1143 } | |
1144 } | |
1490 | 1145 } |
1146 else | |
1147 { | |
1148 memset(&local_0, 0, 0x68u); | |
1149 v3 = (double)*((signed int *)v0 - 1); | |
1150 local_0.type = ParticleType_Bitmap | ParticleType_Rotating | ParticleType_8; | |
1151 local_0.uDiffuse = 0xFF3C1E; | |
1152 local_0.x = v3; | |
1153 local_0.y = (double)*(signed int *)v0; | |
1154 local_0.z = (double)*((signed int *)v0 + 1); | |
1155 local_0.r = 0.0; | |
1156 local_0.g = 0.0; | |
1157 local_0.b = 0.0; | |
1158 local_0.flt_28 = 1.0; | |
1159 local_0.timeToLive = (rand() & 0x80) + 128; | |
1160 local_0.uTextureID = pBitmaps_LOD->LoadTexture("effpar01"); | |
1161 pGame->pParticleEngine->AddParticle(&local_0); | |
1162 } | |
1163 } | |
0 | 1164 LABEL_38: |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1165 ; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1166 //++v35; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1167 //v0 += 32; |
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 //while ( v35 < (signed int)uNumLevelDecorations ); |
0 | 1170 } |
1171 | |
1172 //----- (0049D717) -------------------------------------------------------- | |
1173 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst) | |
1174 { | |
1175 HRESULT v2; // esi@2 | |
1176 | |
1177 if ( Src->dwFlags & 0x400 | 0x2000 ) | |
1178 { | |
1179 v2 = 0; | |
1180 if ( Src->dwRGBBitCount == 16 && !Src->dwRBitMask ) | |
1181 goto LABEL_6; | |
1182 if ( !Dst->dwSize ) | |
1183 { | |
1184 v2 = 1; | |
1185 LABEL_6: | |
1186 memcpy(Dst, Src, 0x20u); | |
1187 return v2; | |
1188 } | |
1189 } | |
1190 return 1; | |
1191 } | |
1192 | |
1193 //----- (0049DC28) -------------------------------------------------------- | |
1194 void RenderD3D::GetAvailableDevices(RenderD3D__DevInfo **pOutDevices) | |
1195 { | |
1196 RenderD3D__DevInfo *v2; // eax@1 | |
1197 | |
1198 v2 = new RenderD3D__DevInfo[4];// 4 items | |
1199 *pOutDevices = v2; | |
1200 memset(v2, 0, 0xA0u); | |
1201 DirectDrawEnumerateA((LPDDENUMCALLBACKA)RenderD3D__DeviceEnumerator, *pOutDevices); | |
1202 } | |
1203 | |
1204 //----- (0049DC58) -------------------------------------------------------- | |
1205 RenderD3D::RenderD3D() | |
1206 { | |
1207 RenderD3D *v1; // esi@1 | |
1208 | |
1209 v1 = this; | |
1210 this->pHost = 0; | |
1211 this->pDirect3D = 0; | |
1212 this->pUnk = 0; | |
1213 this->pBackBuffer = 0; | |
1214 this->pFrontBuffer = 0; | |
1215 this->pZBuffer = 0; | |
1216 this->pDevice = 0; | |
1217 this->pViewport = 0; | |
1218 this->field_40 = 1; | |
1219 this->field_44 = 10; | |
1220 GetAvailableDevices(&this->pAvailableDevices); | |
1221 } | |
1222 | |
1223 //----- (0049DC90) -------------------------------------------------------- | |
1224 void RenderD3D::Release() | |
1225 { | |
1226 RenderD3D *v1; // esi@1 | |
1227 IDirectDraw4 *v2; // eax@2 | |
1228 signed int v3; // edi@4 | |
1229 IDirect3DViewport3 *v4; // eax@22 | |
1230 IUnknown *v5; // eax@24 | |
1231 IDirectDrawSurface4 *v6; // eax@26 | |
1232 IDirect3DDevice3 *v7; // eax@28 | |
1233 IDirect3D3 *v8; // eax@30 | |
1234 IDirectDrawSurface4 *v9; // eax@32 | |
1235 IDirectDrawSurface4 *v10; // eax@34 | |
1236 IDirectDraw4 *v11; // eax@36 | |
1237 | |
1238 v1 = this; | |
1239 if ( !this->bWindowed ) | |
1240 { | |
1241 v2 = this->pHost; | |
1242 if ( v2 ) | |
1243 { | |
1244 v2->RestoreDisplayMode(); | |
1245 v1->pHost->SetCooperativeLevel(v1->hWindow, 8u); | |
1246 v1->pHost->FlipToGDISurface(); | |
1247 } | |
1248 } | |
1249 v3 = 0; | |
1250 do | |
1251 { | |
1252 if ( v1->pAvailableDevices[v3].pDriverName ) | |
1253 { | |
1254 free(v1->pAvailableDevices[v3].pDriverName); | |
1255 v1->pAvailableDevices[v3].pDriverName = 0; | |
1256 } | |
1257 if ( v1->pAvailableDevices[v3].pDeviceDesc ) | |
1258 { | |
1259 free(v1->pAvailableDevices[v3].pDeviceDesc); | |
1260 v1->pAvailableDevices[v3].pDeviceDesc = 0; | |
1261 } | |
1262 if ( v1->pAvailableDevices[v3].pDDraw4DevDesc ) | |
1263 { | |
1264 free(v1->pAvailableDevices[v3].pDDraw4DevDesc); | |
1265 v1->pAvailableDevices[v3].pDDraw4DevDesc = 0; | |
1266 } | |
1267 if ( v1->pAvailableDevices[v3].pDirectDrawGUID ) | |
1268 { | |
1269 free(v1->pAvailableDevices[v3].pDirectDrawGUID); | |
1270 v1->pAvailableDevices[v3].pDirectDrawGUID = 0; | |
1271 } | |
1272 if ( v1->pAvailableDevices[v3].pName ) | |
1273 { | |
1274 free(v1->pAvailableDevices[v3].pName); | |
1275 v1->pAvailableDevices[v3].pName = 0; | |
1276 } | |
1277 if ( v1->pAvailableDevices[v3].pDescription ) | |
1278 { | |
1279 free(v1->pAvailableDevices[v3].pDescription); | |
1280 v1->pAvailableDevices[v3].pDescription = 0; | |
1281 } | |
1282 if ( v1->pAvailableDevices[v3].pGUID ) | |
1283 { | |
1284 free(v1->pAvailableDevices[v3].pGUID); | |
1285 v1->pAvailableDevices[v3].pGUID = 0; | |
1286 } | |
1287 ++v3; | |
1288 } | |
1289 while ( v3 < 4 ); | |
1290 if ( v1->pAvailableDevices ) | |
1291 { | |
1292 free(v1->pAvailableDevices); | |
1293 v1->pAvailableDevices = 0; | |
1294 } | |
1295 v4 = v1->pViewport; | |
1296 if ( v4 ) | |
1297 { | |
1298 v4->Release(); | |
1299 v1->pViewport = 0; | |
1300 } | |
1301 v5 = v1->pUnk; | |
1302 if ( v5 ) | |
1303 { | |
1304 v5->Release(); | |
1305 v1->pUnk = 0; | |
1306 } | |
1307 v6 = v1->pZBuffer; | |
1308 if ( v6 ) | |
1309 { | |
1310 v6->Release(); | |
1311 v1->pZBuffer = 0; | |
1312 } | |
1313 v7 = v1->pDevice; | |
1314 if ( v7 ) | |
1315 { | |
1316 v7->Release(); | |
1317 v1->pDevice = 0; | |
1318 } | |
1319 v8 = v1->pDirect3D; | |
1320 if ( v8 ) | |
1321 { | |
1322 v8->Release(); | |
1323 v1->pDirect3D = 0; | |
1324 } | |
1325 v9 = v1->pBackBuffer; | |
1326 if ( v9 ) | |
1327 { | |
1328 v9->Release(); | |
1329 v1->pBackBuffer = 0; | |
1330 } | |
1331 v10 = v1->pFrontBuffer; | |
1332 if ( v10 ) | |
1333 { | |
1334 v10->Release(); | |
1335 v1->pFrontBuffer = 0; | |
1336 } | |
1337 v11 = v1->pHost; | |
1338 if ( v11 ) | |
1339 { | |
1340 v11->Release(); | |
1341 v1->pHost = 0; | |
1342 } | |
1343 } | |
1344 | |
1345 //----- (0049DE14) -------------------------------------------------------- | |
1346 bool RenderD3D::CreateDevice(unsigned int uDeviceID, int bWindowed, HWND hWnd) | |
1347 { | |
1348 //IDirectDraw4 *v8; // eax@12 | |
1349 //IDirectDraw4 *v9; // eax@16 | |
1350 //IDirectDraw4 *v10; // eax@20 | |
1351 //IDirectDraw4 *v13; // eax@35 | |
1352 const char *v23; // [sp-4h] [bp-DCh]@9 | |
1353 const char *v24; // [sp-4h] [bp-DCh]@13 | |
1354 const char *v25; // [sp-4h] [bp-DCh]@19 | |
1355 DWORD v26; // [sp-4h] [bp-DCh]@30 | |
1356 DDSCAPS2 v27; // [sp+Ch] [bp-CCh]@37 | |
1357 DDSURFACEDESC2 ddsd2; // [sp+1Ch] [bp-BCh]@11 | |
1358 D3DVIEWPORT2 d3dvp2; // [sp+98h] [bp-40h]@28 | |
1359 IDirectDrawClipper *v30; // [sp+C4h] [bp-14h]@18 | |
1360 LPDIRECTDRAW lpDD; // [sp+C8h] [bp-10h]@1 | |
1361 | |
1362 this->bWindowed = bWindowed; | |
1363 this->hWindow = hWnd; | |
1364 | |
1365 if (FAILED(DirectDrawCreate(pAvailableDevices[uDeviceID].pDirectDrawGUID, &lpDD, 0))) | |
1366 { | |
1367 sprintf(pErrorMessage, "Init - Failed to create DirectDraw interface.\n"); | |
1368 return 0; | |
1369 } | |
1370 | |
1371 if (FAILED(lpDD->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pHost))) | |
1372 { | |
1373 sprintf(pErrorMessage, "Init - Failed to create DirectDraw4 interface.\n"); | |
1374 if (lpDD) | |
1375 lpDD->Release(); | |
1376 return 0; | |
1377 } | |
1378 lpDD->Release(); | |
1379 lpDD = 0; | |
1380 | |
1381 if (bWindowed && !pAvailableDevices[uDeviceID].pDirectDrawGUID) | |
1382 { | |
1383 if (FAILED(pHost->SetCooperativeLevel(hWnd, DDSCL_MULTITHREADED | DDSCL_NORMAL))) | |
1384 { | |
1385 v23 = "Init - Failed to set cooperative level.\n"; | |
1386 sprintf(pErrorMessage, v23); | |
1387 LABEL_65: | |
1388 if (pHost) | |
1389 { | |
1390 pHost->Release(); | |
1391 pHost = 0; | |
1392 } | |
1393 return 0; | |
1394 } | |
1395 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2)); | |
1396 ddsd2.dwSize = sizeof(DDSURFACEDESC2); | |
1397 ddsd2.dwFlags = DDSD_CAPS; | |
1398 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE; | |
1399 if ( !pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) ) | |
1400 { | |
1401 ddsd2.dwSize = sizeof(DDSURFACEDESC2); | |
1402 pHost->GetDisplayMode(&ddsd2); | |
1403 if ( ddsd2.ddpfPixelFormat.dwRGBBitCount != 16 ) | |
1404 { | |
1405 v24 = "Init - Desktop isn't in 16 bit mode.\n"; | |
1406 goto LABEL_14; | |
1407 } | |
1408 | |
1409 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT; | |
1410 ddsd2.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN | DDSCAPS_3DDEVICE; | |
1411 ddsd2.dwWidth = 640; | |
1412 ddsd2.dwHeight = 480; | |
1413 if (pHost->CreateSurface(&ddsd2, &pBackBuffer, 0) ) | |
1414 { | |
1415 v24 = "Init - Failed to create back buffer.\n"; | |
1416 LABEL_14: | |
1417 sprintf(pErrorMessage, v24); | |
1418 if (pFrontBuffer) | |
1419 { | |
1420 pFrontBuffer->Release(); | |
1421 pFrontBuffer = 0; | |
1422 } | |
1423 goto LABEL_65; | |
1424 } | |
1425 if ( pHost->CreateClipper(0, &v30, 0) ) | |
1426 { | |
1427 v25 = "Init - Failed to create clipper.\n"; | |
1428 goto LABEL_45; | |
1429 } | |
1430 v30->SetHWnd(0, hWnd); | |
1431 pFrontBuffer->SetClipper(v30); | |
1432 | |
1433 v30->Release(); | |
1434 v30 = 0; | |
1435 | |
1436 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D); | |
1437 | |
1438 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT; | |
1439 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER; | |
1440 ddsd2.dwWidth = 640; | |
1441 ddsd2.dwHeight = 480; | |
1442 | |
1443 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID, | |
1444 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator, | |
1445 &ddsd2.ddpfPixelFormat) ) | |
1446 goto LABEL_21; | |
1447 if ( uDeviceID == 2 || uDeviceID == 3 ) | |
1448 ddsd2.ddsCaps.dwCaps |= DDSCAPS_SYSTEMMEMORY; | |
1449 | |
1450 if ( !pHost->CreateSurface(&ddsd2, &pZBuffer, 0) ) | |
1451 { | |
1452 if ( !pBackBuffer->AddAttachedSurface(pZBuffer) ) | |
1453 { | |
1454 if ( !pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID, | |
1455 pBackBuffer, | |
1456 &pDevice, | |
1457 0) ) | |
1458 { | |
1459 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2)); | |
1460 d3dvp2.dvClipWidth = 2.0; | |
1461 d3dvp2.dvClipY = 1.0; | |
1462 d3dvp2.dvClipHeight = 2.0; | |
1463 d3dvp2.dvMaxZ = 1.0; | |
1464 d3dvp2.dvMinZ = 0.0; | |
1465 goto LABEL_54; | |
1466 } | |
1467 LABEL_51: | |
1468 sprintf(pErrorMessage, "Init - Failed to create D3D device.\n"); | |
1469 if (pDirect3D) | |
1470 { | |
1471 pDirect3D->Release(); | |
1472 pDirect3D = 0; | |
1473 } | |
1474 goto LABEL_59; | |
1475 } | |
1476 LABEL_48: | |
1477 sprintf(pErrorMessage, "Init - Failed to attach z-buffer to back buffer.\n"); | |
1478 if (pZBuffer) | |
1479 { | |
1480 pZBuffer->Release(); | |
1481 pZBuffer = 0; | |
1482 } | |
1483 goto LABEL_61; | |
1484 } | |
1485 goto LABEL_44; | |
1486 } | |
1487 LABEL_36: | |
1488 v23 = "Init - Failed to create front buffer.\n"; | |
1489 sprintf(pErrorMessage, v23); | |
1490 goto LABEL_65; | |
1491 } | |
1492 if ( uDeviceID == 1 ) | |
1493 v26 = 1045; | |
1494 else | |
1495 v26 = 1041; | |
1496 if (pHost->SetCooperativeLevel(hWnd, v26) ) | |
1497 { | |
1498 v23 = "Init - Failed to set cooperative level.\n"; | |
1499 sprintf(pErrorMessage, v23); | |
1500 goto LABEL_65; | |
1501 } | |
1502 if (pHost->SetDisplayMode(640u, 480u, 16u, 0, 0) ) | |
1503 { | |
1504 v23 = "Init - Failed to set display mode.\n"; | |
1505 sprintf(pErrorMessage, v23); | |
1506 goto LABEL_65; | |
1507 } | |
1508 | |
1509 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2)); | |
1510 ddsd2.dwSize = sizeof(DDSURFACEDESC2); | |
1511 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT; | |
1512 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_3DDEVICE | DDSCAPS_FLIP | DDSCAPS_COMPLEX; | |
1513 ddsd2.dwBackBufferCount = 1; | |
1514 if ( pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) ) | |
1515 goto LABEL_36; | |
1516 //a3a = &pBackBuffer; | |
1517 //v14 = *v34; | |
1518 memset(&v27, 0, sizeof(DDSCAPS2)); | |
1519 v27.dwCaps = DDSCAPS_BACKBUFFER; | |
1520 //v33 = (IDirect3DDevice3 **)v14->GetAttachedSurface(&v27, &pBackBuffer); | |
1521 //hWnda = &pDirect3D; | |
1522 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D); | |
1523 if (FAILED(pFrontBuffer->GetAttachedSurface(&v27, &pBackBuffer))) | |
1524 { | |
1525 v25 = "Init - Failed to get D3D interface.\n"; | |
1526 goto LABEL_45; | |
1527 } | |
1528 | |
1529 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT; | |
1530 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER; | |
1531 ddsd2.dwWidth = 640; | |
1532 ddsd2.dwHeight = 480; | |
1533 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID, | |
1534 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator, | |
1535 &ddsd2.ddpfPixelFormat) ) | |
1536 { | |
1537 LABEL_21: | |
1538 v25 = "Init - Failed to enumerate Z buffer formats.\n"; | |
1539 goto LABEL_45; | |
1540 } | |
1541 if ( uDeviceID == 2 || uDeviceID == 3 ) | |
1542 BYTE1(ddsd2.ddsCaps.dwCaps) |= 8u; | |
1543 //uDeviceIDa = &pZBuffer; | |
1544 if (pHost->CreateSurface(&ddsd2, &pZBuffer, 0) ) | |
1545 { | |
1546 LABEL_44: | |
1547 v25 = "Init - Failed to create z-buffer.\n"; | |
1548 LABEL_45: | |
1549 sprintf(pErrorMessage, v25); | |
1550 if (pBackBuffer) | |
1551 { | |
1552 pBackBuffer->Release(); | |
1553 pBackBuffer = 0; | |
1554 } | |
1555 LABEL_63: | |
1556 //v19 = &pFrontBuffer; | |
1557 if (pFrontBuffer) | |
1558 { | |
1559 pFrontBuffer->Release(); | |
1560 pFrontBuffer= 0; | |
1561 } | |
1562 goto LABEL_65; | |
1563 } | |
1564 if (pBackBuffer->AddAttachedSurface(pZBuffer)) | |
1565 goto LABEL_48; | |
1566 //v33 = &pDevice; | |
1567 if (pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID, | |
1568 pBackBuffer, | |
1569 &pDevice, | |
1570 0) ) | |
1571 goto LABEL_51; | |
1572 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2)); | |
1573 d3dvp2.dvClipWidth = 2.0; | |
1574 d3dvp2.dvClipY = 1.0; | |
1575 d3dvp2.dvClipHeight = 2.0; | |
1576 d3dvp2.dvMaxZ = 1.0; | |
1577 | |
1578 LABEL_54: | |
1579 d3dvp2.dwSize = sizeof(D3DVIEWPORT2); | |
1580 //v17 = *hWnda; | |
1581 d3dvp2.dwWidth = 640; | |
1582 d3dvp2.dwHeight = 480; | |
1583 d3dvp2.dvClipX = -1.0; | |
1584 //v18 = v17->lpVtbl; | |
1585 //v32 = &v4->pViewport; | |
1586 if (pDirect3D->CreateViewport(&pViewport, 0)) | |
1587 { | |
1588 sprintf(pErrorMessage, "Init - Failed to create viewport.\n"); | |
1589 if (pDevice) | |
1590 { | |
1591 pDevice->Release(); | |
1592 pDevice = 0; | |
1593 } | |
1594 if (pDirect3D) | |
1595 { | |
1596 pDirect3D->Release(); | |
1597 pDirect3D = 0; | |
1598 } | |
1599 LABEL_59: | |
1600 if (pZBuffer) | |
1601 { | |
1602 pZBuffer->Release(); | |
1603 pZBuffer = 0; | |
1604 } | |
1605 LABEL_61: | |
1606 if (pBackBuffer) | |
1607 { | |
1608 pBackBuffer->Release(); | |
1609 pBackBuffer = 0; | |
1610 } | |
1611 goto LABEL_63; | |
1612 } | |
1613 | |
1614 pDevice->AddViewport(pViewport); | |
1615 pViewport->SetViewport2(&d3dvp2); | |
1616 pDevice->SetCurrentViewport(pViewport); | |
1617 return 1; | |
1618 } | |
1619 | |
1620 //----- (0049E444) -------------------------------------------------------- | |
1621 unsigned int RenderD3D::GetDeviceCaps() | |
1622 { | |
1623 unsigned int v1; // ebx@1 | |
1624 RenderD3D *v2; // edi@1 | |
1625 IDirect3DDevice3 *v3; // eax@1 | |
1626 unsigned int result; // eax@2 | |
1627 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-1F8h]@1 | |
1628 D3DDEVICEDESC halCaps; // [sp+108h] [bp-FCh]@1 | |
1629 | |
1630 v1 = 0; | |
1631 v2 = this; | |
1632 memset(&halCaps, 0, 0xFCu); | |
1633 halCaps.dwSize = 252; | |
1634 memset(&refCaps, 0, 0xFCu); | |
1635 v3 = v2->pDevice; | |
1636 refCaps.dwSize = 252; | |
1637 if ( v3->GetCaps(&halCaps, &refCaps) ) | |
1638 { | |
1639 result = 1; | |
1640 } | |
1641 else | |
1642 { | |
1643 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & 0x10) ) | |
1644 v1 = 2; | |
1645 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & 2) ) | |
1646 v1 |= 4u; | |
1647 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & 1) ) | |
1648 v1 |= 8u; | |
1649 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & 0x20) ) | |
1650 v1 |= 0x10u; | |
1651 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & 2) ) | |
1652 v1 |= 0x20u; | |
1653 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & 4) ) | |
1654 v1 |= 0x40u; | |
1655 if ( halCaps.dpcTriCaps.dwTextureCaps & 0x20 ) | |
1656 LOBYTE(v1) = v1 | 0x80; | |
1657 result = v1; | |
1658 } | |
1659 return result; | |
1660 } | |
1661 | |
1662 //----- (0049E4FC) -------------------------------------------------------- | |
1663 void RenderD3D::ClearTarget(unsigned int bClearColor, unsigned int uClearColor, unsigned int bClearDepth, float z_clear) | |
1664 { | |
1665 uint uClearFlags = 0; | |
1666 | |
1667 if (bClearColor) | |
1668 uClearFlags |= D3DCLEAR_TARGET; | |
1669 if (bClearDepth) | |
1670 uClearFlags |= D3DCLEAR_ZBUFFER; | |
1671 | |
1672 D3DRECT rects[] = {{0, 0, 640, 480}}; | |
1673 if (uClearFlags) | |
1674 pViewport->Clear2(1, rects, uClearFlags, uClearColor, z_clear, 0); | |
1675 } | |
1676 | |
1677 //----- (0049E54D) -------------------------------------------------------- | |
1678 void RenderD3D::Present(bool bForceBlit) | |
1679 { | |
1680 RECT v5; // [sp+18h] [bp-18h]@1 | |
1681 struct tagPOINT Point; // [sp+28h] [bp-8h]@4 | |
1682 | |
1683 v5.left = 0; | |
1684 v5.top = 0; | |
1685 v5.bottom = 480; | |
1686 v5.right = 640; | |
1687 | |
1688 if (bWindowed || bForceBlit) | |
1689 { | |
1690 RECT rc; | |
1691 GetClientRect(hWindow, &rc); | |
1692 Point.y = 0; | |
1693 Point.x = 0; | |
1694 ClientToScreen(hWindow, &Point); | |
1695 OffsetRect(&rc, Point.x, Point.y); | |
1696 pFrontBuffer->Blt(&rc, pBackBuffer, &v5, DDBLT_WAIT, 0); | |
1697 } | |
1698 else | |
1699 pFrontBuffer->Flip(0, 1); | |
1700 } | |
1701 | |
1702 //----- (0049E5D4) -------------------------------------------------------- | |
1703 bool RenderD3D::CreateTexture(unsigned int uTextureWidth, unsigned int uTextureHeight, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture, bool bAlphaChannel, bool bMipmaps, unsigned int uMinDeviceTexDim) | |
1704 { | |
1705 unsigned int v8; // edx@4 | |
1706 unsigned int v9; // ebx@5 | |
1707 unsigned int v10; // eax@5 | |
1708 DWORD v11; // edx@5 | |
1709 //int v12; // edx@7 | |
1710 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-80h]@1 | |
1711 //RenderD3D *v15; // [sp+88h] [bp-4h]@1 | |
1712 | |
1713 //v15 = this; | |
1714 memset(&ddsd2, 0, 0x7Cu); | |
1715 ddsd2.dwSize = 0x7Cu; | |
1716 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT; | |
1717 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE; | |
1718 ddsd2.ddsCaps.dwCaps2 = DDSCAPS2_TEXTUREMANAGE; | |
1719 ddsd2.dwHeight = uTextureHeight; | |
1720 ddsd2.dwWidth = uTextureWidth; | |
1721 if ( bMipmaps ) | |
1722 { | |
1723 if ( (signed int)uTextureHeight <= (signed int)uTextureWidth ) | |
1724 { | |
1725 v8 = GetMaxMipLevels(uTextureHeight) - GetMaxMipLevels(uMinDeviceTexDim); | |
1726 LABEL_8: | |
1727 ddsd2.dwMipMapCount = v8; | |
1728 if ( !v8 ) | |
1729 goto LABEL_12; | |
1730 goto LABEL_11; | |
1731 } | |
1732 if ( (signed int)uTextureWidth < (signed int)uMinDeviceTexDim ) | |
1733 { | |
1734 v8 = GetMaxMipLevels(uMinDeviceTexDim); | |
1735 goto LABEL_8; | |
1736 } | |
1737 v9 = GetMaxMipLevels(uTextureWidth); | |
1738 v10 = GetMaxMipLevels(uMinDeviceTexDim); | |
1739 ddsd2.dwMipMapCount = v9 - v10; | |
1740 if ( v9 == v10 ) | |
1741 { | |
1742 ddsd2.dwFlags = 0x1007u; | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
1743 __debugbreak(); // warning C4700: uninitialized local variable 'v11' used |
0 | 1744 ddsd2.ddsCaps.dwCaps = v11; |
1745 goto LABEL_12; | |
1746 } | |
1747 } | |
1748 else | |
1749 { | |
1750 ddsd2.dwMipMapCount = 1; | |
1751 } | |
1752 LABEL_11: | |
1753 ddsd2.dwFlags = DDSD_CAPS | DDSD_HEIGHT | DDSD_WIDTH | DDSD_PIXELFORMAT | DDSD_MIPMAPCOUNT; | |
1754 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_COMPLEX | DDSCAPS_MIPMAP; | |
1755 LABEL_12: | |
1756 ddsd2.ddpfPixelFormat.dwRGBBitCount = 16; | |
1757 ddsd2.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT); | |
1758 if (bAlphaChannel) | |
1759 { | |
1760 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB | DDPF_ALPHAPIXELS; | |
1761 ddsd2.ddpfPixelFormat.dwRBitMask = 0x7C00; | |
1762 ddsd2.ddpfPixelFormat.dwGBitMask = 0x03E0; | |
1763 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F; | |
1764 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0x8000u; | |
1765 } | |
1766 else | |
1767 { | |
1768 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB; | |
1769 ddsd2.ddpfPixelFormat.dwRBitMask = 0xF800; | |
1770 ddsd2.ddpfPixelFormat.dwGBitMask = 0x07E0; | |
1771 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F; | |
1772 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0; | |
1773 } | |
1774 if (FAILED(pHost->CreateSurface(&ddsd2, pOutSurface, 0))) | |
1775 return false; | |
1776 if (FAILED((*pOutSurface)->QueryInterface(IID_IDirect3DTexture2, (void **)pOutTexture))) | |
1777 { | |
1778 (*pOutSurface)->Release(); | |
1779 *pOutSurface = 0; | |
1780 return false; | |
1781 } | |
1782 return true; | |
1783 } | |
1784 | |
1785 //----- (004A5190) -------------------------------------------------------- | |
1786 void RenderD3D::HandleLostResources() | |
1787 { | |
1788 pBitmaps_LOD->ReleaseLostHardwareTextures(); | |
1789 pBitmaps_LOD->_410423_move_textures_to_device(); | |
1790 pSprites_LOD->ReleaseLostHardwareSprites(); | |
1791 } | |
1792 | |
1793 //----- (004A2050) -------------------------------------------------------- | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
1794 void Render::DrawPolygon(unsigned int uNumVertices, struct Polygon *a3, ODMFace *a4, IDirect3DTexture2 *pTexture) |
0 | 1795 { |
1796 Render *v5; // edi@1 | |
1797 unsigned int v6; // ebx@1 | |
1798 LightmapBuilder *v7; // esi@3 | |
1799 int v8; // eax@7 | |
1800 ODMFace *v9; // eax@12 | |
1801 char *v10; // esi@12 | |
1802 double v11; // st7@14 | |
1803 double v12; // st7@14 | |
1804 int v13; // eax@14 | |
1805 ODMFace *v14; // ecx@14 | |
1806 double v15; // st7@14 | |
1807 float v16; // ST48_4@15 | |
1808 int v17; // eax@15 | |
1809 char v18; // zf@17 | |
1810 HRESULT v19; // eax@18 | |
1811 HRESULT v20; // eax@18 | |
1812 HRESULT v21; // eax@20 | |
1813 HRESULT v22; // eax@20 | |
1814 unsigned int v23; // ecx@20 | |
1815 char *v24; // eax@21 | |
1816 HRESULT v25; // eax@23 | |
1817 HRESULT v26; // eax@23 | |
1818 HRESULT v27; // eax@24 | |
1819 HRESULT v28; // eax@25 | |
1820 HRESULT v29; // eax@25 | |
1821 HRESULT v30; // eax@25 | |
1822 HRESULT v31; // eax@25 | |
1823 HRESULT v32; // eax@26 | |
1824 unsigned int v33; // ecx@26 | |
1825 char *v34; // eax@27 | |
1826 int v35; // edx@28 | |
1827 HRESULT v36; // eax@29 | |
1828 HRESULT v37; // eax@29 | |
1829 HRESULT v38; // eax@29 | |
1830 HRESULT v39; // eax@29 | |
1831 //IDirect3DDevice3Vtbl *v40; // ebx@29 | |
1832 unsigned int v41; // eax@29 | |
1833 HRESULT v42; // eax@30 | |
1834 HRESULT v43; // eax@30 | |
1835 HRESULT v44; // eax@30 | |
1836 char *v45; // esi@34 | |
1837 int v46; // ecx@35 | |
1838 double v47; // st6@35 | |
1839 int v48; // eax@36 | |
1840 const char *v49; // [sp+4Ch] [bp-1Ch]@0 | |
1841 const char *v50; // [sp+4Ch] [bp-1Ch]@20 | |
1842 int v51; // [sp+50h] [bp-18h]@0 | |
1843 unsigned int v52; // [sp+54h] [bp-14h]@0 | |
1844 LightmapBuilder *v53; // [sp+58h] [bp-10h]@3 | |
1845 unsigned int v54; // [sp+5Ch] [bp-Ch]@3 | |
1846 unsigned int v55; // [sp+5Ch] [bp-Ch]@34 | |
1847 unsigned int v56; // [sp+60h] [bp-8h]@12 | |
1848 int v57; // [sp+60h] [bp-8h]@34 | |
638 | 1849 unsigned int a2; // [sp+64h] [bp-4h]@4 |
0 | 1850 |
1851 v5 = this; | |
1852 v6 = 0; | |
1853 if ( this->uNumD3DSceneBegins && (signed int)uNumVertices >= 3 ) | |
1854 { | |
1855 v7 = pGame->pLightmapBuilder; | |
1856 v53 = v7; | |
1857 v54 = v7->std__vector_000004_size; | |
1858 if ( v7->std__vector_000004_size) | |
638 | 1859 a2 = 0xFFFFFFFF; |
1860 pGame->AlterGamma_ODM(a4, &a2); | |
1394 | 1861 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01) |
0 | 1862 { |
638 | 1863 v8 = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0); |
1394 | 1864 v7->DrawLightmaps(/*v8, 0*/); |
0 | 1865 } |
1866 else | |
1867 { | |
1868 if ( !v54 || byte_4D864C && pGame->uFlags & 2 ) | |
1869 { | |
323 | 1870 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 1871 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); |
1872 if (bUsingSpecular) | |
1873 { | |
186 | 1874 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); |
1875 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
1876 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 1877 } |
1073 | 1878 for (uint i = 0; i < uNumVertices; ++i) |
1879 { | |
1880 | |
1881 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
1882 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 1883 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 1884 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
1885 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
1886 pGame->AlterGamma_ODM(a4, &d3d_vertex_buffer[i].diffuse); | |
1887 | |
1888 if ( this->bUsingSpecular ) | |
0 | 1889 { |
1073 | 1890 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 1891 } |
1073 | 1892 else |
1893 { | |
1894 d3d_vertex_buffer[i].specular = 0; | |
1895 } | |
1896 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
1897 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
1898 | |
1899 } | |
323 | 1900 |
1901 if (a4->uAttributes & FACE_OUTLINED) | |
1902 { | |
1903 int color; | |
1904 if (GetTickCount() % 300 >= 150) | |
1905 color = 0xFFFF2020; | |
1906 else color = 0xFF901010; | |
1907 | |
1908 for (uint i = 0; i < uNumVertices; ++i) | |
1909 d3d_vertex_buffer[i].diffuse = color; | |
1910 } | |
1911 | |
0 | 1912 pRenderD3D->pDevice->SetTexture(0, pTexture); |
1913 pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
1914 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
1915 d3d_vertex_buffer, |
0 | 1916 uNumVertices, |
1917 D3DDP_DONOTLIGHT); | |
1918 } | |
1919 else | |
1920 { | |
1073 | 1921 for (uint i = 0; i < uNumVertices; ++i) |
1922 { | |
1923 | |
1924 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
1925 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 1926 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 1927 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
1928 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
1929 if ( this->bUsingSpecular ) | |
0 | 1930 { |
1073 | 1931 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 1932 } |
1073 | 1933 else |
1934 { | |
1935 d3d_vertex_buffer[i].specular = 0; | |
1936 } | |
1937 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
1938 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
1939 | |
1940 } | |
1941 | |
186 | 1942 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); |
1943 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
0 | 1944 if (bUsingSpecular) |
186 | 1945 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); |
0 | 1946 |
1947 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); | |
1948 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
1949 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
1950 d3d_vertex_buffer, |
0 | 1951 uNumVertices, |
1952 D3DDP_DONOTLIGHT)); | |
1953 //v50 = (const char *)v5->pRenderD3D->pDevice; | |
1954 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
1955 //(*(void (**)(void))(*(int *)v50 + 88))(); | |
1394 | 1956 v53->DrawLightmaps(/*-1, 0*/); |
1073 | 1957 for (uint i = 0; i < uNumVertices; ++i) |
1958 { | |
1959 d3d_vertex_buffer[i].diffuse = a2; | |
1960 } | |
0 | 1961 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture)); |
186 | 1962 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 1963 if ( !pRenderer->bUsingSpecular ) |
186 | 1964 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
1965 | |
1966 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
1967 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO)); | |
1968 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR)); | |
0 | 1969 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
1970 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
1971 d3d_vertex_buffer, |
0 | 1972 uNumVertices, |
1973 D3DDP_DONOTLIGHT)); | |
1974 if (bUsingSpecular) | |
1975 { | |
186 | 1976 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
0 | 1977 |
1073 | 1978 for (uint i = 0; i < uNumVertices; ++i) |
1979 { | |
1980 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000; | |
1981 d3d_vertex_buffer[i].specular = 0; | |
1982 } | |
1983 | |
0 | 1984 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); |
186 | 1985 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA)); |
1986 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA)); | |
0 | 1987 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
1988 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
1989 d3d_vertex_buffer, |
0 | 1990 uNumVertices, |
1991 D3DDP_DONOTLIGHT)); | |
186 | 1992 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 1993 //v40 = pRenderer->pRenderD3D->pDevice->lpVtbl; |
1994 v41 = GetLevelFogColor(); | |
1995 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF); | |
1996 v6 = 0; | |
1997 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0); | |
1998 } | |
186 | 1999 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
2000 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 2001 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v6)); |
2002 } | |
2003 } | |
2004 } | |
2005 } | |
2006 // 4D864C: using guessed type char byte_4D864C; | |
2007 | |
2008 //----- (0049EB79) -------------------------------------------------------- | |
2009 Render::~Render() | |
2010 { | |
2011 Render *v1; // esi@1 | |
2012 | |
2013 v1 = this; | |
1583 | 2014 free(this->pDefaultZBuffer); |
0 | 2015 v1->pD3DBitmaps.Release(); |
2016 v1->pD3DSprites.Release(); | |
2017 Release(); | |
2018 v1->bWindowMode = 1; | |
2019 //nullsub_1(); | |
2020 //nullsub_1(); | |
2021 } | |
2022 | |
2023 //----- (0049E756) -------------------------------------------------------- | |
2024 bool Render::IsColorKeySupported(IDirectDraw4 *this_) | |
2025 { | |
2026 DDCAPS refCaps; // [sp+0h] [bp-2F8h]@1 | |
2027 DDCAPS halCaps; // [sp+17Ch] [bp-17Ch]@1 | |
2028 | |
2029 halCaps.dwSize = 380; | |
2030 refCaps.dwSize = 380; | |
2031 this_->GetCaps(&halCaps, &refCaps); | |
2032 return halCaps.dwSVBCaps & 0x40 && BYTE1(halCaps.dwSVBCKeyCaps) & 2; | |
2033 } | |
2034 | |
2035 //----- (0049E992) -------------------------------------------------------- | |
2036 Render::Render() | |
2037 { | |
2038 Render *v1; // esi@1 | |
2039 int v2; // eax@1 | |
2040 char v3; // zf@1 | |
2041 | |
2042 v1 = this; | |
2043 this->pDirectDraw4 = 0; | |
2044 this->pFrontBuffer4 = 0; | |
2045 this->pBackBuffer4 = 0; | |
2046 this->pColorKeySurface4 = 0; | |
2047 this->pDirectDraw2 = 0; | |
2048 this->pFrontBuffer2 = 0; | |
2049 this->pBackBuffer2 = 0; | |
2050 this->pSomeSurface2 = 0; | |
2051 //RenderHWLContainer::RenderHWLContainer(&this->pD3DBitmaps); | |
2052 //RenderHWLContainer::RenderHWLContainer(&v1->pD3DSprites); | |
2053 v1->bWindowMode = 1; | |
2054 v1->field_40054 = 0; | |
2055 v1->field_10 = 640; | |
2056 v1->field_14 = 480; | |
2057 v1->field_40030 = 0; | |
2058 v1->field_4002C = 0; | |
2059 v1->pActiveZBuffer = 0; | |
2060 v1->pDefaultZBuffer = 0; | |
709 | 2061 v1->raster_clip_y = 0; |
2062 v1->raster_clip_x = 0; | |
2063 v1->raster_clip_z = 639; | |
2064 v1->raster_clip_w = 479; | |
0 | 2065 v1->field_4003C = (int)&unk_4EED80; |
2066 v1->field_40040 = dword_4EED78; | |
2067 v1->uClipZ = 640; | |
2068 v1->field_40044 = 2; | |
2069 v1->field_40048 = 6; | |
2070 v1->pFrontBuffer4 = 0; | |
2071 v1->pBackBuffer4 = 0; | |
2072 v1->pColorKeySurface4 = 0; | |
2073 v1->pDirectDraw4 = 0; | |
2074 v1->pRenderD3D = 0; | |
2075 v1->uNumSceneBegins = 0; | |
2076 v1->uNumD3DSceneBegins = 0; | |
2077 v1->field_40110 = 0; | |
2078 v1->pTargetSurface = 0; | |
2079 v1->uTargetSurfacePitch = 0; | |
2080 v1->uClipY = 0; | |
2081 v1->uClipX = 0; | |
2082 v1->uClipW = 480; | |
2083 v1->bClip = 1; | |
2084 v1->bColorKeySupported = 0; | |
2085 v1->bRequiredTextureStagesAvailable = 0; | |
2086 v1->bTinting = 1; | |
2087 LOBYTE(v1->field_103668) = 0; | |
2088 v1->field_1036B8 = 0; | |
2089 v1->_gpu_memory_used = 0; | |
2090 uNumBillboardsToDraw = 0; | |
2091 bFogEnabled = false; | |
265 | 2092 |
2093 hd_water_tile_id = -1; | |
2094 hd_water_current_frame = 0; | |
0 | 2095 } |
2096 | |
1655 | 2097 bool Render::Initialize(bool bWindowed, int windowed_width, int windowed_height, uint32_t uDefaultDevice, |
2098 bool bColoredLights, uint32_t uDetailLevel, bool bTinting) | |
0 | 2099 { |
2100 bUserDirect3D = true;//ReadWindowsRegistryInt("Use D3D", 0); | |
1655 | 2101 |
0 | 2102 bStartInWindow = bWindowed; |
1655 | 2103 windowed_mode_width = windowed_width; |
2104 windowed_mode_height = windowed_height; | |
0 | 2105 |
2106 uDesiredDirect3DDevice = uDefaultDevice;//ReadWindowsRegistryInt("D3D Device", 1); | |
2107 | |
2108 bUseColoredLights = bColoredLights;//ReadWindowsRegistryInt("Colored Lights", 0); | |
2109 uLevelOfDetail = uDetailLevel;//ReadWindowsRegistryInt("Detail Level", 1); | |
2110 | |
2111 this->bTinting = bTinting; | |
2112 | |
2113 auto r1 = pD3DBitmaps.Load(L"data\\d3dbitmap.hwl"); | |
2114 auto r2 = pD3DSprites.Load(L"data\\d3dsprite.hwl"); | |
2115 | |
2116 return r1 && r2; | |
2117 } | |
2118 | |
2119 //----- (0049EBF1) -------------------------------------------------------- | |
2120 void Render::_49EBF1() | |
2121 { | |
2122 signed int uNumRedBits; // edx@1 | |
2123 signed int uNuGreenBits; // edi@1 | |
2124 signed int uNumBlueBits; // esi@1 | |
2125 unsigned int v4; // edx@4 | |
2126 unsigned int v5; // edi@4 | |
2127 int v6; // ebx@4 | |
2128 int v7; // edx@4 | |
2129 signed int v8; // [sp+8h] [bp-24h]@1 | |
2130 signed int v9; // [sp+Ch] [bp-20h]@1 | |
2131 signed int v10; // [sp+20h] [bp-Ch]@1 | |
2132 signed int i; // [sp+24h] [bp-8h]@2 | |
2133 signed int v12; // [sp+28h] [bp-4h]@3 | |
2134 | |
2135 v10 = 0; | |
2136 uNumRedBits = 1 << this->uTargetRBits; | |
2137 uNuGreenBits = 1 << this->uTargetGBits; | |
2138 uNumBlueBits = 1 << this->uTargetBBits; | |
2139 v9 = 1 << this->uTargetRBits; | |
2140 v8 = 1 << this->uTargetGBits; | |
2141 if ( uNumRedBits > 0 ) | |
2142 { | |
2143 do | |
2144 { | |
2145 for ( i = 0; i < uNuGreenBits; ++i ) | |
2146 { | |
2147 v12 = 0; | |
2148 if ( uNumBlueBits > 0 ) | |
2149 { | |
2150 do | |
2151 { | |
2152 v4 = this->uTargetBBits; | |
2153 v5 = v4 + this->uTargetGBits; | |
2154 v6 = (v12 >> 1) + (v10 >> 1 << v5) + (i >> 1 << this->uTargetBBits); | |
2155 v7 = (v10 << v5) + v12++ + (i << v4); | |
2156 this->field_2C[v7] = v6; | |
2157 } | |
2158 while ( v12 < uNumBlueBits ); | |
2159 uNumRedBits = v9; | |
2160 uNuGreenBits = v8; | |
2161 } | |
2162 } | |
2163 ++v10; | |
2164 } | |
2165 while ( v10 < uNumRedBits ); | |
2166 } | |
2167 } | |
2168 | |
2169 //----- (0049ECC4) -------------------------------------------------------- | |
2170 void Render::ClearBlack() | |
2171 { | |
2172 if (pRenderD3D) | |
2173 { | |
2174 if (field_40110) | |
2175 pRenderD3D->ClearTarget(true, 0, false, 0.0); | |
2176 } | |
2177 else | |
2178 memset(pRenderer->pTargetSurface, 0, 4 * (field_10 * field_14 / 2)); | |
2179 } | |
2180 | |
2181 //----- (0049ED18) -------------------------------------------------------- | |
2182 void Render::PresentBlackScreen() | |
2183 { | |
2184 IDirectDrawSurface *v2; // eax@3 | |
2185 DDBLTFX v3; // [sp+4h] [bp-74h]@5 | |
2186 RECT x; // [sp+68h] [bp-10h]@3 | |
2187 | |
2188 memset(&v3, 0, sizeof(DDBLTFX)); | |
1655 | 2189 GetWindowRect(hWnd, &x); |
0 | 2190 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
2191 pVersion->pVersionInfo.dwMajorVersion >= 5) | |
2192 { | |
2193 v2 = (IDirectDrawSurface *)this->pBackBuffer4; | |
2194 } | |
2195 else | |
2196 { | |
2197 v2 = (IDirectDrawSurface *)this->pBackBuffer2; | |
2198 } | |
2199 v3.dwFillColor = 0; | |
2200 v3.dwSize = 100; | |
2201 v2->Blt(&x, 0, 0, DDBLT_COLORFILL, &v3); | |
2202 pRenderer->Present(); | |
2203 } | |
2204 | |
2205 //----- (0049EDB6) -------------------------------------------------------- | |
2206 void Render::SavePCXScreenshot() | |
2207 { | |
2208 Render *v1; // esi@1 | |
2209 __int16 v2; // di@1 | |
2210 int v3; // eax@4 | |
2211 int v4; // ecx@4 | |
2212 int v5; // eax@8 | |
2213 FILE *v6; // edi@10 | |
2214 int v7; // ecx@11 | |
2215 int v8; // eax@11 | |
2216 int v9; // eax@13 | |
2217 int v10; // ecx@15 | |
2218 unsigned __int8 v11; // dl@15 | |
2219 signed int v12; // eax@18 | |
2220 char v13; // zf@27 | |
2221 HRESULT v14; // eax@29 | |
2222 char v15[56]; // [sp+Ch] [bp-158h]@10 | |
2223 __int16 v16; // [sp+44h] [bp-120h]@10 | |
2224 DDSURFACEDESC2 Dst; // [sp+48h] [bp-11Ch]@7 | |
2225 char color_map[48]; // [sp+C4h] [bp-A0h]@10 | |
2226 char Filename[40]; // [sp+F4h] [bp-70h]@3 | |
2227 char *v20; // [sp+11Ch] [bp-48h]@14 | |
2228 char *v21; // [sp+120h] [bp-44h]@14 | |
2229 int v24; // [sp+124h] [bp-40h]@11 | |
2230 FILE *File; // [sp+128h] [bp-3Ch]@3 | |
2231 int var38; // [sp+12Ch] [bp-38h]@4 | |
2232 PCXHeader_1 header1; // [sp+130h] [bp-34h]@10 | |
2233 PCXHeader_2 header2; // [sp+140h] [bp-24h]@10 | |
2234 void *ptr; // [sp+148h] [bp-1Ch]@10 | |
2235 void *v28; // [sp+14Ch] [bp-18h]@8 | |
2236 int v29; // [sp+150h] [bp-14h]@4 | |
2237 int v30; // [sp+154h] [bp-10h]@4 | |
2238 char v31; // [sp+15Ah] [bp-Ah]@25 | |
2239 unsigned __int8 v32; // [sp+15Bh] [bp-9h]@17 | |
2240 int i; // [sp+15Ch] [bp-8h]@10 | |
2241 unsigned __int8 v34; // [sp+163h] [bp-1h]@17 | |
2242 | |
2243 v1 = this; | |
2244 v2 = 0; | |
2245 if ( !this->pRenderD3D || this->field_40110 ) | |
2246 { | |
2247 sprintf(Filename, "screen%0.2i.pcx", dword_4EFA80++ % 100); | |
2248 File = fopen(Filename, "wb"); | |
2249 if ( File ) | |
2250 { | |
2251 v3 = v1->field_10; | |
2252 v4 = v1->field_14; | |
2253 var38 = v3; | |
2254 v29 = v4; | |
2255 v30 = v3; | |
2256 if ( v3 & 1 ) | |
2257 v30 = v3 + 1; | |
2258 if ( v1->pRenderD3D ) | |
2259 { | |
2260 memset(&Dst, 0, 0x7Cu); | |
2261 Dst.dwSize = 124; | |
168 | 2262 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &Dst, DDLOCK_WAIT) ) |
0 | 2263 return; |
2264 v28 = Dst.lpSurface; | |
2265 v5 = Dst.lPitch >> 1; | |
2266 v2 = 0; | |
2267 } | |
2268 else | |
2269 { | |
2270 pRenderer->BeginScene(); | |
2271 v28 = pRenderer->pTargetSurface; | |
2272 v5 = pRenderer->uTargetSurfacePitch; | |
2273 } | |
2274 i = v5; | |
2275 header1.right = var38 - 1; | |
2276 header1.left = v2; | |
2277 header1.bottom = v29 - 1; | |
2278 header1.up = v2; | |
2279 header2.pitch = v30; | |
2280 memset(color_map, 0, sizeof(color_map)); | |
2281 memset(v15, 0, sizeof(v15)); | |
2282 header2.reserved = 0; | |
2283 header1.manufacturer = 10; | |
2284 v16 = 0; | |
2285 v6 = File; | |
2286 header1.version = 5; | |
2287 header1.encoding = 1; | |
2288 header1.bpp = 8; | |
2289 header1.hdpi = 75; | |
2290 header1.vdpi = 75; | |
2291 header2.planes = 3; | |
2292 header2.palette_info = 1; | |
2293 fwrite(&header1, 1u, 1u, File); | |
2294 fwrite(&header1.version, 1u, 1u, v6); | |
2295 fwrite(&header1.encoding, 1u, 1u, v6); | |
2296 fwrite(&header1.bpp, 1u, 1u, v6); | |
2297 fwrite(&header1.left, 2u, 1u, v6); | |
2298 fwrite(&header1.up, 2u, 1u, v6); | |
2299 fwrite(&header1.right, 2u, 1u, v6); | |
2300 fwrite(&header1.bottom, 2u, 1u, v6); | |
2301 fwrite(&header1.hdpi, 2u, 1u, v6); | |
2302 fwrite(&header1.vdpi, 2u, 1u, v6); | |
2303 fwrite(color_map, 0x30u, 1u, v6); | |
2304 fwrite(&header2, 1u, 1u, v6); | |
2305 fwrite(&header2.planes, 1u, 1u, v6); | |
2306 fwrite(&header2.pitch, 2u, 1u, v6); | |
2307 fwrite(&header2.palette_info, 2u, 1u, v6); | |
2308 fwrite(v15, 0x3Au, 1u, v6); | |
1583 | 2309 ptr = malloc(3 * var38 + 6); |
0 | 2310 if ( v29 > 0 ) |
2311 { | |
2312 v7 = v30; | |
2313 File = (FILE *)v29; | |
2314 v29 = 3 * v30; | |
2315 v24 = 2 * i; | |
2316 v8 = (int)v28; | |
2317 while ( 1 ) | |
2318 { | |
2319 i = v8; | |
2320 v9 = 0; | |
2321 if ( var38 > 0 ) | |
2322 { | |
2323 v21 = (char *)ptr + v7; | |
2324 v20 = (char *)ptr + 2 * v30; | |
2325 do | |
2326 { | |
2327 *((char *)ptr + v9) = (signed int)(v1->uTargetRMask & *(short *)i) >> (LOBYTE(v1->uTargetGBits) | |
2328 + LOBYTE(v1->uTargetBBits) | |
2329 + v1->uTargetRBits | |
2330 - 8); | |
2331 v21[v9] = (signed int)(v1->uTargetGMask & *(short *)i) >> (LOBYTE(v1->uTargetBBits) | |
2332 + LOBYTE(v1->uTargetGBits) | |
2333 - 8); | |
2334 v10 = i; | |
2335 v11 = LOBYTE(v1->uTargetBMask); | |
2336 i += 2; | |
2337 v20[v9++] = (*(char *)v10 & v11) << (8 - LOBYTE(v1->uTargetBBits)); | |
2338 } | |
2339 while ( v9 < var38 ); | |
2340 } | |
2341 for ( i = 0; i < v29; i += v34 ) | |
2342 { | |
2343 v34 = 1; | |
2344 v32 = *((char *)ptr + i); | |
2345 do | |
2346 { | |
2347 v12 = i + v34; | |
2348 if ( *((char *)ptr + v12) != v32 ) | |
2349 break; | |
2350 if ( !(v12 % v30) ) | |
2351 break; | |
2352 ++v34; | |
2353 } | |
2354 while ( v34 < 0x3Fu ); | |
2355 if ( i + v34 > v29 ) | |
2356 v34 = 3 * v30 - i; | |
2357 if ( v34 > 1u || v32 >= 0xC0u ) | |
2358 { | |
2359 v31 = v34 | 0xC0; | |
2360 fwrite(&v31, 1u, 1u, v6); | |
2361 } | |
2362 fwrite(&v32, 1u, 1u, v6); | |
2363 } | |
2364 v8 = (int)((char *)v28 + v24); | |
2365 v13 = File == (FILE *)1; | |
2366 File = (FILE *)((char *)File - 1); | |
2367 v28 = (char *)v28 + v24; | |
2368 if ( v13 ) | |
2369 break; | |
2370 v7 = v30; | |
2371 } | |
2372 } | |
2373 if ( v1->pRenderD3D ) | |
2374 { | |
2375 ErrD3D(pRenderer->pBackBuffer4->Unlock(0)); | |
2376 } | |
2377 else | |
2378 { | |
2379 pRenderer->EndScene(); | |
2380 } | |
2381 | |
1583 | 2382 free(ptr); |
0 | 2383 fclose(v6); |
2384 } | |
2385 } | |
2386 } | |
2387 // 4EFA80: using guessed type int dword_4EFA80; | |
2388 | |
2389 //----- (0049F1BC) -------------------------------------------------------- | |
2390 void Render::_49F1BC(const char *a1) | |
2391 { | |
2392 Render *v2; // esi@1 | |
2393 __int16 v3; // di@1 | |
2394 int v4; // eax@4 | |
2395 char *v5; // ecx@4 | |
2396 unsigned int v6; // eax@8 | |
2397 FILE *v7; // edi@10 | |
2398 int v8; // ecx@11 | |
2399 int v9; // eax@11 | |
2400 int v10; // eax@13 | |
2401 const char *v11; // ecx@15 | |
2402 unsigned __int8 v12; // dl@15 | |
2403 signed int v13; // eax@18 | |
2404 char v14; // zf@27 | |
2405 HRESULT v15; // eax@29 | |
2406 char v16; // [sp+Ch] [bp-12Ch]@10 | |
2407 __int16 v17; // [sp+44h] [bp-F4h]@10 | |
2408 int Dst; // [sp+48h] [bp-F0h]@7 | |
2409 int v19; // [sp+58h] [bp-E0h]@8 | |
2410 unsigned __int16 *v20; // [sp+6Ch] [bp-CCh]@8 | |
2411 char v21; // [sp+C4h] [bp-74h]@10 | |
2412 unsigned int v22; // [sp+F4h] [bp-44h]@11 | |
2413 char *v23; // [sp+F8h] [bp-40h]@14 | |
2414 int v24; // [sp+FCh] [bp-3Ch]@11 | |
2415 int v25; // [sp+100h] [bp-38h]@4 | |
2416 FILE *File; // [sp+104h] [bp-34h]@3 | |
2417 char Str; // [sp+108h] [bp-30h]@10 | |
2418 char v28; // [sp+109h] [bp-2Fh]@10 | |
2419 char v29; // [sp+10Ah] [bp-2Eh]@10 | |
2420 char v30; // [sp+10Bh] [bp-2Dh]@10 | |
2421 __int16 v31; // [sp+10Ch] [bp-2Ch]@10 | |
2422 __int16 v32; // [sp+10Eh] [bp-2Ah]@10 | |
2423 __int16 v33; // [sp+110h] [bp-28h]@10 | |
2424 __int16 v34; // [sp+112h] [bp-26h]@10 | |
2425 __int16 v35; // [sp+114h] [bp-24h]@10 | |
2426 __int16 v36; // [sp+116h] [bp-22h]@10 | |
2427 char v37; // [sp+118h] [bp-20h]@10 | |
2428 char v38; // [sp+119h] [bp-1Fh]@10 | |
2429 __int16 v39; // [sp+11Ah] [bp-1Eh]@10 | |
2430 __int16 v40; // [sp+11Ch] [bp-1Ch]@10 | |
2431 void *ptr; // [sp+120h] [bp-18h]@10 | |
2432 unsigned __int16 *v42; // [sp+124h] [bp-14h]@8 | |
2433 int v43; // [sp+128h] [bp-10h]@4 | |
2434 char v44; // [sp+12Fh] [bp-9h]@25 | |
2435 char *i; // [sp+130h] [bp-8h]@10 | |
2436 unsigned __int8 v46; // [sp+137h] [bp-1h]@17 | |
2437 | |
2438 v2 = this; | |
2439 v3 = 0; | |
2440 if ( !this->pRenderD3D || this->field_40110 ) | |
2441 { | |
2442 ++dword_4EFA84; | |
2443 File = fopen(a1, "wb"); | |
2444 if ( File ) | |
2445 { | |
2446 v4 = v2->field_10; | |
2447 v5 = (char *)v2->field_14; | |
2448 v25 = v4; | |
2449 a1 = v5; | |
2450 v43 = v4; | |
2451 if ( v4 & 1 ) | |
2452 v43 = v4 + 1; | |
2453 if ( v2->pRenderD3D ) | |
2454 { | |
2455 memset(&Dst, 0, 0x7Cu); | |
2456 Dst = 124; | |
168 | 2457 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, (DDSURFACEDESC2 *)&Dst, DDLOCK_WAIT) ) |
0 | 2458 return; |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
2459 __debugbreak(); // warning C4700: uninitialized local variable 'v20' used |
0 | 2460 v42 = v20; |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
2461 __debugbreak(); // warning C4700: uninitialized local variable 'v19' used |
0 | 2462 v6 = v19 >> 1; |
2463 v3 = 0; | |
2464 } | |
2465 else | |
2466 { | |
2467 pRenderer->BeginScene(); | |
2468 v42 = pRenderer->pTargetSurface; | |
2469 v6 = pRenderer->uTargetSurfacePitch; | |
2470 } | |
2471 i = (char *)v6; | |
2472 v33 = v25 - 1; | |
2473 v31 = v3; | |
2474 v34 = (short)a1 - 1; | |
2475 v32 = v3; | |
2476 v39 = v43; | |
2477 memset(&v21, 0, 0x30u); | |
2478 memset(&v16, 0, 0x38u); | |
2479 v37 = 0; | |
2480 Str = 10; | |
2481 v17 = 0; | |
2482 v7 = File; | |
2483 v28 = 5; | |
2484 v29 = 1; | |
2485 v30 = 8; | |
2486 v35 = 75; | |
2487 v36 = 75; | |
2488 v38 = 3; | |
2489 v40 = 1; | |
2490 fwrite(&Str, 1u, 1u, File); | |
2491 fwrite(&v28, 1u, 1u, v7); | |
2492 fwrite(&v29, 1u, 1u, v7); | |
2493 fwrite(&v30, 1u, 1u, v7); | |
2494 fwrite(&v31, 2u, 1u, v7); | |
2495 fwrite(&v32, 2u, 1u, v7); | |
2496 fwrite(&v33, 2u, 1u, v7); | |
2497 fwrite(&v34, 2u, 1u, v7); | |
2498 fwrite(&v35, 2u, 1u, v7); | |
2499 fwrite(&v36, 2u, 1u, v7); | |
2500 fwrite(&v21, 0x30u, 1u, v7); | |
2501 fwrite(&v37, 1u, 1u, v7); | |
2502 fwrite(&v38, 1u, 1u, v7); | |
2503 fwrite(&v39, 2u, 1u, v7); | |
2504 fwrite(&v40, 2u, 1u, v7); | |
2505 fwrite(&v16, 0x3Au, 1u, v7); | |
1583 | 2506 ptr = malloc(3 * v25 + 6); |
0 | 2507 if ( (signed int)a1 > 0 ) |
2508 { | |
2509 v8 = v43; | |
2510 File = (FILE *)a1; | |
2511 v24 = 3 * v43; | |
2512 v22 = 2 * (int)i; | |
2513 v9 = (int)v42; | |
2514 while ( 1 ) | |
2515 { | |
2516 a1 = (const char *)v9; | |
2517 v10 = 0; | |
2518 if ( v25 > 0 ) | |
2519 { | |
2520 i = (char *)ptr + v8; | |
2521 v23 = (char *)ptr + 2 * v43; | |
2522 do | |
2523 { | |
2524 *((char *)ptr + v10) = (signed int)(v2->uTargetRMask & *(short *)a1) >> (LOBYTE(v2->uTargetGBits) | |
2525 + LOBYTE(v2->uTargetBBits) | |
2526 + v2->uTargetRBits | |
2527 - 8); | |
2528 i[v10] = (signed int)(v2->uTargetGMask & *(short *)a1) >> (LOBYTE(v2->uTargetBBits) | |
2529 + LOBYTE(v2->uTargetGBits) | |
2530 - 8); | |
2531 v11 = a1; | |
2532 v12 = LOBYTE(v2->uTargetBMask); | |
2533 a1 += 2; | |
2534 v23[v10++] = ((unsigned __int8)*v11 & v12) << (8 - LOBYTE(v2->uTargetBBits)); | |
2535 } | |
2536 while ( v10 < v25 ); | |
2537 } | |
2538 for ( i = 0; (signed int)i < v24; i += BYTE3(a1) ) | |
2539 { | |
2540 BYTE3(a1) = 1; | |
2541 v46 = *((char *)ptr + (int)i); | |
2542 do | |
2543 { | |
2544 v13 = (signed int)&i[BYTE3(a1)]; | |
2545 if ( *((char *)ptr + v13) != v46 ) | |
2546 break; | |
2547 if ( !(v13 % v43) ) | |
2548 break; | |
2549 ++BYTE3(a1); | |
2550 } | |
2551 while ( BYTE3(a1) < 0x3Fu ); | |
2552 if ( (signed int)&i[BYTE3(a1)] > v24 ) | |
2553 BYTE3(a1) = 3 * v43 - (char)i; | |
2554 if ( BYTE3(a1) > 1u || v46 >= 0xC0u ) | |
2555 { | |
2556 v44 = BYTE3(a1) | 0xC0; | |
2557 fwrite(&v44, 1u, 1u, v7); | |
2558 } | |
2559 fwrite(&v46, 1u, 1u, v7); | |
2560 } | |
2561 v9 = (int)&v42[v22 / 2]; | |
2562 v14 = File == (FILE *)1; | |
2563 File = (FILE *)((char *)File - 1); | |
2564 v42 = (unsigned __int16 *)((char *)v42 + v22); | |
2565 if ( v14 ) | |
2566 break; | |
2567 v8 = v43; | |
2568 } | |
2569 } | |
2570 if ( v2->pRenderD3D ) | |
2571 { | |
2572 ErrD3D(pRenderer->pBackBuffer4->Unlock(0)); | |
2573 } | |
2574 else | |
2575 { | |
2576 pRenderer->EndScene(); | |
2577 } | |
1583 | 2578 free(ptr); |
0 | 2579 fclose(v7); |
2580 } | |
2581 } | |
2582 } | |
2583 // 4EFA84: using guessed type int dword_4EFA84; | |
2584 | |
2585 //----- (0049F5A2) -------------------------------------------------------- | |
810 | 2586 void Render::PackPCXpicture( unsigned short* picture_data, int wight, int heidth, void *data_buff, int max_buff_size,unsigned int* packed_size ) |
2587 { | |
0 | 2588 Render *v7; // ebx@1 |
2589 void *v8; // esi@3 | |
2590 void *v9; // esi@3 | |
2591 int v10; // ecx@4 | |
810 | 2592 unsigned short* v11; // eax@4 |
0 | 2593 int v12; // eax@6 |
2594 int v13; // eax@8 | |
2595 int v14; // ecx@8 | |
2596 signed int v15; // eax@11 | |
2597 char v16; // zf@20 | |
2598 int result; // eax@21 | |
2599 char v18[58]; // [sp+Ch] [bp-ACh]@3 | |
2600 // __int16 v19; // [sp+44h] [bp-74h]@3 | |
2601 char v20[48]; // [sp+48h] [bp-70h]@3 | |
810 | 2602 char *lineG; // [sp+78h] [bp-40h]@7 |
2603 char *lineB; // [sp+7Ch] [bp-3Ch]@7 | |
0 | 2604 int v23; // [sp+80h] [bp-38h]@4 |
2605 int v24; // [sp+84h] [bp-34h]@4 | |
2606 int v25; // [sp+88h] [bp-30h]@4 | |
2607 int v26; // [sp+8Ch] [bp-2Ch]@4 | |
810 | 2608 PCXHeader_1 Src; // [sp+90h] [bp-28h]@3 |
2609 PCXHeader_2 v27; // [sp+A0h] [bp-18h]@3 | |
2610 char *lineRGB; // [sp+A8h] [bp-10h]@3 | |
2611 int pitch; // [sp+ACh] [bp-Ch]@1 | |
0 | 2612 char v43; // [sp+B3h] [bp-5h]@18 |
2613 int i; // [sp+B4h] [bp-4h]@6 | |
810 | 2614 unsigned short* line_pictute_data; |
2615 byte test_byte; | |
2616 unsigned char pict_byte; | |
0 | 2617 |
2618 v7 = this; | |
810 | 2619 pitch = wight; |
2620 if ( wight & 1 ) | |
2621 pitch = wight + 1; | |
2622 Src.left = 0; | |
2623 Src.up = 0; | |
2624 Src.right = wight - 1; | |
2625 Src.bottom = heidth - 1; | |
2626 v27.pitch = pitch; | |
0 | 2627 memset(&v20, 0, 0x30u); |
2628 memset(&v18, 0, 0x38u); | |
810 | 2629 v8 = data_buff; |
2630 v27.reserved = 0; | |
0 | 2631 *(_WORD *)&v18[56] = 0; |
810 | 2632 Src.manufacturer = 10; |
2633 Src.version = 5; | |
2634 Src.encoding = 1; | |
2635 Src.bpp = 8; | |
2636 Src.hdpi = 75; | |
2637 Src.vdpi = 75; | |
2638 v27.planes = 3; | |
2639 v27.palette_info = 1; | |
2640 memcpy(data_buff, &Src, 1u); | |
0 | 2641 v8 = (char *)v8 + 1; |
810 | 2642 memcpy(v8, &Src.version, 1u); |
0 | 2643 v8 = (char *)v8 + 1; |
810 | 2644 memcpy(v8, &Src.encoding, 1u); |
0 | 2645 v8 = (char *)v8 + 1; |
810 | 2646 memcpy(v8, &Src.bpp, 1u); |
0 | 2647 v8 = (char *)v8 + 1; |
810 | 2648 memcpy(v8, &Src.left, 2u); |
0 | 2649 v8 = (char *)v8 + 2; |
810 | 2650 memcpy(v8, &Src.up, 2u); |
0 | 2651 v8 = (char *)v8 + 2; |
810 | 2652 memcpy(v8, &Src.right, 2u); |
0 | 2653 v8 = (char *)v8 + 2; |
810 | 2654 memcpy(v8, &Src.bottom, 2u); |
0 | 2655 v8 = (char *)v8 + 2; |
810 | 2656 memcpy(v8, &Src.hdpi, 2u); |
0 | 2657 v8 = (char *)v8 + 2; |
810 | 2658 memcpy(v8, &Src.vdpi, 2u); |
0 | 2659 v8 = (char *)v8 + 2; |
2660 memcpy(v8, &v20, 0x30u); | |
2661 v8 = (char *)v8 + 48; | |
810 | 2662 memcpy(v8, &v27, 1u); |
0 | 2663 v8 = (char *)v8 + 1; |
810 | 2664 memcpy(v8, &v27.planes, 1u); |
0 | 2665 v8 = (char *)v8 + 1; |
810 | 2666 memcpy(v8, &v27.pitch, 2u); |
0 | 2667 v8 = (char *)v8 + 2; |
810 | 2668 memcpy(v8, &v27.palette_info, 2u); |
0 | 2669 v8 = (char *)v8 + 2; |
2670 memcpy(v8, &v18, 0x3Au); | |
2671 v9 = (char *)v8 + 58; | |
810 | 2672 |
1583 | 2673 lineRGB = (char*)malloc(3 * (wight + 2)); |
810 | 2674 if ( heidth > 0 ) |
2675 { | |
2676 v10 = pitch; | |
2677 v25 = heidth; | |
2678 v26 = 3 * pitch; | |
2679 v23 = 2 * wight; | |
2680 v11 = picture_data; | |
2681 v24 = (int)picture_data; | |
0 | 2682 while ( 1 ) |
2683 { | |
810 | 2684 line_pictute_data = v11; |
0 | 2685 v12 = 0; |
2686 i = 0; | |
810 | 2687 if ( wight > 0 ) |
2688 { | |
2689 lineG = (char *)lineRGB + pitch; | |
2690 lineB = (char *)lineRGB + 2 * pitch; | |
0 | 2691 do |
2692 { | |
810 | 2693 lineRGB[v12] = (signed int)(v7->uTargetRMask & *line_pictute_data) >> (v7->uTargetGBits + v7->uTargetBBits + v7->uTargetRBits - 8); |
2694 lineG[v12] = (signed int)(v7->uTargetGMask & *line_pictute_data) >> ( v7->uTargetBBits + v7->uTargetGBits- 8); | |
2695 lineB[v12] = (v7->uTargetBMask & *line_pictute_data) << (8 - v7->uTargetBBits); | |
2696 | |
2697 v12++; | |
2698 } | |
2699 while ( v12 < wight ); | |
0 | 2700 } |
2701 for ( i = 0; i < v26; v9 = (char *)v9 + 1 ) | |
2702 { | |
810 | 2703 test_byte = 1; |
2704 pict_byte = lineRGB [i]; | |
0 | 2705 do |
2706 { | |
810 | 2707 v15 = i + test_byte; |
2708 if ( *((char *)lineRGB + v15) != pict_byte ) | |
0 | 2709 break; |
810 | 2710 if ( !(v15 % pitch) ) |
0 | 2711 break; |
810 | 2712 ++test_byte; |
2713 } | |
2714 while ( test_byte < 0x3Fu ); | |
2715 if ( i + test_byte > v26 ) | |
2716 test_byte = 3 * pitch - i; | |
2717 if ( test_byte > 1u || pict_byte >= 0xC0u ) | |
2718 { | |
2719 v43 = test_byte | 0xC0; | |
0 | 2720 memcpy(v9, &v43, 1u); |
2721 v9 = (char *)v9 + 1; | |
2722 } | |
810 | 2723 memcpy(v9, &pict_byte, 1u); |
2724 i += test_byte; | |
2725 } | |
2726 v11 +=wight ; | |
0 | 2727 v16 = v25-- == 1; |
810 | 2728 |
0 | 2729 if ( v16 ) |
2730 break; | |
810 | 2731 v10 = pitch; |
2732 } | |
2733 } | |
1583 | 2734 free(lineRGB); |
810 | 2735 *(int *)packed_size = (char *)v9 - data_buff; |
2736 | |
0 | 2737 } |
2738 | |
2739 //----- (0049F8B5) -------------------------------------------------------- | |
2740 FILE *Render::SavePCXImage(const char *Filename, char *a3, int a4, int a5) | |
2741 { | |
1430 | 2742 //Render *v5; // esi@1 |
0 | 2743 FILE *result; // eax@1 |
2744 FILE *v7; // edi@4 | |
2745 int v8; // ecx@5 | |
2746 int v9; // eax@5 | |
2747 int v10; // eax@7 | |
2748 int v11; // ecx@9 | |
2749 signed int v12; // eax@12 | |
2750 char v13; // zf@21 | |
2751 char v14[56]; // [sp+4h] [bp-A0h]@4 | |
2752 __int16 v15; // [sp+3Ch] [bp-68h]@4 | |
2753 char color_map[48]; // [sp+40h] [bp-64h]@4 | |
2754 int v17; // [sp+70h] [bp-34h]@5 | |
2755 int v18; // [sp+74h] [bp-30h]@5 | |
2756 char *v19; // [sp+78h] [bp-2Ch]@5 | |
2757 int v20; // [sp+7Ch] [bp-28h]@5 | |
2758 PCXHeader_1 header1; // [sp+80h] [bp-24h]@4 | |
2759 PCXHeader_2 header2; // [sp+90h] [bp-14h]@4 | |
2760 void *ptr; // [sp+98h] [bp-Ch]@4 | |
2761 int v24; // [sp+9Ch] [bp-8h]@2 | |
2762 char *i; // [sp+A0h] [bp-4h]@8 | |
2763 | |
2764 result = fopen(Filename, "wb"); | |
2765 Filename = (const char *)result; | |
2766 if ( result ) | |
2767 { | |
2768 v24 = a4; | |
2769 if ( a4 & 1 ) | |
2770 v24 = a4 + 1; | |
2771 header1.left = 0; | |
2772 header1.up = 0; | |
2773 header1.right = a4 - 1; | |
2774 header1.bottom = a5 - 1; | |
2775 header2.pitch = v24; | |
2776 memset(color_map, 0, sizeof(color_map)); | |
2777 header2.reserved = 0; | |
2778 memset(v14, 0, sizeof(v14)); | |
2779 v15 = 0; | |
2780 header1.manufacturer = 10; | |
2781 header1.version = 5; | |
2782 header1.encoding = 1; | |
2783 header1.bpp = 8; | |
2784 header1.hdpi = 75; | |
2785 header1.vdpi = 75; | |
2786 header2.planes = 3; | |
2787 header2.palette_info = 1; | |
2788 fwrite(&header1, 1u, 1u, (FILE *)Filename); | |
2789 v7 = (FILE *)Filename; | |
2790 fwrite(&header1.version, 1u, 1u, (FILE *)Filename); | |
2791 fwrite(&header1.encoding, 1u, 1u, v7); | |
2792 fwrite(&header1.bpp, 1u, 1u, v7); | |
2793 fwrite(&header1.left, 2u, 1u, v7); | |
2794 fwrite(&header1.up, 2u, 1u, v7); | |
2795 fwrite(&header1.right, 2u, 1u, v7); | |
2796 fwrite(&header1.bottom, 2u, 1u, v7); | |
2797 fwrite(&header1.hdpi, 2u, 1u, v7); | |
2798 fwrite(&header1.vdpi, 2u, 1u, v7); | |
2799 fwrite(color_map, 0x30u, 1u, v7); | |
2800 fwrite(&header2, 1u, 1u, v7); | |
2801 fwrite(&header2.planes, 1u, 1u, v7); | |
2802 fwrite(&header2.pitch, 2u, 1u, v7); | |
2803 fwrite(&header2.palette_info, 2u, 1u, v7); | |
2804 fwrite(v14, 0x3Au, 1u, v7); | |
1583 | 2805 ptr = malloc(3 * a4 + 6); |
0 | 2806 if ( a5 > 0 ) |
2807 { | |
2808 v8 = v24; | |
2809 v18 = a5; | |
2810 v20 = 3 * v24; | |
2811 v17 = 2 * a4; | |
2812 v9 = (int)a3; | |
2813 v19 = a3; | |
2814 while ( 1 ) | |
2815 { | |
2816 a5 = v9; | |
2817 v10 = 0; | |
2818 if ( a4 > 0 ) | |
2819 { | |
2820 a3 = (char *)ptr + v8; | |
2821 i = (char *)ptr + 2 * v24; | |
2822 do | |
2823 { | |
1430 | 2824 *((char *)ptr + v10) = (signed int)(this->uTargetRMask & *(short *)a5) >> (LOBYTE(this->uTargetGBits) |
2825 + LOBYTE(this->uTargetBBits) | |
2826 + this->uTargetRBits | |
0 | 2827 - 8); |
1430 | 2828 a3[v10] = (signed int)(this->uTargetGMask & *(short *)a5) >> (LOBYTE(this->uTargetBBits) |
2829 + LOBYTE(this->uTargetGBits) | |
0 | 2830 - 8); |
2831 v11 = a5; | |
2832 a5 += 2; | |
1430 | 2833 i[v10++] = (this->uTargetBMask & *(char *)v11) << (8 - LOBYTE(this->uTargetBBits)); |
0 | 2834 } |
2835 while ( v10 < a4 ); | |
2836 } | |
2837 for ( i = 0; (signed int)i < v20; i += BYTE3(a5) ) | |
2838 { | |
2839 BYTE3(a5) = 1; | |
2840 BYTE3(Filename) = *((char *)ptr + (int)i); | |
2841 do | |
2842 { | |
2843 v12 = (signed int)&i[BYTE3(a5)]; | |
2844 if ( *((char *)ptr + v12) != BYTE3(Filename) ) | |
2845 break; | |
2846 if ( !(v12 % v24) ) | |
2847 break; | |
2848 ++BYTE3(a5); | |
2849 } | |
2850 while ( BYTE3(a5) < 0x3Fu ); | |
2851 if ( (signed int)&i[BYTE3(a5)] > v20 ) | |
2852 BYTE3(a5) = 3 * v24 - (char)i; | |
2853 if ( BYTE3(a5) > 1u || BYTE3(Filename) >= 0xC0u ) | |
2854 { | |
2855 BYTE3(a3) = BYTE3(a5) | 0xC0; | |
2856 fwrite((char *)&a3 + 3, 1u, 1u, v7); | |
2857 } | |
2858 fwrite((char *)&Filename + 3, 1u, 1u, v7); | |
2859 } | |
2860 v9 = (int)&v19[v17]; | |
2861 v13 = v18-- == 1; | |
2862 v19 += v17; | |
2863 if ( v13 ) | |
2864 break; | |
2865 v8 = v24; | |
2866 } | |
2867 } | |
1583 | 2868 free(ptr); |
0 | 2869 result = (FILE *)fclose(v7); |
2870 } | |
2871 return result; | |
2872 } | |
2873 | |
2874 //----- (0049FBCD) -------------------------------------------------------- | |
2875 void Render::ClearTarget(unsigned int uColor) | |
2876 { | |
2877 if (pRenderD3D) | |
2878 { | |
2879 if (field_40110) | |
2880 pRenderD3D->ClearTarget(true, uColor, false, 0.0); | |
2881 } | |
2882 else | |
2883 memset32(pTargetSurface, uColor, field_10 * field_14 / 2); | |
2884 } | |
2885 | |
2886 //----- (0049FC23) -------------------------------------------------------- | |
2887 void Render::Release2() | |
2888 { | |
2889 Release(); | |
2890 bWindowMode = 1; | |
2891 } | |
2892 | |
2893 //----- (0049FC37) -------------------------------------------------------- | |
2894 void Render::Present() | |
2895 { | |
2896 Render *v1; // esi@1 | |
2897 struct tagRECT Rect; // [sp+8h] [bp-28h]@11 | |
2898 RECT a4; // [sp+18h] [bp-18h]@11 | |
2899 struct tagPOINT Point; // [sp+28h] [bp-8h]@11 | |
2900 | |
2901 v1 = this; | |
2902 if ( !pRenderer->pRenderD3D || this->field_40110 ) | |
2903 { | |
2904 this->pBeforePresentFunction(); | |
2905 if ( v1->pRenderD3D ) | |
2906 { | |
2907 if ( v1->field_40110 ) | |
2908 { | |
2909 pRenderD3D->Present(false); | |
2910 } | |
2911 } | |
2912 else | |
2913 { | |
2914 if ( v1->bWindowMode ) | |
2915 { | |
2916 RestoreFrontBuffer(); | |
2917 GetClientRect(v1->hWnd, &Rect); | |
2918 Point.y = 0; | |
2919 Point.x = 0; | |
2920 ClientToScreen(v1->hWnd, &Point); | |
2921 OffsetRect(&Rect, Point.x, Point.y); | |
2922 a4.top = 0; | |
2923 a4.bottom = 480; | |
2924 a4.left = 0; | |
2925 a4.right = 640; | |
2926 PresentRect(&Rect, &a4); | |
2927 } | |
2928 else | |
2929 { | |
2930 RestoreFrontBuffer(); | |
2931 a4.top = 0; | |
2932 a4.bottom = 480; | |
2933 a4.left = 0; | |
2934 a4.right = 640; | |
2935 BltBackToFontFast(0, 0, &a4); | |
2936 } | |
2937 } | |
2938 } | |
2939 } | |
2940 | |
2941 //----- (0049FD3A) -------------------------------------------------------- | |
2942 void Render::_49FD3A() | |
2943 { | |
2944 Render *v2; // esi@1 | |
2945 IDirectDrawSurface4 *v3; // eax@6 | |
2946 IDirectDrawSurface4 *v4; // ST0C_4@6 | |
2947 RECT v5; // [sp+8h] [bp-10h]@6 | |
2948 | |
2949 auto a1 = this; | |
2950 v2 = a1; | |
2951 if ( a1->pRenderD3D ) | |
2952 { | |
2953 if (pFrontBuffer4->IsLost() == DDERR_SURFACELOST) | |
2954 pFrontBuffer4->Restore(); | |
2955 if (pBackBuffer4->IsLost() == DDERR_SURFACELOST) | |
2956 pBackBuffer4->Restore(); | |
2957 v3 = v2->pBackBuffer4; | |
2958 v4 = v2->pFrontBuffer4; | |
2959 v5.top = 0; | |
2960 v5.bottom = 480; | |
2961 v5.left = 0; | |
2962 v5.right = 640; | |
2963 v3->BltFast(0, 0, v4, &v5, 16u); | |
2964 } | |
2965 } | |
2966 | |
2967 //----- (0049FDBF) -------------------------------------------------------- | |
2968 void Render::CreateZBuffer() | |
2969 { | |
2970 if (!pDefaultZBuffer) | |
2971 { | |
2972 pDefaultZBuffer = pActiveZBuffer = nullptr; | |
1583 | 2973 pDefaultZBuffer = pActiveZBuffer = (int *)malloc(0x12C000); |
871 | 2974 memset32(pActiveZBuffer, 0xFFFF0000, 0x4B000u); // // inlined Render::ClearActiveZBuffer (mm8::004A085B) |
0 | 2975 } |
2976 } | |
2977 | |
2978 //----- (0049FE05) -------------------------------------------------------- | |
2979 void Render::Release() | |
2980 { | |
2981 Render *v1; // esi@1 | |
2982 RenderD3D *v2; // ecx@1 | |
2983 char v3; // zf@4 | |
2984 void *v4; // ebx@6 | |
2985 IDirectDraw *v5; // eax@10 | |
2986 IDirectDrawSurface2 *v6; // eax@11 | |
2987 IDirectDrawSurface2 *v7; // eax@13 | |
2988 IDirectDrawSurface2 *v8; // eax@15 | |
2989 IDirectDraw2 *v9; // eax@17 | |
2990 IDirectDraw4 *v10; // eax@19 | |
2991 IDirectDrawSurface4 *v11; // eax@20 | |
2992 IDirectDrawSurface4 *v12; // eax@22 | |
2993 IDirectDrawSurface4 *v13; // eax@24 | |
2994 IDirectDraw4 *v14; // eax@26 | |
2995 unsigned __int16 **v15; // ebx@28 | |
2996 void **v16; // esi@29 | |
2997 | |
2998 v1 = this; | |
2999 v2 = this->pRenderD3D; | |
3000 if ( v2 ) | |
3001 { | |
3002 if ( v1->field_40110 ) | |
3003 { | |
3004 pRenderD3D->ClearTarget(1u, 0, 0, 1.0); | |
3005 pRenderD3D->Present(0); | |
3006 pRenderD3D->ClearTarget(1u, 0, 0, 1.0); | |
3007 } | |
3008 v1->pColorKeySurface4 = 0; | |
3009 v1->pBackBuffer4 = 0; | |
3010 v3 = v1->pTargetSurface == 0; | |
3011 v1->pFrontBuffer4 = 0; | |
3012 v1->pDirectDraw4 = 0; | |
3013 if ( !v3 ) | |
3014 { | |
3015 free(v1->ptr_400E8); | |
3016 v1->pTargetSurface = 0; | |
3017 v1->ptr_400E8 = 0; | |
3018 } | |
3019 v4 = v1->pRenderD3D; | |
3020 if ( v4 ) | |
3021 { | |
3022 pRenderD3D->Release(); | |
3023 free(v4); | |
3024 } | |
3025 v1->pRenderD3D = 0; | |
3026 } | |
3027 else | |
3028 { | |
3029 if ( bWinNT4_0 == 1 ) | |
3030 { | |
3031 v5 = (IDirectDraw *)v1->pDirectDraw2; | |
3032 if ( !v5 ) | |
3033 return; | |
3034 v5->SetCooperativeLevel(v1->hWnd, 8u); | |
3035 v1->pDirectDraw2->FlipToGDISurface(); | |
3036 v6 = v1->pSomeSurface2; | |
3037 if ( v6 ) | |
3038 { | |
3039 v6->Release(); | |
3040 v1->pSomeSurface2 = 0; | |
3041 } | |
3042 v7 = v1->pBackBuffer2; | |
3043 if ( v7 ) | |
3044 { | |
3045 v7->Release(); | |
3046 v1->pBackBuffer2 = 0; | |
3047 } | |
3048 v8 = v1->pFrontBuffer2; | |
3049 if ( v8 ) | |
3050 { | |
3051 v8->Release(); | |
3052 v1->pFrontBuffer2 = 0; | |
3053 } | |
3054 v9 = v1->pDirectDraw2; | |
3055 if ( v9 ) | |
3056 { | |
3057 v9->Release(); | |
3058 v1->pDirectDraw2 = 0; | |
3059 } | |
3060 } | |
3061 else | |
3062 { | |
3063 v10 = v1->pDirectDraw4; | |
3064 if ( !v10 ) | |
3065 return; | |
3066 v10->SetCooperativeLevel(v1->hWnd, 1032u); | |
3067 v1->pDirectDraw4->FlipToGDISurface(); | |
3068 v11 = v1->pColorKeySurface4; | |
3069 if ( v11 ) | |
3070 { | |
3071 v11->Release(); | |
3072 v1->pColorKeySurface4 = 0; | |
3073 } | |
3074 v12 = v1->pBackBuffer4; | |
3075 if ( v12 ) | |
3076 { | |
3077 v12->Release(); | |
3078 v1->pBackBuffer4 = 0; | |
3079 } | |
3080 v13 = v1->pFrontBuffer4; | |
3081 if ( v13 ) | |
3082 { | |
3083 v13->Release(); | |
3084 v1->pFrontBuffer4 = 0; | |
3085 } | |
3086 v14 = v1->pDirectDraw4; | |
3087 if ( v14 ) | |
3088 { | |
3089 v14->Release(); | |
3090 v1->pDirectDraw4 = 0; | |
3091 } | |
3092 } | |
3093 v15 = &v1->pTargetSurface; | |
3094 if ( v1->pTargetSurface ) | |
3095 { | |
3096 v16 = (void **)&v1->ptr_400E8; | |
3097 free(*v16); | |
3098 *v15 = 0; | |
3099 *v16 = 0; | |
3100 } | |
3101 } | |
3102 } | |
3103 | |
3104 //----- (0049FFD7) -------------------------------------------------------- | |
3105 void Render::CreateSomeTexture() | |
3106 { | |
3107 pRenderD3D->CreateTexture(64, 64, &pSurface, &pTexture, true, false, 32); | |
3108 } | |
3109 | |
3110 //----- (0049FFFB) -------------------------------------------------------- | |
3111 bool Render::InitializeFullscreen(HWND hWnd) | |
3112 { | |
3113 //Render *v2; // esi@1 | |
3114 //HWND v3; // ebx@1 | |
3115 //void *v4; // eax@2 | |
3116 //RenderD3D *v5; // eax@3 | |
3117 unsigned int v6; // edx@5 | |
3118 RenderD3D__DevInfo *v7; // ecx@5 | |
3119 bool v8; // eax@6 | |
3120 RenderD3D *v9; // ecx@13 | |
3121 unsigned int v10; // eax@13 | |
3122 RenderD3D *v11; // eax@25 | |
3123 HRESULT v12; // eax@25 | |
3124 int v13; // ecx@25 | |
3125 int v14; // eax@27 | |
3126 signed int v15; // ebx@31 | |
3127 bool v16; // eax@35 | |
3128 char v17; // zf@35 | |
3129 IDirectDraw4 *v18; // eax@38 | |
3130 HRESULT v19; // eax@38 | |
3131 int *v20; // eax@39 | |
3132 int *v22; // eax@42 | |
3133 int v23; // ecx@42 | |
3134 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@25 | |
3135 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@40 | |
3136 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@25 | |
3137 DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@38 | |
3138 void *v28; // [sp+2FCh] [bp-10h]@2 | |
3139 int v29; // [sp+308h] [bp-4h]@2 | |
3140 | |
3141 //v2 = this; | |
3142 this->field_40110 = 0; | |
3143 this->pColorKeySurface4 = 0; | |
3144 this->pBackBuffer4 = 0; | |
3145 this->pFrontBuffer4 = 0; | |
3146 this->pDirectDraw4 = 0; | |
3147 this->bColorKeySupported = 0; | |
3148 Release(); | |
3149 //v3 = hWnd; | |
3150 this->hWnd = hWnd; | |
3151 CreateZBuffer(); | |
3152 if ( bUserDirect3D ) | |
3153 { | |
3154 pRenderD3D = new RenderD3D; | |
3155 v28 = pRenderD3D; | |
3156 v6 = uDesiredDirect3DDevice; | |
3157 v29 = -1; | |
3158 v7 = pRenderD3D->pAvailableDevices; | |
3159 if ( v7[v6].bIsDeviceCompatible ) | |
3160 { | |
3161 v8 = pRenderD3D->CreateDevice(v6, 0, hWnd); | |
3162 uAcquiredDirect3DDevice = uDesiredDirect3DDevice; | |
3163 } | |
3164 else | |
3165 { | |
3166 if ( v7[1].bIsDeviceCompatible ) | |
3167 { | |
3168 v8 = pRenderD3D->CreateDevice(1u, 0, hWnd); | |
3169 uAcquiredDirect3DDevice = 1; | |
3170 } | |
3171 else | |
3172 { | |
3173 if ( !v7->bIsDeviceCompatible ) | |
1545 | 3174 Error("There aren't any D3D devices to create."); |
3175 | |
0 | 3176 v8 = pRenderD3D->CreateDevice(0, 0, hWnd); |
3177 uAcquiredDirect3DDevice = 0; | |
3178 } | |
3179 } | |
3180 if ( !v8 ) | |
1545 | 3181 Error("D3Drend->Init failed."); |
3182 | |
0 | 3183 v9 = pRenderD3D; |
3184 pBackBuffer4 = v9->pBackBuffer; | |
3185 pFrontBuffer4 = v9->pFrontBuffer; | |
3186 pDirectDraw4 = v9->pHost; | |
3187 v10 = pRenderD3D->GetDeviceCaps(); | |
3188 if ( v10 & 1 ) | |
3189 { | |
3190 if ( pRenderD3D ) | |
3191 { | |
3192 pRenderD3D->Release(); | |
3193 delete pRenderD3D; | |
3194 } | |
3195 pRenderD3D = 0; | |
3196 pBackBuffer4 = 0; | |
3197 pFrontBuffer4 = 0; | |
3198 pDirectDraw4 = 0; | |
1545 | 3199 Error("Direct3D renderer: The device failed to return capabilities."); |
0 | 3200 } |
3201 if ( v10 & 0x3E ) | |
3202 { | |
3203 if ( pRenderD3D ) | |
3204 { | |
3205 pRenderD3D->Release(); | |
3206 delete pRenderD3D; | |
3207 } | |
3208 pColorKeySurface4 = 0; | |
3209 pRenderD3D = 0; | |
3210 pBackBuffer4 = 0; | |
3211 pFrontBuffer4 = 0; | |
3212 pDirectDraw4 = 0; | |
1545 | 3213 Error("Direct3D renderer: The device doesn't support the necessary alpha blending modes."); |
0 | 3214 } |
3215 if ( (v10 & 0x80u) != 0 ) | |
3216 { | |
3217 if ( pRenderD3D ) | |
3218 { | |
3219 pRenderD3D->Release(); | |
3220 delete pRenderD3D; | |
3221 } | |
3222 pRenderD3D = 0; | |
3223 pBackBuffer4 = 0; | |
3224 pFrontBuffer4 = 0; | |
3225 pDirectDraw4 = 0; | |
1545 | 3226 Error("Direct3D renderer: The device doesn't support non-square textures."); |
0 | 3227 } |
3228 LOBYTE(field_10365C) = ~(unsigned __int8)(v10 >> 6) & 1; | |
3229 bRequiredTextureStagesAvailable = CheckTextureStages(); | |
3230 memset(&halCaps, 0, 0xFCu); | |
3231 halCaps.dwSize = 252; | |
3232 memset(&refCaps, 0, 0xFCu); | |
3233 v11 = pRenderD3D; | |
3234 refCaps.dwSize = 252; | |
3235 ErrD3D(v11->pDevice->GetCaps(&halCaps, &refCaps)); | |
3236 v13 = halCaps.dwMinTextureWidth; | |
3237 if ( (unsigned int)halCaps.dwMinTextureWidth >= halCaps.dwMinTextureHeight ) | |
3238 v13 = halCaps.dwMinTextureHeight; | |
3239 v14 = halCaps.dwMaxTextureWidth; | |
3240 uMinDeviceTextureDim = v13; | |
3241 if ( (unsigned int)v14 < halCaps.dwMaxTextureHeight ) | |
3242 v14 = halCaps.dwMaxTextureHeight; | |
3243 uMaxDeviceTextureDim = v14; | |
3244 if ( (unsigned int)v13 < 4 ) | |
3245 uMinDeviceTextureDim = 4; | |
3246 CreateSomeTexture(); | |
3247 v15 = 1; | |
3248 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, true)); | |
3249 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, true)); | |
3250 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, 2u)); | |
3251 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SPECULARENABLE, false)); | |
3252 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, false)); | |
3253 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHATESTENABLE, false)); | |
3254 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1u)); | |
3255 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u)); | |
3256 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u)); | |
3257 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 3u)); | |
3258 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG1, 2u)); | |
3259 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG2, 0)); | |
3260 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAOP, 2u)); | |
3261 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u)); | |
3262 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG2, 0)); | |
3263 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 4u)); | |
3264 } | |
3265 else | |
3266 { | |
3267 CreateDirectDraw(); | |
3268 SetDirectDrawCooperationMode(hWnd, 1); | |
3269 SetDirectDrawDisplayMode(640u, 480u, 16u); | |
3270 CreateDirectDrawPrimarySurface(); | |
3271 v15 = 1; | |
3272 } | |
3273 ddpfPrimareSuface.dwSize = 32; | |
3274 GetTargetPixelFormat(&ddpfPrimareSuface); | |
3275 ParseTargetPixelFormat(); | |
3276 _49EBF1(); | |
3277 if ( pRenderD3D ) | |
3278 { | |
3279 v16 = IsColorKeySupported(pDirectDraw4); | |
3280 v17 = uAcquiredDirect3DDevice == v15; | |
3281 bColorKeySupported = v16; | |
3282 if ( !v17 ) | |
3283 bColorKeySupported = 0; | |
3284 if ( bColorKeySupported ) | |
3285 { | |
3286 memset(&ddsd2, 0, 0x7Cu); | |
3287 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask; | |
3288 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue; | |
3289 v18 = pDirectDraw4; | |
3290 ddsd2.dwSize = 124; | |
3291 ddsd2.dwFlags = 65543; | |
3292 ddsd2.ddsCaps.dwCaps = 2112; | |
3293 ddsd2.dwWidth = 640; | |
3294 ddsd2.dwHeight = 480; | |
3295 ErrD3D(v18->CreateSurface(&ddsd2, &pColorKeySurface4, 0)); | |
3296 pBeforePresentFunction = Present_ColorKey; | |
3297 } | |
3298 else | |
3299 { | |
3300 pTargetSurface = 0; | |
3301 ptr_400E8 = 0; | |
1631 | 3302 v20 = (int *)malloc(0x96020u); |
0 | 3303 ptr_400E8 = v20; |
3304 if ( !v20 | |
3305 || (memset(&pDesc, 0, 0x7Cu), | |
3306 pDesc.dwSize = 124, | |
3307 !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, v15)) ) | |
3308 return 0; | |
3309 pBackBuffer4->Unlock(0); | |
3310 v22 = ptr_400E8 + 4; | |
3311 v23 = (unsigned int)pDesc.lpSurface & 7; | |
3312 LOBYTE(v22) = (unsigned __int8)v22 & 0xF8; | |
3313 uTargetSurfacePitch = 640; | |
3314 pBeforePresentFunction = Present_NoColorKey; | |
3315 v15 = 1; | |
3316 pTargetSurface = (unsigned __int16 *)((char *)v22 + 2 * v23); | |
3317 } | |
3318 field_40110 = v15; | |
3319 } | |
3320 else | |
3321 { | |
3322 pBeforePresentFunction = 0;//nullsub_1; | |
3323 } | |
3324 bWindowMode = 0; | |
3325 pParty->uFlags |= 2u; | |
1666 | 3326 LODWORD(flt_6BE3A0) = 0x3F0CCCCDu; __debugbreak(); // replace with actual float |
0 | 3327 pViewport->_4C02F8(36044); |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1110
diff
changeset
|
3328 return v15 != 0; |
0 | 3329 } |
3330 | |
3331 //----- (004A05F3) -------------------------------------------------------- | |
3332 bool Render::SwitchToWindow(HWND hWnd) | |
3333 { | |
3334 //Render *v2; // esi@1 | |
3335 //void *v3; // eax@2 | |
3336 //RenderD3D *v4; // eax@3 | |
3337 //unsigned int v5; // edx@5 | |
3338 //RenderD3D__DevInfo *v6; // ecx@5 | |
3339 bool v7; // eax@7 | |
3340 //RenderD3D *v8; // ecx@12 | |
3341 unsigned int v9; // eax@12 | |
3342 RenderD3D *v10; // eax@24 | |
3343 HRESULT v11; // eax@24 | |
3344 int v12; // eax@24 | |
3345 int v13; // eax@26 | |
3346 bool v14; // eax@32 | |
3347 char v15; // zf@32 | |
3348 IDirectDraw4 *v16; // eax@35 | |
3349 HRESULT v17; // eax@35 | |
3350 int *v18; // eax@36 | |
3351 int *v19; // edx@38 | |
3352 int v20; // eax@38 | |
3353 unsigned int v21; // ecx@38 | |
3354 int v22; // eax@41 | |
3355 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@24 | |
3356 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@37 | |
3357 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@24 | |
3358 DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@35 | |
3359 //RenderD3D *thisa; // [sp+2FCh] [bp-10h]@2 | |
3360 int v29; // [sp+308h] [bp-4h]@2 | |
3361 | |
3362 pParty->uFlags |= 2u; | |
3363 //v2 = this; | |
3364 flt_6BE3A0 = 0.55000001f; | |
3365 pViewport->_4C02F8(36044); | |
3366 field_40110 = 0; | |
3367 Release(); | |
3368 pColorKeySurface4 = 0; | |
3369 pBackBuffer4 = 0; | |
3370 pFrontBuffer4 = 0; | |
3371 pDirectDraw4 = 0; | |
3372 bColorKeySupported = 0; | |
3373 CreateZBuffer(); | |
3374 if ( bUserDirect3D ) | |
3375 { | |
1631 | 3376 /*v3 = malloc(0x148u); |
0 | 3377 thisa = (RenderD3D *)v3; |
3378 v29 = 0; | |
3379 if ( v3 ) | |
3380 v4 = RenderD3D::RenderD3D((RenderD3D *)v3); | |
3381 else | |
3382 v4 = 0;*/ | |
3383 pRenderD3D = new RenderD3D; | |
3384 //v4 = pRenderD3D; | |
3385 //v5 = uDesiredDirect3DDevice; | |
3386 v29 = -1; | |
3387 //v6 = pRenderD3D->pAvailableDevices; | |
3388 if (pRenderD3D->pAvailableDevices[uDesiredDirect3DDevice].bIsDeviceCompatible && | |
3389 uDesiredDirect3DDevice != 1 ) | |
3390 { | |
3391 v7 = pRenderD3D->CreateDevice(uDesiredDirect3DDevice, 1, hWnd); | |
3392 uAcquiredDirect3DDevice = uDesiredDirect3DDevice; | |
3393 } | |
3394 else | |
3395 { | |
3396 if ( !pRenderD3D->pAvailableDevices[0].bIsDeviceCompatible ) | |
1545 | 3397 Error("There aren't any D3D devices to init."); |
3398 | |
0 | 3399 v7 = pRenderD3D->CreateDevice(0, 1, hWnd); |
3400 uAcquiredDirect3DDevice = 0; | |
3401 } | |
3402 if ( !v7 ) | |
1545 | 3403 Error("D3Drend->Init failed."); |
0 | 3404 |
3405 //v8 = pRenderD3D; | |
3406 pColorKeySurface4 = 0; | |
3407 pBackBuffer4 = pRenderD3D->pBackBuffer; | |
3408 pFrontBuffer4 = pRenderD3D->pFrontBuffer; | |
3409 pDirectDraw4 = pRenderD3D->pHost; | |
3410 v9 = pRenderD3D->GetDeviceCaps(); | |
3411 if ( v9 & 1 ) | |
3412 { | |
3413 if (pRenderD3D) | |
3414 { | |
3415 pRenderD3D->Release(); | |
3416 delete pRenderD3D; | |
3417 } | |
3418 pRenderD3D = 0; | |
3419 pBackBuffer4 = 0; | |
3420 pFrontBuffer4 = 0; | |
3421 pDirectDraw4 = 0; | |
1545 | 3422 Error("Direct3D renderer: The device failed to return capabilities."); |
0 | 3423 } |
3424 if ( v9 & 0x3E ) | |
3425 { | |
3426 if (pRenderD3D) | |
3427 { | |
3428 pRenderD3D->Release(); | |
3429 delete pRenderD3D; | |
3430 } | |
3431 pColorKeySurface4 = 0; | |
3432 pRenderD3D = 0; | |
3433 pBackBuffer4 = 0; | |
3434 pFrontBuffer4 = 0; | |
3435 pDirectDraw4 = 0; | |
1545 | 3436 Error("Direct3D renderer: The device doesn't support the necessary alpha blending modes."); |
0 | 3437 } |
3438 if ( (v9 & 0x80u) != 0 ) | |
3439 { | |
3440 if (pRenderD3D) | |
3441 { | |
3442 pRenderD3D->Release(); | |
3443 delete pRenderD3D; | |
3444 } | |
3445 pRenderD3D = 0; | |
3446 pBackBuffer4 = 0; | |
3447 pFrontBuffer4 = 0; | |
3448 pDirectDraw4 = 0; | |
1545 | 3449 Error("Direct3D renderer: The device doesn't support non-square textures."); |
0 | 3450 } |
3451 LOBYTE(field_10365C) = ~(unsigned __int8)(v9 >> 6) & 1; | |
3452 bRequiredTextureStagesAvailable = CheckTextureStages(); | |
3453 memset(&halCaps, 0, 0xFCu); | |
3454 halCaps.dwSize = 252; | |
3455 memset(&refCaps, 0, 0xFCu); | |
3456 //v10 = v2->pRenderD3D; | |
3457 refCaps.dwSize = 252; | |
3458 ErrD3D(pRenderD3D->pDevice->GetCaps(&halCaps, &refCaps)); | |
3459 v12 = halCaps.dwMinTextureWidth; | |
3460 if ( (unsigned int)halCaps.dwMinTextureWidth >= halCaps.dwMinTextureHeight ) | |
3461 v12 = halCaps.dwMinTextureHeight; | |
3462 uMinDeviceTextureDim = v12; | |
3463 v13 = halCaps.dwMaxTextureWidth; | |
3464 if ( (unsigned int)halCaps.dwMaxTextureWidth < halCaps.dwMaxTextureHeight ) | |
3465 v13 = halCaps.dwMaxTextureHeight; | |
3466 uMaxDeviceTextureDim = v13; | |
3467 CreateSomeTexture(); | |
3468 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, 1u)); | |
3469 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, 1u)); | |
3470 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, 2u)); | |
3471 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SPECULARENABLE, 0)); | |
3472 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, 0)); | |
3473 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1u)); | |
3474 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u)); | |
3475 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u)); | |
3476 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 3u)); | |
3477 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG1, 2u)); | |
3478 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG2, 0)); | |
3479 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAOP, 2u)); | |
3480 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u)); | |
3481 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG2, 0)); | |
3482 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 4u)); | |
3483 } | |
3484 else | |
3485 { | |
3486 CreateDirectDraw(); | |
3487 SetDirectDrawCooperationMode(hWnd, 0); | |
3488 field_4004C = 1; | |
3489 CreateFrontBuffer(); | |
3490 CreateClipper(hWnd); | |
3491 CreateBackBuffer(); | |
3492 field_40030 = 0; | |
3493 field_18_locked_pitch = 0; | |
3494 } | |
3495 ddpfPrimareSuface.dwSize = 32; | |
3496 GetTargetPixelFormat(&ddpfPrimareSuface); | |
3497 ParseTargetPixelFormat(); | |
3498 _49EBF1(); | |
3499 if ( !pRenderD3D ) | |
3500 { | |
3501 pBeforePresentFunction = 0;//nullsub_1; | |
3502 goto LABEL_47; | |
3503 } | |
3504 v14 = IsColorKeySupported(pDirectDraw4); | |
3505 v15 = uAcquiredDirect3DDevice == 1; | |
3506 bColorKeySupported = v14; | |
3507 if ( !v15 ) | |
3508 bColorKeySupported = 0; | |
3509 if ( bColorKeySupported ) | |
3510 { | |
3511 memset(&ddsd2, 0, 0x7Cu); | |
3512 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask; | |
3513 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue; | |
3514 v16 = pDirectDraw4; | |
3515 ddsd2.dwSize = 124; | |
3516 ddsd2.dwFlags = 65543; | |
3517 ddsd2.ddsCaps.dwCaps = 2112; | |
3518 ddsd2.dwWidth = 640; | |
3519 ddsd2.dwHeight = 480; | |
3520 ErrD3D(v16->CreateSurface(&ddsd2, &pColorKeySurface4, 0)); | |
3521 pBeforePresentFunction = Present_ColorKey; | |
3522 LABEL_45: | |
3523 field_40110 = 1; | |
3524 LABEL_47: | |
3525 bWindowMode = 1; | |
3526 hWnd = hWnd; | |
3527 return 0; | |
3528 } | |
3529 pTargetSurface = 0; | |
3530 ptr_400E8 = 0; | |
3531 v18 = (int *)new char[0x96020]; | |
3532 memset(v18, -1, 0x96020); | |
3533 ptr_400E8 = v18; | |
3534 if ( v18 ) | |
3535 { | |
3536 memset(&pDesc, 0, 0x7Cu); | |
3537 pDesc.dwSize = 124; | |
168 | 3538 if ( pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, DDLOCK_WAIT) ) |
0 | 3539 { |
3540 pRenderer->pBackBuffer4->Unlock(0); | |
3541 v19 = ptr_400E8; | |
3542 v20 = (unsigned int)pDesc.lpSurface & 7; | |
3543 v21 = (unsigned int)ptr_400E8 & 7; | |
3544 if ( v21 == v20 ) | |
3545 { | |
3546 pTargetSurface = (unsigned __int16 *)v19; | |
3547 } | |
3548 else | |
3549 { | |
3550 if ( (signed int)v21 >= v20 ) | |
3551 v22 = (int)((char *)v19 + 2 * (v21 - v20) + 16); | |
3552 else | |
3553 v22 = (int)((char *)v19 + 2 * (v20 - v21) + 16); | |
3554 pTargetSurface = (unsigned __int16 *)v22; | |
3555 } | |
3556 uTargetSurfacePitch = 640; | |
3557 pBeforePresentFunction = Present_NoColorKey; | |
3558 goto LABEL_45; | |
3559 } | |
3560 } | |
3561 return 0; | |
3562 } | |
3563 | |
3564 //----- (004A0BEE) -------------------------------------------------------- | |
709 | 3565 char Render::RasterLine2D(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW, unsigned __int16 uColor) |
0 | 3566 { |
3567 int v6; // edi@1 | |
3568 int v7; // edx@5 | |
3569 unsigned int v8; // ebx@5 | |
3570 int v9; // eax@7 | |
3571 unsigned int v10; // ecx@9 | |
3572 unsigned int v11; // esi@13 | |
3573 int v12; // eax@17 | |
3574 int v13; // eax@21 | |
3575 Render *v14; // edi@21 | |
3576 int v15; // eax@25 | |
3577 int v16; // eax@27 | |
3578 signed int v17; // eax@28 | |
3579 signed int v18; // edi@30 | |
3580 signed __int64 v19; // qax@41 | |
3581 int v20; // edi@41 | |
3582 unsigned int v21; // edi@46 | |
3583 int v22; // esi@47 | |
3584 int v23; // ebx@47 | |
3585 signed int v24; // edx@50 | |
3586 signed int v25; // esi@52 | |
3587 unsigned __int16 *v26; // ecx@52 | |
3588 int v27; // ebx@54 | |
3589 int v28; // edi@55 | |
3590 int v29; // edx@55 | |
3591 int v30; // ebx@60 | |
3592 int v31; // edx@61 | |
3593 int v32; // edi@61 | |
3594 int v34; // [sp+Ch] [bp-10h]@3 | |
3595 Render *v35; // [sp+10h] [bp-Ch]@1 | |
3596 __int64 v36; // [sp+14h] [bp-8h]@1 | |
3597 signed int v37; // [sp+18h] [bp-4h]@28 | |
3598 unsigned int uXa; // [sp+24h] [bp+8h]@49 | |
3599 unsigned int uYa; // [sp+28h] [bp+Ch]@28 | |
3600 int uYb; // [sp+28h] [bp+Ch]@47 | |
3601 int uZa; // [sp+2Ch] [bp+10h]@38 | |
3602 | |
3603 v36 = 0i64; | |
709 | 3604 v6 = this->raster_clip_x; |
0 | 3605 v35 = this; |
3606 if ( (signed int)uX < v6 ) | |
3607 HIDWORD(v36) = 8; | |
709 | 3608 v34 = this->raster_clip_z; |
3609 if ( (signed int)uX > this->raster_clip_z ) | |
0 | 3610 HIDWORD(v36) |= 4u; |
709 | 3611 v7 = this->raster_clip_y; |
0 | 3612 v8 = uY; |
3613 if ( (signed int)uY < v7 ) | |
3614 HIDWORD(v36) |= 2u; | |
709 | 3615 v9 = this->raster_clip_w; |
0 | 3616 if ( (signed int)uY > v9 ) |
3617 HIDWORD(v36) |= 1u; | |
3618 v10 = uZ; | |
3619 if ( (signed int)uZ < v6 ) | |
3620 LODWORD(v36) = 8; | |
3621 if ( (signed int)uZ > v34 ) | |
3622 LODWORD(v36) = v36 | 4; | |
3623 v11 = uW; | |
3624 if ( (signed int)uW < v7 ) | |
3625 LODWORD(v36) = v36 | 2; | |
3626 if ( (signed int)uW > v9 ) | |
3627 LODWORD(v36) = v36 | 1; | |
3628 LOBYTE(v12) = v36; | |
3629 if ( (unsigned int)v36 & HIDWORD(v36) ) | |
3630 return v12; | |
3631 if ( !v36 ) | |
3632 { | |
3633 LABEL_46: | |
3634 v21 = pRenderer->uTargetSurfacePitch; | |
3635 if ( pRenderer->uTargetSurfacePitch ) | |
3636 { | |
3637 v12 = uX + v8 * pRenderer->uTargetSurfacePitch; | |
3638 v22 = v11 - v8; | |
3639 v23 = v22; | |
3640 uYb = v22; | |
3641 if ( v22 < 0 ) | |
3642 { | |
3643 v23 = -v22; | |
3644 uYb = -v22; | |
3645 v21 = -pRenderer->uTargetSurfacePitch; | |
3646 } | |
3647 uXa = v10 - uX; | |
3648 if ( (uXa & 0x80000000u) == 0 ) | |
3649 { | |
3650 v24 = 1; | |
3651 } | |
3652 else | |
3653 { | |
3654 uXa = -uXa; | |
3655 v24 = -1; | |
3656 } | |
3657 v25 = 0; | |
3658 v26 = v35->pTargetSurface; | |
3659 if ( v26 ) | |
3660 { | |
3661 if ( (signed int)uXa <= v23 ) | |
3662 { | |
3663 v30 = v23 + 1; | |
3664 if ( v30 > 0 ) | |
3665 { | |
3666 v31 = 2 * v24; | |
3667 v32 = 2 * v21; | |
3668 v12 = (int)&v26[v12]; | |
3669 do | |
3670 { | |
3671 v25 += uXa; | |
3672 *(short *)v12 = uColor; | |
3673 v12 += v32; | |
3674 if ( v25 > 0 ) | |
3675 { | |
3676 v25 -= uYb; | |
3677 v12 += v31; | |
3678 } | |
3679 --v30; | |
3680 } | |
3681 while ( v30 ); | |
3682 } | |
3683 } | |
3684 else | |
3685 { | |
3686 v27 = uXa + 1; | |
3687 if ( (signed int)(uXa + 1) > 0 ) | |
3688 { | |
3689 v28 = 2 * v21; | |
3690 v29 = 2 * v24; | |
3691 v12 = (int)&v26[v12]; | |
3692 do | |
3693 { | |
3694 v25 += uYb; | |
3695 *(short *)v12 = uColor; | |
3696 v12 += v29; | |
3697 if ( v25 > (signed int)uXa ) | |
3698 { | |
3699 v25 -= uXa; | |
3700 v12 += v28; | |
3701 } | |
3702 --v27; | |
3703 } | |
3704 while ( v27 ); | |
3705 } | |
3706 } | |
3707 } | |
3708 } | |
3709 return v12; | |
3710 } | |
3711 if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 8 ) | |
3712 { | |
3713 if ( BYTE4(v36) & 8 ) | |
3714 { | |
3715 v13 = (signed int)((uW - uY) * (v6 - uX)) / (signed int)(uZ - uX); | |
3716 v14 = v35; | |
3717 v8 = v13 + uY; | |
709 | 3718 uX = v35->raster_clip_x; |
0 | 3719 goto LABEL_24; |
3720 } | |
3721 v10 = v6; | |
3722 v11 = (signed int)((uY - uW) * (v6 - uZ)) / (signed int)(uX - uZ) + uW; | |
3723 } | |
3724 v14 = v35; | |
3725 LABEL_24: | |
3726 if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 4 ) | |
3727 { | |
709 | 3728 v15 = v14->raster_clip_z; |
0 | 3729 if ( BYTE4(v36) & 4 ) |
3730 { | |
3731 v14 = v35; | |
3732 v8 += (signed int)((v11 - v8) * (v15 - uX)) / (signed int)(v10 - uX); | |
709 | 3733 uX = v35->raster_clip_z; |
0 | 3734 } |
3735 else | |
3736 { | |
3737 v16 = (signed int)((v8 - v11) * (v15 - v10)) / (signed int)(uX - v10); | |
709 | 3738 v10 = v14->raster_clip_z; |
0 | 3739 v11 += v16; |
3740 } | |
3741 } | |
709 | 3742 v17 = v14->raster_clip_y; |
0 | 3743 v37 = 0; |
709 | 3744 uYa = v14->raster_clip_y; |
0 | 3745 if ( (signed int)v8 < v17 ) |
3746 v37 = 2; | |
709 | 3747 v18 = v14->raster_clip_w; |
0 | 3748 if ( (signed int)v8 > v18 ) |
3749 v37 |= 1u; | |
3750 if ( (signed int)v11 >= v17 ) | |
3751 v12 = 0; | |
3752 else | |
3753 v12 = 2; | |
3754 if ( (signed int)v11 > v18 ) | |
3755 LOBYTE(v12) = v12 | 1; | |
3756 if ( !(v12 & v37) ) | |
3757 { | |
3758 v12 ^= v37; | |
3759 uZa = v12; | |
3760 if ( v12 & 2 ) | |
3761 { | |
3762 if ( v37 & 2 ) | |
3763 { | |
3764 uX += (signed int)((v10 - uX) * (uYa - v8)) / (signed int)(v11 - v8); | |
3765 LOBYTE(v12) = (char)v35; | |
709 | 3766 v8 = v35->raster_clip_y; |
0 | 3767 } |
3768 else | |
3769 { | |
3770 v19 = (signed int)((uX - v10) * (uYa - v11)); | |
3771 v20 = v8 - v11; | |
3772 v11 = uYa; | |
3773 v12 = v19 / v20; | |
3774 v10 += v12; | |
3775 } | |
3776 } | |
3777 if ( uZa & 1 ) | |
3778 { | |
3779 if ( v37 & 1 ) | |
3780 { | |
709 | 3781 uX += (signed int)((v10 - uX) * (v35->raster_clip_w - v8)) / (signed int)(v11 - v8); |
0 | 3782 LOBYTE(v12) = (char)v35; |
709 | 3783 v8 = v35->raster_clip_w; |
0 | 3784 } |
3785 else | |
3786 { | |
709 | 3787 v12 = (signed int)((uX - v10) * (v35->raster_clip_w - v11)) / (signed int)(v8 - v11); |
3788 v11 = v35->raster_clip_w; | |
0 | 3789 v10 += v12; |
3790 } | |
3791 } | |
3792 goto LABEL_46; | |
3793 } | |
3794 return v12; | |
3795 } | |
3796 | |
3797 //----- (004A0E80) -------------------------------------------------------- | |
3798 void Render::ClearZBuffer(int a2, int a3) | |
3799 { | |
3800 memset32(this->pActiveZBuffer, -65536, 0x4B000u); | |
3801 } | |
3802 | |
3803 //----- (004A0E97) -------------------------------------------------------- | |
709 | 3804 void Render::SetRasterClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW) |
3805 { | |
3806 this->raster_clip_x = uX; | |
3807 this->raster_clip_y = uY; | |
3808 this->raster_clip_z = uZ; | |
3809 this->raster_clip_w = uW; | |
0 | 3810 } |
3811 | |
3812 //----- (004A0EB6) -------------------------------------------------------- | |
3813 void Render::ParseTargetPixelFormat() | |
3814 { | |
3815 Render *v1; // eax@1 | |
3816 signed int v2; // ecx@1 | |
3817 DWORD uRedMask; // edx@1 | |
3818 unsigned int uGreenMask; // esi@5 | |
3819 signed int v5; // ecx@5 | |
3820 unsigned int uBlueMask; // edx@9 | |
3821 signed int v7; // ecx@9 | |
3822 unsigned int v8; // ecx@13 | |
3823 | |
3824 v1 = this; | |
3825 v2 = 0; | |
3826 uRedMask = v1->ddpfPrimareSuface.dwRBitMask; | |
3827 v1->uTargetBBits = 0; | |
3828 v1->uTargetGBits = 0; | |
3829 v1->uTargetRBits = 0; | |
3830 do | |
3831 { | |
3832 if ( (1 << v2) & uRedMask ) | |
3833 ++v1->uTargetRBits; | |
3834 ++v2; | |
3835 } | |
3836 while ( v2 < 16 ); | |
3837 uGreenMask = v1->ddpfPrimareSuface.dwGBitMask; | |
3838 v5 = 0; | |
3839 do | |
3840 { | |
3841 if ( (1 << v5) & uGreenMask ) | |
3842 ++v1->uTargetGBits; | |
3843 ++v5; | |
3844 } | |
3845 while ( v5 < 16 ); | |
3846 uBlueMask = v1->ddpfPrimareSuface.dwBBitMask; | |
3847 v7 = 0; | |
3848 do | |
3849 { | |
3850 if ( (1 << v7) & uBlueMask ) | |
3851 ++v1->uTargetBBits; | |
3852 ++v7; | |
3853 } | |
3854 while ( v7 < 16 ); | |
3855 v8 = v1->ddpfPrimareSuface.dwRBitMask; | |
3856 v1->uTargetGMask = uGreenMask; | |
3857 v1->uTargetRMask = v8; | |
3858 v1->uTargetBMask = uBlueMask; | |
3859 } | |
3860 | |
3861 //----- (004A0F40) -------------------------------------------------------- | |
3862 bool Render::LockSurface_DDraw4(IDirectDrawSurface4 *pSurface, DDSURFACEDESC2 *pDesc, unsigned int uLockFlags) | |
3863 { | |
3864 IDirectDrawSurface4 *v4; // esi@1 | |
168 | 3865 HRESULT result; // eax@1 |
0 | 3866 HRESULT v6; // eax@4 |
3867 int v7; // [sp-8h] [bp-14h]@10 | |
3868 unsigned int v8; // [sp-4h] [bp-10h]@10 | |
3869 char v9; // [sp+Bh] [bp-1h]@1 | |
3870 | |
3871 v4 = pSurface; | |
3872 v9 = 1; | |
3873 result = pSurface->Lock(0, pDesc, uLockFlags, 0); | |
3874 if ( result == DDERR_SURFACELOST ) | |
3875 { | |
3876 v6 = v4->Restore(); | |
3877 if ( v6 ) | |
3878 { | |
3879 if ( v6 != DDERR_IMPLICITLYCREATED ) | |
3880 { | |
3881 LABEL_20: | |
3882 v9 = 0; | |
3883 result = (bool)memset(pDesc, 0, 4u); | |
3884 goto LABEL_21; | |
3885 } | |
3886 pRenderer->pFrontBuffer4->Restore(); | |
3887 v4->Restore(); | |
3888 } | |
3889 result = v4->Lock(0, pDesc, DDLOCK_WAIT, 0); | |
3890 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY ) | |
3891 goto LABEL_20; | |
3892 ErrD3D(result); | |
3893 if ( result ) | |
3894 { | |
3895 //v8 = 0; | |
3896 //v7 = 2161; | |
3897 LABEL_19: | |
3898 //CheckHRESULT((CheckHRESULT_stru0 *)&pSurface, result, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp", v7, v8); | |
3899 goto LABEL_20; | |
3900 } | |
3901 if ( pRenderer->pRenderD3D ) | |
3902 pRenderD3D->HandleLostResources(); | |
3903 result = pRenderer->pDirectDraw4->RestoreAllSurfaces(); | |
3904 } | |
3905 else | |
3906 { | |
3907 if ( result ) | |
3908 { | |
3909 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY ) | |
3910 goto LABEL_20; | |
3911 ErrD3D(result); | |
3912 //v8 = 0; | |
3913 //v7 = 2199; | |
3914 //goto LABEL_19; | |
3915 } | |
3916 } | |
3917 LABEL_21: | |
3918 LOBYTE(result) = v9; | |
3919 return result; | |
3920 } | |
3921 | |
3922 //----- (004A1032) -------------------------------------------------------- | |
3923 bool Render::LockSurface_DDraw2(IDirectDrawSurface2 *pSurface, DDSURFACEDESC *pDesc, unsigned int uLockFlags) | |
3924 { | |
3925 IDirectDrawSurface2 *v4; // esi@1 | |
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1164
diff
changeset
|
3926 HRESULT v5; // eax@1 |
0 | 3927 HRESULT v6; // eax@2 |
3928 int v7; // [sp-8h] [bp-10h]@8 | |
3929 unsigned int v8; // [sp-4h] [bp-Ch]@8 | |
3930 | |
3931 v4 = pSurface; | |
3932 v5 = pSurface->Lock( | |
3933 0, | |
3934 pDesc, | |
3935 uLockFlags, | |
3936 0); | |
3937 BYTE3(pSurface) = 1; | |
3938 if ( v5 == DDERR_SURFACELOST ) | |
3939 { | |
3940 v6 = v4->Restore(); | |
3941 if ( !v6 ) | |
3942 goto LABEL_5; | |
3943 if ( v6 == DDERR_IMPLICITLYCREATED ) | |
3944 { | |
3945 pRenderer->pFrontBuffer2->Restore(); | |
3946 v4->Restore(); | |
3947 LABEL_5: | |
3948 v5 = v4->Lock(0, pDesc, 1u, 0) != 0; | |
3949 if ( v5 == DDERR_INVALIDRECT || v5 == DDERR_SURFACEBUSY ) | |
3950 goto LABEL_14; | |
3951 if ( !v5 ) | |
3952 return true; | |
3953 ErrD3D(v5); | |
3954 //v8 = 0; | |
3955 //v7 = 2247; | |
3956 goto LABEL_13; | |
3957 } | |
3958 else | |
3959 { | |
3960 pDesc->dwSize = 0; | |
3961 return false; | |
3962 } | |
3963 } | |
3964 else | |
3965 { | |
3966 if ( !v5 ) | |
3967 return true; | |
3968 if ( v5 != DDERR_INVALIDRECT && v5 != DDERR_SURFACEBUSY ) | |
3969 { | |
3970 //v8 = 0; | |
3971 //v7 = 2269; | |
3972 ErrD3D(v5); | |
3973 pDesc->dwSize = 0; | |
3974 return false; | |
3975 LABEL_13: | |
3976 //CheckHRESULT((CheckHRESULT_stru0 *)&pSurface, v5, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp", v7, v8); | |
3977 goto LABEL_14; | |
3978 } | |
3979 } | |
3980 LABEL_14: | |
3981 return true; | |
3982 } | |
3983 | |
3984 //----- (004A10E4) -------------------------------------------------------- | |
3985 void Render::CreateDirectDraw() | |
3986 { | |
3987 Render *v1; // edi@1 | |
3988 HRESULT v2; // eax@1 | |
3989 HRESULT v3; // eax@5 | |
3990 int v6; // [sp-Ch] [bp-20h]@3 | |
3991 unsigned int v9; // [sp+0h] [bp-14h]@0 | |
3992 IDirectDraw *lpDD; // [sp+10h] [bp-4h]@1 | |
3993 | |
3994 v1 = this; | |
3995 ErrD3D(DirectDrawCreate(0, &lpDD, 0)); | |
3996 | |
3997 pDirectDraw2 = nullptr; | |
3998 pDirectDraw4 = nullptr; | |
3999 | |
4000 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4001 ErrD3D(lpDD->QueryInterface(IID_IDirectDraw4, (void **)&pDirectDraw4)); | |
4002 else | |
4003 ErrD3D(lpDD->QueryInterface(IID_IDirectDraw2, (void **)&pDirectDraw2)); | |
4004 | |
4005 lpDD->Release(); | |
4006 lpDD = nullptr; | |
4007 } | |
4008 | |
4009 //----- (004A1169) -------------------------------------------------------- | |
4010 void Render::SetDirectDrawCooperationMode(HWND hWnd, bool bFullscreen) | |
4011 { | |
4012 DWORD flags; // eax@1 | |
4013 IDirectDraw *v4; // ecx@3 | |
4014 HRESULT v5; // eax@5 | |
4015 int v6; // [sp-8h] [bp-8h]@3 | |
4016 unsigned int v7; // [sp-4h] [bp-4h]@3 | |
4017 | |
4018 flags = bFullscreen ? DDSCL_NORMAL | DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN : | |
4019 DDSCL_NORMAL; | |
4020 | |
4021 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4022 ErrD3D(pDirectDraw4->SetCooperativeLevel(hWnd, flags | DDSCL_MULTITHREADED)); | |
4023 else | |
4024 ErrD3D(pDirectDraw2->SetCooperativeLevel(hWnd, flags)); | |
4025 } | |
4026 | |
4027 //----- (004A11C6) -------------------------------------------------------- | |
4028 void Render::SetDirectDrawDisplayMode(unsigned int uWidth, unsigned int uHeight, unsigned int uBPP) | |
4029 { | |
4030 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4031 ErrD3D(pDirectDraw4->SetDisplayMode(uWidth, uHeight, uBPP, 0, 0)); | |
4032 else | |
4033 ErrD3D(pDirectDraw2->SetDisplayMode(uWidth, uHeight, uBPP, 0, 0)); | |
4034 } | |
4035 | |
4036 //----- (004A121C) -------------------------------------------------------- | |
4037 void Render::CreateFrontBuffer() | |
4038 { | |
4039 Render *v1; // esi@1 | |
4040 IDirectDraw *pDD; // eax@3 | |
4041 IDirectDrawSurface **pOutSurf; // esi@3 | |
4042 struct _DDSURFACEDESC *v4; // edx@3 | |
4043 HRESULT v5; // eax@5 | |
4044 int v6; // [sp-8h] [bp-8Ch]@3 | |
4045 unsigned int v7; // [sp-4h] [bp-88h]@3 | |
4046 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3 | |
4047 | |
4048 v1 = this; | |
4049 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4050 { | |
4051 memset(&a2, 0, 0x7Cu); | |
4052 pDD = (IDirectDraw *)v1->pDirectDraw4; | |
4053 a2.dwSize = 124; | |
4054 a2.dwFlags = 1; | |
4055 v7 = 0; | |
4056 a2.ddsCaps.dwCaps = 512; | |
4057 v6 = 2357; | |
4058 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer4; | |
4059 v4 = (struct _DDSURFACEDESC *)&a2; | |
4060 } | |
4061 else | |
4062 { | |
4063 memset(&a2.lPitch, 0, 0x6Cu); // DDSURFACEDESC here | |
4064 pDD = (IDirectDraw *)v1->pDirectDraw2; | |
4065 a2.lPitch = 108; | |
4066 a2.dwBackBufferCount = 1; | |
4067 v7 = 0; | |
4068 a2.dwTextureStage = 512; | |
4069 v6 = 2346; | |
4070 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer2; | |
4071 v4 = (struct _DDSURFACEDESC *)&a2.lPitch; | |
4072 } | |
4073 ErrD3D(pDD->CreateSurface(v4, pOutSurf, 0)); | |
4074 } | |
4075 | |
4076 //----- (004A12CD) -------------------------------------------------------- | |
4077 void Render::CreateBackBuffer() | |
4078 { | |
4079 Render *v1; // esi@1 | |
4080 IDirectDraw *v2; // eax@3 | |
4081 IDirectDrawSurface **ppBackBuffer; // esi@3 | |
4082 struct _DDSURFACEDESC *v4; // edx@3 | |
4083 HRESULT v5; // eax@5 | |
4084 int v6; // [sp-8h] [bp-8Ch]@3 | |
4085 unsigned int v7; // [sp-4h] [bp-88h]@3 | |
4086 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3 | |
4087 | |
4088 v1 = this; | |
4089 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4090 { | |
4091 memset(&a2, 0, 0x7Cu); | |
4092 v2 = (IDirectDraw *)v1->pDirectDraw4; | |
4093 a2.dwSize = 124; | |
4094 a2.dwFlags = 7; | |
4095 v7 = 0; | |
4096 a2.ddsCaps.dwCaps = 2112; | |
4097 a2.dwWidth = 640; | |
4098 a2.dwHeight = 480; | |
4099 v6 = 2387; | |
4100 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4; | |
4101 v4 = (struct _DDSURFACEDESC *)&a2; | |
4102 } | |
4103 else | |
4104 { | |
4105 memset(&a2.lPitch, 0, 0x6Cu); | |
4106 v2 = (IDirectDraw *)v1->pDirectDraw2; | |
4107 a2.lPitch = 108; | |
4108 a2.dwBackBufferCount = 7; | |
4109 v7 = 0; | |
4110 a2.dwTextureStage = 2112; | |
4111 a2.dwAlphaBitDepth = 640; | |
4112 a2.dwMipMapCount = 480; | |
4113 v6 = 2374; | |
4114 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2; | |
4115 v4 = (struct _DDSURFACEDESC *)&a2.lPitch; // //DDSURFACEDESC here fo ddraw2 | |
4116 } | |
4117 ErrD3D(v2->CreateSurface(v4, ppBackBuffer, 0)); | |
4118 } | |
4119 | |
4120 //----- (004A139A) -------------------------------------------------------- | |
4121 void Render::CreateDirectDrawPrimarySurface() | |
4122 { | |
4123 Render *v1; // esi@1 | |
4124 int v2; // ebx@3 | |
4125 IDirectDraw2 *v3; // eax@3 | |
4126 HRESULT v4; // eax@3 | |
4127 IDirectDrawSurface *pFrontBuffer; // eax@3 | |
4128 DDSCAPS2 *v6; // edx@3 | |
4129 IDirectDraw4 *v7; // eax@4 | |
4130 HRESULT v8; // eax@4 | |
4131 int v9; // ST14_4@5 | |
4132 IDirectDrawSurface *v10; // ST10_4@5 | |
4133 HRESULT v11; // eax@5 | |
4134 IDirectDrawSurface **ppBackBuffer; // [sp-4h] [bp-A4h]@3 | |
4135 const char *v13; // [sp+0h] [bp-A0h]@0 | |
4136 int v14; // [sp+4h] [bp-9Ch]@0 | |
4137 unsigned int v15; // [sp+8h] [bp-98h]@0 | |
4138 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-94h]@3 | |
4139 DDSCAPS2 v17; // [sp+88h] [bp-18h]@4 | |
4140 int a4; // [sp+98h] [bp-8h]@3 | |
4141 | |
4142 v1 = this; | |
4143 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4144 { | |
4145 v2 = 0; | |
4146 this->field_4004C = 1; | |
4147 memset(&ddsd2, 0, 0x7Cu); | |
4148 v7 = v1->pDirectDraw4; | |
4149 ddsd2.dwBackBufferCount = 1; | |
4150 ddsd2.dwSize = 0x7Cu; | |
4151 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT; | |
4152 ddsd2.ddsCaps.dwCaps = DDSCAPS_COMPLEX | DDSCAPS_FLIP | DDSCAPS_3DDEVICE | DDSCAPS_PRIMARYSURFACE; | |
4153 ErrD3D(v7->CreateSurface( | |
4154 &ddsd2, | |
4155 &pFrontBuffer4, | |
4156 0)); | |
4157 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer4; | |
4158 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4; | |
4159 } | |
4160 else | |
4161 { | |
4162 v2 = 0; | |
4163 this->field_4004C = 1; | |
4164 | |
4165 DDSURFACEDESC ddsd; | |
4166 memset(&ddsd, 0, sizeof(DDSURFACEDESC)); | |
4167 | |
4168 ddsd.lpSurface = (LPVOID)1; | |
4169 ddsd.lPitch = 108; | |
4170 ddsd.dwBackBufferCount = 33; | |
4171 ddsd.ddsCaps.dwCaps = 8728; | |
4172 ErrD3D(pDirectDraw2->CreateSurface( | |
4173 &ddsd, | |
4174 (IDirectDrawSurface **)&pFrontBuffer2, | |
4175 0)); | |
4176 | |
4177 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer2; | |
4178 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2; | |
4179 } | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
4180 __debugbreak(); // warning C4700: uninitialized local variable 'v6' used |
0 | 4181 v9 = (int)v6; |
4182 v10 = pFrontBuffer; // BUG | |
4183 | |
4184 v17.dwCaps = 4; | |
4185 ErrD3D(pFrontBuffer->GetAttachedSurface((DDSCAPS *)&v17, ppBackBuffer));// hr = this->pFrontBuffer->GetAttachedSurface(&ddsCaps2, ppBackBuffer); | |
4186 //CheckHRESULT(&thisa, v11, (const char *)v10, v9, (unsigned int)ppBackBuffer); | |
4187 v1->field_40030 = v2; | |
4188 v1->field_18_locked_pitch = v2; | |
4189 } | |
4190 | |
4191 //----- (004A14F4) -------------------------------------------------------- | |
4192 void Render::CreateClipper(HWND a2) | |
4193 { | |
4194 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4195 { | |
4196 ErrD3D(pDirectDraw4->CreateClipper(0, &pDDrawClipper, 0)); | |
4197 ErrD3D(pDDrawClipper->SetHWnd(0, a2)); | |
4198 ErrD3D(pFrontBuffer4->SetClipper(pDDrawClipper)); | |
4199 } | |
4200 else | |
4201 { | |
4202 ErrD3D(pDirectDraw2->CreateClipper(0, &pDDrawClipper, 0)); | |
4203 ErrD3D(pDDrawClipper->SetHWnd(0, a2)); | |
4204 } | |
4205 } | |
4206 | |
4207 //----- (004A15D8) -------------------------------------------------------- | |
4208 void Render::GetTargetPixelFormat(DDPIXELFORMAT *pOut) | |
4209 { | |
4210 IDirectDrawSurface *v2; // eax@3 | |
4211 | |
4212 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4213 v2 = (IDirectDrawSurface *)this->pFrontBuffer4; | |
4214 else | |
4215 v2 = (IDirectDrawSurface *)this->pFrontBuffer2; | |
4216 v2->GetPixelFormat(pOut); | |
4217 } | |
4218 | |
4219 //----- (004A1605) -------------------------------------------------------- | |
4220 void Render::LockRenderSurface(void **pOutSurfacePtr, unsigned int *pOutPixelsPerRow) | |
4221 { | |
4222 Render *v3; // esi@1 | |
4223 signed int v4; // eax@3 | |
4224 | |
4225 v3 = this; | |
4226 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4227 { | |
4228 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3 | |
4229 memset(&pDesc, 0, 0x7Cu); | |
4230 pDesc.dwSize = 124; | |
168 | 4231 LockSurface_DDraw4(v3->pBackBuffer4, &pDesc, DDLOCK_WAIT); |
0 | 4232 *pOutSurfacePtr = pDesc.lpSurface; |
4233 v4 = pDesc.lPitch; | |
4234 } | |
4235 else | |
4236 { | |
4237 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3 | |
4238 memset(&pDesc.lPitch, 0, 0x6Cu); | |
4239 pDesc.lPitch = 108; | |
4240 LockSurface_DDraw2(v3->pBackBuffer2, &pDesc, 1u); | |
4241 *pOutSurfacePtr = (void *)pDesc.lpSurface; | |
4242 v4 = pDesc.dwReserved; | |
4243 } | |
4244 *pOutPixelsPerRow = v4 >> 1; | |
4245 } | |
4246 | |
4247 //----- (004A169E) -------------------------------------------------------- | |
4248 bool Render::UsingDirect3D() | |
4249 { | |
4250 return bUserDirect3D == 0; | |
4251 } | |
4252 | |
4253 //----- (004A16E1) -------------------------------------------------------- | |
4254 void Render::UnlockBackBuffer() | |
4255 { | |
4256 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4257 ErrD3D(pBackBuffer4->Unlock(0)); | |
4258 else | |
4259 ErrD3D(pBackBuffer2->Unlock(0)); | |
4260 } | |
4261 | |
4262 //----- (004A172E) -------------------------------------------------------- | |
4263 void Render::LockFrontBuffer(void **pOutSurface, unsigned int *pOutPixelsPerRow) | |
4264 { | |
4265 Render *v3; // esi@1 | |
4266 signed int v4; // eax@3 | |
4267 | |
4268 v3 = this; | |
4269 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4270 { | |
4271 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3 | |
4272 memset(&pDesc, 0, 0x7Cu); | |
4273 pDesc.dwSize = 124; | |
168 | 4274 LockSurface_DDraw4(v3->pFrontBuffer4, &pDesc, DDLOCK_WAIT); |
0 | 4275 *pOutSurface = pDesc.lpSurface; |
4276 v4 = pDesc.lPitch; | |
4277 } | |
4278 else | |
4279 { | |
4280 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3 | |
4281 memset(&pDesc.lPitch, 0, 0x6Cu); | |
4282 pDesc.lPitch = 108; | |
4283 LockSurface_DDraw2(v3->pFrontBuffer2, &pDesc, 1u); | |
4284 *pOutSurface = (void *)pDesc.lpSurface; | |
4285 v4 = pDesc.dwReserved; | |
4286 } | |
4287 *pOutPixelsPerRow = v4 >> 1; | |
4288 } | |
4289 | |
4290 //----- (004A17C7) -------------------------------------------------------- | |
4291 void Render::UnlockFrontBuffer() | |
4292 { | |
4293 IDirectDrawSurface *pFront; // eax@3 | |
4294 HRESULT v2; // eax@5 | |
4295 signed int v3; // [sp-8h] [bp-Ch]@3 | |
4296 int v4; // [sp-4h] [bp-8h]@3 | |
4297 | |
4298 auto a5 = this; | |
4299 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4300 { | |
4301 pFront = (IDirectDrawSurface *)a5->pFrontBuffer4; | |
4302 v4 = 0; | |
4303 v3 = 2615; | |
4304 } | |
4305 else | |
4306 { | |
4307 pFront = (IDirectDrawSurface *)a5->pFrontBuffer2; | |
4308 v4 = 0; | |
4309 v3 = 2611; | |
4310 } | |
4311 ErrD3D(pFront->Unlock(0)); | |
4312 } | |
4313 | |
4314 //----- (004A1814) -------------------------------------------------------- | |
4315 void Render::RestoreFrontBuffer() | |
4316 { | |
4317 IDirectDrawSurface **v1; // esi@2 | |
4318 | |
4319 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT | |
4320 || (v1 = (IDirectDrawSurface **)&this->pFrontBuffer2, pVersion->pVersionInfo.dwMajorVersion >= 5u) ) | |
4321 v1 = (IDirectDrawSurface **)&this->pFrontBuffer4; | |
4322 if ( (*v1)->IsLost() == DDERR_SURFACELOST ) | |
4323 (*v1)->Restore(); | |
4324 } | |
4325 | |
4326 //----- (004A184C) -------------------------------------------------------- | |
4327 HRESULT Render::_4A184C() | |
4328 { | |
4329 IDirectDrawSurface **pBack; // esi@2 | |
4330 HRESULT result; // eax@4 | |
4331 | |
4332 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT | |
4333 || (pBack = (IDirectDrawSurface **)&this->pBackBuffer2, pVersion->pVersionInfo.dwMajorVersion != 4) ) | |
4334 pBack = (IDirectDrawSurface **)&this->pBackBuffer4; | |
4335 result = (*pBack)->IsLost(); | |
4336 if ( result == DDERR_SURFACELOST ) | |
4337 result = (*pBack)->Restore(); | |
4338 return result; | |
4339 } | |
4340 | |
4341 //----- (004A1884) -------------------------------------------------------- | |
4342 void Render::PresentRect(RECT *a2, RECT *a3) | |
4343 { | |
4344 IDirectDrawSurface *pFront; // eax@3 | |
4345 HRESULT v4; // eax@5 | |
4346 IDirectDrawSurface *pBack; // [sp-1Ch] [bp-1Ch]@3 | |
4347 struct tagRECT *v6; // [sp-18h] [bp-18h]@3 | |
4348 DWORD v7; // [sp-14h] [bp-14h]@3 | |
4349 DDBLTFX *v8; // [sp-10h] [bp-10h]@3 | |
4350 const char *v9; // [sp-Ch] [bp-Ch]@3 | |
4351 int v10; // [sp-8h] [bp-8h]@3 | |
4352 unsigned int v11; // [sp-4h] [bp-4h]@3 | |
4353 | |
4354 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4355 { | |
4356 v11 = 0; | |
4357 pFront = (IDirectDrawSurface *)this->pFrontBuffer4; | |
4358 v10 = 2657; | |
4359 v9 = "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp"; | |
4360 v8 = 0; | |
4361 v7 = DDBLT_WAIT; | |
4362 v6 = a3; | |
4363 pBack = (IDirectDrawSurface *)this->pBackBuffer4; | |
4364 } | |
4365 else | |
4366 { | |
4367 v11 = 0; | |
4368 pFront = (IDirectDrawSurface *)this->pFrontBuffer2; | |
4369 v10 = 2653; | |
4370 v9 = "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp"; | |
4371 v8 = 0; | |
4372 v7 = DDBLT_WAIT; | |
4373 v6 = a3; | |
4374 pBack = (IDirectDrawSurface *)this->pBackBuffer2; | |
4375 } | |
4376 ErrD3D(pFront->Blt(a2, pBack, v6, v7, v8)); | |
4377 } | |
4378 | |
4379 //----- (004A18F5) -------------------------------------------------------- | |
4380 void Render::BltToFront(RECT *pDstRect, IDirectDrawSurface *pSrcSurface, RECT *pSrcRect, unsigned int uBltFlags) | |
4381 { | |
4382 IDirectDrawSurface *pFront; // eax@3 | |
4383 HRESULT v6; // eax@5 | |
4384 int v7; // [sp-8h] [bp-8h]@3 | |
4385 unsigned int v8; // [sp-4h] [bp-4h]@3 | |
4386 | |
4387 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion >= 5u ) | |
4388 ErrD3D(pFrontBuffer4->Blt(pDstRect, (IDirectDrawSurface4 *)pSrcSurface, pSrcRect, uBltFlags, nullptr)); | |
4389 else | |
4390 ErrD3D(pFrontBuffer2->Blt(pDstRect, (IDirectDrawSurface2 *)pSrcSurface, pSrcRect, uBltFlags, nullptr)); | |
4391 } | |
4392 | |
4393 //----- (004A194A) -------------------------------------------------------- | |
4394 void Render::BltBackToFontFast(int a2, int a3, RECT *a4) | |
4395 { | |
4396 IDirectDrawSurface *pFront; // eax@3 | |
4397 IDirectDrawSurface *pBack; // [sp-Ch] [bp-Ch]@3 | |
4398 | |
4399 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4400 { | |
4401 pFront = (IDirectDrawSurface *)this->pFrontBuffer4; | |
4402 pBack = (IDirectDrawSurface *)this->pBackBuffer4; | |
4403 } | |
4404 else | |
4405 { | |
4406 pFront = (IDirectDrawSurface *)this->pFrontBuffer2; | |
4407 pBack = (IDirectDrawSurface *)this->pBackBuffer2; | |
4408 } | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4409 pFront->BltFast(0, 0, pBack, a4, DDBLTFAST_WAIT); |
0 | 4410 } |
4411 | |
4412 //----- (004A1B22) -------------------------------------------------------- | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4413 unsigned int Render::Billboard_ProbablyAddToListAndSortByZOrder(float z) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4414 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4415 //unsigned int v2; // ebx@1 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4416 //double v4; // st7@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4417 //unsigned int v5; // esi@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4418 //int v6; // ecx@5 |
0 | 4419 unsigned int v7; // edx@6 |
4420 char *v8; // ecx@12 | |
4421 void *v9; // edi@16 | |
4422 unsigned int v10; // eax@16 | |
4423 void *v11; // edi@21 | |
4424 unsigned int v12; // eax@21 | |
4425 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4426 //v2 = uNumBillboardsToDraw; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4427 if (uNumBillboardsToDraw >= 999 ) |
0 | 4428 return 0; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4429 if (!uNumBillboardsToDraw) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4430 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4431 uNumBillboardsToDraw = 1; |
0 | 4432 return 0; |
4433 } | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4434 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4435 //v4 = *(float *)&a1; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4436 //v5 = pRenderer->uNumBillboardsToDraw; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4437 //v6 = 0; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4438 for (int left = 0, right = uNumBillboardsToDraw; left < right; ) // binsearch |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4439 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4440 v7 = left + (right - left) / 2; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4441 if (z <= pRenderer->pBillboardRenderListD3D[v7].z_order) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4442 right = v7; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4443 else |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4444 left = v7 + 1; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4445 } |
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 v8 = (char *)&pRenderer->pBillboardRenderListD3D[v7].z_order; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4448 if (z > *(float *)v8 ) |
0 | 4449 { |
4450 if ( v7 == pRenderer->uNumBillboardsToDraw - 1 ) | |
4451 { | |
4452 v7 = pRenderer->uNumBillboardsToDraw; | |
4453 } | |
4454 else | |
4455 { | |
4456 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 ) | |
4457 { | |
4458 v9 = &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw]; | |
4459 v10 = pRenderer->uNumBillboardsToDraw - v7; | |
4460 do | |
4461 { | |
4462 memcpy(v9, (char *)v9 - 156, 0x9Cu); | |
4463 v9 = (char *)v9 - 156; | |
4464 --v10; | |
4465 } | |
4466 while ( v10 ); | |
4467 } | |
4468 ++v7; | |
4469 } | |
717 | 4470 //LABEL_23: |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4471 uNumBillboardsToDraw++; |
0 | 4472 return v7; |
4473 } | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4474 if (z <= *(float *)v8 ) |
0 | 4475 { |
4476 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 ) | |
4477 { | |
4478 v11 = &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw]; | |
4479 v12 = pRenderer->uNumBillboardsToDraw - v7; | |
4480 do | |
4481 { | |
4482 memcpy(v11, (char *)v11 - 156, 0x9Cu); | |
4483 v11 = (char *)v11 - 156; | |
4484 --v12; | |
4485 } | |
4486 while ( v12 ); | |
4487 } | |
717 | 4488 //goto LABEL_23; |
4489 uNumBillboardsToDraw++; | |
4490 return v7; | |
0 | 4491 } |
4492 return v7; | |
4493 } | |
4494 | |
4495 //----- (004A1E9D) -------------------------------------------------------- | |
4496 unsigned int Render::GetBillboardDrawListSize() | |
4497 { | |
4498 return pRenderer->uNumBillboardsToDraw; | |
4499 } | |
4500 | |
4501 //----- (004A1EA3) -------------------------------------------------------- | |
4502 unsigned int Render::GetParentBillboardID(unsigned int uBillboardID) | |
4503 { | |
4504 return pRenderer->pBillboardRenderListD3D[uBillboardID].uParentBillboardID; | |
4505 } | |
4506 | |
4507 //----- (004A1EB6) -------------------------------------------------------- | |
4508 void Render::BeginSceneD3D() | |
4509 { | |
4510 if (!uNumD3DSceneBegins++) | |
4511 { | |
4512 if (pRenderD3D) | |
4513 { | |
4514 pRenderD3D->ClearTarget(true, 0x00F08020, true, 1.0); | |
4515 pRenderer->uNumBillboardsToDraw = 0; | |
4516 pRenderD3D->pDevice->BeginScene(); | |
1390 | 4517 |
0 | 4518 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) |
4519 uFogColor = GetLevelFogColor(); | |
4520 else | |
4521 uFogColor = 0; | |
4522 | |
4523 if ( uFogColor & 0xFF000000 ) | |
4524 { | |
4525 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 1); | |
4526 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, uFogColor & 0xFFFFFF); | |
4527 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0); | |
4528 bUsingSpecular = true; | |
4529 } | |
4530 else | |
4531 { | |
4532 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 0); | |
4533 bUsingSpecular = 0; | |
4534 } | |
4535 } | |
4536 else | |
4537 { | |
4538 LockRenderSurface((void **)&pTargetSurface, &uTargetSurfacePitch); | |
4539 if (pTargetSurface) | |
4540 field_18_locked_pitch = uTargetSurfacePitch; | |
4541 else | |
4542 --uNumD3DSceneBegins; | |
4543 } | |
4544 } | |
4545 } | |
4546 | |
4547 //----- (004A1FE1) -------------------------------------------------------- | |
4548 void Render::DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene() | |
4549 { | |
4550 --uNumD3DSceneBegins; | |
4551 if (uNumD3DSceneBegins) | |
4552 return; | |
4553 | |
4554 if (pRenderD3D) | |
4555 { | |
4556 pGame->draw_debug_outlines(); | |
161 | 4557 DoRenderBillboards_D3D(); |
0 | 4558 pGame->pStru6Instance->RenderSpecialEffects(); |
4559 pRenderD3D->pDevice->EndScene(); | |
4560 } | |
4561 else | |
4562 pGame->pStru6Instance->RenderSpecialEffects(); | |
4563 } | |
4564 | |
4565 //----- (004A2031) -------------------------------------------------------- | |
349 | 4566 unsigned int Render::GetActorTintColor(float a2, int tint, int a4, int a5, RenderBillboard *a6) |
4567 { | |
1117
ad89d1905b48
* stru6_stru1_indoor_sw_billboard::sub_47802A() cleaned, fireball working
zipi
parents:
1113
diff
changeset
|
4568 // __debugbreak(); // should not fire outside decal builder |
349 | 4569 return ::GetActorTintColor(tint, a4, a2, a5, a6); |
0 | 4570 } |
4571 | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
4572 /*void Render::DrawTerrainPolygon_new(Polygon *a3, IDirect3DTexture2 *pTexture)//new function |
86 | 4573 { |
4574 int v5; // ebx@1 | |
4575 int v6; // edi@1 | |
4576 int v8; // eax@7 | |
4577 float v9; // eax@12 | |
4578 float *v10; // esi@12 | |
4579 float v11; // ecx@14 | |
4580 double v12; // st7@14 | |
4581 double v13; // st7@14 | |
4582 double v14; // st7@14 | |
4583 signed int v15; // eax@14 | |
4584 int v16; // eax@15 | |
4585 float v17; // ST48_4@15 | |
4586 char v18; // zf@17 | |
4587 int v19; // eax@18 | |
4588 int v20; // eax@18 | |
4589 int v21; // edx@20 | |
4590 signed int v22; // ecx@20 | |
4591 int v23; // eax@20 | |
4592 const char *v24; // ST4C_4@20 | |
4593 unsigned int v25; // ST50_4@20 | |
4594 int v26; // ST54_4@20 | |
4595 int v27; // eax@20 | |
4596 _UNKNOWN *v28; // eax@21 | |
4597 int v29; // ecx@23 | |
4598 int v30; // eax@23 | |
4599 int v31; // eax@23 | |
4600 int v32; // eax@24 | |
4601 int v33; // eax@25 | |
4602 int v34; // eax@25 | |
4603 int v35; // eax@25 | |
4604 int v36; // eax@25 | |
4605 signed int v37; // ecx@26 | |
4606 int v38; // eax@26 | |
4607 _UNKNOWN *v39; // eax@27 | |
4608 int v40; // edx@28 | |
4609 int v41; // eax@29 | |
4610 int v42; // eax@29 | |
4611 int v43; // eax@29 | |
4612 int v44; // eax@29 | |
4613 unsigned int v46; // eax@29 | |
4614 int v47; // eax@30 | |
4615 int v48; // eax@30 | |
4616 int v49; // eax@30 | |
4617 double v52; // st6@35 | |
4618 const char *v55; // [sp+4Ch] [bp-1Ch]@20 | |
4619 int v57; // [sp+5Ch] [bp-Ch]@3 | |
4620 signed int v59; // [sp+60h] [bp-8h]@12 | |
4621 int v61; // [sp+64h] [bp-4h]@4 | |
4622 int i; | |
4623 | |
4624 v6 = (int)this; | |
4625 v5 = 0; | |
4626 if (!this->uNumD3DSceneBegins) | |
4627 return; | |
4628 | |
4629 | |
4630 | |
4631 | |
186 | 4632 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP); |
86 | 4633 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE); |
4634 if (this->bUsingSpecular) | |
4635 { | |
186 | 4636 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE); |
4637 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE); | |
4638 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO); | |
86 | 4639 } |
4640 | |
4641 pVertices[0].pos.x = array_50AC10[0].vWorldViewProjX; | |
4642 pVertices[0].pos.y = array_50AC10[0].vWorldViewProjY; | |
1637 | 4643 pVertices[0].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[0].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4644 pVertices[0].rhw = 1.0 / (array_50AC10[0].vWorldViewPosition.x + 0.0000001000000011686097); |
4645 pVertices[0].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0); | |
4646 pVertices[0].specular = 0; | |
4647 pVertices[0].texcoord.x = array_50AC10[0].u; | |
4648 pVertices[0].texcoord.y = array_50AC10[0].v; | |
4649 | |
4650 pVertices[1].pos.x = array_50AC10[3].vWorldViewProjX; | |
4651 pVertices[1].pos.y = array_50AC10[3].vWorldViewProjY; | |
1637 | 4652 pVertices[1].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[3].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4653 pVertices[1].rhw = 1.0 / (array_50AC10[3].vWorldViewPosition.x + 0.0000001000000011686097); |
4654 pVertices[1].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[3].vWorldViewPosition.x, 0, 0); | |
4655 pVertices[1].specular = 0; | |
4656 pVertices[1].texcoord.x = array_50AC10[3].u; | |
4657 pVertices[1].texcoord.y = array_50AC10[3].v; | |
4658 | |
4659 pVertices[2].pos.x = array_50AC10[1].vWorldViewProjX; | |
4660 pVertices[2].pos.y = array_50AC10[1].vWorldViewProjY; | |
1637 | 4661 pVertices[2].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[1].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4662 pVertices[2].rhw = 1.0 / (array_50AC10[1].vWorldViewPosition.x + 0.0000001000000011686097); |
4663 pVertices[2].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[1].vWorldViewPosition.x, 0, 0); | |
4664 pVertices[2].specular = 0; | |
4665 pVertices[2].texcoord.x = array_50AC10[1].u; | |
4666 pVertices[2].texcoord.y = array_50AC10[1].v; | |
4667 | |
4668 memcpy(pVertices + 3, pVertices + 2, sizeof(RenderVertexD3D3)); | |
4669 memcpy(pVertices + 4, pVertices + 1, sizeof(RenderVertexD3D3)); | |
4670 | |
4671 pVertices[5].pos.x = array_50AC10[2].vWorldViewProjX; | |
4672 pVertices[5].pos.y = array_50AC10[2].vWorldViewProjY; | |
1637 | 4673 pVertices[5].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[2].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4674 pVertices[5].rhw = 1.0 / (array_50AC10[2].vWorldViewPosition.x + 0.0000001000000011686097); |
4675 pVertices[5].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[2].vWorldViewPosition.x, 0, 0); | |
4676 pVertices[5].specular = 0; | |
4677 pVertices[5].texcoord.x = array_50AC10[2].u; | |
4678 pVertices[5].texcoord.y = array_50AC10[2].v; | |
4679 | |
4680 | |
4681 this->pRenderD3D->pDevice->SetTexture(0, pTexture); | |
4682 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLELIST, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, pVertices, 6, D3DDP_DONOTLIGHT); | |
4683 | |
186 | 4684 }*/ |
4685 | |
0 | 4686 //----- (004A26BC) -------------------------------------------------------- |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
4687 void Render::DrawTerrainPolygon(unsigned int uNumVertices, struct Polygon *a4, IDirect3DTexture2 *a5, bool transparent, bool clampAtTextureBorders) |
186 | 4688 { |
4689 //RenderVertexSoft *pVertices; // esi@0 | |
4690 //int v7; // edi@1 | |
0 | 4691 unsigned int v8; // ebx@1 |
4692 LightmapBuilder *v9; // esi@3 | |
4693 unsigned int v10; // edx@3 | |
4694 int v11; // eax@5 | |
4695 int v12; // eax@11 | |
4696 char *v13; // esi@11 | |
4697 double v14; // st7@13 | |
4698 double v15; // st7@13 | |
4699 signed int v16; // eax@13 | |
4700 int v17; // ecx@13 | |
4701 double v18; // st7@13 | |
4702 float v19; // ST78_4@14 | |
4703 int v20; // eax@14 | |
4704 char v21; // zf@16 | |
4705 HRESULT v22; // eax@17 | |
4706 HRESULT v23; // eax@17 | |
4707 HRESULT v24; // eax@19 | |
4708 HRESULT v25; // eax@19 | |
4709 unsigned int v26; // ecx@19 | |
4710 char *v27; // eax@20 | |
4711 HRESULT v28; // eax@22 | |
4712 HRESULT v29; // eax@22 | |
4713 HRESULT v30; // eax@23 | |
4714 HRESULT v31; // eax@24 | |
4715 HRESULT v32; // eax@24 | |
4716 HRESULT v33; // eax@24 | |
4717 HRESULT v34; // eax@24 | |
4718 HRESULT v35; // eax@25 | |
4719 HRESULT v36; // eax@25 | |
4720 unsigned int v37; // ecx@25 | |
4721 char *v38; // eax@26 | |
4722 int v39; // edx@27 | |
4723 HRESULT v40; // eax@28 | |
4724 HRESULT v41; // eax@28 | |
4725 HRESULT v42; // eax@28 | |
4726 HRESULT v43; // eax@28 | |
4727 //IDirect3DDevice3Vtbl *v44; // ebx@28 | |
4728 unsigned int v45; // eax@28 | |
4729 HRESULT v46; // eax@29 | |
4730 HRESULT v47; // eax@29 | |
4731 HRESULT v48; // eax@29 | |
186 | 4732 //IDirect3DDevice3 *v49; // eax@35 |
0 | 4733 //IDirect3DDevice3Vtbl *v50; // ecx@35 |
4734 int v51; // eax@40 | |
4735 char *v52; // esi@40 | |
4736 double v53; // st7@42 | |
4737 double v54; // st7@42 | |
4738 signed int v55; // eax@42 | |
4739 int v56; // ecx@42 | |
4740 double v57; // st7@42 | |
4741 float v58; // ST7C_4@43 | |
4742 int v59; // eax@43 | |
186 | 4743 //signed int v60; // [sp+78h] [bp-14h]@31 |
4744 //RenderVertexSoft *v61; // [sp+7Ch] [bp-10h]@3 | |
0 | 4745 const char *v62; // [sp+80h] [bp-Ch]@0 |
4746 const char *v63; // [sp+80h] [bp-Ch]@19 | |
4747 int v64; // [sp+84h] [bp-8h]@0 | |
4748 LightmapBuilder *v65; // [sp+88h] [bp-4h]@3 | |
4749 unsigned int v66; // [sp+88h] [bp-4h]@40 | |
4750 unsigned int a6a; // [sp+A0h] [bp+14h]@11 | |
186 | 4751 int a7; |
4752 | |
4753 //v7 = (int)this; | |
0 | 4754 v8 = 0; |
186 | 4755 if (!this->uNumD3DSceneBegins) |
75 | 4756 return; |
4757 if ( uNumVertices < 3) | |
4758 return; | |
4759 | |
186 | 4760 //v61 = pVertices; |
4761 | |
75 | 4762 /* v9 = pGame->pLightmapBuilder; |
0 | 4763 v65 = v9; |
75 | 4764 v10 = v9->std__vector_000004_size;*/ |
1394 | 4765 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01) |
0 | 4766 { |
638 | 4767 v11 = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0); |
1394 | 4768 pGame->pLightmapBuilder->DrawLightmaps(/*v11, 0*/); |
0 | 4769 } |
4770 else | |
4771 { | |
186 | 4772 if (transparent || !pGame->pLightmapBuilder->std__vector_000004_size || |
75 | 4773 byte_4D864C && pGame->uFlags & 2 ) |
4774 { | |
186 | 4775 if (clampAtTextureBorders) |
4776 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP); | |
0 | 4777 else |
186 | 4778 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP); |
4779 | |
4780 if (transparent || this->bUsingSpecular) | |
4781 { | |
4782 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE); | |
4783 if (transparent) | |
0 | 4784 { |
186 | 4785 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA); |
4786 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA); | |
4787 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO); | |
4788 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE); | |
0 | 4789 } |
4790 else | |
4791 { | |
186 | 4792 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE); |
4793 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO); | |
0 | 4794 } |
186 | 4795 } |
1073 | 4796 |
4797 for (uint i = 0; i < uNumVertices; ++i) | |
4798 { | |
4799 | |
4800 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
4801 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 4802 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 4803 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
4804 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
4805 if ( this->bUsingSpecular ) | |
0 | 4806 { |
1073 | 4807 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 4808 } |
1073 | 4809 else |
4810 { | |
4811 d3d_vertex_buffer[i].specular = 0; | |
4812 } | |
4813 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
4814 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
4815 } | |
4816 | |
4817 this->pRenderD3D->pDevice->SetTexture(0, a5); | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4818 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, d3d_vertex_buffer, uNumVertices, 16); |
186 | 4819 if (transparent) |
4820 { | |
4821 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
4822 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
4823 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 4824 } |
4825 } | |
4826 else | |
4827 { | |
1073 | 4828 for (uint i = 0; i < uNumVertices; ++i) |
4829 { | |
4830 | |
4831 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
4832 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 4833 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 4834 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
4835 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
4836 if ( this->bUsingSpecular ) | |
0 | 4837 { |
1073 | 4838 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 4839 } |
1073 | 4840 else |
4841 { | |
4842 d3d_vertex_buffer[i].specular = 0; | |
4843 } | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
4844 __debugbreak(); // warning C4700: uninitialized local variable 'v20' used |
1073 | 4845 d3d_vertex_buffer[i].specular = v20; |
4846 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
4847 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
4848 } | |
186 | 4849 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); |
4850 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
4851 if (pRenderer->bUsingSpecular) | |
4852 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); | |
0 | 4853 |
4854 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0)); | |
186 | 4855 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
0 | 4856 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4857 d3d_vertex_buffer, |
0 | 4858 uNumVertices, |
4859 16)); | |
4860 //v63 = (const char *)v7->pRenderD3D->pDevice; | |
186 | 4861 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); |
0 | 4862 //(*(void (**)(void))(*(int *)v63 + 88))(); |
1394 | 4863 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/); |
1073 | 4864 for (uint i = 0; i < uNumVertices; ++i) |
4865 { | |
4866 d3d_vertex_buffer[i].diffuse = -1; | |
4867 } | |
0 | 4868 ErrD3D(pRenderD3D->pDevice->SetTexture(0, a5)); |
186 | 4869 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 4870 if ( !pRenderer->bUsingSpecular ) |
4871 { | |
186 | 4872 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
4873 } | |
4874 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
4875 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO)); | |
4876 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR)); | |
4877 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
0 | 4878 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4879 d3d_vertex_buffer, |
0 | 4880 uNumVertices, |
4881 16)); | |
4882 if ( pRenderer->bUsingSpecular ) | |
4883 { | |
186 | 4884 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
0 | 4885 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0)); |
1073 | 4886 for (uint i = 0; i < uNumVertices; ++i) |
4887 { | |
4888 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000; | |
4889 d3d_vertex_buffer[i].specular = 0; | |
4890 } | |
4891 | |
75 | 4892 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));//problem |
186 | 4893 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA)); |
4894 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA)); | |
4895 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
0 | 4896 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4897 d3d_vertex_buffer, |
0 | 4898 uNumVertices, |
4899 16)); | |
186 | 4900 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 4901 //v44 = pRenderer->pRenderD3D->pDevice; |
4902 v45 = GetLevelFogColor(); | |
4903 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, v45 & 0xFFFFFF)); | |
4904 v8 = 0; | |
4905 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
4906 } | |
186 | 4907 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
4908 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 4909 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v8)); |
4910 } | |
4911 } | |
186 | 4912 |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
4913 //if (pIndoorCamera->flags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES || pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES) |
1642 | 4914 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
|
4915 pGame->pIndoorCameraD3D->debug_outline_d3d(d3d_vertex_buffer, uNumVertices, 0x00FFFFFF, 0.0); |
0 | 4916 } |
4917 // 4A26BC: could not find valid save-restore pair for esi | |
4918 // 4D864C: using guessed type char byte_4D864C; | |
4919 | |
4920 //----- (004A2DA3) -------------------------------------------------------- | |
1427 | 4921 void Render::DrawSkyPolygon(unsigned int uNumVertices, struct Polygon *pSkyPolygon, IDirect3DTexture2 *pTexture) |
852 | 4922 { |
67 | 4923 int v7; // eax@7 |
4924 | |
4925 if ( !this->uNumD3DSceneBegins ) | |
4926 return; | |
4927 if ( uNumVertices >= 3 ) | |
4928 { | |
186 | 4929 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP); |
67 | 4930 if ( this->bUsingSpecular ) |
4931 { | |
186 | 4932 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE); |
4933 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE); | |
4934 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO); | |
67 | 4935 } |
1427 | 4936 for ( uint i = 0; i < uNumVertices; ++i ) |
67 | 4937 { |
4938 pVertices[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
4939 pVertices[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
4940 pVertices[i].pos.z = 0.99989998; | |
168 | 4941 pVertices[i].rhw = array_50AC10[i]._rhw; |
67 | 4942 |
840 | 4943 pVertices[i].diffuse = ::GetActorTintColor(31, 0, array_50AC10[i].vWorldViewPosition.x, 1, 0); |
67 | 4944 v7 = 0; |
4945 if (this->bUsingSpecular) | |
1427 | 4946 v7 = sub_47C3D7_get_fog_related_stuff(0, 1, array_50AC10[i].vWorldViewPosition.x); |
67 | 4947 pVertices[i].specular = v7; |
4948 pVertices[i].texcoord.x = array_50AC10[i].u; | |
4949 pVertices[i].texcoord.y = array_50AC10[i].v; | |
4950 } | |
4951 pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture); | |
4952 pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
840 | 4953 pVertices, uNumVertices, D3DDP_DONOTUPDATEEXTENTS | D3DDP_DONOTLIGHT); |
0 | 4954 } |
4955 } | |
4956 | |
4957 //----- (004A2ED5) -------------------------------------------------------- | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
4958 void Render::_4A2ED5(signed int a2, struct Polygon *a3, IDirect3DTexture2 *pHwTex) |
0 | 4959 { |
4960 signed int v4; // edi@2 | |
4961 int v5; // eax@3 | |
4962 int v6; // edx@5 | |
1072 | 4963 RenderVertexD3D3 *v7; // eax@6 |
4964 RenderVertexSoft *v8; // ecx@6 | |
4965 //double v9; // st6@7 | |
4966 //int v10; // ebx@7 | |
4967 //int v11; // ebx@7 | |
0 | 4968 |
4969 if ( this->uNumD3DSceneBegins ) | |
4970 { | |
4971 v4 = a2; | |
4972 if ( a2 >= 3 ) | |
4973 { | |
186 | 4974 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
638 | 4975 v5 = 31 - (a3->dimming_level & 0x1F); |
4976 if ( v5 < pOutdoor->max_terrain_dimming_level ) | |
4977 v5 = pOutdoor->max_terrain_dimming_level; | |
0 | 4978 v6 = 8 * v5 | ((8 * v5 | (v5 << 11)) << 8); |
1072 | 4979 for (uint i = 0; i < a2; ++i) |
4980 { | |
4981 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; | |
4982 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
4983 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / array_507D30[i].vWorldViewPosition.y; | |
4984 d3d_vertex_buffer[i].rhw = array_507D30[i]._rhw; | |
4985 d3d_vertex_buffer[i].diffuse = v6; | |
4986 d3d_vertex_buffer[i].specular = 0; | |
4987 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u; | |
4988 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v; | |
4989 } | |
4990 | |
0 | 4991 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex)); |
186 | 4992 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
0 | 4993 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4994 d3d_vertex_buffer, |
0 | 4995 a2, |
4996 28)); | |
4997 } | |
4998 } | |
4999 } | |
5000 | |
1390 | 5001 |
5002 //----- (00479A53) -------------------------------------------------------- | |
5003 void Render::DrawIndoorPolygonNoLight(unsigned int uNumVertices, unsigned int uFaceID) | |
5004 { | |
5005 BLVFace *pFace; // esi@1 | |
1644 | 5006 //unsigned int v3; // edi@1 |
5007 //PolygonType v4; // al@1 | |
1390 | 5008 double v5; // st7@3 |
5009 signed __int64 v6; // qax@3 | |
1644 | 5010 //PolygonType v7; // cl@3 |
5011 //int v8; // esi@7 | |
5012 //int v9; // eax@7 | |
5013 //unsigned int v10; // eax@7 | |
5014 //double v11; // st6@7 | |
1390 | 5015 int v12; // edx@7 |
5016 int v13; // eax@7 | |
1644 | 5017 //char *v14; // esi@8 |
1390 | 5018 void *v15; // ecx@9 |
1644 | 5019 //int v16; // eax@9 |
1390 | 5020 int v17; // edi@9 |
5021 double v18; // st7@9 | |
5022 signed int v19; // ebx@9 | |
5023 void *v20; // ecx@9 | |
5024 int v21; // ebx@11 | |
5025 int v22; // eax@14 | |
5026 signed __int64 v23; // qtt@16 | |
5027 double v24; // st7@16 | |
5028 unsigned __int8 v25; // sf@16 | |
5029 unsigned __int8 v26; // of@16 | |
5030 Render *v27; // ecx@17 | |
5031 double v28; // st7@20 | |
5032 char *v29; // ebx@20 | |
5033 char *v30; // edx@20 | |
5034 unsigned __int8 v31; // c0@21 | |
5035 unsigned __int8 v32; // c3@21 | |
5036 double v33; // st6@23 | |
5037 char *v34; // esi@30 | |
5038 const void *v35; // ecx@31 | |
5039 int v36; // eax@31 | |
5040 const void *v37; // edi@31 | |
5041 signed __int64 v38; // qax@31 | |
5042 int v39; // ecx@31 | |
5043 int v40; // ebx@33 | |
5044 int v41; // eax@36 | |
5045 signed __int64 v42; // qtt@39 | |
5046 int v43; // eax@39 | |
5047 char v44; // zf@39 | |
5048 double v45; // st7@39 | |
5049 double v46; // st7@39 | |
5050 unsigned int v47; // edx@40 | |
5051 double v48; // st7@41 | |
5052 RenderVertexSoft *v49; // ebx@41 | |
5053 void *v50; // edi@43 | |
5054 double v51; // st7@46 | |
5055 RenderVertexSoft *v52; // edx@46 | |
5056 void *v53; // edi@48 | |
1644 | 5057 //char *v54; // ebx@52 |
5058 //unsigned int v55; // eax@53 | |
5059 //unsigned int v56; // eax@55 | |
5060 //int v57; // ST10_4@55 | |
5061 //Texture *v58; // eax@55 | |
1390 | 5062 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
|
5063 struct Polygon *v60; // [sp+0h] [bp-174h]@17 |
1390 | 5064 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
|
5065 struct Polygon v62; // [sp+14h] [bp-160h]@6 |
1390 | 5066 unsigned int v63; // [sp+120h] [bp-54h]@7 |
1644 | 5067 //double v64; // [sp+124h] [bp-50h]@7 |
1390 | 5068 unsigned int v65; // [sp+128h] [bp-4Ch]@1 |
5069 unsigned int v66; // [sp+12Ch] [bp-48h]@7 | |
5070 float v67; // [sp+130h] [bp-44h]@7 | |
1644 | 5071 //__int64 v68; // [sp+134h] [bp-40h]@3 |
1390 | 5072 __int64 v69; // [sp+13Ch] [bp-38h]@3 |
5073 int v70; // [sp+144h] [bp-30h]@3 | |
5074 int X; // [sp+148h] [bp-2Ch]@9 | |
5075 int v72; // [sp+14Ch] [bp-28h]@7 | |
5076 float v73; // [sp+150h] [bp-24h]@16 | |
5077 unsigned int v74; // [sp+154h] [bp-20h]@3 | |
5078 RenderVertexSoft *v75; // [sp+158h] [bp-1Ch]@3 | |
5079 float v76; // [sp+15Ch] [bp-18h]@9 | |
5080 int v77; // [sp+160h] [bp-14h]@9 | |
5081 int v78; // [sp+164h] [bp-10h]@7 | |
5082 void *v79; // [sp+168h] [bp-Ch]@9 | |
5083 float v80; // [sp+16Ch] [bp-8h]@3 | |
5084 const void *v81; // [sp+170h] [bp-4h]@7 | |
5085 | |
5086 pFace = &pIndoor->pFaces[uFaceID]; | |
1644 | 5087 if (pFace->uPolygonType == POLYGON_InBetweenFloorAndWall || pFace->uPolygonType == POLYGON_Floor) |
5088 { | |
5089 int v69 = (GetTickCount() / 32) - pGame->pIndoorCameraD3D->vPartyPos.x; | |
5090 int v55 = (GetTickCount() / 32) + pGame->pIndoorCameraD3D->vPartyPos.y; | |
5091 for (uint i = 0; i < uNumVertices; ++i) | |
5092 { | |
5093 array_507D30[i].u = (v69 + array_507D30[i].u) * 0.25f; | |
5094 array_507D30[i].v = (v55 + array_507D30[i].v) * 0.25f; | |
5095 } | |
5096 pRenderer->DrawIndoorPolygon(uNumVertices, pFace, pBitmaps_LOD->pHardwareTextures[pFace->uBitmapID], pFace->GetTexture(), PID(OBJECT_BModel, uFaceID), -1, 0); | |
1390 | 5097 return; |
5098 } | |
1644 | 5099 |
1390 | 5100 *(float *)&v74 = (double)pBLVRenderParams->uViewportCenterY; |
1641 | 5101 v70 = (signed __int64)((double)(pBLVRenderParams->fov_rad_fixpoint * pGame->pIndoorCameraD3D->vPartyPos.z) |
5102 / (((double)pBLVRenderParams->fov_rad_fixpoint + 16192.0) | |
1390 | 5103 * 65536.0) |
5104 + *(float *)&v74); | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
5105 v5 = (double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064; |
1390 | 5106 *(float *)&v75 = v5; |
5107 v6 = (signed __int64)(*(float *)&v74 | |
1641 | 5108 - (double)pBLVRenderParams->fov_rad_fixpoint |
1644 | 5109 / ((cos(v5) * 16192.0 + 0.0000001) |
1390 | 5110 * 65535.0) |
1644 | 5111 * (sin(*(float *)&v75) * -16192.0 - (double)pGame->pIndoorCameraD3D->vPartyPos.z)); |
5112 | |
5113 | |
1544 | 5114 stru_8019C8._48653D_frustum_blv(65536, 0, 0, 0, 65536, 0); |
1427 | 5115 v62.Create_48607B(&stru_8019C8); |
1390 | 5116 v62.uTileBitmapID = pFace->uBitmapID; |
1644 | 5117 |
5118 v62.pTexture = pBitmaps_LOD->GetTexture(v62.uTileBitmapID); | |
1390 | 5119 if ( !v62.pTexture ) |
5120 return; | |
1644 | 5121 |
1390 | 5122 v62.dimming_level = 0; |
1644 | 5123 v62.uNumVertices = uNumVertices; |
1390 | 5124 v62.v_18.y = 0; |
1644 | 5125 v62.v_18.x = -stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationX + 16); |
5126 v62.v_18.z = -stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationX + 16); | |
5127 memcpy(&array_507D30[uNumVertices], array_507D30, sizeof(array_507D30[uNumVertices])); | |
5128 v62.field_24 = 0x2000000; | |
5129 | |
5130 extern float _calc_fov(int viewport_width, int angle_degree); | |
5131 //v64 = (double)(signed int)(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX) * 0.5; | |
5132 //v72 = 65536 / (signed int)(signed __int64)(v64 / tan(0.6457717418670654) + 0.5); | |
5133 v72 = 65536.0f / _calc_fov(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX, 74); | |
1390 | 5134 v12 = v62.pTexture->uWidthMinus1; |
5135 v13 = v62.pTexture->uHeightMinus1; | |
1644 | 5136 v67 = 1.0 / (double)v62.pTexture->uTextureWidth; |
1390 | 5137 v63 = 224 * pMiscTimer->uTotalGameTimeElapsed & v13; |
5138 v66 = 224 * pMiscTimer->uTotalGameTimeElapsed & v12; | |
5139 v78 = 0; | |
5140 v81 = 0; | |
1644 | 5141 float v68 = 1.0 / (double)v62.pTexture->uTextureHeight; |
1390 | 5142 if ( (signed int)v62.uNumVertices <= 0 ) |
5143 { | |
5144 LABEL_17: | |
5145 v61 = pBitmaps_LOD->pHardwareTextures[(signed __int16)v62.uTileBitmapID]; | |
5146 v27 = pRenderer; | |
5147 v60 = &v62; | |
5148 v59 = v62.uNumVertices; | |
5149 goto LABEL_18; | |
5150 } | |
1644 | 5151 |
5152 //v14 = (char *)&array_507D30[0].vWorldViewProjY; | |
5153 int _507D30_idx = 0; | |
1390 | 5154 while ( 2 ) |
5155 { | |
1644 | 5156 v15 = (void *)(v72 * (v70 - (int)array_507D30[_507D30_idx].vWorldViewProjY)); |
5157 v77 = (unsigned __int64)(v62.ptr_38->field_14 * (signed __int64)(signed int)v15) >> 16; | |
5158 v74 = v77 + v62.ptr_38->field_C; | |
1390 | 5159 v77 = (int)v15; |
1644 | 5160 v77 = (unsigned __int64)(v62.ptr_38->field_20 * (signed __int64)(signed int)v15) >> 16; |
1390 | 5161 v79 = v15; |
5162 v75 = (RenderVertexSoft *)(v77 + v62.ptr_38->field_18); | |
5163 v79 = (void *)((unsigned __int64)(v62.v_18.z * (signed __int64)(signed int)v15) >> 16); | |
1644 | 5164 v17 = v72 * (pBLVRenderParams->uViewportCenterX - (int)array_507D30[_507D30_idx].vWorldViewProjX); |
5165 v18 = array_507D30[_507D30_idx].vWorldViewProjY - 1.0; | |
1390 | 5166 v19 = -v62.field_24; |
5167 v77 = -v62.field_24; | |
5168 X = (int)((char *)v79 + v62.v_18.x); | |
5169 LODWORD(v76) = (signed __int64)v18; | |
5170 v20 = (void *)(v72 * (v70 - LODWORD(v76))); | |
5171 while ( 1 ) | |
5172 { | |
5173 v79 = v20; | |
5174 if ( !X ) | |
5175 goto LABEL_14; | |
5176 v21 = abs(v19 >> 14); | |
5177 if ( v21 <= abs(X) ) | |
5178 break; | |
5179 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y ) | |
5180 break; | |
5181 v19 = v77; | |
5182 v20 = v79; | |
5183 LABEL_14: | |
5184 v79 = (void *)((unsigned __int64)(v62.v_18.z * (signed __int64)(signed int)v20) >> 16); | |
5185 v22 = (unsigned __int64)(v62.v_18.z * (signed __int64)(signed int)v20) >> 16; | |
5186 --LODWORD(v76); | |
5187 v20 = (char *)v20 + v72; | |
5188 X = v22 + v62.v_18.x; | |
5189 v78 = 1; | |
5190 } | |
5191 if ( !v78 ) | |
5192 { | |
5193 LODWORD(v23) = v77 << 16; | |
5194 HIDWORD(v23) = v77 >> 16; | |
5195 v79 = (void *)(v23 / X); | |
5196 v77 = v17; | |
5197 v77 = v17; | |
1644 | 5198 LODWORD(v76) = v74 + ((unsigned __int64)(v62.ptr_38->field_10 * (signed __int64)v17) >> 16); |
5199 v75 = (RenderVertexSoft *)((char *)v75 + ((unsigned __int64)(v62.ptr_38->field_1C * (signed __int64)v17) >> 16)); | |
1390 | 5200 v77 = (unsigned __int64)(SLODWORD(v76) * v23 / X) >> 16; |
5201 LODWORD(v73) = (unsigned __int64)((signed int)v75 * v23 / X) >> 16; | |
1644 | 5202 //v14 += 48; |
1390 | 5203 LODWORD(v80) = v66 + ((signed int)((unsigned __int64)(SLODWORD(v76) * v23 / X) >> 16) >> 4); |
5204 v81 = (char *)v81 + 1; | |
5205 v24 = (double)SLODWORD(v80) * 0.000015259022; | |
5206 LODWORD(v80) = v63 + ((signed int)((unsigned __int64)((signed int)v75 * v23 / X) >> 16) >> 4); | |
5207 v26 = __OFSUB__((int)v81, v62.uNumVertices); | |
5208 v25 = (signed int)((char *)v81 - v62.uNumVertices) < 0; | |
1644 | 5209 array_507D30[_507D30_idx].u = v24 * v67; |
5210 array_507D30[_507D30_idx].v = (double)SLODWORD(v80) * 0.000015259022 * v68; | |
5211 array_507D30[_507D30_idx]._rhw = 65536.0 / (double)(signed int)v79; | |
5212 _507D30_idx++; | |
1390 | 5213 if ( !(v25 ^ v26) ) |
5214 goto LABEL_17; | |
5215 continue; | |
5216 } | |
5217 break; | |
5218 } | |
5219 LODWORD(v73) = 0; | |
5220 v80 = v76; | |
5221 if ( (signed int)v62.uNumVertices > 0 ) | |
5222 { | |
5223 v28 = (double)SLODWORD(v76); | |
5224 LODWORD(v76) = (int)(char *)array_50AC10 + 28; | |
5225 v29 = (char *)&array_50AC10[0].vWorldViewProjX; | |
5226 v30 = (char *)&array_507D30[1].vWorldViewProjY; | |
5227 v79 = array_50AC10; | |
5228 v81 = array_507D30; | |
5229 v78 = v62.uNumVertices; | |
5230 do | |
5231 { | |
5232 v31 = v28 < *((float *)v30 - 12); | |
5233 v32 = v28 == *((float *)v30 - 12); | |
5234 ++LODWORD(v73); | |
5235 memcpy(v79, v81, 0x30u); | |
5236 v79 = (char *)v79 + 48; | |
5237 LODWORD(v76) += 48; | |
5238 v29 += 48; | |
5239 if ( v31 | v32 || v28 >= *(float *)v30 ) | |
5240 { | |
5241 if ( v28 >= *((float *)v30 - 12) || v28 <= *(float *)v30 ) | |
5242 goto LABEL_28; | |
5243 v33 = (*((float *)v30 - 1) - *((float *)v30 - 13)) * v28 / (*(float *)v30 - *((float *)v30 - 12)) | |
5244 + *((float *)v30 - 1); | |
5245 } | |
5246 else | |
5247 { | |
5248 v33 = (*((float *)v30 - 13) - *((float *)v30 - 1)) * v28 / (*((float *)v30 - 12) - *(float *)v30) | |
5249 + *((float *)v30 - 13); | |
5250 } | |
5251 *(float *)v29 = v33; | |
5252 v79 = (char *)v79 + 48; | |
5253 v29 += 48; | |
5254 ++LODWORD(v73); | |
5255 *(unsigned int *)LODWORD(v76) = v28; | |
5256 LODWORD(v76) += 48; | |
5257 LABEL_28: | |
5258 v81 = (char *)v81 + 48; | |
5259 v30 += 48; | |
5260 --v78; | |
5261 } | |
5262 while ( v78 ); | |
5263 } | |
5264 if ( SLODWORD(v73) <= 0 ) | |
5265 goto LABEL_40; | |
5266 v34 = (char *)&array_50AC10[0].vWorldViewProjY; | |
5267 v65 = v77 >> 14; | |
5268 HIDWORD(v69) = LODWORD(v73); | |
5269 do | |
5270 { | |
5271 v35 = (const void *)(v72 * (v70 - (unsigned __int64)(signed __int64)*(float *)v34)); | |
5272 v78 = v62.ptr_38->field_14; | |
5273 v81 = (const void *)((unsigned __int64)(v78 * (signed __int64)(signed int)v35) >> 16); | |
5274 v36 = (int)((char *)v81 + v62.ptr_38->field_C); | |
5275 v81 = v35; | |
5276 v74 = v36; | |
5277 v78 = v62.ptr_38->field_20; | |
5278 v81 = (const void *)((unsigned __int64)(v78 * (signed __int64)(signed int)v35) >> 16); | |
5279 v78 = (int)v35; | |
5280 v75 = (RenderVertexSoft *)((char *)v81 + v62.ptr_38->field_18); | |
5281 v81 = (const void *)v62.v_18.z; | |
5282 v78 = (unsigned __int64)(v62.v_18.z * (signed __int64)(signed int)v35) >> 16; | |
5283 v37 = (const void *)(v72 | |
5284 * (pBLVRenderParams->uViewportCenterX - (unsigned __int64)(signed __int64)*((float *)v34 - 1))); | |
5285 v38 = (signed __int64)(*(float *)v34 - 1.0); | |
5286 v81 = 0; | |
5287 LODWORD(v76) = v38; | |
5288 v39 = v72 * (v70 - v38); | |
5289 while ( 1 ) | |
5290 { | |
5291 v78 = v39; | |
5292 if ( !X ) | |
5293 goto LABEL_36; | |
5294 v40 = abs(X); | |
5295 if ( abs((signed __int64)v65) <= v40 ) | |
5296 break; | |
5297 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y ) | |
5298 break; | |
5299 v39 = v78; | |
5300 LABEL_36: | |
5301 v78 = v62.v_18.z; | |
5302 v41 = (unsigned __int64)(v62.v_18.z * (signed __int64)v39) >> 16; | |
5303 --LODWORD(v76); | |
5304 v39 += v72; | |
5305 X = v41 + v62.v_18.x; | |
5306 v81 = (const void *)1; | |
5307 } | |
5308 if ( v81 ) | |
5309 { | |
5310 v79 = (void *)v62.v_18.z; | |
5311 v78 = 2 * LODWORD(v76); | |
5312 v81 = (const void *)((unsigned __int64)(v62.v_18.z | |
5313 * (signed __int64)(signed int)(signed __int64)(((double)v70 | |
5314 - ((double)(2 * LODWORD(v76)) | |
5315 - *(float *)v34)) | |
5316 * (double)v72)) >> 16); | |
5317 X = (int)((char *)v81 + v62.v_18.x); | |
5318 } | |
5319 LODWORD(v42) = v77 << 16; | |
5320 HIDWORD(v42) = v77 >> 16; | |
5321 v79 = (void *)(v42 / X); | |
5322 v81 = v37; | |
5323 v78 = v62.ptr_38->field_10; | |
5324 v81 = (const void *)((unsigned __int64)(v78 * (signed __int64)(signed int)v37) >> 16); | |
5325 v43 = v74 + ((unsigned __int64)(v78 * (signed __int64)(signed int)v37) >> 16); | |
5326 v74 = (unsigned int)v37; | |
5327 LODWORD(v76) = v43; | |
5328 v78 = v62.ptr_38->field_1C; | |
5329 v75 = (RenderVertexSoft *)((char *)v75 + ((unsigned __int64)(v78 * (signed __int64)(signed int)v37) >> 16)); | |
5330 v74 = (unsigned __int64)(v43 * v42 / X) >> 16; | |
5331 v81 = (const void *)((unsigned __int64)((signed int)v75 * v42 / X) >> 16); | |
5332 v34 += 48; | |
5333 v78 = v66 + ((signed int)v74 >> 4); | |
5334 v44 = HIDWORD(v69)-- == 1; | |
5335 v45 = (double)v78 * 0.000015259022; | |
5336 v78 = v63 + ((signed int)((unsigned __int64)((signed int)v75 * v42 / X) >> 16) >> 4); | |
5337 *((float *)v34 - 10) = v45 * v67; | |
1644 | 5338 *((float *)v34 - 9) = (double)v78 * 0.000015259022 * v68; |
1390 | 5339 v46 = (double)(signed int)v79; |
5340 *((float *)v34 - 16) = 0.000015258789 * v46; | |
5341 *((float *)v34 - 11) = 65536.0 / v46; | |
5342 } | |
5343 while ( !v44 ); | |
5344 LABEL_40: | |
5345 v47 = 0; | |
5346 if ( SLODWORD(v73) > 0 ) | |
5347 { | |
5348 v48 = (double)SLODWORD(v80); | |
5349 v75 = array_507D30; | |
5350 v49 = array_50AC10; | |
5351 HIDWORD(v69) = LODWORD(v73); | |
5352 do | |
5353 { | |
5354 if ( v48 >= v49->vWorldViewProjY ) | |
5355 { | |
5356 v50 = v75; | |
5357 ++v47; | |
5358 ++v75; | |
5359 memcpy(v50, v49, 0x30u); | |
5360 } | |
5361 ++v49; | |
5362 --HIDWORD(v69); | |
5363 } | |
5364 while ( HIDWORD(v69) ); | |
5365 } | |
5366 v62.uNumVertices = v47; | |
5367 pRenderer->_4A2ED5(v47, &v62, pBitmaps_LOD->pHardwareTextures[(signed __int16)v62.uTileBitmapID]); | |
5368 *(float *)&v74 = 0.0; | |
5369 if ( SLODWORD(v73) > 0 ) | |
5370 { | |
5371 v51 = (double)SLODWORD(v80); | |
5372 v75 = array_507D30; | |
5373 v52 = array_50AC10; | |
5374 v80 = v73; | |
5375 do | |
5376 { | |
5377 if ( v51 <= v52->vWorldViewProjY ) | |
5378 { | |
5379 v53 = v75; | |
5380 ++v74; | |
5381 ++v75; | |
5382 memcpy(v53, v52, 0x30u); | |
5383 } | |
5384 ++v52; | |
5385 --LODWORD(v80); | |
5386 } | |
5387 while ( v80 != 0.0 ); | |
5388 } | |
5389 v62.uNumVertices = v74; | |
5390 v61 = pBitmaps_LOD->pHardwareTextures[(signed __int16)v62.uTileBitmapID]; | |
5391 v60 = &v62; | |
5392 v59 = v74; | |
5393 v27 = pRenderer; | |
5394 LABEL_18: | |
5395 v27->_4A2ED5(v59, v60, v61); | |
5396 } | |
5397 | |
5398 | |
0 | 5399 //----- (004A2FC0) -------------------------------------------------------- |
5400 void Render::DrawIndoorPolygon(unsigned int uNumVertices, BLVFace *pFace, IDirect3DTexture2 *pHwTex, Texture *pTex, int uPackedID, unsigned int uColor, int a8) | |
5401 { | |
5402 //Render *v8; // edi@1 | |
5403 //unsigned int v9; // esi@3 | |
1072 | 5404 RenderVertexSoft *v12; // ecx@9 |
5405 RenderVertexD3D3 *v13; // eax@9 | |
0 | 5406 double v14; // st6@10 |
5407 int v15; // edx@10 | |
5408 Texture *v16; // edx@10 | |
5409 double v17; // st6@10 | |
5410 //char v18; // zf@10 | |
5411 Texture *v19; // edx@10 | |
595 | 5412 //Texture *v23; // edx@16 |
5413 //char *v24; // ecx@16 | |
5414 //char *v25; // eax@16 | |
5415 //double v26; // st6@17 | |
5416 //int v27; // esi@17 | |
5417 //double v28; // st6@17 | |
5418 //unsigned int v33; // ecx@18 | |
5419 //char *v34; // eax@19 | |
0 | 5420 //Texture *v45; // edx@23 |
5421 //char *v46; // ecx@23 | |
5422 //char *v47; // eax@23 | |
5423 //double v48; // st6@24 | |
5424 //int v49; // esi@24 | |
5425 //double v50; // st6@24 | |
5426 const char *v53; // [sp-Ch] [bp-20h]@21 | |
5427 //int v54; // [sp-8h] [bp-1Ch]@21 | |
5428 //unsigned int v55; // [sp-4h] [bp-18h]@21 | |
5429 const char *v56; // [sp+0h] [bp-14h]@0 | |
5430 int v57; // [sp+4h] [bp-10h]@0 | |
5431 unsigned int v58; // [sp+8h] [bp-Ch]@0 | |
5432 //LightmapBuilder *v59; // [sp+Ch] [bp-8h]@3 | |
5433 //int a3a; // [sp+10h] [bp-4h]@4 | |
5434 | |
5435 //v8 = this; | |
5436 if (!uNumD3DSceneBegins || uNumVertices < 3) | |
5437 return; | |
5438 | |
5439 //auto a3 = pFace; | |
5440 //auto a6 = uPackedID; | |
5441 //v59 = pGame->pLightmapBuilder; | |
5442 //v9 = v59->std__vector_000004_size; | |
5443 | |
5444 auto uCorrectedColor = uColor; | |
5445 if (pGame->pLightmapBuilder->std__vector_000004_size) | |
5446 uCorrectedColor = 0xFFFFFFFF; | |
638 | 5447 pGame->AlterGamma_BLV(pFace, &uCorrectedColor); |
0 | 5448 |
792 | 5449 |
5450 if (pFace->uAttributes & FACE_OUTLINED) | |
5451 { | |
5452 int color; | |
5453 if (GetTickCount() % 300 >= 150) | |
5454 uColor = uCorrectedColor = 0xFF20FF20; | |
5455 else uColor = uCorrectedColor = 0xFF109010; | |
5456 } | |
5457 | |
1394 | 5458 if (byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01) |
0 | 5459 { |
5460 __debugbreak(); | |
5461 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false)); | |
186 | 5462 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
1072 | 5463 for (uint i = 0; i < uNumVertices; ++i) |
5464 { | |
5465 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; | |
5466 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
5467 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); | |
5468 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x; | |
5469 d3d_vertex_buffer[i].diffuse = uCorrectedColor; | |
5470 d3d_vertex_buffer[i].specular = 0; | |
5471 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth; | |
5472 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight; | |
5473 } | |
5474 | |
186 | 5475 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 5476 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); |
5477 ErrD3D(pRenderD3D->pDevice->DrawPrimitive( | |
5478 D3DPT_TRIANGLEFAN, | |
5479 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5480 d3d_vertex_buffer, |
0 | 5481 uNumVertices, |
5482 28)); | |
1394 | 5483 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/); |
0 | 5484 } |
5485 else | |
5486 { | |
5487 if (!pGame->pLightmapBuilder->std__vector_000004_size || | |
5488 byte_4D864C && pGame->uFlags & 2) | |
5489 { | |
5490 for (uint i = 0; i < uNumVertices; ++i) | |
5491 { | |
186 | 5492 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; |
5493 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
5494 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); | |
5495 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x; | |
5496 d3d_vertex_buffer[i].diffuse = uCorrectedColor; | |
5497 d3d_vertex_buffer[i].specular = 0; | |
5498 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth; | |
5499 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight; | |
5500 } | |
5501 | |
5502 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
0 | 5503 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex)); |
5504 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
5505 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5506 d3d_vertex_buffer, |
0 | 5507 uNumVertices, |
5508 28)); | |
5509 } | |
5510 else | |
5511 { | |
595 | 5512 for (uint i = 0; i < uNumVertices; ++i) |
5513 { | |
5514 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; | |
5515 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
5516 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); | |
5517 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x; | |
5518 d3d_vertex_buffer[i].diffuse = uColor; | |
5519 d3d_vertex_buffer[i].specular = 0; | |
5520 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth; | |
5521 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight; | |
5522 } | |
5523 //__debugbreak(); | |
5524 //if ( (signed int)uNumVertices > 0 ) | |
5525 //{ | |
5526 //v23 = pTex; | |
5527 //v24 = (char *)&array_507D30[0].vWorldViewPosition; | |
5528 //v25 = (char *)&d3d_vertex_buffer[0].pos.y; | |
5529 //pTex = (Texture *)uNumVertices; | |
5530 //uint v18; | |
5531 //do | |
5532 //{ | |
5533 //v26 = *(float *)v24 * 0.061758894; | |
5534 //v27 = *((int *)v24 + 3); | |
5535 //*((int *)v25 + 4) = 0; | |
5536 //*((int *)v25 - 1) = v27; | |
5537 //*(int *)v25 = *((int *)v24 + 4); | |
5538 //*((int *)v25 + 3) = uColor; | |
5539 //v25 += 32; | |
5540 //*((float *)v25 - 7) = 1.0 - 1.0 / v26; | |
5541 //v28 = 1.0 / *(float *)v24; | |
5542 //v24 += 48; | |
5543 //v18 = pTex == (Texture *)1; | |
5544 //pTex = (Texture *)((char *)pTex - 1); | |
5545 //*((float *)v25 - 6) = v28; | |
0 | 5546 //a3 = (BLVFace *)v23->uTextureWidth; |
595 | 5547 //*((float *)v25 - 3) = *((float *)v24 - 6) / (double)(signed int)v23->uTextureWidth; |
0 | 5548 //a3 = (BLVFace *)v23->uTextureHeight; |
595 | 5549 //*((float *)v25 - 2) = *((float *)v24 - 5) / (double)(signed int)v23->uTextureHeight; |
5550 //} | |
5551 //while ( !v18 ); | |
5552 //} | |
0 | 5553 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false)); |
186 | 5554 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 5555 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); |
186 | 5556 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
0 | 5557 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5558 d3d_vertex_buffer, |
0 | 5559 uNumVertices, |
5560 28)); | |
595 | 5561 |
5562 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
1394 | 5563 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/); |
595 | 5564 |
5565 for (uint i = 0; i < uNumVertices; ++i) | |
5566 d3d_vertex_buffer[i].diffuse = uCorrectedColor; | |
5567 /*v33 = uNumVertices; | |
0 | 5568 if ( (signed int)uNumVertices > 0 ) |
5569 { | |
186 | 5570 v34 = (char *)&d3d_vertex_buffer[0].diffuse; |
0 | 5571 do |
5572 { | |
5573 *(int *)v34 = uCorrectedColor; | |
5574 v34 += 32; | |
5575 --v33; | |
5576 } | |
5577 while ( v33 ); | |
595 | 5578 }*/ |
0 | 5579 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex)); |
186 | 5580 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
5581 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
5582 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
5583 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO)); | |
5584 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR)); | |
5585 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
0 | 5586 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5587 d3d_vertex_buffer, |
0 | 5588 uNumVertices, |
5589 28)); | |
186 | 5590 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
5591 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
5592 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
0 | 5593 } |
5594 } | |
5595 } | |
5596 // 4D864C: using guessed type char byte_4D864C; | |
5597 | |
5598 //----- (004A43B1) -------------------------------------------------------- | |
717 | 5599 void Render::DrawBillboard_Indoor(RenderBillboardTransform_local0 *pSoftBillboard, Sprite *pSprite, int dimming_level) |
5600 { | |
5601 //RenderBillboardTransform_local0 *v4; // ebx@2 | |
5602 //double v5; // st7@2 | |
5603 //float v6; // ST08_4@2 | |
0 | 5604 unsigned int v7; // eax@2 |
717 | 5605 //int v8; // ecx@2 |
5606 //unsigned int v9; // esi@2 | |
5607 //Sprite *v10; // edi@5 | |
0 | 5608 signed int v11; // eax@9 |
5609 signed int v12; // eax@9 | |
717 | 5610 //double v13; // st7@12 |
5611 //double v14; // st6@12 | |
0 | 5612 double v15; // st5@12 |
5613 double v16; // st4@12 | |
5614 double v17; // st3@12 | |
5615 double v18; // st2@12 | |
5616 int v19; // ecx@14 | |
5617 double v20; // st3@14 | |
5618 int v21; // ecx@16 | |
5619 double v22; // st3@16 | |
717 | 5620 //IDirect3DTexture2 *v23; // eax@18 |
5621 //signed int v24; // [sp+18h] [bp-18h]@5 | |
5622 //signed int v25; // [sp+1Ch] [bp-14h]@5 | |
5623 //Render *v26; // [sp+20h] [bp-10h]@1 | |
0 | 5624 float v27; // [sp+24h] [bp-Ch]@5 |
5625 int v28; // [sp+28h] [bp-8h]@2 | |
5626 float v29; // [sp+2Ch] [bp-4h]@5 | |
717 | 5627 //float pSoftBillboarda; // [sp+38h] [bp+8h]@2 |
0 | 5628 float v31; // [sp+3Ch] [bp+Ch]@5 |
717 | 5629 //float v32; // [sp+3Ch] [bp+Ch]@12 |
0 | 5630 float a1; // [sp+40h] [bp+10h]@5 |
5631 | |
717 | 5632 //v26 = this; |
0 | 5633 if ( this->uNumD3DSceneBegins ) |
5634 { | |
717 | 5635 //v4 = pSoftBillboard; |
5636 //v5 = (double)pSoftBillboard->zbuffer_depth; | |
5637 //pSoftBillboarda = pSoftBillboard->zbuffer_depth; | |
5638 //v6 = pSoftBillboard->zbuffer_depth; | |
5639 v7 = Billboard_ProbablyAddToListAndSortByZOrder(pSoftBillboard->zbuffer_depth); | |
5640 //v8 = dimming_level; | |
5641 //v9 = v7; | |
657 | 5642 v28 = dimming_level & 0xFF000000; |
5643 if ( dimming_level & 0xFF000000 ) | |
717 | 5644 pBillboardRenderListD3D[v7].uOpacity = RenderBillboardD3D::Opaque_3; |
0 | 5645 else |
717 | 5646 pBillboardRenderListD3D[v7].uOpacity = RenderBillboardD3D::Transparent; |
5647 //v10 = a3; | |
5648 pBillboardRenderListD3D[v7].field_90 = pSoftBillboard->field_44; | |
5649 pBillboardRenderListD3D[v7].sZValue = pSoftBillboard->sZValue; | |
5650 pBillboardRenderListD3D[v7].uParentBillboardID = pSoftBillboard->uParentBillboardID; | |
5651 //v25 = pSoftBillboard->uScreenSpaceX; | |
5652 //v24 = pSoftBillboard->uScreenSpaceY; | |
5653 a1 = (pSoftBillboard->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_x_scaler_packedfloat); | |
5654 v29 = (pSoftBillboard->_screenspace_y_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_y_scaler_packedfloat); | |
5655 v31 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX); | |
5656 v27 = (double)(pSprite->uBufferHeight - pSprite->uAreaY); | |
5657 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5658 v31 = v31 * -1.0; |
717 | 5659 if ( pSoftBillboard->uTintColor && this->bTinting ) |
5660 { | |
5661 v11 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0); | |
737 | 5662 v12 = BlendColors(pSoftBillboard->uTintColor, v11); |
0 | 5663 if ( v28 ) |
5664 v12 = (unsigned int)((char *)&array_77EC08[1852].pEdgeList1[17] + 3) & ((unsigned int)v12 >> 1); | |
5665 } | |
5666 else | |
5667 { | |
717 | 5668 v12 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0); |
5669 } | |
5670 //v13 = (double)v25; | |
1390 | 5671 pBillboardRenderListD3D[v7].pQuads[0].specular = 0; |
5672 pBillboardRenderListD3D[v7].pQuads[0].diffuse = v12; | |
5673 pBillboardRenderListD3D[v7].pQuads[0].pos.x = pSoftBillboard->uScreenSpaceX - v31 * a1; | |
717 | 5674 //v14 = (double)v24; |
5675 //v32 = v14; | |
1390 | 5676 pBillboardRenderListD3D[v7].pQuads[0].pos.y = pSoftBillboard->uScreenSpaceY - v27 * v29; |
717 | 5677 v15 = 1.0 - 1.0 / (pSoftBillboard->zbuffer_depth * 0.061758894); |
1390 | 5678 pBillboardRenderListD3D[v7].pQuads[0].pos.z = v15; |
717 | 5679 v16 = 1.0 / pSoftBillboard->zbuffer_depth; |
1390 | 5680 pBillboardRenderListD3D[v7].pQuads[0].rhw = 1.0 / pSoftBillboard->zbuffer_depth; |
5681 pBillboardRenderListD3D[v7].pQuads[0].texcoord.x = 0.0; | |
5682 pBillboardRenderListD3D[v7].pQuads[0].texcoord.y = 0.0; | |
717 | 5683 v17 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX); |
5684 v18 = (double)(pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight); | |
5685 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5686 v17 = v17 * -1.0; |
1390 | 5687 pBillboardRenderListD3D[v7].pQuads[1].specular = 0; |
5688 pBillboardRenderListD3D[v7].pQuads[1].diffuse = v12; | |
5689 pBillboardRenderListD3D[v7].pQuads[1].pos.x = pSoftBillboard->uScreenSpaceX - v17 * a1; | |
5690 pBillboardRenderListD3D[v7].pQuads[1].pos.y = pSoftBillboard->uScreenSpaceY - v18 * v29; | |
5691 pBillboardRenderListD3D[v7].pQuads[1].pos.z = v15; | |
5692 pBillboardRenderListD3D[v7].pQuads[1].rhw = v16; | |
5693 pBillboardRenderListD3D[v7].pQuads[1].texcoord.x = 0.0; | |
5694 pBillboardRenderListD3D[v7].pQuads[1].texcoord.y = 1.0; | |
717 | 5695 v19 = pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight; |
5696 v20 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth); | |
5697 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5698 v20 = v20 * -1.0; |
1390 | 5699 pBillboardRenderListD3D[v7].pQuads[2].specular = 0; |
5700 pBillboardRenderListD3D[v7].pQuads[2].diffuse = v12; | |
5701 pBillboardRenderListD3D[v7].pQuads[2].pos.x = v20 * a1 + pSoftBillboard->uScreenSpaceX; | |
5702 pBillboardRenderListD3D[v7].pQuads[2].pos.y = pSoftBillboard->uScreenSpaceY - (double)v19 * v29; | |
5703 pBillboardRenderListD3D[v7].pQuads[2].pos.z = v15; | |
5704 pBillboardRenderListD3D[v7].pQuads[2].rhw = v16; | |
5705 pBillboardRenderListD3D[v7].pQuads[2].texcoord.x = 1.0; | |
5706 pBillboardRenderListD3D[v7].pQuads[2].texcoord.y = 1.0; | |
717 | 5707 v21 = pSprite->uBufferHeight - pSprite->uAreaY; |
5708 v22 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth); | |
5709 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5710 v22 = v22 * -1.0; |
1390 | 5711 pBillboardRenderListD3D[v7].pQuads[3].specular = 0; |
5712 pBillboardRenderListD3D[v7].pQuads[3].diffuse = v12; | |
5713 pBillboardRenderListD3D[v7].pQuads[3].pos.x = v22 * a1 + pSoftBillboard->uScreenSpaceX; | |
5714 pBillboardRenderListD3D[v7].pQuads[3].pos.y = pSoftBillboard->uScreenSpaceY - (double)v21 * v29; | |
5715 pBillboardRenderListD3D[v7].pQuads[3].pos.z = v15; | |
5716 pBillboardRenderListD3D[v7].pQuads[3].rhw = v16; | |
5717 pBillboardRenderListD3D[v7].pQuads[3].texcoord.x = 1.0; | |
5718 pBillboardRenderListD3D[v7].pQuads[3].texcoord.y = 0.0; | |
717 | 5719 //v23 = pSprite->pTexture; |
5720 pBillboardRenderListD3D[v7].uNumVertices = 4; | |
5721 pBillboardRenderListD3D[v7].z_order = pSoftBillboard->zbuffer_depth; | |
5722 pBillboardRenderListD3D[v7].pTexture = pSprite->pTexture; | |
0 | 5723 } |
5724 } | |
5725 | |
5726 //----- (004A354F) -------------------------------------------------------- | |
5727 void Render::MakeParticleBillboardAndPush_BLV(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle) | |
5728 { | |
743 | 5729 //double v5; // st7@3 |
5730 //float v6; // ST20_4@3 | |
5731 //float v7; // ST00_4@3 | |
0 | 5732 unsigned int v8; // esi@3 |
743 | 5733 //int v9; // eax@3 |
5734 //int v10; // ebx@3 | |
0 | 5735 float v11; // ST28_4@3 |
743 | 5736 //double v12; // st7@3 |
5737 //float v13; // ST24_4@3 | |
5738 //double v14; // st6@3 | |
5739 //float v15; // ST1C_4@3 | |
0 | 5740 float v16; // ST2C_4@3 |
5741 float v17; // ST30_4@3 | |
5742 signed int v18; // ST18_4@3 | |
5743 signed int v19; // ST14_4@3 | |
5744 signed int v20; // ST10_4@3 | |
5745 signed int v21; // eax@3 | |
5746 double v22; // st6@3 | |
5747 float v23; // ST2C_4@3 | |
5748 float v24; // ST30_4@3 | |
5749 signed int v25; // ST10_4@3 | |
5750 signed int v26; // ST14_4@3 | |
5751 signed int v27; // ST18_4@3 | |
5752 signed int v28; // eax@3 | |
5753 double v29; // st6@3 | |
5754 float v30; // ecx@3 | |
5755 float v31; // ST2C_4@3 | |
5756 float v32; // ST30_4@3 | |
5757 signed int v33; // ST10_4@3 | |
5758 signed int v34; // ST14_4@3 | |
5759 signed int v35; // ST18_4@3 | |
5760 signed int v36; // eax@3 | |
5761 float v37; // ecx@3 | |
5762 double v38; // st6@3 | |
5763 float v39; // ST2C_4@3 | |
5764 float v40; // ST30_4@3 | |
5765 signed int v41; // ST10_4@3 | |
5766 signed int v42; // ST14_4@3 | |
5767 signed int v43; // ST18_4@3 | |
5768 signed int v44; // eax@3 | |
5769 double v45; // st6@3 | |
5770 float v46; // eax@3 | |
5771 | |
5772 if ( this->uNumD3DSceneBegins ) | |
5773 { | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5774 if (a2->zbuffer_depth) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5775 { |
743 | 5776 //v5 = (double)a2->zbuffer_depth; |
5777 //v6 = v5; | |
5778 //v7 = v5; | |
5779 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth); | |
0 | 5780 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Opaque_1; |
5781 pBillboardRenderListD3D[v8].field_90 = a2->field_44; | |
5782 pBillboardRenderListD3D[v8].sZValue = a2->sZValue; | |
5783 pBillboardRenderListD3D[v8].uParentBillboardID = a2->uParentBillboardID; | |
743 | 5784 //v9 = a2->uScreenSpaceX; |
5785 //v10 = a2->uScreenSpaceY; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5786 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat); |
743 | 5787 //v12 = (double) a2->uScreenSpaceX; |
5788 //v13 = v12; | |
5789 //v14 = (double)(a2->uScreenSpaceY - 12); | |
5790 //v15 = v14; | |
5791 v16 = (double)( a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX; | |
5792 v17 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12); | |
323 | 5793 v18 = stru_5C6E00->Cos(angle); |
5794 v19 = stru_5C6E00->Sin(angle); | |
5795 v20 = stru_5C6E00->Sin(angle); | |
5796 v21 = stru_5C6E00->Cos(angle); | |
1390 | 5797 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022 |
0 | 5798 + (double)(v18 >> 16)) |
5799 * v16 | |
5800 - ((double)(unsigned __int16)v19 * 0.000015259022 | |
5801 + (double)(v19 >> 16)) | |
5802 * v17) | |
743 | 5803 * v11 + (double) a2->uScreenSpaceX; |
0 | 5804 v22 = (((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v17 |
5805 + ((double)(unsigned __int16)v20 * 0.000015259022 + (double)(v20 >> 16)) * v16 | |
5806 - 12.0) | |
5807 * v11 | |
5808 + (double)a2->uScreenSpaceY; | |
1390 | 5809 pBillboardRenderListD3D[v8].pQuads[0].specular = 0; |
5810 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse; | |
5811 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v22; | |
5812 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 0.061758894); | |
5813 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth; | |
5814 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0; | |
5815 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0; | |
743 | 5816 v31 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX; |
5817 v32 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12); | |
323 | 5818 v25 = stru_5C6E00->Cos(angle); |
5819 v26 = stru_5C6E00->Sin(angle); | |
5820 v27 = stru_5C6E00->Sin(angle); | |
5821 v28 = stru_5C6E00->Cos(angle); | |
1390 | 5822 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v25 * 0.000015259022 |
0 | 5823 + (double)(v25 >> 16)) |
740 | 5824 * v31 |
0 | 5825 - ((double)(unsigned __int16)v26 * 0.000015259022 |
5826 + (double)(v26 >> 16)) | |
740 | 5827 * v32) |
743 | 5828 * v11 + (double) a2->uScreenSpaceX; |
740 | 5829 v29 = (((double)(unsigned __int16)v28 * 0.000015259022 + (double)(v28 >> 16)) * v32 |
5830 + ((double)(unsigned __int16)v27 * 0.000015259022 + (double)(v27 >> 16)) * v31 | |
0 | 5831 - 12.0) |
5832 * v11 | |
5833 + (double)a2->uScreenSpaceY; | |
1390 | 5834 pBillboardRenderListD3D[v8].pQuads[1].pos.z = pRenderer->pBillboardRenderListD3D[v8].pQuads[0].pos.z; |
5835 v30 = pBillboardRenderListD3D[v8].pQuads[0].rhw; | |
5836 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v29; | |
5837 pBillboardRenderListD3D[v8].pQuads[1].specular = 0; | |
5838 pBillboardRenderListD3D[v8].pQuads[1].rhw = v30; | |
5839 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse; | |
5840 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0; | |
5841 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0; | |
743 | 5842 v23 = (double)(a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX; |
5843 v24 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12); | |
323 | 5844 v33 = stru_5C6E00->Cos(angle); |
5845 v34 = stru_5C6E00->Sin(angle); | |
5846 v35 = stru_5C6E00->Sin(angle); | |
5847 v36 = stru_5C6E00->Cos(angle); | |
1390 | 5848 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v33 * 0.000015259022 |
0 | 5849 + (double)(v33 >> 16)) |
740 | 5850 * v23 |
0 | 5851 - ((double)(unsigned __int16)v34 * 0.000015259022 |
5852 + (double)(v34 >> 16)) | |
740 | 5853 * v24) |
743 | 5854 * v11 + (double) a2->uScreenSpaceX; |
1390 | 5855 v37 = pBillboardRenderListD3D[v8].pQuads[0].pos.z; |
740 | 5856 v38 = (((double)(unsigned __int16)v36 * 0.000015259022 + (double)(v36 >> 16)) * v24 |
5857 + ((double)(unsigned __int16)v35 * 0.000015259022 + (double)(v35 >> 16)) * v23 | |
0 | 5858 - 12.0) |
5859 * v11 | |
5860 + (double)a2->uScreenSpaceY; | |
1390 | 5861 pBillboardRenderListD3D[v8].pQuads[2].specular = 0; |
5862 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v37; | |
5863 pBillboardRenderListD3D[v8].pQuads[2].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw; | |
5864 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse; | |
5865 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v38; | |
5866 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0; | |
5867 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0; | |
743 | 5868 v39 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX; |
5869 v40 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12); | |
323 | 5870 v41 = stru_5C6E00->Cos(angle); |
5871 v42 = stru_5C6E00->Sin(angle); | |
5872 v43 = stru_5C6E00->Sin(angle); | |
5873 v44 = stru_5C6E00->Cos(angle); | |
1390 | 5874 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v41 * 0.000015259022 |
0 | 5875 + (double)(v41 >> 16)) |
5876 * v39 | |
5877 - ((double)(unsigned __int16)v42 * 0.000015259022 | |
5878 + (double)(v42 >> 16)) | |
5879 * v40) | |
743 | 5880 * v11 + (double) a2->uScreenSpaceX; |
0 | 5881 v45 = (((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40 |
5882 + ((double)(unsigned __int16)v43 * 0.000015259022 + (double)(v43 >> 16)) * v39 | |
5883 - 12.0) | |
5884 * v11 | |
5885 + (double)a2->uScreenSpaceY; | |
1390 | 5886 v46 = pBillboardRenderListD3D[v8].pQuads[0].pos.z; |
5887 pBillboardRenderListD3D[v8].pQuads[3].specular = 0; | |
5888 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v46; | |
5889 pBillboardRenderListD3D[v8].pQuads[3].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw; | |
5890 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse; | |
0 | 5891 pBillboardRenderListD3D[v8].pTexture = a3; |
743 | 5892 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth; |
0 | 5893 pBillboardRenderListD3D[v8].uNumVertices = 4; |
1390 | 5894 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v45; |
5895 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0; | |
5896 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0; | |
0 | 5897 } |
5898 } | |
5899 } | |
5900 | |
5901 //----- (004A3AD9) -------------------------------------------------------- | |
5902 void Render::MakeParticleBillboardAndPush_ODM(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle) | |
5903 { | |
5904 double v5; // st7@2 | |
5905 float v6; // ST28_4@2 | |
5906 float v7; // ST00_4@2 | |
5907 unsigned int v8; // esi@2 | |
5908 int v9; // eax@2 | |
5909 int v10; // ebx@2 | |
5910 float v11; // ST34_4@2 | |
5911 double v12; // st7@2 | |
5912 float v13; // ST2C_4@2 | |
5913 double v14; // st6@2 | |
5914 float v15; // ST24_4@2 | |
5915 float v16; // ST38_4@2 | |
5916 float v17; // ST3C_4@2 | |
5917 signed int v18; // ST1C_4@2 | |
5918 int v19; // ST30_4@2 | |
5919 signed int v20; // ST20_4@2 | |
5920 signed int v21; // ST18_4@2 | |
5921 signed int v22; // eax@2 | |
5922 double v23; // st6@2 | |
5923 float v24; // ST20_4@2 | |
5924 float v25; // ST1C_4@2 | |
5925 float v26; // ST38_4@2 | |
5926 float v27; // ST3C_4@2 | |
5927 signed int v28; // ST18_4@2 | |
5928 signed int v29; // ST14_4@2 | |
5929 signed int v30; // ST10_4@2 | |
5930 signed int v31; // eax@2 | |
5931 double v32; // st6@2 | |
5932 float v33; // ST38_4@2 | |
5933 float v34; // ST3C_4@2 | |
5934 signed int v35; // ST10_4@2 | |
5935 signed int v36; // ST14_4@2 | |
5936 signed int v37; // ST18_4@2 | |
5937 signed int v38; // eax@2 | |
5938 double v39; // st6@2 | |
5939 float v40; // ST38_4@2 | |
5940 float v41; // ST3C_4@2 | |
5941 signed int v42; // ST10_4@2 | |
5942 signed int v43; // ST14_4@2 | |
5943 signed int v44; // ST18_4@2 | |
5944 signed int v45; // eax@2 | |
5945 double v46; // st6@2 | |
5946 | |
5947 if ( this->uNumD3DSceneBegins ) | |
5948 { | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5949 v5 = (double)a2->zbuffer_depth; |
0 | 5950 v6 = v5; |
5951 v7 = v5; | |
5952 v8 = Billboard_ProbablyAddToListAndSortByZOrder(LODWORD(v7)); | |
5953 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Opaque_1; | |
5954 pBillboardRenderListD3D[v8].field_90 = a2->field_44; | |
5955 pBillboardRenderListD3D[v8].sZValue = a2->sZValue; | |
5956 pBillboardRenderListD3D[v8].uParentBillboardID = a2->uParentBillboardID; | |
5957 v9 = a2->uScreenSpaceX; | |
5958 v10 = a2->uScreenSpaceY; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5959 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat); |
0 | 5960 v12 = (double)v9; |
5961 v13 = v12; | |
5962 v14 = (double)(v10 - 12); | |
5963 v15 = v14; | |
5964 v16 = (double)(v9 - 12) - v12; | |
5965 v17 = (double)(v10 - 25) - v14; | |
323 | 5966 v18 = stru_5C6E00->Cos(angle); |
0 | 5967 v19 = angle - stru_5C6E00->uIntegerHalfPi; |
323 | 5968 v20 = stru_5C6E00->Sin(angle); |
5969 v21 = stru_5C6E00->Sin(angle); | |
5970 v22 = stru_5C6E00->Cos(angle); | |
1390 | 5971 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022 |
0 | 5972 + (double)(v18 >> 16)) |
5973 * v16 | |
5974 - ((double)(unsigned __int16)v20 * 0.000015259022 | |
5975 + (double)(v20 >> 16)) | |
5976 * v17) | |
5977 * v11 + v13; | |
5978 v23 = (((double)(unsigned __int16)v22 * 0.000015259022 + (double)(v22 >> 16)) * v17 | |
5979 + ((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v16 | |
5980 - 12.0) | |
5981 * v11 | |
5982 + (double)a2->uScreenSpaceY; | |
1390 | 5983 pBillboardRenderListD3D[v8].pQuads[0].specular = 0; |
5984 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse; | |
5985 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v23; | |
1637 | 5986 v24 = 1.0 - 1.0 / (v6 * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 5987 pBillboardRenderListD3D[v8].pQuads[0].pos.z = v24; |
0 | 5988 v25 = 1.0 / v6; |
1390 | 5989 pBillboardRenderListD3D[v8].pQuads[0].rhw = v25; |
5990 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0; | |
5991 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0; | |
0 | 5992 v26 = (double)(a2->uScreenSpaceX - 12) - v13; |
5993 v27 = (double)a2->uScreenSpaceY - v15; | |
323 | 5994 v28 = stru_5C6E00->Cos(angle); |
5995 v29 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5996 v30 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5997 v31 = stru_5C6E00->Cos(angle); | |
1390 | 5998 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v28 * 0.000015259022 |
0 | 5999 + (double)(v28 >> 16)) |
6000 * v26 | |
6001 - ((double)(unsigned __int16)v29 * 0.000015259022 | |
6002 + (double)(v29 >> 16)) | |
6003 * v27) | |
6004 * v11 + v13; | |
6005 v32 = (((double)(unsigned __int16)v31 * 0.000015259022 + (double)(v31 >> 16)) * v27 | |
6006 + ((double)(unsigned __int16)v30 * 0.000015259022 + (double)(v30 >> 16)) * v26 | |
6007 - 12.0) | |
6008 * v11 | |
6009 + (double)a2->uScreenSpaceY; | |
1390 | 6010 pBillboardRenderListD3D[v8].pQuads[1].pos.z = v24; |
6011 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v32; | |
6012 pBillboardRenderListD3D[v8].pQuads[1].specular = 0; | |
6013 pBillboardRenderListD3D[v8].pQuads[1].rhw = v25; | |
6014 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse; | |
6015 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0; | |
6016 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0; | |
0 | 6017 v33 = (double)(a2->uScreenSpaceX + 12) - v13; |
6018 v34 = (double)a2->uScreenSpaceY - v15; | |
323 | 6019 v35 = stru_5C6E00->Cos(angle); |
6020 v36 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
6021 v37 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
6022 v38 = stru_5C6E00->Cos(angle); | |
1390 | 6023 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v35 * 0.000015259022 |
0 | 6024 + (double)(v35 >> 16)) |
6025 * v33 | |
6026 - ((double)(unsigned __int16)v36 * 0.000015259022 | |
6027 + (double)(v36 >> 16)) | |
6028 * v34) | |
6029 * v11 + v13; | |
6030 v39 = (((double)(unsigned __int16)v38 * 0.000015259022 + (double)(v38 >> 16)) * v34 | |
6031 + ((double)(unsigned __int16)v37 * 0.000015259022 + (double)(v37 >> 16)) * v33 | |
6032 - 12.0) | |
6033 * v11 | |
6034 + (double)a2->uScreenSpaceY; | |
1390 | 6035 pBillboardRenderListD3D[v8].pQuads[2].specular = 0; |
6036 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v24; | |
6037 pBillboardRenderListD3D[v8].pQuads[2].rhw = v25; | |
6038 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse; | |
6039 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v39; | |
6040 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0; | |
6041 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0; | |
0 | 6042 v40 = (double)(a2->uScreenSpaceX + 12) - v13; |
6043 v41 = (double)(a2->uScreenSpaceY - 25) - v15; | |
323 | 6044 v42 = stru_5C6E00->Cos(angle); |
6045 v43 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
6046 v44 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
6047 v45 = stru_5C6E00->Cos(angle); | |
1390 | 6048 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v42 * 0.000015259022 |
0 | 6049 + (double)(v42 >> 16)) |
6050 * v40 | |
6051 - ((double)(unsigned __int16)v43 * 0.000015259022 | |
6052 + (double)(v43 >> 16)) | |
6053 * v41) | |
6054 * v11 + v13; | |
6055 v46 = (((double)(unsigned __int16)v45 * 0.000015259022 + (double)(v45 >> 16)) * v41 | |
6056 + ((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40 | |
6057 - 12.0) | |
6058 * v11 | |
6059 + (double)a2->uScreenSpaceY; | |
1390 | 6060 pBillboardRenderListD3D[v8].pQuads[3].specular = 0; |
6061 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v24; | |
6062 pBillboardRenderListD3D[v8].pQuads[3].rhw = v25; | |
6063 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse; | |
0 | 6064 pBillboardRenderListD3D[v8].pTexture = a3; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6065 pBillboardRenderListD3D[v8].z_order = v6; |
0 | 6066 pBillboardRenderListD3D[v8].uNumVertices = 4; |
1390 | 6067 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v46; |
6068 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0; | |
6069 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0; | |
0 | 6070 } |
6071 } | |
6072 | |
6073 //----- (004A4023) -------------------------------------------------------- | |
657 | 6074 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
|
6075 { |
0 | 6076 unsigned int v8; // esi@2 |
6077 double v14; // st6@14 | |
6078 double v15; // st5@14 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6079 //unsigned int v16; // ecx@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6080 //double v17; // st7@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6081 //double v18; // st5@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6082 //double v19; // st4@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6083 //double v20; // st5@18 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6084 //double v21; // st4@18 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6085 //signed int v23; // [sp+18h] [bp-18h]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6086 //signed int v24; // [sp+1Ch] [bp-14h]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6087 //float v26; // [sp+20h] [bp-10h]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6088 //float v27; // [sp+20h] [bp-10h]@12 |
0 | 6089 float v29; // [sp+28h] [bp-8h]@5 |
6090 float v30; // [sp+2Ch] [bp-4h]@5 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6091 //float pSpritea; // [sp+3Ch] [bp+Ch]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6092 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6093 if (!uNumD3DSceneBegins) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6094 return; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6095 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6096 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6097 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6098 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
|
6099 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
|
6100 |
657 | 6101 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
|
6102 if (a2->uTintColor & 0x00FFFFFF && bTinting) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6103 { |
737 | 6104 diffuse = BlendColors(a2->uTintColor, diffuse); |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6105 if (a2->uTintColor & 0xFF000000) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6106 diffuse = 0x007F7F7F & ((unsigned int)diffuse >> 1); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6107 } |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6108 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6109 unsigned int specular = 0; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6110 if (bUsingSpecular) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6111 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
|
6112 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6113 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6114 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6115 if (a2->uFlags & 4) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6116 v14 *= -1.0; |
1390 | 6117 pBillboardRenderListD3D[v8].pQuads[0].diffuse = diffuse; |
6118 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (double)a2->uScreenSpaceX - v14 * v30; | |
6119 pBillboardRenderListD3D[v8].pQuads[0].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 6120 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 6121 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth; |
6122 pBillboardRenderListD3D[v8].pQuads[0].specular = specular; | |
6123 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0; | |
6124 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6125 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6126 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6127 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6128 if ( a2->uFlags & 4 ) |
0 | 6129 v14 = v14 * -1.0; |
1390 | 6130 pBillboardRenderListD3D[v8].pQuads[1].specular = specular; |
6131 pBillboardRenderListD3D[v8].pQuads[1].diffuse = diffuse; | |
6132 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (double)a2->uScreenSpaceX - v14 * v30; | |
6133 pBillboardRenderListD3D[v8].pQuads[1].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 6134 pBillboardRenderListD3D[v8].pQuads[1].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 6135 pBillboardRenderListD3D[v8].pQuads[1].rhw = 1.0 / a2->zbuffer_depth; |
6136 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0; | |
6137 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6138 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6139 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
|
6140 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6141 if ( a2->uFlags & 4 ) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6142 v14 *= -1.0; |
1390 | 6143 pBillboardRenderListD3D[v8].pQuads[2].diffuse = diffuse; |
6144 pBillboardRenderListD3D[v8].pQuads[2].specular = specular; | |
6145 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (double)a2->uScreenSpaceX + v14 * v30; | |
6146 pBillboardRenderListD3D[v8].pQuads[2].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 6147 pBillboardRenderListD3D[v8].pQuads[2].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 6148 pBillboardRenderListD3D[v8].pQuads[2].rhw = 1.0 / a2->zbuffer_depth; |
6149 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0; | |
6150 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6151 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6152 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
|
6153 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6154 if ( a2->uFlags & 4 ) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6155 v14 *= -1.0; |
1390 | 6156 pBillboardRenderListD3D[v8].pQuads[3].diffuse = diffuse; |
6157 pBillboardRenderListD3D[v8].pQuads[3].specular = specular; | |
6158 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (double)a2->uScreenSpaceX + v14 * v30; | |
6159 pBillboardRenderListD3D[v8].pQuads[3].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 6160 pBillboardRenderListD3D[v8].pQuads[3].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 6161 pBillboardRenderListD3D[v8].pQuads[3].rhw = 1.0 / a2->zbuffer_depth; |
6162 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0; | |
6163 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6164 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6165 pBillboardRenderListD3D[v8].uNumVertices = 4; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6166 pBillboardRenderListD3D[v8].pTexture = pSprite->pTexture; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6167 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6168 pBillboardRenderListD3D[v8].field_90 = a2->field_44; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6169 pBillboardRenderListD3D[v8].sZValue = a2->sZValue; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6170 pBillboardRenderListD3D[v8].uParentBillboardID = a2->uParentBillboardID; |
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 if (a2->uTintColor & 0xFF000000) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6173 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Opaque_3; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6174 else |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6175 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Transparent; |
0 | 6176 } |
6177 | |
6178 //----- (004A48E4) -------------------------------------------------------- | |
6179 int Render::MakeParticleBillboardAndPush_BLV_Software(int screenSpaceX, int screenSpaceY, int z, int lightColor, int a6) | |
6180 { | |
6181 int v6; // ecx@1 | |
6182 int v7; // ebx@1 | |
6183 int v8; // ecx@1 | |
6184 int v9; // edx@1 | |
6185 int v10; // edi@1 | |
6186 unsigned int x; // esi@1 | |
6187 int result; // eax@8 | |
6188 int v13; // [sp+Ch] [bp-10h]@1 | |
6189 int v14; // [sp+10h] [bp-Ch]@1 | |
6190 int v15; // [sp+14h] [bp-8h]@1 | |
6191 int v16; // [sp+18h] [bp-4h]@1 | |
6192 int v17; // [sp+24h] [bp+8h]@1 | |
6193 unsigned int v18; // [sp+28h] [bp+Ch]@1 | |
6194 int v19; // [sp+34h] [bp+18h]@1 | |
6195 | |
6196 v6 = screenSpaceX; | |
6197 v7 = (a6 >> 1) + screenSpaceY; | |
6198 v17 = 0; | |
6199 v15 = 0; | |
6200 v8 = (a6 >> 1) + v6; | |
6201 v14 = (a6 >> 1) * (a6 >> 1); | |
6202 v9 = 2 * (a6 >> 1); | |
6203 v10 = (a6 >> 1) * ((a6 >> 1) - 1); | |
6204 x = v8 - (a6 >> 1); | |
6205 v16 = (a6 >> 1) + screenSpaceY - v8; | |
6206 v19 = a6 >> 1; | |
6207 v13 = v9; | |
6208 v18 = v8; | |
6209 do | |
6210 { | |
6211 sr_4A46E6_draw_particle_segment(x, v16 + v18, z, 2 * v19, lightColor); | |
6212 if ( v15 ) | |
6213 sr_4A46E6_draw_particle_segment(x, v17 + v7, z, 2 * v19, lightColor); | |
6214 v14 -= v15; | |
6215 if ( v14 <= v10 ) | |
6216 { | |
6217 if ( v19 != v17 ) | |
6218 { | |
6219 sr_4A46E6_draw_particle_segment(v18, v16 + x, z, 2 * v17, lightColor); | |
6220 sr_4A46E6_draw_particle_segment(v18, v19 + v7, z, 2 * v17, lightColor); | |
6221 } | |
6222 --v19; | |
6223 v13 -= 2; | |
6224 ++x; | |
6225 v10 -= v13; | |
6226 } | |
6227 result = v17++; | |
6228 v15 += 2; | |
6229 --v18; | |
6230 } | |
6231 while ( result < v19 ); | |
6232 return result; | |
6233 } | |
6234 | |
6235 //----- (004A49D0) -------------------------------------------------------- | |
6236 void Render::DrawProjectile(float srcX, float srcY, float a3, float a4, float dstX, float dstY, float a7, float a8, IDirect3DTexture2 *a9) | |
6237 { | |
1159 | 6238 int absXDifference; // eax@1 |
6239 int absYDifference; // eax@1 | |
6240 unsigned int smallerabsdiff; // ebx@1 | |
6241 unsigned int largerabsdiff; | |
0 | 6242 double v16; // st7@7 |
6243 double v17; // st7@7 | |
6244 double v18; // st6@7 | |
6245 double v20; // st4@8 | |
6246 double v21; // st4@10 | |
6247 double v22; // st4@10 | |
6248 double v23; // st4@10 | |
6249 double v25; // st4@11 | |
6250 double v26; // st4@13 | |
6251 double v28; // st4@13 | |
6252 RenderVertexD3D3 v29[4]; // [sp+0h] [bp-94h]@7 | |
1159 | 6253 int xDifference; // [sp+88h] [bp-Ch]@1 |
0 | 6254 signed int v32; // [sp+8Ch] [bp-8h]@1 |
1159 | 6255 int yDifference; // [sp+90h] [bp-4h]@1 |
6256 | |
6257 xDifference = bankersRounding(dstX - srcX); | |
6258 yDifference = bankersRounding(dstY - srcY); | |
6259 absYDifference = abs(yDifference); | |
6260 absXDifference = abs(xDifference); | |
6261 smallerabsdiff = min(absXDifference, absYDifference); | |
6262 largerabsdiff = max(absXDifference, absYDifference); | |
6263 v32 = (11 * smallerabsdiff >> 5) + largerabsdiff; | |
0 | 6264 v16 = 1.0 / (double)v32; |
1159 | 6265 v17 = (double)yDifference * v16 * a4; |
6266 v18 = (double)xDifference * v16 * a4; | |
6267 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
6268 { | |
1637 | 6269 v20 = a3 * 1000.0 / (double)pODMRenderParams->shading_dist_mist; |
6270 v25 = a7 * 1000.0 / (double)pODMRenderParams->shading_dist_mist; | |
1159 | 6271 } |
6272 else | |
6273 { | |
6274 v20 = a3 * 0.061758894; | |
6275 v25 = a7 * 0.061758894; | |
6276 } | |
6277 v21 = 1.0 / a3; | |
6278 v22 = (double)yDifference * v16 * a8; | |
6279 v23 = (double)xDifference * v16 * a8; | |
6280 v26 = 1.0 - 1.0 / v25; | |
6281 v28 = 1.0 / a7; | |
0 | 6282 v29[0].pos.x = srcX + v17; |
6283 v29[0].pos.y = srcY - v18; | |
1159 | 6284 v29[0].pos.z = 1.0 - 1.0 / v20; |
6285 v29[0].rhw = v21; | |
0 | 6286 v29[0].diffuse = -1; |
6287 v29[0].specular = 0; | |
6288 v29[0].texcoord.x = 1.0; | |
6289 v29[0].texcoord.y = 0.0; | |
1159 | 6290 |
0 | 6291 v29[1].pos.x = v22 + dstX; |
6292 v29[1].pos.y = dstY - v23; | |
1159 | 6293 v29[1].pos.z = v26; |
6294 v29[1].rhw = v28; | |
0 | 6295 v29[1].diffuse = -16711936; |
6296 v29[1].specular = 0; | |
6297 v29[1].texcoord.x = 1.0; | |
6298 v29[1].texcoord.y = 1.0; | |
1159 | 6299 |
6300 v29[2].pos.x = dstX - v22; | |
6301 v29[2].pos.y = v23 + dstY; | |
6302 v29[2].pos.z = v26; | |
0 | 6303 v29[2].rhw = v28; |
1159 | 6304 v29[2].diffuse = -1; |
6305 v29[2].specular = 0; | |
0 | 6306 v29[2].texcoord.x = 0.0; |
6307 v29[2].texcoord.y = 1.0; | |
1159 | 6308 |
0 | 6309 v29[3].pos.x = srcX - v17; |
6310 v29[3].pos.y = v18 + srcY; | |
1159 | 6311 v29[3].pos.z = v29[0].pos.z; |
6312 v29[3].rhw = v21; | |
6313 v29[3].diffuse = -1; | |
6314 v29[3].specular = 0; | |
0 | 6315 v29[3].texcoord.x = 0.0; |
6316 v29[3].texcoord.y = 0.0; | |
186 | 6317 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); |
6318 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
6319 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
6320 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
6321 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
6322 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
0 | 6323 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, a9)); |
6324 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive( | |
6325 D3DPT_TRIANGLEFAN, | |
6326 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
6327 v29, | |
6328 4, | |
6329 24)); | |
186 | 6330 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); |
6331 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
6332 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
6333 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
6334 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
6335 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); | |
0 | 6336 } |
6337 | |
6338 //----- (004A4CC9) -------------------------------------------------------- | |
1390 | 6339 void Render::_4A4CC9_AddSomeBillboard(stru6_stru1_indoor_sw_billboard *a1, int diffuse) |
6340 { | |
0 | 6341 unsigned int v5; // eax@7 |
6342 char *v7; // edx@8 | |
6343 double v10; // st6@9 | |
6344 double v11; // st6@10 | |
6345 int v12; // ebx@13 | |
1390 | 6346 |
6347 if (a1->uNumVertices < 3) | |
6348 return; | |
6349 | |
6350 float depth = 1000000.0; | |
6351 for (uint i = 0; i < a1->uNumVertices; ++i) | |
6352 { | |
6353 if (a1->field_104[i].z < depth) | |
6354 depth = a1->field_104[i * 4].z; | |
6355 } | |
6356 | |
6357 v5 = Billboard_ProbablyAddToListAndSortByZOrder(depth); | |
6358 pBillboardRenderListD3D[v5].field_90 = 0; | |
6359 pBillboardRenderListD3D[v5].uParentBillboardID = -1; | |
6360 pBillboardRenderListD3D[v5].uOpacity = RenderBillboardD3D::Opaque_2; | |
6361 pBillboardRenderListD3D[v5].pTexture = 0; | |
6362 pBillboardRenderListD3D[v5].uNumVertices = a1->uNumVertices; | |
6363 pBillboardRenderListD3D[v5].z_order = depth; | |
6364 | |
6365 for (uint i = 0; i < a1->uNumVertices; ++i) | |
6366 { | |
6367 pBillboardRenderListD3D[v5].pQuads[i].pos.x = a1->field_104[i].x; | |
6368 pBillboardRenderListD3D[v5].pQuads[i].pos.y = a1->field_104[i].y; | |
6369 | |
6370 v10 = a1->field_104[i].z; | |
6371 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
6372 v11 = v10 * 0.061758894; | |
6373 else | |
1637 | 6374 v11 = v10 * 1000.0 / (double)pODMRenderParams->shading_dist_mist; |
1390 | 6375 pBillboardRenderListD3D[v5].pQuads[i].pos.z = 1.0 - 1.0 / v11; |
6376 pBillboardRenderListD3D[v5].pQuads[i].rhw = 1.0 / a1->field_104[i].z; | |
6377 | |
6378 if (diffuse & 0xFF000000) | |
6379 v12 = a1->field_104[i].diffuse; | |
6380 else | |
6381 v12 = diffuse; | |
6382 pBillboardRenderListD3D[v5].pQuads[i].diffuse = v12; | |
6383 pBillboardRenderListD3D[v5].pQuads[i].specular = 0; | |
6384 | |
6385 pBillboardRenderListD3D[v5].pQuads[i].texcoord.x = 0.0; | |
6386 pBillboardRenderListD3D[v5].pQuads[i].texcoord.y = 0.0; | |
0 | 6387 } |
6388 } | |
6389 | |
6390 //----- (004A4DE1) -------------------------------------------------------- | |
6391 bool Render::LoadTexture(const char *pName, unsigned int bMipMaps, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture) | |
6392 { | |
6393 HRESULT v12; // eax@14 | |
6394 unsigned __int16 *v13; // ecx@19 | |
6395 unsigned __int16 *v14; // eax@19 | |
6396 DWORD v15; // edx@20 | |
6397 HRESULT v16; // eax@23 | |
6398 stru350 Dst; // [sp+Ch] [bp-F8h]@12 | |
6399 | |
6400 auto pHWLTexture = pD3DBitmaps.LoadTexture(pName, bMipMaps); | |
6401 if ( pHWLTexture ) | |
6402 { | |
6403 bMipMaps = !strncmp(pName, "HDWTR", 5); | |
6404 if ( !pRenderD3D->CreateTexture( | |
6405 pHWLTexture->uWidth, | |
6406 pHWLTexture->uHeight, | |
6407 pOutSurface, | |
6408 pOutTexture, | |
6409 true, | |
6410 bMipMaps, | |
6411 uMinDeviceTextureDim) ) | |
1545 | 6412 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0); |
0 | 6413 //v10 = *pOutSurface; |
6414 //v11 = 0; | |
1578
56cc81b1ed49
workaround for crash on startup
Beri Levi berilevi@gmail.com
parents:
1574
diff
changeset
|
6415 if (bMipMaps) |
0 | 6416 { |
6417 Dst._450DDE(); | |
6418 //v20 = 0; | |
6419 Dst._450DF1(&stru_4EFCBC, &stru_4EFCBC); | |
6420 | |
6421 IDirectDrawSurface4 *pNextSurf = *pOutSurface; | |
6422 while ( 1 ) | |
6423 { | |
6424 DDSCAPS2 v19; | |
6425 memset(&v19, 0, sizeof(DDSCAPS2)); | |
6426 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP; | |
6427 | |
6428 DDSURFACEDESC2 desc; | |
6429 memset(&desc, 0, sizeof(DDSURFACEDESC2)); | |
6430 desc.dwSize = sizeof(DDSURFACEDESC2); | |
6431 | |
168 | 6432 if ( LockSurface_DDraw4(pNextSurf, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) |
0 | 6433 { |
1578
56cc81b1ed49
workaround for crash on startup
Beri Levi berilevi@gmail.com
parents:
1574
diff
changeset
|
6434 /*Dst.sub_451007_scale_image_bicubic( |
0 | 6435 pHWLTexture->pPixels, |
6436 pHWLTexture->uWidth, | |
6437 pHWLTexture->uHeight, | |
6438 pHWLTexture->uWidth, | |
6439 (unsigned short *)desc.lpSurface, | |
6440 desc.dwWidth, | |
6441 desc.dwHeight, | |
6442 desc.lPitch >> 1, | |
6443 0, | |
1578
56cc81b1ed49
workaround for crash on startup
Beri Levi berilevi@gmail.com
parents:
1574
diff
changeset
|
6444 0);*/ |
0 | 6445 ErrD3D(pNextSurf->Unlock(0)); |
6446 //bMipMaps = 0x4D86ACu; | |
6447 } | |
6448 if (FAILED(pNextSurf->GetAttachedSurface(&v19, &pNextSurf))) | |
6449 break; | |
6450 //v10 = (IDirectDrawSurface4 *)pName; | |
6451 //v11 = 0; | |
6452 } | |
6453 //v20 = -1; | |
6454 //nullsub_1(); | |
6455 } | |
6456 else | |
6457 { | |
6458 DDSCAPS2 v19; | |
6459 memset(&v19, 0, sizeof(DDSCAPS2)); | |
6460 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP; | |
6461 | |
6462 DDSURFACEDESC2 desc; | |
6463 memset(&desc, 0, sizeof(DDSURFACEDESC2)); | |
6464 desc.dwSize = sizeof(DDSURFACEDESC2); | |
6465 | |
168 | 6466 if ( LockSurface_DDraw4(*pOutSurface, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) |
0 | 6467 { |
6468 bMipMaps = 0; | |
6469 v13 = pHWLTexture->pPixels; | |
6470 v14 = (unsigned __int16 *)desc.lpSurface; | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6471 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
|
6472 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6473 for (v15 = 0; v15 < desc.dwWidth; v15++) |
0 | 6474 { |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6475 *v14 = *v13; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6476 ++v14; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6477 ++v13; |
0 | 6478 } |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6479 v14 += (desc.lPitch >> 1) - desc.dwWidth; |
0 | 6480 } |
6481 ErrD3D((*pOutSurface)->Unlock(0)); | |
6482 } | |
6483 } | |
6484 delete [] pHWLTexture->pPixels; | |
6485 delete pHWLTexture; | |
6486 return true; | |
6487 } | |
6488 return false; | |
6489 } | |
6490 | |
6491 //----- (004A5048) -------------------------------------------------------- | |
670 | 6492 bool Render::MoveSpriteToDevice( Sprite *pSprite ) |
6493 { | |
6494 | |
6495 HWLTexture *sprite_texture; // eax@1 | |
0 | 6496 unsigned __int16 *v9; // edx@5 |
6497 LPVOID v10; // eax@5 | |
6498 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4 | |
6499 | |
670 | 6500 sprite_texture = pD3DSprites.LoadTexture(pSprite->pName, pSprite->uPaletteID); |
6501 if ( sprite_texture ) | |
6502 { | |
6503 _gpu_memory_used += 2 * sprite_texture->uWidth * sprite_texture->uHeight; | |
6504 pSprite->uAreaX = sprite_texture->uAreaX; | |
6505 pSprite->uAreaY = sprite_texture->uAreaY; | |
6506 pSprite->uBufferWidth = sprite_texture->uBufferWidth; | |
6507 pSprite->uBufferHeight = sprite_texture->uBufferHeight; | |
6508 pSprite->uAreaWidth = sprite_texture->uAreaWidth; | |
6509 pSprite->uAreaHeight = sprite_texture->uAreaHeigth; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6510 //v6 = v3->uMinDeviceTextureDim; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6511 //v7 = v3->pRenderD3D; |
670 | 6512 if (!pRenderD3D->CreateTexture(sprite_texture->uWidth, sprite_texture->uHeight, &pSprite->pTextureSurface, &pSprite->pTexture, 1u, 0, uMinDeviceTextureDim)) |
1545 | 6513 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0); |
0 | 6514 //pSprite = v2->pTextureSurface; |
6515 //pSprite = (Sprite *)pSprite->pName; | |
6516 //v8 = pSprite; | |
670 | 6517 memset(&Dst, 0, sizeof(DDSURFACEDESC2)); |
0 | 6518 Dst.dwSize = 124; |
670 | 6519 if ( LockSurface_DDraw4((IDirectDrawSurface4 *)pSprite->pTextureSurface, &Dst, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) |
6520 { | |
6521 v9 = sprite_texture->pPixels; | |
6522 v10 = Dst.lpSurface; | |
6523 for (int i=0; i<sprite_texture->uHeight; ++i) | |
0 | 6524 { |
670 | 6525 for (int j=0; j<sprite_texture->uWidth/2; ++j) |
6526 { | |
0 | 6527 *(int *)v10 = *(int *)v9; |
6528 v9 += 2; | |
6529 v10 = (char *)v10 + 4; | |
670 | 6530 } |
6531 v10 = (char *)v10+Dst.lPitch-sprite_texture->uWidth*2; | |
0 | 6532 } |
670 | 6533 ErrD3D(pSprite->pTextureSurface->Unlock(0)); |
6534 } | |
6535 free(sprite_texture->pPixels); | |
6536 free(sprite_texture); | |
6537 return true; | |
6538 } | |
6539 return false; | |
0 | 6540 } |
6541 | |
6542 //----- (004A51CB) -------------------------------------------------------- | |
6543 void Render::BeginScene() | |
6544 { | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6545 //Render *v1; // esi@1 |
0 | 6546 unsigned int v2; // eax@1 |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6547 /*int v3; // eax@5 |
0 | 6548 unsigned __int16 **v4; // edi@6 |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6549 char *v5; // ebx@7*/ |
0 | 6550 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4 |
6551 | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6552 //v1 = this; |
0 | 6553 v2 = this->uNumSceneBegins; |
6554 this->uNumSceneBegins = v2 + 1; | |
6555 if ( !v2 ) | |
6556 { | |
6557 if ( this->pRenderD3D ) | |
6558 { | |
6559 if ( this->bColorKeySupported ) | |
6560 { | |
6561 memset(&Dst, 0, 0x7Cu); | |
6562 Dst.dwSize = 124; | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6563 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
|
6564 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6565 this->pTargetSurface = (unsigned __int16 *)Dst.lpSurface; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6566 this->uTargetSurfacePitch = Dst.lPitch >> 1; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6567 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
|
6568 } |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6569 --this->uNumSceneBegins; |
0 | 6570 } |
6571 } | |
6572 else | |
6573 { | |
6574 if ( !this->pTargetSurface ) | |
6575 { | |
6576 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
|
6577 if ( this->pTargetSurface ) |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6578 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6579 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
|
6580 } |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6581 --this->uNumSceneBegins; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6582 } |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6583 } |
0 | 6584 RestoreFrontBuffer(); |
6585 } | |
6586 } | |
6587 | |
6588 //----- (004A527D) -------------------------------------------------------- | |
6589 void Render::EndScene() | |
6590 { | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6591 if ( this->uNumSceneBegins ) |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6592 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6593 this->uNumSceneBegins--; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6594 if ( !this->uNumSceneBegins ) |
0 | 6595 { |
6596 if ( this->pRenderD3D ) | |
6597 { | |
6598 if ( this->bColorKeySupported ) | |
6599 { | |
6600 this->pTargetSurface = 0; | |
6601 this->uTargetSurfacePitch = 0; | |
6602 this->field_18_locked_pitch = 0; | |
6603 ErrD3D(this->pColorKeySurface4->Unlock(0)); | |
6604 } | |
6605 } | |
6606 else | |
6607 { | |
6608 this->pTargetSurface = 0; | |
6609 this->uTargetSurfacePitch = 0; | |
6610 this->field_18_locked_pitch = 0; | |
6611 UnlockBackBuffer(); | |
6612 } | |
6613 } | |
6614 } | |
6615 } | |
6616 | |
6617 //----- ( ) -------------------------------------------------------- | |
6618 unsigned int Render::_4A52F1(unsigned int this_, float a3) | |
6619 { | |
6620 unsigned int v3; // esi@1 | |
6621 double v4; // st7@2 | |
6622 double v5; // st7@6 | |
6623 double v6; // st6@6 | |
6624 unsigned int v7; // eax@6 | |
6625 double v8; // st5@6 | |
6626 double v9; // st4@6 | |
6627 HRESULT v10; // eax@6 | |
6628 HRESULT v11; // eax@6 | |
6629 unsigned int result; // eax@6 | |
6630 unsigned int v13; // eax@7 | |
6631 unsigned __int16 *v14; // ecx@7 | |
6632 int *v15; // eax@7 | |
6633 unsigned int v16; // ecx@8 | |
6634 __int16 v17; // ax@10 | |
6635 int v18; // esi@10 | |
6636 float v19; // edi@10 | |
6637 void *v20; // esi@10 | |
6638 int v21; // edx@10 | |
6639 int v22; // ecx@11 | |
6640 int v23; // edx@12 | |
6641 __int16 v24; // ax@15 | |
6642 int v25; // esi@15 | |
6643 float v26; // edi@15 | |
6644 char *v27; // esi@15 | |
6645 int v28; // edx@15 | |
6646 int v29; // ecx@16 | |
6647 int v30; // edx@17 | |
6648 int v31; // [sp-Ch] [bp-ACh]@11 | |
6649 int v32; // [sp-Ch] [bp-ACh]@16 | |
6650 const char *v33; // [sp+0h] [bp-A0h]@0 | |
6651 int v34; // [sp+4h] [bp-9Ch]@0 | |
6652 unsigned int v35; // [sp+8h] [bp-98h]@0 | |
6653 RenderVertexD3D3 v36[4]; // [sp+Ch] [bp-94h]@6 | |
6654 unsigned int v37; // [sp+8Ch] [bp-14h]@7 | |
6655 int v38; // [sp+90h] [bp-10h]@7 | |
6656 double v39; // [sp+94h] [bp-Ch]@6 | |
6657 float v40; // [sp+9Ch] [bp-4h]@6 | |
6658 | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
6659 __debugbreak(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
6660 |
0 | 6661 auto ecx0 = this; |
6662 v3 = 0; | |
1574 | 6663 |
6664 if (!this->pRenderD3D) | |
6665 __debugbreak(); // sw render | |
6666 | |
6667 //{ | |
0 | 6668 v4 = a3; |
6669 if ( a3 <= 1.0 ) | |
6670 { | |
6671 if ( v4 < 0.0 ) | |
6672 v4 = 0.0; | |
6673 } | |
6674 else | |
6675 { | |
6676 v4 = 1.0; | |
6677 } | |
1574 | 6678 __debugbreak(); // banker's rounding again |
0 | 6679 a3 = v4 * 255.0; |
6680 v39 = a3 + 6.7553994e15; | |
6681 LODWORD(v40) = LODWORD(v39); | |
693 | 6682 v5 = (double)(signed int)pViewport->uViewportTL_X; |
0 | 6683 v36[0].pos.x = v5; |
693 | 6684 v6 = (double)(signed int)pViewport->uViewportTL_Y; |
0 | 6685 v7 = this_ | (LODWORD(v39) << 24); |
693 | 6686 this_ = pViewport->uViewportBR_Y + 1; |
0 | 6687 v36[0].specular = 0; |
6688 v36[0].pos.y = v6; | |
6689 v36[0].diffuse = v7; | |
6690 v36[1].diffuse = v7; | |
6691 v36[0].pos.z = 0.0; | |
6692 v36[2].diffuse = v7; | |
6693 v36[3].diffuse = v7; | |
6694 v36[0].rhw = 1.0; | |
6695 v36[1].specular = 0; | |
6696 v36[0].texcoord.x = 0.0; | |
6697 v36[2].specular = 0; | |
6698 v36[3].specular = 0; | |
6699 v36[0].texcoord.y = 0.0; | |
6700 v36[1].pos.x = v5; | |
693 | 6701 v8 = (double)(pViewport->uViewportBR_Y + 1); |
0 | 6702 v36[1].pos.y = v8; |
6703 v36[1].pos.z = 0.0; | |
6704 v36[1].rhw = 1.0; | |
6705 v36[1].texcoord.x = 0.0; | |
6706 v36[1].texcoord.y = 0.0; | |
693 | 6707 v9 = (double)(signed int)pViewport->uViewportBR_X; |
0 | 6708 v36[2].pos.x = v9; |
6709 v36[2].pos.y = v8; | |
6710 v36[2].pos.z = 0.0; | |
6711 v36[2].rhw = 1.0; | |
6712 v36[2].texcoord.x = 0.0; | |
6713 v36[2].texcoord.y = 0.0; | |
6714 v36[3].pos.x = v9; | |
6715 v36[3].pos.y = v6; | |
6716 v36[3].pos.z = 0.0; | |
6717 v36[3].rhw = 1.0; | |
6718 v36[3].texcoord.x = 0.0; | |
6719 v36[3].texcoord.y = 0.0; | |
6720 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0)); | |
186 | 6721 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); |
6722 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
6723 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
6724 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA)); | |
6725 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA)); | |
6726 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
6727 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_ALWAYS)); | |
0 | 6728 ErrD3D(pRenderD3D->pDevice->DrawPrimitive( |
6729 D3DPT_TRIANGLEFAN, | |
6730 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
6731 v36, | |
6732 4, | |
6733 28)); | |
186 | 6734 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
6735 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
6736 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
6737 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
6738 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
6739 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_LESS)); | |
1574 | 6740 /*} |
0 | 6741 else |
6742 { | |
6743 v40 = (1.0 - a3) * 65536.0; | |
6744 v39 = v40 + 6.7553994e15; | |
6745 LODWORD(a3) = LODWORD(v39); | |
693 | 6746 v38 = (signed int)(pViewport->uViewportBR_X - pViewport->uViewportTL_X) >> 1; |
6747 HIDWORD(v39) = pViewport->uViewportBR_Y - pViewport->uViewportTL_Y + 1; | |
6748 v13 = pViewport->uViewportTL_X + ecx0->uTargetSurfacePitch - pViewport->uViewportBR_X; | |
6749 v14 = &ecx0->pTargetSurface[pViewport->uViewportTL_X + pViewport->uViewportTL_Y * ecx0->uTargetSurfacePitch]; | |
0 | 6750 v37 = 2 * v13; |
6751 LODWORD(v40) = (int)v14; | |
6752 | |
6753 int __i = 0; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
6754 v15 = dword_F1B430.data(); |
0 | 6755 do |
6756 { | |
6757 v16 = v3; | |
6758 v3 += LODWORD(a3); | |
6759 dword_F1B430[__i++] = v16 >> 16; | |
6760 } | |
6761 //while ( (signed int)v15 < (signed int)&Aureal3D_SplashScreen ); | |
6762 while (__i < 32); | |
6763 | |
6764 if ( pRenderer->uTargetGBits == 6 ) | |
6765 { | |
1574 | 6766 v17 = sr_42690D_colors_cvt(this_); |
0 | 6767 v18 = (65536 - LODWORD(a3)) * (v17 & 0x1F); |
6768 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); | |
6769 v19 = v40; | |
6770 v20 = off_4EFDB0; | |
6771 v21 = HIDWORD(v39); | |
6772 do | |
6773 { | |
6774 v22 = v38; | |
6775 v31 = v21; | |
6776 do | |
6777 { | |
6778 v23 = (*(int *)((char *)v20 | |
6779 + ((((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; | |
6780 result = this_ | |
6781 + (*((int *)v20 | |
6782 + (((unsigned __int8)(*((char *)v20 | |
6783 + ((((unsigned __int16)(*(short *)((char *)v20 | |
6784 + ((*(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); | |
6785 *(unsigned int *)LODWORD(v19) = result; | |
6786 LODWORD(v19) += 4; | |
6787 --v22; | |
6788 } | |
6789 while ( v22 ); | |
6790 LODWORD(v19) += v37; | |
6791 v21 = v31 - 1; | |
6792 } | |
6793 while ( v31 != 1 ); | |
6794 } | |
6795 else | |
6796 { | |
1574 | 6797 v24 = sr_4268E3_smthn_to_a1r5g5b5(this_); |
0 | 6798 v25 = (65536 - LODWORD(a3)) * (v24 & 0x1F); |
6799 this_ = (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3)) | |
6800 * (v24 & 0x3E0) & 0x3E00000u) >> 16 << 16) | (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3)) * (v24 & 0x3E0) & 0x3E00000u) >> 16); | |
6801 v26 = v40; | |
6802 v27 = (char *)off_4EFDB0; | |
6803 v28 = HIDWORD(v39); | |
6804 do | |
6805 { | |
6806 v29 = v38; | |
6807 v32 = v28; | |
6808 do | |
6809 { | |
6810 v30 = 32 | |
6811 * *(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; | |
6812 result = this_ | |
6813 + (*(int *)&v27[4 | |
6814 * (((unsigned __int8)(32 | |
6815 * 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); | |
6816 *(unsigned int *)LODWORD(v26) = result; | |
6817 LODWORD(v26) += 4; | |
6818 --v29; | |
6819 } | |
6820 while ( v29 ); | |
6821 LODWORD(v26) += v37; | |
6822 v28 = v32 - 1; | |
6823 } | |
6824 while ( v32 != 1 ); | |
6825 } | |
1574 | 6826 }*/ |
0 | 6827 return result; |
6828 } | |
6829 | |
6830 //----- (004A5B81) -------------------------------------------------------- | |
727 | 6831 void Render::SetTextureClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW) |
0 | 6832 { |
6833 this->bClip = 1; | |
6834 this->uClipY = uY; | |
6835 this->uClipX = uX; | |
6836 this->uClipW = uW; | |
6837 this->uClipZ = uZ; | |
6838 } | |
6839 | |
6840 //----- (004A5BB6) -------------------------------------------------------- | |
727 | 6841 void Render::ResetTextureClipRect() |
0 | 6842 { |
6843 this->uClipY = 0; | |
6844 this->uClipX = 0; | |
6845 this->bClip = 1; | |
6846 this->uClipW = 480; | |
6847 this->uClipZ = 640; | |
6848 } | |
6849 | |
6850 //----- (004A5BE3) -------------------------------------------------------- | |
6851 void Render::DrawTextureRGB(unsigned int uOutX, unsigned int uOutY, RGBTexture *a4) | |
6852 { | |
6853 int v4; // edi@3 | |
6854 unsigned __int16 *v5; // edx@3 | |
6855 unsigned __int16 *v6; // esi@3 | |
6856 unsigned int v8; // eax@5 | |
6857 unsigned int v9; // ebx@5 | |
6858 unsigned int v11; // eax@7 | |
6859 unsigned int v12; // ebx@8 | |
6860 unsigned int v15; // eax@14 | |
6861 int v19; // [sp+10h] [bp-8h]@3 | |
6862 unsigned int uOutXa; // [sp+20h] [bp+8h]@16 | |
6863 int v23; // [sp+28h] [bp+10h]@3 | |
6864 | |
6865 if ( this->uNumSceneBegins && a4 ) | |
6866 { | |
6867 v4 = a4->uWidth; | |
6868 v5 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch]; | |
6869 v6 = a4->pPixels; | |
6870 v23 = a4->uHeight; | |
6871 v19 = v4; | |
6872 if ( this->bClip ) | |
6873 { | |
1152 | 6874 if ( (signed int)uOutX < (signed int)this->uClipX ) |
6875 { | |
6876 v8 = this->uClipX - uOutX; | |
6877 v9 = uOutX - this->uClipX; | |
0 | 6878 v8 *= 2; |
6879 v4 += v9; | |
6880 v6 = (unsigned __int16 *)((char *)v6 + v8); | |
6881 v5 = (unsigned __int16 *)((char *)v5 + v8); | |
6882 } | |
1152 | 6883 if ( (signed int)uOutY < (signed int)this->uClipY ) |
6884 { | |
6885 v11 = this->uClipY - uOutY; | |
0 | 6886 v6 += v19 * v11; |
6887 v23 += uOutY - this->uClipY; | |
6888 v5 += this->uTargetSurfacePitch * v11; | |
6889 } | |
1152 | 6890 v12 = max(this->uClipX, uOutX); |
6891 if ( (signed int)(v4 + v12) > (signed int)this->uClipZ ) | |
6892 { | |
6893 v4 = this->uClipZ - max(this->uClipX, uOutX); | |
6894 } | |
6895 v15 = max(this->uClipY, uOutY); | |
6896 if ( (signed int)(v15 + v23) > (signed int)this->uClipW ) | |
6897 { | |
6898 v23 = this->uClipW - max(this->uClipY, uOutY); | |
6899 } | |
6900 } | |
6901 | |
6902 for (int outerCounter = 0; outerCounter < v23; outerCounter++) | |
6903 { | |
6904 for (int counter = 0; counter < v4; counter++) | |
6905 { | |
6906 *v5 = *v6; | |
6907 ++v5; | |
6908 ++v6; | |
6909 } | |
6910 v6 += v19 - v4; | |
6911 v5 += this->uTargetSurfacePitch - v4; | |
0 | 6912 } |
6913 } | |
6914 } | |
6915 | |
6916 //----- (004A5D33) -------------------------------------------------------- | |
1675 | 6917 void Render::CreditsTextureScroll(unsigned int pX, unsigned int pY, int move_X, int move_Y, RGBTexture *pTexture) |
0 | 6918 { |
6919 unsigned __int16 *v7; // ebx@3 | |
1675 | 6920 int full_width; // ecx@3 |
6921 int full_height; // edi@3 | |
0 | 6922 int v23; // edi@23 |
6923 unsigned __int16 *pTexturea; // [sp+28h] [bp+18h]@3 | |
6924 | |
6925 if ( this->uNumSceneBegins && pTexture ) | |
6926 { | |
6927 v7 = &this->pTargetSurface[pX + pY * this->uTargetSurfacePitch]; | |
1675 | 6928 full_width = pTexture->uWidth - move_X; |
6929 full_height = pTexture->uHeight - move_Y; | |
6930 pTexturea = &pTexture->pPixels[move_X + move_Y * pTexture->uWidth]; | |
6931 if ( this->bClip ) | |
6932 { | |
6933 if ( pX < this->uClipX )//åñëè êàäð âûõîäèò çà ïðàâóþ ãðàíèöó | |
6934 { | |
6935 pTexturea = (unsigned __int16 *)((char *)pTexturea + (2 * (this->uClipX - pX))); | |
6936 full_width += pX - this->uClipX; | |
6937 v7 = (unsigned __int16 *)((char *)v7 + (2 * (this->uClipX - pX))); | |
6938 } | |
6939 if ( pY < this->uClipY )//åñëè êàäð âûõîäèò çà âåðõíþþ ãðàíèöó | |
6940 { | |
6941 pTexturea += pTexture->uWidth * (this->uClipY - pY); | |
6942 full_height += pY - this->uClipY; | |
6943 v7 += this->uTargetSurfacePitch * (this->uClipY - pY); | |
6944 } | |
6945 if ( this->uClipX < pX )//åñëè ïðàâàÿ ãðàíèöà îêíà ìåíüøå õ êîîðäèíàòû êàäðà | |
6946 this->uClipX = pX; | |
6947 if ( this->uClipY < pY )//åñëè âåðõíÿÿ ãðàíèöà îêíà ìåíüøå y êîîðäèíàòû êàäðà | |
6948 this->uClipY = pY; | |
6949 if ( (full_width + this->uClipX) > this->uClipZ )//åñëè øèðèíà êàäðà âûõîäèò çà ïðàâóþ ãðàíèöó | |
6950 { | |
6951 if ( this->uClipX < pX ) | |
6952 this->uClipX = pX; | |
6953 full_width = this->uClipZ - this->uClipX; | |
6954 } | |
6955 if ( (full_height + this->uClipY) > this->uClipW )//åñëè âûñîòà êàäðà âûõîäèò çà íèæíþþ ãðàíèöó | |
6956 { | |
6957 if ( this->uClipY < pY ) | |
6958 this->uClipY = pY; | |
6959 full_height = this->uClipW - this->uClipY; | |
6960 } | |
6961 } | |
6962 if ( full_height > 0 ) | |
6963 { | |
0 | 6964 do |
6965 { | |
1675 | 6966 if ( full_width > 0 ) |
0 | 6967 { |
1675 | 6968 v23 = full_width; |
0 | 6969 do |
6970 { | |
1675 | 6971 if ( *pTexturea != TargetColor(0, 0xFFu, 0xFFu) ) |
0 | 6972 *v7 = *pTexturea; |
6973 ++pTexturea; | |
6974 ++v7; | |
6975 --v23; | |
6976 } | |
6977 while ( v23 ); | |
6978 } | |
1675 | 6979 v7 += this->uTargetSurfacePitch - full_width; |
6980 pTexturea = (unsigned __int16 *)((char *)pTexturea + 2 * (pTexture->uWidth - full_width)); | |
6981 --full_height; | |
6982 } | |
6983 while ( full_height ); | |
0 | 6984 } |
6985 } | |
6986 } | |
6987 | |
6988 //----- (004A6E7E) -------------------------------------------------------- | |
6989 void Render::_4A6E7E(unsigned int a2, unsigned int a3, Texture *a4) | |
6990 { | |
6991 unsigned __int16 *v4; // eax@4 | |
6992 int v5; // edx@4 | |
6993 unsigned int v6; // edi@4 | |
6994 unsigned int v7; // edx@5 | |
6995 unsigned int v8; // edx@6 | |
6996 unsigned int v9; // edx@7 | |
6997 unsigned int v10; // edx@8 | |
6998 unsigned int v11; // ebx@9 | |
6999 unsigned int v12; // esi@11 | |
7000 unsigned int v13; // edx@12 | |
7001 unsigned int v14; // ebx@15 | |
7002 unsigned int v15; // esi@17 | |
7003 unsigned int v16; // edi@18 | |
7004 char v17; // zf@29 | |
7005 int v18; // [sp+14h] [bp-Ch]@4 | |
7006 int v19; // [sp+18h] [bp-8h]@4 | |
7007 unsigned __int8 *v20; // [sp+1Ch] [bp-4h]@4 | |
7008 int v21; // [sp+28h] [bp+8h]@25 | |
7009 int v22; // [sp+28h] [bp+8h]@34 | |
7010 unsigned int v23; // [sp+2Ch] [bp+Ch]@23 | |
7011 unsigned int v24; // [sp+2Ch] [bp+Ch]@32 | |
7012 | |
7013 if ( this->uNumSceneBegins && a4 && a4->pPalette16 ) | |
7014 { | |
7015 v4 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; | |
710 | 7016 v20 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7017 v5 = a4->uTextureWidth; |
7018 v6 = a4->uTextureHeight; | |
7019 v19 = a4->uTextureWidth; | |
7020 v18 = a4->uTextureWidth; | |
7021 if ( this->bClip ) | |
7022 { | |
7023 v7 = this->uClipX; | |
7024 if ( (signed int)a2 < (signed int)v7 ) | |
7025 { | |
7026 v8 = v7 - a2; | |
7027 v20 += v8; | |
7028 v19 += a2 - this->uClipX; | |
7029 v4 += v8; | |
7030 } | |
7031 v9 = this->uClipY; | |
7032 if ( (signed int)a3 < (signed int)v9 ) | |
7033 { | |
7034 v10 = v9 - a3; | |
7035 v20 += v18 * v10; | |
7036 v6 = a3 - this->uClipY + a4->uTextureHeight; | |
7037 v4 += this->uTargetSurfacePitch * v10; | |
7038 } | |
7039 v11 = this->uClipX; | |
7040 v5 = v19; | |
7041 if ( (signed int)v11 < (signed int)a2 ) | |
7042 v11 = a2; | |
7043 v12 = this->uClipZ; | |
7044 if ( (signed int)(v19 + v11) > (signed int)v12 ) | |
7045 { | |
7046 v13 = this->uClipX; | |
7047 if ( (signed int)v13 < (signed int)a2 ) | |
7048 v13 = a2; | |
7049 v5 = v12 - v13; | |
7050 } | |
7051 v14 = this->uClipY; | |
7052 if ( (signed int)v14 < (signed int)a3 ) | |
7053 v14 = a3; | |
7054 v15 = this->uClipW; | |
7055 if ( (signed int)(v6 + v14) > (signed int)v15 ) | |
7056 { | |
7057 v16 = this->uClipY; | |
7058 if ( (signed int)v16 < (signed int)a3 ) | |
7059 v16 = a3; | |
7060 v6 = v15 - v16; | |
7061 } | |
7062 } | |
7063 if ( pRenderer->uTargetGBits == 5 ) | |
7064 { | |
7065 if ( (signed int)v6 > 0 ) | |
7066 { | |
7067 v23 = v6; | |
7068 do | |
7069 { | |
7070 if ( v5 > 0 ) | |
7071 { | |
7072 v21 = v5; | |
7073 do | |
7074 { | |
7075 if ( *v20 ) | |
7076 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x3DEF; | |
7077 ++v4; | |
7078 ++v20; | |
7079 --v21; | |
7080 } | |
7081 while ( v21 ); | |
7082 } | |
7083 v20 += v18 - v5; | |
7084 v17 = v23-- == 1; | |
7085 v4 += this->uTargetSurfacePitch - v5; | |
7086 } | |
7087 while ( !v17 ); | |
7088 } | |
7089 } | |
7090 else | |
7091 { | |
7092 if ( (signed int)v6 > 0 ) | |
7093 { | |
7094 v24 = v6; | |
7095 do | |
7096 { | |
7097 if ( v5 > 0 ) | |
7098 { | |
7099 v22 = v5; | |
7100 do | |
7101 { | |
7102 if ( *v20 ) | |
7103 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x7BEF; | |
7104 ++v4; | |
7105 ++v20; | |
7106 --v22; | |
7107 } | |
7108 while ( v22 ); | |
7109 } | |
7110 v20 += v18 - v5; | |
7111 v17 = v24-- == 1; | |
7112 v4 += this->uTargetSurfacePitch - v5; | |
7113 } | |
7114 while ( !v17 ); | |
7115 } | |
7116 } | |
7117 } | |
7118 } | |
7119 | |
7120 //----- (004A6DF5) -------------------------------------------------------- | |
7121 int Render::_4A6DF5(unsigned __int16 *pBitmap, unsigned int uBitmapPitch, Vec2_int_ *pBitmapXY, unsigned __int16 *pTarget, unsigned int uTargetPitch, Vec4_int_ *a7) | |
7122 { | |
7123 int result; // eax@0 | |
7124 int v8; // ecx@3 | |
7125 unsigned __int16 *v9; // edi@4 | |
7126 unsigned __int16 *v10; // ebx@4 | |
7127 int v11; // esi@4 | |
7128 unsigned __int16 *pBitmapa; // [sp+14h] [bp+8h]@3 | |
7129 unsigned __int16 *pTargeta; // [sp+20h] [bp+14h]@3 | |
7130 | |
7131 if ( pBitmap ) | |
7132 { | |
7133 if ( pTarget ) | |
7134 { | |
7135 pBitmapa = &pBitmap[pBitmapXY->x + uBitmapPitch * pBitmapXY->y]; | |
7136 pTargeta = &pTarget[a7->x + uTargetPitch * a7->y]; | |
7137 v8 = a7->z - a7->x; | |
7138 result = a7->w - a7->y; | |
7139 if ( result > 0 ) | |
7140 { | |
7141 v9 = pBitmapa; | |
7142 v10 = pTargeta; | |
7143 v11 = a7->w - a7->y; | |
7144 do | |
7145 { | |
7146 if ( v8 > 0 ) | |
7147 { | |
7148 result = v8; | |
7149 do | |
7150 { | |
7151 *v9 = *v10; | |
7152 ++v9; | |
7153 ++v10; | |
7154 --result; | |
7155 } | |
7156 while ( result ); | |
7157 } | |
7158 v9 += uBitmapPitch - v8; | |
7159 v10 += uTargetPitch - v8; | |
7160 --v11; | |
7161 } | |
7162 while ( v11 ); | |
7163 } | |
7164 } | |
7165 } | |
7166 return result; | |
7167 } | |
7168 | |
7169 //----- (004A6D87) -------------------------------------------------------- | |
7170 void Render::FillRectFast(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, unsigned int uColor16) | |
7171 { | |
7172 if (!uNumSceneBegins) | |
7173 return; | |
7174 | |
7175 unsigned __int32 twoColors = (uColor16 << 16) | uColor16; | |
7176 for (uint y = 0; y < uHeight; ++y) | |
7177 { | |
7178 auto pDst = &pTargetSurface[uX + (y + uY) * uTargetSurfacePitch]; | |
7179 | |
7180 memset32(pDst, twoColors, uWidth / 2); | |
7181 if (uWidth & 1) | |
7182 pDst[uWidth - 1] = uColor16; | |
7183 } | |
7184 } | |
7185 | |
7186 //----- (004A6C4F) -------------------------------------------------------- | |
7187 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) | |
7188 { | |
7189 unsigned int v9; // edi@2 | |
7190 unsigned int v10; // esi@2 | |
7191 unsigned __int16 *v11; // eax@2 | |
7192 unsigned int v12; // ebx@3 | |
7193 signed int v13; // edx@5 | |
7194 int v14; // edx@6 | |
7195 signed int v15; // ebx@7 | |
7196 unsigned int v16; // edx@9 | |
7197 signed int v17; // edi@10 | |
7198 signed int v18; // ebx@13 | |
7199 unsigned int v19; // edx@15 | |
7200 signed int v20; // esi@16 | |
7201 unsigned int v21; // esi@22 | |
7202 unsigned __int16 v22; // dx@24 | |
7203 char v23; // zf@28 | |
7204 unsigned __int8 *v24; // [sp+Ch] [bp-4h]@2 | |
7205 unsigned int uOutXa; // [sp+18h] [bp+8h]@20 | |
7206 | |
7207 if ( this->uNumSceneBegins ) | |
7208 { | |
7209 v9 = uCharWidth; | |
7210 v10 = uCharHeight; | |
7211 v11 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch]; | |
7212 v24 = pFontPixels; | |
7213 if ( this->bClip ) | |
7214 { | |
7215 v12 = this->uClipX; | |
7216 if ( uOutX < (signed int)v12 ) | |
7217 { | |
7218 v24 = &pFontPixels[v12 - uOutX]; | |
7219 v11 += v12 - uOutX; | |
7220 v9 = uCharWidth + uOutX - v12; | |
7221 } | |
7222 v13 = this->uClipY; | |
7223 if ( uOutY < v13 ) | |
7224 { | |
7225 v14 = v13 - uOutY; | |
7226 v24 += uCharWidth * v14; | |
7227 v10 = uCharHeight + uOutY - this->uClipY; | |
7228 v11 += this->uTargetSurfacePitch * v14; | |
7229 } | |
7230 v15 = this->uClipX; | |
7231 if ( v15 < uOutX ) | |
7232 v15 = uOutX; | |
7233 v16 = this->uClipZ; | |
7234 if ( (signed int)(v9 + v15) > (signed int)v16 ) | |
7235 { | |
7236 v17 = this->uClipX; | |
7237 if ( v17 < uOutX ) | |
7238 v17 = uOutX; | |
7239 v9 = v16 - v17; | |
7240 } | |
7241 v18 = this->uClipY; | |
7242 if ( v18 < uOutY ) | |
7243 v18 = uOutY; | |
7244 v19 = this->uClipW; | |
7245 if ( (signed int)(v10 + v18) > (signed int)v19 ) | |
7246 { | |
7247 v20 = this->uClipY; | |
7248 if ( v20 < uOutY ) | |
7249 v20 = uOutY; | |
7250 v10 = v19 - v20; | |
7251 } | |
7252 } | |
7253 if ( (signed int)v10 > 0 ) | |
7254 { | |
7255 uOutXa = v10; | |
7256 do | |
7257 { | |
7258 if ( (signed int)v9 > 0 ) | |
7259 { | |
7260 v21 = v9; | |
7261 do | |
7262 { | |
7263 if ( *v24 ) | |
7264 { | |
7265 v22 = uShadowColor; | |
7266 if ( *v24 != 1 ) | |
7267 v22 = uFaceColor; | |
7268 *v11 = v22; | |
7269 } | |
7270 ++v11; | |
7271 ++v24; | |
7272 --v21; | |
7273 } | |
7274 while ( v21 ); | |
7275 } | |
7276 v24 += uCharWidth - v9; | |
7277 v23 = uOutXa-- == 1; | |
7278 v11 += this->uTargetSurfacePitch - v9; | |
7279 } | |
7280 while ( !v23 ); | |
7281 } | |
7282 } | |
7283 } | |
7284 | |
7285 //----- (004A6A68) -------------------------------------------------------- | |
1496 | 7286 void Render::GetLeather(unsigned int a2, unsigned int a3, Texture *a4, __int16 height) |
7287 { | |
0 | 7288 Texture tex; // [sp+Ch] [bp-48h]@1 |
1496 | 7289 |
0 | 7290 memcpy(&tex, a4, sizeof(tex)); |
1496 | 7291 tex.uTextureHeight = a4->uTextureHeight - height; |
7292 if ( (signed __int16)tex.uTextureHeight > 0 ) | |
0 | 7293 DrawTextureIndexed(a2, a3, &tex); |
7294 } | |
7295 | |
7296 //----- (004A6AB1) -------------------------------------------------------- | |
1268 | 7297 void Render::DrawTextPalette( int x, int y, unsigned char* font_pixels, int a5, unsigned int uFontHeight, unsigned __int16 *pPalette, int a8 ) |
7298 { | |
0 | 7299 int v8; // edi@2 |
7300 unsigned int v9; // esi@2 | |
7301 unsigned __int16 *v10; // eax@2 | |
7302 unsigned char *v11; // edx@2 | |
7303 unsigned int v12; // ebx@3 | |
7304 signed int v13; // edx@5 | |
7305 int v14; // edx@6 | |
7306 signed int v15; // ebx@7 | |
7307 unsigned int v16; // edx@9 | |
7308 signed int v17; // edi@10 | |
7309 signed int v18; // ebx@13 | |
7310 unsigned int v19; // edx@15 | |
7311 signed int v20; // esi@16 | |
7312 int v21; // ebx@22 | |
7313 char v22; // zf@28 | |
7314 int v23; // ebx@31 | |
7315 unsigned __int16 v24; // si@35 | |
7316 int v25; // [sp+Ch] [bp-4h]@2 | |
7317 int v26; // [sp+1Ch] [bp+Ch]@24 | |
7318 int v27; // [sp+1Ch] [bp+Ch]@33 | |
7319 unsigned int v28; // [sp+20h] [bp+10h]@30 | |
7320 unsigned int v29; // [sp+24h] [bp+14h]@22 | |
7321 unsigned int v30; // [sp+24h] [bp+14h]@31 | |
7322 | |
7323 auto a2 = x; | |
7324 auto a3 = y; | |
7325 auto a6 = uFontHeight; | |
7326 if ( this->uNumSceneBegins ) | |
7327 { | |
7328 v8 = a5; | |
7329 v9 = a6; | |
7330 v10 = &pTargetSurface[x + y * uTargetSurfacePitch]; | |
1268 | 7331 v11 = (unsigned char *)font_pixels; |
7332 v25 = (int)font_pixels; | |
0 | 7333 if ( this->bClip ) |
7334 { | |
7335 v12 = this->uClipX; | |
7336 if ( a2 < (signed int)v12 ) | |
7337 { | |
1268 | 7338 v25 = v12 - a2 + (int)font_pixels; |
0 | 7339 v10 += v12 - a2; |
7340 v8 = a5 + a2 - v12; | |
7341 } | |
7342 v13 = this->uClipY; | |
7343 if ( a3 < v13 ) | |
7344 { | |
7345 v14 = v13 - a3; | |
7346 v25 += a5 * v14; | |
7347 v9 = a6 + a3 - this->uClipY; | |
7348 v10 += this->uTargetSurfacePitch * v14; | |
7349 } | |
7350 v15 = this->uClipX; | |
7351 if ( v15 < a2 ) | |
7352 v15 = a2; | |
7353 v16 = this->uClipZ; | |
7354 if ( v8 + v15 > (signed int)v16 ) | |
7355 { | |
7356 v17 = this->uClipX; | |
7357 if ( v17 < a2 ) | |
7358 v17 = a2; | |
7359 v8 = v16 - v17; | |
7360 } | |
7361 v18 = this->uClipY; | |
7362 if ( v18 < a3 ) | |
7363 v18 = a3; | |
7364 v19 = this->uClipW; | |
7365 if ( (signed int)(v9 + v18) > (signed int)v19 ) | |
7366 { | |
7367 v20 = this->uClipY; | |
7368 if ( v20 < a3 ) | |
7369 v20 = a3; | |
7370 v9 = v19 - v20; | |
7371 } | |
7372 v11 = (unsigned char *)v25; | |
7373 } | |
7374 if ( a8 ) | |
7375 { | |
7376 v28 = pRenderer->uTargetGMask | pRenderer->uTargetBMask; | |
7377 if ( (signed int)v9 > 0 ) | |
7378 { | |
7379 v23 = a5; | |
7380 v30 = v9; | |
7381 do | |
7382 { | |
7383 if ( v8 > 0 ) | |
7384 { | |
7385 v27 = v8; | |
7386 do | |
7387 { | |
7388 if ( *v11 ) | |
7389 v24 = pPalette[*v11]; | |
7390 else | |
7391 v24 = v28; | |
7392 *v10 = v24; | |
7393 ++v10; | |
7394 ++v11; | |
7395 --v27; | |
7396 } | |
7397 while ( v27 ); | |
7398 } | |
7399 v11 += v23 - v8; | |
7400 v22 = v30-- == 1; | |
7401 v10 += this->uTargetSurfacePitch - v8; | |
7402 } | |
7403 while ( !v22 ); | |
7404 } | |
7405 } | |
7406 else | |
7407 { | |
7408 if ( (signed int)v9 > 0 ) | |
7409 { | |
7410 v21 = a5; | |
7411 v29 = v9; | |
7412 do | |
7413 { | |
7414 if ( v8 > 0 ) | |
7415 { | |
7416 v26 = v8; | |
7417 do | |
7418 { | |
7419 if ( *v11 ) | |
7420 *v10 = pPalette[*v11]; | |
7421 ++v10; | |
7422 ++v11; | |
7423 --v26; | |
7424 } | |
7425 while ( v26 ); | |
7426 } | |
7427 v11 += v21 - v8; | |
7428 v22 = v29-- == 1; | |
7429 v10 += this->uTargetSurfacePitch - v8; | |
7430 } | |
7431 while ( !v22 ); | |
7432 } | |
7433 } | |
7434 } | |
7435 } | |
7436 | |
7437 //----- (004A68EF) -------------------------------------------------------- | |
7438 void Render::DrawTransparentGreenShade(signed int a2, signed int a3, Texture *pTexture) | |
7439 { | |
7440 Texture *v4; // edi@2 | |
7441 unsigned int v5; // ebx@4 | |
7442 unsigned __int16 *v6; // eax@4 | |
7443 signed int v7; // edx@5 | |
7444 int v8; // edx@6 | |
7445 signed int v9; // edx@7 | |
7446 int v10; // edx@8 | |
7447 signed int v11; // edx@9 | |
7448 signed int v12; // esi@12 | |
7449 signed int v13; // esi@15 | |
7450 unsigned int v14; // edx@17 | |
7451 signed int v15; // esi@18 | |
7452 unsigned __int8 *v16; // ebx@22 | |
7453 char v17; // zf@28 | |
7454 int v18; // [sp+10h] [bp-10h]@4 | |
7455 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
7456 int v20; // [sp+1Ch] [bp-4h]@4 | |
7457 int v21; // [sp+28h] [bp+8h]@24 | |
7458 unsigned int v22; // [sp+2Ch] [bp+Ch]@22 | |
7459 unsigned int pTexturea; // [sp+30h] [bp+10h]@11 | |
7460 | |
7461 if ( this->uNumSceneBegins ) | |
7462 { | |
7463 v4 = pTexture; | |
7464 if ( pTexture ) | |
7465 { | |
7466 if ( pTexture->pPalette16 ) | |
7467 { | |
7468 v5 = pTexture->uTextureHeight; | |
7469 v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; | |
710 | 7470 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7471 v20 = pTexture->uTextureWidth; |
7472 v18 = pTexture->uTextureWidth; | |
7473 if ( this->bClip ) | |
7474 { | |
7475 v7 = this->uClipX; | |
7476 if ( a2 < v7 ) | |
7477 { | |
7478 v8 = v7 - a2; | |
7479 v19 += v8; | |
7480 v20 += a2 - this->uClipX; | |
7481 v6 += v8; | |
7482 } | |
7483 v9 = this->uClipY; | |
7484 v5 = pTexture->uTextureHeight; | |
7485 if ( a3 < v9 ) | |
7486 { | |
7487 v10 = v9 - a3; | |
7488 v19 += v18 * v10; | |
7489 v5 = a3 - this->uClipY + pTexture->uTextureHeight; | |
7490 v4 = pTexture; | |
7491 v6 += this->uTargetSurfacePitch * v10; | |
7492 } | |
7493 v11 = this->uClipX; | |
7494 if ( v11 < a2 ) | |
7495 v11 = a2; | |
7496 pTexturea = this->uClipZ; | |
7497 if ( v11 + v20 > (signed int)pTexturea ) | |
7498 { | |
7499 v12 = this->uClipX; | |
7500 if ( v12 < a2 ) | |
7501 v12 = a2; | |
7502 v20 = pTexturea - v12; | |
7503 } | |
7504 v13 = this->uClipY; | |
7505 if ( v13 < a3 ) | |
7506 v13 = a3; | |
7507 v14 = this->uClipW; | |
7508 if ( (signed int)(v5 + v13) > (signed int)v14 ) | |
7509 { | |
7510 v15 = this->uClipY; | |
7511 if ( v15 < a3 ) | |
7512 v15 = a3; | |
7513 v5 = v14 - v15; | |
7514 } | |
7515 } | |
7516 if ( (signed int)v5 > 0 ) | |
7517 { | |
7518 v22 = v5; | |
7519 v16 = v19; | |
7520 do | |
7521 { | |
7522 if ( v20 > 0 ) | |
7523 { | |
7524 v21 = v20; | |
7525 do | |
7526 { | |
7527 if ( *v16 ) | |
7528 *v6 = this->uTargetGMask & v4->pPalette16[*v16]; | |
7529 ++v6; | |
7530 ++v16; | |
7531 --v21; | |
7532 } | |
7533 while ( v21 ); | |
7534 } | |
7535 v16 += v18 - v20; | |
7536 v17 = v22-- == 1; | |
7537 v6 += this->uTargetSurfacePitch - v20; | |
7538 } | |
7539 while ( !v17 ); | |
7540 } | |
7541 } | |
7542 } | |
7543 } | |
7544 } | |
7545 | |
7546 //----- (004A6776) -------------------------------------------------------- | |
315 | 7547 void Render::DrawTransparentRedShade(unsigned int a2, unsigned int a3, Texture *a4) |
0 | 7548 { |
7549 Texture *v4; // edi@2 | |
7550 unsigned int v5; // ebx@4 | |
7551 unsigned __int16 *v6; // eax@4 | |
7552 unsigned int v7; // edx@5 | |
7553 unsigned int v8; // edx@6 | |
7554 unsigned int v9; // edx@7 | |
7555 unsigned int v10; // edx@8 | |
7556 unsigned int v11; // edx@9 | |
7557 unsigned int v12; // esi@12 | |
7558 unsigned int v13; // esi@15 | |
7559 unsigned int v14; // edx@17 | |
7560 unsigned int v15; // esi@18 | |
7561 unsigned __int8 *v16; // ebx@22 | |
7562 char v17; // zf@28 | |
7563 int v18; // [sp+10h] [bp-10h]@4 | |
7564 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
7565 int v20; // [sp+1Ch] [bp-4h]@4 | |
7566 int a2a; // [sp+28h] [bp+8h]@24 | |
7567 unsigned int a3a; // [sp+2Ch] [bp+Ch]@22 | |
7568 unsigned int a4a; // [sp+30h] [bp+10h]@11 | |
7569 | |
7570 if ( this->uNumSceneBegins ) | |
7571 { | |
7572 v4 = a4; | |
7573 if ( a4 ) | |
7574 { | |
7575 if ( a4->pPalette16 ) | |
7576 { | |
7577 v5 = a4->uTextureHeight; | |
7578 v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; | |
710 | 7579 v19 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7580 v20 = a4->uTextureWidth; |
7581 v18 = a4->uTextureWidth; | |
7582 if ( this->bClip ) | |
7583 { | |
7584 v7 = this->uClipX; | |
7585 if ( (signed int)a2 < (signed int)v7 ) | |
7586 { | |
7587 v8 = v7 - a2; | |
7588 v19 += v8; | |
7589 v20 += a2 - this->uClipX; | |
7590 v6 += v8; | |
7591 } | |
7592 v9 = this->uClipY; | |
7593 v5 = a4->uTextureHeight; | |
7594 if ( (signed int)a3 < (signed int)v9 ) | |
7595 { | |
7596 v10 = v9 - a3; | |
7597 v19 += v18 * v10; | |
7598 v5 = a3 - this->uClipY + a4->uTextureHeight; | |
7599 v4 = a4; | |
7600 v6 += this->uTargetSurfacePitch * v10; | |
7601 } | |
7602 v11 = this->uClipX; | |
7603 if ( (signed int)v11 < (signed int)a2 ) | |
7604 v11 = a2; | |
7605 a4a = this->uClipZ; | |
7606 if ( (signed int)(v11 + v20) > (signed int)a4a ) | |
7607 { | |
7608 v12 = this->uClipX; | |
7609 if ( (signed int)v12 < (signed int)a2 ) | |
7610 v12 = a2; | |
7611 v20 = a4a - v12; | |
7612 } | |
7613 v13 = this->uClipY; | |
7614 if ( (signed int)v13 < (signed int)a3 ) | |
7615 v13 = a3; | |
7616 v14 = this->uClipW; | |
7617 if ( (signed int)(v5 + v13) > (signed int)v14 ) | |
7618 { | |
7619 v15 = this->uClipY; | |
7620 if ( (signed int)v15 < (signed int)a3 ) | |
7621 v15 = a3; | |
7622 v5 = v14 - v15; | |
7623 } | |
7624 } | |
7625 if ( (signed int)v5 > 0 ) | |
7626 { | |
7627 a3a = v5; | |
7628 v16 = v19; | |
7629 do | |
7630 { | |
7631 if ( v20 > 0 ) | |
7632 { | |
7633 a2a = v20; | |
7634 do | |
7635 { | |
7636 if ( *v16 ) | |
7637 *v6 = this->uTargetRMask & v4->pPalette16[*v16]; | |
7638 ++v6; | |
7639 ++v16; | |
7640 --a2a; | |
7641 } | |
7642 while ( a2a ); | |
7643 } | |
7644 v16 += v18 - v20; | |
7645 v17 = a3a-- == 1; | |
7646 v6 += this->uTargetSurfacePitch - v20; | |
7647 } | |
7648 while ( !v17 ); | |
7649 } | |
7650 } | |
7651 } | |
7652 } | |
7653 } | |
7654 | |
7655 //----- (004A65CC) -------------------------------------------------------- | |
7656 void Render::_4A65CC(unsigned int x, unsigned int y, Texture *a4, Texture *a5, int a6, int a7, int a8) | |
7657 { | |
7658 unsigned __int16 *v8; // esi@6 | |
7659 unsigned int v9; // edi@6 | |
7660 unsigned int v10; // eax@7 | |
7661 unsigned int v11; // eax@8 | |
7662 unsigned int v12; // eax@9 | |
7663 unsigned int v13; // eax@10 | |
7664 unsigned int v14; // edx@11 | |
7665 unsigned int v15; // eax@13 | |
7666 unsigned int v16; // edx@14 | |
7667 unsigned int v17; // edx@17 | |
7668 unsigned int v18; // eax@19 | |
7669 unsigned int v19; // edx@20 | |
7670 int v20; // eax@27 | |
7671 int v21; // edx@29 | |
7672 int v22; // [sp+Ch] [bp-Ch]@6 | |
7673 int v23; // [sp+Ch] [bp-Ch]@24 | |
7674 unsigned __int8 *v24; // [sp+14h] [bp-4h]@6 | |
7675 int xa; // [sp+20h] [bp+8h]@26 | |
7676 unsigned int ya; // [sp+24h] [bp+Ch]@24 | |
7677 int v27; // [sp+2Ch] [bp+14h]@6 | |
7678 | |
7679 if ( this->uNumSceneBegins && a4 && a4->pPalette16 && a5 && a5->pPalette16 ) | |
7680 { | |
7681 v8 = &this->pTargetSurface[x + y * this->uTargetSurfacePitch]; | |
710 | 7682 v24 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7683 v27 = a4->uTextureWidth; |
7684 v9 = a4->uTextureHeight; | |
7685 v22 = a4->uTextureWidth; | |
7686 if ( this->bClip ) | |
7687 { | |
7688 v10 = this->uClipX; | |
7689 if ( (signed int)x < (signed int)v10 ) | |
7690 { | |
7691 v11 = v10 - x; | |
7692 v24 += v11; | |
7693 v27 += x - this->uClipX; | |
7694 v8 += v11; | |
7695 } | |
7696 v12 = this->uClipY; | |
7697 if ( (signed int)y < (signed int)v12 ) | |
7698 { | |
7699 v13 = v12 - y; | |
7700 v24 += v22 * v13; | |
7701 v9 = y - this->uClipY + a4->uTextureHeight; | |
7702 v8 += this->uTargetSurfacePitch * v13; | |
7703 } | |
7704 v14 = this->uClipX; | |
7705 if ( (signed int)v14 < (signed int)x ) | |
7706 v14 = x; | |
7707 v15 = this->uClipZ; | |
7708 if ( (signed int)(v27 + v14) > (signed int)v15 ) | |
7709 { | |
7710 v16 = this->uClipX; | |
7711 if ( (signed int)v16 < (signed int)x ) | |
7712 v16 = x; | |
7713 v27 = v15 - v16; | |
7714 } | |
7715 v17 = this->uClipY; | |
7716 if ( (signed int)v17 < (signed int)y ) | |
7717 v17 = y; | |
7718 v18 = this->uClipW; | |
7719 if ( (signed int)(v9 + v17) > (signed int)v18 ) | |
7720 { | |
7721 v19 = this->uClipY; | |
7722 if ( (signed int)v19 < (signed int)y ) | |
7723 v19 = y; | |
7724 v9 = v18 - v19; | |
7725 } | |
7726 } | |
7727 if ( (signed int)v9 > 0 ) | |
7728 { | |
7729 ya = v9; | |
7730 v23 = v22 - v27; | |
7731 do | |
7732 { | |
7733 if ( v27 > 0 ) | |
7734 { | |
7735 xa = v27; | |
7736 do | |
7737 { | |
7738 v20 = *v24; | |
7739 if ( v20 >= a7 && v20 <= a8 ) | |
7740 { | |
7741 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7742 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7743 v21 = 2 * a8 - v21 - a7; | |
7744 *v8 = a4->pPalette16[v21]; | |
7745 } | |
7746 ++v8; | |
7747 ++v24; | |
7748 --xa; | |
7749 } | |
7750 while ( xa ); | |
7751 } | |
7752 v8 += this->uTargetSurfacePitch - v27; | |
7753 v24 += v23; | |
7754 --ya; | |
7755 } | |
7756 while ( ya ); | |
7757 } | |
7758 } | |
7759 } | |
7760 | |
7761 //----- (004A63E6) -------------------------------------------------------- | |
1455 | 7762 void Render::DrawAura(unsigned int a2, unsigned int a3, Texture *a4, Texture *a5, int a6, int a7, int a8) |
0 | 7763 { |
7764 Texture *v8; // eax@2 | |
7765 Texture *v9; // ebx@4 | |
7766 unsigned __int16 *v10; // esi@6 | |
7767 unsigned int v11; // edi@7 | |
7768 unsigned int v12; // eax@9 | |
7769 unsigned int v13; // eax@10 | |
7770 unsigned int v14; // edx@11 | |
7771 unsigned int v15; // eax@13 | |
7772 unsigned int v16; // edx@14 | |
7773 unsigned int v17; // edx@17 | |
7774 unsigned int v18; // eax@19 | |
7775 unsigned int v19; // edx@20 | |
7776 int v20; // eax@27 | |
7777 int v21; // edx@29 | |
7778 int v22; // [sp+Ch] [bp-Ch]@6 | |
7779 int v23; // [sp+Ch] [bp-Ch]@24 | |
7780 int v24; // [sp+10h] [bp-8h]@6 | |
7781 int v25; // [sp+14h] [bp-4h]@6 | |
7782 int i; // [sp+20h] [bp+8h]@25 | |
7783 int v27; // [sp+24h] [bp+Ch]@23 | |
7784 unsigned __int8 *v28; // [sp+28h] [bp+10h]@6 | |
7785 | |
7786 if ( this->uNumSceneBegins ) | |
7787 { | |
7788 v8 = a4; | |
7789 if ( a4 ) | |
7790 { | |
7791 if ( a4->pPalette16 ) | |
7792 { | |
7793 v9 = a5; | |
7794 if ( a5 ) | |
7795 { | |
7796 if ( a5->pPalette16 ) | |
7797 { | |
7798 v10 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; | |
710 | 7799 v28 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7800 v25 = v8->uTextureWidth; |
7801 v24 = v8->uTextureHeight; | |
7802 v22 = v8->uTextureWidth; | |
7803 if ( this->bClip ) | |
7804 { | |
7805 v11 = this->uClipX; | |
7806 if ( (signed int)a2 < (signed int)v11 ) | |
7807 { | |
7808 v28 += v11 - a2; | |
7809 v25 += a2 - v11; | |
7810 v9 = a5; | |
7811 v10 += v11 - a2; | |
7812 } | |
7813 v12 = this->uClipY; | |
7814 if ( (signed int)a3 < (signed int)v12 ) | |
7815 { | |
7816 v13 = v12 - a3; | |
7817 v9 = a5; | |
7818 v28 += v22 * v13; | |
7819 v24 += a3 - this->uClipY; | |
7820 v10 += this->uTargetSurfacePitch * v13; | |
7821 } | |
7822 v14 = this->uClipX; | |
7823 if ( (signed int)v14 < (signed int)a2 ) | |
7824 v14 = a2; | |
7825 v15 = this->uClipZ; | |
7826 if ( (signed int)(v25 + v14) > (signed int)v15 ) | |
7827 { | |
7828 v16 = this->uClipX; | |
7829 if ( (signed int)v16 < (signed int)a2 ) | |
7830 v16 = a2; | |
7831 v25 = v15 - v16; | |
7832 } | |
7833 v17 = this->uClipY; | |
7834 if ( (signed int)v17 < (signed int)a3 ) | |
7835 v17 = a3; | |
7836 v18 = this->uClipW; | |
7837 if ( (signed int)(v24 + v17) > (signed int)v18 ) | |
7838 { | |
7839 v19 = this->uClipY; | |
7840 if ( (signed int)v19 < (signed int)a3 ) | |
7841 v19 = a3; | |
7842 v24 = v18 - v19; | |
7843 } | |
7844 } | |
7845 v27 = 0; | |
7846 if ( v24 > 0 ) | |
7847 { | |
7848 v23 = v22 - v25; | |
7849 do | |
7850 { | |
7851 for ( i = 0; i < v25; ++v28 ) | |
7852 { | |
7853 if ( *v28 ) | |
7854 { | |
710 | 7855 v20 = *(&v9->pLevelOfDetail0_prolly_alpha_mask[i & v9->uWidthMinus1] + v9->uTextureWidth * (v27 & v9->uHeightMinus1)); |
0 | 7856 if ( v20 >= a7 ) |
7857 { | |
7858 if ( v20 <= a8 ) | |
7859 { | |
7860 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7861 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7862 v21 = 2 * a8 - v21 - a7; | |
7863 v9 = a5; | |
7864 *v10 = a5->pPalette16[v21]; | |
7865 } | |
7866 } | |
7867 } | |
7868 ++i; | |
7869 ++v10; | |
7870 } | |
7871 ++v27; | |
7872 v10 += this->uTargetSurfacePitch - v25; | |
7873 v28 += v23; | |
7874 } | |
7875 while ( v27 < v24 ); | |
7876 } | |
7877 } | |
7878 } | |
7879 } | |
7880 } | |
7881 } | |
7882 } | |
7883 | |
7884 //----- (004A6274) -------------------------------------------------------- | |
7885 void Render::DrawTextureTransparent(unsigned int uX, unsigned int uY, Texture *pTexture) | |
7886 { | |
7887 Texture *pCurrentTexture; // edi@2 | |
7888 int uHeight; // ebx@4 | |
7889 unsigned __int16 *v6; // eax@4 | |
7890 unsigned int v7; // edx@5 | |
7891 unsigned int v8; // edx@6 | |
7892 unsigned int v9; // edx@7 | |
7893 unsigned int v10; // edx@8 | |
7894 unsigned int v11; // edx@9 | |
7895 unsigned int v12; // esi@12 | |
7896 unsigned int v13; // esi@15 | |
7897 unsigned int v14; // edx@17 | |
7898 unsigned int v15; // esi@18 | |
7899 unsigned __int8 *v16; // ebx@22 | |
7900 char uFlag; // zf@28 | |
7901 int v18; // [sp+10h] [bp-10h]@4 | |
7902 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
7903 int uWidth; // [sp+1Ch] [bp-4h]@4 | |
7904 int uXa; // [sp+28h] [bp+8h]@24 | |
7905 unsigned int uYa; // [sp+2Ch] [bp+Ch]@22 | |
7906 unsigned int pTexturea; // [sp+30h] [bp+10h]@11 | |
7907 | |
7908 if ( this->uNumSceneBegins ) | |
7909 { | |
7910 pCurrentTexture = pTexture; | |
7911 if ( pTexture ) | |
7912 { | |
7913 if ( pTexture->pPalette16 ) | |
7914 { | |
7915 uHeight = pTexture->uTextureHeight; | |
7916 v6 = &this->pTargetSurface[uX + uY * this->uTargetSurfacePitch]; | |
710 | 7917 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7918 uWidth = pTexture->uTextureWidth; |
7919 v18 = pTexture->uTextureWidth; | |
7920 if ( this->bClip ) | |
7921 { | |
7922 v7 = this->uClipX; | |
7923 if ( (signed int)uX < (signed int)v7 ) | |
7924 { | |
7925 v8 = v7 - uX; | |
7926 v19 += v8; | |
7927 uWidth += uX - this->uClipX; | |
7928 v6 += v8; | |
7929 } | |
7930 v9 = this->uClipY; | |
7931 uHeight = pTexture->uTextureHeight; | |
7932 if ( (signed int)uY < (signed int)v9 ) | |
7933 { | |
7934 v10 = v9 - uY; | |
7935 v19 += v18 * v10; | |
7936 uHeight = uY - this->uClipY + pTexture->uTextureHeight; | |
7937 pCurrentTexture = pTexture; | |
7938 v6 += this->uTargetSurfacePitch * v10; | |
7939 } | |
7940 v11 = this->uClipX; | |
7941 if ( (signed int)v11 < (signed int)uX ) | |
7942 v11 = uX; | |
7943 pTexturea = this->uClipZ; | |
7944 if ( (signed int)(v11 + uWidth) > (signed int)pTexturea ) | |
7945 { | |
7946 v12 = this->uClipX; | |
7947 if ( (signed int)v12 < (signed int)uX ) | |
7948 v12 = uX; | |
7949 uWidth = pTexturea - v12; | |
7950 } | |
7951 v13 = this->uClipY; | |
7952 if ( (signed int)v13 < (signed int)uY ) | |
7953 v13 = uY; | |
7954 v14 = this->uClipW; | |
7955 if ( (signed int)(uHeight + v13) > (signed int)v14 ) | |
7956 { | |
7957 v15 = this->uClipY; | |
7958 if ( (signed int)v15 < (signed int)uY ) | |
7959 v15 = uY; | |
7960 uHeight = v14 - v15; | |
7961 } | |
7962 } | |
7963 if ( (signed int)uHeight > 0 ) | |
7964 { | |
7965 uYa = uHeight; | |
7966 v16 = v19; | |
7967 do | |
7968 { | |
7969 if ( uWidth > 0 ) | |
7970 { | |
7971 uXa = uWidth; | |
7972 do | |
7973 { | |
7974 if ( *v16 ) | |
7975 *v6 = pCurrentTexture->pPalette16[*v16]; | |
7976 ++v6; | |
7977 ++v16; | |
7978 } | |
7979 while ( uXa-- !=1 ); | |
7980 } | |
7981 v16 += v18 - uWidth; | |
7982 uFlag = uYa-- == 1; | |
7983 v6 += this->uTargetSurfacePitch - uWidth; | |
7984 } | |
7985 while ( !uFlag ); | |
7986 } | |
7987 } | |
7988 } | |
7989 } | |
7990 } | |
7991 | |
7992 //----- (004A612A) -------------------------------------------------------- | |
710 | 7993 void Render::DrawMaskToZBuffer(signed int uOutX, unsigned int uOutY, Texture *pTexture, int zVal) |
0 | 7994 { |
7995 Texture *v5; // eax@2 | |
7996 unsigned int v6; // edx@3 | |
7997 int v7; // ebx@3 | |
7998 int v8; // edi@3 | |
7999 signed int v9; // eax@4 | |
8000 int v10; // eax@5 | |
8001 unsigned int v11; // esi@6 | |
8002 signed int v12; // esi@8 | |
8003 unsigned int v13; // eax@10 | |
8004 signed int v14; // esi@11 | |
8005 unsigned int v15; // esi@14 | |
8006 unsigned int v16; // eax@16 | |
8007 unsigned int v17; // ecx@17 | |
8008 int v18; // edx@23 | |
8009 int v19; // [sp+Ch] [bp-Ch]@3 | |
8010 int v20; // [sp+10h] [bp-8h]@3 | |
8011 int uOutXa; // [sp+20h] [bp+8h]@21 | |
8012 unsigned __int8 *uOutYa; // [sp+24h] [bp+Ch]@3 | |
8013 int *pZBuffer; // [sp+28h] [bp+10h]@3 | |
8014 | |
8015 if ( this->uNumSceneBegins ) | |
8016 { | |
8017 v5 = pTexture; | |
8018 if ( pTexture ) | |
8019 { | |
8020 v6 = uOutY; | |
8021 v7 = pTexture->uTextureHeight; | |
8022 pZBuffer = &this->pActiveZBuffer[uOutX + 640 * uOutY]; | |
710 | 8023 uOutYa = v5->pLevelOfDetail0_prolly_alpha_mask; |
0 | 8024 v8 = v5->uTextureWidth; |
8025 v20 = v5->uTextureWidth; | |
8026 v19 = v5->uTextureWidth; | |
8027 if ( this->bClip ) | |
8028 { | |
8029 v9 = this->uClipX; | |
8030 if ( uOutX < v9 ) | |
8031 { | |
8032 v10 = v9 - uOutX; | |
8033 uOutYa += v10; | |
8034 v8 += uOutX - this->uClipX; | |
8035 v20 = v8; | |
8036 pZBuffer += v10; | |
8037 } | |
8038 v11 = this->uClipY; | |
8039 if ( (signed int)v6 < (signed int)v11 ) | |
8040 { | |
8041 uOutYa += v19 * (v11 - v6); | |
8042 v7 += v6 - v11; | |
8043 pZBuffer += 640 * (v11 - v6); | |
8044 v8 = v20; | |
8045 } | |
8046 v12 = this->uClipX; | |
8047 if ( v12 < uOutX ) | |
8048 v12 = uOutX; | |
8049 v13 = this->uClipZ; | |
8050 if ( v8 + v12 > (signed int)v13 ) | |
8051 { | |
8052 v14 = this->uClipX; | |
8053 if ( v14 < uOutX ) | |
8054 v14 = uOutX; | |
8055 v8 = v13 - v14; | |
8056 } | |
8057 v15 = this->uClipY; | |
8058 if ( (signed int)v15 < (signed int)v6 ) | |
8059 v15 = v6; | |
8060 v16 = this->uClipW; | |
8061 if ( (signed int)(v7 + v15) > (signed int)v16 ) | |
8062 { | |
8063 v17 = this->uClipY; | |
8064 if ( (signed int)v17 >= (signed int)v6 ) | |
8065 v6 = v17; | |
8066 v7 = v16 - v6; | |
8067 } | |
8068 } | |
8069 if ( v7 > 0 ) | |
8070 { | |
8071 uOutXa = v7; | |
8072 do | |
8073 { | |
8074 if ( v8 > 0 ) | |
8075 { | |
8076 v18 = v8; | |
8077 do | |
8078 { | |
8079 if ( *uOutYa ) | |
8080 *pZBuffer = zVal; | |
8081 ++pZBuffer; | |
8082 ++uOutYa; | |
8083 --v18; | |
8084 } | |
8085 while ( v18 ); | |
8086 } | |
8087 pZBuffer += 640 - v8; | |
8088 uOutYa += v19 - v8; | |
8089 --uOutXa; | |
8090 } | |
8091 while ( uOutXa ); | |
8092 } | |
8093 } | |
8094 } | |
8095 } | |
8096 | |
8097 //----- (004A601E) -------------------------------------------------------- | |
991 | 8098 void Render::ZBuffer_Fill_2(signed int a2, signed int a3, Texture *pTexture, int a5) |
0 | 8099 { |
8100 signed int v5; // edx@3 | |
8101 int v6; // ebx@3 | |
8102 int v7; // esi@3 | |
8103 void *v8; // esi@3 | |
8104 unsigned int v9; // eax@4 | |
8105 unsigned int v10; // eax@6 | |
8106 signed int v11; // edi@8 | |
8107 unsigned int v12; // eax@10 | |
8108 signed int v13; // edi@11 | |
8109 unsigned int v14; // edi@14 | |
8110 unsigned int v15; // eax@16 | |
8111 unsigned int v16; // ecx@17 | |
8112 int v17; // [sp+18h] [bp+Ch]@3 | |
8113 unsigned int pTexturea; // [sp+1Ch] [bp+10h]@3 | |
8114 | |
8115 if ( this->uNumSceneBegins && pTexture ) | |
8116 { | |
8117 v5 = a3; | |
8118 v6 = pTexture->uTextureHeight; | |
8119 v7 = 5 * a3; | |
8120 v17 = pTexture->uTextureHeight; | |
8121 v8 = &this->pActiveZBuffer[a2 + (v7 << 7)]; | |
8122 pTexturea = pTexture->uTextureWidth; | |
8123 if ( this->bClip ) | |
8124 { | |
8125 v9 = this->uClipX; | |
8126 if ( a2 < (signed int)v9 ) | |
8127 { | |
8128 pTexturea += a2 - v9; | |
8129 v8 = (char *)v8 + 4 * (v9 - a2); | |
8130 } | |
8131 v10 = this->uClipY; | |
8132 if ( v5 < (signed int)v10 ) | |
8133 { | |
8134 v17 += v5 - v10; | |
8135 v8 = (char *)v8 + 2560 * (v10 - v5); | |
8136 } | |
8137 v11 = this->uClipX; | |
8138 if ( v11 < a2 ) | |
8139 v11 = a2; | |
8140 v12 = this->uClipZ; | |
8141 if ( (signed int)(pTexturea + v11) > (signed int)v12 ) | |
8142 { | |
8143 v13 = this->uClipX; | |
8144 if ( v13 < a2 ) | |
8145 v13 = a2; | |
8146 pTexturea = v12 - v13; | |
8147 } | |
8148 v14 = this->uClipY; | |
8149 if ( (signed int)v14 < v5 ) | |
8150 v14 = v5; | |
8151 v6 = v17; | |
8152 v15 = this->uClipW; | |
8153 if ( (signed int)(v17 + v14) > (signed int)v15 ) | |
8154 { | |
8155 v16 = this->uClipY; | |
8156 if ( (signed int)v16 < v5 ) | |
8157 v16 = v5; | |
8158 v6 = v15 - v16; | |
8159 } | |
8160 } | |
8161 if ( v6 > 0 ) | |
8162 { | |
8163 do | |
8164 { | |
8165 if ( (signed int)pTexturea > 0 ) | |
8166 { | |
8167 memset32(v8, a5, pTexturea); | |
8168 v8 = (char *)v8 + 4 * pTexturea; | |
8169 } | |
8170 v8 = (char *)v8 + 4 * (640 - pTexturea); | |
8171 --v6; | |
8172 } | |
8173 while ( v6 ); | |
8174 } | |
8175 } | |
8176 } | |
8177 | |
8178 //----- (004A5EB2) -------------------------------------------------------- | |
8179 void Render::DrawTextureIndexed(unsigned int uX, unsigned int uY, Texture *a4) | |
8180 { | |
8181 Texture *v4; // edi@2 | |
8182 unsigned int v5; // ebx@4 | |
8183 unsigned __int16 *pTarget; // eax@4 | |
8184 unsigned int v7; // edx@5 | |
8185 unsigned int v8; // edx@6 | |
8186 unsigned int v9; // edx@7 | |
8187 unsigned int v10; // edx@8 | |
8188 unsigned int v11; // edx@9 | |
8189 unsigned int v12; // esi@12 | |
8190 unsigned int v13; // esi@15 | |
8191 unsigned int v14; // edx@17 | |
8192 unsigned int v15; // esi@18 | |
8193 unsigned __int8 *v16; // edx@22 | |
8194 char v17; // zf@26 | |
8195 int v18; // [sp+10h] [bp-10h]@4 | |
8196 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
8197 int v20; // [sp+1Ch] [bp-4h]@4 | |
8198 int uXa; // [sp+28h] [bp+8h]@24 | |
8199 unsigned int uYa; // [sp+2Ch] [bp+Ch]@22 | |
8200 unsigned int v23; // [sp+30h] [bp+10h]@11 | |
8201 | |
8202 if ( this->uNumSceneBegins ) | |
8203 { | |
8204 v4 = a4; | |
8205 if ( a4 ) | |
8206 { | |
8207 if ( a4->pPalette16 ) | |
8208 { | |
8209 v5 = a4->uTextureHeight; | |
8210 pTarget = &this->pTargetSurface[uX + uY * this->uTargetSurfacePitch]; | |
710 | 8211 v19 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 8212 v20 = a4->uTextureWidth; |
8213 v18 = a4->uTextureWidth; | |
8214 if ( this->bClip ) | |
8215 { | |
8216 v7 = this->uClipX; | |
8217 if ( (signed int)uX < (signed int)v7 ) | |
8218 { | |
8219 v8 = v7 - uX; | |
8220 v19 += v8; | |
8221 v20 += uX - this->uClipX; | |
8222 pTarget += v8; | |
8223 } | |
8224 v9 = this->uClipY; | |
8225 v5 = a4->uTextureHeight; | |
8226 if ( (signed int)uY < (signed int)v9 ) | |
8227 { | |
8228 v10 = v9 - uY; | |
8229 v19 += v18 * v10; | |
8230 v5 = uY - this->uClipY + a4->uTextureHeight; | |
8231 v4 = a4; | |
8232 pTarget += this->uTargetSurfacePitch * v10; | |
8233 } | |
8234 v11 = this->uClipX; | |
8235 if ( (signed int)v11 < (signed int)uX ) | |
8236 v11 = uX; | |
8237 v23 = this->uClipZ; | |
8238 if ( (signed int)(v11 + v20) > (signed int)v23 ) | |
8239 { | |
8240 v12 = this->uClipX; | |
8241 if ( (signed int)v12 < (signed int)uX ) | |
8242 v12 = uX; | |
8243 v20 = v23 - v12; | |
8244 } | |
8245 v13 = this->uClipY; | |
8246 if ( (signed int)v13 < (signed int)uY ) | |
8247 v13 = uY; | |
8248 v14 = this->uClipW; | |
8249 if ( (signed int)(v5 + v13) > (signed int)v14 ) | |
8250 { | |
8251 v15 = this->uClipY; | |
8252 if ( (signed int)v15 < (signed int)uY ) | |
8253 v15 = uY; | |
8254 v5 = v14 - v15; | |
8255 } | |
8256 } | |
8257 if ( (signed int)v5 > 0 ) | |
8258 { | |
8259 uYa = v5; | |
8260 v16 = v19; | |
8261 do | |
8262 { | |
8263 if ( v20 > 0 ) | |
8264 { | |
8265 uXa = v20; | |
8266 do | |
8267 { | |
8268 *pTarget = v4->pPalette16[*v16]; | |
8269 ++pTarget; | |
8270 ++v16; | |
8271 --uXa; | |
8272 } | |
8273 while ( uXa ); | |
8274 } | |
8275 v16 += v18 - v20; | |
8276 v17 = uYa-- == 1; | |
8277 pTarget += this->uTargetSurfacePitch - v20; | |
8278 } | |
8279 while ( !v17 ); | |
8280 } | |
8281 } | |
8282 } | |
8283 } | |
8284 } | |
8285 | |
8286 //----- (004667E9) -------------------------------------------------------- | |
8287 void Render::ChangeBetweenWinFullscreenModes() | |
8288 { | |
8289 float v0; // ST14_4@17 | |
8290 int v4; // edx@26 | |
8291 ObjectDesc *v5; // eax@26 | |
8292 RGBTexture *v6; // esi@33 | |
8293 const char *v8; // [sp-4h] [bp-28h]@33 | |
8294 struct tagRECT Rect; // [sp+14h] [bp-10h]@15 | |
8295 | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8296 if ( !pRenderer->bWindowMode && (dword_6BE364_game_settings_1 & 2) ) |
0 | 8297 { |
1458 | 8298 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 | 8299 return; |
8300 } | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8301 if ( pRenderer->bWindowMode || !pRenderer->pRenderD3D || pRenderer->pRenderD3D->pAvailableDevices->bIsDeviceCompatible ) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8302 { |
0 | 8303 if ( pEventTimer->bPaused ) |
8304 BYTE1(dword_6BE364_game_settings_1) |= 8u; | |
8305 else | |
8306 pEventTimer->Pause(); | |
8307 if ( pMiscTimer->bPaused ) | |
8308 BYTE1(dword_6BE364_game_settings_1) |= 0x10u; | |
8309 else | |
8310 pMiscTimer->Pause(); | |
8311 pMouse->bActive = 0; | |
8312 if ( pRenderer->pRenderD3D ) | |
8313 { | |
8314 pBitmaps_LOD->ReleaseHardwareTextures(); | |
8315 pSprites_LOD->ReleaseAll(); | |
8316 } | |
8317 if ( pRenderer->bWindowMode ) | |
8318 { | |
8319 SetMenu(hWnd, 0); | |
8320 SetWindowLongA(hWnd, -20, 0); | |
8321 SetWindowLongA(hWnd, -16, 0x10000000u); | |
8322 pRenderer->InitializeFullscreen(hWnd); | |
8323 v0 = (double)(signed int)uGammaPos * 0.1 + 0.6; | |
8324 pGame->pGammaController->Initialize(v0); | |
8325 } | |
8326 else | |
8327 { | |
8328 ClipCursor(0); | |
8329 pRenderer->SwitchToWindow(hWnd); | |
8330 } | |
8331 if ( pRenderer->pRenderD3D ) | |
8332 { | |
8333 pBitmaps_LOD->_410423_move_textures_to_device(); | |
8334 pSprites_LOD->MoveSpritesToVideoMemory(); | |
8335 } | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8336 if (!( pPaletteManager->uNumTargetBBits == pRenderer->uTargetBBits |
0 | 8337 && pPaletteManager->uNumTargetGBits == pRenderer->uTargetGBits |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8338 && pPaletteManager->uNumTargetRBits == pRenderer->uTargetRBits )) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8339 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8340 pPaletteManager->SetColorChannelInfo(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8341 pPaletteManager->RecalculateAll(); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8342 pBitmaps_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8343 pIcons_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8344 for (int i = 0; i < pObjectList->uNumObjects; i++) |
0 | 8345 { |
8346 BYTE3(v4) = 0; | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8347 v5 = &pObjectList->pObjects[i]; |
0 | 8348 *(short *)((char *)&v4 + 1) = v5->uParticleTrailColorR; |
8349 LOBYTE(v4) = v5->uParticleTrailColorG; | |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1110
diff
changeset
|
8350 v5->uParticleTrailColor = v5->uParticleTrailColorB | (v4 << 8); |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8351 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8352 SetUserInterface(pParty->alignment, true); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8353 if ( pVideoPlayer->pVideoFrame.pPixels ) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8354 pVideoPlayer->pVideoFrame.Load(pVideoPlayer->pVideoFrameTextureFilename, 1); |
1675 | 8355 if ( uCurrentMenuID != MENU_CREATEPARTY ) |
8356 { | |
8357 if ( uCurrentMenuID == MENU_CREDITSPROC ) | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8358 dword_A74C88 = 1; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8359 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8360 else |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8361 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8362 if ( uCurrentMenuID ) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8363 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8364 v6 = &pTexture_PCX; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8365 pTexture_PCX.Release(); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8366 v8 = "makeme.pcx"; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8367 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8368 else |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8369 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8370 v6 = &pTexture_PCX; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8371 pTexture_PCX.Release(); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8372 v8 = "title.pcx"; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8373 if ( uCurrentMenuID ) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8374 v8 = "lsave640.pcx"; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8375 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8376 v6->Load(v8, 0); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8377 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8378 } |
0 | 8379 viewparams->bRedrawGameUI = 1; |
688 | 8380 viewparams->InitGrayPalette(); |
0 | 8381 pMouse->SetCurrentCursorBitmap(); |
8382 if ( pRenderer->bWindowMode ) | |
8383 { | |
1655 | 8384 //MoveWindow(hWnd, uWindowX, uWindowY, uWindowWidth, uWindowHeight, 0); |
8385 CenterWindowAndAdjustSize(hWnd, windowed_mode_width, windowed_mode_height); | |
1586 | 8386 ShowWindow(hWnd, SW_SHOWNORMAL); |
0 | 8387 } |
8388 pMouse->bActive = 1; | |
8389 if ( pVideoPlayer->AnyMovieLoaded() ) | |
898 | 8390 pVideoPlayer->SelectMovieType(); |
1655 | 8391 if (dword_6BE364_game_settings_1 & 0x0800 ) |
0 | 8392 BYTE1(dword_6BE364_game_settings_1) &= 0xF7u; |
8393 else | |
8394 pEventTimer->Resume(); | |
8395 if ( BYTE1(dword_6BE364_game_settings_1) & 0x10 ) | |
8396 BYTE1(dword_6BE364_game_settings_1) &= 0xEFu; | |
8397 else | |
8398 pMiscTimer->Resume(); | |
8399 } | |
8400 } | |
8401 // 6BE364: using guessed type int dword_6BE364_game_settings_1; | |
8402 // A74C88: using guessed type int dword_A74C88; | |
8403 | |
8404 | |
8405 //----- (004524D8) -------------------------------------------------------- | |
8406 HWLTexture *RenderHWLContainer::LoadTexture(const char *pName, int bMipMaps) | |
8407 { | |
1583 | 8408 //int v11; // eax@13 |
8409 //int v12; // ecx@13 | |
0 | 8410 void *v13; // eax@13 |
1583 | 8411 //unsigned __int8 v14; // zf@13 |
8412 //unsigned __int8 v15; // sf@13 | |
0 | 8413 int v16; // esi@14 |
8414 int v17; // ecx@16 | |
8415 int v18; // esi@16 | |
8416 unsigned __int16 *v19; // eax@16 | |
8417 int v20; // edx@16 | |
8418 int v21; // ecx@16 | |
8419 int v22; // eax@16 | |
8420 int v23; // esi@16 | |
8421 unsigned __int16 *v26; // [sp+24h] [bp-10h]@13 | |
8422 int v27; // [sp+28h] [bp-Ch]@14 | |
8423 int v28; // [sp+2Ch] [bp-8h]@13 | |
8424 int pDestb; // [sp+3Ch] [bp+8h]@15 | |
8425 | |
8426 //v3 = this; | |
8427 //sprintf(Str1, "%s", pName); | |
8428 //v4 = uNumItems; | |
8429 if (!uNumItems) | |
8430 return nullptr; | |
8431 | |
8432 //{ | |
8433 //v5 = 0, pDesta = uNumItems; | |
8434 uint idx1 = 0, | |
8435 idx2 = uNumItems; | |
8436 while (true) | |
8437 { | |
8438 auto i = idx1 + (idx2 - idx1) / 2; | |
8439 | |
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1164
diff
changeset
|
8440 auto res = _stricmp(pName, pSpriteNames[i]); |
0 | 8441 if (!res) |
8442 { | |
8443 fseek(pFile, pSpriteOffsets[i], SEEK_SET); | |
8444 break; | |
8445 } | |
8446 else if (res < 0) | |
8447 idx2 = idx1 + (idx2 - idx1) / 2; | |
8448 else | |
8449 idx1 = i + 1; | |
8450 | |
8451 if ( idx1 >= idx2 ) | |
8452 return false; | |
8453 } | |
8454 | |
8455 | |
8456 uint uCompressedSize = 0; | |
8457 fread(&uCompressedSize, 4, 1, pFile); | |
8458 | |
8459 auto pTex = new HWLTexture; | |
670 | 8460 fread(&pTex->uBufferWidth, 4, 1, pFile); |
8461 fread(&pTex->uBufferHeight, 4, 1, pFile); | |
8462 fread(&pTex->uAreaWidth, 4, 1, pFile); | |
8463 fread(&pTex->uAreaHeigth, 4, 1, pFile); | |
0 | 8464 fread(&pTex->uWidth, 4, 1, pFile); |
8465 fread(&pTex->uHeight, 4, 1, pFile); | |
670 | 8466 fread(&pTex->uAreaX, 4, 1, pFile); |
8467 fread(&pTex->uAreaY, 4, 1, pFile); | |
0 | 8468 |
8469 pTex->pPixels = new unsigned __int16[pTex->uWidth * pTex->uHeight]; | |
8470 if (uCompressedSize) | |
8471 { | |
8472 auto pCompressedData = new char[uCompressedSize]; | |
8473 { | |
8474 fread(pCompressedData, 1, uCompressedSize, pFile); | |
8475 auto uDecompressedSize = pTex->uWidth * pTex->uHeight * sizeof(short); | |
8476 zlib::MemUnzip(pTex->pPixels, &uDecompressedSize, pCompressedData, uCompressedSize); | |
8477 } | |
8478 delete [] pCompressedData; | |
8479 } | |
8480 else | |
8481 fread(pTex->pPixels, 2, pTex->uWidth * pTex->uHeight, pFile); | |
8482 | |
1583 | 8483 if ( scale_hwls_to_half ) |
8484 { | |
8485 pTex->uHeight /= 2; | |
8486 pTex->uWidth /= 2; | |
8487 v13 = new unsigned __int16[pTex->uWidth * pTex->uHeight]; | |
0 | 8488 v28 = 0; |
8489 v26 = (unsigned __int16 *)v13; | |
1583 | 8490 if ( pTex->uHeight > 0 ) |
0 | 8491 { |
8492 v16 = pTex->uWidth; | |
8493 v27 = 1; | |
8494 do | |
8495 { | |
8496 pDestb = 0; | |
8497 if ( v16 > 0 ) | |
8498 { | |
8499 do | |
8500 { | |
8501 v17 = v16 * v27; | |
8502 v18 = v28 * v16; | |
8503 v19 = pTex->pPixels; | |
8504 v20 = pDestb + 2 * v18; | |
8505 v21 = (int)&v19[2 * (pDestb + v17)]; | |
8506 v22 = (int)&v19[2 * v20]; | |
8507 LOWORD(v20) = *(unsigned short *)(v21 + 2); | |
8508 LOWORD(v21) = *(unsigned short *)v21; | |
8509 v23 = pDestb++ + v18; | |
1583 | 8510 extern unsigned int __fastcall _452442_color_cvt(unsigned __int16 a1, unsigned __int16 a2, int a3, int a4); |
8511 v26[v23] = _452442_color_cvt(*(unsigned short *)v22, *(unsigned short *)(v22 + 2), v21, v20); | |
0 | 8512 v16 = pTex->uWidth; |
8513 } | |
8514 while (pDestb < pTex->uWidth); | |
8515 } | |
8516 ++v28; | |
8517 v27 += 2; | |
8518 } | |
8519 while ( v28 < (signed int)pTex->uHeight ); | |
8520 } | |
8521 delete [] pTex->pPixels; | |
8522 pTex->pPixels = v26; | |
8523 } | |
8524 return pTex; | |
8525 } | |
8526 | |
8527 //----- (0045271F) -------------------------------------------------------- | |
8528 bool RenderHWLContainer::Release() | |
8529 { | |
8530 __int32 v4; // eax@6 | |
8531 FILE *v5; // ST24_4@6 | |
8532 FILE *File; // [sp+4h] [bp-4h]@6 | |
8533 | |
1162 | 8534 if ( this->bDumpDebug) |
0 | 8535 { |
8536 File = fopen("logd3d.txt", "w"); | |
1162 | 8537 v4 = ftell(this->pFile); |
8538 v5 = this->pFile; | |
8539 this->uDataOffset = v4; | |
8540 fwrite(&this->uNumItems, 4u, 1u, v5); | |
8541 for (int i = 0; i < this->uNumItems; i++) | |
8542 { | |
8543 fwrite(this->pSpriteNames[i], 1u, 0x14u, this->pFile); | |
8544 fprintf(File, "D3D texture name: %s\t\toffset: %x\n", this->pSpriteNames[i], *(unsigned int *)(&(this->pSpriteNames[i]) + 200000/sizeof(char*))); | |
8545 } | |
8546 fwrite(this->pSpriteOffsets, 4u, this->uNumItems, this->pFile); | |
8547 fseek(this->pFile, 4, 0); | |
8548 fwrite(&this->uDataOffset, 4u, 1u, this->pFile); | |
8549 fclose(this->pFile); | |
0 | 8550 fclose(File); |
8551 } | |
8552 else | |
8553 { | |
8554 fclose(this->pFile); | |
1162 | 8555 for (int i = 0; i < this->uNumItems; i++) |
8556 { | |
8557 free(this->pSpriteNames[i]); | |
0 | 8558 } |
8559 } | |
1093 | 8560 return true; |
0 | 8561 } |
8562 | |
8563 //----- (00452347) -------------------------------------------------------- | |
8564 RenderHWLContainer::RenderHWLContainer(): | |
8565 bDumpDebug(false) | |
8566 { | |
8567 this->pFile = 0; | |
8568 uSignature = 0; | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8569 this->uDataOffset = 0; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8570 memset(&this->uNumItems, 0, 0x61A84u); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8571 this->uNumItems = 0; |
1583 | 8572 this->scale_hwls_to_half = false; |
0 | 8573 } |
8574 | |
8575 //----- (0045237F) -------------------------------------------------------- | |
8576 bool RenderHWLContainer::Load(const wchar_t *pFilename) | |
8577 { | |
8578 pFile = _wfopen(pFilename, L"rb"); | |
8579 if (!pFile) | |
8580 { | |
8581 Log::Warning(L"Failed to open file: %s", pFilename); | |
8582 return false; | |
8583 } | |
8584 | |
8585 fread(&uSignature, 1, 4, pFile); | |
8586 if (uSignature != 'TD3D') | |
8587 { | |
8588 Log::Warning(L"Invalid format: %s", pFilename); | |
8589 return false; | |
8590 } | |
8591 | |
8592 fread(&uDataOffset, 4, 1, pFile); | |
8593 fseek(pFile, uDataOffset, SEEK_SET); | |
8594 fread(&uNumItems, 4, 1, pFile); | |
8595 | |
8596 memset(pSpriteNames, 0, 50000 * sizeof(char *)); | |
8597 for (uint i = 0; i < uNumItems; ++i) | |
8598 { | |
8599 pSpriteNames[i] = new char[20]; | |
8600 fread(pSpriteNames[i], 1, 20, pFile); | |
8601 } | |
8602 fread(pSpriteOffsets, 4, uNumItems, pFile); | |
8603 | |
8604 return true; | |
8605 } | |
8606 | |
8607 //----- (004A1C1E) -------------------------------------------------------- | |
8608 void DoRenderBillboards_D3D() | |
8609 { | |
186 | 8610 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP)); |
8611 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
8612 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8613 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8614 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8615 /*if (pRenderer->uNumBillboardsToDraw) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8616 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8617 auto p = &pRenderer->pBillboardRenderListD3D[0]; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8618 for (int i = 0; i < p->uNumVertices; ++i) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8619 { |
1390 | 8620 p->pQuads[i].pos.z -= p->pQuads[i].pos.z * 0.6; |
8621 //p->pQuads[i].rhw = + 0.8 * (1.0f - p->pQuads[i].rhw); | |
8622 } | |
8623 p->pQuads[0].pos.x = 10; | |
8624 p->pQuads[0].pos.y = 10; | |
8625 | |
8626 p->pQuads[1].pos.x = 10; | |
8627 p->pQuads[1].pos.y = 200; | |
8628 | |
8629 p->pQuads[2].pos.x = 100; | |
8630 p->pQuads[2].pos.y = 200; | |
8631 | |
8632 p->pQuads[3].pos.x = 100; | |
8633 p->pQuads[3].pos.y = 10; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8634 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8635 if (p->uOpacity != RenderBillboardD3D::NoBlend) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8636 SetBillboardBlendOptions(p->uOpacity); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8637 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8638 pRenderer->pRenderD3D->pDevice->SetTexture(0, p->pTexture); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8639 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8640 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1390 | 8641 p->pQuads, p->uNumVertices, |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8642 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS)); |
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 }*/ |
0 | 8645 |
8646 for (uint i = pRenderer->uNumBillboardsToDraw - 1; i != (uint)-1; --i) | |
8647 { | |
101 | 8648 auto p = &pRenderer->pBillboardRenderListD3D[i]; |
0 | 8649 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8650 if (p->uOpacity != RenderBillboardD3D::NoBlend) |
0 | 8651 SetBillboardBlendOptions(p->uOpacity); |
8652 | |
101 | 8653 pRenderer->pRenderD3D->pDevice->SetTexture(0, p->pTexture); |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8654 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8655 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1390 | 8656 p->pQuads, p->uNumVertices, |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8657 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS)); |
0 | 8658 } |
8659 | |
8660 if (pRenderer->bFogEnabled) | |
8661 { | |
8662 pRenderer->bFogEnabled = false; | |
186 | 8663 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 8664 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF)); |
8665 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
8666 } | |
186 | 8667 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); |
8668 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
8669 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
8670 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
8671 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
8672 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
0 | 8673 } |
8674 | |
8675 //----- (004A1DA8) -------------------------------------------------------- | |
8676 void SetBillboardBlendOptions(RenderBillboardD3D::OpacityType a1) | |
8677 { | |
8678 switch (a1) | |
8679 { | |
8680 case RenderBillboardD3D::Transparent: | |
8681 { | |
8682 if (pRenderer->bFogEnabled) | |
8683 { | |
8684 pRenderer->bFogEnabled = false; | |
186 | 8685 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 8686 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF)); |
8687 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
8688 } | |
8689 | |
186 | 8690 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA)); |
8691 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA)); | |
8692 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
0 | 8693 } |
8694 break; | |
8695 | |
8696 case RenderBillboardD3D::Opaque_1: | |
8697 case RenderBillboardD3D::Opaque_2: | |
8698 case RenderBillboardD3D::Opaque_3: | |
8699 { | |
8700 if (pRenderer->bUsingSpecular) | |
8701 { | |
8702 if (!pRenderer->bFogEnabled) | |
8703 { | |
8704 pRenderer->bFogEnabled = true; | |
186 | 8705 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); |
8706 } | |
8707 } | |
8708 | |
8709 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
8710 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
8711 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
0 | 8712 } |
8713 break; | |
8714 | |
8715 default: | |
8716 Log::Warning(L"SetBillboardBlendOptions: invalid opacity type (%u)", a1); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8717 assert(false); |
0 | 8718 break; |
8719 } | |
8720 } | |
1297 | 8721 //----- (0040DF3D) -------------------------------------------------------- |
1458 | 8722 void CallRenderPresent() |
1297 | 8723 { |
8724 pRenderer->Present(); | |
8725 } |