Mercurial > mm7
annotate Render.cpp @ 2096:115373c2d1cd
RasterLine2D fix
author | Ritor1 |
---|---|
date | Fri, 13 Dec 2013 01:21:07 +0600 |
parents | 52415f8bf7c2 |
children | 2b39f6b451f9 |
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" | |
2037
7a9477135943
Renamed Math.h -> OurMath.h (file resolution was sometimes ambiguous)
Nomad
parents:
2016
diff
changeset
|
19 #include "OurMath.h" |
0 | 20 #include "PaletteManager.h" |
2044 | 21 #include "Timer.h" |
0 | 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" |
1828
35c1e4ff6ba7
party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents:
1814
diff
changeset
|
35 #include "Level/Decoration.h" |
0 | 36 |
1924
8cd321994943
MSVS 2012 project file & some compilation warning fixes
Nomad
parents:
1913
diff
changeset
|
37 //#pragma comment(lib, "lib\\legacy_dx\\lib\\ddraw.lib") |
8cd321994943
MSVS 2012 project file & some compilation warning fixes
Nomad
parents:
1913
diff
changeset
|
38 //#pragma comment(lib, "lib\\legacy_dx\\lib\\dxguid.lib") |
0 | 39 |
40 struct IDirectDrawClipper *pDDrawClipper; | |
41 struct Render *pRenderer; // idb | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
42 struct RenderVertexD3D3 pVertices[50]; |
0 | 43 int uNumDecorationsDrawnThisFrame; // weak |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
44 RenderBillboard pBillboardRenderList[500]; |
0 | 45 unsigned int uNumBillboardsToDraw; |
46 int uNumSpritesDrawnThisFrame; // weak | |
47 | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
48 RenderVertexSoft array_507D30[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
49 RenderVertexSoft array_50AC10[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
50 RenderVertexSoft array_73D150[20]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
51 |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
52 RenderVertexD3D3 d3d_vertex_buffer[50]; |
0 | 53 |
54 void SetBillboardBlendOptions(RenderBillboardD3D::OpacityType a1); | |
55 | |
56 /* 384 */ | |
57 #pragma pack(push, 1) | |
58 struct PCXHeader_1 | |
59 { | |
60 char manufacturer; | |
61 char version; | |
62 char encoding; | |
63 char bpp; | |
64 __int16 left; | |
65 __int16 up; | |
66 __int16 right; | |
67 __int16 bottom; | |
68 __int16 hdpi; | |
69 __int16 vdpi; | |
70 }; | |
71 #pragma pack(pop) | |
72 | |
73 /* 385 */ | |
74 #pragma pack(push, 1) | |
75 struct PCXHeader_2 | |
76 { | |
77 char reserved; | |
78 char planes; | |
79 __int16 pitch; | |
80 __int16 palette_info; | |
81 }; | |
82 #pragma pack(pop) | |
83 | |
84 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst); | |
85 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2); | |
86 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, struct RenderD3D_aux *a6); | |
87 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut); // idb | |
88 | |
89 //----- (0049E79F) -------------------------------------------------------- | |
2069 | 90 bool CheckTextureStages() |
0 | 91 { |
92 bool v0; // edi@1 | |
93 IDirectDrawSurface4 *pSurface2; // [sp+Ch] [bp-14h]@1 | |
94 IDirectDrawSurface4 *pSurface1; // [sp+10h] [bp-10h]@1 | |
95 DWORD v4; // [sp+14h] [bp-Ch]@1 | |
96 IDirect3DTexture2 *pTexture2; // [sp+18h] [bp-8h]@1 | |
97 IDirect3DTexture2 *pTexture1; // [sp+1Ch] [bp-4h]@1 | |
98 | |
99 v0 = false; | |
100 pRenderer->pRenderD3D->CreateTexture(64u, 64u, &pSurface1, &pTexture1, true, false, 32u); | |
101 pRenderer->pRenderD3D->CreateTexture(64u, 64u, &pSurface2, &pTexture2, true, false, 32u); | |
102 | |
103 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture1)); | |
186 | 104 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 105 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 2u)); |
106 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u)); | |
107 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u)); | |
108 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u)); | |
109 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 1u)); | |
110 | |
111 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture2)); | |
186 | 112 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP)); |
0 | 113 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_TEXCOORDINDEX, 1u)); |
114 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 7u)); | |
115 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG1, 2u)); | |
116 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG2, 1u)); | |
117 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MAGFILTER, 2u)); | |
118 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MINFILTER, 2u)); | |
119 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MIPFILTER, 1u)); | |
120 | |
121 if ( !pRenderer->pRenderD3D->pDevice->ValidateDevice(&v4) && v4 == 1 ) | |
122 v0 = true; | |
123 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 1u)); | |
124 pTexture1->Release(); | |
125 pTexture2->Release(); | |
126 pSurface1->Release(); | |
127 pSurface2->Release(); | |
128 return v0; | |
129 } | |
130 | |
2002 | 131 void Render::sub_4A19B0() |
132 { | |
133 char *result; // eax@1 | |
134 signed int v1; // ecx@1 | |
135 /* | |
136 result = (char *)&this->pBillboardRenderListD3D[0].uOpacity; | |
137 v1 = 1000; | |
138 do | |
139 { | |
140 *(_DWORD *)result = 0; | |
141 *((_DWORD *)result + 1) = -1; | |
142 *((_DWORD *)result + 3) = -1; | |
143 *((_DWORD *)result - 34) = 4; | |
144 result += 156; | |
145 --v1; | |
146 } | |
147 while ( v1 ); | |
148 */ | |
149 for( int i = 0; i < 1000; i++ ) | |
150 { | |
151 this->pBillboardRenderListD3D[i].uOpacity = (RenderBillboardD3D::OpacityType)0; | |
152 this->pBillboardRenderListD3D[i].field_90 = -1; | |
153 this->pBillboardRenderListD3D[i].sParentBillboardID = -1; | |
154 this->pBillboardRenderListD3D[i].uNumVertices = 4; | |
155 } | |
156 | |
157 return; | |
158 } | |
159 | |
0 | 160 //----- (00440CB8) -------------------------------------------------------- |
161 void Render::DrawBillboardList_BLV() | |
162 { | |
163 __int16 v2; // ax@3 | |
164 int v5; // eax@11 | |
165 RenderBillboardTransform_local0 soft_billboard; // [sp+4h] [bp-50h]@1 | |
166 | |
2002 | 167 soft_billboard.sParentBillboardID = -1; |
0 | 168 soft_billboard.pTarget = pBLVRenderParams->pRenderTarget; |
169 soft_billboard.pTargetZ = pBLVRenderParams->pTargetZBuffer; | |
170 soft_billboard.uTargetPitch = pRenderer->uTargetSurfacePitch; | |
171 soft_billboard.uViewportX = pBLVRenderParams->uViewportX; | |
172 soft_billboard.uViewportY = pBLVRenderParams->uViewportY; | |
173 soft_billboard.uViewportZ = pBLVRenderParams->uViewportZ - 1; | |
174 soft_billboard.uViewportW = pBLVRenderParams->uViewportW; | |
175 | |
1637 | 176 pODMRenderParams->uNumBillboards = ::uNumBillboardsToDraw; |
617 | 177 for (uint i = 0; i < ::uNumBillboardsToDraw; ++i) |
0 | 178 { |
1980 | 179 RenderBillboard* p = &pBillboardRenderList[i]; |
0 | 180 |
181 soft_billboard.uScreenSpaceX = p->uScreenSpaceX; | |
2002 | 182 soft_billboard.sParentBillboardID = i; |
0 | 183 soft_billboard.uScreenSpaceY = p->uScreenSpaceY; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
184 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
|
185 soft_billboard._screenspace_y_scaler_packedfloat = p->_screenspace_y_scaler_packedfloat; |
0 | 186 soft_billboard.sZValue = p->sZValue; |
187 soft_billboard.uFlags = p->field_1E; | |
2006 | 188 soft_billboard.sTintColor = p->sTintColor; |
0 | 189 v2 = p->uHwSpriteID; |
190 if ( v2 != -1 ) | |
191 { | |
192 if ( pRenderer->pRenderD3D ) | |
657 | 193 pRenderer->DrawBillboard_Indoor(&soft_billboard, &pSprites_LOD->pHardwareSprites[v2], p->dimming_level); |
0 | 194 else |
195 { | |
657 | 196 soft_billboard.pPalette = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, p->dimming_level, 1); |
0 | 197 if (p->field_1E & 0x0100) |
198 soft_billboard.pPalette = pPaletteManager->field_261600[p->uPalette]; | |
199 if ( !(soft_billboard.uFlags & 0x40) && soft_billboard.uFlags & 0x80 ) | |
200 soft_billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, 0, 1); | |
201 v5 = p->uHwSpriteID; | |
202 if ( v5 >= 0 ) | |
733 | 203 pSprites_LOD->pSpriteHeaders[v5].DrawSprite_sw(&soft_billboard, 1); |
0 | 204 } |
205 } | |
206 } | |
207 } | |
208 | |
209 //----- (004A16A5) -------------------------------------------------------- | |
1806 | 210 bool AreRenderSurfacesOk() |
0 | 211 { |
212 char v0; // zf@4 | |
213 bool result; // eax@8 | |
214 | |
1806 | 215 if (!pRenderer) |
216 return true; | |
0 | 217 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) |
218 { | |
219 if ( !pRenderer->pBackBuffer4 ) | |
220 goto LABEL_9; | |
221 v0 = pRenderer->pFrontBuffer4 == 0; | |
222 } | |
223 else | |
224 { | |
225 if ( !pRenderer->pBackBuffer2 ) | |
226 goto LABEL_9; | |
227 v0 = pRenderer->pFrontBuffer2 == 0; | |
228 } | |
229 if ( !v0 ) | |
230 { | |
231 LOBYTE(result) = 1; | |
232 return result; | |
233 } | |
234 LABEL_9: | |
235 LOBYTE(result) = 0; | |
236 return result; | |
237 } | |
238 | |
1338 | 239 void Render::RenderTerrainD3D() // New function |
86 | 240 { |
241 int v6; // ecx@8 | |
1427 | 242 struct Polygon *pTilePolygon; // ebx@8 |
186 | 243 |
244 //warning: the game uses CW culling by default, ccw is incosistent | |
245 pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CCW); | |
246 | |
1338 | 247 static RenderVertexSoft pTerrainVertices[128 * 128];//vertexCountX and vertexCountZ |
248 | |
249 //Генерация местоположения вершин------------------------------------------------------------------------- | |
250 //решётка вершин делится на две части от -64 до 0 и от 0 до 64 | |
251 // | |
252 // -64 X 0 64 | |
253 // --------------- 64 | |
254 // | | | | |
255 // | | | | |
256 // | | | | |
257 // 0|------+------| Z | |
258 // | | | | |
259 // | | | | |
260 // | | | | |
261 // --------------- | |
262 // -64 | |
263 | |
264 int blockScale = 512; | |
265 int heightScale = 32; | |
266 for (unsigned int z = 0; z < 128; ++z) | |
267 { | |
268 for (unsigned int x = 0; x < 128; ++x) | |
269 { | |
270 pTerrainVertices[z * 128 + x].vWorldPosition.x = (-64 + (signed)x) * blockScale; | |
271 pTerrainVertices[z * 128 + x].vWorldPosition.y = (64 - (signed)z) * blockScale; | |
272 pTerrainVertices[z * 128 + x].vWorldPosition.z = heightScale * pOutdoor->pTerrain.pHeightmap[z * 128 + x]; | |
121 | 273 pGame->pIndoorCameraD3D->ViewTransform(&pTerrainVertices[z * 128 + x], 1); |
274 pGame->pIndoorCameraD3D->Project(&pTerrainVertices[z * 128 + x], 1, 0); | |
106 | 275 } |
276 } | |
1338 | 277 //-------------------------------------------------------------------------------------------------------------------- |
278 | |
279 // | |
1344 | 280 for (unsigned int z = 0; z < 127; ++z) |
281 { | |
282 for (unsigned int x = 0; x < 127; ++x) | |
1338 | 283 { |
1637 | 284 pTilePolygon = &array_77EC08[pODMRenderParams->uNumPolygons]; |
1427 | 285 pTilePolygon->flags = 0; |
286 pTilePolygon->field_32 = 0; | |
287 pTilePolygon->uTileBitmapID = pOutdoor->DoGetTileTexture(x, z); | |
288 pTilePolygon->pTexture = (Texture *)&pBitmaps_LOD->pHardwareTextures[pTilePolygon->uTileBitmapID]; | |
289 if (pTilePolygon->uTileBitmapID == 0xFFFF) | |
106 | 290 continue; |
186 | 291 |
1338 | 292 //pTile->flags = 0x8010 |pOutdoor->GetSomeOtherTileInfo(x, z); |
1427 | 293 pTilePolygon->flags = pOutdoor->GetSomeOtherTileInfo(x, z); |
294 pTilePolygon->field_32 = 0; | |
295 pTilePolygon->field_59 = 1; | |
296 pTilePolygon->sTextureDeltaU = 0; | |
297 pTilePolygon->sTextureDeltaV = 0; | |
1338 | 298 // x,z x+1,z |
299 // .____________. | |
300 // | | | |
301 // | | | |
302 // | | | |
303 // | | | |
304 // | | | |
305 // .____________. | |
306 // x,z+1 x+1,z+1 | |
307 memcpy(&array_73D150[0], &pTerrainVertices[z * 128 + x], sizeof(RenderVertexSoft));//x, z | |
106 | 308 array_73D150[0].u = 0; |
309 array_73D150[0].v = 0; | |
1338 | 310 memcpy(&array_73D150[1], &pTerrainVertices[z * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z |
106 | 311 array_73D150[1].u = 1; |
312 array_73D150[1].v = 0; | |
1338 | 313 memcpy(&array_73D150[2], &pTerrainVertices[(z + 1) * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z + 1 |
106 | 314 array_73D150[2].u = 1; |
315 array_73D150[2].v = 1; | |
1338 | 316 memcpy(&array_73D150[3], &pTerrainVertices[(z + 1) * 128 + x], sizeof(RenderVertexSoft));//x, z + 1 |
106 | 317 array_73D150[3].u = 0; |
318 array_73D150[3].v = 1; | |
1338 | 319 //v58 = 0; |
320 //if (v58 == 4) // if all y == first y; primitive in xz plane | |
321 //pTile->field_32 |= 0x0001; | |
1427 | 322 pTilePolygon->pODMFace = nullptr; |
323 pTilePolygon->uNumVertices = 4; | |
324 pTilePolygon->field_59 = 5; | |
1338 | 325 |
326 //shading (затенение)---------------------------------------------------------------------------- | |
327 //uint norm_idx = pTerrainNormalIndices[2 * (z * 128 + x) + 1]; | |
1424 | 328 uint norm_idx = pTerrainNormalIndices[2 * (x * 128 + z) + 2]; |
638 | 329 assert(norm_idx < uNumTerrainNormals); |
330 | |
1980 | 331 Vec3_float_* norm = &pTerrainNormals[norm_idx]; |
1338 | 332 float _f = ((norm->x * (float)pOutdoor->vSunlight.x / 65536.0) - |
333 (norm->y * (float)pOutdoor->vSunlight.y / 65536.0) - | |
334 (norm->z * (float)pOutdoor->vSunlight.z / 65536.0)); | |
1427 | 335 pTilePolygon->dimming_level = 20.0 - floorf(20.0 * _f + 0.5f); |
1338 | 336 //----------------------------------------------------------------------------------------------- |
638 | 337 |
1637 | 338 ++pODMRenderParams->uNumPolygons; |
339 ++pODMRenderParams->field_44; | |
340 assert(pODMRenderParams->uNumPolygons < 20000); | |
265 | 341 |
1427 | 342 pTilePolygon->uBModelID = 0; |
343 pTilePolygon->uBModelFaceID = 0; | |
344 pTilePolygon->field_50 = (8 * (0 | (0 << 6))) | 6; | |
345 for (unsigned int k = 0; k < pTilePolygon->uNumVertices; ++k) | |
106 | 346 { |
347 memcpy(&array_50AC10[k], &array_73D150[k], sizeof(struct RenderVertexSoft)); | |
168 | 348 array_50AC10[k]._rhw = 1.0 / (array_73D150[k].vWorldViewPosition.x + 0.0000001000000011686097); |
106 | 349 } |
140 | 350 |
1338 | 351 // check the transparency and texture (tiles) mapping (проверка прозрачности и наложение текстур (тайлов))---------------------- |
186 | 352 bool transparent = false; |
1427 | 353 if ( !( pTilePolygon->flags & 1 ) ) // не поддерживается TextureFrameTable |
354 { | |
355 if ( /*pTile->flags & 2 && */pTilePolygon->uTileBitmapID == pRenderer->hd_water_tile_id) | |
1338 | 356 { |
357 //transparent = false; | |
358 v6 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame]; | |
359 } | |
360 else | |
361 { | |
1427 | 362 v6 = pTilePolygon->uTileBitmapID; |
363 if ( !_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5) ) | |
1338 | 364 transparent = true; |
365 } | |
179 | 366 |
140 | 367 assert(v6 < 1000); // many random crashes here |
186 | 368 |
369 // for all shore tiles - draw a tile water under them since they're half-empty | |
1427 | 370 if (!_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5)) // all shore tile filenames are wtrdrXXX |
371 pTilePolygon->DrawBorderTiles(); | |
372 | |
373 pRenderer->DrawTerrainPolygon(pTilePolygon->uNumVertices, pTilePolygon, pBitmaps_LOD->pHardwareTextures[v6], transparent, true); | |
1338 | 374 } |
375 //else //здесь уже пограничные тайлы воды | |
376 //pTile->DrawBorderTiles(); | |
377 //-------------------------------------------------------------------------------------------------------------------------------- | |
186 | 378 |
1637 | 379 --pODMRenderParams->uNumPolygons; |
380 --pODMRenderParams->field_44; | |
106 | 381 } |
382 } | |
383 } | |
0 | 384 |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
385 |
0 | 386 |
387 //----- (0047BACF) -------------------------------------------------------- | |
388 void Render::TransformBillboardsAndSetPalettesODM() | |
389 { | |
142 | 390 //int v0; // edi@1 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
391 //char *v1; // esi@2 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
392 //unsigned int v2; // edx@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
393 //int v3; // eax@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
394 //int v4; // edi@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
395 //int v5; // eax@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
396 //__int16 v6; // di@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
397 //int v7; // eax@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
398 //int v8; // ebx@4 |
0 | 399 unsigned __int16 *v9; // eax@7 |
400 char v10; // zf@9 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
401 //DWORD v11; // eax@13 |
0 | 402 int v12; // eax@13 |
403 int v13; // eax@14 | |
404 RenderBillboardTransform_local0 billboard; // [sp+4h] [bp-60h]@1 | |
405 int v15; // [sp+54h] [bp-10h]@13 | |
142 | 406 //int v16; // [sp+58h] [bp-Ch]@1 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
407 //int v17; // [sp+5Ch] [bp-8h]@2 |
0 | 408 int v18; // [sp+60h] [bp-4h]@13 |
409 | |
2002 | 410 billboard.sParentBillboardID = -1; |
0 | 411 billboard.pTarget = pRenderer->pTargetSurface; |
412 billboard.pTargetZ = pRenderer->pActiveZBuffer; | |
413 billboard.uTargetPitch = pRenderer->uTargetSurfacePitch; | |
693 | 414 billboard.uViewportX = pViewport->uViewportTL_X; |
415 billboard.uViewportY = pViewport->uViewportTL_Y; | |
416 billboard.uViewportZ = pViewport->uViewportBR_X - 1; | |
417 billboard.uViewportW = pViewport->uViewportBR_Y; | |
1637 | 418 pODMRenderParams->uNumBillboards = uNumBillboardsToDraw; |
142 | 419 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
420 for (int i = 0; i < ::uNumBillboardsToDraw; ++i) |
0 | 421 { |
1980 | 422 RenderBillboard* pBillboard = &pBillboardRenderList[i]; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
423 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
424 billboard.uScreenSpaceX = pBillboard->uScreenSpaceX; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
425 billboard.uScreenSpaceY = pBillboard->uScreenSpaceY; |
2002 | 426 billboard.sParentBillboardID = i; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
427 billboard._screenspace_x_scaler_packedfloat = pBillboard->_screenspace_x_scaler_packedfloat; |
2006 | 428 billboard.sTintColor = pBillboard->sTintColor; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
429 billboard._screenspace_y_scaler_packedfloat = pBillboard->_screenspace_y_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
430 billboard.sZValue = pBillboard->sZValue; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
431 billboard.uFlags = pBillboard->field_1E; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
432 if (pBillboard->uHwSpriteID != -1) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
433 { |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
434 if (!pRenderer->pRenderD3D) __debugbreak(); // no sw rendering |
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
435 //if (pRenderer->pRenderD3D) |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
436 pRenderer->TransformBillboard(&billboard, |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
437 &pSprites_LOD->pHardwareSprites[pBillboard->uHwSpriteID], |
657 | 438 pBillboard->dimming_level, pBillboard); |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
439 /*else |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
440 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
441 assert(false); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
442 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
443 auto v1 = (char *)&pBillboard->uScreenSpaceY; |
0 | 444 if ( *(v1 - 10) & 2 ) |
445 v9 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 0, 1); | |
446 else | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
447 v9 = sr_GetBillboardPalette((RenderBillboard *)(v1 - 40), *((short *)v1 - 7), pBillboard->sZValue, *((short *)v1 + 1)); |
0 | 448 v10 = (*(v1 - 9) & 1) == 0; |
449 billboard.pPalette = v9; | |
450 if ( !v10 ) | |
451 billboard.pPalette = pPaletteManager->field_261600[*((short *)v1 - 7)]; | |
452 if ( !(billboard.uFlags & 0x40) && billboard.uFlags & 0x80 ) | |
453 { | |
323 | 454 v12 = stru_5C6E00->Cos(i * 5 + GetTickCount()); |
0 | 455 v15 = abs(v12); |
456 v18 = (unsigned __int64)(15i64 * v15) >> 16; | |
457 billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 15 - v18, 1); | |
458 } | |
459 v13 = *((short *)v1 - 8); | |
460 if ( v13 >= 0 ) | |
733 | 461 pSprites_LOD->pSpriteHeaders[v13].DrawSprite_sw(&billboard, 1); |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
462 }*/ |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
463 } |
0 | 464 } |
465 } | |
466 | |
467 //----- (0047AF11) -------------------------------------------------------- | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
468 void Render::DrawSpriteObjects_ODM() |
0 | 469 { |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
470 //char *v0; // edi@2 |
430 | 471 //ObjectDesc *v1; // ebx@4 |
0 | 472 __int16 v2; // cx@5 |
473 RenderBillboard *v3; // esi@10 | |
474 SpriteFrame *v4; // eax@10 | |
430 | 475 //SpriteFrame *v5; // ebx@10 |
0 | 476 unsigned int v6; // eax@10 |
430 | 477 //int v7; // ecx@10 |
478 //int v8; // edx@10 | |
0 | 479 int v9; // ecx@10 |
480 unsigned __int16 v10; // ax@10 | |
430 | 481 //int *v11; // eax@14 |
0 | 482 int v12; // eax@22 |
483 int v13; // ST3C_4@23 | |
484 int v14; // eax@23 | |
485 int v15; // ecx@23 | |
486 int v16; // ebx@23 | |
487 int v17; // ecx@25 | |
488 int v18; // eax@25 | |
489 int v19; // ST40_4@26 | |
490 int v20; // ecx@26 | |
491 int v21; // ST44_4@28 | |
492 int v22; // ST3C_4@29 | |
493 signed __int64 v23; // qtt@30 | |
494 int v24; // ebx@30 | |
495 int v25; // ST3C_4@30 | |
496 int v26; // eax@31 | |
497 char v27; // zf@31 | |
430 | 498 //SpriteFrame *v28; // [sp+Ch] [bp-34h]@10 |
499 //__int16 a5; // [sp+10h] [bp-30h]@10 | |
0 | 500 int v30; // [sp+14h] [bp-2Ch]@23 |
501 int v31; // [sp+14h] [bp-2Ch]@29 | |
502 __int16 v32; // [sp+14h] [bp-2Ch]@30 | |
503 int v33; // [sp+18h] [bp-28h]@23 | |
504 int v34; // [sp+18h] [bp-28h]@26 | |
505 int v35; // [sp+18h] [bp-28h]@30 | |
506 int v36; // [sp+1Ch] [bp-24h]@10 | |
507 int v37; // [sp+1Ch] [bp-24h]@23 | |
508 int a6; // [sp+20h] [bp-20h]@10 | |
509 int a6a; // [sp+20h] [bp-20h]@23 | |
510 int v40; // [sp+24h] [bp-1Ch]@25 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
511 //signed int v41; // [sp+28h] [bp-18h]@1 |
0 | 512 int v42; // [sp+2Ch] [bp-14h]@23 |
513 int y; // [sp+30h] [bp-10h]@10 | |
514 int x; // [sp+34h] [bp-Ch]@10 | |
515 int z; // [sp+38h] [bp-8h]@10 | |
516 signed __int16 v46; // [sp+3Ch] [bp-4h]@12 | |
517 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
518 //v41 = 0; |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
519 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
|
520 { |
1980 | 521 SpriteObject* object = &pSpriteObjects[i]; |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
522 //auto v0 = (char *)&pSpriteObjects[i].uSectorID; |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
523 //v0 = (char *)&pSpriteObjects[0].uSectorID; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
524 //do |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
525 //{ |
430 | 526 if (!object->uObjectDescID) // item probably pciked up |
527 continue; | |
528 | |
529 assert(object->uObjectDescID < pObjectList->uNumObjects); | |
1980 | 530 ObjectDesc* object_desc = &pObjectList->pObjects[object->uObjectDescID]; |
430 | 531 if (object_desc->NoSprite()) |
532 continue; | |
533 | |
534 //v1 = &pObjectList->pObjects[*((short *)v0 - 13)]; | |
535 //if ( !(v1->uFlags & 1) ) | |
536 //{ | |
537 //v2 = *((short *)v0 - 14) | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
538 v2 = object->uType; |
430 | 539 if ( (v2 < 1000 || v2 >= 10000) && (v2 < 500 || v2 >= 600) || pGame->pStru6Instance->_4A81CA(object) ) |
540 { | |
541 //a5 = *(short *)v0; | |
542 x = object->vPosition.x; | |
543 y = object->vPosition.y; | |
544 z = object->vPosition.z; | |
545 v3 = &pBillboardRenderList[::uNumBillboardsToDraw]; | |
546 v4 = pSpriteFrameTable->GetFrame(object_desc->uSpriteID, object->uSpriteFrameID); | |
547 //v5 = v4; | |
548 //v28 = v4; | |
549 v36 = v4->uFlags; | |
550 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
|
551 v6 = stru_5C6E00->Atan2(object->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x, object->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y); |
430 | 552 //LOWORD(v7) = object->uFacing; |
553 //v8 = v36; | |
554 v9 = ((signed int)(stru_5C6E00->uIntegerPi + ((signed int)stru_5C6E00->uIntegerPi >> 3) + object->uFacing - v6) >> 8) & 7; | |
555 v10 = v4->pHwSpriteIDs[v9]; | |
0 | 556 v3->uHwSpriteID = v10; |
557 if ( v36 & 0x20 ) | |
558 { | |
430 | 559 //v8 = v36; |
560 z -= (signed int)((unsigned __int64)(v4->scale * (signed __int64)pSprites_LOD->pSpriteHeaders[(signed __int16)v10].uHeight) >> 16) >> 1; | |
0 | 561 } |
562 v46 = 0; | |
430 | 563 if ( v36 & 2 ) |
0 | 564 v46 = 2; |
430 | 565 //v11 = (int *)(256 << v9); |
566 if ( (256 << v9) & v36 ) | |
0 | 567 v46 |= 4u; |
430 | 568 if ( v36 & 0x40000 ) |
0 | 569 v46 |= 0x40u; |
430 | 570 if ( v36 & 0x20000 ) |
0 | 571 LOBYTE(v46) = v46 | 0x80; |
572 if ( a6 ) | |
573 { | |
430 | 574 //LOBYTE(v11) = byte_4E94D3; |
575 pMobileLightsStack->AddLight(x, y, z, object->uSectorID, a6, 0xFFu, 0xFFu, 0xFFu, byte_4E94D3); | |
0 | 576 } |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
577 v12 = (x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
578 if (pGame->pIndoorCameraD3D->sRotationX) |
0 | 579 { |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
580 v13 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 581 v30 = ((unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) |
582 + ((unsigned __int64)(v13 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
583 v37 = (unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
584 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
|
585 v33 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1642 | 586 v14 = (unsigned __int64)(v30 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16; |
587 v15 = (unsigned __int64)(v33 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16; | |
0 | 588 v16 = v15 + v14; |
589 v42 = v15 + v14; | |
1637 | 590 if ( v15 + v14 >= 262144 && v16 <= pODMRenderParams->shading_dist_mist << 16 ) |
0 | 591 { |
592 v17 = a6a - v37; | |
593 v40 = a6a - v37; | |
1642 | 594 v18 = ((unsigned __int64)(v33 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) |
595 - ((unsigned __int64)(v30 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
0 | 596 goto LABEL_29; |
597 } | |
598 } | |
599 else | |
600 { | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
601 v34 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 602 v19 = (unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; |
603 v20 = (unsigned __int64)(v34 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
0 | 604 v16 = v20 + v19; |
605 v42 = v20 + v19; | |
1637 | 606 if ( v20 + v19 >= 262144 && v16 <= pODMRenderParams->shading_dist_mist << 16 ) |
0 | 607 { |
1642 | 608 v21 = (unsigned __int64)(((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16) * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
609 v17 = ((unsigned __int64)(v34 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v21; | |
610 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
|
611 v18 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
0 | 612 LABEL_29: |
613 v31 = v18; | |
614 v22 = abs(v17); | |
615 if ( abs(v16) >= v22 ) | |
616 { | |
617 LODWORD(v23) = 0; | |
1637 | 618 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad); |
0 | 619 v24 = v23 / v42; |
620 v25 = v23 / v42; | |
621 LODWORD(v23) = 0; | |
1637 | 622 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad); |
430 | 623 v35 = pViewport->uScreenCenterX - ((signed int)(((unsigned __int64)(v25 * (signed __int64)v40) >> 16) + 32768) >> 16); |
624 v32 = LOWORD(pViewport->uScreenCenterY) - (((unsigned int)((unsigned __int64)(v23 / v42 * v31) >> 16) + 32768) >> 16); | |
625 | |
626 //if (::uNumBillboardsToDraw >= 500) | |
627 // return; | |
628 assert(::uNumBillboardsToDraw < 500); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
629 ++::uNumBillboardsToDraw; |
0 | 630 ++uNumSpritesDrawnThisFrame; |
430 | 631 |
632 object->uAttributes |= 1; | |
633 v3->uPalette = v4->uPaletteIndex; | |
634 v3->uIndoorSectorID = object->uSectorID; | |
635 v3->_screenspace_x_scaler_packedfloat = (unsigned __int64)(v4->scale * (signed __int64)v24) >> 16; | |
636 v26 = (unsigned __int64)(v4->scale * (signed __int64)v24) >> 16; | |
637 v3->pSpriteFrame = v4; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
638 v3->_screenspace_y_scaler_packedfloat = v26; |
0 | 639 v3->field_1E = v46; |
430 | 640 v3->world_x = x; |
641 v3->world_y = y; | |
642 v3->world_z = z; | |
0 | 643 v3->uScreenSpaceX = v35; |
644 v3->uScreenSpaceY = v32; | |
645 HIWORD(v26) = HIWORD(v42); | |
646 LOWORD(v26) = 0; | |
430 | 647 v27 = (object->uAttributes & 0x20) == 0; |
862 | 648 v3->sZValue = v26 + (PID(OBJECT_Item,i)); |
657 | 649 v3->dimming_level = 0; |
2006 | 650 v3->sTintColor = 0; |
0 | 651 if ( !v27 ) |
652 { | |
653 if ( !pRenderer->pRenderD3D ) | |
654 v3->sZValue = 0; | |
655 } | |
656 } | |
657 goto LABEL_34; | |
658 } | |
659 } | |
660 } | |
430 | 661 //} |
0 | 662 LABEL_34: |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
663 ; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
664 //++v41; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
665 //v0 += 112; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
666 //} |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
667 //while ( v41 < (signed int)uNumSpriteObjects ); |
0 | 668 } |
669 } | |
670 | |
671 //----- (0049D9BC) -------------------------------------------------------- | |
672 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut) | |
673 { | |
674 size_t v4; // eax@1 | |
675 size_t v5; // eax@1 | |
676 IUnknown *v6; // eax@10 | |
677 size_t v7; // eax@13 | |
678 DDDEVICEIDENTIFIER ddDevId; // [sp+4h] [bp-4F8h]@11 | |
679 DDSURFACEDESC2 v10;/*int v10; // [sp+42Ch] [bp-D0h]@16 | |
680 int v11; // [sp+430h] [bp-CCh]@16 | |
681 int v12; // [sp+434h] [bp-C8h]@16 | |
682 int v13; // [sp+438h] [bp-C4h]@16 | |
683 int v14; // [sp+474h] [bp-88h]@16*/ | |
684 DDSCAPS2 ddsCaps; // [sp+4A8h] [bp-54h]@14 | |
685 unsigned int uFreeVideoMem; // [sp+4B8h] [bp-44h]@14 | |
686 RenderD3D_aux aux; // [sp+4BCh] [bp-40h]@19 | |
687 IDirect3D3 *pDirect3D3; // [sp+4C4h] [bp-38h]@18 | |
688 int v19; // [sp+4C8h] [bp-34h]@16 | |
689 RenderD3D_D3DDevDesc v20; // [sp+4CCh] [bp-30h]@1 | |
690 LPDIRECTDRAW pDirectDraw; // [sp+4F4h] [bp-8h]@4 | |
691 IDirectDraw4 *pDirectDraw4; // [sp+4F8h] [bp-4h]@7 | |
692 | |
693 v4 = strlen(lpDriverName); | |
694 v20.pDriverName = new char[v4 + 1]; | |
695 v5 = strlen(lpDevDesc); | |
696 v20.pDeviceDesc = new char[v5 + 1]; | |
697 strcpy(v20.pDriverName, lpDriverName); | |
698 strcpy(v20.pDeviceDesc, lpDevDesc); | |
699 if ( lpGUID ) | |
700 { | |
701 v20.pGUID = new GUID; | |
702 memcpy(v20.pGUID, lpGUID, 0x10u); | |
703 } | |
704 else | |
705 { | |
706 v20.pGUID = 0; | |
707 } | |
708 | |
709 if (FAILED(DirectDrawCreate(v20.pGUID, &pDirectDraw, 0))) | |
710 { | |
711 delete [] v20.pDriverName; | |
712 delete [] v20.pDeviceDesc; | |
713 if ( v20.pGUID ) | |
714 delete v20.pGUID; | |
715 } | |
716 else | |
717 { | |
718 if (FAILED(pDirectDraw->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pDirectDraw4))) | |
719 { | |
720 delete [] v20.pDriverName; | |
721 delete [] v20.pDeviceDesc; | |
722 if ( v20.pGUID ) | |
723 delete v20.pGUID; | |
724 v6 = (IUnknown *)pDirectDraw; | |
725 } | |
726 else | |
727 { | |
728 pDirectDraw->Release(); | |
729 if (FAILED( pDirectDraw4->GetDeviceIdentifier(&ddDevId, 1u))) | |
730 { | |
731 v20.pDDraw4DevDesc = 0; | |
732 } | |
733 else | |
734 { | |
735 v7 = strlen(ddDevId.szDescription); | |
736 v20.pDDraw4DevDesc = new char[v7 + 1]; | |
737 strcpy(v20.pDDraw4DevDesc, ddDevId.szDescription); | |
738 } | |
739 memset(&ddsCaps, 0, 0x10u); | |
740 if (FAILED(pDirectDraw4->GetAvailableVidMem( | |
741 &ddsCaps, | |
742 (LPDWORD)&v20.uVideoMem, | |
743 (LPDWORD)&uFreeVideoMem))) | |
744 v20.uVideoMem = 0; | |
745 memset(&v10, 0, 0x7Cu); | |
746 v10.dwSize = 124; | |
747 v10.dwFlags = 6; | |
748 v10.dwHeight = 640; | |
749 v10.dwWidth = 480; | |
750 v10.ddpfPixelFormat.dwSize = 32; | |
751 | |
752 v19 = 0; | |
753 if ( FAILED(pDirectDraw4->EnumDisplayModes( | |
754 0, | |
755 0, | |
756 &v19, | |
757 (LPDDENUMMODESCALLBACK2)DDrawDisplayModesEnumerator)) | |
758 || !v19 | |
759 || FAILED(pDirectDraw4->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D3))) | |
760 { | |
761 delete [] v20.pDriverName; | |
762 delete [] v20.pDeviceDesc; | |
763 if ( v20.pDDraw4DevDesc ) | |
764 free(v20.pDDraw4DevDesc); | |
765 if ( v20.pGUID ) | |
766 delete v20.pGUID; | |
767 v6 = (IUnknown *)pDirectDraw4; | |
768 } | |
769 else | |
770 { | |
771 aux.pInfo = pOut; | |
772 aux.ptr_4 = &v20; | |
773 pDirect3D3->EnumDevices((LPD3DENUMDEVICESCALLBACK)D3DDeviceEnumerator, &aux); | |
774 delete [] v20.pDriverName; | |
775 delete [] v20.pDeviceDesc; | |
776 if ( v20.pDDraw4DevDesc ) | |
777 free(v20.pDDraw4DevDesc); | |
778 if ( v20.pGUID ) | |
779 delete v20.pGUID; | |
780 pDirectDraw4->Release(); | |
781 v6 = (IUnknown *)pDirect3D3; | |
782 pDirectDraw4 = 0; | |
783 } | |
784 } | |
785 v6->Release(); | |
786 } | |
787 return 1; | |
788 } | |
789 | |
790 //----- (0049D784) -------------------------------------------------------- | |
791 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, RenderD3D_aux *a6) | |
792 { | |
793 int v6; // eax@1 | |
794 signed int v7; // edi@1 | |
795 signed int v8; // edi@14 | |
796 size_t v9; // eax@30 | |
797 size_t v10; // eax@30 | |
798 size_t v11; // eax@30 | |
799 size_t v12; // eax@30 | |
800 size_t v13; // eax@30 | |
801 | |
802 v6 = pHWDesc->dwFlags; | |
803 v7 = -1; | |
804 if ( v6 ) | |
805 { | |
806 if ( !a6->ptr_4->pGUID ) | |
807 v7 = 0; | |
808 if ( v6 && a6->ptr_4->pGUID ) | |
809 v7 = 1; | |
810 } | |
811 if ( !strcmp(lpDeviceName, "RGB Emulation") && !a6->ptr_4->pGUID ) | |
812 v7 = 2; | |
813 if ( !strcmp(lpDeviceName, "Reference Rasterizer") && !a6->ptr_4->pGUID ) | |
814 v7 = 3; | |
815 if ( v7 != -1 ) | |
816 { | |
817 v8 = v7; | |
818 a6->pInfo[v8].bIsDeviceCompatible = 1; | |
819 a6->pInfo[v8].uCaps = 0; | |
820 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 0x10) ) | |
821 a6->pInfo[v8].uCaps |= 2u; | |
822 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 2) ) | |
823 a6->pInfo[v8].uCaps |= 4u; | |
824 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 1) ) | |
825 a6->pInfo[v8].uCaps |= 8u; | |
826 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 0x20) ) | |
827 a6->pInfo[v8].uCaps |= 0x10u; | |
828 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 2) ) | |
829 a6->pInfo[v8].uCaps |= 0x20u; | |
830 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 4) ) | |
831 a6->pInfo[v8].uCaps |= 0x40u; | |
832 if ( !(BYTE1(pHWDesc->dwDevCaps) & 0x10) ) | |
833 BYTE1(a6->pInfo[v8].uCaps) |= 1u; | |
834 if ( pHWDesc->dpcTriCaps.dwTextureCaps & 0x20 ) | |
835 LOBYTE(a6->pInfo[v8].uCaps) |= 0x80u; | |
836 v9 = strlen(lpDeviceName); | |
837 a6->pInfo[v8].pName = new char[v9 + 1]; | |
838 strcpy(a6->pInfo[v8].pName, lpDeviceName); | |
839 v10 = strlen(lpDeviceDesc); | |
840 a6->pInfo[v8].pDescription = new char[v10 + 1]; | |
841 strcpy(a6->pInfo[v8].pDescription, lpDeviceDesc); | |
1631 | 842 a6->pInfo[v8].pGUID = new GUID; |
0 | 843 memcpy(a6->pInfo[v8].pGUID, lpGUID, 0x10u); |
844 v11 = strlen(a6->ptr_4->pDriverName); | |
845 a6->pInfo[v8].pDriverName = new char[v11 + 1]; | |
846 strcpy(a6->pInfo[v8].pDriverName, a6->ptr_4->pDriverName); | |
847 v12 = strlen(a6->ptr_4->pDeviceDesc); | |
848 a6->pInfo[v8].pDeviceDesc = new char[v12 + 1]; | |
849 strcpy(a6->pInfo[v8].pDeviceDesc, a6->ptr_4->pDeviceDesc); | |
850 v13 = strlen(a6->ptr_4->pDDraw4DevDesc); | |
851 a6->pInfo[v8].pDDraw4DevDesc = new char[v13 + 1]; | |
852 strcpy(a6->pInfo[v8].pDDraw4DevDesc, a6->ptr_4->pDDraw4DevDesc); | |
853 if ( a6->ptr_4->pGUID ) | |
854 { | |
855 a6->pInfo[v8].pDirectDrawGUID = new GUID; | |
856 memcpy(a6->pInfo[v8].pDirectDrawGUID, a6->ptr_4->pGUID, 0x10u); | |
857 } | |
858 else | |
859 { | |
860 a6->pInfo[v8].pDirectDrawGUID = 0; | |
861 } | |
862 a6->pInfo[v8].uVideoMem = a6->ptr_4->uVideoMem; | |
863 } | |
864 return 1; | |
865 } | |
866 | |
867 //----- (0049D75C) -------------------------------------------------------- | |
868 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2) | |
869 { | |
870 HRESULT result; // eax@3 | |
871 | |
872 if ( pSurfaceDesc->ddsCaps.dwCaps | 0x2000 && pSurfaceDesc->ddpfPixelFormat.dwRGBBitCount == 16 ) | |
873 { | |
874 *a2 = 1; | |
875 result = 0; | |
876 } | |
877 else | |
878 { | |
879 result = 1; | |
880 } | |
881 return result; | |
882 } | |
883 | |
884 //----- (0047A95E) -------------------------------------------------------- | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
885 void Render::PrepareDecorationsRenderList_ODM() |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
886 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
887 //char *v0; // esi@2 |
639 | 888 //DecorationDesc *v1; // ebx@6 |
0 | 889 __int16 v2; // ax@6 |
890 double v3; // st7@7 | |
639 | 891 //int v4; // eax@9 |
892 //int v5; // edx@9 | |
0 | 893 unsigned int v6; // edi@9 |
894 int v7; // eax@9 | |
895 SpriteFrame *v8; // eax@9 | |
635 | 896 //SpriteFrame *v9; // edi@9 |
0 | 897 unsigned __int16 *v10; // eax@9 |
898 int v11; // ecx@9 | |
899 int v12; // eax@9 | |
900 int v13; // ecx@9 | |
901 int v14; // ecx@20 | |
902 char v15; // dl@20 | |
903 signed int v16; // eax@20 | |
904 int v17; // eax@23 | |
905 int v18; // ecx@24 | |
906 int v19; // eax@24 | |
907 int v20; // ecx@24 | |
908 int v21; // ebx@26 | |
909 int v22; // eax@26 | |
910 int v23; // eax@30 | |
911 signed __int64 v24; // qtt@31 | |
912 int v25; // ebx@31 | |
913 int v26; // ecx@32 | |
914 RenderBillboard *v27; // eax@37 | |
915 __int16 v28; // dx@37 | |
916 __int16 v29; // cx@37 | |
917 int v30; // ecx@37 | |
918 int v31; // ebx@37 | |
619 | 919 Particle_sw local_0; // [sp+Ch] [bp-98h]@7 |
639 | 920 //int x; // [sp+74h] [bp-30h]@9 |
921 //int y; // [sp+78h] [bp-2Ch]@9 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
922 //int v35; // [sp+7Ch] [bp-28h]@1 |
639 | 923 //int v36; // [sp+80h] [bp-24h]@9 |
0 | 924 unsigned __int16 *v37; // [sp+84h] [bp-20h]@9 |
925 int v38; // [sp+88h] [bp-1Ch]@9 | |
926 int v39; // [sp+8Ch] [bp-18h]@24 | |
927 int v40; // [sp+90h] [bp-14h]@24 | |
928 int v41; // [sp+94h] [bp-10h]@24 | |
929 int v42; // [sp+98h] [bp-Ch]@9 | |
930 int a5; // [sp+9Ch] [bp-8h]@9 | |
931 int b; // [sp+A0h] [bp-4h]@22 | |
932 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
933 //v35 = 0; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
934 //if ( (signed int)uNumLevelDecorations > 0 ) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
935 //{ |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
936 //v0 = (char *)&pLevelDecorations[0].vPosition.y; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
937 //do |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
938 for (int i = 0; i < uNumLevelDecorations; ++i) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
939 { |
1980 | 940 LevelDecoration* decor = &pLevelDecorations[i]; |
941 char* v0 = (char *)&pLevelDecorations[i].vPosition.y; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
942 |
1491
6d21ef91cb2d
Rename LevelDecoration::_47A825 to LevelDecoration::IsObeliskChestActive().
yoctozepto
parents:
1490
diff
changeset
|
943 if ((!(decor->uFlags & LEVEL_DECORATION_OBELISK_CHEST) || decor->IsObeliskChestActive()) && !(decor->uFlags & LEVEL_DECORATION_INVISIBLE)) |
1490 | 944 { |
945 //v1 = &pDecorationList->pDecorations[decor->uDecorationDescID]; | |
1980 | 946 DecorationDesc* decor_desc = pDecorationList->pDecorations + decor->uDecorationDescID; |
1490 | 947 v2 = decor_desc->uFlags; |
948 if ( (char)v2 >= 0 ) | |
949 { | |
950 if ( !(v2 & 0x22) ) | |
0 | 951 { |
1490 | 952 //v4 = decor->vPosition.x; |
953 //v5 = decor->vPosition.z; | |
954 v6 = pMiscTimer->uTotalGameTimeElapsed; | |
955 //y = decor->vPosition.y; | |
956 //x = decor->vPosition.x; | |
957 //v36 = decor->vPosition.z; | |
958 v7 = abs(decor->vPosition.x + decor->vPosition.y); | |
959 | |
960 | |
961 #pragma region "New: seasons change" | |
962 extern bool change_seasons; | |
963 if (change_seasons) | |
964 switch (pParty->uCurrentMonth) | |
965 { | |
966 // case 531 (tree60), 536 (tree65), 537 (tree66) have no autumn/winter sprites | |
967 case 11: case 0: case 1: // winter | |
968 switch (decor_desc->uSpriteID) | |
969 { | |
970 //case 468: //bush02 grows on swamps, which are evergreeen actually | |
971 case 548: // flower10 | |
972 case 547: // flower09 | |
973 case 541: // flower03 | |
974 case 539: continue; // flower01 | |
975 | |
976 case 483: // tree01 | |
977 case 486: // tree04 | |
978 case 492: // tree10 | |
979 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 2); | |
980 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 2, v6 + v7); | |
981 break; | |
982 | |
983 default: | |
984 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
985 } | |
986 break; | |
987 | |
988 case 2: case 3: case 4: // spring | |
989 switch (decor_desc->uSpriteID) | |
990 { | |
991 } | |
992 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
993 break; | |
994 | |
995 case 8: case 9: case 10: // autumn | |
996 switch (decor_desc->uSpriteID) | |
997 { | |
998 //case 468: //bush02 grows on swamps, which are evergreeen actually | |
999 case 548: // flower10 | |
1000 case 547: // flower09 | |
1001 case 541: // flower03 | |
1002 case 539: continue; // flower01 | |
1003 | |
1004 case 483: // tree01 | |
1005 case 486: // tree04 | |
1006 case 492: // tree10 | |
1007 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 1); | |
1008 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 1, v6 + v7); | |
1009 break; | |
1010 | |
1011 default: | |
1012 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
1013 } | |
1014 break; | |
1015 | |
1016 case 5: case 6: case 7: // summer | |
1017 //all green by default | |
1018 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
1019 break; | |
1020 | |
1021 default: assert(pParty->uCurrentMonth >= 0 && pParty->uCurrentMonth < 12); | |
1022 } | |
1023 else | |
1024 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
1025 #pragma endregion | |
1026 //v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
1027 | |
1028 //v9 = v8; | |
1029 v42 = v8->uFlags; | |
1030 a5 = v8->uGlowRadius; | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1031 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
|
1032 decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y); |
1490 | 1033 v11 = *((int *)v0 + 2); |
1034 v37 = v10; | |
1035 v12 = v42; | |
1036 v38 = 0; | |
1037 v13 = ((signed int)(stru_5C6E00->uIntegerPi | |
1038 + ((signed int)stru_5C6E00->uIntegerPi >> 3) | |
1039 + v11 | |
1040 - (signed int)v37) >> 8) & 7; | |
1041 v37 = (unsigned __int16 *)v13; | |
1042 if ( v42 & 2 ) | |
1043 v38 = 2; | |
1044 if ( (256 << v13) & v42 ) | |
1045 v38 |= 4u; | |
1046 if ( v12 & 0x40000 ) | |
1047 v38 |= 0x40u; | |
1048 if ( v12 & 0x20000 ) | |
1049 LOBYTE(v38) = v38 | 0x80; | |
1050 if ( a5 ) | |
0 | 1051 { |
1490 | 1052 if ( pRenderer->pRenderD3D && pRenderer->bUseColoredLights ) |
0 | 1053 { |
1490 | 1054 v14 = decor_desc->uColoredLightRed; |
1055 v15 = decor_desc->uColoredLightGreen; | |
1056 v16 = decor_desc->uColoredLightBlue; | |
0 | 1057 } |
1058 else | |
1059 { | |
1490 | 1060 v16 = 255; |
1061 v14 = 255; | |
1062 v15 = 255; | |
1063 } | |
1064 b = v16; | |
1065 pStationaryLightsStack->AddLight( | |
1066 decor->vPosition.x, | |
1067 decor->vPosition.y, | |
1068 decor->vPosition.z + decor_desc->uDecorationHeight / 2, | |
1069 a5, | |
1070 v14, | |
1071 v15, | |
1072 v16, | |
1073 byte_4E94D0); | |
1074 } | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1075 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
|
1076 if (pGame->pIndoorCameraD3D->sRotationX) |
1490 | 1077 { |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1078 v40 = (decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 1079 v18 = ((unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) |
1080 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
1490 | 1081 v42 = v18; |
1642 | 1082 b = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
1083 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
|
1084 v40 = (decor->vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1642 | 1085 v41 = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16; |
1086 v19 = (unsigned __int64)(v18 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16; | |
1087 v20 = v19 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
1088 v39 = v19 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
1637 | 1089 if ( v20 >= 262144 && v20 <= pODMRenderParams->shading_dist_mist << 16 ) |
1490 | 1090 { |
1091 v21 = a5 - b; | |
1092 v41 = a5 - b; | |
1642 | 1093 a5 = (unsigned __int64)(v42 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16; |
1094 b = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16; | |
1095 v22 = ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) - a5; | |
1490 | 1096 LABEL_30: |
1097 v42 = v22; | |
1098 v40 = 2 * abs(v20); | |
1099 v23 = abs(v21); | |
1100 if ( v40 >= v23 ) | |
0 | 1101 { |
1490 | 1102 LODWORD(v24) = 0; |
1637 | 1103 HIDWORD(v24) = SLOWORD(pODMRenderParams->int_fov_rad); |
1490 | 1104 a5 = v24 / v39; |
1105 v25 = pViewport->uScreenCenterX | |
1106 - ((signed int)(((unsigned __int64)(v24 / v39 * v41) >> 16) + 32768) >> 16); | |
1107 b = (unsigned __int64)(a5 * (signed __int64)v42) >> 16; | |
1108 v41 = v24 / v39; | |
1109 v40 = pViewport->uScreenCenterY | |
1110 - ((signed int)(((unsigned __int64)(a5 * (signed __int64)v42) >> 16) + 32768) >> 16); | |
1111 v42 = v8->scale; | |
1112 v41 = (unsigned __int64)(v42 * v24 / v39) >> 16; | |
1113 v37 = (unsigned __int16 *)&v8->pHwSpriteIDs[(int)v37]; | |
1114 if ( pRenderer->pRenderD3D ) | |
1115 { | |
1116 v26 = v41; | |
1117 v42 = pSprites_LOD->pHardwareSprites[(signed __int16)*v37].uBufferWidth >> 1; | |
1118 b = (unsigned __int64)(v42 * (signed __int64)v41) >> 16; | |
1119 } | |
1120 else | |
1121 { | |
1122 v26 = v41; | |
1123 v42 = pSprites_LOD->pSpriteHeaders[(signed __int16)*v37].uWidth >> 1; | |
1124 b = (unsigned __int64)(v42 * (signed __int64)v41) >> 16; | |
1125 } | |
1126 if ( b + v25 >= (signed int)pViewport->uViewportTL_X && v25 - b <= (signed int)pViewport->uViewportBR_X ) | |
1127 { | |
1128 if (::uNumBillboardsToDraw >= 500) | |
1129 return; | |
1130 v27 = &pBillboardRenderList[::uNumBillboardsToDraw++]; | |
1131 ++uNumDecorationsDrawnThisFrame; | |
1132 v27->uHwSpriteID = *v37; | |
1133 v28 = v8->uPaletteIndex; | |
1134 v27->_screenspace_x_scaler_packedfloat = v26; | |
1135 v27->_screenspace_y_scaler_packedfloat = v26; | |
1136 v29 = v38; | |
1137 v27->uScreenSpaceX = v25; | |
1138 HIBYTE(v29) |= 2u; | |
1139 v27->uPalette = v28; | |
1140 v27->field_1E = v29; | |
1141 v27->world_x = decor->vPosition.x; | |
1142 v27->world_y = decor->vPosition.y; | |
1143 v27->world_z = decor->vPosition.z; | |
1144 v27->uScreenSpaceY = v40; | |
1145 HIWORD(v30) = HIWORD(v39); | |
1146 v31 = PID(OBJECT_Decoration,i); | |
1147 LOWORD(v30) = 0; | |
1148 v27->uIndoorSectorID = 0; | |
1149 v27->sZValue = v30 + v31; | |
1150 v27->dimming_level = 0; | |
1151 v27->pSpriteFrame = v8; | |
2006 | 1152 v27->sTintColor = 0; |
1490 | 1153 } |
0 | 1154 } |
1490 | 1155 goto LABEL_38; |
1156 } | |
1157 } | |
1158 else | |
1159 { | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1160 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
|
1161 v40 = (decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 1162 b = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; |
1163 a5 = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
1164 v20 = b + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
1165 v39 = b + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
1637 | 1166 if ( v20 >= 262144 && v20 <= pODMRenderParams->shading_dist_mist << 16 ) |
1490 | 1167 { |
1642 | 1168 a5 = (unsigned __int64)(v42 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
1169 b = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; | |
1170 v21 = ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - a5; | |
1171 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
|
1172 v22 = (decor->vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1490 | 1173 goto LABEL_30; |
0 | 1174 } |
1175 } | |
1176 } | |
1490 | 1177 } |
1178 else | |
1179 { | |
1180 memset(&local_0, 0, 0x68u); | |
1181 v3 = (double)*((signed int *)v0 - 1); | |
1182 local_0.type = ParticleType_Bitmap | ParticleType_Rotating | ParticleType_8; | |
1183 local_0.uDiffuse = 0xFF3C1E; | |
1184 local_0.x = v3; | |
1185 local_0.y = (double)*(signed int *)v0; | |
1186 local_0.z = (double)*((signed int *)v0 + 1); | |
1187 local_0.r = 0.0; | |
1188 local_0.g = 0.0; | |
1189 local_0.b = 0.0; | |
1190 local_0.flt_28 = 1.0; | |
1191 local_0.timeToLive = (rand() & 0x80) + 128; | |
1192 local_0.uTextureID = pBitmaps_LOD->LoadTexture("effpar01"); | |
1193 pGame->pParticleEngine->AddParticle(&local_0); | |
1194 } | |
1195 } | |
0 | 1196 LABEL_38: |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1197 ; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1198 //++v35; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1199 //v0 += 32; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1200 } |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1201 //while ( v35 < (signed int)uNumLevelDecorations ); |
0 | 1202 } |
1203 | |
1204 //----- (0049D717) -------------------------------------------------------- | |
1205 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst) | |
1206 { | |
1207 HRESULT v2; // esi@2 | |
1208 | |
2069 | 1209 if ( Src->dwFlags & (0x400 | 0x2000)) |
0 | 1210 { |
1211 v2 = 0; | |
1212 if ( Src->dwRGBBitCount == 16 && !Src->dwRBitMask ) | |
1213 goto LABEL_6; | |
1214 if ( !Dst->dwSize ) | |
1215 { | |
1216 v2 = 1; | |
1217 LABEL_6: | |
2078 | 1218 memcpy(Dst, Src, sizeof(DDPIXELFORMAT)); |
0 | 1219 return v2; |
1220 } | |
1221 } | |
1222 return 1; | |
1223 } | |
1224 | |
1225 //----- (0049DC28) -------------------------------------------------------- | |
1226 void RenderD3D::GetAvailableDevices(RenderD3D__DevInfo **pOutDevices) | |
1227 { | |
1228 RenderD3D__DevInfo *v2; // eax@1 | |
1229 | |
1230 v2 = new RenderD3D__DevInfo[4];// 4 items | |
1231 *pOutDevices = v2; | |
1232 memset(v2, 0, 0xA0u); | |
1985 | 1233 DirectDrawEnumerateExA((LPDDENUMCALLBACKEXA)RenderD3D__DeviceEnumerator, *pOutDevices, DDENUM_ATTACHEDSECONDARYDEVICES); |
0 | 1234 } |
1235 | |
1236 //----- (0049DC58) -------------------------------------------------------- | |
1237 RenderD3D::RenderD3D() | |
1238 { | |
1239 RenderD3D *v1; // esi@1 | |
1240 | |
1241 v1 = this; | |
1242 this->pHost = 0; | |
1243 this->pDirect3D = 0; | |
1244 this->pUnk = 0; | |
1245 this->pBackBuffer = 0; | |
1246 this->pFrontBuffer = 0; | |
1247 this->pZBuffer = 0; | |
1248 this->pDevice = 0; | |
1249 this->pViewport = 0; | |
1250 this->field_40 = 1; | |
1251 this->field_44 = 10; | |
1252 GetAvailableDevices(&this->pAvailableDevices); | |
1253 } | |
1254 | |
1255 //----- (0049DC90) -------------------------------------------------------- | |
1256 void RenderD3D::Release() | |
1257 { | |
1258 RenderD3D *v1; // esi@1 | |
1259 IDirectDraw4 *v2; // eax@2 | |
1260 signed int v3; // edi@4 | |
1261 IDirect3DViewport3 *v4; // eax@22 | |
1262 IUnknown *v5; // eax@24 | |
1263 IDirectDrawSurface4 *v6; // eax@26 | |
1264 IDirect3DDevice3 *v7; // eax@28 | |
1265 IDirect3D3 *v8; // eax@30 | |
1266 IDirectDrawSurface4 *v9; // eax@32 | |
1267 IDirectDrawSurface4 *v10; // eax@34 | |
1268 IDirectDraw4 *v11; // eax@36 | |
1269 | |
1270 v1 = this; | |
1271 if ( !this->bWindowed ) | |
1272 { | |
1273 v2 = this->pHost; | |
1274 if ( v2 ) | |
1275 { | |
1276 v2->RestoreDisplayMode(); | |
1277 v1->pHost->SetCooperativeLevel(v1->hWindow, 8u); | |
1278 v1->pHost->FlipToGDISurface(); | |
1279 } | |
1280 } | |
1281 v3 = 0; | |
1282 do | |
1283 { | |
1284 if ( v1->pAvailableDevices[v3].pDriverName ) | |
1285 { | |
1286 free(v1->pAvailableDevices[v3].pDriverName); | |
1287 v1->pAvailableDevices[v3].pDriverName = 0; | |
1288 } | |
1289 if ( v1->pAvailableDevices[v3].pDeviceDesc ) | |
1290 { | |
1291 free(v1->pAvailableDevices[v3].pDeviceDesc); | |
1292 v1->pAvailableDevices[v3].pDeviceDesc = 0; | |
1293 } | |
1294 if ( v1->pAvailableDevices[v3].pDDraw4DevDesc ) | |
1295 { | |
1296 free(v1->pAvailableDevices[v3].pDDraw4DevDesc); | |
1297 v1->pAvailableDevices[v3].pDDraw4DevDesc = 0; | |
1298 } | |
1299 if ( v1->pAvailableDevices[v3].pDirectDrawGUID ) | |
1300 { | |
1301 free(v1->pAvailableDevices[v3].pDirectDrawGUID); | |
1302 v1->pAvailableDevices[v3].pDirectDrawGUID = 0; | |
1303 } | |
1304 if ( v1->pAvailableDevices[v3].pName ) | |
1305 { | |
1306 free(v1->pAvailableDevices[v3].pName); | |
1307 v1->pAvailableDevices[v3].pName = 0; | |
1308 } | |
1309 if ( v1->pAvailableDevices[v3].pDescription ) | |
1310 { | |
1311 free(v1->pAvailableDevices[v3].pDescription); | |
1312 v1->pAvailableDevices[v3].pDescription = 0; | |
1313 } | |
1314 if ( v1->pAvailableDevices[v3].pGUID ) | |
1315 { | |
1316 free(v1->pAvailableDevices[v3].pGUID); | |
1317 v1->pAvailableDevices[v3].pGUID = 0; | |
1318 } | |
1319 ++v3; | |
1320 } | |
1321 while ( v3 < 4 ); | |
1322 if ( v1->pAvailableDevices ) | |
1323 { | |
1324 free(v1->pAvailableDevices); | |
1325 v1->pAvailableDevices = 0; | |
1326 } | |
1327 v4 = v1->pViewport; | |
1328 if ( v4 ) | |
1329 { | |
1330 v4->Release(); | |
1331 v1->pViewport = 0; | |
1332 } | |
1333 v5 = v1->pUnk; | |
1334 if ( v5 ) | |
1335 { | |
1336 v5->Release(); | |
1337 v1->pUnk = 0; | |
1338 } | |
1339 v6 = v1->pZBuffer; | |
1340 if ( v6 ) | |
1341 { | |
1342 v6->Release(); | |
1343 v1->pZBuffer = 0; | |
1344 } | |
1345 v7 = v1->pDevice; | |
1346 if ( v7 ) | |
1347 { | |
1348 v7->Release(); | |
1349 v1->pDevice = 0; | |
1350 } | |
1351 v8 = v1->pDirect3D; | |
1352 if ( v8 ) | |
1353 { | |
1354 v8->Release(); | |
1355 v1->pDirect3D = 0; | |
1356 } | |
1357 v9 = v1->pBackBuffer; | |
1358 if ( v9 ) | |
1359 { | |
1360 v9->Release(); | |
1361 v1->pBackBuffer = 0; | |
1362 } | |
1363 v10 = v1->pFrontBuffer; | |
1364 if ( v10 ) | |
1365 { | |
1366 v10->Release(); | |
1367 v1->pFrontBuffer = 0; | |
1368 } | |
1369 v11 = v1->pHost; | |
1370 if ( v11 ) | |
1371 { | |
1372 v11->Release(); | |
1373 v1->pHost = 0; | |
1374 } | |
1375 } | |
1376 | |
1377 //----- (0049DE14) -------------------------------------------------------- | |
2069 | 1378 bool RenderD3D::CreateDevice(unsigned int uDeviceID, int bWindowed, OSWindow *window) |
0 | 1379 { |
1380 //IDirectDraw4 *v8; // eax@12 | |
1381 //IDirectDraw4 *v9; // eax@16 | |
1382 //IDirectDraw4 *v10; // eax@20 | |
1383 //IDirectDraw4 *v13; // eax@35 | |
1384 const char *v23; // [sp-4h] [bp-DCh]@9 | |
1385 const char *v24; // [sp-4h] [bp-DCh]@13 | |
1386 const char *v25; // [sp-4h] [bp-DCh]@19 | |
1387 DWORD v26; // [sp-4h] [bp-DCh]@30 | |
1388 DDSCAPS2 v27; // [sp+Ch] [bp-CCh]@37 | |
1389 DDSURFACEDESC2 ddsd2; // [sp+1Ch] [bp-BCh]@11 | |
1390 D3DVIEWPORT2 d3dvp2; // [sp+98h] [bp-40h]@28 | |
1391 IDirectDrawClipper *v30; // [sp+C4h] [bp-14h]@18 | |
1392 LPDIRECTDRAW lpDD; // [sp+C8h] [bp-10h]@1 | |
1393 | |
2069 | 1394 auto hWnd = window->GetApiHandle(); |
1395 int game_width = window->GetWidth(); | |
1396 int game_height = window->GetHeight(); | |
1397 | |
0 | 1398 this->bWindowed = bWindowed; |
1399 this->hWindow = hWnd; | |
1400 | |
1401 if (FAILED(DirectDrawCreate(pAvailableDevices[uDeviceID].pDirectDrawGUID, &lpDD, 0))) | |
1402 { | |
1403 sprintf(pErrorMessage, "Init - Failed to create DirectDraw interface.\n"); | |
1404 return 0; | |
1405 } | |
1406 | |
1407 if (FAILED(lpDD->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pHost))) | |
1408 { | |
1409 sprintf(pErrorMessage, "Init - Failed to create DirectDraw4 interface.\n"); | |
1410 if (lpDD) | |
1411 lpDD->Release(); | |
1412 return 0; | |
1413 } | |
1414 lpDD->Release(); | |
1415 lpDD = 0; | |
1416 | |
1417 if (bWindowed && !pAvailableDevices[uDeviceID].pDirectDrawGUID) | |
1418 { | |
1419 if (FAILED(pHost->SetCooperativeLevel(hWnd, DDSCL_MULTITHREADED | DDSCL_NORMAL))) | |
1420 { | |
1421 v23 = "Init - Failed to set cooperative level.\n"; | |
1422 sprintf(pErrorMessage, v23); | |
1423 LABEL_65: | |
1424 if (pHost) | |
1425 { | |
1426 pHost->Release(); | |
1427 pHost = 0; | |
1428 } | |
1429 return 0; | |
1430 } | |
1431 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2)); | |
1432 ddsd2.dwSize = sizeof(DDSURFACEDESC2); | |
1433 ddsd2.dwFlags = DDSD_CAPS; | |
1434 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE; | |
1435 if ( !pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) ) | |
1436 { | |
1437 ddsd2.dwSize = sizeof(DDSURFACEDESC2); | |
1438 pHost->GetDisplayMode(&ddsd2); | |
2069 | 1439 if ( FORCE_16_BITS && ddsd2.ddpfPixelFormat.dwRGBBitCount != 16 ) |
0 | 1440 { |
1441 v24 = "Init - Desktop isn't in 16 bit mode.\n"; | |
1442 goto LABEL_14; | |
1443 } | |
1444 | |
1445 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT; | |
1446 ddsd2.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN | DDSCAPS_3DDEVICE; | |
2069 | 1447 ddsd2.dwWidth = game_width; |
1448 ddsd2.dwHeight = game_height; | |
0 | 1449 if (pHost->CreateSurface(&ddsd2, &pBackBuffer, 0) ) |
1450 { | |
1451 v24 = "Init - Failed to create back buffer.\n"; | |
1452 LABEL_14: | |
1453 sprintf(pErrorMessage, v24); | |
1454 if (pFrontBuffer) | |
1455 { | |
1456 pFrontBuffer->Release(); | |
1457 pFrontBuffer = 0; | |
1458 } | |
1459 goto LABEL_65; | |
1460 } | |
1461 if ( pHost->CreateClipper(0, &v30, 0) ) | |
1462 { | |
1463 v25 = "Init - Failed to create clipper.\n"; | |
1464 goto LABEL_45; | |
1465 } | |
1466 v30->SetHWnd(0, hWnd); | |
1467 pFrontBuffer->SetClipper(v30); | |
1468 | |
1469 v30->Release(); | |
1470 v30 = 0; | |
1471 | |
1472 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D); | |
1473 | |
1474 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT; | |
1475 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER; | |
2069 | 1476 ddsd2.dwWidth = game_width; |
1477 ddsd2.dwHeight = game_height; | |
0 | 1478 |
1479 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID, | |
1480 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator, | |
1481 &ddsd2.ddpfPixelFormat) ) | |
1482 goto LABEL_21; | |
1483 if ( uDeviceID == 2 || uDeviceID == 3 ) | |
1484 ddsd2.ddsCaps.dwCaps |= DDSCAPS_SYSTEMMEMORY; | |
1485 | |
1486 if ( !pHost->CreateSurface(&ddsd2, &pZBuffer, 0) ) | |
1487 { | |
1488 if ( !pBackBuffer->AddAttachedSurface(pZBuffer) ) | |
1489 { | |
1490 if ( !pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID, | |
1491 pBackBuffer, | |
1492 &pDevice, | |
1493 0) ) | |
1494 { | |
1495 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2)); | |
1496 d3dvp2.dvClipWidth = 2.0; | |
1497 d3dvp2.dvClipY = 1.0; | |
1498 d3dvp2.dvClipHeight = 2.0; | |
1499 d3dvp2.dvMaxZ = 1.0; | |
1500 d3dvp2.dvMinZ = 0.0; | |
1501 goto LABEL_54; | |
1502 } | |
1503 LABEL_51: | |
1504 sprintf(pErrorMessage, "Init - Failed to create D3D device.\n"); | |
1505 if (pDirect3D) | |
1506 { | |
1507 pDirect3D->Release(); | |
1508 pDirect3D = 0; | |
1509 } | |
1510 goto LABEL_59; | |
1511 } | |
1512 LABEL_48: | |
1513 sprintf(pErrorMessage, "Init - Failed to attach z-buffer to back buffer.\n"); | |
1514 if (pZBuffer) | |
1515 { | |
1516 pZBuffer->Release(); | |
1517 pZBuffer = 0; | |
1518 } | |
1519 goto LABEL_61; | |
1520 } | |
1521 goto LABEL_44; | |
1522 } | |
1523 LABEL_36: | |
1524 v23 = "Init - Failed to create front buffer.\n"; | |
1525 sprintf(pErrorMessage, v23); | |
1526 goto LABEL_65; | |
1527 } | |
1528 if ( uDeviceID == 1 ) | |
1529 v26 = 1045; | |
1530 else | |
1531 v26 = 1041; | |
1532 if (pHost->SetCooperativeLevel(hWnd, v26) ) | |
1533 { | |
1534 v23 = "Init - Failed to set cooperative level.\n"; | |
1535 sprintf(pErrorMessage, v23); | |
1536 goto LABEL_65; | |
1537 } | |
1538 if (pHost->SetDisplayMode(640u, 480u, 16u, 0, 0) ) | |
1539 { | |
1540 v23 = "Init - Failed to set display mode.\n"; | |
1541 sprintf(pErrorMessage, v23); | |
1542 goto LABEL_65; | |
1543 } | |
1544 | |
1545 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2)); | |
1546 ddsd2.dwSize = sizeof(DDSURFACEDESC2); | |
1547 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT; | |
1548 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_3DDEVICE | DDSCAPS_FLIP | DDSCAPS_COMPLEX; | |
1549 ddsd2.dwBackBufferCount = 1; | |
1550 if ( pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) ) | |
1551 goto LABEL_36; | |
1552 //a3a = &pBackBuffer; | |
1553 //v14 = *v34; | |
1554 memset(&v27, 0, sizeof(DDSCAPS2)); | |
1555 v27.dwCaps = DDSCAPS_BACKBUFFER; | |
1556 //v33 = (IDirect3DDevice3 **)v14->GetAttachedSurface(&v27, &pBackBuffer); | |
1557 //hWnda = &pDirect3D; | |
1558 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D); | |
1559 if (FAILED(pFrontBuffer->GetAttachedSurface(&v27, &pBackBuffer))) | |
1560 { | |
1561 v25 = "Init - Failed to get D3D interface.\n"; | |
1562 goto LABEL_45; | |
1563 } | |
1564 | |
1565 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT; | |
1566 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER; | |
1567 ddsd2.dwWidth = 640; | |
1568 ddsd2.dwHeight = 480; | |
1569 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID, | |
1570 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator, | |
1571 &ddsd2.ddpfPixelFormat) ) | |
1572 { | |
1573 LABEL_21: | |
1574 v25 = "Init - Failed to enumerate Z buffer formats.\n"; | |
1575 goto LABEL_45; | |
1576 } | |
1577 if ( uDeviceID == 2 || uDeviceID == 3 ) | |
1578 BYTE1(ddsd2.ddsCaps.dwCaps) |= 8u; | |
1579 //uDeviceIDa = &pZBuffer; | |
1580 if (pHost->CreateSurface(&ddsd2, &pZBuffer, 0) ) | |
1581 { | |
1582 LABEL_44: | |
1583 v25 = "Init - Failed to create z-buffer.\n"; | |
1584 LABEL_45: | |
1585 sprintf(pErrorMessage, v25); | |
1586 if (pBackBuffer) | |
1587 { | |
1588 pBackBuffer->Release(); | |
1589 pBackBuffer = 0; | |
1590 } | |
1591 LABEL_63: | |
1592 //v19 = &pFrontBuffer; | |
1593 if (pFrontBuffer) | |
1594 { | |
1595 pFrontBuffer->Release(); | |
1596 pFrontBuffer= 0; | |
1597 } | |
1598 goto LABEL_65; | |
1599 } | |
1600 if (pBackBuffer->AddAttachedSurface(pZBuffer)) | |
1601 goto LABEL_48; | |
1602 //v33 = &pDevice; | |
1603 if (pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID, | |
1604 pBackBuffer, | |
1605 &pDevice, | |
1606 0) ) | |
1607 goto LABEL_51; | |
1608 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2)); | |
1609 d3dvp2.dvClipWidth = 2.0; | |
1610 d3dvp2.dvClipY = 1.0; | |
1611 d3dvp2.dvClipHeight = 2.0; | |
1612 d3dvp2.dvMaxZ = 1.0; | |
1613 | |
1614 LABEL_54: | |
1615 d3dvp2.dwSize = sizeof(D3DVIEWPORT2); | |
1616 //v17 = *hWnda; | |
2069 | 1617 d3dvp2.dwWidth = game_width; |
1618 d3dvp2.dwHeight = game_height; | |
0 | 1619 d3dvp2.dvClipX = -1.0; |
1620 //v18 = v17->lpVtbl; | |
1621 //v32 = &v4->pViewport; | |
1622 if (pDirect3D->CreateViewport(&pViewport, 0)) | |
1623 { | |
1624 sprintf(pErrorMessage, "Init - Failed to create viewport.\n"); | |
1625 if (pDevice) | |
1626 { | |
1627 pDevice->Release(); | |
1628 pDevice = 0; | |
1629 } | |
1630 if (pDirect3D) | |
1631 { | |
1632 pDirect3D->Release(); | |
1633 pDirect3D = 0; | |
1634 } | |
1635 LABEL_59: | |
1636 if (pZBuffer) | |
1637 { | |
1638 pZBuffer->Release(); | |
1639 pZBuffer = 0; | |
1640 } | |
1641 LABEL_61: | |
1642 if (pBackBuffer) | |
1643 { | |
1644 pBackBuffer->Release(); | |
1645 pBackBuffer = 0; | |
1646 } | |
1647 goto LABEL_63; | |
1648 } | |
1649 | |
1650 pDevice->AddViewport(pViewport); | |
1651 pViewport->SetViewport2(&d3dvp2); | |
1652 pDevice->SetCurrentViewport(pViewport); | |
1653 return 1; | |
1654 } | |
1655 | |
1656 //----- (0049E444) -------------------------------------------------------- | |
1657 unsigned int RenderD3D::GetDeviceCaps() | |
1658 { | |
1659 unsigned int v1; // ebx@1 | |
1660 RenderD3D *v2; // edi@1 | |
1661 IDirect3DDevice3 *v3; // eax@1 | |
1662 unsigned int result; // eax@2 | |
1663 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-1F8h]@1 | |
1664 D3DDEVICEDESC halCaps; // [sp+108h] [bp-FCh]@1 | |
1665 | |
1666 v1 = 0; | |
1667 v2 = this; | |
1668 memset(&halCaps, 0, 0xFCu); | |
1669 halCaps.dwSize = 252; | |
1670 memset(&refCaps, 0, 0xFCu); | |
1671 v3 = v2->pDevice; | |
1672 refCaps.dwSize = 252; | |
1673 if ( v3->GetCaps(&halCaps, &refCaps) ) | |
1674 { | |
1675 result = 1; | |
1676 } | |
1677 else | |
1678 { | |
1679 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & 0x10) ) | |
1680 v1 = 2; | |
1681 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & 2) ) | |
1682 v1 |= 4u; | |
1683 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & 1) ) | |
1684 v1 |= 8u; | |
1685 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & 0x20) ) | |
1686 v1 |= 0x10u; | |
1687 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & 2) ) | |
1688 v1 |= 0x20u; | |
1689 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & 4) ) | |
1690 v1 |= 0x40u; | |
1691 if ( halCaps.dpcTriCaps.dwTextureCaps & 0x20 ) | |
1692 LOBYTE(v1) = v1 | 0x80; | |
1693 result = v1; | |
1694 } | |
1695 return result; | |
1696 } | |
1697 | |
1698 //----- (0049E4FC) -------------------------------------------------------- | |
1699 void RenderD3D::ClearTarget(unsigned int bClearColor, unsigned int uClearColor, unsigned int bClearDepth, float z_clear) | |
1700 { | |
1701 uint uClearFlags = 0; | |
1702 | |
1703 if (bClearColor) | |
1704 uClearFlags |= D3DCLEAR_TARGET; | |
1705 if (bClearDepth) | |
1706 uClearFlags |= D3DCLEAR_ZBUFFER; | |
1707 | |
1708 D3DRECT rects[] = {{0, 0, 640, 480}}; | |
1709 if (uClearFlags) | |
1710 pViewport->Clear2(1, rects, uClearFlags, uClearColor, z_clear, 0); | |
1711 } | |
1712 | |
1713 //----- (0049E54D) -------------------------------------------------------- | |
1714 void RenderD3D::Present(bool bForceBlit) | |
1715 { | |
1716 RECT v5; // [sp+18h] [bp-18h]@1 | |
1717 struct tagPOINT Point; // [sp+28h] [bp-8h]@4 | |
1718 | |
1719 v5.left = 0; | |
1720 v5.top = 0; | |
1721 v5.bottom = 480; | |
1722 v5.right = 640; | |
1723 | |
1724 if (bWindowed || bForceBlit) | |
1725 { | |
1726 RECT rc; | |
1727 GetClientRect(hWindow, &rc); | |
1728 Point.y = 0; | |
1729 Point.x = 0; | |
1730 ClientToScreen(hWindow, &Point); | |
1731 OffsetRect(&rc, Point.x, Point.y); | |
1732 pFrontBuffer->Blt(&rc, pBackBuffer, &v5, DDBLT_WAIT, 0); | |
1733 } | |
1734 else | |
1735 pFrontBuffer->Flip(0, 1); | |
1736 } | |
1737 | |
1738 //----- (0049E5D4) -------------------------------------------------------- | |
1739 bool RenderD3D::CreateTexture(unsigned int uTextureWidth, unsigned int uTextureHeight, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture, bool bAlphaChannel, bool bMipmaps, unsigned int uMinDeviceTexDim) | |
1740 { | |
1741 unsigned int v8; // edx@4 | |
1742 unsigned int v9; // ebx@5 | |
1743 unsigned int v10; // eax@5 | |
1744 DWORD v11; // edx@5 | |
1745 //int v12; // edx@7 | |
1746 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-80h]@1 | |
1747 //RenderD3D *v15; // [sp+88h] [bp-4h]@1 | |
1748 | |
1749 //v15 = this; | |
1750 memset(&ddsd2, 0, 0x7Cu); | |
1751 ddsd2.dwSize = 0x7Cu; | |
1752 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT; | |
1753 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE; | |
1754 ddsd2.ddsCaps.dwCaps2 = DDSCAPS2_TEXTUREMANAGE; | |
1755 ddsd2.dwHeight = uTextureHeight; | |
1756 ddsd2.dwWidth = uTextureWidth; | |
1757 if ( bMipmaps ) | |
1758 { | |
1759 if ( (signed int)uTextureHeight <= (signed int)uTextureWidth ) | |
1760 { | |
1761 v8 = GetMaxMipLevels(uTextureHeight) - GetMaxMipLevels(uMinDeviceTexDim); | |
1762 LABEL_8: | |
1763 ddsd2.dwMipMapCount = v8; | |
1764 if ( !v8 ) | |
1765 goto LABEL_12; | |
1766 goto LABEL_11; | |
1767 } | |
1768 if ( (signed int)uTextureWidth < (signed int)uMinDeviceTexDim ) | |
1769 { | |
1770 v8 = GetMaxMipLevels(uMinDeviceTexDim); | |
1771 goto LABEL_8; | |
1772 } | |
1773 v9 = GetMaxMipLevels(uTextureWidth); | |
1774 v10 = GetMaxMipLevels(uMinDeviceTexDim); | |
1775 ddsd2.dwMipMapCount = v9 - v10; | |
1776 if ( v9 == v10 ) | |
1777 { | |
1778 ddsd2.dwFlags = 0x1007u; | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
1779 __debugbreak(); // warning C4700: uninitialized local variable 'v11' used |
0 | 1780 ddsd2.ddsCaps.dwCaps = v11; |
1781 goto LABEL_12; | |
1782 } | |
1783 } | |
1784 else | |
1785 { | |
1786 ddsd2.dwMipMapCount = 1; | |
1787 } | |
1788 LABEL_11: | |
1789 ddsd2.dwFlags = DDSD_CAPS | DDSD_HEIGHT | DDSD_WIDTH | DDSD_PIXELFORMAT | DDSD_MIPMAPCOUNT; | |
1790 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_COMPLEX | DDSCAPS_MIPMAP; | |
1791 LABEL_12: | |
1792 ddsd2.ddpfPixelFormat.dwRGBBitCount = 16; | |
1793 ddsd2.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT); | |
1794 if (bAlphaChannel) | |
1795 { | |
1796 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB | DDPF_ALPHAPIXELS; | |
1797 ddsd2.ddpfPixelFormat.dwRBitMask = 0x7C00; | |
1798 ddsd2.ddpfPixelFormat.dwGBitMask = 0x03E0; | |
1799 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F; | |
1800 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0x8000u; | |
1801 } | |
1802 else | |
1803 { | |
1804 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB; | |
1805 ddsd2.ddpfPixelFormat.dwRBitMask = 0xF800; | |
1806 ddsd2.ddpfPixelFormat.dwGBitMask = 0x07E0; | |
1807 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F; | |
1808 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0; | |
1809 } | |
1810 if (FAILED(pHost->CreateSurface(&ddsd2, pOutSurface, 0))) | |
1811 return false; | |
1812 if (FAILED((*pOutSurface)->QueryInterface(IID_IDirect3DTexture2, (void **)pOutTexture))) | |
1813 { | |
1814 (*pOutSurface)->Release(); | |
1815 *pOutSurface = 0; | |
1816 return false; | |
1817 } | |
1818 return true; | |
1819 } | |
1820 | |
1821 //----- (004A5190) -------------------------------------------------------- | |
1822 void RenderD3D::HandleLostResources() | |
1823 { | |
1824 pBitmaps_LOD->ReleaseLostHardwareTextures(); | |
1825 pBitmaps_LOD->_410423_move_textures_to_device(); | |
1826 pSprites_LOD->ReleaseLostHardwareSprites(); | |
1827 } | |
1828 | |
1829 //----- (004A2050) -------------------------------------------------------- | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
1830 void Render::DrawPolygon(unsigned int uNumVertices, struct Polygon *a3, ODMFace *a4, IDirect3DTexture2 *pTexture) |
0 | 1831 { |
1832 Render *v5; // edi@1 | |
1833 unsigned int v6; // ebx@1 | |
1834 LightmapBuilder *v7; // esi@3 | |
1835 int v8; // eax@7 | |
1836 ODMFace *v9; // eax@12 | |
1837 char *v10; // esi@12 | |
1838 double v11; // st7@14 | |
1839 double v12; // st7@14 | |
1840 int v13; // eax@14 | |
1841 ODMFace *v14; // ecx@14 | |
1842 double v15; // st7@14 | |
1843 float v16; // ST48_4@15 | |
1844 int v17; // eax@15 | |
1845 char v18; // zf@17 | |
1846 HRESULT v19; // eax@18 | |
1847 HRESULT v20; // eax@18 | |
1848 HRESULT v21; // eax@20 | |
1849 HRESULT v22; // eax@20 | |
1850 unsigned int v23; // ecx@20 | |
1851 char *v24; // eax@21 | |
1852 HRESULT v25; // eax@23 | |
1853 HRESULT v26; // eax@23 | |
1854 HRESULT v27; // eax@24 | |
1855 HRESULT v28; // eax@25 | |
1856 HRESULT v29; // eax@25 | |
1857 HRESULT v30; // eax@25 | |
1858 HRESULT v31; // eax@25 | |
1859 HRESULT v32; // eax@26 | |
1860 unsigned int v33; // ecx@26 | |
1861 char *v34; // eax@27 | |
1862 int v35; // edx@28 | |
1863 HRESULT v36; // eax@29 | |
1864 HRESULT v37; // eax@29 | |
1865 HRESULT v38; // eax@29 | |
1866 HRESULT v39; // eax@29 | |
1867 //IDirect3DDevice3Vtbl *v40; // ebx@29 | |
1868 unsigned int v41; // eax@29 | |
1869 HRESULT v42; // eax@30 | |
1870 HRESULT v43; // eax@30 | |
1871 HRESULT v44; // eax@30 | |
1872 char *v45; // esi@34 | |
1873 int v46; // ecx@35 | |
1874 double v47; // st6@35 | |
1875 int v48; // eax@36 | |
1876 const char *v49; // [sp+4Ch] [bp-1Ch]@0 | |
1877 const char *v50; // [sp+4Ch] [bp-1Ch]@20 | |
1878 int v51; // [sp+50h] [bp-18h]@0 | |
1879 unsigned int v52; // [sp+54h] [bp-14h]@0 | |
1880 LightmapBuilder *v53; // [sp+58h] [bp-10h]@3 | |
1881 unsigned int v54; // [sp+5Ch] [bp-Ch]@3 | |
1882 unsigned int v55; // [sp+5Ch] [bp-Ch]@34 | |
1883 unsigned int v56; // [sp+60h] [bp-8h]@12 | |
1884 int v57; // [sp+60h] [bp-8h]@34 | |
2006 | 1885 signed int a2; // [sp+64h] [bp-4h]@4 |
0 | 1886 |
1887 v5 = this; | |
1888 v6 = 0; | |
1889 if ( this->uNumD3DSceneBegins && (signed int)uNumVertices >= 3 ) | |
1890 { | |
1891 v7 = pGame->pLightmapBuilder; | |
1892 v53 = v7; | |
1893 v54 = v7->std__vector_000004_size; | |
1894 if ( v7->std__vector_000004_size) | |
2006 | 1895 a2 = -1; |
638 | 1896 pGame->AlterGamma_ODM(a4, &a2); |
1394 | 1897 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01) |
0 | 1898 { |
638 | 1899 v8 = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0); |
1394 | 1900 v7->DrawLightmaps(/*v8, 0*/); |
0 | 1901 } |
1902 else | |
1903 { | |
1904 if ( !v54 || byte_4D864C && pGame->uFlags & 2 ) | |
1905 { | |
323 | 1906 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 1907 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); |
1908 if (bUsingSpecular) | |
1909 { | |
186 | 1910 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); |
1911 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
1912 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 1913 } |
1073 | 1914 for (uint i = 0; i < uNumVertices; ++i) |
1915 { | |
1916 | |
1917 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
1918 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 1919 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 1920 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
1921 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
1922 pGame->AlterGamma_ODM(a4, &d3d_vertex_buffer[i].diffuse); | |
1923 | |
1924 if ( this->bUsingSpecular ) | |
0 | 1925 { |
1073 | 1926 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 1927 } |
1073 | 1928 else |
1929 { | |
1930 d3d_vertex_buffer[i].specular = 0; | |
1931 } | |
1932 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
1933 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
1934 | |
1935 } | |
323 | 1936 |
1937 if (a4->uAttributes & FACE_OUTLINED) | |
1938 { | |
1939 int color; | |
1940 if (GetTickCount() % 300 >= 150) | |
1941 color = 0xFFFF2020; | |
1942 else color = 0xFF901010; | |
1943 | |
1944 for (uint i = 0; i < uNumVertices; ++i) | |
1945 d3d_vertex_buffer[i].diffuse = color; | |
1946 } | |
1947 | |
0 | 1948 pRenderD3D->pDevice->SetTexture(0, pTexture); |
1949 pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
1950 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
1951 d3d_vertex_buffer, |
0 | 1952 uNumVertices, |
1953 D3DDP_DONOTLIGHT); | |
1954 } | |
1955 else | |
1956 { | |
1073 | 1957 for (uint i = 0; i < uNumVertices; ++i) |
1958 { | |
1959 | |
1960 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
1961 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 1962 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 1963 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
1964 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
1965 if ( this->bUsingSpecular ) | |
0 | 1966 { |
1073 | 1967 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 1968 } |
1073 | 1969 else |
1970 { | |
1971 d3d_vertex_buffer[i].specular = 0; | |
1972 } | |
1973 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
1974 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
1975 | |
1976 } | |
1977 | |
186 | 1978 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); |
1979 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
0 | 1980 if (bUsingSpecular) |
186 | 1981 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); |
0 | 1982 |
1983 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); | |
1984 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
1985 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
1986 d3d_vertex_buffer, |
0 | 1987 uNumVertices, |
1988 D3DDP_DONOTLIGHT)); | |
1989 //v50 = (const char *)v5->pRenderD3D->pDevice; | |
1990 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
1991 //(*(void (**)(void))(*(int *)v50 + 88))(); | |
1394 | 1992 v53->DrawLightmaps(/*-1, 0*/); |
1073 | 1993 for (uint i = 0; i < uNumVertices; ++i) |
1994 { | |
1995 d3d_vertex_buffer[i].diffuse = a2; | |
1996 } | |
0 | 1997 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture)); |
186 | 1998 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 1999 if ( !pRenderer->bUsingSpecular ) |
186 | 2000 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
2001 | |
2002 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
2003 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO)); | |
2004 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR)); | |
0 | 2005 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
2006 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
2007 d3d_vertex_buffer, |
0 | 2008 uNumVertices, |
2009 D3DDP_DONOTLIGHT)); | |
2010 if (bUsingSpecular) | |
2011 { | |
186 | 2012 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
0 | 2013 |
1073 | 2014 for (uint i = 0; i < uNumVertices; ++i) |
2015 { | |
2016 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000; | |
2017 d3d_vertex_buffer[i].specular = 0; | |
2018 } | |
2019 | |
0 | 2020 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); |
186 | 2021 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA)); |
2022 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA)); | |
0 | 2023 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
2024 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
2025 d3d_vertex_buffer, |
0 | 2026 uNumVertices, |
2027 D3DDP_DONOTLIGHT)); | |
186 | 2028 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 2029 //v40 = pRenderer->pRenderD3D->pDevice->lpVtbl; |
2030 v41 = GetLevelFogColor(); | |
2031 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF); | |
2032 v6 = 0; | |
2033 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0); | |
2034 } | |
186 | 2035 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
2036 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 2037 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v6)); |
2038 } | |
2039 } | |
2040 } | |
2041 } | |
2042 // 4D864C: using guessed type char byte_4D864C; | |
2043 | |
2044 //----- (0049EB79) -------------------------------------------------------- | |
2045 Render::~Render() | |
2046 { | |
2047 Render *v1; // esi@1 | |
2048 | |
2049 v1 = this; | |
1583 | 2050 free(this->pDefaultZBuffer); |
0 | 2051 v1->pD3DBitmaps.Release(); |
2052 v1->pD3DSprites.Release(); | |
2053 Release(); | |
2054 v1->bWindowMode = 1; | |
2055 //nullsub_1(); | |
2056 //nullsub_1(); | |
2057 } | |
2058 | |
2059 //----- (0049E756) -------------------------------------------------------- | |
2060 bool Render::IsColorKeySupported(IDirectDraw4 *this_) | |
2061 { | |
2062 DDCAPS refCaps; // [sp+0h] [bp-2F8h]@1 | |
2063 DDCAPS halCaps; // [sp+17Ch] [bp-17Ch]@1 | |
2064 | |
2065 halCaps.dwSize = 380; | |
2066 refCaps.dwSize = 380; | |
2067 this_->GetCaps(&halCaps, &refCaps); | |
2068 return halCaps.dwSVBCaps & 0x40 && BYTE1(halCaps.dwSVBCKeyCaps) & 2; | |
2069 } | |
2070 | |
2071 //----- (0049E992) -------------------------------------------------------- | |
2072 Render::Render() | |
2073 { | |
2074 Render *v1; // esi@1 | |
2075 int v2; // eax@1 | |
2076 char v3; // zf@1 | |
2077 | |
2078 v1 = this; | |
2079 this->pDirectDraw4 = 0; | |
2080 this->pFrontBuffer4 = 0; | |
2081 this->pBackBuffer4 = 0; | |
2082 this->pColorKeySurface4 = 0; | |
2083 this->pDirectDraw2 = 0; | |
2084 this->pFrontBuffer2 = 0; | |
2085 this->pBackBuffer2 = 0; | |
2086 this->pSomeSurface2 = 0; | |
2087 //RenderHWLContainer::RenderHWLContainer(&this->pD3DBitmaps); | |
2088 //RenderHWLContainer::RenderHWLContainer(&v1->pD3DSprites); | |
2089 v1->bWindowMode = 1; | |
2090 v1->field_40054 = 0; | |
2091 v1->field_10 = 640; | |
2092 v1->field_14 = 480; | |
2093 v1->field_40030 = 0; | |
2094 v1->field_4002C = 0; | |
2095 v1->pActiveZBuffer = 0; | |
2096 v1->pDefaultZBuffer = 0; | |
709 | 2097 v1->raster_clip_y = 0; |
2098 v1->raster_clip_x = 0; | |
2099 v1->raster_clip_z = 639; | |
2100 v1->raster_clip_w = 479; | |
0 | 2101 v1->field_4003C = (int)&unk_4EED80; |
2102 v1->field_40040 = dword_4EED78; | |
2103 v1->uClipZ = 640; | |
2104 v1->field_40044 = 2; | |
2105 v1->field_40048 = 6; | |
2106 v1->pFrontBuffer4 = 0; | |
2107 v1->pBackBuffer4 = 0; | |
2108 v1->pColorKeySurface4 = 0; | |
2109 v1->pDirectDraw4 = 0; | |
2110 v1->pRenderD3D = 0; | |
2111 v1->uNumSceneBegins = 0; | |
2112 v1->uNumD3DSceneBegins = 0; | |
2069 | 2113 v1->using_software_screen_buffer = 0; |
0 | 2114 v1->pTargetSurface = 0; |
2115 v1->uTargetSurfacePitch = 0; | |
2116 v1->uClipY = 0; | |
2117 v1->uClipX = 0; | |
2118 v1->uClipW = 480; | |
2119 v1->bClip = 1; | |
2069 | 2120 //v1->bColorKeySupported = 0; |
0 | 2121 v1->bRequiredTextureStagesAvailable = 0; |
2122 v1->bTinting = 1; | |
2123 LOBYTE(v1->field_103668) = 0; | |
2124 v1->field_1036B8 = 0; | |
2125 v1->_gpu_memory_used = 0; | |
2126 uNumBillboardsToDraw = 0; | |
2127 bFogEnabled = false; | |
265 | 2128 |
2129 hd_water_tile_id = -1; | |
2130 hd_water_current_frame = 0; | |
2002 | 2131 sub_4A19B0(); |
0 | 2132 } |
2133 | |
2069 | 2134 bool Render::Initialize(OSWindow *window, bool bColoredLights, uint32_t uDetailLevel, bool bTinting) |
0 | 2135 { |
1802 | 2136 //bUserDirect3D = true;//ReadWindowsRegistryInt("Use D3D", 0); |
2137 | |
2138 this->window = window; | |
2069 | 2139 //bStartInWindow = true; |
1802 | 2140 //windowed_mode_width = windowed_width; |
2141 //windowed_mode_height = windowed_height; | |
2142 | |
1985 | 2143 uDesiredDirect3DDevice = ReadWindowsRegistryInt("D3D Device", 0); |
0 | 2144 |
2145 bUseColoredLights = bColoredLights;//ReadWindowsRegistryInt("Colored Lights", 0); | |
2146 uLevelOfDetail = uDetailLevel;//ReadWindowsRegistryInt("Detail Level", 1); | |
2147 | |
2148 this->bTinting = bTinting; | |
2149 | |
1980 | 2150 bool r1 = pD3DBitmaps.Load(L"data\\d3dbitmap.hwl"); |
2151 bool r2 = pD3DSprites.Load(L"data\\d3dsprite.hwl"); | |
0 | 2152 |
2153 return r1 && r2; | |
2154 } | |
2155 | |
2156 | |
2157 //----- (0049ECC4) -------------------------------------------------------- | |
2158 void Render::ClearBlack() | |
2159 { | |
2160 if (pRenderD3D) | |
2161 { | |
2069 | 2162 if (using_software_screen_buffer) |
0 | 2163 pRenderD3D->ClearTarget(true, 0, false, 0.0); |
2164 } | |
2165 else | |
2166 memset(pRenderer->pTargetSurface, 0, 4 * (field_10 * field_14 / 2)); | |
2167 } | |
2168 | |
2169 //----- (0049ED18) -------------------------------------------------------- | |
2170 void Render::PresentBlackScreen() | |
2171 { | |
2172 IDirectDrawSurface *v2; // eax@3 | |
2173 DDBLTFX v3; // [sp+4h] [bp-74h]@5 | |
2174 RECT x; // [sp+68h] [bp-10h]@3 | |
2175 | |
2176 memset(&v3, 0, sizeof(DDBLTFX)); | |
1802 | 2177 GetWindowRect(window->GetApiHandle(), &x); |
0 | 2178 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
2179 pVersion->pVersionInfo.dwMajorVersion >= 5) | |
2180 { | |
2181 v2 = (IDirectDrawSurface *)this->pBackBuffer4; | |
2182 } | |
2183 else | |
2184 { | |
2185 v2 = (IDirectDrawSurface *)this->pBackBuffer2; | |
2186 } | |
2187 v3.dwFillColor = 0; | |
2188 v3.dwSize = 100; | |
2189 v2->Blt(&x, 0, 0, DDBLT_COLORFILL, &v3); | |
2190 pRenderer->Present(); | |
2191 } | |
2192 | |
2193 //----- (0049EDB6) -------------------------------------------------------- | |
2194 void Render::SavePCXScreenshot() | |
2195 { | |
2196 Render *v1; // esi@1 | |
2197 __int16 v2; // di@1 | |
2198 int v3; // eax@4 | |
2199 int v4; // ecx@4 | |
2200 int v5; // eax@8 | |
2201 FILE *v6; // edi@10 | |
2202 int v7; // ecx@11 | |
2203 int v8; // eax@11 | |
2204 int v9; // eax@13 | |
2205 int v10; // ecx@15 | |
2206 unsigned __int8 v11; // dl@15 | |
2207 signed int v12; // eax@18 | |
2208 char v13; // zf@27 | |
2209 HRESULT v14; // eax@29 | |
2210 char v15[56]; // [sp+Ch] [bp-158h]@10 | |
2211 __int16 v16; // [sp+44h] [bp-120h]@10 | |
2212 DDSURFACEDESC2 Dst; // [sp+48h] [bp-11Ch]@7 | |
2213 char color_map[48]; // [sp+C4h] [bp-A0h]@10 | |
2214 char Filename[40]; // [sp+F4h] [bp-70h]@3 | |
2215 char *v20; // [sp+11Ch] [bp-48h]@14 | |
2216 char *v21; // [sp+120h] [bp-44h]@14 | |
2217 int v24; // [sp+124h] [bp-40h]@11 | |
2218 FILE *File; // [sp+128h] [bp-3Ch]@3 | |
2219 int var38; // [sp+12Ch] [bp-38h]@4 | |
2220 PCXHeader_1 header1; // [sp+130h] [bp-34h]@10 | |
2221 PCXHeader_2 header2; // [sp+140h] [bp-24h]@10 | |
2222 void *ptr; // [sp+148h] [bp-1Ch]@10 | |
2223 void *v28; // [sp+14Ch] [bp-18h]@8 | |
2224 int v29; // [sp+150h] [bp-14h]@4 | |
2225 int v30; // [sp+154h] [bp-10h]@4 | |
2226 char v31; // [sp+15Ah] [bp-Ah]@25 | |
2227 unsigned __int8 v32; // [sp+15Bh] [bp-9h]@17 | |
2228 int i; // [sp+15Ch] [bp-8h]@10 | |
2229 unsigned __int8 v34; // [sp+163h] [bp-1h]@17 | |
2230 | |
2231 v1 = this; | |
2232 v2 = 0; | |
2069 | 2233 if ( !this->pRenderD3D || this->using_software_screen_buffer ) |
0 | 2234 { |
2235 sprintf(Filename, "screen%0.2i.pcx", dword_4EFA80++ % 100); | |
2236 File = fopen(Filename, "wb"); | |
2237 if ( File ) | |
2238 { | |
2239 v3 = v1->field_10; | |
2240 v4 = v1->field_14; | |
2241 var38 = v3; | |
2242 v29 = v4; | |
2243 v30 = v3; | |
2244 if ( v3 & 1 ) | |
2245 v30 = v3 + 1; | |
2246 if ( v1->pRenderD3D ) | |
2247 { | |
2248 memset(&Dst, 0, 0x7Cu); | |
2249 Dst.dwSize = 124; | |
168 | 2250 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &Dst, DDLOCK_WAIT) ) |
0 | 2251 return; |
2252 v28 = Dst.lpSurface; | |
2253 v5 = Dst.lPitch >> 1; | |
2254 v2 = 0; | |
2255 } | |
2256 else | |
2257 { | |
2258 pRenderer->BeginScene(); | |
2259 v28 = pRenderer->pTargetSurface; | |
2260 v5 = pRenderer->uTargetSurfacePitch; | |
2261 } | |
2262 i = v5; | |
2263 header1.right = var38 - 1; | |
2264 header1.left = v2; | |
2265 header1.bottom = v29 - 1; | |
2266 header1.up = v2; | |
2267 header2.pitch = v30; | |
2268 memset(color_map, 0, sizeof(color_map)); | |
2269 memset(v15, 0, sizeof(v15)); | |
2270 header2.reserved = 0; | |
2271 header1.manufacturer = 10; | |
2272 v16 = 0; | |
2273 v6 = File; | |
2274 header1.version = 5; | |
2275 header1.encoding = 1; | |
2276 header1.bpp = 8; | |
2277 header1.hdpi = 75; | |
2278 header1.vdpi = 75; | |
2279 header2.planes = 3; | |
2280 header2.palette_info = 1; | |
2281 fwrite(&header1, 1u, 1u, File); | |
2282 fwrite(&header1.version, 1u, 1u, v6); | |
2283 fwrite(&header1.encoding, 1u, 1u, v6); | |
2284 fwrite(&header1.bpp, 1u, 1u, v6); | |
2285 fwrite(&header1.left, 2u, 1u, v6); | |
2286 fwrite(&header1.up, 2u, 1u, v6); | |
2287 fwrite(&header1.right, 2u, 1u, v6); | |
2288 fwrite(&header1.bottom, 2u, 1u, v6); | |
2289 fwrite(&header1.hdpi, 2u, 1u, v6); | |
2290 fwrite(&header1.vdpi, 2u, 1u, v6); | |
2291 fwrite(color_map, 0x30u, 1u, v6); | |
2292 fwrite(&header2, 1u, 1u, v6); | |
2293 fwrite(&header2.planes, 1u, 1u, v6); | |
2294 fwrite(&header2.pitch, 2u, 1u, v6); | |
2295 fwrite(&header2.palette_info, 2u, 1u, v6); | |
2296 fwrite(v15, 0x3Au, 1u, v6); | |
1583 | 2297 ptr = malloc(3 * var38 + 6); |
0 | 2298 if ( v29 > 0 ) |
2299 { | |
2300 v7 = v30; | |
2301 File = (FILE *)v29; | |
2302 v29 = 3 * v30; | |
2303 v24 = 2 * i; | |
2304 v8 = (int)v28; | |
2305 while ( 1 ) | |
2306 { | |
2307 i = v8; | |
2308 v9 = 0; | |
2309 if ( var38 > 0 ) | |
2310 { | |
2311 v21 = (char *)ptr + v7; | |
2312 v20 = (char *)ptr + 2 * v30; | |
2313 do | |
2314 { | |
2315 *((char *)ptr + v9) = (signed int)(v1->uTargetRMask & *(short *)i) >> (LOBYTE(v1->uTargetGBits) | |
2316 + LOBYTE(v1->uTargetBBits) | |
2317 + v1->uTargetRBits | |
2318 - 8); | |
2319 v21[v9] = (signed int)(v1->uTargetGMask & *(short *)i) >> (LOBYTE(v1->uTargetBBits) | |
2320 + LOBYTE(v1->uTargetGBits) | |
2321 - 8); | |
2322 v10 = i; | |
2323 v11 = LOBYTE(v1->uTargetBMask); | |
2324 i += 2; | |
2325 v20[v9++] = (*(char *)v10 & v11) << (8 - LOBYTE(v1->uTargetBBits)); | |
2326 } | |
2327 while ( v9 < var38 ); | |
2328 } | |
2329 for ( i = 0; i < v29; i += v34 ) | |
2330 { | |
2331 v34 = 1; | |
2332 v32 = *((char *)ptr + i); | |
2333 do | |
2334 { | |
2335 v12 = i + v34; | |
2336 if ( *((char *)ptr + v12) != v32 ) | |
2337 break; | |
2338 if ( !(v12 % v30) ) | |
2339 break; | |
2340 ++v34; | |
2341 } | |
2342 while ( v34 < 0x3Fu ); | |
2343 if ( i + v34 > v29 ) | |
2344 v34 = 3 * v30 - i; | |
2345 if ( v34 > 1u || v32 >= 0xC0u ) | |
2346 { | |
2347 v31 = v34 | 0xC0; | |
2348 fwrite(&v31, 1u, 1u, v6); | |
2349 } | |
2350 fwrite(&v32, 1u, 1u, v6); | |
2351 } | |
2352 v8 = (int)((char *)v28 + v24); | |
2353 v13 = File == (FILE *)1; | |
2354 File = (FILE *)((char *)File - 1); | |
2355 v28 = (char *)v28 + v24; | |
2356 if ( v13 ) | |
2357 break; | |
2358 v7 = v30; | |
2359 } | |
2360 } | |
2361 if ( v1->pRenderD3D ) | |
2362 { | |
2363 ErrD3D(pRenderer->pBackBuffer4->Unlock(0)); | |
2364 } | |
2365 else | |
2366 { | |
2367 pRenderer->EndScene(); | |
2368 } | |
2369 | |
1583 | 2370 free(ptr); |
0 | 2371 fclose(v6); |
2372 } | |
2373 } | |
2374 } | |
2375 // 4EFA80: using guessed type int dword_4EFA80; | |
2376 | |
2377 //----- (0049F1BC) -------------------------------------------------------- | |
2069 | 2378 void Render::SaveWinnersCertificate(const char *a1) |
0 | 2379 { |
2380 Render *v2; // esi@1 | |
2381 __int16 v3; // di@1 | |
2382 int v4; // eax@4 | |
2383 char *v5; // ecx@4 | |
2384 unsigned int v6; // eax@8 | |
2385 FILE *v7; // edi@10 | |
2386 int v8; // ecx@11 | |
2387 int v9; // eax@11 | |
2388 int v10; // eax@13 | |
2389 const char *v11; // ecx@15 | |
2390 unsigned __int8 v12; // dl@15 | |
2391 signed int v13; // eax@18 | |
2392 char v14; // zf@27 | |
2393 HRESULT v15; // eax@29 | |
2394 char v16; // [sp+Ch] [bp-12Ch]@10 | |
2395 __int16 v17; // [sp+44h] [bp-F4h]@10 | |
2396 int Dst; // [sp+48h] [bp-F0h]@7 | |
2397 int v19; // [sp+58h] [bp-E0h]@8 | |
2398 unsigned __int16 *v20; // [sp+6Ch] [bp-CCh]@8 | |
2399 char v21; // [sp+C4h] [bp-74h]@10 | |
2400 unsigned int v22; // [sp+F4h] [bp-44h]@11 | |
2401 char *v23; // [sp+F8h] [bp-40h]@14 | |
2402 int v24; // [sp+FCh] [bp-3Ch]@11 | |
2403 int v25; // [sp+100h] [bp-38h]@4 | |
2404 FILE *File; // [sp+104h] [bp-34h]@3 | |
2405 char Str; // [sp+108h] [bp-30h]@10 | |
2406 char v28; // [sp+109h] [bp-2Fh]@10 | |
2407 char v29; // [sp+10Ah] [bp-2Eh]@10 | |
2408 char v30; // [sp+10Bh] [bp-2Dh]@10 | |
2409 __int16 v31; // [sp+10Ch] [bp-2Ch]@10 | |
2410 __int16 v32; // [sp+10Eh] [bp-2Ah]@10 | |
2411 __int16 v33; // [sp+110h] [bp-28h]@10 | |
2412 __int16 v34; // [sp+112h] [bp-26h]@10 | |
2413 __int16 v35; // [sp+114h] [bp-24h]@10 | |
2414 __int16 v36; // [sp+116h] [bp-22h]@10 | |
2415 char v37; // [sp+118h] [bp-20h]@10 | |
2416 char v38; // [sp+119h] [bp-1Fh]@10 | |
2417 __int16 v39; // [sp+11Ah] [bp-1Eh]@10 | |
2418 __int16 v40; // [sp+11Ch] [bp-1Ch]@10 | |
2419 void *ptr; // [sp+120h] [bp-18h]@10 | |
2420 unsigned __int16 *v42; // [sp+124h] [bp-14h]@8 | |
2421 int v43; // [sp+128h] [bp-10h]@4 | |
2422 char v44; // [sp+12Fh] [bp-9h]@25 | |
2423 char *i; // [sp+130h] [bp-8h]@10 | |
2424 unsigned __int8 v46; // [sp+137h] [bp-1h]@17 | |
2425 | |
2426 v2 = this; | |
2427 v3 = 0; | |
2069 | 2428 if ( !this->pRenderD3D || this->using_software_screen_buffer ) |
0 | 2429 { |
2430 ++dword_4EFA84; | |
2431 File = fopen(a1, "wb"); | |
2432 if ( File ) | |
2433 { | |
2434 v4 = v2->field_10; | |
2435 v5 = (char *)v2->field_14; | |
2436 v25 = v4; | |
2437 a1 = v5; | |
2438 v43 = v4; | |
2439 if ( v4 & 1 ) | |
2440 v43 = v4 + 1; | |
2441 if ( v2->pRenderD3D ) | |
2442 { | |
2443 memset(&Dst, 0, 0x7Cu); | |
2444 Dst = 124; | |
168 | 2445 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, (DDSURFACEDESC2 *)&Dst, DDLOCK_WAIT) ) |
0 | 2446 return; |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
2447 __debugbreak(); // warning C4700: uninitialized local variable 'v20' used |
0 | 2448 v42 = v20; |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
2449 __debugbreak(); // warning C4700: uninitialized local variable 'v19' used |
0 | 2450 v6 = v19 >> 1; |
2451 v3 = 0; | |
2452 } | |
2453 else | |
2454 { | |
2455 pRenderer->BeginScene(); | |
2069 | 2456 //v42 = pRenderer->pTargetSurface; |
0 | 2457 v6 = pRenderer->uTargetSurfacePitch; |
2458 } | |
2459 i = (char *)v6; | |
2460 v33 = v25 - 1; | |
2461 v31 = v3; | |
2462 v34 = (short)a1 - 1; | |
2463 v32 = v3; | |
2464 v39 = v43; | |
2465 memset(&v21, 0, 0x30u); | |
2466 memset(&v16, 0, 0x38u); | |
2467 v37 = 0; | |
2468 Str = 10; | |
2469 v17 = 0; | |
2470 v7 = File; | |
2471 v28 = 5; | |
2472 v29 = 1; | |
2473 v30 = 8; | |
2474 v35 = 75; | |
2475 v36 = 75; | |
2476 v38 = 3; | |
2477 v40 = 1; | |
2478 fwrite(&Str, 1u, 1u, File); | |
2479 fwrite(&v28, 1u, 1u, v7); | |
2480 fwrite(&v29, 1u, 1u, v7); | |
2481 fwrite(&v30, 1u, 1u, v7); | |
2482 fwrite(&v31, 2u, 1u, v7); | |
2483 fwrite(&v32, 2u, 1u, v7); | |
2484 fwrite(&v33, 2u, 1u, v7); | |
2485 fwrite(&v34, 2u, 1u, v7); | |
2486 fwrite(&v35, 2u, 1u, v7); | |
2487 fwrite(&v36, 2u, 1u, v7); | |
2488 fwrite(&v21, 0x30u, 1u, v7); | |
2489 fwrite(&v37, 1u, 1u, v7); | |
2490 fwrite(&v38, 1u, 1u, v7); | |
2491 fwrite(&v39, 2u, 1u, v7); | |
2492 fwrite(&v40, 2u, 1u, v7); | |
2493 fwrite(&v16, 0x3Au, 1u, v7); | |
1583 | 2494 ptr = malloc(3 * v25 + 6); |
0 | 2495 if ( (signed int)a1 > 0 ) |
2496 { | |
2497 v8 = v43; | |
2498 File = (FILE *)a1; | |
2499 v24 = 3 * v43; | |
2500 v22 = 2 * (int)i; | |
2501 v9 = (int)v42; | |
2502 while ( 1 ) | |
2503 { | |
2504 a1 = (const char *)v9; | |
2505 v10 = 0; | |
2506 if ( v25 > 0 ) | |
2507 { | |
2508 i = (char *)ptr + v8; | |
2509 v23 = (char *)ptr + 2 * v43; | |
2510 do | |
2511 { | |
2512 *((char *)ptr + v10) = (signed int)(v2->uTargetRMask & *(short *)a1) >> (LOBYTE(v2->uTargetGBits) | |
2513 + LOBYTE(v2->uTargetBBits) | |
2514 + v2->uTargetRBits | |
2515 - 8); | |
2516 i[v10] = (signed int)(v2->uTargetGMask & *(short *)a1) >> (LOBYTE(v2->uTargetBBits) | |
2517 + LOBYTE(v2->uTargetGBits) | |
2518 - 8); | |
2519 v11 = a1; | |
2520 v12 = LOBYTE(v2->uTargetBMask); | |
2521 a1 += 2; | |
2522 v23[v10++] = ((unsigned __int8)*v11 & v12) << (8 - LOBYTE(v2->uTargetBBits)); | |
2523 } | |
2524 while ( v10 < v25 ); | |
2525 } | |
2526 for ( i = 0; (signed int)i < v24; i += BYTE3(a1) ) | |
2527 { | |
2528 BYTE3(a1) = 1; | |
2529 v46 = *((char *)ptr + (int)i); | |
2530 do | |
2531 { | |
2532 v13 = (signed int)&i[BYTE3(a1)]; | |
2533 if ( *((char *)ptr + v13) != v46 ) | |
2534 break; | |
2535 if ( !(v13 % v43) ) | |
2536 break; | |
2537 ++BYTE3(a1); | |
2538 } | |
2539 while ( BYTE3(a1) < 0x3Fu ); | |
2540 if ( (signed int)&i[BYTE3(a1)] > v24 ) | |
2541 BYTE3(a1) = 3 * v43 - (char)i; | |
2542 if ( BYTE3(a1) > 1u || v46 >= 0xC0u ) | |
2543 { | |
2544 v44 = BYTE3(a1) | 0xC0; | |
2545 fwrite(&v44, 1u, 1u, v7); | |
2546 } | |
2547 fwrite(&v46, 1u, 1u, v7); | |
2548 } | |
2549 v9 = (int)&v42[v22 / 2]; | |
2550 v14 = File == (FILE *)1; | |
2551 File = (FILE *)((char *)File - 1); | |
2552 v42 = (unsigned __int16 *)((char *)v42 + v22); | |
2553 if ( v14 ) | |
2554 break; | |
2555 v8 = v43; | |
2556 } | |
2557 } | |
2558 if ( v2->pRenderD3D ) | |
2559 { | |
2560 ErrD3D(pRenderer->pBackBuffer4->Unlock(0)); | |
2561 } | |
2562 else | |
2563 { | |
2564 pRenderer->EndScene(); | |
2565 } | |
1583 | 2566 free(ptr); |
0 | 2567 fclose(v7); |
2568 } | |
2569 } | |
2570 } | |
2571 // 4EFA84: using guessed type int dword_4EFA84; | |
2572 | |
2573 //----- (0049F5A2) -------------------------------------------------------- | |
810 | 2574 void Render::PackPCXpicture( unsigned short* picture_data, int wight, int heidth, void *data_buff, int max_buff_size,unsigned int* packed_size ) |
2575 { | |
0 | 2576 Render *v7; // ebx@1 |
2577 void *v8; // esi@3 | |
2578 void *v9; // esi@3 | |
2579 int v10; // ecx@4 | |
810 | 2580 unsigned short* v11; // eax@4 |
0 | 2581 int v12; // eax@6 |
2582 int v13; // eax@8 | |
2583 int v14; // ecx@8 | |
2584 signed int v15; // eax@11 | |
2585 char v16; // zf@20 | |
2586 int result; // eax@21 | |
2587 char v18[58]; // [sp+Ch] [bp-ACh]@3 | |
2588 // __int16 v19; // [sp+44h] [bp-74h]@3 | |
2589 char v20[48]; // [sp+48h] [bp-70h]@3 | |
810 | 2590 char *lineG; // [sp+78h] [bp-40h]@7 |
2591 char *lineB; // [sp+7Ch] [bp-3Ch]@7 | |
0 | 2592 int v23; // [sp+80h] [bp-38h]@4 |
2593 int v24; // [sp+84h] [bp-34h]@4 | |
2594 int v25; // [sp+88h] [bp-30h]@4 | |
2595 int v26; // [sp+8Ch] [bp-2Ch]@4 | |
810 | 2596 PCXHeader_1 Src; // [sp+90h] [bp-28h]@3 |
2597 PCXHeader_2 v27; // [sp+A0h] [bp-18h]@3 | |
2598 char *lineRGB; // [sp+A8h] [bp-10h]@3 | |
2599 int pitch; // [sp+ACh] [bp-Ch]@1 | |
0 | 2600 char v43; // [sp+B3h] [bp-5h]@18 |
2601 int i; // [sp+B4h] [bp-4h]@6 | |
810 | 2602 unsigned short* line_pictute_data; |
2603 byte test_byte; | |
2604 unsigned char pict_byte; | |
0 | 2605 |
2606 v7 = this; | |
810 | 2607 pitch = wight; |
2608 if ( wight & 1 ) | |
2609 pitch = wight + 1; | |
2610 Src.left = 0; | |
2611 Src.up = 0; | |
2612 Src.right = wight - 1; | |
2613 Src.bottom = heidth - 1; | |
2614 v27.pitch = pitch; | |
0 | 2615 memset(&v20, 0, 0x30u); |
2616 memset(&v18, 0, 0x38u); | |
810 | 2617 v8 = data_buff; |
2618 v27.reserved = 0; | |
0 | 2619 *(_WORD *)&v18[56] = 0; |
810 | 2620 Src.manufacturer = 10; |
2621 Src.version = 5; | |
2622 Src.encoding = 1; | |
2623 Src.bpp = 8; | |
2624 Src.hdpi = 75; | |
2625 Src.vdpi = 75; | |
2626 v27.planes = 3; | |
2627 v27.palette_info = 1; | |
2628 memcpy(data_buff, &Src, 1u); | |
0 | 2629 v8 = (char *)v8 + 1; |
810 | 2630 memcpy(v8, &Src.version, 1u); |
0 | 2631 v8 = (char *)v8 + 1; |
810 | 2632 memcpy(v8, &Src.encoding, 1u); |
0 | 2633 v8 = (char *)v8 + 1; |
810 | 2634 memcpy(v8, &Src.bpp, 1u); |
0 | 2635 v8 = (char *)v8 + 1; |
810 | 2636 memcpy(v8, &Src.left, 2u); |
0 | 2637 v8 = (char *)v8 + 2; |
810 | 2638 memcpy(v8, &Src.up, 2u); |
0 | 2639 v8 = (char *)v8 + 2; |
810 | 2640 memcpy(v8, &Src.right, 2u); |
0 | 2641 v8 = (char *)v8 + 2; |
810 | 2642 memcpy(v8, &Src.bottom, 2u); |
0 | 2643 v8 = (char *)v8 + 2; |
810 | 2644 memcpy(v8, &Src.hdpi, 2u); |
0 | 2645 v8 = (char *)v8 + 2; |
810 | 2646 memcpy(v8, &Src.vdpi, 2u); |
0 | 2647 v8 = (char *)v8 + 2; |
2648 memcpy(v8, &v20, 0x30u); | |
2649 v8 = (char *)v8 + 48; | |
810 | 2650 memcpy(v8, &v27, 1u); |
0 | 2651 v8 = (char *)v8 + 1; |
810 | 2652 memcpy(v8, &v27.planes, 1u); |
0 | 2653 v8 = (char *)v8 + 1; |
810 | 2654 memcpy(v8, &v27.pitch, 2u); |
0 | 2655 v8 = (char *)v8 + 2; |
810 | 2656 memcpy(v8, &v27.palette_info, 2u); |
0 | 2657 v8 = (char *)v8 + 2; |
2658 memcpy(v8, &v18, 0x3Au); | |
2659 v9 = (char *)v8 + 58; | |
810 | 2660 |
1583 | 2661 lineRGB = (char*)malloc(3 * (wight + 2)); |
810 | 2662 if ( heidth > 0 ) |
2663 { | |
2664 v10 = pitch; | |
2665 v25 = heidth; | |
2666 v26 = 3 * pitch; | |
2667 v23 = 2 * wight; | |
2668 v11 = picture_data; | |
2669 v24 = (int)picture_data; | |
0 | 2670 while ( 1 ) |
2671 { | |
810 | 2672 line_pictute_data = v11; |
0 | 2673 v12 = 0; |
2674 i = 0; | |
810 | 2675 if ( wight > 0 ) |
2676 { | |
2677 lineG = (char *)lineRGB + pitch; | |
2678 lineB = (char *)lineRGB + 2 * pitch; | |
0 | 2679 do |
2680 { | |
810 | 2681 lineRGB[v12] = (signed int)(v7->uTargetRMask & *line_pictute_data) >> (v7->uTargetGBits + v7->uTargetBBits + v7->uTargetRBits - 8); |
2682 lineG[v12] = (signed int)(v7->uTargetGMask & *line_pictute_data) >> ( v7->uTargetBBits + v7->uTargetGBits- 8); | |
2683 lineB[v12] = (v7->uTargetBMask & *line_pictute_data) << (8 - v7->uTargetBBits); | |
2684 | |
2685 v12++; | |
2686 } | |
2687 while ( v12 < wight ); | |
0 | 2688 } |
2689 for ( i = 0; i < v26; v9 = (char *)v9 + 1 ) | |
2690 { | |
810 | 2691 test_byte = 1; |
2692 pict_byte = lineRGB [i]; | |
0 | 2693 do |
2694 { | |
810 | 2695 v15 = i + test_byte; |
2696 if ( *((char *)lineRGB + v15) != pict_byte ) | |
0 | 2697 break; |
810 | 2698 if ( !(v15 % pitch) ) |
0 | 2699 break; |
810 | 2700 ++test_byte; |
2701 } | |
2702 while ( test_byte < 0x3Fu ); | |
2703 if ( i + test_byte > v26 ) | |
2704 test_byte = 3 * pitch - i; | |
2705 if ( test_byte > 1u || pict_byte >= 0xC0u ) | |
2706 { | |
2707 v43 = test_byte | 0xC0; | |
0 | 2708 memcpy(v9, &v43, 1u); |
2709 v9 = (char *)v9 + 1; | |
2710 } | |
810 | 2711 memcpy(v9, &pict_byte, 1u); |
2712 i += test_byte; | |
2713 } | |
2714 v11 +=wight ; | |
0 | 2715 v16 = v25-- == 1; |
810 | 2716 |
0 | 2717 if ( v16 ) |
2718 break; | |
810 | 2719 v10 = pitch; |
2720 } | |
2721 } | |
1583 | 2722 free(lineRGB); |
810 | 2723 *(int *)packed_size = (char *)v9 - data_buff; |
2724 | |
0 | 2725 } |
2726 | |
2727 //----- (0049F8B5) -------------------------------------------------------- | |
2728 FILE *Render::SavePCXImage(const char *Filename, char *a3, int a4, int a5) | |
2729 { | |
1430 | 2730 //Render *v5; // esi@1 |
0 | 2731 FILE *result; // eax@1 |
2732 FILE *v7; // edi@4 | |
2733 int v8; // ecx@5 | |
2734 int v9; // eax@5 | |
2735 int v10; // eax@7 | |
2736 int v11; // ecx@9 | |
2737 signed int v12; // eax@12 | |
2738 char v13; // zf@21 | |
2739 char v14[56]; // [sp+4h] [bp-A0h]@4 | |
2740 __int16 v15; // [sp+3Ch] [bp-68h]@4 | |
2741 char color_map[48]; // [sp+40h] [bp-64h]@4 | |
2742 int v17; // [sp+70h] [bp-34h]@5 | |
2743 int v18; // [sp+74h] [bp-30h]@5 | |
2744 char *v19; // [sp+78h] [bp-2Ch]@5 | |
2745 int v20; // [sp+7Ch] [bp-28h]@5 | |
2746 PCXHeader_1 header1; // [sp+80h] [bp-24h]@4 | |
2747 PCXHeader_2 header2; // [sp+90h] [bp-14h]@4 | |
2748 void *ptr; // [sp+98h] [bp-Ch]@4 | |
2749 int v24; // [sp+9Ch] [bp-8h]@2 | |
2750 char *i; // [sp+A0h] [bp-4h]@8 | |
2751 | |
2752 result = fopen(Filename, "wb"); | |
2753 Filename = (const char *)result; | |
2754 if ( result ) | |
2755 { | |
2756 v24 = a4; | |
2757 if ( a4 & 1 ) | |
2758 v24 = a4 + 1; | |
2759 header1.left = 0; | |
2760 header1.up = 0; | |
2761 header1.right = a4 - 1; | |
2762 header1.bottom = a5 - 1; | |
2763 header2.pitch = v24; | |
2764 memset(color_map, 0, sizeof(color_map)); | |
2765 header2.reserved = 0; | |
2766 memset(v14, 0, sizeof(v14)); | |
2767 v15 = 0; | |
2768 header1.manufacturer = 10; | |
2769 header1.version = 5; | |
2770 header1.encoding = 1; | |
2771 header1.bpp = 8; | |
2772 header1.hdpi = 75; | |
2773 header1.vdpi = 75; | |
2774 header2.planes = 3; | |
2775 header2.palette_info = 1; | |
2776 fwrite(&header1, 1u, 1u, (FILE *)Filename); | |
2777 v7 = (FILE *)Filename; | |
2778 fwrite(&header1.version, 1u, 1u, (FILE *)Filename); | |
2779 fwrite(&header1.encoding, 1u, 1u, v7); | |
2780 fwrite(&header1.bpp, 1u, 1u, v7); | |
2781 fwrite(&header1.left, 2u, 1u, v7); | |
2782 fwrite(&header1.up, 2u, 1u, v7); | |
2783 fwrite(&header1.right, 2u, 1u, v7); | |
2784 fwrite(&header1.bottom, 2u, 1u, v7); | |
2785 fwrite(&header1.hdpi, 2u, 1u, v7); | |
2786 fwrite(&header1.vdpi, 2u, 1u, v7); | |
2787 fwrite(color_map, 0x30u, 1u, v7); | |
2788 fwrite(&header2, 1u, 1u, v7); | |
2789 fwrite(&header2.planes, 1u, 1u, v7); | |
2790 fwrite(&header2.pitch, 2u, 1u, v7); | |
2791 fwrite(&header2.palette_info, 2u, 1u, v7); | |
2792 fwrite(v14, 0x3Au, 1u, v7); | |
1583 | 2793 ptr = malloc(3 * a4 + 6); |
0 | 2794 if ( a5 > 0 ) |
2795 { | |
2796 v8 = v24; | |
2797 v18 = a5; | |
2798 v20 = 3 * v24; | |
2799 v17 = 2 * a4; | |
2800 v9 = (int)a3; | |
2801 v19 = a3; | |
2802 while ( 1 ) | |
2803 { | |
2804 a5 = v9; | |
2805 v10 = 0; | |
2806 if ( a4 > 0 ) | |
2807 { | |
2808 a3 = (char *)ptr + v8; | |
2809 i = (char *)ptr + 2 * v24; | |
2810 do | |
2811 { | |
1430 | 2812 *((char *)ptr + v10) = (signed int)(this->uTargetRMask & *(short *)a5) >> (LOBYTE(this->uTargetGBits) |
2813 + LOBYTE(this->uTargetBBits) | |
2814 + this->uTargetRBits | |
0 | 2815 - 8); |
1430 | 2816 a3[v10] = (signed int)(this->uTargetGMask & *(short *)a5) >> (LOBYTE(this->uTargetBBits) |
2817 + LOBYTE(this->uTargetGBits) | |
0 | 2818 - 8); |
2819 v11 = a5; | |
2820 a5 += 2; | |
1430 | 2821 i[v10++] = (this->uTargetBMask & *(char *)v11) << (8 - LOBYTE(this->uTargetBBits)); |
0 | 2822 } |
2823 while ( v10 < a4 ); | |
2824 } | |
2825 for ( i = 0; (signed int)i < v20; i += BYTE3(a5) ) | |
2826 { | |
2827 BYTE3(a5) = 1; | |
2828 BYTE3(Filename) = *((char *)ptr + (int)i); | |
2829 do | |
2830 { | |
2831 v12 = (signed int)&i[BYTE3(a5)]; | |
2832 if ( *((char *)ptr + v12) != BYTE3(Filename) ) | |
2833 break; | |
2834 if ( !(v12 % v24) ) | |
2835 break; | |
2836 ++BYTE3(a5); | |
2837 } | |
2838 while ( BYTE3(a5) < 0x3Fu ); | |
2839 if ( (signed int)&i[BYTE3(a5)] > v20 ) | |
2840 BYTE3(a5) = 3 * v24 - (char)i; | |
2841 if ( BYTE3(a5) > 1u || BYTE3(Filename) >= 0xC0u ) | |
2842 { | |
2843 BYTE3(a3) = BYTE3(a5) | 0xC0; | |
2844 fwrite((char *)&a3 + 3, 1u, 1u, v7); | |
2845 } | |
2846 fwrite((char *)&Filename + 3, 1u, 1u, v7); | |
2847 } | |
2848 v9 = (int)&v19[v17]; | |
2849 v13 = v18-- == 1; | |
2850 v19 += v17; | |
2851 if ( v13 ) | |
2852 break; | |
2853 v8 = v24; | |
2854 } | |
2855 } | |
1583 | 2856 free(ptr); |
0 | 2857 result = (FILE *)fclose(v7); |
2858 } | |
2859 return result; | |
2860 } | |
2861 | |
2862 //----- (0049FBCD) -------------------------------------------------------- | |
2863 void Render::ClearTarget(unsigned int uColor) | |
2864 { | |
2865 if (pRenderD3D) | |
2866 { | |
2069 | 2867 if (using_software_screen_buffer) |
0 | 2868 pRenderD3D->ClearTarget(true, uColor, false, 0.0); |
2869 } | |
2870 else | |
2871 memset32(pTargetSurface, uColor, field_10 * field_14 / 2); | |
2872 } | |
2873 | |
2874 //----- (0049FC23) -------------------------------------------------------- | |
2875 void Render::Release2() | |
2876 { | |
2877 Release(); | |
2878 bWindowMode = 1; | |
2879 } | |
2880 | |
2881 //----- (0049FC37) -------------------------------------------------------- | |
2882 void Render::Present() | |
2883 { | |
2884 Render *v1; // esi@1 | |
2885 struct tagRECT Rect; // [sp+8h] [bp-28h]@11 | |
2886 RECT a4; // [sp+18h] [bp-18h]@11 | |
2887 struct tagPOINT Point; // [sp+28h] [bp-8h]@11 | |
2888 | |
2889 v1 = this; | |
2069 | 2890 if ( !pRenderer->pRenderD3D || this->using_software_screen_buffer ) |
0 | 2891 { |
2892 this->pBeforePresentFunction(); | |
2893 if ( v1->pRenderD3D ) | |
2894 { | |
2069 | 2895 if ( v1->using_software_screen_buffer ) |
0 | 2896 { |
2897 pRenderD3D->Present(false); | |
2898 } | |
2899 } | |
1802 | 2900 else __debugbreak(); // no sr |
2901 /*{ | |
0 | 2902 if ( v1->bWindowMode ) |
2903 { | |
2904 RestoreFrontBuffer(); | |
2905 GetClientRect(v1->hWnd, &Rect); | |
2906 Point.y = 0; | |
2907 Point.x = 0; | |
2908 ClientToScreen(v1->hWnd, &Point); | |
2909 OffsetRect(&Rect, Point.x, Point.y); | |
2910 a4.top = 0; | |
2911 a4.bottom = 480; | |
2912 a4.left = 0; | |
2913 a4.right = 640; | |
2914 PresentRect(&Rect, &a4); | |
2915 } | |
2916 else | |
2917 { | |
2918 RestoreFrontBuffer(); | |
2919 a4.top = 0; | |
2920 a4.bottom = 480; | |
2921 a4.left = 0; | |
2922 a4.right = 640; | |
2923 BltBackToFontFast(0, 0, &a4); | |
2924 } | |
1802 | 2925 }*/ |
0 | 2926 } |
2927 } | |
2928 | |
2929 //----- (0049FD3A) -------------------------------------------------------- | |
2930 void Render::_49FD3A() | |
2931 { | |
2932 Render *v2; // esi@1 | |
2933 IDirectDrawSurface4 *v3; // eax@6 | |
2934 IDirectDrawSurface4 *v4; // ST0C_4@6 | |
2935 RECT v5; // [sp+8h] [bp-10h]@6 | |
2936 | |
1980 | 2937 Render* a1 = this; |
0 | 2938 v2 = a1; |
2939 if ( a1->pRenderD3D ) | |
2940 { | |
2941 if (pFrontBuffer4->IsLost() == DDERR_SURFACELOST) | |
2942 pFrontBuffer4->Restore(); | |
2943 if (pBackBuffer4->IsLost() == DDERR_SURFACELOST) | |
2944 pBackBuffer4->Restore(); | |
2945 v3 = v2->pBackBuffer4; | |
2946 v4 = v2->pFrontBuffer4; | |
2947 v5.top = 0; | |
2948 v5.bottom = 480; | |
2949 v5.left = 0; | |
2950 v5.right = 640; | |
2951 v3->BltFast(0, 0, v4, &v5, 16u); | |
2952 } | |
2953 } | |
2954 | |
2955 //----- (0049FDBF) -------------------------------------------------------- | |
2956 void Render::CreateZBuffer() | |
2957 { | |
2958 if (!pDefaultZBuffer) | |
2959 { | |
2960 pDefaultZBuffer = pActiveZBuffer = nullptr; | |
1583 | 2961 pDefaultZBuffer = pActiveZBuffer = (int *)malloc(0x12C000); |
871 | 2962 memset32(pActiveZBuffer, 0xFFFF0000, 0x4B000u); // // inlined Render::ClearActiveZBuffer (mm8::004A085B) |
0 | 2963 } |
2964 } | |
2965 | |
2966 //----- (0049FE05) -------------------------------------------------------- | |
2967 void Render::Release() | |
2968 { | |
2969 Render *v1; // esi@1 | |
1802 | 2970 //RenderD3D *v2; // ecx@1 |
2971 //char v3; // zf@4 | |
2972 //void *v4; // ebx@6 | |
0 | 2973 IDirectDraw *v5; // eax@10 |
2974 IDirectDrawSurface2 *v6; // eax@11 | |
2975 IDirectDrawSurface2 *v7; // eax@13 | |
2976 IDirectDrawSurface2 *v8; // eax@15 | |
2977 IDirectDraw2 *v9; // eax@17 | |
2978 IDirectDraw4 *v10; // eax@19 | |
2979 IDirectDrawSurface4 *v11; // eax@20 | |
2980 IDirectDrawSurface4 *v12; // eax@22 | |
2981 IDirectDrawSurface4 *v13; // eax@24 | |
2982 IDirectDraw4 *v14; // eax@26 | |
2983 unsigned __int16 **v15; // ebx@28 | |
2984 void **v16; // esi@29 | |
2985 | |
2986 v1 = this; | |
1802 | 2987 if (pRenderD3D) |
0 | 2988 { |
2069 | 2989 if ( v1->using_software_screen_buffer ) |
0 | 2990 { |
1802 | 2991 pRenderD3D->ClearTarget(true, 0, false, 1.0); |
0 | 2992 pRenderD3D->Present(0); |
1802 | 2993 pRenderD3D->ClearTarget(true, 0, false, 1.0); |
0 | 2994 } |
2995 v1->pColorKeySurface4 = 0; | |
2996 v1->pBackBuffer4 = 0; | |
2997 v1->pFrontBuffer4 = 0; | |
2998 v1->pDirectDraw4 = 0; | |
1802 | 2999 if (v1->pTargetSurface) |
0 | 3000 { |
2069 | 3001 delete [] v1->pTargetSurface_unaligned; |
0 | 3002 v1->pTargetSurface = 0; |
2069 | 3003 v1->pTargetSurface_unaligned = 0; |
0 | 3004 } |
1802 | 3005 if (pRenderD3D) |
0 | 3006 { |
3007 pRenderD3D->Release(); | |
1802 | 3008 delete pRenderD3D; |
3009 } | |
3010 pRenderD3D = 0; | |
0 | 3011 } |
3012 else | |
1802 | 3013 ;//__debugbreak(); // no sr |
3014 /*{ | |
0 | 3015 if ( bWinNT4_0 == 1 ) |
3016 { | |
3017 v5 = (IDirectDraw *)v1->pDirectDraw2; | |
3018 if ( !v5 ) | |
3019 return; | |
3020 v5->SetCooperativeLevel(v1->hWnd, 8u); | |
3021 v1->pDirectDraw2->FlipToGDISurface(); | |
3022 v6 = v1->pSomeSurface2; | |
3023 if ( v6 ) | |
3024 { | |
3025 v6->Release(); | |
3026 v1->pSomeSurface2 = 0; | |
3027 } | |
3028 v7 = v1->pBackBuffer2; | |
3029 if ( v7 ) | |
3030 { | |
3031 v7->Release(); | |
3032 v1->pBackBuffer2 = 0; | |
3033 } | |
3034 v8 = v1->pFrontBuffer2; | |
3035 if ( v8 ) | |
3036 { | |
3037 v8->Release(); | |
3038 v1->pFrontBuffer2 = 0; | |
3039 } | |
3040 v9 = v1->pDirectDraw2; | |
3041 if ( v9 ) | |
3042 { | |
3043 v9->Release(); | |
3044 v1->pDirectDraw2 = 0; | |
3045 } | |
3046 } | |
3047 else | |
3048 { | |
3049 v10 = v1->pDirectDraw4; | |
3050 if ( !v10 ) | |
3051 return; | |
3052 v10->SetCooperativeLevel(v1->hWnd, 1032u); | |
3053 v1->pDirectDraw4->FlipToGDISurface(); | |
3054 v11 = v1->pColorKeySurface4; | |
3055 if ( v11 ) | |
3056 { | |
3057 v11->Release(); | |
3058 v1->pColorKeySurface4 = 0; | |
3059 } | |
3060 v12 = v1->pBackBuffer4; | |
3061 if ( v12 ) | |
3062 { | |
3063 v12->Release(); | |
3064 v1->pBackBuffer4 = 0; | |
3065 } | |
3066 v13 = v1->pFrontBuffer4; | |
3067 if ( v13 ) | |
3068 { | |
3069 v13->Release(); | |
3070 v1->pFrontBuffer4 = 0; | |
3071 } | |
3072 v14 = v1->pDirectDraw4; | |
3073 if ( v14 ) | |
3074 { | |
3075 v14->Release(); | |
3076 v1->pDirectDraw4 = 0; | |
3077 } | |
3078 } | |
3079 v15 = &v1->pTargetSurface; | |
3080 if ( v1->pTargetSurface ) | |
3081 { | |
3082 v16 = (void **)&v1->ptr_400E8; | |
3083 free(*v16); | |
3084 *v15 = 0; | |
3085 *v16 = 0; | |
3086 } | |
1802 | 3087 }*/ |
0 | 3088 } |
3089 | |
3090 //----- (0049FFD7) -------------------------------------------------------- | |
3091 void Render::CreateSomeTexture() | |
3092 { | |
3093 pRenderD3D->CreateTexture(64, 64, &pSurface, &pTexture, true, false, 32); | |
3094 } | |
3095 | |
3096 //----- (0049FFFB) -------------------------------------------------------- | |
1802 | 3097 bool Render::InitializeFullscreen() |
0 | 3098 { |
3099 //Render *v2; // esi@1 | |
3100 //HWND v3; // ebx@1 | |
3101 //void *v4; // eax@2 | |
3102 //RenderD3D *v5; // eax@3 | |
3103 unsigned int v6; // edx@5 | |
3104 RenderD3D__DevInfo *v7; // ecx@5 | |
3105 bool v8; // eax@6 | |
3106 RenderD3D *v9; // ecx@13 | |
3107 unsigned int v10; // eax@13 | |
3108 RenderD3D *v11; // eax@25 | |
3109 HRESULT v12; // eax@25 | |
3110 int v13; // ecx@25 | |
3111 int v14; // eax@27 | |
3112 signed int v15; // ebx@31 | |
2069 | 3113 //bool v16; // eax@35 |
3114 //char v17; // zf@35 | |
0 | 3115 IDirectDraw4 *v18; // eax@38 |
3116 HRESULT v19; // eax@38 | |
2069 | 3117 //int *v20; // eax@39 |
0 | 3118 int *v22; // eax@42 |
3119 int v23; // ecx@42 | |
3120 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@25 | |
3121 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@40 | |
3122 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@25 | |
3123 DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@38 | |
3124 void *v28; // [sp+2FCh] [bp-10h]@2 | |
3125 int v29; // [sp+308h] [bp-4h]@2 | |
3126 | |
2069 | 3127 __debugbreak(); // Nomad |
3128 | |
0 | 3129 //v2 = this; |
2069 | 3130 this->using_software_screen_buffer = 0; |
0 | 3131 this->pColorKeySurface4 = 0; |
3132 this->pBackBuffer4 = 0; | |
3133 this->pFrontBuffer4 = 0; | |
3134 this->pDirectDraw4 = 0; | |
2069 | 3135 //this->bColorKeySupported = 0; |
0 | 3136 Release(); |
3137 //v3 = hWnd; | |
1802 | 3138 this->window = window; |
0 | 3139 CreateZBuffer(); |
1802 | 3140 |
3141 /*if (!bUserDirect3D) | |
3142 { | |
3143 CreateDirectDraw(); | |
3144 SetDirectDrawCooperationMode(hWnd, 1); | |
3145 SetDirectDrawDisplayMode(640u, 480u, 16u); | |
3146 CreateDirectDrawPrimarySurface(); | |
3147 v15 = 1; | |
3148 } | |
3149 else | |
3150 {*/ | |
0 | 3151 pRenderD3D = new RenderD3D; |
3152 v28 = pRenderD3D; | |
3153 v6 = uDesiredDirect3DDevice; | |
3154 v29 = -1; | |
3155 v7 = pRenderD3D->pAvailableDevices; | |
3156 if ( v7[v6].bIsDeviceCompatible ) | |
3157 { | |
2069 | 3158 v8 = pRenderD3D->CreateDevice(v6, /*0*/true, window); |
0 | 3159 uAcquiredDirect3DDevice = uDesiredDirect3DDevice; |
3160 } | |
3161 else | |
3162 { | |
3163 if ( v7[1].bIsDeviceCompatible ) | |
3164 { | |
2069 | 3165 v8 = pRenderD3D->CreateDevice(1, /*0*/true, window); |
0 | 3166 uAcquiredDirect3DDevice = 1; |
3167 } | |
3168 else | |
3169 { | |
3170 if ( !v7->bIsDeviceCompatible ) | |
1545 | 3171 Error("There aren't any D3D devices to create."); |
3172 | |
2069 | 3173 v8 = pRenderD3D->CreateDevice(0, /*0*/true, window); |
1985 | 3174 uAcquiredDirect3DDevice = 1; |
0 | 3175 } |
3176 } | |
3177 if ( !v8 ) | |
1545 | 3178 Error("D3Drend->Init failed."); |
3179 | |
0 | 3180 v9 = pRenderD3D; |
3181 pBackBuffer4 = v9->pBackBuffer; | |
3182 pFrontBuffer4 = v9->pFrontBuffer; | |
3183 pDirectDraw4 = v9->pHost; | |
3184 v10 = pRenderD3D->GetDeviceCaps(); | |
3185 if ( v10 & 1 ) | |
3186 { | |
3187 if ( pRenderD3D ) | |
3188 { | |
3189 pRenderD3D->Release(); | |
3190 delete pRenderD3D; | |
3191 } | |
3192 pRenderD3D = 0; | |
3193 pBackBuffer4 = 0; | |
3194 pFrontBuffer4 = 0; | |
3195 pDirectDraw4 = 0; | |
1545 | 3196 Error("Direct3D renderer: The device failed to return capabilities."); |
0 | 3197 } |
3198 if ( v10 & 0x3E ) | |
3199 { | |
3200 if ( pRenderD3D ) | |
3201 { | |
3202 pRenderD3D->Release(); | |
3203 delete pRenderD3D; | |
3204 } | |
3205 pColorKeySurface4 = 0; | |
3206 pRenderD3D = 0; | |
3207 pBackBuffer4 = 0; | |
3208 pFrontBuffer4 = 0; | |
3209 pDirectDraw4 = 0; | |
1545 | 3210 Error("Direct3D renderer: The device doesn't support the necessary alpha blending modes."); |
0 | 3211 } |
3212 if ( (v10 & 0x80u) != 0 ) | |
3213 { | |
3214 if ( pRenderD3D ) | |
3215 { | |
3216 pRenderD3D->Release(); | |
3217 delete pRenderD3D; | |
3218 } | |
3219 pRenderD3D = 0; | |
3220 pBackBuffer4 = 0; | |
3221 pFrontBuffer4 = 0; | |
3222 pDirectDraw4 = 0; | |
1545 | 3223 Error("Direct3D renderer: The device doesn't support non-square textures."); |
0 | 3224 } |
3225 LOBYTE(field_10365C) = ~(unsigned __int8)(v10 >> 6) & 1; | |
3226 bRequiredTextureStagesAvailable = CheckTextureStages(); | |
3227 memset(&halCaps, 0, 0xFCu); | |
3228 halCaps.dwSize = 252; | |
3229 memset(&refCaps, 0, 0xFCu); | |
3230 v11 = pRenderD3D; | |
3231 refCaps.dwSize = 252; | |
3232 ErrD3D(v11->pDevice->GetCaps(&halCaps, &refCaps)); | |
3233 v13 = halCaps.dwMinTextureWidth; | |
3234 if ( (unsigned int)halCaps.dwMinTextureWidth >= halCaps.dwMinTextureHeight ) | |
3235 v13 = halCaps.dwMinTextureHeight; | |
3236 v14 = halCaps.dwMaxTextureWidth; | |
3237 uMinDeviceTextureDim = v13; | |
3238 if ( (unsigned int)v14 < halCaps.dwMaxTextureHeight ) | |
3239 v14 = halCaps.dwMaxTextureHeight; | |
3240 uMaxDeviceTextureDim = v14; | |
3241 if ( (unsigned int)v13 < 4 ) | |
3242 uMinDeviceTextureDim = 4; | |
3243 CreateSomeTexture(); | |
3244 v15 = 1; | |
3245 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, true)); | |
3246 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, true)); | |
3247 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, 2u)); | |
3248 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SPECULARENABLE, false)); | |
3249 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, false)); | |
3250 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHATESTENABLE, false)); | |
3251 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1u)); | |
3252 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u)); | |
3253 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u)); | |
3254 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 3u)); | |
3255 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG1, 2u)); | |
3256 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG2, 0)); | |
3257 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAOP, 2u)); | |
3258 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u)); | |
3259 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG2, 0)); | |
3260 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 4u)); | |
1802 | 3261 //} |
2069 | 3262 ddpfPrimarySuface.dwSize = 32; |
3263 GetTargetPixelFormat(&ddpfPrimarySuface); | |
0 | 3264 ParseTargetPixelFormat(); |
2069 | 3265 |
3266 if (!pRenderD3D) | |
3267 { | |
3268 __debugbreak(); | |
3269 pBeforePresentFunction = 0;//nullsub_1; | |
3270 } | |
3271 //else | |
3272 //{ | |
3273 /*v16 = IsColorKeySupported(pDirectDraw4); | |
0 | 3274 v17 = uAcquiredDirect3DDevice == v15; |
3275 bColorKeySupported = v16; | |
3276 if ( !v17 ) | |
3277 bColorKeySupported = 0; | |
3278 if ( bColorKeySupported ) | |
3279 { | |
3280 memset(&ddsd2, 0, 0x7Cu); | |
3281 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask; | |
3282 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue; | |
3283 v18 = pDirectDraw4; | |
3284 ddsd2.dwSize = 124; | |
3285 ddsd2.dwFlags = 65543; | |
3286 ddsd2.ddsCaps.dwCaps = 2112; | |
3287 ddsd2.dwWidth = 640; | |
3288 ddsd2.dwHeight = 480; | |
3289 ErrD3D(v18->CreateSurface(&ddsd2, &pColorKeySurface4, 0)); | |
3290 pBeforePresentFunction = Present_ColorKey; | |
3291 } | |
2069 | 3292 else*/ |
0 | 3293 { |
3294 pTargetSurface = 0; | |
2069 | 3295 pTargetSurface_unaligned = 0; |
3296 pTargetSurface_unaligned = (unsigned int *)malloc(640 * 480 * 2 + 32); | |
3297 if ( !pTargetSurface_unaligned | |
0 | 3298 || (memset(&pDesc, 0, 0x7Cu), |
3299 pDesc.dwSize = 124, | |
3300 !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, v15)) ) | |
3301 return 0; | |
3302 pBackBuffer4->Unlock(0); | |
2069 | 3303 v22 = (int *)pTargetSurface_unaligned + 4; |
0 | 3304 v23 = (unsigned int)pDesc.lpSurface & 7; |
3305 LOBYTE(v22) = (unsigned __int8)v22 & 0xF8; | |
3306 uTargetSurfacePitch = 640; | |
3307 pBeforePresentFunction = Present_NoColorKey; | |
3308 v15 = 1; | |
2069 | 3309 pTargetSurface = (unsigned __int32 *)((char *)v22 + 2 * v23); |
3310 } | |
3311 using_software_screen_buffer = v15; | |
3312 //} | |
0 | 3313 bWindowMode = 0; |
3314 pParty->uFlags |= 2u; | |
2069 | 3315 flt_6BE3A0 = 0.55000001f; |
0 | 3316 pViewport->_4C02F8(36044); |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1110
diff
changeset
|
3317 return v15 != 0; |
0 | 3318 } |
3319 | |
3320 //----- (004A05F3) -------------------------------------------------------- | |
1802 | 3321 bool Render::SwitchToWindow() |
0 | 3322 { |
3323 //Render *v2; // esi@1 | |
3324 //void *v3; // eax@2 | |
3325 //RenderD3D *v4; // eax@3 | |
3326 //unsigned int v5; // edx@5 | |
3327 //RenderD3D__DevInfo *v6; // ecx@5 | |
3328 bool v7; // eax@7 | |
3329 //RenderD3D *v8; // ecx@12 | |
3330 unsigned int v9; // eax@12 | |
3331 RenderD3D *v10; // eax@24 | |
3332 HRESULT v11; // eax@24 | |
3333 int v12; // eax@24 | |
3334 int v13; // eax@26 | |
2069 | 3335 //bool v14; // eax@32 |
3336 //char v15; // zf@32 | |
0 | 3337 IDirectDraw4 *v16; // eax@35 |
3338 HRESULT v17; // eax@35 | |
2069 | 3339 //int *v18; // eax@36 |
0 | 3340 int *v19; // edx@38 |
3341 int v20; // eax@38 | |
3342 unsigned int v21; // ecx@38 | |
3343 int v22; // eax@41 | |
3344 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@24 | |
3345 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@37 | |
3346 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@24 | |
3347 DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@35 | |
3348 //RenderD3D *thisa; // [sp+2FCh] [bp-10h]@2 | |
3349 int v29; // [sp+308h] [bp-4h]@2 | |
3350 | |
2069 | 3351 pParty->uFlags |= PARTY_FLAGS_1_0002; |
0 | 3352 //v2 = this; |
3353 flt_6BE3A0 = 0.55000001f; | |
3354 pViewport->_4C02F8(36044); | |
2069 | 3355 using_software_screen_buffer = 0; |
0 | 3356 Release(); |
3357 pColorKeySurface4 = 0; | |
3358 pBackBuffer4 = 0; | |
3359 pFrontBuffer4 = 0; | |
3360 pDirectDraw4 = 0; | |
2069 | 3361 //bColorKeySupported = 0; |
0 | 3362 CreateZBuffer(); |
1802 | 3363 /*if (!bUserDirect3D) |
3364 { | |
3365 CreateDirectDraw(); | |
3366 SetDirectDrawCooperationMode(hWnd, 0); | |
3367 field_4004C = 1; | |
3368 CreateFrontBuffer(); | |
3369 CreateClipper(hWnd); | |
3370 CreateBackBuffer(); | |
3371 field_40030 = 0; | |
3372 field_18_locked_pitch = 0; | |
3373 } | |
3374 else | |
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 { | |
2069 | 3391 v7 = pRenderD3D->CreateDevice(uDesiredDirect3DDevice, true, window); |
0 | 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 | |
2069 | 3399 v7 = pRenderD3D->CreateDevice(0, true, window); |
0 | 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; | |
2069 | 3460 if ( (unsigned int)halCaps.dwMinTextureWidth > halCaps.dwMinTextureHeight ) |
0 | 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)); | |
1802 | 3483 //} |
3484 | |
2069 | 3485 ddpfPrimarySuface.dwSize = 32; |
3486 GetTargetPixelFormat(&ddpfPrimarySuface); | |
0 | 3487 ParseTargetPixelFormat(); |
2069 | 3488 |
0 | 3489 if ( !pRenderD3D ) |
3490 { | |
2069 | 3491 __debugbreak(); |
3492 //pBeforePresentFunction = 0;//nullsub_1; | |
3493 //goto LABEL_47; | |
3494 } | |
3495 /*v14 = IsColorKeySupported(pDirectDraw4); | |
0 | 3496 v15 = uAcquiredDirect3DDevice == 1; |
3497 bColorKeySupported = v14; | |
3498 if ( !v15 ) | |
2069 | 3499 bColorKeySupported = 0;*/ |
3500 //if ( bColorKeySupported ) | |
3501 if (false) | |
3502 { | |
3503 /*memset(&ddsd2, 0, 0x7Cu); | |
0 | 3504 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask; |
3505 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue; | |
3506 v16 = pDirectDraw4; | |
3507 ddsd2.dwSize = 124; | |
3508 ddsd2.dwFlags = 65543; | |
3509 ddsd2.ddsCaps.dwCaps = 2112; | |
3510 ddsd2.dwWidth = 640; | |
3511 ddsd2.dwHeight = 480; | |
3512 ErrD3D(v16->CreateSurface(&ddsd2, &pColorKeySurface4, 0)); | |
2069 | 3513 pBeforePresentFunction = Present_ColorKey;*/ |
0 | 3514 LABEL_45: |
2069 | 3515 using_software_screen_buffer = 1; |
3516 //LABEL_47: | |
0 | 3517 bWindowMode = 1; |
1802 | 3518 //hWnd = hWnd; |
0 | 3519 return 0; |
3520 } | |
3521 pTargetSurface = 0; | |
2069 | 3522 pTargetSurface_unaligned = 0; |
3523 | |
3524 uint num_pixels = window->GetWidth() * window->GetHeight(); | |
3525 pTargetSurface_unaligned = new unsigned int[num_pixels]; | |
3526 | |
3527 if (!pTargetSurface_unaligned) | |
3528 return false; | |
3529 | |
3530 memset(&pDesc, 0, 0x7Cu); | |
3531 pDesc.dwSize = 124; | |
3532 if (!pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, DDLOCK_WAIT)) | |
3533 { | |
3534 delete [] pTargetSurface_unaligned; | |
3535 return false; | |
3536 } | |
3537 | |
3538 memset32(pTargetSurface_unaligned, -1, num_pixels); | |
3539 | |
3540 | |
0 | 3541 pRenderer->pBackBuffer4->Unlock(0); |
2069 | 3542 /*v19 = pTargetSurface_unaligned; |
0 | 3543 v20 = (unsigned int)pDesc.lpSurface & 7; |
3544 v21 = (unsigned int)ptr_400E8 & 7; | |
3545 if ( v21 == v20 ) | |
3546 { | |
3547 pTargetSurface = (unsigned __int16 *)v19; | |
3548 } | |
3549 else | |
3550 { | |
3551 if ( (signed int)v21 >= v20 ) | |
3552 v22 = (int)((char *)v19 + 2 * (v21 - v20) + 16); | |
3553 else | |
3554 v22 = (int)((char *)v19 + 2 * (v20 - v21) + 16); | |
3555 pTargetSurface = (unsigned __int16 *)v22; | |
2069 | 3556 }*/ |
3557 pTargetSurface = pTargetSurface_unaligned; | |
3558 uTargetSurfacePitch = window->GetWidth(); | |
0 | 3559 pBeforePresentFunction = Present_NoColorKey; |
3560 goto LABEL_45; | |
3561 } | |
3562 | |
3563 //----- (004A0BEE) -------------------------------------------------------- | |
709 | 3564 char Render::RasterLine2D(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW, unsigned __int16 uColor) |
0 | 3565 { |
3566 unsigned int v8; // ebx@5 | |
3567 unsigned int v10; // ecx@9 | |
3568 unsigned int v11; // esi@13 | |
3569 int v12; // eax@17 | |
3570 int v13; // eax@21 | |
3571 int v16; // eax@27 | |
3572 signed __int64 v19; // qax@41 | |
3573 int v20; // edi@41 | |
3574 unsigned int v21; // edi@46 | |
3575 int v22; // esi@47 | |
3576 int v23; // ebx@47 | |
3577 signed int v24; // edx@50 | |
3578 signed int v25; // esi@52 | |
3579 unsigned __int16 *v26; // ecx@52 | |
3580 int v27; // ebx@54 | |
3581 int v28; // edi@55 | |
3582 int v29; // edx@55 | |
3583 int v30; // ebx@60 | |
3584 int v31; // edx@61 | |
3585 int v32; // edi@61 | |
3586 __int64 v36; // [sp+14h] [bp-8h]@1 | |
3587 signed int v37; // [sp+18h] [bp-4h]@28 | |
3588 unsigned int uXa; // [sp+24h] [bp+8h]@49 | |
3589 unsigned int uYa; // [sp+28h] [bp+Ch]@28 | |
3590 int uYb; // [sp+28h] [bp+Ch]@47 | |
3591 int uZa; // [sp+2Ch] [bp+10h]@38 | |
3592 | |
3593 v36 = 0i64; | |
2093 | 3594 if ( (signed int)uX < this->raster_clip_x ) |
0 | 3595 HIDWORD(v36) = 8; |
709 | 3596 if ( (signed int)uX > this->raster_clip_z ) |
2093 | 3597 HIDWORD(v36) |= 4; |
0 | 3598 v8 = uY; |
2093 | 3599 if ( (signed int)uY < this->raster_clip_y ) |
3600 HIDWORD(v36) |= 2; | |
3601 if ( (signed int)uY > this->raster_clip_w ) | |
3602 HIDWORD(v36) |= 1; | |
0 | 3603 v10 = uZ; |
2093 | 3604 if ( (signed int)uZ < this->raster_clip_x ) |
0 | 3605 LODWORD(v36) = 8; |
2093 | 3606 if ( (signed int)uZ > this->raster_clip_z ) |
0 | 3607 LODWORD(v36) = v36 | 4; |
3608 v11 = uW; | |
2093 | 3609 if ( (signed int)uW < this->raster_clip_y ) |
0 | 3610 LODWORD(v36) = v36 | 2; |
2093 | 3611 if ( (signed int)uW > this->raster_clip_w ) |
0 | 3612 LODWORD(v36) = v36 | 1; |
3613 LOBYTE(v12) = v36; | |
3614 if ( (unsigned int)v36 & HIDWORD(v36) ) | |
3615 return v12; | |
3616 if ( !v36 ) | |
3617 { | |
3618 LABEL_46: | |
3619 v21 = pRenderer->uTargetSurfacePitch; | |
3620 if ( pRenderer->uTargetSurfacePitch ) | |
3621 { | |
2096 | 3622 v12 = uX + uY * pRenderer->uTargetSurfacePitch; |
0 | 3623 v22 = v11 - v8; |
3624 v23 = v22; | |
3625 uYb = v22; | |
3626 if ( v22 < 0 ) | |
3627 { | |
3628 v23 = -v22; | |
3629 uYb = -v22; | |
3630 v21 = -pRenderer->uTargetSurfacePitch; | |
3631 } | |
3632 uXa = v10 - uX; | |
3633 if ( (uXa & 0x80000000u) == 0 ) | |
3634 { | |
3635 v24 = 1; | |
3636 } | |
3637 else | |
3638 { | |
3639 uXa = -uXa; | |
3640 v24 = -1; | |
3641 } | |
3642 v25 = 0; | |
2069 | 3643 |
2092 | 3644 //__debugbreak(); //target sruface will most likely be 32bits/pixel, but this sub awaits 16 bits |
2093 | 3645 v26 = (unsigned __int16 *)this->pTargetSurface; |
0 | 3646 if ( v26 ) |
3647 { | |
2093 | 3648 if ( (signed int)uXa <= v23 )//рисуем вертикальную линию |
0 | 3649 { |
3650 v30 = v23 + 1; | |
3651 if ( v30 > 0 ) | |
3652 { | |
3653 v31 = 2 * v24; | |
3654 v32 = 2 * v21; | |
3655 v12 = (int)&v26[v12]; | |
2096 | 3656 int y = 0; |
2093 | 3657 for ( v30; v30; --v30 ) |
0 | 3658 { |
3659 v25 += uXa; | |
2096 | 3660 //*(short *)v12 = uColor; |
3661 //v12 += v32; | |
3662 WritePixel16(uX + v25, uY + y, uColor); | |
3663 if ( v32 >= 0 ) | |
3664 y += 1; | |
3665 else | |
3666 y -= 1; | |
0 | 3667 if ( v25 > 0 ) |
3668 { | |
3669 v25 -= uYb; | |
3670 v12 += v31; | |
3671 } | |
3672 } | |
3673 } | |
3674 } | |
2093 | 3675 else//рисуем горизонтальную линию |
0 | 3676 { |
3677 v27 = uXa + 1; | |
2096 | 3678 int x = 0; |
0 | 3679 if ( (signed int)(uXa + 1) > 0 ) |
3680 { | |
3681 v28 = 2 * v21; | |
3682 v29 = 2 * v24; | |
3683 v12 = (int)&v26[v12]; | |
2093 | 3684 for ( v27; v27; --v27 ) |
0 | 3685 { |
3686 v25 += uYb; | |
2096 | 3687 //*(short *)v12 = uColor; |
3688 //v12 += v29; | |
3689 WritePixel16(uX + x, uY + v25, uColor); | |
3690 if ( v29 >= 0 ) | |
3691 x += 1; | |
3692 else | |
3693 x -= 1; | |
0 | 3694 if ( v25 > (signed int)uXa ) |
3695 { | |
3696 v25 -= uXa; | |
3697 v12 += v28; | |
3698 } | |
3699 } | |
3700 } | |
3701 } | |
3702 } | |
3703 } | |
3704 return v12; | |
3705 } | |
3706 if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 8 ) | |
3707 { | |
3708 if ( BYTE4(v36) & 8 ) | |
3709 { | |
2093 | 3710 v13 = (signed int)((uW - uY) * (this->raster_clip_x - uX)) / (signed int)(uZ - uX); |
0 | 3711 v8 = v13 + uY; |
2093 | 3712 uX = this->raster_clip_x; |
0 | 3713 goto LABEL_24; |
3714 } | |
2093 | 3715 v10 = this->raster_clip_x; |
3716 v11 = (signed int)((uY - uW) * (this->raster_clip_x - uZ)) / (signed int)(uX - uZ) + uW; | |
3717 } | |
0 | 3718 LABEL_24: |
3719 if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 4 ) | |
3720 { | |
2093 | 3721 //v15 = this->raster_clip_z; |
0 | 3722 if ( BYTE4(v36) & 4 ) |
3723 { | |
2093 | 3724 v8 += (signed int)((v11 - v8) * (this->raster_clip_z - uX)) / (signed int)(v10 - uX); |
3725 uX = this->raster_clip_z; | |
0 | 3726 } |
3727 else | |
3728 { | |
2093 | 3729 v16 = (signed int)((v8 - v11) * (this->raster_clip_z - v10)) / (signed int)(uX - v10); |
3730 v10 = this->raster_clip_z; | |
0 | 3731 v11 += v16; |
3732 } | |
3733 } | |
3734 v37 = 0; | |
2093 | 3735 uYa = this->raster_clip_y; |
3736 if ( (signed int)v8 < this->raster_clip_y ) | |
0 | 3737 v37 = 2; |
2093 | 3738 if ( (signed int)v8 > this->raster_clip_w ) |
3739 v37 |= 1; | |
3740 if ( (signed int)v11 >= this->raster_clip_y ) | |
0 | 3741 v12 = 0; |
3742 else | |
3743 v12 = 2; | |
2093 | 3744 if ( (signed int)v11 > this->raster_clip_w ) |
0 | 3745 LOBYTE(v12) = v12 | 1; |
3746 if ( !(v12 & v37) ) | |
3747 { | |
3748 v12 ^= v37; | |
3749 uZa = v12; | |
3750 if ( v12 & 2 ) | |
3751 { | |
3752 if ( v37 & 2 ) | |
3753 { | |
3754 uX += (signed int)((v10 - uX) * (uYa - v8)) / (signed int)(v11 - v8); | |
2093 | 3755 LOBYTE(v12) = (char)this; |
3756 v8 = this->raster_clip_y; | |
0 | 3757 } |
3758 else | |
3759 { | |
3760 v19 = (signed int)((uX - v10) * (uYa - v11)); | |
3761 v20 = v8 - v11; | |
3762 v11 = uYa; | |
3763 v12 = v19 / v20; | |
3764 v10 += v12; | |
3765 } | |
3766 } | |
3767 if ( uZa & 1 ) | |
3768 { | |
3769 if ( v37 & 1 ) | |
3770 { | |
2093 | 3771 uX += (signed int)((v10 - uX) * (this->raster_clip_w - v8)) / (signed int)(v11 - v8); |
3772 LOBYTE(v12) = (char)this; | |
3773 v8 = this->raster_clip_w; | |
0 | 3774 } |
3775 else | |
3776 { | |
2093 | 3777 v12 = (signed int)((uX - v10) * (this->raster_clip_w - v11)) / (signed int)(v8 - v11); |
3778 v11 = this->raster_clip_w; | |
0 | 3779 v10 += v12; |
3780 } | |
3781 } | |
3782 goto LABEL_46; | |
3783 } | |
3784 return v12; | |
3785 } | |
3786 | |
3787 //----- (004A0E80) -------------------------------------------------------- | |
3788 void Render::ClearZBuffer(int a2, int a3) | |
3789 { | |
3790 memset32(this->pActiveZBuffer, -65536, 0x4B000u); | |
3791 } | |
3792 | |
3793 //----- (004A0E97) -------------------------------------------------------- | |
709 | 3794 void Render::SetRasterClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW) |
3795 { | |
3796 this->raster_clip_x = uX; | |
3797 this->raster_clip_y = uY; | |
3798 this->raster_clip_z = uZ; | |
3799 this->raster_clip_w = uW; | |
0 | 3800 } |
3801 | |
3802 //----- (004A0EB6) -------------------------------------------------------- | |
3803 void Render::ParseTargetPixelFormat() | |
3804 { | |
3805 Render *v1; // eax@1 | |
3806 signed int v2; // ecx@1 | |
3807 DWORD uRedMask; // edx@1 | |
3808 unsigned int uGreenMask; // esi@5 | |
3809 signed int v5; // ecx@5 | |
3810 unsigned int uBlueMask; // edx@9 | |
3811 signed int v7; // ecx@9 | |
2069 | 3812 //unsigned int v8; // ecx@13 |
0 | 3813 |
3814 v1 = this; | |
3815 v2 = 0; | |
2069 | 3816 uRedMask = v1->ddpfPrimarySuface.dwRBitMask; |
0 | 3817 v1->uTargetBBits = 0; |
3818 v1->uTargetGBits = 0; | |
3819 v1->uTargetRBits = 0; | |
3820 do | |
3821 { | |
3822 if ( (1 << v2) & uRedMask ) | |
3823 ++v1->uTargetRBits; | |
3824 ++v2; | |
3825 } | |
2069 | 3826 while ( v2 < 32 ); |
3827 uGreenMask = v1->ddpfPrimarySuface.dwGBitMask; | |
0 | 3828 v5 = 0; |
3829 do | |
3830 { | |
3831 if ( (1 << v5) & uGreenMask ) | |
3832 ++v1->uTargetGBits; | |
3833 ++v5; | |
3834 } | |
2069 | 3835 while ( v5 < 32 ); |
3836 uBlueMask = v1->ddpfPrimarySuface.dwBBitMask; | |
0 | 3837 v7 = 0; |
3838 do | |
3839 { | |
3840 if ( (1 << v7) & uBlueMask ) | |
3841 ++v1->uTargetBBits; | |
3842 ++v7; | |
3843 } | |
2069 | 3844 while ( v7 < 32 ); |
0 | 3845 v1->uTargetGMask = uGreenMask; |
2069 | 3846 v1->uTargetRMask = v1->ddpfPrimarySuface.dwRBitMask; |
0 | 3847 v1->uTargetBMask = uBlueMask; |
3848 } | |
3849 | |
3850 //----- (004A0F40) -------------------------------------------------------- | |
3851 bool Render::LockSurface_DDraw4(IDirectDrawSurface4 *pSurface, DDSURFACEDESC2 *pDesc, unsigned int uLockFlags) | |
3852 { | |
3853 IDirectDrawSurface4 *v4; // esi@1 | |
168 | 3854 HRESULT result; // eax@1 |
0 | 3855 HRESULT v6; // eax@4 |
3856 int v7; // [sp-8h] [bp-14h]@10 | |
3857 unsigned int v8; // [sp-4h] [bp-10h]@10 | |
3858 char v9; // [sp+Bh] [bp-1h]@1 | |
3859 | |
3860 v4 = pSurface; | |
3861 v9 = 1; | |
3862 result = pSurface->Lock(0, pDesc, uLockFlags, 0); | |
3863 if ( result == DDERR_SURFACELOST ) | |
3864 { | |
3865 v6 = v4->Restore(); | |
3866 if ( v6 ) | |
3867 { | |
3868 if ( v6 != DDERR_IMPLICITLYCREATED ) | |
3869 { | |
3870 LABEL_20: | |
3871 v9 = 0; | |
3872 result = (bool)memset(pDesc, 0, 4u); | |
3873 goto LABEL_21; | |
3874 } | |
3875 pRenderer->pFrontBuffer4->Restore(); | |
3876 v4->Restore(); | |
3877 } | |
3878 result = v4->Lock(0, pDesc, DDLOCK_WAIT, 0); | |
3879 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY ) | |
3880 goto LABEL_20; | |
3881 ErrD3D(result); | |
3882 if ( result ) | |
3883 { | |
3884 //v8 = 0; | |
3885 //v7 = 2161; | |
3886 LABEL_19: | |
3887 //CheckHRESULT((CheckHRESULT_stru0 *)&pSurface, result, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp", v7, v8); | |
3888 goto LABEL_20; | |
3889 } | |
3890 if ( pRenderer->pRenderD3D ) | |
3891 pRenderD3D->HandleLostResources(); | |
3892 result = pRenderer->pDirectDraw4->RestoreAllSurfaces(); | |
3893 } | |
3894 else | |
3895 { | |
3896 if ( result ) | |
3897 { | |
3898 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY ) | |
3899 goto LABEL_20; | |
3900 ErrD3D(result); | |
3901 //v8 = 0; | |
3902 //v7 = 2199; | |
3903 //goto LABEL_19; | |
3904 } | |
3905 } | |
3906 LABEL_21: | |
3907 LOBYTE(result) = v9; | |
3908 return result; | |
3909 } | |
3910 | |
3911 //----- (004A1032) -------------------------------------------------------- | |
3912 bool Render::LockSurface_DDraw2(IDirectDrawSurface2 *pSurface, DDSURFACEDESC *pDesc, unsigned int uLockFlags) | |
3913 { | |
3914 IDirectDrawSurface2 *v4; // esi@1 | |
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1164
diff
changeset
|
3915 HRESULT v5; // eax@1 |
0 | 3916 HRESULT v6; // eax@2 |
3917 int v7; // [sp-8h] [bp-10h]@8 | |
3918 unsigned int v8; // [sp-4h] [bp-Ch]@8 | |
3919 | |
3920 v4 = pSurface; | |
3921 v5 = pSurface->Lock( | |
3922 0, | |
3923 pDesc, | |
3924 uLockFlags, | |
3925 0); | |
3926 BYTE3(pSurface) = 1; | |
3927 if ( v5 == DDERR_SURFACELOST ) | |
3928 { | |
3929 v6 = v4->Restore(); | |
3930 if ( !v6 ) | |
3931 goto LABEL_5; | |
3932 if ( v6 == DDERR_IMPLICITLYCREATED ) | |
3933 { | |
3934 pRenderer->pFrontBuffer2->Restore(); | |
3935 v4->Restore(); | |
3936 LABEL_5: | |
3937 v5 = v4->Lock(0, pDesc, 1u, 0) != 0; | |
3938 if ( v5 == DDERR_INVALIDRECT || v5 == DDERR_SURFACEBUSY ) | |
3939 goto LABEL_14; | |
3940 if ( !v5 ) | |
3941 return true; | |
3942 ErrD3D(v5); | |
3943 //v8 = 0; | |
3944 //v7 = 2247; | |
3945 goto LABEL_13; | |
3946 } | |
3947 else | |
3948 { | |
3949 pDesc->dwSize = 0; | |
3950 return false; | |
3951 } | |
3952 } | |
3953 else | |
3954 { | |
3955 if ( !v5 ) | |
3956 return true; | |
3957 if ( v5 != DDERR_INVALIDRECT && v5 != DDERR_SURFACEBUSY ) | |
3958 { | |
3959 //v8 = 0; | |
3960 //v7 = 2269; | |
3961 ErrD3D(v5); | |
3962 pDesc->dwSize = 0; | |
3963 return false; | |
3964 LABEL_13: | |
3965 //CheckHRESULT((CheckHRESULT_stru0 *)&pSurface, v5, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp", v7, v8); | |
3966 goto LABEL_14; | |
3967 } | |
3968 } | |
3969 LABEL_14: | |
3970 return true; | |
3971 } | |
3972 | |
3973 //----- (004A10E4) -------------------------------------------------------- | |
3974 void Render::CreateDirectDraw() | |
3975 { | |
3976 Render *v1; // edi@1 | |
3977 HRESULT v2; // eax@1 | |
3978 HRESULT v3; // eax@5 | |
3979 int v6; // [sp-Ch] [bp-20h]@3 | |
3980 unsigned int v9; // [sp+0h] [bp-14h]@0 | |
3981 IDirectDraw *lpDD; // [sp+10h] [bp-4h]@1 | |
3982 | |
3983 v1 = this; | |
3984 ErrD3D(DirectDrawCreate(0, &lpDD, 0)); | |
3985 | |
3986 pDirectDraw2 = nullptr; | |
3987 pDirectDraw4 = nullptr; | |
3988 | |
1802 | 3989 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
3990 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 3991 ErrD3D(lpDD->QueryInterface(IID_IDirectDraw4, (void **)&pDirectDraw4)); |
3992 else | |
3993 ErrD3D(lpDD->QueryInterface(IID_IDirectDraw2, (void **)&pDirectDraw2)); | |
3994 | |
3995 lpDD->Release(); | |
3996 lpDD = nullptr; | |
3997 } | |
3998 | |
3999 //----- (004A1169) -------------------------------------------------------- | |
4000 void Render::SetDirectDrawCooperationMode(HWND hWnd, bool bFullscreen) | |
4001 { | |
4002 DWORD flags; // eax@1 | |
4003 IDirectDraw *v4; // ecx@3 | |
4004 HRESULT v5; // eax@5 | |
4005 int v6; // [sp-8h] [bp-8h]@3 | |
4006 unsigned int v7; // [sp-4h] [bp-4h]@3 | |
4007 | |
4008 flags = bFullscreen ? DDSCL_NORMAL | DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN : | |
4009 DDSCL_NORMAL; | |
4010 | |
1802 | 4011 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4012 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4013 ErrD3D(pDirectDraw4->SetCooperativeLevel(hWnd, flags | DDSCL_MULTITHREADED)); |
4014 else | |
4015 ErrD3D(pDirectDraw2->SetCooperativeLevel(hWnd, flags)); | |
4016 } | |
4017 | |
4018 //----- (004A11C6) -------------------------------------------------------- | |
4019 void Render::SetDirectDrawDisplayMode(unsigned int uWidth, unsigned int uHeight, unsigned int uBPP) | |
4020 { | |
1802 | 4021 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4022 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4023 ErrD3D(pDirectDraw4->SetDisplayMode(uWidth, uHeight, uBPP, 0, 0)); |
4024 else | |
4025 ErrD3D(pDirectDraw2->SetDisplayMode(uWidth, uHeight, uBPP, 0, 0)); | |
4026 } | |
4027 | |
4028 //----- (004A121C) -------------------------------------------------------- | |
4029 void Render::CreateFrontBuffer() | |
4030 { | |
4031 Render *v1; // esi@1 | |
4032 IDirectDraw *pDD; // eax@3 | |
4033 IDirectDrawSurface **pOutSurf; // esi@3 | |
4034 struct _DDSURFACEDESC *v4; // edx@3 | |
4035 HRESULT v5; // eax@5 | |
4036 int v6; // [sp-8h] [bp-8Ch]@3 | |
4037 unsigned int v7; // [sp-4h] [bp-88h]@3 | |
4038 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3 | |
4039 | |
4040 v1 = this; | |
1802 | 4041 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4042 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4043 { |
4044 memset(&a2, 0, 0x7Cu); | |
4045 pDD = (IDirectDraw *)v1->pDirectDraw4; | |
4046 a2.dwSize = 124; | |
4047 a2.dwFlags = 1; | |
4048 v7 = 0; | |
4049 a2.ddsCaps.dwCaps = 512; | |
4050 v6 = 2357; | |
4051 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer4; | |
4052 v4 = (struct _DDSURFACEDESC *)&a2; | |
4053 } | |
4054 else | |
4055 { | |
4056 memset(&a2.lPitch, 0, 0x6Cu); // DDSURFACEDESC here | |
4057 pDD = (IDirectDraw *)v1->pDirectDraw2; | |
4058 a2.lPitch = 108; | |
4059 a2.dwBackBufferCount = 1; | |
4060 v7 = 0; | |
4061 a2.dwTextureStage = 512; | |
4062 v6 = 2346; | |
4063 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer2; | |
4064 v4 = (struct _DDSURFACEDESC *)&a2.lPitch; | |
4065 } | |
4066 ErrD3D(pDD->CreateSurface(v4, pOutSurf, 0)); | |
4067 } | |
4068 | |
4069 //----- (004A12CD) -------------------------------------------------------- | |
4070 void Render::CreateBackBuffer() | |
4071 { | |
4072 Render *v1; // esi@1 | |
4073 IDirectDraw *v2; // eax@3 | |
4074 IDirectDrawSurface **ppBackBuffer; // esi@3 | |
4075 struct _DDSURFACEDESC *v4; // edx@3 | |
4076 HRESULT v5; // eax@5 | |
4077 int v6; // [sp-8h] [bp-8Ch]@3 | |
4078 unsigned int v7; // [sp-4h] [bp-88h]@3 | |
4079 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3 | |
4080 | |
4081 v1 = this; | |
1802 | 4082 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4083 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4084 { |
4085 memset(&a2, 0, 0x7Cu); | |
4086 v2 = (IDirectDraw *)v1->pDirectDraw4; | |
4087 a2.dwSize = 124; | |
4088 a2.dwFlags = 7; | |
4089 v7 = 0; | |
4090 a2.ddsCaps.dwCaps = 2112; | |
4091 a2.dwWidth = 640; | |
4092 a2.dwHeight = 480; | |
4093 v6 = 2387; | |
4094 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4; | |
4095 v4 = (struct _DDSURFACEDESC *)&a2; | |
4096 } | |
4097 else | |
4098 { | |
4099 memset(&a2.lPitch, 0, 0x6Cu); | |
4100 v2 = (IDirectDraw *)v1->pDirectDraw2; | |
4101 a2.lPitch = 108; | |
4102 a2.dwBackBufferCount = 7; | |
4103 v7 = 0; | |
4104 a2.dwTextureStage = 2112; | |
4105 a2.dwAlphaBitDepth = 640; | |
4106 a2.dwMipMapCount = 480; | |
4107 v6 = 2374; | |
4108 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2; | |
4109 v4 = (struct _DDSURFACEDESC *)&a2.lPitch; // //DDSURFACEDESC here fo ddraw2 | |
4110 } | |
4111 ErrD3D(v2->CreateSurface(v4, ppBackBuffer, 0)); | |
4112 } | |
4113 | |
4114 //----- (004A139A) -------------------------------------------------------- | |
4115 void Render::CreateDirectDrawPrimarySurface() | |
4116 { | |
4117 Render *v1; // esi@1 | |
4118 int v2; // ebx@3 | |
4119 IDirectDraw2 *v3; // eax@3 | |
4120 HRESULT v4; // eax@3 | |
4121 IDirectDrawSurface *pFrontBuffer; // eax@3 | |
4122 DDSCAPS2 *v6; // edx@3 | |
4123 IDirectDraw4 *v7; // eax@4 | |
4124 HRESULT v8; // eax@4 | |
4125 int v9; // ST14_4@5 | |
4126 IDirectDrawSurface *v10; // ST10_4@5 | |
4127 HRESULT v11; // eax@5 | |
4128 IDirectDrawSurface **ppBackBuffer; // [sp-4h] [bp-A4h]@3 | |
4129 const char *v13; // [sp+0h] [bp-A0h]@0 | |
4130 int v14; // [sp+4h] [bp-9Ch]@0 | |
4131 unsigned int v15; // [sp+8h] [bp-98h]@0 | |
4132 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-94h]@3 | |
4133 DDSCAPS2 v17; // [sp+88h] [bp-18h]@4 | |
4134 int a4; // [sp+98h] [bp-8h]@3 | |
4135 | |
4136 v1 = this; | |
1802 | 4137 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4138 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4139 { |
4140 v2 = 0; | |
4141 this->field_4004C = 1; | |
4142 memset(&ddsd2, 0, 0x7Cu); | |
4143 v7 = v1->pDirectDraw4; | |
4144 ddsd2.dwBackBufferCount = 1; | |
4145 ddsd2.dwSize = 0x7Cu; | |
4146 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT; | |
4147 ddsd2.ddsCaps.dwCaps = DDSCAPS_COMPLEX | DDSCAPS_FLIP | DDSCAPS_3DDEVICE | DDSCAPS_PRIMARYSURFACE; | |
4148 ErrD3D(v7->CreateSurface( | |
4149 &ddsd2, | |
4150 &pFrontBuffer4, | |
4151 0)); | |
4152 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer4; | |
4153 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4; | |
4154 } | |
4155 else | |
4156 { | |
4157 v2 = 0; | |
4158 this->field_4004C = 1; | |
4159 | |
4160 DDSURFACEDESC ddsd; | |
4161 memset(&ddsd, 0, sizeof(DDSURFACEDESC)); | |
4162 | |
4163 ddsd.lpSurface = (LPVOID)1; | |
4164 ddsd.lPitch = 108; | |
4165 ddsd.dwBackBufferCount = 33; | |
4166 ddsd.ddsCaps.dwCaps = 8728; | |
4167 ErrD3D(pDirectDraw2->CreateSurface( | |
4168 &ddsd, | |
4169 (IDirectDrawSurface **)&pFrontBuffer2, | |
4170 0)); | |
4171 | |
4172 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer2; | |
4173 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2; | |
4174 } | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
4175 __debugbreak(); // warning C4700: uninitialized local variable 'v6' used |
0 | 4176 v9 = (int)v6; |
4177 v10 = pFrontBuffer; // BUG | |
4178 | |
4179 v17.dwCaps = 4; | |
4180 ErrD3D(pFrontBuffer->GetAttachedSurface((DDSCAPS *)&v17, ppBackBuffer));// hr = this->pFrontBuffer->GetAttachedSurface(&ddsCaps2, ppBackBuffer); | |
4181 //CheckHRESULT(&thisa, v11, (const char *)v10, v9, (unsigned int)ppBackBuffer); | |
4182 v1->field_40030 = v2; | |
4183 v1->field_18_locked_pitch = v2; | |
4184 } | |
4185 | |
4186 //----- (004A14F4) -------------------------------------------------------- | |
4187 void Render::CreateClipper(HWND a2) | |
4188 { | |
1802 | 4189 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4190 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4191 { |
4192 ErrD3D(pDirectDraw4->CreateClipper(0, &pDDrawClipper, 0)); | |
4193 ErrD3D(pDDrawClipper->SetHWnd(0, a2)); | |
4194 ErrD3D(pFrontBuffer4->SetClipper(pDDrawClipper)); | |
4195 } | |
4196 else | |
4197 { | |
4198 ErrD3D(pDirectDraw2->CreateClipper(0, &pDDrawClipper, 0)); | |
4199 ErrD3D(pDDrawClipper->SetHWnd(0, a2)); | |
4200 } | |
4201 } | |
4202 | |
4203 //----- (004A15D8) -------------------------------------------------------- | |
4204 void Render::GetTargetPixelFormat(DDPIXELFORMAT *pOut) | |
4205 { | |
4206 IDirectDrawSurface *v2; // eax@3 | |
4207 | |
1802 | 4208 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4209 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4210 v2 = (IDirectDrawSurface *)this->pFrontBuffer4; |
4211 else | |
4212 v2 = (IDirectDrawSurface *)this->pFrontBuffer2; | |
4213 v2->GetPixelFormat(pOut); | |
4214 } | |
4215 | |
4216 //----- (004A1605) -------------------------------------------------------- | |
4217 void Render::LockRenderSurface(void **pOutSurfacePtr, unsigned int *pOutPixelsPerRow) | |
4218 { | |
4219 Render *v3; // esi@1 | |
4220 signed int v4; // eax@3 | |
4221 | |
4222 v3 = this; | |
1802 | 4223 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4224 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4225 { |
4226 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3 | |
4227 memset(&pDesc, 0, 0x7Cu); | |
4228 pDesc.dwSize = 124; | |
168 | 4229 LockSurface_DDraw4(v3->pBackBuffer4, &pDesc, DDLOCK_WAIT); |
0 | 4230 *pOutSurfacePtr = pDesc.lpSurface; |
4231 v4 = pDesc.lPitch; | |
4232 } | |
4233 else | |
4234 { | |
4235 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3 | |
4236 memset(&pDesc.lPitch, 0, 0x6Cu); | |
4237 pDesc.lPitch = 108; | |
4238 LockSurface_DDraw2(v3->pBackBuffer2, &pDesc, 1u); | |
4239 *pOutSurfacePtr = (void *)pDesc.lpSurface; | |
4240 v4 = pDesc.dwReserved; | |
4241 } | |
4242 *pOutPixelsPerRow = v4 >> 1; | |
4243 } | |
4244 | |
4245 //----- (004A16E1) -------------------------------------------------------- | |
4246 void Render::UnlockBackBuffer() | |
4247 { | |
1802 | 4248 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4249 pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4250 ErrD3D(pBackBuffer4->Unlock(0)); |
4251 else | |
4252 ErrD3D(pBackBuffer2->Unlock(0)); | |
4253 } | |
4254 | |
4255 //----- (004A172E) -------------------------------------------------------- | |
4256 void Render::LockFrontBuffer(void **pOutSurface, unsigned int *pOutPixelsPerRow) | |
4257 { | |
4258 Render *v3; // esi@1 | |
4259 signed int v4; // eax@3 | |
4260 | |
4261 v3 = this; | |
4262 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4263 { | |
4264 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3 | |
4265 memset(&pDesc, 0, 0x7Cu); | |
4266 pDesc.dwSize = 124; | |
168 | 4267 LockSurface_DDraw4(v3->pFrontBuffer4, &pDesc, DDLOCK_WAIT); |
0 | 4268 *pOutSurface = pDesc.lpSurface; |
4269 v4 = pDesc.lPitch; | |
4270 } | |
4271 else | |
4272 { | |
4273 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3 | |
4274 memset(&pDesc.lPitch, 0, 0x6Cu); | |
4275 pDesc.lPitch = 108; | |
4276 LockSurface_DDraw2(v3->pFrontBuffer2, &pDesc, 1u); | |
4277 *pOutSurface = (void *)pDesc.lpSurface; | |
4278 v4 = pDesc.dwReserved; | |
4279 } | |
4280 *pOutPixelsPerRow = v4 >> 1; | |
4281 } | |
4282 | |
4283 //----- (004A17C7) -------------------------------------------------------- | |
4284 void Render::UnlockFrontBuffer() | |
4285 { | |
4286 IDirectDrawSurface *pFront; // eax@3 | |
4287 HRESULT v2; // eax@5 | |
4288 signed int v3; // [sp-8h] [bp-Ch]@3 | |
4289 int v4; // [sp-4h] [bp-8h]@3 | |
4290 | |
1980 | 4291 Render* a5 = this; |
0 | 4292 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) |
4293 { | |
4294 pFront = (IDirectDrawSurface *)a5->pFrontBuffer4; | |
4295 v4 = 0; | |
4296 v3 = 2615; | |
4297 } | |
4298 else | |
4299 { | |
4300 pFront = (IDirectDrawSurface *)a5->pFrontBuffer2; | |
4301 v4 = 0; | |
4302 v3 = 2611; | |
4303 } | |
4304 ErrD3D(pFront->Unlock(0)); | |
4305 } | |
4306 | |
4307 //----- (004A1814) -------------------------------------------------------- | |
4308 void Render::RestoreFrontBuffer() | |
4309 { | |
4310 IDirectDrawSurface **v1; // esi@2 | |
4311 | |
4312 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT | |
4313 || (v1 = (IDirectDrawSurface **)&this->pFrontBuffer2, pVersion->pVersionInfo.dwMajorVersion >= 5u) ) | |
4314 v1 = (IDirectDrawSurface **)&this->pFrontBuffer4; | |
4315 if ( (*v1)->IsLost() == DDERR_SURFACELOST ) | |
4316 (*v1)->Restore(); | |
4317 } | |
4318 | |
4319 //----- (004A184C) -------------------------------------------------------- | |
4320 HRESULT Render::_4A184C() | |
4321 { | |
4322 IDirectDrawSurface **pBack; // esi@2 | |
4323 HRESULT result; // eax@4 | |
4324 | |
4325 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT | |
4326 || (pBack = (IDirectDrawSurface **)&this->pBackBuffer2, pVersion->pVersionInfo.dwMajorVersion != 4) ) | |
4327 pBack = (IDirectDrawSurface **)&this->pBackBuffer4; | |
4328 result = (*pBack)->IsLost(); | |
4329 if ( result == DDERR_SURFACELOST ) | |
4330 result = (*pBack)->Restore(); | |
4331 return result; | |
4332 } | |
4333 | |
4334 //----- (004A1884) -------------------------------------------------------- | |
4335 void Render::PresentRect(RECT *a2, RECT *a3) | |
4336 { | |
4337 IDirectDrawSurface *pFront; // eax@3 | |
4338 HRESULT v4; // eax@5 | |
4339 IDirectDrawSurface *pBack; // [sp-1Ch] [bp-1Ch]@3 | |
4340 struct tagRECT *v6; // [sp-18h] [bp-18h]@3 | |
4341 DWORD v7; // [sp-14h] [bp-14h]@3 | |
4342 DDBLTFX *v8; // [sp-10h] [bp-10h]@3 | |
4343 const char *v9; // [sp-Ch] [bp-Ch]@3 | |
4344 int v10; // [sp-8h] [bp-8h]@3 | |
4345 unsigned int v11; // [sp-4h] [bp-4h]@3 | |
4346 | |
4347 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4348 { | |
4349 v11 = 0; | |
4350 pFront = (IDirectDrawSurface *)this->pFrontBuffer4; | |
4351 v10 = 2657; | |
4352 v9 = "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp"; | |
4353 v8 = 0; | |
4354 v7 = DDBLT_WAIT; | |
4355 v6 = a3; | |
4356 pBack = (IDirectDrawSurface *)this->pBackBuffer4; | |
4357 } | |
4358 else | |
4359 { | |
4360 v11 = 0; | |
4361 pFront = (IDirectDrawSurface *)this->pFrontBuffer2; | |
4362 v10 = 2653; | |
4363 v9 = "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp"; | |
4364 v8 = 0; | |
4365 v7 = DDBLT_WAIT; | |
4366 v6 = a3; | |
4367 pBack = (IDirectDrawSurface *)this->pBackBuffer2; | |
4368 } | |
4369 ErrD3D(pFront->Blt(a2, pBack, v6, v7, v8)); | |
4370 } | |
4371 | |
4372 //----- (004A18F5) -------------------------------------------------------- | |
4373 void Render::BltToFront(RECT *pDstRect, IDirectDrawSurface *pSrcSurface, RECT *pSrcRect, unsigned int uBltFlags) | |
4374 { | |
4375 IDirectDrawSurface *pFront; // eax@3 | |
4376 HRESULT v6; // eax@5 | |
4377 int v7; // [sp-8h] [bp-8h]@3 | |
4378 unsigned int v8; // [sp-4h] [bp-4h]@3 | |
4379 | |
4380 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion >= 5u ) | |
4381 ErrD3D(pFrontBuffer4->Blt(pDstRect, (IDirectDrawSurface4 *)pSrcSurface, pSrcRect, uBltFlags, nullptr)); | |
4382 else | |
4383 ErrD3D(pFrontBuffer2->Blt(pDstRect, (IDirectDrawSurface2 *)pSrcSurface, pSrcRect, uBltFlags, nullptr)); | |
4384 } | |
4385 | |
4386 //----- (004A194A) -------------------------------------------------------- | |
4387 void Render::BltBackToFontFast(int a2, int a3, RECT *a4) | |
4388 { | |
4389 IDirectDrawSurface *pFront; // eax@3 | |
4390 IDirectDrawSurface *pBack; // [sp-Ch] [bp-Ch]@3 | |
4391 | |
4392 if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
4393 { | |
4394 pFront = (IDirectDrawSurface *)this->pFrontBuffer4; | |
4395 pBack = (IDirectDrawSurface *)this->pBackBuffer4; | |
4396 } | |
4397 else | |
4398 { | |
4399 pFront = (IDirectDrawSurface *)this->pFrontBuffer2; | |
4400 pBack = (IDirectDrawSurface *)this->pBackBuffer2; | |
4401 } | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4402 pFront->BltFast(0, 0, pBack, a4, DDBLTFAST_WAIT); |
0 | 4403 } |
4404 | |
4405 //----- (004A1B22) -------------------------------------------------------- | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4406 unsigned int Render::Billboard_ProbablyAddToListAndSortByZOrder(float z) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4407 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4408 //unsigned int v2; // ebx@1 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4409 //double v4; // st7@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4410 //unsigned int v5; // esi@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4411 //int v6; // ecx@5 |
0 | 4412 unsigned int v7; // edx@6 |
4413 char *v8; // ecx@12 | |
4414 void *v9; // edi@16 | |
4415 unsigned int v10; // eax@16 | |
4416 void *v11; // edi@21 | |
4417 unsigned int v12; // eax@21 | |
4418 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4419 //v2 = uNumBillboardsToDraw; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4420 if (uNumBillboardsToDraw >= 999 ) |
0 | 4421 return 0; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4422 if (!uNumBillboardsToDraw) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4423 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4424 uNumBillboardsToDraw = 1; |
0 | 4425 return 0; |
4426 } | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4427 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4428 //v4 = *(float *)&a1; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4429 //v5 = pRenderer->uNumBillboardsToDraw; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4430 //v6 = 0; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4431 for (int left = 0, right = uNumBillboardsToDraw; left < right; ) // binsearch |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4432 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4433 v7 = left + (right - left) / 2; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4434 if (z <= pRenderer->pBillboardRenderListD3D[v7].z_order) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4435 right = v7; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4436 else |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4437 left = v7 + 1; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4438 } |
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 v8 = (char *)&pRenderer->pBillboardRenderListD3D[v7].z_order; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4441 if (z > *(float *)v8 ) |
0 | 4442 { |
4443 if ( v7 == pRenderer->uNumBillboardsToDraw - 1 ) | |
4444 { | |
4445 v7 = pRenderer->uNumBillboardsToDraw; | |
4446 } | |
4447 else | |
4448 { | |
4449 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 ) | |
4450 { | |
4451 v9 = &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw]; | |
4452 v10 = pRenderer->uNumBillboardsToDraw - v7; | |
4453 do | |
4454 { | |
4455 memcpy(v9, (char *)v9 - 156, 0x9Cu); | |
4456 v9 = (char *)v9 - 156; | |
4457 --v10; | |
4458 } | |
4459 while ( v10 ); | |
4460 } | |
4461 ++v7; | |
4462 } | |
717 | 4463 //LABEL_23: |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4464 uNumBillboardsToDraw++; |
0 | 4465 return v7; |
4466 } | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4467 if (z <= *(float *)v8 ) |
0 | 4468 { |
4469 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 ) | |
4470 { | |
4471 v11 = &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw]; | |
4472 v12 = pRenderer->uNumBillboardsToDraw - v7; | |
4473 do | |
4474 { | |
4475 memcpy(v11, (char *)v11 - 156, 0x9Cu); | |
4476 v11 = (char *)v11 - 156; | |
4477 --v12; | |
4478 } | |
4479 while ( v12 ); | |
4480 } | |
717 | 4481 //goto LABEL_23; |
4482 uNumBillboardsToDraw++; | |
4483 return v7; | |
0 | 4484 } |
4485 return v7; | |
4486 } | |
4487 | |
4488 //----- (004A1E9D) -------------------------------------------------------- | |
4489 unsigned int Render::GetBillboardDrawListSize() | |
4490 { | |
4491 return pRenderer->uNumBillboardsToDraw; | |
4492 } | |
4493 | |
4494 //----- (004A1EA3) -------------------------------------------------------- | |
4495 unsigned int Render::GetParentBillboardID(unsigned int uBillboardID) | |
4496 { | |
2002 | 4497 return pRenderer->pBillboardRenderListD3D[uBillboardID].sParentBillboardID; |
0 | 4498 } |
4499 | |
4500 //----- (004A1EB6) -------------------------------------------------------- | |
4501 void Render::BeginSceneD3D() | |
4502 { | |
4503 if (!uNumD3DSceneBegins++) | |
4504 { | |
4505 if (pRenderD3D) | |
4506 { | |
4507 pRenderD3D->ClearTarget(true, 0x00F08020, true, 1.0); | |
4508 pRenderer->uNumBillboardsToDraw = 0; | |
4509 pRenderD3D->pDevice->BeginScene(); | |
1390 | 4510 |
0 | 4511 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) |
4512 uFogColor = GetLevelFogColor(); | |
4513 else | |
4514 uFogColor = 0; | |
4515 | |
4516 if ( uFogColor & 0xFF000000 ) | |
4517 { | |
4518 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 1); | |
4519 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, uFogColor & 0xFFFFFF); | |
4520 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0); | |
4521 bUsingSpecular = true; | |
4522 } | |
4523 else | |
4524 { | |
4525 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 0); | |
4526 bUsingSpecular = 0; | |
4527 } | |
4528 } | |
4529 else | |
4530 { | |
4531 LockRenderSurface((void **)&pTargetSurface, &uTargetSurfacePitch); | |
4532 if (pTargetSurface) | |
4533 field_18_locked_pitch = uTargetSurfacePitch; | |
4534 else | |
4535 --uNumD3DSceneBegins; | |
4536 } | |
4537 } | |
4538 } | |
4539 | |
4540 //----- (004A1FE1) -------------------------------------------------------- | |
4541 void Render::DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene() | |
4542 { | |
4543 --uNumD3DSceneBegins; | |
4544 if (uNumD3DSceneBegins) | |
4545 return; | |
4546 | |
4547 if (pRenderD3D) | |
4548 { | |
4549 pGame->draw_debug_outlines(); | |
161 | 4550 DoRenderBillboards_D3D(); |
0 | 4551 pGame->pStru6Instance->RenderSpecialEffects(); |
4552 pRenderD3D->pDevice->EndScene(); | |
4553 } | |
4554 else | |
4555 pGame->pStru6Instance->RenderSpecialEffects(); | |
4556 } | |
4557 | |
4558 //----- (004A2031) -------------------------------------------------------- | |
349 | 4559 unsigned int Render::GetActorTintColor(float a2, int tint, int a4, int a5, RenderBillboard *a6) |
4560 { | |
1117
ad89d1905b48
* stru6_stru1_indoor_sw_billboard::sub_47802A() cleaned, fireball working
zipi
parents:
1113
diff
changeset
|
4561 // __debugbreak(); // should not fire outside decal builder |
349 | 4562 return ::GetActorTintColor(tint, a4, a2, a5, a6); |
0 | 4563 } |
4564 | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
4565 /*void Render::DrawTerrainPolygon_new(Polygon *a3, IDirect3DTexture2 *pTexture)//new function |
86 | 4566 { |
4567 int v5; // ebx@1 | |
4568 int v6; // edi@1 | |
4569 int v8; // eax@7 | |
4570 float v9; // eax@12 | |
4571 float *v10; // esi@12 | |
4572 float v11; // ecx@14 | |
4573 double v12; // st7@14 | |
4574 double v13; // st7@14 | |
4575 double v14; // st7@14 | |
4576 signed int v15; // eax@14 | |
4577 int v16; // eax@15 | |
4578 float v17; // ST48_4@15 | |
4579 char v18; // zf@17 | |
4580 int v19; // eax@18 | |
4581 int v20; // eax@18 | |
4582 int v21; // edx@20 | |
4583 signed int v22; // ecx@20 | |
4584 int v23; // eax@20 | |
4585 const char *v24; // ST4C_4@20 | |
4586 unsigned int v25; // ST50_4@20 | |
4587 int v26; // ST54_4@20 | |
4588 int v27; // eax@20 | |
4589 _UNKNOWN *v28; // eax@21 | |
4590 int v29; // ecx@23 | |
4591 int v30; // eax@23 | |
4592 int v31; // eax@23 | |
4593 int v32; // eax@24 | |
4594 int v33; // eax@25 | |
4595 int v34; // eax@25 | |
4596 int v35; // eax@25 | |
4597 int v36; // eax@25 | |
4598 signed int v37; // ecx@26 | |
4599 int v38; // eax@26 | |
4600 _UNKNOWN *v39; // eax@27 | |
4601 int v40; // edx@28 | |
4602 int v41; // eax@29 | |
4603 int v42; // eax@29 | |
4604 int v43; // eax@29 | |
4605 int v44; // eax@29 | |
4606 unsigned int v46; // eax@29 | |
4607 int v47; // eax@30 | |
4608 int v48; // eax@30 | |
4609 int v49; // eax@30 | |
4610 double v52; // st6@35 | |
4611 const char *v55; // [sp+4Ch] [bp-1Ch]@20 | |
4612 int v57; // [sp+5Ch] [bp-Ch]@3 | |
4613 signed int v59; // [sp+60h] [bp-8h]@12 | |
4614 int v61; // [sp+64h] [bp-4h]@4 | |
4615 int i; | |
4616 | |
4617 v6 = (int)this; | |
4618 v5 = 0; | |
4619 if (!this->uNumD3DSceneBegins) | |
4620 return; | |
4621 | |
4622 | |
4623 | |
4624 | |
186 | 4625 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP); |
86 | 4626 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE); |
4627 if (this->bUsingSpecular) | |
4628 { | |
186 | 4629 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE); |
4630 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE); | |
4631 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO); | |
86 | 4632 } |
4633 | |
4634 pVertices[0].pos.x = array_50AC10[0].vWorldViewProjX; | |
4635 pVertices[0].pos.y = array_50AC10[0].vWorldViewProjY; | |
1637 | 4636 pVertices[0].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[0].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4637 pVertices[0].rhw = 1.0 / (array_50AC10[0].vWorldViewPosition.x + 0.0000001000000011686097); |
4638 pVertices[0].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0); | |
4639 pVertices[0].specular = 0; | |
4640 pVertices[0].texcoord.x = array_50AC10[0].u; | |
4641 pVertices[0].texcoord.y = array_50AC10[0].v; | |
4642 | |
4643 pVertices[1].pos.x = array_50AC10[3].vWorldViewProjX; | |
4644 pVertices[1].pos.y = array_50AC10[3].vWorldViewProjY; | |
1637 | 4645 pVertices[1].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[3].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4646 pVertices[1].rhw = 1.0 / (array_50AC10[3].vWorldViewPosition.x + 0.0000001000000011686097); |
4647 pVertices[1].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[3].vWorldViewPosition.x, 0, 0); | |
4648 pVertices[1].specular = 0; | |
4649 pVertices[1].texcoord.x = array_50AC10[3].u; | |
4650 pVertices[1].texcoord.y = array_50AC10[3].v; | |
4651 | |
4652 pVertices[2].pos.x = array_50AC10[1].vWorldViewProjX; | |
4653 pVertices[2].pos.y = array_50AC10[1].vWorldViewProjY; | |
1637 | 4654 pVertices[2].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[1].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4655 pVertices[2].rhw = 1.0 / (array_50AC10[1].vWorldViewPosition.x + 0.0000001000000011686097); |
4656 pVertices[2].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[1].vWorldViewPosition.x, 0, 0); | |
4657 pVertices[2].specular = 0; | |
4658 pVertices[2].texcoord.x = array_50AC10[1].u; | |
4659 pVertices[2].texcoord.y = array_50AC10[1].v; | |
4660 | |
4661 memcpy(pVertices + 3, pVertices + 2, sizeof(RenderVertexD3D3)); | |
4662 memcpy(pVertices + 4, pVertices + 1, sizeof(RenderVertexD3D3)); | |
4663 | |
4664 pVertices[5].pos.x = array_50AC10[2].vWorldViewProjX; | |
4665 pVertices[5].pos.y = array_50AC10[2].vWorldViewProjY; | |
1637 | 4666 pVertices[5].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[2].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4667 pVertices[5].rhw = 1.0 / (array_50AC10[2].vWorldViewPosition.x + 0.0000001000000011686097); |
4668 pVertices[5].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[2].vWorldViewPosition.x, 0, 0); | |
4669 pVertices[5].specular = 0; | |
4670 pVertices[5].texcoord.x = array_50AC10[2].u; | |
4671 pVertices[5].texcoord.y = array_50AC10[2].v; | |
4672 | |
4673 | |
4674 this->pRenderD3D->pDevice->SetTexture(0, pTexture); | |
4675 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLELIST, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, pVertices, 6, D3DDP_DONOTLIGHT); | |
4676 | |
186 | 4677 }*/ |
4678 | |
0 | 4679 //----- (004A26BC) -------------------------------------------------------- |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
4680 void Render::DrawTerrainPolygon(unsigned int uNumVertices, struct Polygon *a4, IDirect3DTexture2 *a5, bool transparent, bool clampAtTextureBorders) |
186 | 4681 { |
4682 //RenderVertexSoft *pVertices; // esi@0 | |
4683 //int v7; // edi@1 | |
0 | 4684 unsigned int v8; // ebx@1 |
4685 LightmapBuilder *v9; // esi@3 | |
4686 unsigned int v10; // edx@3 | |
4687 int v11; // eax@5 | |
4688 int v12; // eax@11 | |
4689 char *v13; // esi@11 | |
4690 double v14; // st7@13 | |
4691 double v15; // st7@13 | |
4692 signed int v16; // eax@13 | |
4693 int v17; // ecx@13 | |
4694 double v18; // st7@13 | |
4695 float v19; // ST78_4@14 | |
4696 int v20; // eax@14 | |
4697 char v21; // zf@16 | |
4698 HRESULT v22; // eax@17 | |
4699 HRESULT v23; // eax@17 | |
4700 HRESULT v24; // eax@19 | |
4701 HRESULT v25; // eax@19 | |
4702 unsigned int v26; // ecx@19 | |
4703 char *v27; // eax@20 | |
4704 HRESULT v28; // eax@22 | |
4705 HRESULT v29; // eax@22 | |
4706 HRESULT v30; // eax@23 | |
4707 HRESULT v31; // eax@24 | |
4708 HRESULT v32; // eax@24 | |
4709 HRESULT v33; // eax@24 | |
4710 HRESULT v34; // eax@24 | |
4711 HRESULT v35; // eax@25 | |
4712 HRESULT v36; // eax@25 | |
4713 unsigned int v37; // ecx@25 | |
4714 char *v38; // eax@26 | |
4715 int v39; // edx@27 | |
4716 HRESULT v40; // eax@28 | |
4717 HRESULT v41; // eax@28 | |
4718 HRESULT v42; // eax@28 | |
4719 HRESULT v43; // eax@28 | |
4720 //IDirect3DDevice3Vtbl *v44; // ebx@28 | |
4721 unsigned int v45; // eax@28 | |
4722 HRESULT v46; // eax@29 | |
4723 HRESULT v47; // eax@29 | |
4724 HRESULT v48; // eax@29 | |
186 | 4725 //IDirect3DDevice3 *v49; // eax@35 |
0 | 4726 //IDirect3DDevice3Vtbl *v50; // ecx@35 |
4727 int v51; // eax@40 | |
4728 char *v52; // esi@40 | |
4729 double v53; // st7@42 | |
4730 double v54; // st7@42 | |
4731 signed int v55; // eax@42 | |
4732 int v56; // ecx@42 | |
4733 double v57; // st7@42 | |
4734 float v58; // ST7C_4@43 | |
4735 int v59; // eax@43 | |
186 | 4736 //signed int v60; // [sp+78h] [bp-14h]@31 |
4737 //RenderVertexSoft *v61; // [sp+7Ch] [bp-10h]@3 | |
0 | 4738 const char *v62; // [sp+80h] [bp-Ch]@0 |
4739 const char *v63; // [sp+80h] [bp-Ch]@19 | |
4740 int v64; // [sp+84h] [bp-8h]@0 | |
4741 LightmapBuilder *v65; // [sp+88h] [bp-4h]@3 | |
4742 unsigned int v66; // [sp+88h] [bp-4h]@40 | |
4743 unsigned int a6a; // [sp+A0h] [bp+14h]@11 | |
186 | 4744 int a7; |
4745 | |
4746 //v7 = (int)this; | |
0 | 4747 v8 = 0; |
186 | 4748 if (!this->uNumD3DSceneBegins) |
75 | 4749 return; |
4750 if ( uNumVertices < 3) | |
4751 return; | |
4752 | |
186 | 4753 //v61 = pVertices; |
4754 | |
75 | 4755 /* v9 = pGame->pLightmapBuilder; |
0 | 4756 v65 = v9; |
75 | 4757 v10 = v9->std__vector_000004_size;*/ |
1394 | 4758 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01) |
0 | 4759 { |
638 | 4760 v11 = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0); |
1394 | 4761 pGame->pLightmapBuilder->DrawLightmaps(/*v11, 0*/); |
0 | 4762 } |
4763 else | |
4764 { | |
186 | 4765 if (transparent || !pGame->pLightmapBuilder->std__vector_000004_size || |
75 | 4766 byte_4D864C && pGame->uFlags & 2 ) |
4767 { | |
186 | 4768 if (clampAtTextureBorders) |
4769 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP); | |
0 | 4770 else |
186 | 4771 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP); |
4772 | |
4773 if (transparent || this->bUsingSpecular) | |
4774 { | |
4775 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE); | |
4776 if (transparent) | |
0 | 4777 { |
186 | 4778 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA); |
4779 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA); | |
4780 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO); | |
4781 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE); | |
0 | 4782 } |
4783 else | |
4784 { | |
186 | 4785 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE); |
4786 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO); | |
0 | 4787 } |
186 | 4788 } |
1073 | 4789 |
4790 for (uint i = 0; i < uNumVertices; ++i) | |
4791 { | |
4792 | |
4793 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
4794 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 4795 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 4796 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
4797 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
4798 if ( this->bUsingSpecular ) | |
0 | 4799 { |
1073 | 4800 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 4801 } |
1073 | 4802 else |
4803 { | |
4804 d3d_vertex_buffer[i].specular = 0; | |
4805 } | |
4806 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
4807 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
4808 } | |
4809 | |
4810 this->pRenderD3D->pDevice->SetTexture(0, a5); | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4811 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, d3d_vertex_buffer, uNumVertices, 16); |
186 | 4812 if (transparent) |
4813 { | |
4814 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
4815 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
4816 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 4817 } |
4818 } | |
4819 else | |
4820 { | |
1073 | 4821 for (uint i = 0; i < uNumVertices; ++i) |
4822 { | |
4823 | |
4824 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
4825 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 4826 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 4827 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
4828 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
4829 if ( this->bUsingSpecular ) | |
0 | 4830 { |
1073 | 4831 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_related_stuff(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 4832 } |
1073 | 4833 else |
4834 { | |
4835 d3d_vertex_buffer[i].specular = 0; | |
4836 } | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
4837 __debugbreak(); // warning C4700: uninitialized local variable 'v20' used |
1073 | 4838 d3d_vertex_buffer[i].specular = v20; |
4839 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
4840 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
4841 } | |
186 | 4842 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); |
4843 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
4844 if (pRenderer->bUsingSpecular) | |
4845 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); | |
0 | 4846 |
4847 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0)); | |
186 | 4848 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
0 | 4849 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4850 d3d_vertex_buffer, |
0 | 4851 uNumVertices, |
4852 16)); | |
4853 //v63 = (const char *)v7->pRenderD3D->pDevice; | |
186 | 4854 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); |
0 | 4855 //(*(void (**)(void))(*(int *)v63 + 88))(); |
1394 | 4856 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/); |
1073 | 4857 for (uint i = 0; i < uNumVertices; ++i) |
4858 { | |
4859 d3d_vertex_buffer[i].diffuse = -1; | |
4860 } | |
0 | 4861 ErrD3D(pRenderD3D->pDevice->SetTexture(0, a5)); |
186 | 4862 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 4863 if ( !pRenderer->bUsingSpecular ) |
4864 { | |
186 | 4865 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
4866 } | |
4867 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
4868 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO)); | |
4869 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR)); | |
4870 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
0 | 4871 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4872 d3d_vertex_buffer, |
0 | 4873 uNumVertices, |
4874 16)); | |
4875 if ( pRenderer->bUsingSpecular ) | |
4876 { | |
186 | 4877 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
0 | 4878 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0)); |
1073 | 4879 for (uint i = 0; i < uNumVertices; ++i) |
4880 { | |
4881 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000; | |
4882 d3d_vertex_buffer[i].specular = 0; | |
4883 } | |
4884 | |
75 | 4885 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));//problem |
186 | 4886 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA)); |
4887 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA)); | |
4888 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
0 | 4889 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4890 d3d_vertex_buffer, |
0 | 4891 uNumVertices, |
4892 16)); | |
186 | 4893 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 4894 //v44 = pRenderer->pRenderD3D->pDevice; |
4895 v45 = GetLevelFogColor(); | |
4896 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, v45 & 0xFFFFFF)); | |
4897 v8 = 0; | |
4898 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
4899 } | |
186 | 4900 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
4901 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 4902 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v8)); |
4903 } | |
4904 } | |
186 | 4905 |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
4906 //if (pIndoorCamera->flags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES || pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES) |
1642 | 4907 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
|
4908 pGame->pIndoorCameraD3D->debug_outline_d3d(d3d_vertex_buffer, uNumVertices, 0x00FFFFFF, 0.0); |
0 | 4909 } |
4910 // 4A26BC: could not find valid save-restore pair for esi | |
4911 // 4D864C: using guessed type char byte_4D864C; | |
4912 | |
4913 //----- (004A2DA3) -------------------------------------------------------- | |
1923 | 4914 void Render::DrawOutdoorSkyPolygon(unsigned int uNumVertices, struct Polygon *pSkyPolygon, IDirect3DTexture2 *pTexture) |
852 | 4915 { |
67 | 4916 int v7; // eax@7 |
4917 | |
4918 if ( !this->uNumD3DSceneBegins ) | |
4919 return; | |
4920 if ( uNumVertices >= 3 ) | |
4921 { | |
186 | 4922 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP); |
67 | 4923 if ( this->bUsingSpecular ) |
4924 { | |
186 | 4925 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE); |
4926 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE); | |
4927 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO); | |
67 | 4928 } |
1427 | 4929 for ( uint i = 0; i < uNumVertices; ++i ) |
67 | 4930 { |
4931 pVertices[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
4932 pVertices[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
4933 pVertices[i].pos.z = 0.99989998; | |
168 | 4934 pVertices[i].rhw = array_50AC10[i]._rhw; |
67 | 4935 |
840 | 4936 pVertices[i].diffuse = ::GetActorTintColor(31, 0, array_50AC10[i].vWorldViewPosition.x, 1, 0); |
67 | 4937 v7 = 0; |
4938 if (this->bUsingSpecular) | |
1427 | 4939 v7 = sub_47C3D7_get_fog_related_stuff(0, 1, array_50AC10[i].vWorldViewPosition.x); |
67 | 4940 pVertices[i].specular = v7; |
4941 pVertices[i].texcoord.x = array_50AC10[i].u; | |
4942 pVertices[i].texcoord.y = array_50AC10[i].v; | |
4943 } | |
4944 pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture); | |
4945 pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
840 | 4946 pVertices, uNumVertices, D3DDP_DONOTUPDATEEXTENTS | D3DDP_DONOTLIGHT); |
0 | 4947 } |
4948 } | |
4949 | |
4950 //----- (004A2ED5) -------------------------------------------------------- | |
1923 | 4951 void Render::DrawIndoorSkyPolygon(signed int uNumVertices, struct Polygon *pSkyPolygon, IDirect3DTexture2 *pTexture) |
0 | 4952 { |
4953 int v5; // eax@3 | |
4954 | |
4955 if ( this->uNumD3DSceneBegins ) | |
4956 { | |
1923 | 4957 if ( uNumVertices >= 3 ) |
0 | 4958 { |
186 | 4959 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
1923 | 4960 v5 = 31 - (pSkyPolygon->dimming_level & 0x1F); |
638 | 4961 if ( v5 < pOutdoor->max_terrain_dimming_level ) |
4962 v5 = pOutdoor->max_terrain_dimming_level; | |
1937 | 4963 for (uint i = 0; i < uNumVertices; ++i) |
4964 { | |
4965 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; | |
4966 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
1999 | 4967 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); |
1937 | 4968 d3d_vertex_buffer[i].rhw = array_507D30[i]._rhw; |
4969 d3d_vertex_buffer[i].diffuse = 8 * v5 | ((8 * v5 | (v5 << 11)) << 8); | |
4970 d3d_vertex_buffer[i].specular = 0; | |
4971 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u; | |
4972 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v; | |
4973 } | |
1923 | 4974 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture)); |
1936 | 4975 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
4976 d3d_vertex_buffer, uNumVertices, 28)); | |
0 | 4977 } |
4978 } | |
4979 } | |
4980 | |
1390 | 4981 //----- (00479A53) -------------------------------------------------------- |
1923 | 4982 void Render::DrawIndoorSky(unsigned int uNumVertices, unsigned int uFaceID) |
1390 | 4983 { |
4984 BLVFace *pFace; // esi@1 | |
4985 double v5; // st7@3 | |
4986 signed __int64 v6; // qax@3 | |
4987 int v12; // edx@7 | |
4988 int v13; // eax@7 | |
4989 void *v15; // ecx@9 | |
4990 int v17; // edi@9 | |
4991 double v18; // st7@9 | |
4992 signed int v19; // ebx@9 | |
4993 void *v20; // ecx@9 | |
4994 int v21; // ebx@11 | |
4995 int v22; // eax@14 | |
4996 signed __int64 v23; // qtt@16 | |
4997 double v24; // st7@16 | |
4998 unsigned __int8 v25; // sf@16 | |
4999 unsigned __int8 v26; // of@16 | |
5000 double v28; // st7@20 | |
5001 char *v29; // ebx@20 | |
5002 char *v30; // edx@20 | |
5003 unsigned __int8 v31; // c0@21 | |
5004 unsigned __int8 v32; // c3@21 | |
5005 double v33; // st6@23 | |
5006 char *v34; // esi@30 | |
5007 const void *v35; // ecx@31 | |
5008 int v36; // eax@31 | |
5009 const void *v37; // edi@31 | |
5010 signed __int64 v38; // qax@31 | |
5011 int v39; // ecx@31 | |
5012 int v40; // ebx@33 | |
5013 int v41; // eax@36 | |
5014 signed __int64 v42; // qtt@39 | |
5015 int v43; // eax@39 | |
5016 char v44; // zf@39 | |
5017 double v45; // st7@39 | |
5018 double v46; // st7@39 | |
5019 unsigned int v47; // edx@40 | |
5020 double v48; // st7@41 | |
5021 RenderVertexSoft *v49; // ebx@41 | |
5022 void *v50; // edi@43 | |
5023 double v51; // st7@46 | |
5024 RenderVertexSoft *v52; // edx@46 | |
5025 void *v53; // edi@48 | |
5026 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
|
5027 struct Polygon *v60; // [sp+0h] [bp-174h]@17 |
1390 | 5028 IDirect3DTexture2 *v61; // [sp+4h] [bp-170h]@17 |
1981 | 5029 struct Polygon pSkyPolygon; // [sp+14h] [bp-160h]@6 |
1390 | 5030 unsigned int v63; // [sp+120h] [bp-54h]@7 |
5031 unsigned int v65; // [sp+128h] [bp-4Ch]@1 | |
5032 unsigned int v66; // [sp+12Ch] [bp-48h]@7 | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5033 //float v67; // [sp+130h] [bp-44h]@7 |
1390 | 5034 __int64 v69; // [sp+13Ch] [bp-38h]@3 |
5035 int v70; // [sp+144h] [bp-30h]@3 | |
5036 int X; // [sp+148h] [bp-2Ch]@9 | |
5037 int v72; // [sp+14Ch] [bp-28h]@7 | |
5038 float v73; // [sp+150h] [bp-24h]@16 | |
5039 unsigned int v74; // [sp+154h] [bp-20h]@3 | |
1999 | 5040 unsigned int v74_; // [sp+154h] [bp-20h]@3 |
1390 | 5041 RenderVertexSoft *v75; // [sp+158h] [bp-1Ch]@3 |
5042 float v76; // [sp+15Ch] [bp-18h]@9 | |
5043 int v77; // [sp+160h] [bp-14h]@9 | |
5044 int v78; // [sp+164h] [bp-10h]@7 | |
5045 void *v79; // [sp+168h] [bp-Ch]@9 | |
5046 float v80; // [sp+16Ch] [bp-8h]@3 | |
5047 const void *v81; // [sp+170h] [bp-4h]@7 | |
5048 | |
5049 pFace = &pIndoor->pFaces[uFaceID]; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5050 //for floor and wall(for example Selesta)------------------- |
1644 | 5051 if (pFace->uPolygonType == POLYGON_InBetweenFloorAndWall || pFace->uPolygonType == POLYGON_Floor) |
5052 { | |
5053 int v69 = (GetTickCount() / 32) - pGame->pIndoorCameraD3D->vPartyPos.x; | |
5054 int v55 = (GetTickCount() / 32) + pGame->pIndoorCameraD3D->vPartyPos.y; | |
5055 for (uint i = 0; i < uNumVertices; ++i) | |
5056 { | |
5057 array_507D30[i].u = (v69 + array_507D30[i].u) * 0.25f; | |
5058 array_507D30[i].v = (v55 + array_507D30[i].v) * 0.25f; | |
5059 } | |
5060 pRenderer->DrawIndoorPolygon(uNumVertices, pFace, pBitmaps_LOD->pHardwareTextures[pFace->uBitmapID], pFace->GetTexture(), PID(OBJECT_BModel, uFaceID), -1, 0); | |
1390 | 5061 return; |
5062 } | |
1981 | 5063 //--------------------------------------- |
5064 v70 = (signed __int64)((double)(pBLVRenderParams->fov_rad_fixpoint * pGame->pIndoorCameraD3D->vPartyPos.z)//179 | |
1641 | 5065 / (((double)pBLVRenderParams->fov_rad_fixpoint + 16192.0) |
1390 | 5066 * 65536.0) |
1922 | 5067 + (double)pBLVRenderParams->uViewportCenterY); |
1981 | 5068 v5 = (double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064;//0 |
5069 v6 = (signed __int64)((double)pBLVRenderParams->uViewportCenterY//183 | |
1641 | 5070 - (double)pBLVRenderParams->fov_rad_fixpoint |
1644 | 5071 / ((cos(v5) * 16192.0 + 0.0000001) |
1390 | 5072 * 65535.0) |
1922 | 5073 * (sin(v5) * -16192.0 - (double)pGame->pIndoorCameraD3D->vPartyPos.z)); |
1644 | 5074 |
1999 | 5075 stru_8019C8._48653D_frustum_blv(65536, 0, 0, 0, 65536, 0); |
1981 | 5076 pSkyPolygon.Create_48607B(&stru_8019C8); |
5077 pSkyPolygon.uTileBitmapID = pFace->uBitmapID; | |
5078 | |
5079 pSkyPolygon.pTexture = pBitmaps_LOD->GetTexture(pSkyPolygon.uTileBitmapID); | |
5080 if ( !pSkyPolygon.pTexture ) | |
1390 | 5081 return; |
1644 | 5082 |
1981 | 5083 pSkyPolygon.dimming_level = 0; |
5084 pSkyPolygon.uNumVertices = uNumVertices; | |
5085 | |
5086 pSkyPolygon.v_18.x = -stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationX + 16); | |
5087 pSkyPolygon.v_18.y = 0; | |
5088 pSkyPolygon.v_18.z = -stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationX + 16); | |
5089 | |
1644 | 5090 memcpy(&array_507D30[uNumVertices], array_507D30, sizeof(array_507D30[uNumVertices])); |
1981 | 5091 pSkyPolygon.field_24 = 0x2000000; |
1644 | 5092 |
5093 extern float _calc_fov(int viewport_width, int angle_degree); | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5094 //v64 = (double)(signed int)(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX) * 0.5; |
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5095 //v72 = 65536 / (signed int)(signed __int64)(v64 / tan(0.6457717418670654) + 0.5); |
1644 | 5096 v72 = 65536.0f / _calc_fov(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX, 74); |
1981 | 5097 v12 = pSkyPolygon.pTexture->uWidthMinus1; |
5098 v13 = pSkyPolygon.pTexture->uHeightMinus1; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5099 //v67 = 1.0 / (double)pSkyPolygon.pTexture->uTextureWidth; |
1390 | 5100 v63 = 224 * pMiscTimer->uTotalGameTimeElapsed & v13; |
5101 v66 = 224 * pMiscTimer->uTotalGameTimeElapsed & v12; | |
5102 v78 = 0; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5103 //v81 = 0; |
1981 | 5104 float v68 = 1.0 / (double)pSkyPolygon.pTexture->uTextureHeight; |
5105 if ( (signed int)pSkyPolygon.uNumVertices <= 0 ) | |
5106 return; | |
1644 | 5107 |
5108 int _507D30_idx = 0; | |
1999 | 5109 for ( _507D30_idx; _507D30_idx < pSkyPolygon.uNumVertices; _507D30_idx++ ) |
1390 | 5110 { |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5111 //v15 = (void *)(v72 * (v70 - (int)array_507D30[_507D30_idx].vWorldViewProjY)); |
1981 | 5112 v77 = (unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_west_east * (signed __int64)(v72 * (v70 - array_507D30[_507D30_idx].vWorldViewProjY))) >> 16; |
5113 v74 = v77 + pSkyPolygon.ptr_38->angle_from_north; | |
5114 | |
5115 v77 = (unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_north_south * (signed __int64)(v72 * (v70 - array_507D30[_507D30_idx].vWorldViewProjY))) >> 16; | |
1999 | 5116 v74_ = v77 + pSkyPolygon.ptr_38->angle_from_east; |
1981 | 5117 |
1997 | 5118 v79 = (void *)(((unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)v72 * (v70 - (int)array_507D30[_507D30_idx].vWorldViewProjY))) >> 16); |
1644 | 5119 v17 = v72 * (pBLVRenderParams->uViewportCenterX - (int)array_507D30[_507D30_idx].vWorldViewProjX); |
5120 v18 = array_507D30[_507D30_idx].vWorldViewProjY - 1.0; | |
1981 | 5121 v19 = -pSkyPolygon.field_24; |
5122 v77 = -pSkyPolygon.field_24; | |
5123 X = (int)((char *)v79 + pSkyPolygon.v_18.x); | |
1390 | 5124 LODWORD(v76) = (signed __int64)v18; |
5125 v20 = (void *)(v72 * (v70 - LODWORD(v76))); | |
5126 while ( 1 ) | |
5127 { | |
5128 v79 = v20; | |
5129 if ( !X ) | |
5130 goto LABEL_14; | |
5131 v21 = abs(v19 >> 14); | |
1999 | 5132 if ( v21 <= abs(X) )//0x800 <= 0x28652 |
1390 | 5133 break; |
5134 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y ) | |
5135 break; | |
5136 v19 = v77; | |
5137 v20 = v79; | |
5138 LABEL_14: | |
1981 | 5139 v79 = (void *)((unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)(signed int)v20) >> 16); |
5140 v22 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)(signed int)v20) >> 16; | |
1390 | 5141 --LODWORD(v76); |
5142 v20 = (char *)v20 + v72; | |
1981 | 5143 X = v22 + pSkyPolygon.v_18.x; |
1390 | 5144 v78 = 1; |
5145 } | |
5146 if ( !v78 ) | |
5147 { | |
5148 LODWORD(v23) = v77 << 16; | |
1981 | 5149 HIDWORD(v23) = v77 >> 16;//v23 = 0xfffffe0000000000 |
1997 | 5150 v79 = (void *)(v23 / X);//X = FFFF9014(-28652) |
1390 | 5151 v77 = v17; |
1999 | 5152 signed __int64 s = v74 + ((pSkyPolygon.ptr_38->angle_from_west * (signed __int64)v17) >> 16);// s = 0xFFFFFFFF FFFF3EE6 |
5153 LODWORD(v80) = v66 + ((signed int)((unsigned __int64)(SLODWORD(s) * (v23 / X)) >> 16) >> 4); | |
1981 | 5154 array_507D30[_507D30_idx].u = ((double)SLODWORD(v80) * 0.000015259022) * (1.0 / (double)pSkyPolygon.pTexture->uTextureWidth); |
5155 | |
1999 | 5156 signed __int64 s2 = (signed __int64)(v74_ + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_south * (signed __int64)v17) >> 16)); |
5157 LODWORD(v80) = v63 + ((signed int)((unsigned __int64)(SLODWORD(s2) * (v23 / X)) >> 16) >> 4); | |
1981 | 5158 array_507D30[_507D30_idx].v = ((double)SLODWORD(v80) * 0.000015259022) * v68; |
5159 | |
1999 | 5160 v77 = (unsigned __int64)(SLODWORD(s) * (v23 / X)) >> 16; |
5161 LODWORD(v73) = (unsigned __int64)(SLODWORD(s2) * (v23 / X)) >> 16; | |
1644 | 5162 array_507D30[_507D30_idx]._rhw = 65536.0 / (double)(signed int)v79; |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5163 |
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5164 //if ( (int)v81 >= pSkyPolygon.uNumVertices ) |
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5165 //{ |
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5166 // pRenderer->DrawIndoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, |
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5167 // pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); |
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5168 // return; |
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5169 //} |
1390 | 5170 continue; |
5171 } | |
5172 break; | |
5173 } | |
1999 | 5174 if ( _507D30_idx >= pSkyPolygon.uNumVertices ) |
5175 { | |
5176 pRenderer->DrawIndoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, | |
5177 pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); | |
5178 return; | |
5179 } | |
1390 | 5180 LODWORD(v73) = 0; |
5181 v80 = v76; | |
1981 | 5182 if ( (signed int)pSkyPolygon.uNumVertices > 0 ) |
1390 | 5183 { |
5184 v28 = (double)SLODWORD(v76); | |
5185 LODWORD(v76) = (int)(char *)array_50AC10 + 28; | |
1997 | 5186 uint i = 0; |
5187 for ( v78 = pSkyPolygon.uNumVertices; v78; --v78 ) | |
5188 { | |
1390 | 5189 ++LODWORD(v73); |
1997 | 5190 memcpy(&array_50AC10[i], &array_507D30[i], 0x30u); |
1390 | 5191 LODWORD(v76) += 48; |
1997 | 5192 if ( v28 < array_507D30[i].vWorldViewProjY | v28 == array_507D30[i].vWorldViewProjY |
5193 || v28 >= array_507D30[i + 1].vWorldViewProjY ) | |
5194 { | |
5195 if ( v28 >= array_507D30[i].vWorldViewProjY || v28 <= array_507D30[i + 1].vWorldViewProjY ) | |
5196 { | |
5197 i++; | |
5198 continue; | |
5199 } | |
5200 v33 = (array_507D30[i + 1].vWorldViewProjX - array_507D30[i].vWorldViewProjX) * v28 / (array_507D30[i + 1].vWorldViewProjY - array_507D30[i].vWorldViewProjY) | |
5201 + array_507D30[i + 1].vWorldViewProjX; | |
1390 | 5202 } |
5203 else | |
5204 { | |
1997 | 5205 v33 = (array_507D30[i].vWorldViewProjX - array_507D30[i + 1].vWorldViewProjX) * v28 / (array_507D30[i].vWorldViewProjY - array_507D30[i + 1].vWorldViewProjY) |
5206 + array_507D30[i].vWorldViewProjX; | |
5207 } | |
5208 array_50AC10[i + 1].vWorldViewProjX = v33; | |
1390 | 5209 ++LODWORD(v73); |
5210 *(unsigned int *)LODWORD(v76) = v28; | |
5211 LODWORD(v76) += 48; | |
1997 | 5212 i++; |
5213 } | |
1390 | 5214 } |
5215 if ( SLODWORD(v73) <= 0 ) | |
5216 goto LABEL_40; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5217 //v34 = (char *)&array_50AC10[0].vWorldViewProjY; |
1997 | 5218 uint j = 0; |
1390 | 5219 v65 = v77 >> 14; |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5220 //HIDWORD(v69) = LODWORD(v73); |
1997 | 5221 for ( int t = (int)LODWORD(v73); t > 1; t-- ) |
5222 { | |
5223 v35 = (const void *)(v72 * (v70 - (unsigned __int64)(signed __int64)array_50AC10[j].vWorldViewProjY)); | |
5224 | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5225 //v78 = pSkyPolygon.ptr_38->viewing_angle_from_west_east; |
1997 | 5226 v81 = (const void *)((unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_west_east * (signed __int64)(signed int)v35) >> 16); |
1981 | 5227 v36 = (int)((char *)v81 + pSkyPolygon.ptr_38->angle_from_north); |
1997 | 5228 |
1390 | 5229 v81 = v35; |
5230 v74 = v36; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5231 //v78 = pSkyPolygon.ptr_38->viewing_angle_from_north_south; |
1997 | 5232 v81 = (const void *)((unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_north_south * (signed __int64)(signed int)v35) >> 16); |
1390 | 5233 v78 = (int)v35; |
1981 | 5234 v75 = (RenderVertexSoft *)((char *)v81 + pSkyPolygon.ptr_38->angle_from_east); |
5235 v81 = (const void *)pSkyPolygon.v_18.z; | |
5236 v78 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)(signed int)v35) >> 16; | |
1390 | 5237 v37 = (const void *)(v72 |
1997 | 5238 * (pBLVRenderParams->uViewportCenterX - (unsigned __int64)(signed __int64)array_50AC10[j].vWorldViewProjX)); |
5239 v38 = (signed __int64)(array_50AC10[j].vWorldViewProjY - 1.0); | |
1390 | 5240 v81 = 0; |
5241 LODWORD(v76) = v38; | |
5242 v39 = v72 * (v70 - v38); | |
5243 while ( 1 ) | |
5244 { | |
5245 v78 = v39; | |
5246 if ( !X ) | |
5247 goto LABEL_36; | |
5248 v40 = abs(X); | |
5249 if ( abs((signed __int64)v65) <= v40 ) | |
5250 break; | |
5251 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y ) | |
5252 break; | |
5253 v39 = v78; | |
5254 LABEL_36: | |
1981 | 5255 v78 = pSkyPolygon.v_18.z; |
5256 v41 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)v39) >> 16; | |
1390 | 5257 --LODWORD(v76); |
5258 v39 += v72; | |
1981 | 5259 X = v41 + pSkyPolygon.v_18.x; |
1390 | 5260 v81 = (const void *)1; |
5261 } | |
5262 if ( v81 ) | |
5263 { | |
1981 | 5264 v79 = (void *)pSkyPolygon.v_18.z; |
1390 | 5265 v78 = 2 * LODWORD(v76); |
1981 | 5266 v81 = (const void *)((unsigned __int64)(pSkyPolygon.v_18.z |
1390 | 5267 * (signed __int64)(signed int)(signed __int64)(((double)v70 |
5268 - ((double)(2 * LODWORD(v76)) | |
1997 | 5269 - array_50AC10[j].vWorldViewProjY)) |
1390 | 5270 * (double)v72)) >> 16); |
1981 | 5271 X = (int)((char *)v81 + pSkyPolygon.v_18.x); |
1390 | 5272 } |
5273 LODWORD(v42) = v77 << 16; | |
5274 HIDWORD(v42) = v77 >> 16; | |
5275 v79 = (void *)(v42 / X); | |
5276 v81 = v37; | |
1997 | 5277 |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5278 //v78 = pSkyPolygon.ptr_38->angle_from_west; |
1997 | 5279 v81 = (const void *)((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_west * (signed __int64)(signed int)v37) >> 16); |
5280 v43 = v74 + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_west * (signed __int64)(signed int)v37) >> 16); | |
1390 | 5281 v74 = (unsigned int)v37; |
5282 LODWORD(v76) = v43; | |
1997 | 5283 |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5284 //v78 = pSkyPolygon.ptr_38->angle_from_south; |
1997 | 5285 v75 = (RenderVertexSoft *)((char *)v75 + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_south * (signed __int64)(signed int)v37) >> 16)); |
1390 | 5286 v74 = (unsigned __int64)(v43 * v42 / X) >> 16; |
5287 v81 = (const void *)((unsigned __int64)((signed int)v75 * v42 / X) >> 16); | |
1997 | 5288 |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5289 //v34 += 48; |
1390 | 5290 v78 = v66 + ((signed int)v74 >> 4); |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5291 //v44 = HIDWORD(v69)-- == 1; |
1390 | 5292 v45 = (double)v78 * 0.000015259022; |
5293 v78 = v63 + ((signed int)((unsigned __int64)((signed int)v75 * v42 / X) >> 16) >> 4); | |
1997 | 5294 array_50AC10[j].u = v45 * (1.0 / (double)pSkyPolygon.pTexture->uTextureWidth); |
5295 array_50AC10[j].v = (double)v78 * 0.000015259022 * v68; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5296 //v46 = (double)(signed int)v79; |
1997 | 5297 array_50AC10[j].vWorldViewPosition.x = 0.000015258789 * (double)(signed int)v79; |
5298 array_50AC10[j]._rhw = 65536.0 / (double)(signed int)v79; | |
5299 ++j; | |
5300 } | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5301 //while ( !v44 ); |
1390 | 5302 LABEL_40: |
1997 | 5303 uint i = 0; |
1390 | 5304 if ( SLODWORD(v73) > 0 ) |
5305 { | |
5306 v48 = (double)SLODWORD(v80); | |
1997 | 5307 for ( HIDWORD(v69) = LODWORD(v73); HIDWORD(v69); --HIDWORD(v69) ) |
5308 { | |
5309 if ( v48 >= array_50AC10[i].vWorldViewProjY ) | |
5310 { | |
5311 ++i; | |
5312 memcpy(&array_507D30[i], &array_50AC10[i], 0x30u); | |
5313 } | |
5314 } | |
5315 } | |
5316 pSkyPolygon.uNumVertices = i; | |
5317 pRenderer->DrawIndoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); | |
5318 int pNumVertices = 0; | |
1390 | 5319 if ( SLODWORD(v73) > 0 ) |
5320 { | |
5321 v51 = (double)SLODWORD(v80); | |
1997 | 5322 for ( v80 = v73; v80 != 0.0; --LODWORD(v80) ) |
5323 { | |
5324 if ( v51 <= array_50AC10[pNumVertices].vWorldViewProjY ) | |
5325 { | |
5326 ++pNumVertices; | |
5327 memcpy(&array_507D30[pNumVertices], &array_50AC10[pNumVertices], 0x30u); | |
5328 } | |
5329 } | |
5330 } | |
5331 pRenderer->DrawIndoorSkyPolygon(pNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); | |
1390 | 5332 } |
5333 | |
2016
f1fd2ed4e9ba
Обращённый набор изменений слияния: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5334 |
0 | 5335 //----- (004A2FC0) -------------------------------------------------------- |
5336 void Render::DrawIndoorPolygon(unsigned int uNumVertices, BLVFace *pFace, IDirect3DTexture2 *pHwTex, Texture *pTex, int uPackedID, unsigned int uColor, int a8) | |
5337 { | |
5338 //Render *v8; // edi@1 | |
5339 //unsigned int v9; // esi@3 | |
1072 | 5340 RenderVertexSoft *v12; // ecx@9 |
5341 RenderVertexD3D3 *v13; // eax@9 | |
0 | 5342 double v14; // st6@10 |
5343 int v15; // edx@10 | |
5344 Texture *v16; // edx@10 | |
5345 double v17; // st6@10 | |
5346 //char v18; // zf@10 | |
5347 Texture *v19; // edx@10 | |
595 | 5348 //Texture *v23; // edx@16 |
5349 //char *v24; // ecx@16 | |
5350 //char *v25; // eax@16 | |
5351 //double v26; // st6@17 | |
5352 //int v27; // esi@17 | |
5353 //double v28; // st6@17 | |
5354 //unsigned int v33; // ecx@18 | |
5355 //char *v34; // eax@19 | |
0 | 5356 //Texture *v45; // edx@23 |
5357 //char *v46; // ecx@23 | |
5358 //char *v47; // eax@23 | |
5359 //double v48; // st6@24 | |
5360 //int v49; // esi@24 | |
5361 //double v50; // st6@24 | |
5362 const char *v53; // [sp-Ch] [bp-20h]@21 | |
5363 //int v54; // [sp-8h] [bp-1Ch]@21 | |
5364 //unsigned int v55; // [sp-4h] [bp-18h]@21 | |
5365 const char *v56; // [sp+0h] [bp-14h]@0 | |
5366 int v57; // [sp+4h] [bp-10h]@0 | |
5367 unsigned int v58; // [sp+8h] [bp-Ch]@0 | |
5368 //LightmapBuilder *v59; // [sp+Ch] [bp-8h]@3 | |
5369 //int a3a; // [sp+10h] [bp-4h]@4 | |
5370 | |
5371 //v8 = this; | |
5372 if (!uNumD3DSceneBegins || uNumVertices < 3) | |
5373 return; | |
5374 | |
5375 //auto a3 = pFace; | |
5376 //auto a6 = uPackedID; | |
5377 //v59 = pGame->pLightmapBuilder; | |
5378 //v9 = v59->std__vector_000004_size; | |
5379 | |
2006 | 5380 int sCorrectedColor = uColor; |
0 | 5381 if (pGame->pLightmapBuilder->std__vector_000004_size) |
2006 | 5382 sCorrectedColor = -1; |
5383 pGame->AlterGamma_BLV(pFace, &sCorrectedColor); | |
0 | 5384 |
792 | 5385 |
5386 if (pFace->uAttributes & FACE_OUTLINED) | |
5387 { | |
5388 int color; | |
5389 if (GetTickCount() % 300 >= 150) | |
2006 | 5390 uColor = sCorrectedColor = 0xFF20FF20; |
5391 else uColor = sCorrectedColor = 0xFF109010; | |
792 | 5392 } |
5393 | |
1394 | 5394 if (byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01) |
0 | 5395 { |
5396 __debugbreak(); | |
5397 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false)); | |
186 | 5398 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
1072 | 5399 for (uint i = 0; i < uNumVertices; ++i) |
5400 { | |
5401 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; | |
5402 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
5403 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); | |
5404 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x; | |
2006 | 5405 d3d_vertex_buffer[i].diffuse = sCorrectedColor; |
1072 | 5406 d3d_vertex_buffer[i].specular = 0; |
5407 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth; | |
5408 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight; | |
5409 } | |
5410 | |
186 | 5411 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 5412 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); |
5413 ErrD3D(pRenderD3D->pDevice->DrawPrimitive( | |
5414 D3DPT_TRIANGLEFAN, | |
5415 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5416 d3d_vertex_buffer, |
0 | 5417 uNumVertices, |
5418 28)); | |
1394 | 5419 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/); |
0 | 5420 } |
5421 else | |
5422 { | |
5423 if (!pGame->pLightmapBuilder->std__vector_000004_size || | |
5424 byte_4D864C && pGame->uFlags & 2) | |
5425 { | |
5426 for (uint i = 0; i < uNumVertices; ++i) | |
5427 { | |
186 | 5428 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; |
5429 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
5430 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); | |
5431 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x; | |
2006 | 5432 d3d_vertex_buffer[i].diffuse = sCorrectedColor; |
186 | 5433 d3d_vertex_buffer[i].specular = 0; |
5434 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth; | |
5435 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight; | |
5436 } | |
5437 | |
5438 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
0 | 5439 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex)); |
5440 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
5441 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5442 d3d_vertex_buffer, |
0 | 5443 uNumVertices, |
5444 28)); | |
5445 } | |
5446 else | |
5447 { | |
595 | 5448 for (uint i = 0; i < uNumVertices; ++i) |
5449 { | |
5450 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; | |
5451 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
5452 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); | |
5453 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x; | |
5454 d3d_vertex_buffer[i].diffuse = uColor; | |
5455 d3d_vertex_buffer[i].specular = 0; | |
5456 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth; | |
5457 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight; | |
5458 } | |
5459 //__debugbreak(); | |
5460 //if ( (signed int)uNumVertices > 0 ) | |
5461 //{ | |
5462 //v23 = pTex; | |
5463 //v24 = (char *)&array_507D30[0].vWorldViewPosition; | |
5464 //v25 = (char *)&d3d_vertex_buffer[0].pos.y; | |
5465 //pTex = (Texture *)uNumVertices; | |
5466 //uint v18; | |
5467 //do | |
5468 //{ | |
5469 //v26 = *(float *)v24 * 0.061758894; | |
5470 //v27 = *((int *)v24 + 3); | |
5471 //*((int *)v25 + 4) = 0; | |
5472 //*((int *)v25 - 1) = v27; | |
5473 //*(int *)v25 = *((int *)v24 + 4); | |
5474 //*((int *)v25 + 3) = uColor; | |
5475 //v25 += 32; | |
5476 //*((float *)v25 - 7) = 1.0 - 1.0 / v26; | |
5477 //v28 = 1.0 / *(float *)v24; | |
5478 //v24 += 48; | |
5479 //v18 = pTex == (Texture *)1; | |
5480 //pTex = (Texture *)((char *)pTex - 1); | |
5481 //*((float *)v25 - 6) = v28; | |
0 | 5482 //a3 = (BLVFace *)v23->uTextureWidth; |
595 | 5483 //*((float *)v25 - 3) = *((float *)v24 - 6) / (double)(signed int)v23->uTextureWidth; |
0 | 5484 //a3 = (BLVFace *)v23->uTextureHeight; |
595 | 5485 //*((float *)v25 - 2) = *((float *)v24 - 5) / (double)(signed int)v23->uTextureHeight; |
5486 //} | |
5487 //while ( !v18 ); | |
5488 //} | |
0 | 5489 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false)); |
186 | 5490 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 5491 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); |
186 | 5492 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
0 | 5493 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5494 d3d_vertex_buffer, |
0 | 5495 uNumVertices, |
5496 28)); | |
595 | 5497 |
5498 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
1394 | 5499 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/); |
595 | 5500 |
5501 for (uint i = 0; i < uNumVertices; ++i) | |
2006 | 5502 d3d_vertex_buffer[i].diffuse = sCorrectedColor; |
595 | 5503 /*v33 = uNumVertices; |
0 | 5504 if ( (signed int)uNumVertices > 0 ) |
5505 { | |
186 | 5506 v34 = (char *)&d3d_vertex_buffer[0].diffuse; |
0 | 5507 do |
5508 { | |
5509 *(int *)v34 = uCorrectedColor; | |
5510 v34 += 32; | |
5511 --v33; | |
5512 } | |
5513 while ( v33 ); | |
595 | 5514 }*/ |
0 | 5515 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex)); |
186 | 5516 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
5517 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
5518 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
5519 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO)); | |
5520 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR)); | |
5521 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
0 | 5522 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5523 d3d_vertex_buffer, |
0 | 5524 uNumVertices, |
5525 28)); | |
186 | 5526 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
5527 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
5528 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
0 | 5529 } |
5530 } | |
5531 } | |
5532 // 4D864C: using guessed type char byte_4D864C; | |
5533 | |
5534 //----- (004A43B1) -------------------------------------------------------- | |
717 | 5535 void Render::DrawBillboard_Indoor(RenderBillboardTransform_local0 *pSoftBillboard, Sprite *pSprite, int dimming_level) |
5536 { | |
5537 //RenderBillboardTransform_local0 *v4; // ebx@2 | |
5538 //double v5; // st7@2 | |
5539 //float v6; // ST08_4@2 | |
0 | 5540 unsigned int v7; // eax@2 |
717 | 5541 //int v8; // ecx@2 |
5542 //unsigned int v9; // esi@2 | |
5543 //Sprite *v10; // edi@5 | |
0 | 5544 signed int v11; // eax@9 |
5545 signed int v12; // eax@9 | |
717 | 5546 //double v13; // st7@12 |
5547 //double v14; // st6@12 | |
0 | 5548 double v15; // st5@12 |
5549 double v16; // st4@12 | |
5550 double v17; // st3@12 | |
5551 double v18; // st2@12 | |
5552 int v19; // ecx@14 | |
5553 double v20; // st3@14 | |
5554 int v21; // ecx@16 | |
5555 double v22; // st3@16 | |
717 | 5556 //IDirect3DTexture2 *v23; // eax@18 |
5557 //signed int v24; // [sp+18h] [bp-18h]@5 | |
5558 //signed int v25; // [sp+1Ch] [bp-14h]@5 | |
5559 //Render *v26; // [sp+20h] [bp-10h]@1 | |
0 | 5560 float v27; // [sp+24h] [bp-Ch]@5 |
5561 int v28; // [sp+28h] [bp-8h]@2 | |
5562 float v29; // [sp+2Ch] [bp-4h]@5 | |
717 | 5563 //float pSoftBillboarda; // [sp+38h] [bp+8h]@2 |
0 | 5564 float v31; // [sp+3Ch] [bp+Ch]@5 |
717 | 5565 //float v32; // [sp+3Ch] [bp+Ch]@12 |
0 | 5566 float a1; // [sp+40h] [bp+10h]@5 |
5567 | |
717 | 5568 //v26 = this; |
0 | 5569 if ( this->uNumD3DSceneBegins ) |
5570 { | |
717 | 5571 //v4 = pSoftBillboard; |
5572 //v5 = (double)pSoftBillboard->zbuffer_depth; | |
5573 //pSoftBillboarda = pSoftBillboard->zbuffer_depth; | |
5574 //v6 = pSoftBillboard->zbuffer_depth; | |
5575 v7 = Billboard_ProbablyAddToListAndSortByZOrder(pSoftBillboard->zbuffer_depth); | |
5576 //v8 = dimming_level; | |
5577 //v9 = v7; | |
657 | 5578 v28 = dimming_level & 0xFF000000; |
5579 if ( dimming_level & 0xFF000000 ) | |
717 | 5580 pBillboardRenderListD3D[v7].uOpacity = RenderBillboardD3D::Opaque_3; |
0 | 5581 else |
717 | 5582 pBillboardRenderListD3D[v7].uOpacity = RenderBillboardD3D::Transparent; |
5583 //v10 = a3; | |
5584 pBillboardRenderListD3D[v7].field_90 = pSoftBillboard->field_44; | |
5585 pBillboardRenderListD3D[v7].sZValue = pSoftBillboard->sZValue; | |
2002 | 5586 pBillboardRenderListD3D[v7].sParentBillboardID = pSoftBillboard->sParentBillboardID; |
717 | 5587 //v25 = pSoftBillboard->uScreenSpaceX; |
5588 //v24 = pSoftBillboard->uScreenSpaceY; | |
5589 a1 = (pSoftBillboard->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_x_scaler_packedfloat); | |
5590 v29 = (pSoftBillboard->_screenspace_y_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_y_scaler_packedfloat); | |
5591 v31 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX); | |
5592 v27 = (double)(pSprite->uBufferHeight - pSprite->uAreaY); | |
5593 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5594 v31 = v31 * -1.0; |
2006 | 5595 if ( pSoftBillboard->sTintColor && this->bTinting ) |
717 | 5596 { |
5597 v11 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0); | |
2006 | 5598 v12 = BlendColors(pSoftBillboard->sTintColor, v11); |
0 | 5599 if ( v28 ) |
5600 v12 = (unsigned int)((char *)&array_77EC08[1852].pEdgeList1[17] + 3) & ((unsigned int)v12 >> 1); | |
5601 } | |
5602 else | |
5603 { | |
717 | 5604 v12 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0); |
5605 } | |
5606 //v13 = (double)v25; | |
1390 | 5607 pBillboardRenderListD3D[v7].pQuads[0].specular = 0; |
5608 pBillboardRenderListD3D[v7].pQuads[0].diffuse = v12; | |
5609 pBillboardRenderListD3D[v7].pQuads[0].pos.x = pSoftBillboard->uScreenSpaceX - v31 * a1; | |
717 | 5610 //v14 = (double)v24; |
5611 //v32 = v14; | |
1390 | 5612 pBillboardRenderListD3D[v7].pQuads[0].pos.y = pSoftBillboard->uScreenSpaceY - v27 * v29; |
717 | 5613 v15 = 1.0 - 1.0 / (pSoftBillboard->zbuffer_depth * 0.061758894); |
1390 | 5614 pBillboardRenderListD3D[v7].pQuads[0].pos.z = v15; |
717 | 5615 v16 = 1.0 / pSoftBillboard->zbuffer_depth; |
1390 | 5616 pBillboardRenderListD3D[v7].pQuads[0].rhw = 1.0 / pSoftBillboard->zbuffer_depth; |
5617 pBillboardRenderListD3D[v7].pQuads[0].texcoord.x = 0.0; | |
5618 pBillboardRenderListD3D[v7].pQuads[0].texcoord.y = 0.0; | |
717 | 5619 v17 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX); |
5620 v18 = (double)(pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight); | |
5621 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5622 v17 = v17 * -1.0; |
1390 | 5623 pBillboardRenderListD3D[v7].pQuads[1].specular = 0; |
5624 pBillboardRenderListD3D[v7].pQuads[1].diffuse = v12; | |
5625 pBillboardRenderListD3D[v7].pQuads[1].pos.x = pSoftBillboard->uScreenSpaceX - v17 * a1; | |
5626 pBillboardRenderListD3D[v7].pQuads[1].pos.y = pSoftBillboard->uScreenSpaceY - v18 * v29; | |
5627 pBillboardRenderListD3D[v7].pQuads[1].pos.z = v15; | |
5628 pBillboardRenderListD3D[v7].pQuads[1].rhw = v16; | |
5629 pBillboardRenderListD3D[v7].pQuads[1].texcoord.x = 0.0; | |
5630 pBillboardRenderListD3D[v7].pQuads[1].texcoord.y = 1.0; | |
717 | 5631 v19 = pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight; |
5632 v20 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth); | |
5633 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5634 v20 = v20 * -1.0; |
1390 | 5635 pBillboardRenderListD3D[v7].pQuads[2].specular = 0; |
5636 pBillboardRenderListD3D[v7].pQuads[2].diffuse = v12; | |
5637 pBillboardRenderListD3D[v7].pQuads[2].pos.x = v20 * a1 + pSoftBillboard->uScreenSpaceX; | |
5638 pBillboardRenderListD3D[v7].pQuads[2].pos.y = pSoftBillboard->uScreenSpaceY - (double)v19 * v29; | |
5639 pBillboardRenderListD3D[v7].pQuads[2].pos.z = v15; | |
5640 pBillboardRenderListD3D[v7].pQuads[2].rhw = v16; | |
5641 pBillboardRenderListD3D[v7].pQuads[2].texcoord.x = 1.0; | |
5642 pBillboardRenderListD3D[v7].pQuads[2].texcoord.y = 1.0; | |
717 | 5643 v21 = pSprite->uBufferHeight - pSprite->uAreaY; |
5644 v22 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth); | |
5645 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5646 v22 = v22 * -1.0; |
1390 | 5647 pBillboardRenderListD3D[v7].pQuads[3].specular = 0; |
5648 pBillboardRenderListD3D[v7].pQuads[3].diffuse = v12; | |
5649 pBillboardRenderListD3D[v7].pQuads[3].pos.x = v22 * a1 + pSoftBillboard->uScreenSpaceX; | |
5650 pBillboardRenderListD3D[v7].pQuads[3].pos.y = pSoftBillboard->uScreenSpaceY - (double)v21 * v29; | |
5651 pBillboardRenderListD3D[v7].pQuads[3].pos.z = v15; | |
5652 pBillboardRenderListD3D[v7].pQuads[3].rhw = v16; | |
5653 pBillboardRenderListD3D[v7].pQuads[3].texcoord.x = 1.0; | |
5654 pBillboardRenderListD3D[v7].pQuads[3].texcoord.y = 0.0; | |
717 | 5655 //v23 = pSprite->pTexture; |
5656 pBillboardRenderListD3D[v7].uNumVertices = 4; | |
5657 pBillboardRenderListD3D[v7].z_order = pSoftBillboard->zbuffer_depth; | |
5658 pBillboardRenderListD3D[v7].pTexture = pSprite->pTexture; | |
0 | 5659 } |
5660 } | |
5661 | |
5662 //----- (004A354F) -------------------------------------------------------- | |
5663 void Render::MakeParticleBillboardAndPush_BLV(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle) | |
5664 { | |
743 | 5665 //double v5; // st7@3 |
5666 //float v6; // ST20_4@3 | |
5667 //float v7; // ST00_4@3 | |
0 | 5668 unsigned int v8; // esi@3 |
743 | 5669 //int v9; // eax@3 |
5670 //int v10; // ebx@3 | |
0 | 5671 float v11; // ST28_4@3 |
743 | 5672 //double v12; // st7@3 |
5673 //float v13; // ST24_4@3 | |
5674 //double v14; // st6@3 | |
5675 //float v15; // ST1C_4@3 | |
0 | 5676 float v16; // ST2C_4@3 |
5677 float v17; // ST30_4@3 | |
5678 signed int v18; // ST18_4@3 | |
5679 signed int v19; // ST14_4@3 | |
5680 signed int v20; // ST10_4@3 | |
5681 signed int v21; // eax@3 | |
5682 double v22; // st6@3 | |
5683 float v23; // ST2C_4@3 | |
5684 float v24; // ST30_4@3 | |
5685 signed int v25; // ST10_4@3 | |
5686 signed int v26; // ST14_4@3 | |
5687 signed int v27; // ST18_4@3 | |
5688 signed int v28; // eax@3 | |
5689 double v29; // st6@3 | |
5690 float v30; // ecx@3 | |
5691 float v31; // ST2C_4@3 | |
5692 float v32; // ST30_4@3 | |
5693 signed int v33; // ST10_4@3 | |
5694 signed int v34; // ST14_4@3 | |
5695 signed int v35; // ST18_4@3 | |
5696 signed int v36; // eax@3 | |
5697 float v37; // ecx@3 | |
5698 double v38; // st6@3 | |
5699 float v39; // ST2C_4@3 | |
5700 float v40; // ST30_4@3 | |
5701 signed int v41; // ST10_4@3 | |
5702 signed int v42; // ST14_4@3 | |
5703 signed int v43; // ST18_4@3 | |
5704 signed int v44; // eax@3 | |
5705 double v45; // st6@3 | |
5706 float v46; // eax@3 | |
5707 | |
5708 if ( this->uNumD3DSceneBegins ) | |
5709 { | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5710 if (a2->zbuffer_depth) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5711 { |
743 | 5712 //v5 = (double)a2->zbuffer_depth; |
5713 //v6 = v5; | |
5714 //v7 = v5; | |
5715 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth); | |
0 | 5716 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Opaque_1; |
5717 pBillboardRenderListD3D[v8].field_90 = a2->field_44; | |
5718 pBillboardRenderListD3D[v8].sZValue = a2->sZValue; | |
2002 | 5719 pBillboardRenderListD3D[v8].sParentBillboardID = a2->sParentBillboardID; |
743 | 5720 //v9 = a2->uScreenSpaceX; |
5721 //v10 = a2->uScreenSpaceY; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5722 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat); |
743 | 5723 //v12 = (double) a2->uScreenSpaceX; |
5724 //v13 = v12; | |
5725 //v14 = (double)(a2->uScreenSpaceY - 12); | |
5726 //v15 = v14; | |
5727 v16 = (double)( a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX; | |
5728 v17 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12); | |
323 | 5729 v18 = stru_5C6E00->Cos(angle); |
5730 v19 = stru_5C6E00->Sin(angle); | |
5731 v20 = stru_5C6E00->Sin(angle); | |
5732 v21 = stru_5C6E00->Cos(angle); | |
1390 | 5733 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022 |
0 | 5734 + (double)(v18 >> 16)) |
5735 * v16 | |
5736 - ((double)(unsigned __int16)v19 * 0.000015259022 | |
5737 + (double)(v19 >> 16)) | |
5738 * v17) | |
743 | 5739 * v11 + (double) a2->uScreenSpaceX; |
0 | 5740 v22 = (((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v17 |
5741 + ((double)(unsigned __int16)v20 * 0.000015259022 + (double)(v20 >> 16)) * v16 | |
5742 - 12.0) | |
5743 * v11 | |
5744 + (double)a2->uScreenSpaceY; | |
1390 | 5745 pBillboardRenderListD3D[v8].pQuads[0].specular = 0; |
5746 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse; | |
5747 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v22; | |
5748 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 0.061758894); | |
5749 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth; | |
5750 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0; | |
5751 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0; | |
743 | 5752 v31 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX; |
5753 v32 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12); | |
323 | 5754 v25 = stru_5C6E00->Cos(angle); |
5755 v26 = stru_5C6E00->Sin(angle); | |
5756 v27 = stru_5C6E00->Sin(angle); | |
5757 v28 = stru_5C6E00->Cos(angle); | |
1390 | 5758 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v25 * 0.000015259022 |
0 | 5759 + (double)(v25 >> 16)) |
740 | 5760 * v31 |
0 | 5761 - ((double)(unsigned __int16)v26 * 0.000015259022 |
5762 + (double)(v26 >> 16)) | |
740 | 5763 * v32) |
743 | 5764 * v11 + (double) a2->uScreenSpaceX; |
740 | 5765 v29 = (((double)(unsigned __int16)v28 * 0.000015259022 + (double)(v28 >> 16)) * v32 |
5766 + ((double)(unsigned __int16)v27 * 0.000015259022 + (double)(v27 >> 16)) * v31 | |
0 | 5767 - 12.0) |
5768 * v11 | |
5769 + (double)a2->uScreenSpaceY; | |
1390 | 5770 pBillboardRenderListD3D[v8].pQuads[1].pos.z = pRenderer->pBillboardRenderListD3D[v8].pQuads[0].pos.z; |
5771 v30 = pBillboardRenderListD3D[v8].pQuads[0].rhw; | |
5772 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v29; | |
5773 pBillboardRenderListD3D[v8].pQuads[1].specular = 0; | |
5774 pBillboardRenderListD3D[v8].pQuads[1].rhw = v30; | |
5775 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse; | |
5776 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0; | |
5777 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0; | |
743 | 5778 v23 = (double)(a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX; |
5779 v24 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12); | |
323 | 5780 v33 = stru_5C6E00->Cos(angle); |
5781 v34 = stru_5C6E00->Sin(angle); | |
5782 v35 = stru_5C6E00->Sin(angle); | |
5783 v36 = stru_5C6E00->Cos(angle); | |
1390 | 5784 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v33 * 0.000015259022 |
0 | 5785 + (double)(v33 >> 16)) |
740 | 5786 * v23 |
0 | 5787 - ((double)(unsigned __int16)v34 * 0.000015259022 |
5788 + (double)(v34 >> 16)) | |
740 | 5789 * v24) |
743 | 5790 * v11 + (double) a2->uScreenSpaceX; |
1390 | 5791 v37 = pBillboardRenderListD3D[v8].pQuads[0].pos.z; |
740 | 5792 v38 = (((double)(unsigned __int16)v36 * 0.000015259022 + (double)(v36 >> 16)) * v24 |
5793 + ((double)(unsigned __int16)v35 * 0.000015259022 + (double)(v35 >> 16)) * v23 | |
0 | 5794 - 12.0) |
5795 * v11 | |
5796 + (double)a2->uScreenSpaceY; | |
1390 | 5797 pBillboardRenderListD3D[v8].pQuads[2].specular = 0; |
5798 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v37; | |
5799 pBillboardRenderListD3D[v8].pQuads[2].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw; | |
5800 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse; | |
5801 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v38; | |
5802 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0; | |
5803 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0; | |
743 | 5804 v39 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX; |
5805 v40 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12); | |
323 | 5806 v41 = stru_5C6E00->Cos(angle); |
5807 v42 = stru_5C6E00->Sin(angle); | |
5808 v43 = stru_5C6E00->Sin(angle); | |
5809 v44 = stru_5C6E00->Cos(angle); | |
1390 | 5810 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v41 * 0.000015259022 |
0 | 5811 + (double)(v41 >> 16)) |
5812 * v39 | |
5813 - ((double)(unsigned __int16)v42 * 0.000015259022 | |
5814 + (double)(v42 >> 16)) | |
5815 * v40) | |
743 | 5816 * v11 + (double) a2->uScreenSpaceX; |
0 | 5817 v45 = (((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40 |
5818 + ((double)(unsigned __int16)v43 * 0.000015259022 + (double)(v43 >> 16)) * v39 | |
5819 - 12.0) | |
5820 * v11 | |
5821 + (double)a2->uScreenSpaceY; | |
1390 | 5822 v46 = pBillboardRenderListD3D[v8].pQuads[0].pos.z; |
5823 pBillboardRenderListD3D[v8].pQuads[3].specular = 0; | |
5824 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v46; | |
5825 pBillboardRenderListD3D[v8].pQuads[3].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw; | |
5826 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse; | |
0 | 5827 pBillboardRenderListD3D[v8].pTexture = a3; |
743 | 5828 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth; |
0 | 5829 pBillboardRenderListD3D[v8].uNumVertices = 4; |
1390 | 5830 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v45; |
5831 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0; | |
5832 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0; | |
0 | 5833 } |
5834 } | |
5835 } | |
5836 | |
5837 //----- (004A3AD9) -------------------------------------------------------- | |
5838 void Render::MakeParticleBillboardAndPush_ODM(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle) | |
5839 { | |
5840 double v5; // st7@2 | |
5841 float v6; // ST28_4@2 | |
5842 float v7; // ST00_4@2 | |
5843 unsigned int v8; // esi@2 | |
5844 int v9; // eax@2 | |
5845 int v10; // ebx@2 | |
5846 float v11; // ST34_4@2 | |
5847 double v12; // st7@2 | |
5848 float v13; // ST2C_4@2 | |
5849 double v14; // st6@2 | |
5850 float v15; // ST24_4@2 | |
5851 float v16; // ST38_4@2 | |
5852 float v17; // ST3C_4@2 | |
5853 signed int v18; // ST1C_4@2 | |
5854 int v19; // ST30_4@2 | |
5855 signed int v20; // ST20_4@2 | |
5856 signed int v21; // ST18_4@2 | |
5857 signed int v22; // eax@2 | |
5858 double v23; // st6@2 | |
5859 float v24; // ST20_4@2 | |
5860 float v25; // ST1C_4@2 | |
5861 float v26; // ST38_4@2 | |
5862 float v27; // ST3C_4@2 | |
5863 signed int v28; // ST18_4@2 | |
5864 signed int v29; // ST14_4@2 | |
5865 signed int v30; // ST10_4@2 | |
5866 signed int v31; // eax@2 | |
5867 double v32; // st6@2 | |
5868 float v33; // ST38_4@2 | |
5869 float v34; // ST3C_4@2 | |
5870 signed int v35; // ST10_4@2 | |
5871 signed int v36; // ST14_4@2 | |
5872 signed int v37; // ST18_4@2 | |
5873 signed int v38; // eax@2 | |
5874 double v39; // st6@2 | |
5875 float v40; // ST38_4@2 | |
5876 float v41; // ST3C_4@2 | |
5877 signed int v42; // ST10_4@2 | |
5878 signed int v43; // ST14_4@2 | |
5879 signed int v44; // ST18_4@2 | |
5880 signed int v45; // eax@2 | |
5881 double v46; // st6@2 | |
5882 | |
5883 if ( this->uNumD3DSceneBegins ) | |
5884 { | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5885 v5 = (double)a2->zbuffer_depth; |
0 | 5886 v6 = v5; |
5887 v7 = v5; | |
5888 v8 = Billboard_ProbablyAddToListAndSortByZOrder(LODWORD(v7)); | |
5889 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Opaque_1; | |
5890 pBillboardRenderListD3D[v8].field_90 = a2->field_44; | |
5891 pBillboardRenderListD3D[v8].sZValue = a2->sZValue; | |
2002 | 5892 pBillboardRenderListD3D[v8].sParentBillboardID = a2->sParentBillboardID; |
0 | 5893 v9 = a2->uScreenSpaceX; |
5894 v10 = a2->uScreenSpaceY; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5895 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat); |
0 | 5896 v12 = (double)v9; |
5897 v13 = v12; | |
5898 v14 = (double)(v10 - 12); | |
5899 v15 = v14; | |
5900 v16 = (double)(v9 - 12) - v12; | |
5901 v17 = (double)(v10 - 25) - v14; | |
323 | 5902 v18 = stru_5C6E00->Cos(angle); |
0 | 5903 v19 = angle - stru_5C6E00->uIntegerHalfPi; |
323 | 5904 v20 = stru_5C6E00->Sin(angle); |
5905 v21 = stru_5C6E00->Sin(angle); | |
5906 v22 = stru_5C6E00->Cos(angle); | |
1390 | 5907 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022 |
0 | 5908 + (double)(v18 >> 16)) |
5909 * v16 | |
5910 - ((double)(unsigned __int16)v20 * 0.000015259022 | |
5911 + (double)(v20 >> 16)) | |
5912 * v17) | |
5913 * v11 + v13; | |
5914 v23 = (((double)(unsigned __int16)v22 * 0.000015259022 + (double)(v22 >> 16)) * v17 | |
5915 + ((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v16 | |
5916 - 12.0) | |
5917 * v11 | |
5918 + (double)a2->uScreenSpaceY; | |
1390 | 5919 pBillboardRenderListD3D[v8].pQuads[0].specular = 0; |
5920 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse; | |
5921 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v23; | |
1637 | 5922 v24 = 1.0 - 1.0 / (v6 * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 5923 pBillboardRenderListD3D[v8].pQuads[0].pos.z = v24; |
0 | 5924 v25 = 1.0 / v6; |
1390 | 5925 pBillboardRenderListD3D[v8].pQuads[0].rhw = v25; |
5926 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0; | |
5927 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0; | |
0 | 5928 v26 = (double)(a2->uScreenSpaceX - 12) - v13; |
5929 v27 = (double)a2->uScreenSpaceY - v15; | |
323 | 5930 v28 = stru_5C6E00->Cos(angle); |
5931 v29 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5932 v30 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5933 v31 = stru_5C6E00->Cos(angle); | |
1390 | 5934 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v28 * 0.000015259022 |
0 | 5935 + (double)(v28 >> 16)) |
5936 * v26 | |
5937 - ((double)(unsigned __int16)v29 * 0.000015259022 | |
5938 + (double)(v29 >> 16)) | |
5939 * v27) | |
5940 * v11 + v13; | |
5941 v32 = (((double)(unsigned __int16)v31 * 0.000015259022 + (double)(v31 >> 16)) * v27 | |
5942 + ((double)(unsigned __int16)v30 * 0.000015259022 + (double)(v30 >> 16)) * v26 | |
5943 - 12.0) | |
5944 * v11 | |
5945 + (double)a2->uScreenSpaceY; | |
1390 | 5946 pBillboardRenderListD3D[v8].pQuads[1].pos.z = v24; |
5947 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v32; | |
5948 pBillboardRenderListD3D[v8].pQuads[1].specular = 0; | |
5949 pBillboardRenderListD3D[v8].pQuads[1].rhw = v25; | |
5950 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse; | |
5951 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0; | |
5952 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0; | |
0 | 5953 v33 = (double)(a2->uScreenSpaceX + 12) - v13; |
5954 v34 = (double)a2->uScreenSpaceY - v15; | |
323 | 5955 v35 = stru_5C6E00->Cos(angle); |
5956 v36 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5957 v37 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5958 v38 = stru_5C6E00->Cos(angle); | |
1390 | 5959 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v35 * 0.000015259022 |
0 | 5960 + (double)(v35 >> 16)) |
5961 * v33 | |
5962 - ((double)(unsigned __int16)v36 * 0.000015259022 | |
5963 + (double)(v36 >> 16)) | |
5964 * v34) | |
5965 * v11 + v13; | |
5966 v39 = (((double)(unsigned __int16)v38 * 0.000015259022 + (double)(v38 >> 16)) * v34 | |
5967 + ((double)(unsigned __int16)v37 * 0.000015259022 + (double)(v37 >> 16)) * v33 | |
5968 - 12.0) | |
5969 * v11 | |
5970 + (double)a2->uScreenSpaceY; | |
1390 | 5971 pBillboardRenderListD3D[v8].pQuads[2].specular = 0; |
5972 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v24; | |
5973 pBillboardRenderListD3D[v8].pQuads[2].rhw = v25; | |
5974 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse; | |
5975 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v39; | |
5976 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0; | |
5977 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0; | |
0 | 5978 v40 = (double)(a2->uScreenSpaceX + 12) - v13; |
5979 v41 = (double)(a2->uScreenSpaceY - 25) - v15; | |
323 | 5980 v42 = stru_5C6E00->Cos(angle); |
5981 v43 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5982 v44 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5983 v45 = stru_5C6E00->Cos(angle); | |
1390 | 5984 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v42 * 0.000015259022 |
0 | 5985 + (double)(v42 >> 16)) |
5986 * v40 | |
5987 - ((double)(unsigned __int16)v43 * 0.000015259022 | |
5988 + (double)(v43 >> 16)) | |
5989 * v41) | |
5990 * v11 + v13; | |
5991 v46 = (((double)(unsigned __int16)v45 * 0.000015259022 + (double)(v45 >> 16)) * v41 | |
5992 + ((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40 | |
5993 - 12.0) | |
5994 * v11 | |
5995 + (double)a2->uScreenSpaceY; | |
1390 | 5996 pBillboardRenderListD3D[v8].pQuads[3].specular = 0; |
5997 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v24; | |
5998 pBillboardRenderListD3D[v8].pQuads[3].rhw = v25; | |
5999 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse; | |
0 | 6000 pBillboardRenderListD3D[v8].pTexture = a3; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6001 pBillboardRenderListD3D[v8].z_order = v6; |
0 | 6002 pBillboardRenderListD3D[v8].uNumVertices = 4; |
1390 | 6003 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v46; |
6004 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0; | |
6005 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0; | |
0 | 6006 } |
6007 } | |
6008 | |
6009 //----- (004A4023) -------------------------------------------------------- | |
657 | 6010 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
|
6011 { |
0 | 6012 unsigned int v8; // esi@2 |
6013 double v14; // st6@14 | |
6014 double v15; // st5@14 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6015 //unsigned int v16; // ecx@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6016 //double v17; // st7@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6017 //double v18; // st5@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6018 //double v19; // st4@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6019 //double v20; // st5@18 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6020 //double v21; // st4@18 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6021 //signed int v23; // [sp+18h] [bp-18h]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6022 //signed int v24; // [sp+1Ch] [bp-14h]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6023 //float v26; // [sp+20h] [bp-10h]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6024 //float v27; // [sp+20h] [bp-10h]@12 |
0 | 6025 float v29; // [sp+28h] [bp-8h]@5 |
6026 float v30; // [sp+2Ch] [bp-4h]@5 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6027 //float pSpritea; // [sp+3Ch] [bp+Ch]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6028 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6029 if (!uNumD3DSceneBegins) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6030 return; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6031 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6032 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6033 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6034 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
|
6035 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
|
6036 |
657 | 6037 unsigned int diffuse = ::GetActorTintColor(dimming_level, 0, a2->zbuffer_depth, 0, pBillboard); |
2006 | 6038 if (a2->sTintColor & 0x00FFFFFF && bTinting) |
6039 { | |
6040 diffuse = BlendColors(a2->sTintColor, diffuse); | |
6041 if (a2->sTintColor & 0xFF000000) | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6042 diffuse = 0x007F7F7F & ((unsigned int)diffuse >> 1); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6043 } |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6044 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6045 unsigned int specular = 0; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6046 if (bUsingSpecular) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6047 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
|
6048 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6049 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6050 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6051 if (a2->uFlags & 4) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6052 v14 *= -1.0; |
1390 | 6053 pBillboardRenderListD3D[v8].pQuads[0].diffuse = diffuse; |
6054 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (double)a2->uScreenSpaceX - v14 * v30; | |
6055 pBillboardRenderListD3D[v8].pQuads[0].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 6056 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 6057 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth; |
6058 pBillboardRenderListD3D[v8].pQuads[0].specular = specular; | |
6059 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0; | |
6060 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6061 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6062 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6063 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6064 if ( a2->uFlags & 4 ) |
0 | 6065 v14 = v14 * -1.0; |
1390 | 6066 pBillboardRenderListD3D[v8].pQuads[1].specular = specular; |
6067 pBillboardRenderListD3D[v8].pQuads[1].diffuse = diffuse; | |
6068 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (double)a2->uScreenSpaceX - v14 * v30; | |
6069 pBillboardRenderListD3D[v8].pQuads[1].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 6070 pBillboardRenderListD3D[v8].pQuads[1].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 6071 pBillboardRenderListD3D[v8].pQuads[1].rhw = 1.0 / a2->zbuffer_depth; |
6072 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0; | |
6073 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6074 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6075 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
|
6076 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6077 if ( a2->uFlags & 4 ) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6078 v14 *= -1.0; |
1390 | 6079 pBillboardRenderListD3D[v8].pQuads[2].diffuse = diffuse; |
6080 pBillboardRenderListD3D[v8].pQuads[2].specular = specular; | |
6081 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (double)a2->uScreenSpaceX + v14 * v30; | |
6082 pBillboardRenderListD3D[v8].pQuads[2].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 6083 pBillboardRenderListD3D[v8].pQuads[2].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 6084 pBillboardRenderListD3D[v8].pQuads[2].rhw = 1.0 / a2->zbuffer_depth; |
6085 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0; | |
6086 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6087 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6088 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
|
6089 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6090 if ( a2->uFlags & 4 ) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6091 v14 *= -1.0; |
1390 | 6092 pBillboardRenderListD3D[v8].pQuads[3].diffuse = diffuse; |
6093 pBillboardRenderListD3D[v8].pQuads[3].specular = specular; | |
6094 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (double)a2->uScreenSpaceX + v14 * v30; | |
6095 pBillboardRenderListD3D[v8].pQuads[3].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 6096 pBillboardRenderListD3D[v8].pQuads[3].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 6097 pBillboardRenderListD3D[v8].pQuads[3].rhw = 1.0 / a2->zbuffer_depth; |
6098 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0; | |
6099 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6100 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6101 pBillboardRenderListD3D[v8].uNumVertices = 4; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6102 pBillboardRenderListD3D[v8].pTexture = pSprite->pTexture; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6103 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6104 pBillboardRenderListD3D[v8].field_90 = a2->field_44; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6105 pBillboardRenderListD3D[v8].sZValue = a2->sZValue; |
2002 | 6106 pBillboardRenderListD3D[v8].sParentBillboardID = a2->sParentBillboardID; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6107 |
2006 | 6108 if (a2->sTintColor & 0xFF000000) |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6109 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Opaque_3; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6110 else |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6111 pBillboardRenderListD3D[v8].uOpacity = RenderBillboardD3D::Transparent; |
0 | 6112 } |
6113 | |
6114 | |
6115 //----- (004A49D0) -------------------------------------------------------- | |
6116 void Render::DrawProjectile(float srcX, float srcY, float a3, float a4, float dstX, float dstY, float a7, float a8, IDirect3DTexture2 *a9) | |
6117 { | |
1159 | 6118 int absXDifference; // eax@1 |
6119 int absYDifference; // eax@1 | |
6120 unsigned int smallerabsdiff; // ebx@1 | |
6121 unsigned int largerabsdiff; | |
0 | 6122 double v16; // st7@7 |
6123 double v17; // st7@7 | |
6124 double v18; // st6@7 | |
6125 double v20; // st4@8 | |
6126 double v21; // st4@10 | |
6127 double v22; // st4@10 | |
6128 double v23; // st4@10 | |
6129 double v25; // st4@11 | |
6130 double v26; // st4@13 | |
6131 double v28; // st4@13 | |
6132 RenderVertexD3D3 v29[4]; // [sp+0h] [bp-94h]@7 | |
1159 | 6133 int xDifference; // [sp+88h] [bp-Ch]@1 |
0 | 6134 signed int v32; // [sp+8Ch] [bp-8h]@1 |
1159 | 6135 int yDifference; // [sp+90h] [bp-4h]@1 |
6136 | |
6137 xDifference = bankersRounding(dstX - srcX); | |
6138 yDifference = bankersRounding(dstY - srcY); | |
6139 absYDifference = abs(yDifference); | |
6140 absXDifference = abs(xDifference); | |
6141 smallerabsdiff = min(absXDifference, absYDifference); | |
6142 largerabsdiff = max(absXDifference, absYDifference); | |
6143 v32 = (11 * smallerabsdiff >> 5) + largerabsdiff; | |
0 | 6144 v16 = 1.0 / (double)v32; |
1159 | 6145 v17 = (double)yDifference * v16 * a4; |
6146 v18 = (double)xDifference * v16 * a4; | |
6147 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
6148 { | |
1637 | 6149 v20 = a3 * 1000.0 / (double)pODMRenderParams->shading_dist_mist; |
6150 v25 = a7 * 1000.0 / (double)pODMRenderParams->shading_dist_mist; | |
1159 | 6151 } |
6152 else | |
6153 { | |
6154 v20 = a3 * 0.061758894; | |
6155 v25 = a7 * 0.061758894; | |
6156 } | |
6157 v21 = 1.0 / a3; | |
6158 v22 = (double)yDifference * v16 * a8; | |
6159 v23 = (double)xDifference * v16 * a8; | |
6160 v26 = 1.0 - 1.0 / v25; | |
6161 v28 = 1.0 / a7; | |
0 | 6162 v29[0].pos.x = srcX + v17; |
6163 v29[0].pos.y = srcY - v18; | |
1159 | 6164 v29[0].pos.z = 1.0 - 1.0 / v20; |
6165 v29[0].rhw = v21; | |
0 | 6166 v29[0].diffuse = -1; |
6167 v29[0].specular = 0; | |
6168 v29[0].texcoord.x = 1.0; | |
6169 v29[0].texcoord.y = 0.0; | |
1159 | 6170 |
0 | 6171 v29[1].pos.x = v22 + dstX; |
6172 v29[1].pos.y = dstY - v23; | |
1159 | 6173 v29[1].pos.z = v26; |
6174 v29[1].rhw = v28; | |
0 | 6175 v29[1].diffuse = -16711936; |
6176 v29[1].specular = 0; | |
6177 v29[1].texcoord.x = 1.0; | |
6178 v29[1].texcoord.y = 1.0; | |
1159 | 6179 |
6180 v29[2].pos.x = dstX - v22; | |
6181 v29[2].pos.y = v23 + dstY; | |
6182 v29[2].pos.z = v26; | |
0 | 6183 v29[2].rhw = v28; |
1159 | 6184 v29[2].diffuse = -1; |
6185 v29[2].specular = 0; | |
0 | 6186 v29[2].texcoord.x = 0.0; |
6187 v29[2].texcoord.y = 1.0; | |
1159 | 6188 |
0 | 6189 v29[3].pos.x = srcX - v17; |
6190 v29[3].pos.y = v18 + srcY; | |
1159 | 6191 v29[3].pos.z = v29[0].pos.z; |
6192 v29[3].rhw = v21; | |
6193 v29[3].diffuse = -1; | |
6194 v29[3].specular = 0; | |
0 | 6195 v29[3].texcoord.x = 0.0; |
6196 v29[3].texcoord.y = 0.0; | |
186 | 6197 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); |
6198 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
6199 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
6200 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
6201 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
6202 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
0 | 6203 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, a9)); |
6204 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive( | |
6205 D3DPT_TRIANGLEFAN, | |
6206 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
6207 v29, | |
6208 4, | |
6209 24)); | |
186 | 6210 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); |
6211 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
6212 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
6213 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
6214 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
6215 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); | |
0 | 6216 } |
6217 | |
6218 //----- (004A4CC9) -------------------------------------------------------- | |
1390 | 6219 void Render::_4A4CC9_AddSomeBillboard(stru6_stru1_indoor_sw_billboard *a1, int diffuse) |
6220 { | |
0 | 6221 unsigned int v5; // eax@7 |
6222 char *v7; // edx@8 | |
6223 double v10; // st6@9 | |
6224 double v11; // st6@10 | |
6225 int v12; // ebx@13 | |
1390 | 6226 |
6227 if (a1->uNumVertices < 3) | |
6228 return; | |
6229 | |
6230 float depth = 1000000.0; | |
6231 for (uint i = 0; i < a1->uNumVertices; ++i) | |
6232 { | |
6233 if (a1->field_104[i].z < depth) | |
6234 depth = a1->field_104[i * 4].z; | |
6235 } | |
6236 | |
6237 v5 = Billboard_ProbablyAddToListAndSortByZOrder(depth); | |
6238 pBillboardRenderListD3D[v5].field_90 = 0; | |
2002 | 6239 pBillboardRenderListD3D[v5].sParentBillboardID = -1; |
1390 | 6240 pBillboardRenderListD3D[v5].uOpacity = RenderBillboardD3D::Opaque_2; |
6241 pBillboardRenderListD3D[v5].pTexture = 0; | |
6242 pBillboardRenderListD3D[v5].uNumVertices = a1->uNumVertices; | |
6243 pBillboardRenderListD3D[v5].z_order = depth; | |
6244 | |
6245 for (uint i = 0; i < a1->uNumVertices; ++i) | |
6246 { | |
6247 pBillboardRenderListD3D[v5].pQuads[i].pos.x = a1->field_104[i].x; | |
6248 pBillboardRenderListD3D[v5].pQuads[i].pos.y = a1->field_104[i].y; | |
6249 | |
6250 v10 = a1->field_104[i].z; | |
6251 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
6252 v11 = v10 * 0.061758894; | |
6253 else | |
1637 | 6254 v11 = v10 * 1000.0 / (double)pODMRenderParams->shading_dist_mist; |
1390 | 6255 pBillboardRenderListD3D[v5].pQuads[i].pos.z = 1.0 - 1.0 / v11; |
6256 pBillboardRenderListD3D[v5].pQuads[i].rhw = 1.0 / a1->field_104[i].z; | |
6257 | |
6258 if (diffuse & 0xFF000000) | |
6259 v12 = a1->field_104[i].diffuse; | |
6260 else | |
6261 v12 = diffuse; | |
6262 pBillboardRenderListD3D[v5].pQuads[i].diffuse = v12; | |
6263 pBillboardRenderListD3D[v5].pQuads[i].specular = 0; | |
6264 | |
6265 pBillboardRenderListD3D[v5].pQuads[i].texcoord.x = 0.0; | |
6266 pBillboardRenderListD3D[v5].pQuads[i].texcoord.y = 0.0; | |
0 | 6267 } |
6268 } | |
6269 | |
6270 //----- (004A4DE1) -------------------------------------------------------- | |
6271 bool Render::LoadTexture(const char *pName, unsigned int bMipMaps, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture) | |
6272 { | |
6273 HRESULT v12; // eax@14 | |
6274 unsigned __int16 *v13; // ecx@19 | |
6275 unsigned __int16 *v14; // eax@19 | |
6276 DWORD v15; // edx@20 | |
6277 HRESULT v16; // eax@23 | |
6278 stru350 Dst; // [sp+Ch] [bp-F8h]@12 | |
6279 | |
1980 | 6280 HWLTexture* pHWLTexture = pD3DBitmaps.LoadTexture(pName, bMipMaps); |
0 | 6281 if ( pHWLTexture ) |
6282 { | |
6283 bMipMaps = !strncmp(pName, "HDWTR", 5); | |
6284 if ( !pRenderD3D->CreateTexture( | |
6285 pHWLTexture->uWidth, | |
6286 pHWLTexture->uHeight, | |
6287 pOutSurface, | |
6288 pOutTexture, | |
6289 true, | |
6290 bMipMaps, | |
6291 uMinDeviceTextureDim) ) | |
1545 | 6292 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0); |
0 | 6293 //v10 = *pOutSurface; |
6294 //v11 = 0; | |
1578
56cc81b1ed49
workaround for crash on startup
Beri Levi berilevi@gmail.com
parents:
1574
diff
changeset
|
6295 if (bMipMaps) |
0 | 6296 { |
6297 Dst._450DDE(); | |
6298 //v20 = 0; | |
6299 Dst._450DF1(&stru_4EFCBC, &stru_4EFCBC); | |
6300 | |
6301 IDirectDrawSurface4 *pNextSurf = *pOutSurface; | |
6302 while ( 1 ) | |
6303 { | |
6304 DDSCAPS2 v19; | |
6305 memset(&v19, 0, sizeof(DDSCAPS2)); | |
6306 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP; | |
6307 | |
6308 DDSURFACEDESC2 desc; | |
6309 memset(&desc, 0, sizeof(DDSURFACEDESC2)); | |
6310 desc.dwSize = sizeof(DDSURFACEDESC2); | |
6311 | |
168 | 6312 if ( LockSurface_DDraw4(pNextSurf, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) |
0 | 6313 { |
1831 | 6314 Dst.sub_451007_scale_image_bicubic( |
0 | 6315 pHWLTexture->pPixels, |
6316 pHWLTexture->uWidth, | |
6317 pHWLTexture->uHeight, | |
6318 pHWLTexture->uWidth, | |
6319 (unsigned short *)desc.lpSurface, | |
6320 desc.dwWidth, | |
6321 desc.dwHeight, | |
6322 desc.lPitch >> 1, | |
6323 0, | |
1831 | 6324 0); |
0 | 6325 ErrD3D(pNextSurf->Unlock(0)); |
6326 //bMipMaps = 0x4D86ACu; | |
6327 } | |
6328 if (FAILED(pNextSurf->GetAttachedSurface(&v19, &pNextSurf))) | |
6329 break; | |
6330 //v10 = (IDirectDrawSurface4 *)pName; | |
6331 //v11 = 0; | |
6332 } | |
6333 //v20 = -1; | |
6334 //nullsub_1(); | |
6335 } | |
6336 else | |
6337 { | |
6338 DDSCAPS2 v19; | |
6339 memset(&v19, 0, sizeof(DDSCAPS2)); | |
6340 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP; | |
6341 | |
6342 DDSURFACEDESC2 desc; | |
6343 memset(&desc, 0, sizeof(DDSURFACEDESC2)); | |
6344 desc.dwSize = sizeof(DDSURFACEDESC2); | |
6345 | |
168 | 6346 if ( LockSurface_DDraw4(*pOutSurface, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) |
0 | 6347 { |
6348 bMipMaps = 0; | |
6349 v13 = pHWLTexture->pPixels; | |
6350 v14 = (unsigned __int16 *)desc.lpSurface; | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6351 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
|
6352 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6353 for (v15 = 0; v15 < desc.dwWidth; v15++) |
0 | 6354 { |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6355 *v14 = *v13; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6356 ++v14; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6357 ++v13; |
0 | 6358 } |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6359 v14 += (desc.lPitch >> 1) - desc.dwWidth; |
0 | 6360 } |
6361 ErrD3D((*pOutSurface)->Unlock(0)); | |
6362 } | |
6363 } | |
6364 delete [] pHWLTexture->pPixels; | |
6365 delete pHWLTexture; | |
6366 return true; | |
6367 } | |
6368 return false; | |
6369 } | |
6370 | |
6371 //----- (004A5048) -------------------------------------------------------- | |
670 | 6372 bool Render::MoveSpriteToDevice( Sprite *pSprite ) |
6373 { | |
6374 | |
6375 HWLTexture *sprite_texture; // eax@1 | |
0 | 6376 unsigned __int16 *v9; // edx@5 |
6377 LPVOID v10; // eax@5 | |
6378 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4 | |
6379 | |
670 | 6380 sprite_texture = pD3DSprites.LoadTexture(pSprite->pName, pSprite->uPaletteID); |
6381 if ( sprite_texture ) | |
6382 { | |
6383 _gpu_memory_used += 2 * sprite_texture->uWidth * sprite_texture->uHeight; | |
6384 pSprite->uAreaX = sprite_texture->uAreaX; | |
6385 pSprite->uAreaY = sprite_texture->uAreaY; | |
6386 pSprite->uBufferWidth = sprite_texture->uBufferWidth; | |
6387 pSprite->uBufferHeight = sprite_texture->uBufferHeight; | |
6388 pSprite->uAreaWidth = sprite_texture->uAreaWidth; | |
6389 pSprite->uAreaHeight = sprite_texture->uAreaHeigth; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6390 //v6 = v3->uMinDeviceTextureDim; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6391 //v7 = v3->pRenderD3D; |
670 | 6392 if (!pRenderD3D->CreateTexture(sprite_texture->uWidth, sprite_texture->uHeight, &pSprite->pTextureSurface, &pSprite->pTexture, 1u, 0, uMinDeviceTextureDim)) |
1545 | 6393 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0); |
0 | 6394 //pSprite = v2->pTextureSurface; |
6395 //pSprite = (Sprite *)pSprite->pName; | |
6396 //v8 = pSprite; | |
670 | 6397 memset(&Dst, 0, sizeof(DDSURFACEDESC2)); |
0 | 6398 Dst.dwSize = 124; |
670 | 6399 if ( LockSurface_DDraw4((IDirectDrawSurface4 *)pSprite->pTextureSurface, &Dst, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) |
6400 { | |
6401 v9 = sprite_texture->pPixels; | |
6402 v10 = Dst.lpSurface; | |
6403 for (int i=0; i<sprite_texture->uHeight; ++i) | |
0 | 6404 { |
670 | 6405 for (int j=0; j<sprite_texture->uWidth/2; ++j) |
6406 { | |
0 | 6407 *(int *)v10 = *(int *)v9; |
6408 v9 += 2; | |
6409 v10 = (char *)v10 + 4; | |
670 | 6410 } |
6411 v10 = (char *)v10+Dst.lPitch-sprite_texture->uWidth*2; | |
0 | 6412 } |
670 | 6413 ErrD3D(pSprite->pTextureSurface->Unlock(0)); |
6414 } | |
6415 free(sprite_texture->pPixels); | |
6416 free(sprite_texture); | |
6417 return true; | |
6418 } | |
6419 return false; | |
0 | 6420 } |
6421 | |
6422 //----- (004A51CB) -------------------------------------------------------- | |
6423 void Render::BeginScene() | |
6424 { | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6425 //Render *v1; // esi@1 |
0 | 6426 unsigned int v2; // eax@1 |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6427 /*int v3; // eax@5 |
0 | 6428 unsigned __int16 **v4; // edi@6 |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6429 char *v5; // ebx@7*/ |
0 | 6430 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4 |
6431 | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6432 //v1 = this; |
0 | 6433 v2 = this->uNumSceneBegins; |
6434 this->uNumSceneBegins = v2 + 1; | |
6435 if ( !v2 ) | |
6436 { | |
6437 if ( this->pRenderD3D ) | |
6438 { | |
2069 | 6439 /*if ( this->bColorKeySupported ) |
0 | 6440 { |
6441 memset(&Dst, 0, 0x7Cu); | |
6442 Dst.dwSize = 124; | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6443 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
|
6444 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6445 this->pTargetSurface = (unsigned __int16 *)Dst.lpSurface; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6446 this->uTargetSurfacePitch = Dst.lPitch >> 1; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6447 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
|
6448 } |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6449 --this->uNumSceneBegins; |
2069 | 6450 }*/ |
0 | 6451 } |
6452 else | |
6453 { | |
6454 if ( !this->pTargetSurface ) | |
6455 { | |
6456 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
|
6457 if ( this->pTargetSurface ) |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6458 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6459 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
|
6460 } |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6461 --this->uNumSceneBegins; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6462 } |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6463 } |
0 | 6464 RestoreFrontBuffer(); |
6465 } | |
6466 } | |
6467 | |
6468 //----- (004A527D) -------------------------------------------------------- | |
6469 void Render::EndScene() | |
6470 { | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6471 if ( this->uNumSceneBegins ) |
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 this->uNumSceneBegins--; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6474 if ( !this->uNumSceneBegins ) |
0 | 6475 { |
6476 if ( this->pRenderD3D ) | |
6477 { | |
2069 | 6478 /*if ( this->bColorKeySupported ) |
0 | 6479 { |
6480 this->pTargetSurface = 0; | |
6481 this->uTargetSurfacePitch = 0; | |
6482 this->field_18_locked_pitch = 0; | |
6483 ErrD3D(this->pColorKeySurface4->Unlock(0)); | |
2069 | 6484 }*/ |
0 | 6485 } |
6486 else | |
6487 { | |
6488 this->pTargetSurface = 0; | |
6489 this->uTargetSurfacePitch = 0; | |
6490 this->field_18_locked_pitch = 0; | |
6491 UnlockBackBuffer(); | |
6492 } | |
6493 } | |
6494 } | |
6495 } | |
6496 | |
6497 //----- ( ) -------------------------------------------------------- | |
6498 unsigned int Render::_4A52F1(unsigned int this_, float a3) | |
6499 { | |
6500 unsigned int v3; // esi@1 | |
6501 double v4; // st7@2 | |
6502 double v5; // st7@6 | |
6503 double v6; // st6@6 | |
6504 unsigned int v7; // eax@6 | |
6505 double v8; // st5@6 | |
6506 double v9; // st4@6 | |
6507 HRESULT v10; // eax@6 | |
6508 HRESULT v11; // eax@6 | |
6509 unsigned int result; // eax@6 | |
6510 unsigned int v13; // eax@7 | |
6511 unsigned __int16 *v14; // ecx@7 | |
6512 int *v15; // eax@7 | |
6513 unsigned int v16; // ecx@8 | |
6514 __int16 v17; // ax@10 | |
6515 int v18; // esi@10 | |
6516 float v19; // edi@10 | |
6517 void *v20; // esi@10 | |
6518 int v21; // edx@10 | |
6519 int v22; // ecx@11 | |
6520 int v23; // edx@12 | |
6521 __int16 v24; // ax@15 | |
6522 int v25; // esi@15 | |
6523 float v26; // edi@15 | |
6524 char *v27; // esi@15 | |
6525 int v28; // edx@15 | |
6526 int v29; // ecx@16 | |
6527 int v30; // edx@17 | |
6528 int v31; // [sp-Ch] [bp-ACh]@11 | |
6529 int v32; // [sp-Ch] [bp-ACh]@16 | |
6530 const char *v33; // [sp+0h] [bp-A0h]@0 | |
6531 int v34; // [sp+4h] [bp-9Ch]@0 | |
6532 unsigned int v35; // [sp+8h] [bp-98h]@0 | |
6533 RenderVertexD3D3 v36[4]; // [sp+Ch] [bp-94h]@6 | |
6534 unsigned int v37; // [sp+8Ch] [bp-14h]@7 | |
6535 int v38; // [sp+90h] [bp-10h]@7 | |
6536 double v39; // [sp+94h] [bp-Ch]@6 | |
6537 float v40; // [sp+9Ch] [bp-4h]@6 | |
6538 | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
6539 __debugbreak(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
6540 |
1980 | 6541 Render* ecx0 = this; |
0 | 6542 v3 = 0; |
1574 | 6543 |
6544 if (!this->pRenderD3D) | |
6545 __debugbreak(); // sw render | |
6546 | |
6547 //{ | |
0 | 6548 v4 = a3; |
6549 if ( a3 <= 1.0 ) | |
6550 { | |
6551 if ( v4 < 0.0 ) | |
6552 v4 = 0.0; | |
6553 } | |
6554 else | |
6555 { | |
6556 v4 = 1.0; | |
6557 } | |
1574 | 6558 __debugbreak(); // banker's rounding again |
0 | 6559 a3 = v4 * 255.0; |
6560 v39 = a3 + 6.7553994e15; | |
6561 LODWORD(v40) = LODWORD(v39); | |
693 | 6562 v5 = (double)(signed int)pViewport->uViewportTL_X; |
0 | 6563 v36[0].pos.x = v5; |
693 | 6564 v6 = (double)(signed int)pViewport->uViewportTL_Y; |
0 | 6565 v7 = this_ | (LODWORD(v39) << 24); |
693 | 6566 this_ = pViewport->uViewportBR_Y + 1; |
0 | 6567 v36[0].specular = 0; |
6568 v36[0].pos.y = v6; | |
6569 v36[0].diffuse = v7; | |
6570 v36[1].diffuse = v7; | |
6571 v36[0].pos.z = 0.0; | |
6572 v36[2].diffuse = v7; | |
6573 v36[3].diffuse = v7; | |
6574 v36[0].rhw = 1.0; | |
6575 v36[1].specular = 0; | |
6576 v36[0].texcoord.x = 0.0; | |
6577 v36[2].specular = 0; | |
6578 v36[3].specular = 0; | |
6579 v36[0].texcoord.y = 0.0; | |
6580 v36[1].pos.x = v5; | |
693 | 6581 v8 = (double)(pViewport->uViewportBR_Y + 1); |
0 | 6582 v36[1].pos.y = v8; |
6583 v36[1].pos.z = 0.0; | |
6584 v36[1].rhw = 1.0; | |
6585 v36[1].texcoord.x = 0.0; | |
6586 v36[1].texcoord.y = 0.0; | |
693 | 6587 v9 = (double)(signed int)pViewport->uViewportBR_X; |
0 | 6588 v36[2].pos.x = v9; |
6589 v36[2].pos.y = v8; | |
6590 v36[2].pos.z = 0.0; | |
6591 v36[2].rhw = 1.0; | |
6592 v36[2].texcoord.x = 0.0; | |
6593 v36[2].texcoord.y = 0.0; | |
6594 v36[3].pos.x = v9; | |
6595 v36[3].pos.y = v6; | |
6596 v36[3].pos.z = 0.0; | |
6597 v36[3].rhw = 1.0; | |
6598 v36[3].texcoord.x = 0.0; | |
6599 v36[3].texcoord.y = 0.0; | |
6600 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0)); | |
186 | 6601 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); |
6602 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
6603 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
6604 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA)); | |
6605 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA)); | |
6606 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
6607 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_ALWAYS)); | |
0 | 6608 ErrD3D(pRenderD3D->pDevice->DrawPrimitive( |
6609 D3DPT_TRIANGLEFAN, | |
6610 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
6611 v36, | |
6612 4, | |
6613 28)); | |
186 | 6614 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
6615 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
6616 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
6617 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
6618 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
6619 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_LESS)); | |
1574 | 6620 /*} |
0 | 6621 else |
6622 { | |
6623 v40 = (1.0 - a3) * 65536.0; | |
6624 v39 = v40 + 6.7553994e15; | |
6625 LODWORD(a3) = LODWORD(v39); | |
693 | 6626 v38 = (signed int)(pViewport->uViewportBR_X - pViewport->uViewportTL_X) >> 1; |
6627 HIDWORD(v39) = pViewport->uViewportBR_Y - pViewport->uViewportTL_Y + 1; | |
6628 v13 = pViewport->uViewportTL_X + ecx0->uTargetSurfacePitch - pViewport->uViewportBR_X; | |
6629 v14 = &ecx0->pTargetSurface[pViewport->uViewportTL_X + pViewport->uViewportTL_Y * ecx0->uTargetSurfacePitch]; | |
0 | 6630 v37 = 2 * v13; |
6631 LODWORD(v40) = (int)v14; | |
6632 | |
6633 int __i = 0; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
6634 v15 = dword_F1B430.data(); |
0 | 6635 do |
6636 { | |
6637 v16 = v3; | |
6638 v3 += LODWORD(a3); | |
6639 dword_F1B430[__i++] = v16 >> 16; | |
6640 } | |
6641 //while ( (signed int)v15 < (signed int)&Aureal3D_SplashScreen ); | |
6642 while (__i < 32); | |
6643 | |
6644 if ( pRenderer->uTargetGBits == 6 ) | |
6645 { | |
1574 | 6646 v17 = sr_42690D_colors_cvt(this_); |
0 | 6647 v18 = (65536 - LODWORD(a3)) * (v17 & 0x1F); |
6648 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); | |
6649 v19 = v40; | |
6650 v20 = off_4EFDB0; | |
6651 v21 = HIDWORD(v39); | |
6652 do | |
6653 { | |
6654 v22 = v38; | |
6655 v31 = v21; | |
6656 do | |
6657 { | |
6658 v23 = (*(int *)((char *)v20 | |
6659 + ((((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; | |
6660 result = this_ | |
6661 + (*((int *)v20 | |
6662 + (((unsigned __int8)(*((char *)v20 | |
6663 + ((((unsigned __int16)(*(short *)((char *)v20 | |
6664 + ((*(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); | |
6665 *(unsigned int *)LODWORD(v19) = result; | |
6666 LODWORD(v19) += 4; | |
6667 --v22; | |
6668 } | |
6669 while ( v22 ); | |
6670 LODWORD(v19) += v37; | |
6671 v21 = v31 - 1; | |
6672 } | |
6673 while ( v31 != 1 ); | |
6674 } | |
6675 else | |
6676 { | |
1574 | 6677 v24 = sr_4268E3_smthn_to_a1r5g5b5(this_); |
0 | 6678 v25 = (65536 - LODWORD(a3)) * (v24 & 0x1F); |
6679 this_ = (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3)) | |
6680 * (v24 & 0x3E0) & 0x3E00000u) >> 16 << 16) | (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3)) * (v24 & 0x3E0) & 0x3E00000u) >> 16); | |
6681 v26 = v40; | |
6682 v27 = (char *)off_4EFDB0; | |
6683 v28 = HIDWORD(v39); | |
6684 do | |
6685 { | |
6686 v29 = v38; | |
6687 v32 = v28; | |
6688 do | |
6689 { | |
6690 v30 = 32 | |
6691 * *(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; | |
6692 result = this_ | |
6693 + (*(int *)&v27[4 | |
6694 * (((unsigned __int8)(32 | |
6695 * 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); | |
6696 *(unsigned int *)LODWORD(v26) = result; | |
6697 LODWORD(v26) += 4; | |
6698 --v29; | |
6699 } | |
6700 while ( v29 ); | |
6701 LODWORD(v26) += v37; | |
6702 v28 = v32 - 1; | |
6703 } | |
6704 while ( v32 != 1 ); | |
6705 } | |
1574 | 6706 }*/ |
0 | 6707 return result; |
6708 } | |
6709 | |
6710 //----- (004A5B81) -------------------------------------------------------- | |
727 | 6711 void Render::SetTextureClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW) |
0 | 6712 { |
6713 this->bClip = 1; | |
6714 this->uClipY = uY; | |
6715 this->uClipX = uX; | |
6716 this->uClipW = uW; | |
6717 this->uClipZ = uZ; | |
6718 } | |
6719 | |
6720 //----- (004A5BB6) -------------------------------------------------------- | |
727 | 6721 void Render::ResetTextureClipRect() |
0 | 6722 { |
6723 this->uClipY = 0; | |
6724 this->uClipX = 0; | |
6725 this->bClip = 1; | |
6726 this->uClipW = 480; | |
6727 this->uClipZ = 640; | |
6728 } | |
6729 | |
2069 | 6730 unsigned __int32 Color32(unsigned __int16 color16) |
6731 { | |
6732 unsigned __int32 c = color16; | |
6733 unsigned int b = (c & 31) * 8; | |
6734 unsigned int g = ((c >> 5) & 63) * 4; | |
6735 unsigned int r = ((c >> 11) & 31) * 8; | |
6736 | |
2078 | 6737 return (r << 16) | (g << 8) | b;// |
2069 | 6738 } |
6739 | |
6740 //----- (0040DEF3) -------------------------------------------------------- | |
6741 unsigned __int16 Color16(unsigned __int32 r, unsigned __int32 g, unsigned __int32 b) | |
6742 { | |
6743 //return ((unsigned int)b >> (8 - LOBYTE(pRenderer->uTargetBBits))) | pRenderer->uTargetGMask & (g << (LOBYTE(pRenderer->uTargetGBits) + | |
6744 // LOBYTE(pRenderer->uTargetBBits) - 8)) | pRenderer->uTargetRMask & (r << (LOBYTE(pRenderer->uTargetGBits) + | |
6745 // LOBYTE(pRenderer->uTargetRBits) + LOBYTE(pRenderer->uTargetBBits) - 8)); | |
6746 return (b >> (8 - 5)) | | |
6747 0x7E0 & (g << (6 + 5 - 8)) | | |
6748 0xF800 & (r << (6 + 5 + 5 - 8)); | |
6749 } | |
6750 | |
6751 | |
0 | 6752 //----- (004A5BE3) -------------------------------------------------------- |
6753 void Render::DrawTextureRGB(unsigned int uOutX, unsigned int uOutY, RGBTexture *a4) | |
6754 { | |
6755 int v4; // edi@3 | |
2069 | 6756 //unsigned __int16 *v5; // edx@3 |
0 | 6757 unsigned __int16 *v6; // esi@3 |
6758 unsigned int v8; // eax@5 | |
6759 unsigned int v9; // ebx@5 | |
6760 unsigned int v11; // eax@7 | |
6761 unsigned int v12; // ebx@8 | |
6762 unsigned int v15; // eax@14 | |
6763 int v19; // [sp+10h] [bp-8h]@3 | |
6764 unsigned int uOutXa; // [sp+20h] [bp+8h]@16 | |
6765 int v23; // [sp+28h] [bp+10h]@3 | |
6766 | |
6767 if ( this->uNumSceneBegins && a4 ) | |
6768 { | |
6769 v4 = a4->uWidth; | |
2069 | 6770 //v5 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch]; |
0 | 6771 v6 = a4->pPixels; |
6772 v23 = a4->uHeight; | |
6773 v19 = v4; | |
6774 if ( this->bClip ) | |
6775 { | |
1152 | 6776 if ( (signed int)uOutX < (signed int)this->uClipX ) |
6777 { | |
6778 v8 = this->uClipX - uOutX; | |
6779 v9 = uOutX - this->uClipX; | |
0 | 6780 v8 *= 2; |
6781 v4 += v9; | |
6782 v6 = (unsigned __int16 *)((char *)v6 + v8); | |
2069 | 6783 //v5 = (unsigned __int16 *)((char *)v5 + v8); |
0 | 6784 } |
1152 | 6785 if ( (signed int)uOutY < (signed int)this->uClipY ) |
6786 { | |
6787 v11 = this->uClipY - uOutY; | |
0 | 6788 v6 += v19 * v11; |
6789 v23 += uOutY - this->uClipY; | |
2069 | 6790 //v5 += this->uTargetSurfacePitch * v11; |
0 | 6791 } |
1152 | 6792 v12 = max(this->uClipX, uOutX); |
6793 if ( (signed int)(v4 + v12) > (signed int)this->uClipZ ) | |
6794 { | |
6795 v4 = this->uClipZ - max(this->uClipX, uOutX); | |
6796 } | |
6797 v15 = max(this->uClipY, uOutY); | |
6798 if ( (signed int)(v15 + v23) > (signed int)this->uClipW ) | |
6799 { | |
6800 v23 = this->uClipW - max(this->uClipY, uOutY); | |
6801 } | |
6802 } | |
6803 | |
2069 | 6804 for (int y = 0; y < v23; y++) |
6805 { | |
6806 for (int x = 0; x < v4; x++) | |
6807 { | |
6808 WritePixel16(uOutX + x, uOutY + y, *v6); | |
6809 //*v5 = *v6; | |
6810 //++v5; | |
1152 | 6811 ++v6; |
6812 } | |
6813 v6 += v19 - v4; | |
2069 | 6814 //v5 += this->uTargetSurfacePitch - v4; |
0 | 6815 } |
6816 } | |
6817 } | |
6818 | |
6819 //----- (004A5D33) -------------------------------------------------------- | |
1675 | 6820 void Render::CreditsTextureScroll(unsigned int pX, unsigned int pY, int move_X, int move_Y, RGBTexture *pTexture) |
0 | 6821 { |
2069 | 6822 //unsigned __int16 *v7; // ebx@3 |
1675 | 6823 int full_width; // ecx@3 |
6824 int full_height; // edi@3 | |
2069 | 6825 //int v23; // edi@23 |
0 | 6826 unsigned __int16 *pTexturea; // [sp+28h] [bp+18h]@3 |
6827 | |
6828 if ( this->uNumSceneBegins && pTexture ) | |
6829 { | |
2069 | 6830 /*auto v7 = this->pTargetSurface; |
6831 if (FORCE_16_BITS) | |
6832 v7 = (unsigned __int32 *)((char *)v7 + (pX + pY * this->uTargetSurfacePitch) * 2); | |
6833 else | |
6834 v7 = (unsigned __int32 *)((char *)v7 + (pX + pY * this->uTargetSurfacePitch) * 4);*/ | |
1675 | 6835 full_width = pTexture->uWidth - move_X; |
6836 full_height = pTexture->uHeight - move_Y; | |
6837 pTexturea = &pTexture->pPixels[move_X + move_Y * pTexture->uWidth]; | |
6838 if ( this->bClip ) | |
6839 { | |
6840 if ( pX < this->uClipX )//если кадр выходит за правую границу | |
6841 { | |
6842 pTexturea = (unsigned __int16 *)((char *)pTexturea + (2 * (this->uClipX - pX))); | |
6843 full_width += pX - this->uClipX; | |
2069 | 6844 //v7 = (unsigned __int32 *)((char *)v7 + ((FORCE_16_BITS ? 2 : 4) * (this->uClipX - pX))); |
1675 | 6845 } |
6846 if ( pY < this->uClipY )//если кадр выходит за верхнюю границу | |
6847 { | |
6848 pTexturea += pTexture->uWidth * (this->uClipY - pY); | |
6849 full_height += pY - this->uClipY; | |
2069 | 6850 //v7 = (unsigned __int32 *)((char *)v7 + (FORCE_16_BITS ? 2 : 4) * this->uTargetSurfacePitch * (this->uClipY - pY)); |
1675 | 6851 } |
6852 if ( this->uClipX < pX )//если правая граница окна меньше х координаты кадра | |
6853 this->uClipX = pX; | |
6854 if ( this->uClipY < pY )//если верхняя граница окна меньше y координаты кадра | |
6855 this->uClipY = pY; | |
6856 if ( (full_width + this->uClipX) > this->uClipZ )//если ширина кадра выходит за правую границу | |
6857 { | |
6858 if ( this->uClipX < pX ) | |
6859 this->uClipX = pX; | |
6860 full_width = this->uClipZ - this->uClipX; | |
6861 } | |
6862 if ( (full_height + this->uClipY) > this->uClipW )//если высота кадра выходит за нижнюю границу | |
6863 { | |
6864 if ( this->uClipY < pY ) | |
6865 this->uClipY = pY; | |
6866 full_height = this->uClipW - this->uClipY; | |
6867 } | |
6868 } | |
2069 | 6869 |
6870 for (int y = 0; y < full_height; ++y) | |
6871 { | |
6872 for (int x = 0; x < full_width; ++x) | |
6873 { | |
6874 if ( *pTexturea != Color16(0, 0xFFu, 0xFFu) ) | |
6875 { | |
6876 WritePixel16(pX + x, pY + y, *pTexturea); | |
6877 /*if (FORCE_16_BITS) | |
6878 *(unsigned __int16 *)v7 = *pTexturea; | |
6879 else | |
6880 *(unsigned __int32 *)v7 = r5g6b5_2_r8g8b8(*pTexturea);*/ | |
6881 } | |
0 | 6882 ++pTexturea; |
2069 | 6883 //++v7; |
0 | 6884 } |
2069 | 6885 //v7 += this->uTargetSurfacePitch - full_width; |
1675 | 6886 pTexturea = (unsigned __int16 *)((char *)pTexturea + 2 * (pTexture->uWidth - full_width)); |
2069 | 6887 } |
0 | 6888 } |
6889 } | |
6890 | |
6891 //----- (004A6E7E) -------------------------------------------------------- | |
6892 void Render::_4A6E7E(unsigned int a2, unsigned int a3, Texture *a4) | |
6893 { | |
2069 | 6894 //unsigned __int16 *v4; // eax@4 |
0 | 6895 int v5; // edx@4 |
6896 unsigned int v6; // edi@4 | |
6897 unsigned int v7; // edx@5 | |
6898 unsigned int v8; // edx@6 | |
6899 unsigned int v9; // edx@7 | |
6900 unsigned int v10; // edx@8 | |
6901 unsigned int v11; // ebx@9 | |
6902 unsigned int v12; // esi@11 | |
6903 unsigned int v13; // edx@12 | |
6904 unsigned int v14; // ebx@15 | |
6905 unsigned int v15; // esi@17 | |
6906 unsigned int v16; // edi@18 | |
6907 char v17; // zf@29 | |
6908 int v18; // [sp+14h] [bp-Ch]@4 | |
6909 int v19; // [sp+18h] [bp-8h]@4 | |
6910 unsigned __int8 *v20; // [sp+1Ch] [bp-4h]@4 | |
6911 int v21; // [sp+28h] [bp+8h]@25 | |
6912 int v22; // [sp+28h] [bp+8h]@34 | |
6913 unsigned int v23; // [sp+2Ch] [bp+Ch]@23 | |
6914 unsigned int v24; // [sp+2Ch] [bp+Ch]@32 | |
6915 | |
6916 if ( this->uNumSceneBegins && a4 && a4->pPalette16 ) | |
6917 { | |
2069 | 6918 //v4 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; |
710 | 6919 v20 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 6920 v5 = a4->uTextureWidth; |
6921 v6 = a4->uTextureHeight; | |
6922 v19 = a4->uTextureWidth; | |
6923 v18 = a4->uTextureWidth; | |
2069 | 6924 int clipped_out_x = a2; |
6925 int clipped_out_y = a3; | |
0 | 6926 if ( this->bClip ) |
6927 { | |
6928 v7 = this->uClipX; | |
6929 if ( (signed int)a2 < (signed int)v7 ) | |
6930 { | |
6931 v8 = v7 - a2; | |
6932 v20 += v8; | |
6933 v19 += a2 - this->uClipX; | |
2069 | 6934 //v4 += v8; |
6935 clipped_out_x = uClipX; | |
0 | 6936 } |
6937 v9 = this->uClipY; | |
6938 if ( (signed int)a3 < (signed int)v9 ) | |
6939 { | |
6940 v10 = v9 - a3; | |
6941 v20 += v18 * v10; | |
6942 v6 = a3 - this->uClipY + a4->uTextureHeight; | |
2069 | 6943 //v4 += this->uTargetSurfacePitch * v10; |
6944 clipped_out_y = uClipY; | |
0 | 6945 } |
6946 v11 = this->uClipX; | |
6947 v5 = v19; | |
6948 if ( (signed int)v11 < (signed int)a2 ) | |
6949 v11 = a2; | |
6950 v12 = this->uClipZ; | |
6951 if ( (signed int)(v19 + v11) > (signed int)v12 ) | |
6952 { | |
6953 v13 = this->uClipX; | |
6954 if ( (signed int)v13 < (signed int)a2 ) | |
6955 v13 = a2; | |
6956 v5 = v12 - v13; | |
6957 } | |
6958 v14 = this->uClipY; | |
6959 if ( (signed int)v14 < (signed int)a3 ) | |
6960 v14 = a3; | |
6961 v15 = this->uClipW; | |
6962 if ( (signed int)(v6 + v14) > (signed int)v15 ) | |
6963 { | |
6964 v16 = this->uClipY; | |
6965 if ( (signed int)v16 < (signed int)a3 ) | |
6966 v16 = a3; | |
6967 v6 = v15 - v16; | |
6968 } | |
6969 } | |
2069 | 6970 |
6971 for (int y = 0; y < v6; ++y) | |
6972 { | |
6973 for (int x = 0; x < v5; ++x) | |
6974 { | |
6975 if ( *v20 ) | |
6976 WritePixel16(clipped_out_x + x, clipped_out_y + y, ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x7BEF); | |
6977 ++v20; | |
6978 } | |
6979 v20 += v18 - v5; | |
6980 } | |
6981 | |
6982 /*if ( pRenderer->uTargetGBits == 5 ) | |
0 | 6983 { |
6984 if ( (signed int)v6 > 0 ) | |
6985 { | |
6986 v23 = v6; | |
6987 do | |
6988 { | |
6989 if ( v5 > 0 ) | |
6990 { | |
6991 v21 = v5; | |
6992 do | |
6993 { | |
6994 if ( *v20 ) | |
6995 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x3DEF; | |
6996 ++v4; | |
6997 ++v20; | |
6998 --v21; | |
6999 } | |
7000 while ( v21 ); | |
7001 } | |
7002 v20 += v18 - v5; | |
7003 v17 = v23-- == 1; | |
7004 v4 += this->uTargetSurfacePitch - v5; | |
7005 } | |
7006 while ( !v17 ); | |
7007 } | |
7008 } | |
7009 else | |
7010 { | |
7011 if ( (signed int)v6 > 0 ) | |
7012 { | |
7013 v24 = v6; | |
7014 do | |
7015 { | |
7016 if ( v5 > 0 ) | |
7017 { | |
7018 v22 = v5; | |
7019 do | |
7020 { | |
7021 if ( *v20 ) | |
7022 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x7BEF; | |
7023 ++v4; | |
7024 ++v20; | |
7025 --v22; | |
7026 } | |
7027 while ( v22 ); | |
7028 } | |
7029 v20 += v18 - v5; | |
7030 v17 = v24-- == 1; | |
7031 v4 += this->uTargetSurfacePitch - v5; | |
7032 } | |
7033 while ( !v17 ); | |
7034 } | |
2069 | 7035 }*/ |
0 | 7036 } |
7037 } | |
7038 | |
7039 //----- (004A6DF5) -------------------------------------------------------- | |
2069 | 7040 void Render::_4A6DF5(unsigned __int16 *pBitmap, unsigned int uBitmapPitch, Vec2_int_ *pBitmapXY, void *pTarget, unsigned int uTargetPitch, Vec4_int_ *a7) |
0 | 7041 { |
7042 int v8; // ecx@3 | |
7043 unsigned __int16 *v10; // ebx@4 | |
7044 int v11; // esi@4 | |
7045 | |
2069 | 7046 if ( !pBitmap || !pTarget) |
7047 return; | |
7048 | |
2093 | 7049 v8 = a7->z - a7->x; |
7050 v11 = a7->w - a7->y; | |
7051 v10 = (unsigned short *)pTarget + a7->x + uTargetPitch * a7->y; | |
7052 for ( int y = 0; y < v11; ++y ) | |
7053 { | |
7054 for ( int x = 0; x < v8; ++x ) | |
7055 { | |
7056 WritePixel16(a7->x + x, a7->y + y, *v10); | |
7057 ++v10; | |
7058 } | |
7059 v10 += uTargetPitch - v8; | |
7060 } | |
0 | 7061 } |
7062 | |
7063 //----- (004A6D87) -------------------------------------------------------- | |
7064 void Render::FillRectFast(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, unsigned int uColor16) | |
7065 { | |
7066 if (!uNumSceneBegins) | |
7067 return; | |
7068 | |
7069 unsigned __int32 twoColors = (uColor16 << 16) | uColor16; | |
7070 for (uint y = 0; y < uHeight; ++y) | |
7071 { | |
2069 | 7072 void *pDst = (char *)pTargetSurface + (FORCE_16_BITS ? 2 : 4) * (uX + (y + uY) * uTargetSurfacePitch); |
7073 | |
7074 memset32(pDst, | |
2078 | 7075 FORCE_16_BITS ? twoColors : 0xFF000000 |Color32(uColor16), // two colors per int (16bit) or 1 (32bit) |
2069 | 7076 uWidth / (FORCE_16_BITS ? 2 : 1)); // two pixels per int (16bit) or 1 (32bit) |
7077 | |
7078 if (FORCE_16_BITS && uWidth & 1) // we may miss one pixel for 16bit | |
7079 ((unsigned __int16 *)pTargetSurface)[uX + uWidth - 1 + (y + uY) * uTargetSurfacePitch] = uColor16; | |
0 | 7080 } |
7081 } | |
7082 | |
7083 //----- (004A6C4F) -------------------------------------------------------- | |
2073 | 7084 void Render::DrawText(signed int uOutX, signed int uOutY, unsigned __int8 *pFontPixels, unsigned int uCharWidth, |
7085 unsigned int uCharHeight, unsigned __int16 *pFontPalette, | |
7086 unsigned __int16 uFaceColor, unsigned __int16 uShadowColor) | |
0 | 7087 { |
7088 unsigned int v9; // edi@2 | |
7089 unsigned int v10; // esi@2 | |
2069 | 7090 //unsigned __int16 *v11; // eax@2 |
0 | 7091 unsigned int v12; // ebx@3 |
7092 signed int v13; // edx@5 | |
7093 int v14; // edx@6 | |
7094 signed int v15; // ebx@7 | |
7095 unsigned int v16; // edx@9 | |
7096 signed int v17; // edi@10 | |
7097 signed int v18; // ebx@13 | |
7098 unsigned int v19; // edx@15 | |
7099 signed int v20; // esi@16 | |
2069 | 7100 //unsigned int v21; // esi@22 |
0 | 7101 unsigned __int16 v22; // dx@24 |
2069 | 7102 //char v23; // zf@28 |
0 | 7103 unsigned __int8 *v24; // [sp+Ch] [bp-4h]@2 |
2069 | 7104 //unsigned int uOutXa; // [sp+18h] [bp+8h]@20 |
7105 | |
7106 if (!this->uNumSceneBegins) | |
7107 return; | |
7108 | |
0 | 7109 v9 = uCharWidth; |
7110 v10 = uCharHeight; | |
2069 | 7111 //v11 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch]; |
0 | 7112 v24 = pFontPixels; |
2069 | 7113 |
7114 int clipped_out_x = uOutX, clipped_out_y = uOutY; | |
0 | 7115 if ( this->bClip ) |
7116 { | |
7117 v12 = this->uClipX; | |
7118 if ( uOutX < (signed int)v12 ) | |
7119 { | |
7120 v24 = &pFontPixels[v12 - uOutX]; | |
2069 | 7121 //v11 += v12 - uOutX; |
7122 clipped_out_x = uClipX; | |
0 | 7123 v9 = uCharWidth + uOutX - v12; |
7124 } | |
7125 v13 = this->uClipY; | |
7126 if ( uOutY < v13 ) | |
7127 { | |
7128 v14 = v13 - uOutY; | |
7129 v24 += uCharWidth * v14; | |
7130 v10 = uCharHeight + uOutY - this->uClipY; | |
2069 | 7131 //v11 += this->uTargetSurfacePitch * v14; |
7132 clipped_out_y = uClipY; | |
0 | 7133 } |
7134 v15 = this->uClipX; | |
7135 if ( v15 < uOutX ) | |
7136 v15 = uOutX; | |
7137 v16 = this->uClipZ; | |
7138 if ( (signed int)(v9 + v15) > (signed int)v16 ) | |
7139 { | |
7140 v17 = this->uClipX; | |
7141 if ( v17 < uOutX ) | |
7142 v17 = uOutX; | |
7143 v9 = v16 - v17; | |
7144 } | |
7145 v18 = this->uClipY; | |
7146 if ( v18 < uOutY ) | |
7147 v18 = uOutY; | |
7148 v19 = this->uClipW; | |
7149 if ( (signed int)(v10 + v18) > (signed int)v19 ) | |
7150 { | |
7151 v20 = this->uClipY; | |
7152 if ( v20 < uOutY ) | |
7153 v20 = uOutY; | |
7154 v10 = v19 - v20; | |
7155 } | |
7156 } | |
2069 | 7157 |
7158 for (int y = 0; y < v10; ++y) | |
7159 { | |
7160 for (int x = 0; x < v9; ++x) | |
7161 { | |
7162 if (*v24) | |
0 | 7163 { |
2069 | 7164 v22 = uShadowColor; |
7165 if ( *v24 != 1 ) | |
7166 v22 = uFaceColor; | |
2073 | 7167 WritePixel16(clipped_out_x + x, clipped_out_y + y, v22); |
0 | 7168 } |
2073 | 7169 ++v24; |
7170 } | |
7171 v24 += uCharWidth - v9; | |
2069 | 7172 //v23 = uOutXa-- == 1; |
7173 //v11 += this->uTargetSurfacePitch - v9; | |
7174 } | |
0 | 7175 } |
7176 | |
7177 //----- (004A6A68) -------------------------------------------------------- | |
1496 | 7178 void Render::GetLeather(unsigned int a2, unsigned int a3, Texture *a4, __int16 height) |
7179 { | |
0 | 7180 Texture tex; // [sp+Ch] [bp-48h]@1 |
1496 | 7181 |
0 | 7182 memcpy(&tex, a4, sizeof(tex)); |
1496 | 7183 tex.uTextureHeight = a4->uTextureHeight - height; |
7184 if ( (signed __int16)tex.uTextureHeight > 0 ) | |
0 | 7185 DrawTextureIndexed(a2, a3, &tex); |
7186 } | |
7187 | |
7188 //----- (004A6AB1) -------------------------------------------------------- | |
1268 | 7189 void Render::DrawTextPalette( int x, int y, unsigned char* font_pixels, int a5, unsigned int uFontHeight, unsigned __int16 *pPalette, int a8 ) |
7190 { | |
0 | 7191 int v8; // edi@2 |
7192 unsigned int v9; // esi@2 | |
2069 | 7193 //unsigned __int16 *v10; // eax@2 |
0 | 7194 unsigned char *v11; // edx@2 |
7195 unsigned int v12; // ebx@3 | |
7196 signed int v13; // edx@5 | |
7197 int v14; // edx@6 | |
7198 signed int v15; // ebx@7 | |
7199 unsigned int v16; // edx@9 | |
7200 signed int v17; // edi@10 | |
7201 signed int v18; // ebx@13 | |
7202 unsigned int v19; // edx@15 | |
7203 signed int v20; // esi@16 | |
7204 int v21; // ebx@22 | |
7205 char v22; // zf@28 | |
7206 int v23; // ebx@31 | |
7207 unsigned __int16 v24; // si@35 | |
7208 int v25; // [sp+Ch] [bp-4h]@2 | |
7209 int v26; // [sp+1Ch] [bp+Ch]@24 | |
7210 int v27; // [sp+1Ch] [bp+Ch]@33 | |
7211 unsigned int v28; // [sp+20h] [bp+10h]@30 | |
7212 unsigned int v29; // [sp+24h] [bp+14h]@22 | |
7213 unsigned int v30; // [sp+24h] [bp+14h]@31 | |
7214 | |
1980 | 7215 int a2 = x; |
7216 int a3 = y; | |
7217 uint a6 = uFontHeight; | |
2069 | 7218 if (!this->uNumSceneBegins) |
7219 return; | |
7220 | |
0 | 7221 v8 = a5; |
7222 v9 = a6; | |
2069 | 7223 //v10 = &pTargetSurface[x + y * uTargetSurfacePitch]; |
1268 | 7224 v11 = (unsigned char *)font_pixels; |
7225 v25 = (int)font_pixels; | |
2069 | 7226 int clipped_out_x = x; |
7227 int clipped_out_y = y; | |
0 | 7228 if ( this->bClip ) |
7229 { | |
7230 v12 = this->uClipX; | |
7231 if ( a2 < (signed int)v12 ) | |
7232 { | |
1268 | 7233 v25 = v12 - a2 + (int)font_pixels; |
2069 | 7234 //v10 += v12 - a2; |
0 | 7235 v8 = a5 + a2 - v12; |
2069 | 7236 clipped_out_x = uClipX; |
0 | 7237 } |
7238 v13 = this->uClipY; | |
7239 if ( a3 < v13 ) | |
7240 { | |
7241 v14 = v13 - a3; | |
7242 v25 += a5 * v14; | |
7243 v9 = a6 + a3 - this->uClipY; | |
2069 | 7244 //v10 += this->uTargetSurfacePitch * v14; |
7245 clipped_out_y = uClipY; | |
0 | 7246 } |
7247 v15 = this->uClipX; | |
7248 if ( v15 < a2 ) | |
7249 v15 = a2; | |
7250 v16 = this->uClipZ; | |
7251 if ( v8 + v15 > (signed int)v16 ) | |
7252 { | |
7253 v17 = this->uClipX; | |
7254 if ( v17 < a2 ) | |
7255 v17 = a2; | |
7256 v8 = v16 - v17; | |
7257 } | |
7258 v18 = this->uClipY; | |
7259 if ( v18 < a3 ) | |
7260 v18 = a3; | |
7261 v19 = this->uClipW; | |
7262 if ( (signed int)(v9 + v18) > (signed int)v19 ) | |
7263 { | |
7264 v20 = this->uClipY; | |
7265 if ( v20 < a3 ) | |
7266 v20 = a3; | |
7267 v9 = v19 - v20; | |
7268 } | |
7269 v11 = (unsigned char *)v25; | |
7270 } | |
2069 | 7271 |
0 | 7272 if ( a8 ) |
7273 { | |
2069 | 7274 v28 = 0x7FF; // 16bit pRenderer->uTargetGMask | pRenderer->uTargetBMask; |
7275 for (int dy = 0; dy < v9; ++dy) | |
7276 { | |
7277 for (int dx = 0; dx < v8; ++dx) | |
7278 { | |
7279 if ( *v11 ) | |
7280 v24 = pPalette[*v11]; | |
7281 else | |
7282 v24 = v28; | |
7283 WritePixel16(clipped_out_x + dx, clipped_out_y + dy, v24); | |
7284 //*v10 = v24; | |
7285 //++v10; | |
2074 | 7286 ++v11; |
2069 | 7287 //--v27; |
2074 | 7288 |
2069 | 7289 } |
7290 v11 += a5 - v8; | |
7291 } | |
7292 /*if ( (signed int)v9 > 0 ) | |
0 | 7293 { |
7294 v23 = a5; | |
7295 v30 = v9; | |
7296 do | |
7297 { | |
7298 if ( v8 > 0 ) | |
7299 { | |
7300 v27 = v8; | |
7301 do | |
7302 { | |
7303 if ( *v11 ) | |
7304 v24 = pPalette[*v11]; | |
7305 else | |
7306 v24 = v28; | |
7307 *v10 = v24; | |
7308 ++v10; | |
7309 ++v11; | |
7310 --v27; | |
7311 } | |
7312 while ( v27 ); | |
7313 } | |
7314 v11 += v23 - v8; | |
7315 v22 = v30-- == 1; | |
7316 v10 += this->uTargetSurfacePitch - v8; | |
7317 } | |
7318 while ( !v22 ); | |
2069 | 7319 }*/ |
0 | 7320 } |
7321 else | |
7322 { | |
2069 | 7323 for (int dy = 0; dy < v9; ++dy) |
7324 { | |
7325 for (int dx = 0; dx < v8; ++dx) | |
7326 { | |
2074 | 7327 if ( *v11 ) |
2069 | 7328 WritePixel16(clipped_out_x + dx, clipped_out_y + dy, pPalette[*v11]); |
7329 //*v10 = v24; | |
7330 //++v10; | |
2074 | 7331 ++v11; |
2069 | 7332 //--v27; |
7333 } | |
7334 v11 += a5 - v8; | |
7335 } | |
7336 | |
7337 /*if ( (signed int)v9 > 0 ) | |
0 | 7338 { |
7339 v21 = a5; | |
7340 v29 = v9; | |
7341 do | |
7342 { | |
7343 if ( v8 > 0 ) | |
7344 { | |
7345 v26 = v8; | |
7346 do | |
7347 { | |
7348 if ( *v11 ) | |
7349 *v10 = pPalette[*v11]; | |
7350 ++v10; | |
7351 ++v11; | |
7352 --v26; | |
7353 } | |
7354 while ( v26 ); | |
7355 } | |
7356 v11 += v21 - v8; | |
7357 v22 = v29-- == 1; | |
7358 v10 += this->uTargetSurfacePitch - v8; | |
7359 } | |
7360 while ( !v22 ); | |
2069 | 7361 }*/ |
7362 } | |
0 | 7363 } |
7364 | |
7365 //----- (004A68EF) -------------------------------------------------------- | |
7366 void Render::DrawTransparentGreenShade(signed int a2, signed int a3, Texture *pTexture) | |
7367 { | |
2069 | 7368 DrawMasked(a2, a3, pTexture, 0x07E0); |
7369 } | |
7370 | |
0 | 7371 |
7372 //----- (004A6776) -------------------------------------------------------- | |
315 | 7373 void Render::DrawTransparentRedShade(unsigned int a2, unsigned int a3, Texture *a4) |
0 | 7374 { |
2069 | 7375 DrawMasked(a2, a3, a4, 0xF800); |
7376 /*Texture *v4; // edi@2 | |
0 | 7377 unsigned int v5; // ebx@4 |
7378 unsigned __int16 *v6; // eax@4 | |
7379 unsigned int v7; // edx@5 | |
7380 unsigned int v8; // edx@6 | |
7381 unsigned int v9; // edx@7 | |
7382 unsigned int v10; // edx@8 | |
7383 unsigned int v11; // edx@9 | |
7384 unsigned int v12; // esi@12 | |
7385 unsigned int v13; // esi@15 | |
7386 unsigned int v14; // edx@17 | |
7387 unsigned int v15; // esi@18 | |
7388 unsigned __int8 *v16; // ebx@22 | |
7389 char v17; // zf@28 | |
7390 int v18; // [sp+10h] [bp-10h]@4 | |
7391 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
7392 int v20; // [sp+1Ch] [bp-4h]@4 | |
7393 int a2a; // [sp+28h] [bp+8h]@24 | |
7394 unsigned int a3a; // [sp+2Ch] [bp+Ch]@22 | |
7395 unsigned int a4a; // [sp+30h] [bp+10h]@11 | |
7396 | |
7397 if ( this->uNumSceneBegins ) | |
7398 { | |
7399 v4 = a4; | |
7400 if ( a4 ) | |
7401 { | |
7402 if ( a4->pPalette16 ) | |
7403 { | |
7404 v5 = a4->uTextureHeight; | |
7405 v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; | |
710 | 7406 v19 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7407 v20 = a4->uTextureWidth; |
7408 v18 = a4->uTextureWidth; | |
7409 if ( this->bClip ) | |
7410 { | |
7411 v7 = this->uClipX; | |
7412 if ( (signed int)a2 < (signed int)v7 ) | |
7413 { | |
7414 v8 = v7 - a2; | |
7415 v19 += v8; | |
7416 v20 += a2 - this->uClipX; | |
7417 v6 += v8; | |
7418 } | |
7419 v9 = this->uClipY; | |
7420 v5 = a4->uTextureHeight; | |
7421 if ( (signed int)a3 < (signed int)v9 ) | |
7422 { | |
7423 v10 = v9 - a3; | |
7424 v19 += v18 * v10; | |
7425 v5 = a3 - this->uClipY + a4->uTextureHeight; | |
7426 v4 = a4; | |
7427 v6 += this->uTargetSurfacePitch * v10; | |
7428 } | |
7429 v11 = this->uClipX; | |
7430 if ( (signed int)v11 < (signed int)a2 ) | |
7431 v11 = a2; | |
7432 a4a = this->uClipZ; | |
7433 if ( (signed int)(v11 + v20) > (signed int)a4a ) | |
7434 { | |
7435 v12 = this->uClipX; | |
7436 if ( (signed int)v12 < (signed int)a2 ) | |
7437 v12 = a2; | |
7438 v20 = a4a - v12; | |
7439 } | |
7440 v13 = this->uClipY; | |
7441 if ( (signed int)v13 < (signed int)a3 ) | |
7442 v13 = a3; | |
7443 v14 = this->uClipW; | |
7444 if ( (signed int)(v5 + v13) > (signed int)v14 ) | |
7445 { | |
7446 v15 = this->uClipY; | |
7447 if ( (signed int)v15 < (signed int)a3 ) | |
7448 v15 = a3; | |
7449 v5 = v14 - v15; | |
7450 } | |
7451 } | |
7452 if ( (signed int)v5 > 0 ) | |
7453 { | |
7454 a3a = v5; | |
7455 v16 = v19; | |
7456 do | |
7457 { | |
7458 if ( v20 > 0 ) | |
7459 { | |
7460 a2a = v20; | |
7461 do | |
7462 { | |
7463 if ( *v16 ) | |
7464 *v6 = this->uTargetRMask & v4->pPalette16[*v16]; | |
7465 ++v6; | |
7466 ++v16; | |
7467 --a2a; | |
7468 } | |
7469 while ( a2a ); | |
7470 } | |
7471 v16 += v18 - v20; | |
7472 v17 = a3a-- == 1; | |
7473 v6 += this->uTargetSurfacePitch - v20; | |
7474 } | |
7475 while ( !v17 ); | |
7476 } | |
7477 } | |
7478 } | |
2069 | 7479 }*/ |
7480 } | |
7481 | |
7482 //----- (004A68EF) -------------------------------------------------------- | |
7483 void Render::DrawMasked(signed int a2, signed int a3, Texture *pTexture, unsigned __int16 mask) | |
7484 { | |
7485 Texture *v4; // edi@2 | |
7486 unsigned int v5; // ebx@4 | |
7487 //unsigned __int16 *v6; // eax@4 | |
7488 signed int v7; // edx@5 | |
7489 int v8; // edx@6 | |
7490 signed int v9; // edx@7 | |
7491 int v10; // edx@8 | |
7492 signed int v11; // edx@9 | |
7493 signed int v12; // esi@12 | |
7494 signed int v13; // esi@15 | |
7495 unsigned int v14; // edx@17 | |
7496 signed int v15; // esi@18 | |
7497 unsigned __int8 *v16; // ebx@22 | |
7498 char v17; // zf@28 | |
7499 int v18; // [sp+10h] [bp-10h]@4 | |
7500 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
7501 int v20; // [sp+1Ch] [bp-4h]@4 | |
7502 int v21; // [sp+28h] [bp+8h]@24 | |
7503 unsigned int v22; // [sp+2Ch] [bp+Ch]@22 | |
7504 unsigned int pTexturea; // [sp+30h] [bp+10h]@11 | |
7505 | |
7506 if (!uNumSceneBegins || !pTexture) | |
7507 return; | |
7508 | |
7509 v4 = pTexture; | |
7510 | |
7511 if ( pTexture->pPalette16 ) | |
7512 { | |
7513 v5 = pTexture->uTextureHeight; | |
7514 //v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; | |
7515 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask; | |
7516 v20 = pTexture->uTextureWidth; | |
7517 v18 = pTexture->uTextureWidth; | |
7518 int clipped_out_x = a2; | |
7519 int clipped_out_y = a3; | |
7520 if ( this->bClip ) | |
7521 { | |
7522 v7 = this->uClipX; | |
7523 if ( a2 < v7 ) | |
7524 { | |
7525 v8 = v7 - a2; | |
7526 v19 += v8; | |
7527 v20 += a2 - this->uClipX; | |
7528 //v6 += v8; | |
7529 clipped_out_x = uClipX; | |
7530 } | |
7531 v9 = this->uClipY; | |
7532 v5 = pTexture->uTextureHeight; | |
7533 if ( a3 < v9 ) | |
7534 { | |
7535 v10 = v9 - a3; | |
7536 v19 += v18 * v10; | |
7537 v5 = a3 - this->uClipY + pTexture->uTextureHeight; | |
7538 v4 = pTexture; | |
7539 //v6 += this->uTargetSurfacePitch * v10; | |
7540 clipped_out_y = uClipY; | |
7541 } | |
7542 v11 = this->uClipX; | |
7543 if ( v11 < a2 ) | |
7544 v11 = a2; | |
7545 pTexturea = this->uClipZ; | |
7546 if ( v11 + v20 > (signed int)pTexturea ) | |
7547 { | |
7548 v12 = this->uClipX; | |
7549 if ( v12 < a2 ) | |
7550 v12 = a2; | |
7551 v20 = pTexturea - v12; | |
7552 } | |
7553 v13 = this->uClipY; | |
7554 if ( v13 < a3 ) | |
7555 v13 = a3; | |
7556 v14 = this->uClipW; | |
7557 if ( (signed int)(v5 + v13) > (signed int)v14 ) | |
7558 { | |
7559 v15 = this->uClipY; | |
7560 if ( v15 < a3 ) | |
7561 v15 = a3; | |
7562 v5 = v14 - v15; | |
7563 } | |
7564 } | |
7565 | |
7566 v16 = v19; | |
7567 for (int y = 0; y < v5; ++y) | |
7568 { | |
7569 for (int x = 0; x < v20; ++x) | |
7570 { | |
7571 if ( *v16 ) | |
7572 WritePixel16(clipped_out_x + x, clipped_out_y + y, v4->pPalette16[*v16] & mask); | |
7573 ++v16; | |
7574 } | |
7575 v16 += v18 - v20; | |
7576 } | |
7577 | |
7578 /*if ( (signed int)v5 > 0 ) | |
7579 { | |
7580 v22 = v5; | |
7581 v16 = v19; | |
7582 do | |
7583 { | |
7584 if ( v20 > 0 ) | |
7585 { | |
7586 v21 = v20; | |
7587 do | |
7588 { | |
7589 if ( *v16 ) | |
7590 *v6 = this->uTargetGMask & v4->pPalette16[*v16]; | |
7591 ++v6; | |
7592 ++v16; | |
7593 --v21; | |
7594 } | |
7595 while ( v21 ); | |
7596 } | |
7597 v16 += v18 - v20; | |
7598 v17 = v22-- == 1; | |
7599 v6 += this->uTargetSurfacePitch - v20; | |
7600 } | |
7601 while ( !v17 ); | |
7602 }*/ | |
7603 } | |
7604 } | |
7605 | |
0 | 7606 |
7607 //----- (004A65CC) -------------------------------------------------------- | |
7608 void Render::_4A65CC(unsigned int x, unsigned int y, Texture *a4, Texture *a5, int a6, int a7, int a8) | |
7609 { | |
2069 | 7610 //unsigned __int16 *v8; // esi@6 |
0 | 7611 unsigned int v9; // edi@6 |
7612 unsigned int v10; // eax@7 | |
7613 unsigned int v11; // eax@8 | |
7614 unsigned int v12; // eax@9 | |
7615 unsigned int v13; // eax@10 | |
7616 unsigned int v14; // edx@11 | |
7617 unsigned int v15; // eax@13 | |
7618 unsigned int v16; // edx@14 | |
7619 unsigned int v17; // edx@17 | |
7620 unsigned int v18; // eax@19 | |
7621 unsigned int v19; // edx@20 | |
7622 int v20; // eax@27 | |
7623 int v21; // edx@29 | |
7624 int v22; // [sp+Ch] [bp-Ch]@6 | |
7625 int v23; // [sp+Ch] [bp-Ch]@24 | |
7626 unsigned __int8 *v24; // [sp+14h] [bp-4h]@6 | |
7627 int xa; // [sp+20h] [bp+8h]@26 | |
7628 unsigned int ya; // [sp+24h] [bp+Ch]@24 | |
7629 int v27; // [sp+2Ch] [bp+14h]@6 | |
7630 | |
7631 if ( this->uNumSceneBegins && a4 && a4->pPalette16 && a5 && a5->pPalette16 ) | |
7632 { | |
2069 | 7633 //v8 = &this->pTargetSurface[x + y * this->uTargetSurfacePitch]; |
710 | 7634 v24 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7635 v27 = a4->uTextureWidth; |
7636 v9 = a4->uTextureHeight; | |
7637 v22 = a4->uTextureWidth; | |
2069 | 7638 int clipped_out_x = x; |
7639 int clipped_out_y = y; | |
0 | 7640 if ( this->bClip ) |
7641 { | |
7642 v10 = this->uClipX; | |
7643 if ( (signed int)x < (signed int)v10 ) | |
7644 { | |
7645 v11 = v10 - x; | |
7646 v24 += v11; | |
7647 v27 += x - this->uClipX; | |
2069 | 7648 //v8 += v11; |
7649 clipped_out_x = uClipX; | |
0 | 7650 } |
7651 v12 = this->uClipY; | |
7652 if ( (signed int)y < (signed int)v12 ) | |
7653 { | |
7654 v13 = v12 - y; | |
7655 v24 += v22 * v13; | |
7656 v9 = y - this->uClipY + a4->uTextureHeight; | |
2069 | 7657 //v8 += this->uTargetSurfacePitch * v13; |
7658 clipped_out_y = uClipY; | |
0 | 7659 } |
7660 v14 = this->uClipX; | |
7661 if ( (signed int)v14 < (signed int)x ) | |
7662 v14 = x; | |
7663 v15 = this->uClipZ; | |
7664 if ( (signed int)(v27 + v14) > (signed int)v15 ) | |
7665 { | |
7666 v16 = this->uClipX; | |
7667 if ( (signed int)v16 < (signed int)x ) | |
7668 v16 = x; | |
7669 v27 = v15 - v16; | |
7670 } | |
7671 v17 = this->uClipY; | |
7672 if ( (signed int)v17 < (signed int)y ) | |
7673 v17 = y; | |
7674 v18 = this->uClipW; | |
7675 if ( (signed int)(v9 + v17) > (signed int)v18 ) | |
7676 { | |
7677 v19 = this->uClipY; | |
7678 if ( (signed int)v19 < (signed int)y ) | |
7679 v19 = y; | |
7680 v9 = v18 - v19; | |
7681 } | |
7682 } | |
2069 | 7683 |
7684 for (int dy = 0; dy < v9; ++dy) | |
7685 { | |
7686 for (int dx = 0; dx < v27; ++dx) | |
7687 { | |
7688 v20 = *v24; | |
7689 if ( v20 >= a7 && v20 <= a8 ) | |
7690 { | |
7691 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7692 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7693 v21 = 2 * a8 - v21 - a7; | |
7694 //*v8 = a4->pPalette16[v21]; | |
7695 WritePixel16(clipped_out_x + dx, clipped_out_y + dy, a4->pPalette16[v21]); | |
7696 } | |
7697 ++v24; | |
7698 } | |
7699 v24 += v22 - v27; | |
7700 } | |
7701 /*if ( (signed int)v9 > 0 ) | |
0 | 7702 { |
7703 ya = v9; | |
7704 v23 = v22 - v27; | |
7705 do | |
7706 { | |
7707 if ( v27 > 0 ) | |
7708 { | |
7709 xa = v27; | |
7710 do | |
7711 { | |
7712 v20 = *v24; | |
7713 if ( v20 >= a7 && v20 <= a8 ) | |
7714 { | |
7715 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7716 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7717 v21 = 2 * a8 - v21 - a7; | |
7718 *v8 = a4->pPalette16[v21]; | |
7719 } | |
7720 ++v8; | |
7721 ++v24; | |
7722 --xa; | |
7723 } | |
7724 while ( xa ); | |
7725 } | |
7726 v8 += this->uTargetSurfacePitch - v27; | |
7727 v24 += v23; | |
7728 --ya; | |
7729 } | |
7730 while ( ya ); | |
2069 | 7731 }*/ |
0 | 7732 } |
7733 } | |
7734 | |
7735 //----- (004A63E6) -------------------------------------------------------- | |
1455 | 7736 void Render::DrawAura(unsigned int a2, unsigned int a3, Texture *a4, Texture *a5, int a6, int a7, int a8) |
0 | 7737 { |
7738 Texture *v8; // eax@2 | |
2069 | 7739 //Texture *v9; // ebx@4 |
7740 //unsigned __int16 *v10; // esi@6 | |
0 | 7741 unsigned int v11; // edi@7 |
7742 unsigned int v12; // eax@9 | |
7743 unsigned int v13; // eax@10 | |
7744 unsigned int v14; // edx@11 | |
7745 unsigned int v15; // eax@13 | |
7746 unsigned int v16; // edx@14 | |
7747 unsigned int v17; // edx@17 | |
7748 unsigned int v18; // eax@19 | |
7749 unsigned int v19; // edx@20 | |
7750 int v20; // eax@27 | |
7751 int v21; // edx@29 | |
7752 int v22; // [sp+Ch] [bp-Ch]@6 | |
7753 int v23; // [sp+Ch] [bp-Ch]@24 | |
7754 int v24; // [sp+10h] [bp-8h]@6 | |
7755 int v25; // [sp+14h] [bp-4h]@6 | |
7756 int i; // [sp+20h] [bp+8h]@25 | |
7757 int v27; // [sp+24h] [bp+Ch]@23 | |
7758 unsigned __int8 *v28; // [sp+28h] [bp+10h]@6 | |
7759 | |
7760 if ( this->uNumSceneBegins ) | |
7761 { | |
7762 v8 = a4; | |
7763 if ( a4 ) | |
7764 { | |
7765 if ( a4->pPalette16 ) | |
7766 { | |
7767 if ( a5 ) | |
7768 { | |
7769 if ( a5->pPalette16 ) | |
7770 { | |
2069 | 7771 //v10 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; |
710 | 7772 v28 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7773 v25 = v8->uTextureWidth; |
7774 v24 = v8->uTextureHeight; | |
7775 v22 = v8->uTextureWidth; | |
2069 | 7776 |
7777 int clipped_out_x = a2; | |
7778 int clipped_out_y = a3; | |
0 | 7779 if ( this->bClip ) |
7780 { | |
7781 v11 = this->uClipX; | |
7782 if ( (signed int)a2 < (signed int)v11 ) | |
7783 { | |
7784 v28 += v11 - a2; | |
7785 v25 += a2 - v11; | |
2069 | 7786 //v10 += v11 - a2; |
7787 clipped_out_x = uClipX; | |
0 | 7788 } |
7789 v12 = this->uClipY; | |
7790 if ( (signed int)a3 < (signed int)v12 ) | |
7791 { | |
7792 v13 = v12 - a3; | |
7793 v28 += v22 * v13; | |
7794 v24 += a3 - this->uClipY; | |
2069 | 7795 //v10 += this->uTargetSurfacePitch * v13; |
7796 clipped_out_y = uClipY; | |
0 | 7797 } |
7798 v14 = this->uClipX; | |
7799 if ( (signed int)v14 < (signed int)a2 ) | |
7800 v14 = a2; | |
7801 v15 = this->uClipZ; | |
7802 if ( (signed int)(v25 + v14) > (signed int)v15 ) | |
7803 { | |
7804 v16 = this->uClipX; | |
7805 if ( (signed int)v16 < (signed int)a2 ) | |
7806 v16 = a2; | |
7807 v25 = v15 - v16; | |
7808 } | |
7809 v17 = this->uClipY; | |
7810 if ( (signed int)v17 < (signed int)a3 ) | |
7811 v17 = a3; | |
7812 v18 = this->uClipW; | |
7813 if ( (signed int)(v24 + v17) > (signed int)v18 ) | |
7814 { | |
7815 v19 = this->uClipY; | |
7816 if ( (signed int)v19 < (signed int)a3 ) | |
7817 v19 = a3; | |
7818 v24 = v18 - v19; | |
7819 } | |
7820 } | |
2069 | 7821 |
0 | 7822 v27 = 0; |
2069 | 7823 for (int y = 0; y < v24; ++y) |
7824 { | |
7825 for (int x = 0; x < v25; ++x) | |
7826 { | |
7827 if ( *v28 ) | |
7828 { | |
7829 v20 = *(&a5->pLevelOfDetail0_prolly_alpha_mask[i & a5->uWidthMinus1] + a5->uTextureWidth * (v27 & a5->uHeightMinus1)); | |
7830 if ( v20 >= a7 ) | |
7831 { | |
7832 if ( v20 <= a8 ) | |
7833 { | |
7834 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7835 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7836 v21 = 2 * a8 - v21 - a7; | |
7837 //v9 = a5; | |
7838 //*v10 = a5->pPalette16[v21]; | |
7839 WritePixel16(clipped_out_x + x, clipped_out_y + y, a5->pPalette16[v21]); | |
7840 } | |
7841 } | |
7842 } | |
7843 v28++; | |
7844 } | |
7845 v28 += v22 - v25; | |
7846 } | |
7847 | |
7848 /*if ( v24 > 0 ) | |
0 | 7849 { |
7850 v23 = v22 - v25; | |
7851 do | |
7852 { | |
7853 for ( i = 0; i < v25; ++v28 ) | |
7854 { | |
7855 if ( *v28 ) | |
7856 { | |
710 | 7857 v20 = *(&v9->pLevelOfDetail0_prolly_alpha_mask[i & v9->uWidthMinus1] + v9->uTextureWidth * (v27 & v9->uHeightMinus1)); |
0 | 7858 if ( v20 >= a7 ) |
7859 { | |
7860 if ( v20 <= a8 ) | |
7861 { | |
7862 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7863 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7864 v21 = 2 * a8 - v21 - a7; | |
7865 v9 = a5; | |
7866 *v10 = a5->pPalette16[v21]; | |
7867 } | |
7868 } | |
7869 } | |
7870 ++i; | |
7871 ++v10; | |
7872 } | |
7873 ++v27; | |
7874 v10 += this->uTargetSurfacePitch - v25; | |
7875 v28 += v23; | |
7876 } | |
7877 while ( v27 < v24 ); | |
2069 | 7878 }*/ |
7879 | |
7880 | |
7881 | |
0 | 7882 } |
7883 } | |
7884 } | |
7885 } | |
7886 } | |
7887 } | |
7888 | |
7889 //----- (004A6274) -------------------------------------------------------- | |
7890 void Render::DrawTextureTransparent(unsigned int uX, unsigned int uY, Texture *pTexture) | |
7891 { | |
7892 Texture *pCurrentTexture; // edi@2 | |
7893 int uHeight; // ebx@4 | |
2069 | 7894 //unsigned __int16 *v6; // eax@4 |
0 | 7895 unsigned int v7; // edx@5 |
7896 unsigned int v8; // edx@6 | |
7897 unsigned int v9; // edx@7 | |
7898 unsigned int v10; // edx@8 | |
7899 unsigned int v11; // edx@9 | |
7900 unsigned int v12; // esi@12 | |
7901 unsigned int v13; // esi@15 | |
7902 unsigned int v14; // edx@17 | |
7903 unsigned int v15; // esi@18 | |
7904 unsigned __int8 *v16; // ebx@22 | |
7905 char uFlag; // zf@28 | |
7906 int v18; // [sp+10h] [bp-10h]@4 | |
7907 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
7908 int uWidth; // [sp+1Ch] [bp-4h]@4 | |
7909 int uXa; // [sp+28h] [bp+8h]@24 | |
7910 unsigned int uYa; // [sp+2Ch] [bp+Ch]@22 | |
7911 unsigned int pTexturea; // [sp+30h] [bp+10h]@11 | |
7912 | |
7913 if ( this->uNumSceneBegins ) | |
7914 { | |
7915 pCurrentTexture = pTexture; | |
7916 if ( pTexture ) | |
7917 { | |
7918 if ( pTexture->pPalette16 ) | |
7919 { | |
7920 uHeight = pTexture->uTextureHeight; | |
2069 | 7921 //v6 = &this->pTargetSurface[uX + uY * this->uTargetSurfacePitch]; |
710 | 7922 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7923 uWidth = pTexture->uTextureWidth; |
7924 v18 = pTexture->uTextureWidth; | |
2069 | 7925 |
7926 int clipped_out_x = uX; | |
7927 int clipped_out_y = uY; | |
0 | 7928 if ( this->bClip ) |
7929 { | |
7930 v7 = this->uClipX; | |
7931 if ( (signed int)uX < (signed int)v7 ) | |
7932 { | |
7933 v8 = v7 - uX; | |
7934 v19 += v8; | |
7935 uWidth += uX - this->uClipX; | |
2069 | 7936 //v6 += v8; |
7937 clipped_out_x = uClipX; | |
0 | 7938 } |
7939 v9 = this->uClipY; | |
7940 uHeight = pTexture->uTextureHeight; | |
7941 if ( (signed int)uY < (signed int)v9 ) | |
7942 { | |
7943 v10 = v9 - uY; | |
7944 v19 += v18 * v10; | |
7945 uHeight = uY - this->uClipY + pTexture->uTextureHeight; | |
7946 pCurrentTexture = pTexture; | |
2069 | 7947 //v6 += this->uTargetSurfacePitch * v10; |
7948 clipped_out_y = uClipY; | |
0 | 7949 } |
7950 v11 = this->uClipX; | |
7951 if ( (signed int)v11 < (signed int)uX ) | |
7952 v11 = uX; | |
7953 pTexturea = this->uClipZ; | |
7954 if ( (signed int)(v11 + uWidth) > (signed int)pTexturea ) | |
7955 { | |
7956 v12 = this->uClipX; | |
7957 if ( (signed int)v12 < (signed int)uX ) | |
7958 v12 = uX; | |
7959 uWidth = pTexturea - v12; | |
7960 } | |
7961 v13 = this->uClipY; | |
7962 if ( (signed int)v13 < (signed int)uY ) | |
7963 v13 = uY; | |
7964 v14 = this->uClipW; | |
7965 if ( (signed int)(uHeight + v13) > (signed int)v14 ) | |
7966 { | |
7967 v15 = this->uClipY; | |
7968 if ( (signed int)v15 < (signed int)uY ) | |
7969 v15 = uY; | |
7970 uHeight = v14 - v15; | |
7971 } | |
7972 } | |
2069 | 7973 |
7974 v16 = v19; | |
7975 for (int y = 0; y < uHeight; ++y) | |
7976 { | |
7977 for (int x = 0; x < uWidth; ++x) | |
7978 { | |
7979 if ( *v16 ) | |
7980 WritePixel16(clipped_out_x + x, clipped_out_y + y, pCurrentTexture->pPalette16[*v16]); | |
7981 ++v16; | |
7982 } | |
7983 v16 += v18 - uWidth; | |
7984 } | |
7985 /*if ( (signed int)uHeight > 0 ) | |
0 | 7986 { |
7987 uYa = uHeight; | |
7988 v16 = v19; | |
7989 do | |
7990 { | |
7991 if ( uWidth > 0 ) | |
7992 { | |
7993 uXa = uWidth; | |
7994 do | |
7995 { | |
7996 if ( *v16 ) | |
7997 *v6 = pCurrentTexture->pPalette16[*v16]; | |
7998 ++v6; | |
7999 ++v16; | |
8000 } | |
8001 while ( uXa-- !=1 ); | |
8002 } | |
8003 v16 += v18 - uWidth; | |
8004 uFlag = uYa-- == 1; | |
8005 v6 += this->uTargetSurfacePitch - uWidth; | |
8006 } | |
8007 while ( !uFlag ); | |
2069 | 8008 }*/ |
0 | 8009 } |
8010 } | |
8011 } | |
8012 } | |
8013 | |
8014 //----- (004A612A) -------------------------------------------------------- | |
710 | 8015 void Render::DrawMaskToZBuffer(signed int uOutX, unsigned int uOutY, Texture *pTexture, int zVal) |
0 | 8016 { |
8017 Texture *v5; // eax@2 | |
8018 unsigned int v6; // edx@3 | |
8019 int v7; // ebx@3 | |
8020 int v8; // edi@3 | |
8021 signed int v9; // eax@4 | |
8022 int v10; // eax@5 | |
8023 unsigned int v11; // esi@6 | |
8024 signed int v12; // esi@8 | |
8025 unsigned int v13; // eax@10 | |
8026 signed int v14; // esi@11 | |
8027 unsigned int v15; // esi@14 | |
8028 unsigned int v16; // eax@16 | |
8029 unsigned int v17; // ecx@17 | |
8030 int v18; // edx@23 | |
8031 int v19; // [sp+Ch] [bp-Ch]@3 | |
8032 int v20; // [sp+10h] [bp-8h]@3 | |
8033 int uOutXa; // [sp+20h] [bp+8h]@21 | |
8034 unsigned __int8 *uOutYa; // [sp+24h] [bp+Ch]@3 | |
8035 int *pZBuffer; // [sp+28h] [bp+10h]@3 | |
8036 | |
8037 if ( this->uNumSceneBegins ) | |
8038 { | |
8039 v5 = pTexture; | |
8040 if ( pTexture ) | |
8041 { | |
8042 v6 = uOutY; | |
8043 v7 = pTexture->uTextureHeight; | |
8044 pZBuffer = &this->pActiveZBuffer[uOutX + 640 * uOutY]; | |
710 | 8045 uOutYa = v5->pLevelOfDetail0_prolly_alpha_mask; |
0 | 8046 v8 = v5->uTextureWidth; |
8047 v20 = v5->uTextureWidth; | |
8048 v19 = v5->uTextureWidth; | |
8049 if ( this->bClip ) | |
8050 { | |
8051 v9 = this->uClipX; | |
8052 if ( uOutX < v9 ) | |
8053 { | |
8054 v10 = v9 - uOutX; | |
8055 uOutYa += v10; | |
8056 v8 += uOutX - this->uClipX; | |
8057 v20 = v8; | |
8058 pZBuffer += v10; | |
8059 } | |
8060 v11 = this->uClipY; | |
8061 if ( (signed int)v6 < (signed int)v11 ) | |
8062 { | |
8063 uOutYa += v19 * (v11 - v6); | |
8064 v7 += v6 - v11; | |
8065 pZBuffer += 640 * (v11 - v6); | |
8066 v8 = v20; | |
8067 } | |
8068 v12 = this->uClipX; | |
8069 if ( v12 < uOutX ) | |
8070 v12 = uOutX; | |
8071 v13 = this->uClipZ; | |
8072 if ( v8 + v12 > (signed int)v13 ) | |
8073 { | |
8074 v14 = this->uClipX; | |
8075 if ( v14 < uOutX ) | |
8076 v14 = uOutX; | |
8077 v8 = v13 - v14; | |
8078 } | |
8079 v15 = this->uClipY; | |
8080 if ( (signed int)v15 < (signed int)v6 ) | |
8081 v15 = v6; | |
8082 v16 = this->uClipW; | |
8083 if ( (signed int)(v7 + v15) > (signed int)v16 ) | |
8084 { | |
8085 v17 = this->uClipY; | |
8086 if ( (signed int)v17 >= (signed int)v6 ) | |
8087 v6 = v17; | |
8088 v7 = v16 - v6; | |
8089 } | |
8090 } | |
8091 if ( v7 > 0 ) | |
8092 { | |
8093 uOutXa = v7; | |
8094 do | |
8095 { | |
8096 if ( v8 > 0 ) | |
8097 { | |
8098 v18 = v8; | |
8099 do | |
8100 { | |
8101 if ( *uOutYa ) | |
8102 *pZBuffer = zVal; | |
8103 ++pZBuffer; | |
8104 ++uOutYa; | |
8105 --v18; | |
8106 } | |
8107 while ( v18 ); | |
8108 } | |
8109 pZBuffer += 640 - v8; | |
8110 uOutYa += v19 - v8; | |
8111 --uOutXa; | |
8112 } | |
8113 while ( uOutXa ); | |
8114 } | |
8115 } | |
8116 } | |
8117 } | |
8118 | |
8119 //----- (004A601E) -------------------------------------------------------- | |
991 | 8120 void Render::ZBuffer_Fill_2(signed int a2, signed int a3, Texture *pTexture, int a5) |
0 | 8121 { |
8122 signed int v5; // edx@3 | |
8123 int v6; // ebx@3 | |
8124 int v7; // esi@3 | |
8125 void *v8; // esi@3 | |
8126 unsigned int v9; // eax@4 | |
8127 unsigned int v10; // eax@6 | |
8128 signed int v11; // edi@8 | |
8129 unsigned int v12; // eax@10 | |
8130 signed int v13; // edi@11 | |
8131 unsigned int v14; // edi@14 | |
8132 unsigned int v15; // eax@16 | |
8133 unsigned int v16; // ecx@17 | |
8134 int v17; // [sp+18h] [bp+Ch]@3 | |
8135 unsigned int pTexturea; // [sp+1Ch] [bp+10h]@3 | |
8136 | |
8137 if ( this->uNumSceneBegins && pTexture ) | |
8138 { | |
8139 v5 = a3; | |
8140 v6 = pTexture->uTextureHeight; | |
8141 v7 = 5 * a3; | |
8142 v17 = pTexture->uTextureHeight; | |
8143 v8 = &this->pActiveZBuffer[a2 + (v7 << 7)]; | |
8144 pTexturea = pTexture->uTextureWidth; | |
8145 if ( this->bClip ) | |
8146 { | |
8147 v9 = this->uClipX; | |
8148 if ( a2 < (signed int)v9 ) | |
8149 { | |
8150 pTexturea += a2 - v9; | |
8151 v8 = (char *)v8 + 4 * (v9 - a2); | |
8152 } | |
8153 v10 = this->uClipY; | |
8154 if ( v5 < (signed int)v10 ) | |
8155 { | |
8156 v17 += v5 - v10; | |
8157 v8 = (char *)v8 + 2560 * (v10 - v5); | |
8158 } | |
8159 v11 = this->uClipX; | |
8160 if ( v11 < a2 ) | |
8161 v11 = a2; | |
8162 v12 = this->uClipZ; | |
8163 if ( (signed int)(pTexturea + v11) > (signed int)v12 ) | |
8164 { | |
8165 v13 = this->uClipX; | |
8166 if ( v13 < a2 ) | |
8167 v13 = a2; | |
8168 pTexturea = v12 - v13; | |
8169 } | |
8170 v14 = this->uClipY; | |
8171 if ( (signed int)v14 < v5 ) | |
8172 v14 = v5; | |
8173 v6 = v17; | |
8174 v15 = this->uClipW; | |
8175 if ( (signed int)(v17 + v14) > (signed int)v15 ) | |
8176 { | |
8177 v16 = this->uClipY; | |
8178 if ( (signed int)v16 < v5 ) | |
8179 v16 = v5; | |
8180 v6 = v15 - v16; | |
8181 } | |
8182 } | |
8183 if ( v6 > 0 ) | |
8184 { | |
8185 do | |
8186 { | |
8187 if ( (signed int)pTexturea > 0 ) | |
8188 { | |
8189 memset32(v8, a5, pTexturea); | |
8190 v8 = (char *)v8 + 4 * pTexturea; | |
8191 } | |
8192 v8 = (char *)v8 + 4 * (640 - pTexturea); | |
8193 --v6; | |
8194 } | |
8195 while ( v6 ); | |
8196 } | |
8197 } | |
8198 } | |
8199 | |
8200 //----- (004A5EB2) -------------------------------------------------------- | |
8201 void Render::DrawTextureIndexed(unsigned int uX, unsigned int uY, Texture *a4) | |
8202 { | |
8203 Texture *v4; // edi@2 | |
2069 | 8204 int v5; // ebx@4 |
8205 //unsigned __int16 *pTarget; // eax@4 | |
0 | 8206 unsigned int v7; // edx@5 |
8207 unsigned int v8; // edx@6 | |
8208 unsigned int v9; // edx@7 | |
8209 unsigned int v10; // edx@8 | |
8210 unsigned int v11; // edx@9 | |
8211 unsigned int v12; // esi@12 | |
8212 unsigned int v13; // esi@15 | |
2069 | 8213 //unsigned int v14; // edx@17 |
0 | 8214 unsigned int v15; // esi@18 |
8215 unsigned __int8 *v16; // edx@22 | |
8216 char v17; // zf@26 | |
8217 int v18; // [sp+10h] [bp-10h]@4 | |
8218 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
8219 int v20; // [sp+1Ch] [bp-4h]@4 | |
8220 int uXa; // [sp+28h] [bp+8h]@24 | |
8221 unsigned int uYa; // [sp+2Ch] [bp+Ch]@22 | |
8222 unsigned int v23; // [sp+30h] [bp+10h]@11 | |
8223 | |
8224 if ( this->uNumSceneBegins ) | |
8225 { | |
8226 v4 = a4; | |
8227 if ( a4 ) | |
8228 { | |
8229 if ( a4->pPalette16 ) | |
8230 { | |
8231 v5 = a4->uTextureHeight; | |
2069 | 8232 //pTarget = &this->pTargetSurface[uX + uY * this->uTargetSurfacePitch]; |
710 | 8233 v19 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 8234 v20 = a4->uTextureWidth; |
8235 v18 = a4->uTextureWidth; | |
2069 | 8236 |
8237 int clipped_out_x = uX; | |
8238 int clipped_out_y = uY; | |
0 | 8239 if ( this->bClip ) |
8240 { | |
8241 v7 = this->uClipX; | |
8242 if ( (signed int)uX < (signed int)v7 ) | |
8243 { | |
8244 v8 = v7 - uX; | |
8245 v19 += v8; | |
8246 v20 += uX - this->uClipX; | |
2069 | 8247 //pTarget += v8; |
8248 clipped_out_x = uClipX; | |
0 | 8249 } |
8250 v9 = this->uClipY; | |
8251 v5 = a4->uTextureHeight; | |
8252 if ( (signed int)uY < (signed int)v9 ) | |
8253 { | |
8254 v10 = v9 - uY; | |
8255 v19 += v18 * v10; | |
8256 v5 = uY - this->uClipY + a4->uTextureHeight; | |
8257 v4 = a4; | |
2069 | 8258 //pTarget += this->uTargetSurfacePitch * v10; |
8259 clipped_out_y = uClipY; | |
0 | 8260 } |
8261 v11 = this->uClipX; | |
8262 if ( (signed int)v11 < (signed int)uX ) | |
8263 v11 = uX; | |
8264 v23 = this->uClipZ; | |
8265 if ( (signed int)(v11 + v20) > (signed int)v23 ) | |
8266 { | |
8267 v12 = this->uClipX; | |
8268 if ( (signed int)v12 < (signed int)uX ) | |
8269 v12 = uX; | |
8270 v20 = v23 - v12; | |
8271 } | |
8272 v13 = this->uClipY; | |
8273 if ( (signed int)v13 < (signed int)uY ) | |
8274 v13 = uY; | |
2069 | 8275 |
8276 if ( (signed int)(v5 + v13) > (signed int)uClipW ) | |
0 | 8277 { |
8278 v15 = this->uClipY; | |
8279 if ( (signed int)v15 < (signed int)uY ) | |
8280 v15 = uY; | |
2069 | 8281 v5 = uClipW - v15; |
0 | 8282 } |
8283 } | |
2069 | 8284 |
8285 v16 = v19; | |
8286 for (int y = 0; y < v5; ++y) | |
8287 { | |
8288 for (int x = 0; x < v20; ++x) | |
8289 { | |
8290 WritePixel16(clipped_out_x + x, clipped_out_y + y, v4->pPalette16[*v16]); | |
8291 ++v16; | |
8292 } | |
8293 v16 += v18 - v20; | |
8294 } | |
8295 /*if ( (signed int)v5 > 0 ) | |
0 | 8296 { |
8297 uYa = v5; | |
8298 v16 = v19; | |
8299 do | |
8300 { | |
8301 if ( v20 > 0 ) | |
8302 { | |
8303 uXa = v20; | |
8304 do | |
8305 { | |
8306 *pTarget = v4->pPalette16[*v16]; | |
8307 ++pTarget; | |
8308 ++v16; | |
8309 --uXa; | |
8310 } | |
8311 while ( uXa ); | |
8312 } | |
8313 v16 += v18 - v20; | |
8314 v17 = uYa-- == 1; | |
8315 pTarget += this->uTargetSurfacePitch - v20; | |
8316 } | |
8317 while ( !v17 ); | |
2069 | 8318 }*/ |
0 | 8319 } |
8320 } | |
8321 } | |
8322 } | |
8323 | |
8324 //----- (004667E9) -------------------------------------------------------- | |
8325 void Render::ChangeBetweenWinFullscreenModes() | |
8326 { | |
8327 float v0; // ST14_4@17 | |
8328 int v4; // edx@26 | |
8329 ObjectDesc *v5; // eax@26 | |
8330 RGBTexture *v6; // esi@33 | |
8331 const char *v8; // [sp-4h] [bp-28h]@33 | |
8332 struct tagRECT Rect; // [sp+14h] [bp-10h]@15 | |
8333 | |
2061 | 8334 /*if ( !pRenderer->bWindowMode && (dword_6BE364_game_settings_1 & 2) ) |
0 | 8335 { |
1458 | 8336 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 | 8337 return; |
2061 | 8338 }*/ |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8339 if ( pRenderer->bWindowMode || !pRenderer->pRenderD3D || pRenderer->pRenderD3D->pAvailableDevices->bIsDeviceCompatible ) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8340 { |
0 | 8341 if ( pEventTimer->bPaused ) |
2061 | 8342 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0800; |
0 | 8343 else |
8344 pEventTimer->Pause(); | |
8345 if ( pMiscTimer->bPaused ) | |
2061 | 8346 dword_6BE364_game_settings_1 |= GAME_SETTINGS_1000; |
0 | 8347 else |
8348 pMiscTimer->Pause(); | |
8349 pMouse->bActive = 0; | |
8350 if ( pRenderer->pRenderD3D ) | |
8351 { | |
8352 pBitmaps_LOD->ReleaseHardwareTextures(); | |
8353 pSprites_LOD->ReleaseAll(); | |
8354 } | |
8355 if ( pRenderer->bWindowMode ) | |
8356 { | |
1802 | 8357 //SetMenu(hWnd, 0); |
8358 //SetWindowLongA(hWnd, -20, 0); | |
8359 //SetWindowLongA(hWnd, -16, 0x10000000u); | |
8360 window->SetFullscreenMode(); | |
8361 pRenderer->InitializeFullscreen(); | |
0 | 8362 v0 = (double)(signed int)uGammaPos * 0.1 + 0.6; |
8363 pGame->pGammaController->Initialize(v0); | |
8364 } | |
8365 else | |
8366 { | |
1802 | 8367 //ClipCursor(0); |
8368 window->SetWindowedMode(window->GetWidth(), window->GetHeight()); | |
8369 pRenderer->SwitchToWindow(); | |
0 | 8370 } |
8371 if ( pRenderer->pRenderD3D ) | |
8372 { | |
8373 pBitmaps_LOD->_410423_move_textures_to_device(); | |
8374 pSprites_LOD->MoveSpritesToVideoMemory(); | |
8375 } | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8376 if (!( pPaletteManager->uNumTargetBBits == pRenderer->uTargetBBits |
0 | 8377 && pPaletteManager->uNumTargetGBits == pRenderer->uTargetGBits |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8378 && pPaletteManager->uNumTargetRBits == pRenderer->uTargetRBits )) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8379 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8380 pPaletteManager->SetColorChannelInfo(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8381 pPaletteManager->RecalculateAll(); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8382 pBitmaps_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8383 pIcons_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8384 for (int i = 0; i < pObjectList->uNumObjects; i++) |
0 | 8385 { |
8386 BYTE3(v4) = 0; | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8387 v5 = &pObjectList->pObjects[i]; |
0 | 8388 *(short *)((char *)&v4 + 1) = v5->uParticleTrailColorR; |
8389 LOBYTE(v4) = v5->uParticleTrailColorG; | |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1110
diff
changeset
|
8390 v5->uParticleTrailColor = v5->uParticleTrailColorB | (v4 << 8); |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8391 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8392 SetUserInterface(pParty->alignment, true); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8393 if ( pVideoPlayer->pVideoFrame.pPixels ) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8394 pVideoPlayer->pVideoFrame.Load(pVideoPlayer->pVideoFrameTextureFilename, 1); |
2006 | 8395 if ( sCurrentMenuID != MENU_CREATEPARTY ) |
8396 { | |
8397 if ( sCurrentMenuID == MENU_CREDITSPROC ) | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8398 dword_A74C88 = 1; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8399 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8400 else |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8401 { |
2006 | 8402 if ( sCurrentMenuID ) |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8403 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8404 v6 = &pTexture_PCX; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8405 pTexture_PCX.Release(); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8406 v8 = "makeme.pcx"; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8407 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8408 else |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8409 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8410 v6 = &pTexture_PCX; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8411 pTexture_PCX.Release(); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8412 v8 = "title.pcx"; |
2006 | 8413 if ( sCurrentMenuID ) |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8414 v8 = "lsave640.pcx"; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8415 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8416 v6->Load(v8, 0); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8417 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8418 } |
0 | 8419 viewparams->bRedrawGameUI = 1; |
688 | 8420 viewparams->InitGrayPalette(); |
0 | 8421 pMouse->SetCurrentCursorBitmap(); |
1802 | 8422 /*if ( pRenderer->bWindowMode ) |
0 | 8423 { |
1655 | 8424 //MoveWindow(hWnd, uWindowX, uWindowY, uWindowWidth, uWindowHeight, 0); |
8425 CenterWindowAndAdjustSize(hWnd, windowed_mode_width, windowed_mode_height); | |
1586 | 8426 ShowWindow(hWnd, SW_SHOWNORMAL); |
1802 | 8427 }*/ |
8428 pMouse->bActive = true; | |
0 | 8429 if ( pVideoPlayer->AnyMovieLoaded() ) |
898 | 8430 pVideoPlayer->SelectMovieType(); |
2061 | 8431 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_0800) |
8432 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_0800; | |
0 | 8433 else |
8434 pEventTimer->Resume(); | |
2061 | 8435 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_1000) |
8436 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_1000; | |
0 | 8437 else |
8438 pMiscTimer->Resume(); | |
8439 } | |
8440 } | |
8441 | |
8442 | |
8443 //----- (004524D8) -------------------------------------------------------- | |
8444 HWLTexture *RenderHWLContainer::LoadTexture(const char *pName, int bMipMaps) | |
8445 { | |
1583 | 8446 //int v11; // eax@13 |
8447 //int v12; // ecx@13 | |
0 | 8448 void *v13; // eax@13 |
1583 | 8449 //unsigned __int8 v14; // zf@13 |
8450 //unsigned __int8 v15; // sf@13 | |
0 | 8451 int v16; // esi@14 |
8452 int v17; // ecx@16 | |
8453 int v18; // esi@16 | |
8454 unsigned __int16 *v19; // eax@16 | |
8455 int v20; // edx@16 | |
8456 int v21; // ecx@16 | |
8457 int v22; // eax@16 | |
8458 int v23; // esi@16 | |
8459 unsigned __int16 *v26; // [sp+24h] [bp-10h]@13 | |
8460 int v27; // [sp+28h] [bp-Ch]@14 | |
8461 int v28; // [sp+2Ch] [bp-8h]@13 | |
8462 int pDestb; // [sp+3Ch] [bp+8h]@15 | |
8463 | |
8464 //v3 = this; | |
8465 //sprintf(Str1, "%s", pName); | |
8466 //v4 = uNumItems; | |
8467 if (!uNumItems) | |
8468 return nullptr; | |
8469 | |
8470 //{ | |
8471 //v5 = 0, pDesta = uNumItems; | |
8472 uint idx1 = 0, | |
8473 idx2 = uNumItems; | |
8474 while (true) | |
8475 { | |
1980 | 8476 uint i = idx1 + (idx2 - idx1) / 2; |
8477 | |
8478 int res = _stricmp(pName, pSpriteNames[i]); | |
0 | 8479 if (!res) |
8480 { | |
8481 fseek(pFile, pSpriteOffsets[i], SEEK_SET); | |
8482 break; | |
8483 } | |
8484 else if (res < 0) | |
8485 idx2 = idx1 + (idx2 - idx1) / 2; | |
8486 else | |
8487 idx1 = i + 1; | |
8488 | |
8489 if ( idx1 >= idx2 ) | |
8490 return false; | |
8491 } | |
8492 | |
8493 | |
8494 uint uCompressedSize = 0; | |
8495 fread(&uCompressedSize, 4, 1, pFile); | |
8496 | |
1980 | 8497 HWLTexture* pTex = new HWLTexture; |
670 | 8498 fread(&pTex->uBufferWidth, 4, 1, pFile); |
8499 fread(&pTex->uBufferHeight, 4, 1, pFile); | |
8500 fread(&pTex->uAreaWidth, 4, 1, pFile); | |
8501 fread(&pTex->uAreaHeigth, 4, 1, pFile); | |
0 | 8502 fread(&pTex->uWidth, 4, 1, pFile); |
8503 fread(&pTex->uHeight, 4, 1, pFile); | |
670 | 8504 fread(&pTex->uAreaX, 4, 1, pFile); |
8505 fread(&pTex->uAreaY, 4, 1, pFile); | |
0 | 8506 |
8507 pTex->pPixels = new unsigned __int16[pTex->uWidth * pTex->uHeight]; | |
8508 if (uCompressedSize) | |
8509 { | |
1980 | 8510 char* pCompressedData = new char[uCompressedSize]; |
0 | 8511 { |
8512 fread(pCompressedData, 1, uCompressedSize, pFile); | |
1980 | 8513 uint uDecompressedSize = pTex->uWidth * pTex->uHeight * sizeof(short); |
0 | 8514 zlib::MemUnzip(pTex->pPixels, &uDecompressedSize, pCompressedData, uCompressedSize); |
8515 } | |
8516 delete [] pCompressedData; | |
8517 } | |
8518 else | |
8519 fread(pTex->pPixels, 2, pTex->uWidth * pTex->uHeight, pFile); | |
8520 | |
1583 | 8521 if ( scale_hwls_to_half ) |
8522 { | |
8523 pTex->uHeight /= 2; | |
8524 pTex->uWidth /= 2; | |
8525 v13 = new unsigned __int16[pTex->uWidth * pTex->uHeight]; | |
0 | 8526 v28 = 0; |
8527 v26 = (unsigned __int16 *)v13; | |
1583 | 8528 if ( pTex->uHeight > 0 ) |
0 | 8529 { |
8530 v16 = pTex->uWidth; | |
8531 v27 = 1; | |
8532 do | |
8533 { | |
8534 pDestb = 0; | |
8535 if ( v16 > 0 ) | |
8536 { | |
8537 do | |
8538 { | |
8539 v17 = v16 * v27; | |
8540 v18 = v28 * v16; | |
8541 v19 = pTex->pPixels; | |
8542 v20 = pDestb + 2 * v18; | |
8543 v21 = (int)&v19[2 * (pDestb + v17)]; | |
8544 v22 = (int)&v19[2 * v20]; | |
8545 LOWORD(v20) = *(unsigned short *)(v21 + 2); | |
8546 LOWORD(v21) = *(unsigned short *)v21; | |
8547 v23 = pDestb++ + v18; | |
1583 | 8548 extern unsigned int __fastcall _452442_color_cvt(unsigned __int16 a1, unsigned __int16 a2, int a3, int a4); |
8549 v26[v23] = _452442_color_cvt(*(unsigned short *)v22, *(unsigned short *)(v22 + 2), v21, v20); | |
0 | 8550 v16 = pTex->uWidth; |
8551 } | |
8552 while (pDestb < pTex->uWidth); | |
8553 } | |
8554 ++v28; | |
8555 v27 += 2; | |
8556 } | |
8557 while ( v28 < (signed int)pTex->uHeight ); | |
8558 } | |
8559 delete [] pTex->pPixels; | |
8560 pTex->pPixels = v26; | |
8561 } | |
8562 return pTex; | |
8563 } | |
8564 | |
8565 //----- (0045271F) -------------------------------------------------------- | |
8566 bool RenderHWLContainer::Release() | |
8567 { | |
8568 __int32 v4; // eax@6 | |
8569 FILE *v5; // ST24_4@6 | |
8570 FILE *File; // [sp+4h] [bp-4h]@6 | |
8571 | |
1162 | 8572 if ( this->bDumpDebug) |
0 | 8573 { |
8574 File = fopen("logd3d.txt", "w"); | |
1162 | 8575 v4 = ftell(this->pFile); |
8576 v5 = this->pFile; | |
8577 this->uDataOffset = v4; | |
8578 fwrite(&this->uNumItems, 4u, 1u, v5); | |
8579 for (int i = 0; i < this->uNumItems; i++) | |
8580 { | |
8581 fwrite(this->pSpriteNames[i], 1u, 0x14u, this->pFile); | |
8582 fprintf(File, "D3D texture name: %s\t\toffset: %x\n", this->pSpriteNames[i], *(unsigned int *)(&(this->pSpriteNames[i]) + 200000/sizeof(char*))); | |
8583 } | |
8584 fwrite(this->pSpriteOffsets, 4u, this->uNumItems, this->pFile); | |
8585 fseek(this->pFile, 4, 0); | |
8586 fwrite(&this->uDataOffset, 4u, 1u, this->pFile); | |
8587 fclose(this->pFile); | |
0 | 8588 fclose(File); |
8589 } | |
8590 else | |
8591 { | |
8592 fclose(this->pFile); | |
1162 | 8593 for (int i = 0; i < this->uNumItems; i++) |
8594 { | |
8595 free(this->pSpriteNames[i]); | |
0 | 8596 } |
8597 } | |
1093 | 8598 return true; |
0 | 8599 } |
8600 | |
8601 //----- (00452347) -------------------------------------------------------- | |
8602 RenderHWLContainer::RenderHWLContainer(): | |
8603 bDumpDebug(false) | |
8604 { | |
8605 this->pFile = 0; | |
8606 uSignature = 0; | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8607 this->uDataOffset = 0; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8608 memset(&this->uNumItems, 0, 0x61A84u); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8609 this->uNumItems = 0; |
1583 | 8610 this->scale_hwls_to_half = false; |
0 | 8611 } |
8612 | |
8613 //----- (0045237F) -------------------------------------------------------- | |
8614 bool RenderHWLContainer::Load(const wchar_t *pFilename) | |
8615 { | |
8616 pFile = _wfopen(pFilename, L"rb"); | |
8617 if (!pFile) | |
8618 { | |
8619 Log::Warning(L"Failed to open file: %s", pFilename); | |
8620 return false; | |
8621 } | |
8622 | |
8623 fread(&uSignature, 1, 4, pFile); | |
8624 if (uSignature != 'TD3D') | |
8625 { | |
8626 Log::Warning(L"Invalid format: %s", pFilename); | |
8627 return false; | |
8628 } | |
8629 | |
8630 fread(&uDataOffset, 4, 1, pFile); | |
8631 fseek(pFile, uDataOffset, SEEK_SET); | |
8632 fread(&uNumItems, 4, 1, pFile); | |
8633 | |
8634 memset(pSpriteNames, 0, 50000 * sizeof(char *)); | |
8635 for (uint i = 0; i < uNumItems; ++i) | |
8636 { | |
8637 pSpriteNames[i] = new char[20]; | |
8638 fread(pSpriteNames[i], 1, 20, pFile); | |
8639 } | |
8640 fread(pSpriteOffsets, 4, uNumItems, pFile); | |
8641 | |
8642 return true; | |
8643 } | |
8644 | |
8645 //----- (004A1C1E) -------------------------------------------------------- | |
8646 void DoRenderBillboards_D3D() | |
8647 { | |
186 | 8648 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP)); |
8649 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
8650 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8651 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8652 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8653 /*if (pRenderer->uNumBillboardsToDraw) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8654 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8655 auto p = &pRenderer->pBillboardRenderListD3D[0]; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8656 for (int i = 0; i < p->uNumVertices; ++i) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8657 { |
1390 | 8658 p->pQuads[i].pos.z -= p->pQuads[i].pos.z * 0.6; |
8659 //p->pQuads[i].rhw = + 0.8 * (1.0f - p->pQuads[i].rhw); | |
8660 } | |
8661 p->pQuads[0].pos.x = 10; | |
8662 p->pQuads[0].pos.y = 10; | |
8663 | |
8664 p->pQuads[1].pos.x = 10; | |
8665 p->pQuads[1].pos.y = 200; | |
8666 | |
8667 p->pQuads[2].pos.x = 100; | |
8668 p->pQuads[2].pos.y = 200; | |
8669 | |
8670 p->pQuads[3].pos.x = 100; | |
8671 p->pQuads[3].pos.y = 10; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8672 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8673 if (p->uOpacity != RenderBillboardD3D::NoBlend) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8674 SetBillboardBlendOptions(p->uOpacity); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8675 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8676 pRenderer->pRenderD3D->pDevice->SetTexture(0, p->pTexture); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8677 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8678 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1390 | 8679 p->pQuads, p->uNumVertices, |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8680 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS)); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8681 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8682 }*/ |
0 | 8683 |
8684 for (uint i = pRenderer->uNumBillboardsToDraw - 1; i != (uint)-1; --i) | |
8685 { | |
1980 | 8686 RenderBillboardD3D* p = &pRenderer->pBillboardRenderListD3D[i]; |
0 | 8687 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8688 if (p->uOpacity != RenderBillboardD3D::NoBlend) |
0 | 8689 SetBillboardBlendOptions(p->uOpacity); |
8690 | |
2006 | 8691 //if((int)p->pTexture!=0xcdcdcdcd) |
101 | 8692 pRenderer->pRenderD3D->pDevice->SetTexture(0, p->pTexture); |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8693 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8694 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1390 | 8695 p->pQuads, p->uNumVertices, |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8696 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS)); |
0 | 8697 } |
8698 | |
8699 if (pRenderer->bFogEnabled) | |
8700 { | |
8701 pRenderer->bFogEnabled = false; | |
186 | 8702 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 8703 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF)); |
8704 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
8705 } | |
186 | 8706 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); |
8707 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
8708 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
8709 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
8710 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
8711 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
0 | 8712 } |
8713 | |
8714 //----- (004A1DA8) -------------------------------------------------------- | |
8715 void SetBillboardBlendOptions(RenderBillboardD3D::OpacityType a1) | |
8716 { | |
8717 switch (a1) | |
8718 { | |
8719 case RenderBillboardD3D::Transparent: | |
8720 { | |
8721 if (pRenderer->bFogEnabled) | |
8722 { | |
8723 pRenderer->bFogEnabled = false; | |
186 | 8724 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 8725 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF)); |
8726 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
8727 } | |
8728 | |
186 | 8729 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA)); |
8730 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA)); | |
8731 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
0 | 8732 } |
8733 break; | |
8734 | |
8735 case RenderBillboardD3D::Opaque_1: | |
8736 case RenderBillboardD3D::Opaque_2: | |
8737 case RenderBillboardD3D::Opaque_3: | |
8738 { | |
8739 if (pRenderer->bUsingSpecular) | |
8740 { | |
8741 if (!pRenderer->bFogEnabled) | |
8742 { | |
8743 pRenderer->bFogEnabled = true; | |
186 | 8744 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); |
8745 } | |
8746 } | |
8747 | |
8748 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
8749 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
8750 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
0 | 8751 } |
8752 break; | |
8753 | |
8754 default: | |
8755 Log::Warning(L"SetBillboardBlendOptions: invalid opacity type (%u)", a1); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8756 assert(false); |
0 | 8757 break; |
8758 } | |
1787 | 8759 } |
1903 | 8760 //----- (00424CD7) -------------------------------------------------------- |
8761 int ODM_NearClip(unsigned int num_vertices) | |
8762 { | |
8763 bool current_vertices_flag; // edi@1 | |
8764 bool next_vertices_flag; // [sp+Ch] [bp-24h]@6 | |
8765 double t; // st6@10 | |
8766 int pNextVertices; | |
8767 | |
8768 if (!num_vertices) | |
8769 return 0; | |
8770 | |
8771 memcpy(&array_50AC10[num_vertices], array_50AC10, sizeof(array_50AC10[0])); | |
8772 current_vertices_flag = 0; | |
8773 if ( array_50AC10[0].vWorldViewPosition.x >= 8.0 ) | |
8774 current_vertices_flag = 1; | |
8775 | |
8776 int out_num_vertices = 0; | |
8777 for (int i = 0; i < num_vertices; ++i) | |
8778 { | |
8779 next_vertices_flag = array_50AC10[i + 1].vWorldViewPosition.x >= 8.0; | |
8780 if ( current_vertices_flag != next_vertices_flag ) | |
8781 { | |
8782 if ( next_vertices_flag ) | |
8783 { | |
8784 //t = neer_clip - v0.x / v1.x - v0.x (формула получения точки пересечения отрезка с плоскостью) | |
8785 t = (8.0 - array_50AC10[i].vWorldViewPosition.x) / (array_50AC10[i + 1].vWorldViewPosition.x - array_50AC10[i].vWorldViewPosition.x); | |
8786 array_507D30[out_num_vertices].vWorldViewPosition.y = (array_50AC10[i + 1].vWorldViewPosition.y - array_50AC10[i].vWorldViewPosition.y) * t + array_50AC10[i].vWorldViewPosition.y; | |
8787 array_507D30[out_num_vertices].vWorldViewPosition.z = (array_50AC10[i + 1].vWorldViewPosition.z - array_50AC10[i].vWorldViewPosition.z) * t + array_50AC10[i].vWorldViewPosition.z; | |
8788 array_507D30[out_num_vertices].u = (array_50AC10[i + 1].u - array_50AC10[i].u) * t + array_50AC10[i].u; | |
8789 array_507D30[out_num_vertices].v = (array_50AC10[i + 1].v - array_50AC10[i].v) * t + array_50AC10[i].v; | |
8790 } | |
8791 else | |
8792 { | |
8793 t = (8.0 - array_50AC10[i + 1].vWorldViewPosition.x) / (array_50AC10[i].vWorldViewPosition.x - array_50AC10[i + 1].vWorldViewPosition.x); | |
8794 array_507D30[out_num_vertices].vWorldViewPosition.y = (array_50AC10[i].vWorldViewPosition.y - array_50AC10[i + 1].vWorldViewPosition.y) * t + array_50AC10[i + 1].vWorldViewPosition.y; | |
8795 array_507D30[out_num_vertices].vWorldViewPosition.z = (array_50AC10[i].vWorldViewPosition.z - array_50AC10[i + 1].vWorldViewPosition.z) * t + array_50AC10[i + 1].vWorldViewPosition.z; | |
8796 array_507D30[out_num_vertices].u = (array_50AC10[i].u - array_50AC10[i + 1].u) * t + array_50AC10[i + 1].u; | |
8797 array_507D30[out_num_vertices].v = (array_50AC10[i].v - array_50AC10[i + 1].v) * t + array_50AC10[i + 1].v; | |
8798 } | |
8799 array_507D30[out_num_vertices].vWorldViewPosition.x = 8.0; | |
8800 array_507D30[out_num_vertices]._rhw = 1.0 / 8.0; | |
1904 | 8801 //array_507D30[out_num_vertices]._rhw = 0x3E000000u; |
1903 | 8802 ++out_num_vertices; |
8803 } | |
8804 if ( next_vertices_flag ) | |
8805 { | |
8806 pNextVertices = out_num_vertices++; | |
8807 memcpy(&array_507D30[pNextVertices], &array_50AC10[i + 1], 0x30); | |
8808 } | |
8809 current_vertices_flag = next_vertices_flag; | |
8810 } | |
8811 return out_num_vertices >= 3 ? out_num_vertices : 0; | |
8812 } | |
1787 | 8813 //----- (00424EE0) -------------------------------------------------------- |
1903 | 8814 int ODM_FarClip(unsigned int uNumVertices) |
1787 | 8815 { |
8816 signed int previous_vertices_flag; // edi@1 | |
8817 double t; // st6@10 | |
8818 bool current_vertices_flag; // [sp+Ch] [bp-28h]@6 | |
8819 signed int depth_num_vertices; // [sp+18h] [bp-1Ch]@1 | |
8820 int pNextVertices; | |
8821 //Доп инфо "Программирование трёхмерных игр для windows" Ламот стр 910 | |
8822 | |
8823 memcpy(&array_50AC10[uNumVertices], array_50AC10, sizeof(array_50AC10[uNumVertices])); | |
8824 depth_num_vertices = 0; | |
8825 previous_vertices_flag = 0; | |
8826 if ( array_50AC10[0].vWorldViewPosition.x <= pODMRenderParams->shading_dist_mist ) | |
8827 previous_vertices_flag = 1;//предыдущая грань меньше границы видимости | |
8828 if ( (signed int)uNumVertices <= 0 ) | |
8829 return 0; | |
8830 for ( uint i = 1; i <= uNumVertices; ++i ) | |
8831 { | |
8832 current_vertices_flag = pODMRenderParams->shading_dist_mist >= array_50AC10[i].vWorldViewPosition.x; | |
8833 if ( previous_vertices_flag != current_vertices_flag )//одна из граней за границей видимости | |
8834 { | |
8835 if ( current_vertices_flag )//текущая грань меньше границы видимости(предыдущая грань за пределами видимости) | |
8836 { | |
8837 //t = far_clip - v0.x / v1.x - v0.x (формула получения точки пересечения отрезка с плоскостью) | |
8838 t = (pODMRenderParams->shading_dist_mist - array_50AC10[i - 1].vWorldViewPosition.x) / (array_50AC10[i].vWorldViewPosition.x - array_50AC10[i - 1].vWorldViewPosition.x); | |
8839 array_507D30[depth_num_vertices].vWorldViewPosition.y = (array_50AC10[i].vWorldViewPosition.y - array_50AC10[i - 1].vWorldViewPosition.y) * t + array_50AC10[i - 1].vWorldViewPosition.y; | |
8840 array_507D30[depth_num_vertices].vWorldViewPosition.z = (array_50AC10[i].vWorldViewPosition.z - array_50AC10[i - 1].vWorldViewPosition.z) * t + array_50AC10[i - 1].vWorldViewPosition.z; | |
8841 array_507D30[depth_num_vertices].u = (array_50AC10[i].u - array_50AC10[i - 1].u) * t + array_50AC10[i - 1].u; | |
8842 array_507D30[depth_num_vertices].v = (array_50AC10[i].v - array_50AC10[i - 1].v) * t + array_50AC10[i - 1].v; | |
8843 } | |
8844 else//предыдущая грань меньше границы видимости(текущая грань вышла за пределы видимости) | |
8845 { | |
8846 //t = far_clip - v1.x / v0.x - v1.x | |
8847 t = (pODMRenderParams->shading_dist_mist - array_50AC10[i].vWorldViewPosition.x) / (array_50AC10[i - 1].vWorldViewPosition.x - array_50AC10[i].vWorldViewPosition.x); | |
8848 array_507D30[depth_num_vertices].vWorldViewPosition.y = (array_50AC10[i - 1].vWorldViewPosition.y - array_50AC10[i].vWorldViewPosition.y) * t + array_50AC10[i].vWorldViewPosition.y; | |
8849 array_507D30[depth_num_vertices].vWorldViewPosition.z = (array_50AC10[i - 1].vWorldViewPosition.z - array_50AC10[i].vWorldViewPosition.z) * t + array_50AC10[i].vWorldViewPosition.z; | |
8850 array_507D30[depth_num_vertices].u = (array_50AC10[i - 1].u - array_50AC10[i].u) * t + array_50AC10[i].u; | |
8851 array_507D30[depth_num_vertices].v = (array_50AC10[i - 1].v - array_50AC10[i].v) * t + array_50AC10[i].v; | |
8852 } | |
8853 array_507D30[depth_num_vertices].vWorldViewPosition.x = pODMRenderParams->shading_dist_mist; | |
8854 array_507D30[depth_num_vertices]._rhw = 1.0 / pODMRenderParams->shading_dist_mist; | |
8855 ++depth_num_vertices; | |
8856 } | |
8857 if ( current_vertices_flag )//оба в границе видимости | |
8858 { | |
8859 pNextVertices = depth_num_vertices++; | |
8860 memcpy(&array_507D30[pNextVertices], &array_50AC10[i], 0x30); | |
1799 | 8861 //array_507D30[pNextVertices]._rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
8862 //array_507D30[pNextVertices].flt_2C = array_50AC10[i].flt_2C; | |
1787 | 8863 } |
8864 previous_vertices_flag = current_vertices_flag; | |
8865 } | |
8866 if ( depth_num_vertices < 3 ) | |
8867 return 0; | |
8868 return depth_num_vertices; | |
8869 } | |
8870 | |
8871 //----- (0047840D) -------------------------------------------------------- | |
8872 void Render::DrawBuildingsD3D() | |
8873 { | |
8874 int v9; // ecx@8 | |
8875 Texture *pFaceTexture; // eax@10 | |
8876 unsigned int v16; // edi@22 | |
8877 int v27; // eax@57 | |
8878 int vertex_id; // eax@58 | |
8879 unsigned int v34; // eax@80 | |
8880 int v40; // [sp-4h] [bp-5Ch]@2 | |
8881 int v49; // [sp+2Ch] [bp-2Ch]@10 | |
8882 int v50; // [sp+30h] [bp-28h]@34 | |
8883 int v51; // [sp+34h] [bp-24h]@35 | |
8884 int v52; // [sp+38h] [bp-20h]@36 | |
8885 int v53; // [sp+3Ch] [bp-1Ch]@8 | |
8886 int uNumVertices; // [sp+4Ch] [bp-Ch]@34 | |
8887 int unused; // [sp+50h] [bp-8h]@3 | |
8888 | |
8889 if ( !pRenderer->pRenderD3D ) | |
8890 { | |
8891 MessageBoxW(nullptr, L"D3D version of RenderBuildings called in software!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odbuild.cpp:73", 0); | |
8892 } | |
8893 | |
8894 unused = 0; | |
8895 if ( (signed int)pOutdoor->uNumBModels > 0 ) | |
8896 { | |
8897 for ( uint model_id = 0; model_id < pOutdoor->uNumBModels; model_id++ ) | |
8898 { | |
8899 if ( IsBModelVisible(model_id, &unused) ) | |
8900 { | |
8901 pOutdoor->pBModels[model_id].field_40 |= 1; | |
8902 if ( pOutdoor->pBModels[model_id].uNumFaces > 0 ) | |
8903 { | |
8904 for ( int face_id = 0; face_id < pOutdoor->pBModels[model_id].uNumFaces; face_id++ ) | |
8905 { | |
8906 if (!pOutdoor->pBModels[model_id].pFaces[face_id].Invisible()) | |
8907 { | |
8908 v53 = 0; | |
8909 array_77EC08[pODMRenderParams->uNumPolygons].flags = 0; | |
8910 array_77EC08[pODMRenderParams->uNumPolygons].field_32 = 0; | |
8911 v9 = pOutdoor->pBModels[model_id].pFaces[face_id].uTextureID; | |
8912 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_TEXTURE_FRAME) | |
8913 v9 = pTextureFrameTable->GetFrameTexture(v9, pEventTimer->uTotalGameTimeElapsed); | |
8914 pFaceTexture = pBitmaps_LOD->GetTexture(v9); | |
8915 array_77EC08[pODMRenderParams->uNumPolygons].pTexture = pFaceTexture; | |
8916 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_FLUID) | |
8917 array_77EC08[pODMRenderParams->uNumPolygons].flags |= 2; | |
1922 | 8918 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_INDOOR_SKY ) |
1787 | 8919 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 4; |
8920 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & 4 ) | |
8921 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 4; | |
8922 else | |
8923 { | |
8924 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & 0x20 ) | |
8925 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 8; | |
8926 } | |
8927 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & 0x0800) | |
8928 array_77EC08[pODMRenderParams->uNumPolygons].flags |= 0x2000; | |
8929 else | |
8930 { | |
8931 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_DONT_CACHE_TEXTURE) | |
8932 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 0x10u; | |
8933 } | |
8934 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU = pOutdoor->pBModels[model_id].pFaces[face_id].sTextureDeltaU; | |
8935 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV = pOutdoor->pBModels[model_id].pFaces[face_id].sTextureDeltaV; | |
8936 v16 = GetTickCount() >> 4; | |
8937 if ( pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z && abs(pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z) >= 59082 ) | |
8938 { | |
8939 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 4 ) | |
8940 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1; | |
8941 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 8 ) | |
8942 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1; | |
8943 } | |
8944 else | |
8945 { | |
8946 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 4 ) | |
8947 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1; | |
8948 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 8 ) | |
8949 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1; | |
8950 } | |
8951 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x10 ) | |
8952 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uWidthMinus1; | |
8953 else | |
8954 { | |
8955 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x20 ) | |
8956 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uWidthMinus1; | |
8957 } | |
8958 v50 = 0; | |
8959 v49 = 0; | |
8960 uNumVertices = pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; | |
8961 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices > 0 ) | |
8962 { | |
8963 for ( uint vertex_id = 1; vertex_id <= pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; vertex_id++ ) | |
8964 { | |
8965 array_73D150[vertex_id - 1].vWorldPosition.x = pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[vertex_id - 1]].x; | |
8966 array_73D150[vertex_id - 1].vWorldPosition.y = pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[vertex_id - 1]].y; | |
8967 array_73D150[vertex_id - 1].vWorldPosition.z = pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[vertex_id - 1]].z; | |
8968 array_73D150[vertex_id - 1].u = (array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU + (signed __int16)pOutdoor->pBModels[model_id].pFaces[face_id].pTextureUIDs[vertex_id - 1]) * (1.0 / (double)pFaceTexture->uTextureWidth); | |
8969 array_73D150[vertex_id - 1].v = (array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV + (signed __int16)pOutdoor->pBModels[model_id].pFaces[face_id].pTextureVIDs[vertex_id - 1]) * (1.0 / (double)pFaceTexture->uTextureHeight); | |
8970 } | |
8971 for ( uint i = 1; i <= pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; i++ ) | |
8972 { | |
8973 if ( pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[0]].z == array_73D150[i - 1].vWorldPosition.z ) | |
8974 ++v53; | |
8975 pGame->pIndoorCameraD3D->ViewTransform(&array_73D150[i - 1], 1); | |
8976 if ( array_73D150[i - 1].vWorldViewPosition.x < 8.0 || array_73D150[i - 1].vWorldViewPosition.x > pODMRenderParams->shading_dist_mist ) | |
8977 { | |
8978 if ( array_73D150[i - 1].vWorldViewPosition.x >= 8.0 ) | |
8979 v49 = 1; | |
8980 else | |
8981 v50 = 1; | |
8982 } | |
8983 else | |
8984 pGame->pIndoorCameraD3D->Project(&array_73D150[i - 1], 1, 0); | |
8985 } | |
8986 } | |
8987 if ( v53 == pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices ) | |
8988 LOBYTE(array_77EC08[pODMRenderParams->uNumPolygons].field_32) |= 1; | |
8989 array_77EC08[pODMRenderParams->uNumPolygons].pODMFace = &pOutdoor->pBModels[model_id].pFaces[face_id]; | |
8990 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; | |
8991 array_77EC08[pODMRenderParams->uNumPolygons].field_59 = 5; | |
8992 v51 = (unsigned __int64)(-pOutdoor->vSunlight.x * (signed __int64)pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.x) >> 16; | |
8993 v53 = (unsigned __int64)(-pOutdoor->vSunlight.y * (signed __int64)pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.y) >> 16; | |
8994 v52 = (unsigned __int64)(-pOutdoor->vSunlight.z * (signed __int64)pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z) >> 16; | |
8995 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 20 - (20 * (signed int)(v51 + v53 + v52) >> 16); | |
8996 if ( array_77EC08[pODMRenderParams->uNumPolygons].dimming_level < 0 ) | |
8997 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 0; | |
8998 if ( array_77EC08[pODMRenderParams->uNumPolygons].dimming_level > 31 ) | |
8999 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 31; | |
9000 if ( pODMRenderParams->uNumPolygons >= 1999 + 5000) | |
9001 return; | |
9002 if ( ODMFace::IsBackfaceCulled(&pOutdoor->pBModels[model_id].pFaces[face_id], array_73D150, &array_77EC08[pODMRenderParams->uNumPolygons]) ) | |
9003 { | |
9004 pOutdoor->pBModels[model_id].pFaces[face_id].bVisible = 1; | |
9005 array_77EC08[pODMRenderParams->uNumPolygons].uBModelFaceID = face_id; | |
9006 array_77EC08[pODMRenderParams->uNumPolygons].uBModelID = model_id; | |
9007 v27 = 8 * (face_id | (model_id << 6)); | |
9008 LOBYTE(v27) = v27 | 6; | |
9009 array_77EC08[pODMRenderParams->uNumPolygons].field_50 = v27; | |
9010 for ( int vertex_id = 0; vertex_id < pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; ++vertex_id) | |
9011 { | |
9012 memcpy(&array_50AC10[vertex_id], &array_73D150[vertex_id], sizeof(array_50AC10[vertex_id])); | |
9013 array_50AC10[vertex_id]._rhw = 1.0 / (array_73D150[vertex_id].vWorldViewPosition.x + 0.0000001); | |
9014 } | |
9015 static stru154 static_RenderBuildingsD3D_stru_73C834; | |
9016 /*static bool __init_flag = false; | |
9017 if (!__init_flag) | |
9018 { | |
9019 __init_flag = true; | |
9020 static_RenderBuildingsD3D_byte_73C84C_init_flag |= 1u; | |
9021 stru154::stru154(&static_RenderBuildingsD3D_stru_73C834); | |
9022 atexit(loc_4789D4); | |
9023 }*/ | |
9024 | |
9025 v40 = (int)&pOutdoor->pBModels[model_id].pFaces[face_id]; | |
9026 pGame->pLightmapBuilder->ApplyLights_OutdoorFace(&pOutdoor->pBModels[model_id].pFaces[face_id]); | |
9027 pDecalBuilder->ApplyDecals_OutdoorFace(&pOutdoor->pBModels[model_id].pFaces[face_id]); | |
9028 pGame->pLightmapBuilder->std__vector_000004_size = 0; | |
9029 int v31 = 0; | |
9030 if ( stru_F8AD28.uNumLightsApplied > 0 || pDecalBuilder->uNumDecals > 0 ) | |
9031 { | |
9032 v31 = v50 ? 3 : v49 != 0 ? 5 : 0; | |
9033 static_RenderBuildingsD3D_stru_73C834.GetFacePlaneAndClassify(&pOutdoor->pBModels[model_id].pFaces[face_id], &pOutdoor->pBModels[model_id].pVertices); | |
9034 if ( pDecalBuilder->uNumDecals > 0 ) | |
9035 { | |
9036 v40 = -1; | |
9037 pDecalBuilder->ApplyDecals(31 - array_77EC08[pODMRenderParams->uNumPolygons].dimming_level, 2, &static_RenderBuildingsD3D_stru_73C834, | |
9038 pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices, array_50AC10, 0, (char)v31, -1); | |
9039 } | |
9040 } | |
9041 if ( stru_F8AD28.uNumLightsApplied > 0 ) | |
9042 pGame->pLightmapBuilder->ApplyLights(&stru_F8AD28, &static_RenderBuildingsD3D_stru_73C834, uNumVertices, array_50AC10, 0, (char)v31); | |
9043 if ( v50 ) | |
9044 { | |
1903 | 9045 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = ODM_NearClip(pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices); |
1787 | 9046 uNumVertices = array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices; |
9047 ODM_Project(array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices); | |
9048 } | |
9049 if ( v49 ) | |
9050 { | |
1903 | 9051 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = ODM_FarClip(pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices); |
1787 | 9052 uNumVertices = array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices; |
9053 ODM_Project(array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices); | |
9054 } | |
9055 if ( uNumVertices ) | |
9056 { | |
9057 if ( array_77EC08[pODMRenderParams->uNumPolygons].flags & 2 ) | |
9058 { | |
9059 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x3C ) | |
9060 v34 = pRenderer->pHDWaterBitmapIDs[0]; | |
9061 else | |
9062 v34 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame]; | |
9063 v40 = (int)pBitmaps_LOD->pHardwareTextures[v34]; | |
9064 } | |
9065 else | |
9066 v40 = (int)pBitmaps_LOD->pHardwareTextures[v9]; | |
9067 pRenderer->DrawPolygon(uNumVertices, &array_77EC08[pODMRenderParams->uNumPolygons], &pOutdoor->pBModels[model_id].pFaces[face_id], (IDirect3DTexture2 *)v40); | |
9068 } | |
9069 } | |
9070 } | |
9071 } | |
9072 } | |
9073 } | |
9074 } | |
9075 } | |
9076 return; | |
1911 | 9077 } |
9078 //----- (00479543) -------------------------------------------------------- | |
1923 | 9079 void Render::DrawOutdoorSkyD3D() |
1911 | 9080 { |
9081 int v9; // eax@4 | |
9082 int v10; // ebx@4 | |
9083 int v13; // edi@6 | |
9084 int v14; // ecx@6 | |
9085 int v15; // eax@8 | |
9086 int v16; // eax@12 | |
9087 signed __int64 v17; // qtt@13 | |
9088 signed int v18; // ecx@13 | |
9089 struct Polygon pSkyPolygon; // [sp+14h] [bp-150h]@1 | |
9090 double v26; // [sp+120h] [bp-44h]@4 | |
9091 int v30; // [sp+134h] [bp-30h]@1 | |
9092 int v32; // [sp+13Ch] [bp-28h]@6 | |
9093 int v33; // [sp+140h] [bp-24h]@2 | |
9094 signed __int64 v34; // [sp+144h] [bp-20h]@1 | |
9095 int v35; // [sp+148h] [bp-1Ch]@4 | |
9096 int v36; // [sp+14Ch] [bp-18h]@2 | |
9097 int v37; // [sp+154h] [bp-10h]@8 | |
9098 int v38; // [sp+158h] [bp-Ch]@1 | |
9099 int v39; // [sp+15Ch] [bp-8h]@4 | |
9100 int v40; // [sp+160h] [bp-4h]@7 | |
9101 | |
9102 v30 = (signed __int64)((double)(pODMRenderParams->int_fov_rad * pGame->pIndoorCameraD3D->vPartyPos.z) | |
9103 / ((double)pODMRenderParams->int_fov_rad + 8192.0) | |
9104 + (double)(pViewport->uScreenCenterY + 7));//include "+ 7" | |
9105 v34 = cos((double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064) * 0x2000;//(double)pODMRenderParams->shading_dist_mist | |
9106 v38 = (signed __int64)((double)(pViewport->uScreenCenterY + 7) | |
9107 - (double)pODMRenderParams->int_fov_rad | |
9108 / (v34 + 0.0000001) | |
9109 * (sin((double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064) | |
9110 * (double)-0x2000//(double)pODMRenderParams->shading_dist_mist | |
9111 - (double)pGame->pIndoorCameraD3D->vPartyPos.z)); | |
9112 pSkyPolygon.Create_48607B(&stru_8019C8);//заполняется ptr_38 | |
9113 pSkyPolygon.ptr_38->_48694B_frustum_sky(); | |
2006 | 9114 pSkyPolygon.uTileBitmapID = pOutdoor->sSky_TextureID;//179(original 166) |
9115 pSkyPolygon.pTexture = (Texture *)(SLOWORD(pOutdoor->sSky_TextureID) != -1 ? (int)&pBitmaps_LOD->pTextures[SLOWORD(pOutdoor->sSky_TextureID)] : 0); | |
1911 | 9116 if ( pSkyPolygon.pTexture ) |
9117 { | |
9118 pSkyPolygon.dimming_level = 0; | |
9119 pSkyPolygon.uNumVertices = 4; | |
9120 //centering(центруем)--наклон камеры ---------------------------------------- | |
9121 pSkyPolygon.v_18.x = -stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationX + 16); | |
9122 pSkyPolygon.v_18.y = 0; | |
9123 pSkyPolygon.v_18.z = -stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationX + 16); | |
9124 | |
9125 //sky wiew position(положение неба на экране)------------------------------------------ | |
9126 // X | |
9127 // 0._____________________________.3 | |
9128 // |8,8 468,8 | | |
9129 // | | | |
9130 // | | | |
9131 // Y| | | |
9132 // | | | |
9133 // |8,351 468,351 | | |
9134 // 1._____________________________.2 | |
9135 // | |
9136 array_50AC10[0].vWorldViewProjX = (double)(signed int)pViewport->uViewportTL_X; | |
9137 array_50AC10[0].vWorldViewProjY = (double)(signed int)pViewport->uViewportTL_Y; | |
9138 | |
9139 array_50AC10[1].vWorldViewProjX = (double)(signed int)pViewport->uViewportTL_X; | |
9140 array_50AC10[1].vWorldViewProjY = (double)v38; | |
9141 | |
9142 array_50AC10[2].vWorldViewProjX = (double)(signed int)pViewport->uViewportBR_X; | |
9143 array_50AC10[2].vWorldViewProjY = (double)v38; | |
9144 | |
9145 array_50AC10[3].vWorldViewProjX = (double)(signed int)pViewport->uViewportBR_X; | |
9146 array_50AC10[3].vWorldViewProjY = (double)(signed int)pViewport->uViewportTL_Y; | |
9147 | |
9148 pSkyPolygon.sTextureDeltaU = 224 * pMiscTimer->uTotalGameTimeElapsed; | |
9149 pSkyPolygon.sTextureDeltaV = 224 * pMiscTimer->uTotalGameTimeElapsed; | |
9150 | |
9151 pSkyPolygon.field_24 = 0x2000000u; | |
9152 v33 = 65536 / (signed int)(signed __int64)(((double)(pViewport->uViewportBR_X - pViewport->uViewportTL_X) * 0.5) / tan(0.6457717418670654) + 0.5); | |
9153 for ( uint i = 0; i < pSkyPolygon.uNumVertices; ++i ) | |
9154 { | |
9155 v26 = array_50AC10[i].vWorldViewProjY + 6.7553994e15; | |
9156 //rotate skydome(вращение купола неба)-------------------------------------- | |
9157 // В игре принята своя система измерения углов. Полный угол (180). Значению угла 0 соответствует | |
9158 // направление на север и/или юг (либо на восток и/или запад), значению 65536 еденицам(0х10000) соответствует угол 90. | |
9159 // две переменные хранят данные по углу обзора. field_14 по западу и востоку. field_20 по югу и северу | |
9160 // от -25080 до 25080 | |
9161 v39 = (unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_west_east * (signed __int64)(v33 * (v30 - array_50AC10[i].vWorldViewProjY))) >> 16; | |
9162 v35 = v39 + pSkyPolygon.ptr_38->angle_from_north; | |
9163 | |
9164 v39 = (unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_north_south * (signed __int64)(v33 * (v30 - array_50AC10[i].vWorldViewProjY))) >> 16; | |
9165 v36 = v39 + pSkyPolygon.ptr_38->angle_from_east; | |
9166 | |
9167 v38 = pSkyPolygon.v_18.z; | |
9168 v9 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)(v33 * (v30 - array_50AC10[i].vWorldViewProjY))) >> 16; | |
9169 v10 = pSkyPolygon.v_18.x + v9; | |
9170 v39 = pSkyPolygon.v_18.x + v9; | |
9171 if ( pSkyPolygon.v_18.x + v9 > 0 ) | |
9172 { | |
9173 v10 = 0; | |
9174 v39 = 0; | |
9175 } | |
9176 v38 = v10; | |
9177 v13 = v33 * (pViewport->uScreenCenterX - (signed __int64)array_50AC10[i].vWorldViewProjX); | |
9178 v34 = -pSkyPolygon.field_24; | |
9179 v32 = (signed __int64)array_50AC10[i].vWorldViewProjX; | |
9180 v14 = v33 * (v30 - (signed __int64)array_50AC10[i].vWorldViewProjX); | |
9181 while ( 1 ) | |
9182 { | |
9183 v40 = v14; | |
9184 if ( !v10 ) | |
9185 goto LABEL_12; | |
9186 v37 = abs((int)v34 >> 14); | |
9187 v15 = abs(v10); | |
9188 if ( v37 <= v15 || v32 <= (signed int)pViewport->uViewportTL_Y ) | |
9189 { | |
9190 if ( v39 <= 0 ) | |
9191 break; | |
9192 } | |
9193 v14 = v40; | |
9194 LABEL_12: | |
9195 v37 = pSkyPolygon.v_18.z; | |
9196 v16 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)v14) >> 16; | |
9197 --v32; | |
9198 v14 += v33; | |
9199 v10 = pSkyPolygon.v_18.x + v16; | |
9200 v39 = pSkyPolygon.v_18.x + v16; | |
9201 v38 = pSkyPolygon.v_18.x + v16; | |
9202 } | |
9203 LODWORD(v17) = LODWORD(v34) << 16; | |
9204 HIDWORD(v17) = v34 >> 16; | |
9205 //v40 = v17 / v38; | |
9206 v18 = v17 / v38; | |
9207 if ( v18 < 0 ) | |
9208 v18 = pODMRenderParams->shading_dist_mist; | |
9209 v37 = v35 + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_west * (signed __int64)v13) >> 16); | |
9210 v35 = 224 * pMiscTimer->uTotalGameTimeElapsed | |
9211 + ((signed int)((unsigned __int64)(v37 * (signed __int64)v18) >> 16) >> 3); | |
9212 array_50AC10[i].u = (double)v35 / ((double)pSkyPolygon.pTexture->uTextureWidth * 65536.0); | |
9213 | |
9214 v36 = v36 + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_south * (signed __int64)v13) >> 16); | |
9215 v35 = 224 * pMiscTimer->uTotalGameTimeElapsed | |
9216 + ((signed int)((unsigned __int64)(v36 * (signed __int64)v18) >> 16) >> 3); | |
9217 array_50AC10[i].v = (double)v35 / ((double)pSkyPolygon.pTexture->uTextureHeight * 65536.0); | |
9218 | |
9219 array_50AC10[i].vWorldViewPosition.x = (double)0x2000;//pODMRenderParams->shading_dist_mist | |
9220 array_50AC10[i]._rhw = 1.0 / (double)(v18 >> 16); | |
9221 } | |
1923 | 9222 pRenderer->DrawOutdoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); |
1911 | 9223 array_50AC10[0].vWorldViewProjY = (double)v38; |
9224 array_50AC10[1].vWorldViewProjY = array_50AC10[1].vWorldViewProjY + 30.0; | |
9225 array_50AC10[2].vWorldViewProjY = array_50AC10[2].vWorldViewProjY + 30.0; | |
9226 array_50AC10[3].vWorldViewProjY = (double)v38; | |
1923 | 9227 pRenderer->DrawOutdoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); |
1911 | 9228 return; |
9229 } | |
1913 | 9230 } |
9231 //----- (004226C2) -------------------------------------------------------- | |
9232 bool PauseGameDrawing() | |
9233 { | |
9234 if ( pCurrentScreen != SCREEN_GAME | |
9235 && pCurrentScreen != SCREEN_NPC_DIALOGUE | |
9236 && pCurrentScreen != SCREEN_CHANGE_LOCATION ) | |
9237 { | |
9238 if ( pCurrentScreen == SCREEN_INPUT_BLV ) | |
9239 return pVideoPlayer->pSmackerMovie != 0; | |
9240 if ( pCurrentScreen != SCREEN_BRANCHLESS_NPC_DIALOG ) | |
9241 return true; | |
9242 } | |
9243 return false; | |
1679 | 9244 } |