Mercurial > mm7
annotate Render.cpp @ 2199:3445abad44c5
RasterLine2D()
author | Ritor1 |
---|---|
date | Sun, 02 Feb 2014 21:53:29 +0600 |
parents | d9caf2b3d8d5 |
children | 15a327be07e2 |
rev | line source |
---|---|
2153 | 1 #include "Render.h" |
1277 | 2 #include "Outdoor_stuff.h" |
1016 | 3 #include "VideoPlayer.h" |
4 #include "Sprites.h" | |
5 #include "Mouse.h" | |
6 #include "GammaControl.h" | |
7 #include "stru6.h" | |
1183 | 8 #include "GUIWindow.h" |
1016 | 9 #include "DecalBuilder.h" |
10 #include "ParticleEngine.h" | |
0 | 11 #include "Outdoor.h" |
12 #include "Party.h" | |
13 #include "LOD.h" | |
14 #include "Viewport.h" | |
2037
7a9477135943
Renamed Math.h -> OurMath.h (file resolution was sometimes ambiguous)
Nomad
parents:
2016
diff
changeset
|
15 #include "OurMath.h" |
0 | 16 #include "PaletteManager.h" |
2044 | 17 #include "Timer.h" |
0 | 18 #include "Game.h" |
19 #include "LightmapBuilder.h" | |
20 #include "ObjectList.h" | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
21 #include "SpriteObject.h" |
0 | 22 #include "DecorationList.h" |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
23 #include "Actor.h" |
0 | 24 #include "Log.h" |
179 | 25 #include "TileFrameTable.h" |
189 | 26 #include "texts.h" |
0 | 27 #include "mm7_data.h" |
860 | 28 #include "MM7.h" |
1262 | 29 #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
|
30 #include "Level/Decoration.h" |
2155 | 31 #include "Vis.h" |
0 | 32 |
1924
8cd321994943
MSVS 2012 project file & some compilation warning fixes
Nomad
parents:
1913
diff
changeset
|
33 //#pragma comment(lib, "lib\\legacy_dx\\lib\\ddraw.lib") |
8cd321994943
MSVS 2012 project file & some compilation warning fixes
Nomad
parents:
1913
diff
changeset
|
34 //#pragma comment(lib, "lib\\legacy_dx\\lib\\dxguid.lib") |
0 | 35 |
36 struct IDirectDrawClipper *pDDrawClipper; | |
37 struct Render *pRenderer; // idb | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
38 struct RenderVertexD3D3 pVertices[50]; |
0 | 39 int uNumDecorationsDrawnThisFrame; // weak |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
40 RenderBillboard pBillboardRenderList[500]; |
0 | 41 unsigned int uNumBillboardsToDraw; |
42 int uNumSpritesDrawnThisFrame; // weak | |
43 | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
44 RenderVertexSoft array_507D30[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
45 RenderVertexSoft array_50AC10[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
46 RenderVertexSoft array_73D150[20]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
47 |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
48 RenderVertexD3D3 d3d_vertex_buffer[50]; |
0 | 49 |
50 /* 384 */ | |
51 #pragma pack(push, 1) | |
52 struct PCXHeader_1 | |
53 { | |
54 char manufacturer; | |
55 char version; | |
56 char encoding; | |
57 char bpp; | |
58 __int16 left; | |
59 __int16 up; | |
60 __int16 right; | |
61 __int16 bottom; | |
62 __int16 hdpi; | |
63 __int16 vdpi; | |
64 }; | |
65 #pragma pack(pop) | |
66 | |
67 /* 385 */ | |
68 #pragma pack(push, 1) | |
69 struct PCXHeader_2 | |
70 { | |
71 char reserved; | |
72 char planes; | |
73 __int16 pitch; | |
74 __int16 palette_info; | |
75 }; | |
76 #pragma pack(pop) | |
77 | |
78 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst); | |
79 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2); | |
80 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, struct RenderD3D_aux *a6); | |
81 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut); // idb | |
82 | |
83 //----- (0049E79F) -------------------------------------------------------- | |
2154 | 84 bool Render::CheckTextureStages() |
0 | 85 { |
86 bool v0; // edi@1 | |
87 IDirectDrawSurface4 *pSurface2; // [sp+Ch] [bp-14h]@1 | |
88 IDirectDrawSurface4 *pSurface1; // [sp+10h] [bp-10h]@1 | |
89 DWORD v4; // [sp+14h] [bp-Ch]@1 | |
90 IDirect3DTexture2 *pTexture2; // [sp+18h] [bp-8h]@1 | |
91 IDirect3DTexture2 *pTexture1; // [sp+1Ch] [bp-4h]@1 | |
92 | |
93 v0 = false; | |
2154 | 94 pRenderD3D->CreateTexture(64u, 64u, &pSurface1, &pTexture1, true, false, 32u); |
95 pRenderD3D->CreateTexture(64u, 64u, &pSurface2, &pTexture2, true, false, 32u); | |
96 | |
97 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture1)); | |
98 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
99 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 2)); | |
100 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2)); | |
101 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2)); | |
102 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2)); | |
103 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 1)); | |
104 | |
105 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture2)); | |
106 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP)); | |
107 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_TEXCOORDINDEX, 1)); | |
108 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 7)); | |
109 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG1, 2)); | |
110 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG2, 1)); | |
111 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MAGFILTER, 2)); | |
112 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MINFILTER, 2)); | |
113 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MIPFILTER, 1)); | |
114 | |
115 if ( !pRenderD3D->pDevice->ValidateDevice(&v4) && v4 == 1 ) | |
0 | 116 v0 = true; |
2154 | 117 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 1u)); |
0 | 118 pTexture1->Release(); |
119 pTexture2->Release(); | |
120 pSurface1->Release(); | |
121 pSurface2->Release(); | |
122 return v0; | |
123 } | |
124 | |
2002 | 125 |
0 | 126 //----- (00440CB8) -------------------------------------------------------- |
127 void Render::DrawBillboardList_BLV() | |
128 { | |
129 __int16 v2; // ax@3 | |
130 int v5; // eax@11 | |
131 RenderBillboardTransform_local0 soft_billboard; // [sp+4h] [bp-50h]@1 | |
132 | |
2002 | 133 soft_billboard.sParentBillboardID = -1; |
0 | 134 soft_billboard.pTarget = pBLVRenderParams->pRenderTarget; |
135 soft_billboard.pTargetZ = pBLVRenderParams->pTargetZBuffer; | |
136 soft_billboard.uTargetPitch = pRenderer->uTargetSurfacePitch; | |
137 soft_billboard.uViewportX = pBLVRenderParams->uViewportX; | |
138 soft_billboard.uViewportY = pBLVRenderParams->uViewportY; | |
139 soft_billboard.uViewportZ = pBLVRenderParams->uViewportZ - 1; | |
140 soft_billboard.uViewportW = pBLVRenderParams->uViewportW; | |
141 | |
1637 | 142 pODMRenderParams->uNumBillboards = ::uNumBillboardsToDraw; |
617 | 143 for (uint i = 0; i < ::uNumBillboardsToDraw; ++i) |
0 | 144 { |
1980 | 145 RenderBillboard* p = &pBillboardRenderList[i]; |
0 | 146 |
147 soft_billboard.uScreenSpaceX = p->uScreenSpaceX; | |
2002 | 148 soft_billboard.sParentBillboardID = i; |
0 | 149 soft_billboard.uScreenSpaceY = p->uScreenSpaceY; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
150 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
|
151 soft_billboard._screenspace_y_scaler_packedfloat = p->_screenspace_y_scaler_packedfloat; |
0 | 152 soft_billboard.sZValue = p->sZValue; |
153 soft_billboard.uFlags = p->field_1E; | |
2006 | 154 soft_billboard.sTintColor = p->sTintColor; |
0 | 155 v2 = p->uHwSpriteID; |
156 if ( v2 != -1 ) | |
157 { | |
158 if ( pRenderer->pRenderD3D ) | |
657 | 159 pRenderer->DrawBillboard_Indoor(&soft_billboard, &pSprites_LOD->pHardwareSprites[v2], p->dimming_level); |
0 | 160 else |
161 { | |
657 | 162 soft_billboard.pPalette = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, p->dimming_level, 1); |
0 | 163 if (p->field_1E & 0x0100) |
164 soft_billboard.pPalette = pPaletteManager->field_261600[p->uPalette]; | |
165 if ( !(soft_billboard.uFlags & 0x40) && soft_billboard.uFlags & 0x80 ) | |
166 soft_billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, 0, 1); | |
167 v5 = p->uHwSpriteID; | |
168 if ( v5 >= 0 ) | |
733 | 169 pSprites_LOD->pSpriteHeaders[v5].DrawSprite_sw(&soft_billboard, 1); |
0 | 170 } |
171 } | |
172 } | |
173 } | |
174 | |
175 //----- (004A16A5) -------------------------------------------------------- | |
2154 | 176 bool Render::AreRenderSurfacesOk() |
177 { | |
178 return pFrontBuffer4 && pBackBuffer4; | |
0 | 179 } |
180 | |
2152 | 181 |
182 //----- (004A19D8) -------------------------------------------------------- | |
183 unsigned int BlendColors(unsigned int a1, unsigned int a2) | |
184 { | |
185 /*signed __int64 v2; // ST10_8@1 | |
186 double v3; // st7@1 | |
187 float v4; // ST24_4@1 | |
188 double v5; // ST10_8@1 | |
189 int v6; // ST1C_4@1 | |
190 float v7; // ST24_4@1 | |
191 double v8; // ST10_8@1 | |
192 unsigned __int8 v9; // ST20_1@1 | |
193 float v10; // ST24_4@1 | |
194 double v11; // ST10_8@1 | |
195 float v12; // ST24_4@1 | |
196 double v13; // ST08_8@1*/ | |
197 | |
198 uint alpha = (uint)floorf(0.5f + (a1 >> 24) / 255.0f * | |
199 (a2 >> 24) / 255.0f * 255.0f), | |
200 red = (uint)floorf(0.5f + ((a1 >> 16) & 0xFF) / 255.0f * | |
201 ((a2 >> 16) & 0xFF) / 255.0f * 255.0f), | |
202 green = (uint)floorf(0.5f + ((a1 >> 8) & 0xFF) / 255.0f * | |
203 ((a2 >> 8) & 0xFF) / 255.0f * 255.0f), | |
204 blue = (uint)floorf(0.5f + ((a1 >> 0) & 0xFF) / 255.0f * | |
205 ((a2 >> 0) & 0xFF) / 255.0f * 255.0f); | |
206 return (alpha << 24) | (red << 16) | (green << 8) | blue; | |
207 /*v2 = a1 >> 24; | |
208 v3 = (double)v2 / 255.0f; | |
209 HIDWORD(v2) = 0; | |
210 LODWORD(v2) = a2 >> 24; | |
211 v4 = v3 * (double)v2 / 255.0f * 255.0; | |
212 v5 = v4 + 6.7553994e15; | |
213 v6 = LODWORD(v5); | |
214 v7 = (double)((a1 >> 16) & 0xFFi64) / 255.0f * (double)((a2 >> 16) & 0xFF) * 0.0039215689 * 255.0; | |
215 v8 = v7 + 6.7553994e15; | |
216 v9 = LOBYTE(v8); | |
217 v10 = (double)((unsigned __int16)a1 >> 8) / 255.0f * (double)((unsigned __int16)a2 >> 8) / 255.0f * 255.0; | |
218 v11 = v10 + 6.7553994e15; | |
219 v12 = (double)(a1 & 0xFFi64) / 255.0f * (double)(unsigned __int8)a2 / 255.0f * 255.0; | |
220 v13 = v12 + 6.7553994e15; | |
221 return LOBYTE(v13) | ((LOBYTE(v11) | (((v6 << 8) | v9) << 8)) << 8);*/ | |
222 } | |
223 | |
224 | |
1338 | 225 void Render::RenderTerrainD3D() // New function |
86 | 226 { |
227 int v6; // ecx@8 | |
1427 | 228 struct Polygon *pTilePolygon; // ebx@8 |
186 | 229 |
230 //warning: the game uses CW culling by default, ccw is incosistent | |
231 pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CCW); | |
232 | |
1338 | 233 static RenderVertexSoft pTerrainVertices[128 * 128];//vertexCountX and vertexCountZ |
234 | |
235 //Ãåíåðàöèÿ ìåñòîïîëîæåíèÿ âåðøèí------------------------------------------------------------------------- | |
236 //ðåø¸òêà âåðøèí äåëèòñÿ íà äâå ÷àñòè îò -64 äî 0 è îò 0 äî 64 | |
237 // | |
238 // -64 X 0 64 | |
239 // --------------- 64 | |
240 // | | | | |
241 // | | | | |
242 // | | | | |
243 // 0|------+------| Z | |
244 // | | | | |
245 // | | | | |
246 // | | | | |
247 // --------------- | |
248 // -64 | |
249 | |
250 int blockScale = 512; | |
251 int heightScale = 32; | |
252 for (unsigned int z = 0; z < 128; ++z) | |
253 { | |
254 for (unsigned int x = 0; x < 128; ++x) | |
255 { | |
256 pTerrainVertices[z * 128 + x].vWorldPosition.x = (-64 + (signed)x) * blockScale; | |
257 pTerrainVertices[z * 128 + x].vWorldPosition.y = (64 - (signed)z) * blockScale; | |
258 pTerrainVertices[z * 128 + x].vWorldPosition.z = heightScale * pOutdoor->pTerrain.pHeightmap[z * 128 + x]; | |
121 | 259 pGame->pIndoorCameraD3D->ViewTransform(&pTerrainVertices[z * 128 + x], 1); |
260 pGame->pIndoorCameraD3D->Project(&pTerrainVertices[z * 128 + x], 1, 0); | |
106 | 261 } |
262 } | |
1338 | 263 //-------------------------------------------------------------------------------------------------------------------- |
264 | |
265 // | |
1344 | 266 for (unsigned int z = 0; z < 127; ++z) |
267 { | |
268 for (unsigned int x = 0; x < 127; ++x) | |
1338 | 269 { |
1637 | 270 pTilePolygon = &array_77EC08[pODMRenderParams->uNumPolygons]; |
1427 | 271 pTilePolygon->flags = 0; |
272 pTilePolygon->field_32 = 0; | |
273 pTilePolygon->uTileBitmapID = pOutdoor->DoGetTileTexture(x, z); | |
274 pTilePolygon->pTexture = (Texture *)&pBitmaps_LOD->pHardwareTextures[pTilePolygon->uTileBitmapID]; | |
275 if (pTilePolygon->uTileBitmapID == 0xFFFF) | |
106 | 276 continue; |
186 | 277 |
1338 | 278 //pTile->flags = 0x8010 |pOutdoor->GetSomeOtherTileInfo(x, z); |
1427 | 279 pTilePolygon->flags = pOutdoor->GetSomeOtherTileInfo(x, z); |
280 pTilePolygon->field_32 = 0; | |
281 pTilePolygon->field_59 = 1; | |
282 pTilePolygon->sTextureDeltaU = 0; | |
283 pTilePolygon->sTextureDeltaV = 0; | |
1338 | 284 // x,z x+1,z |
285 // .____________. | |
286 // | | | |
287 // | | | |
288 // | | | |
289 // | | | |
290 // | | | |
291 // .____________. | |
292 // x,z+1 x+1,z+1 | |
293 memcpy(&array_73D150[0], &pTerrainVertices[z * 128 + x], sizeof(RenderVertexSoft));//x, z | |
106 | 294 array_73D150[0].u = 0; |
295 array_73D150[0].v = 0; | |
1338 | 296 memcpy(&array_73D150[1], &pTerrainVertices[z * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z |
106 | 297 array_73D150[1].u = 1; |
298 array_73D150[1].v = 0; | |
1338 | 299 memcpy(&array_73D150[2], &pTerrainVertices[(z + 1) * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z + 1 |
106 | 300 array_73D150[2].u = 1; |
301 array_73D150[2].v = 1; | |
1338 | 302 memcpy(&array_73D150[3], &pTerrainVertices[(z + 1) * 128 + x], sizeof(RenderVertexSoft));//x, z + 1 |
106 | 303 array_73D150[3].u = 0; |
304 array_73D150[3].v = 1; | |
1338 | 305 //v58 = 0; |
306 //if (v58 == 4) // if all y == first y; primitive in xz plane | |
307 //pTile->field_32 |= 0x0001; | |
1427 | 308 pTilePolygon->pODMFace = nullptr; |
309 pTilePolygon->uNumVertices = 4; | |
310 pTilePolygon->field_59 = 5; | |
1338 | 311 |
312 //shading (çàòåíåíèå)---------------------------------------------------------------------------- | |
313 //uint norm_idx = pTerrainNormalIndices[2 * (z * 128 + x) + 1]; | |
1424 | 314 uint norm_idx = pTerrainNormalIndices[2 * (x * 128 + z) + 2]; |
638 | 315 assert(norm_idx < uNumTerrainNormals); |
316 | |
1980 | 317 Vec3_float_* norm = &pTerrainNormals[norm_idx]; |
1338 | 318 float _f = ((norm->x * (float)pOutdoor->vSunlight.x / 65536.0) - |
319 (norm->y * (float)pOutdoor->vSunlight.y / 65536.0) - | |
320 (norm->z * (float)pOutdoor->vSunlight.z / 65536.0)); | |
1427 | 321 pTilePolygon->dimming_level = 20.0 - floorf(20.0 * _f + 0.5f); |
1338 | 322 //----------------------------------------------------------------------------------------------- |
638 | 323 |
1637 | 324 ++pODMRenderParams->uNumPolygons; |
325 ++pODMRenderParams->field_44; | |
326 assert(pODMRenderParams->uNumPolygons < 20000); | |
265 | 327 |
1427 | 328 pTilePolygon->uBModelID = 0; |
329 pTilePolygon->uBModelFaceID = 0; | |
330 pTilePolygon->field_50 = (8 * (0 | (0 << 6))) | 6; | |
331 for (unsigned int k = 0; k < pTilePolygon->uNumVertices; ++k) | |
106 | 332 { |
333 memcpy(&array_50AC10[k], &array_73D150[k], sizeof(struct RenderVertexSoft)); | |
168 | 334 array_50AC10[k]._rhw = 1.0 / (array_73D150[k].vWorldViewPosition.x + 0.0000001000000011686097); |
106 | 335 } |
140 | 336 |
1338 | 337 // check the transparency and texture (tiles) mapping (ïðîâåðêà ïðîçðà÷íîñòè è íàëîæåíèå òåêñòóð (òàéëîâ))---------------------- |
186 | 338 bool transparent = false; |
1427 | 339 if ( !( pTilePolygon->flags & 1 ) ) // íå ïîääåðæèâàåòñÿ TextureFrameTable |
340 { | |
341 if ( /*pTile->flags & 2 && */pTilePolygon->uTileBitmapID == pRenderer->hd_water_tile_id) | |
1338 | 342 { |
343 //transparent = false; | |
344 v6 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame]; | |
345 } | |
346 else | |
347 { | |
1427 | 348 v6 = pTilePolygon->uTileBitmapID; |
349 if ( !_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5) ) | |
1338 | 350 transparent = true; |
351 } | |
179 | 352 |
140 | 353 assert(v6 < 1000); // many random crashes here |
186 | 354 |
355 // for all shore tiles - draw a tile water under them since they're half-empty | |
1427 | 356 if (!_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5)) // all shore tile filenames are wtrdrXXX |
2153 | 357 DrawBorderTiles(pTilePolygon); |
1427 | 358 |
359 pRenderer->DrawTerrainPolygon(pTilePolygon->uNumVertices, pTilePolygon, pBitmaps_LOD->pHardwareTextures[v6], transparent, true); | |
1338 | 360 } |
361 //else //çäåñü óæå ïîãðàíè÷íûå òàéëû âîäû | |
362 //pTile->DrawBorderTiles(); | |
363 //-------------------------------------------------------------------------------------------------------------------------------- | |
186 | 364 |
1637 | 365 --pODMRenderParams->uNumPolygons; |
366 --pODMRenderParams->field_44; | |
106 | 367 } |
368 } | |
369 } | |
0 | 370 |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
371 |
2153 | 372 //----- (004811A3) -------------------------------------------------------- |
373 void Render::DrawBorderTiles(struct Polygon *poly) | |
374 { | |
375 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false); | |
376 DrawTerrainPolygon(poly->uNumVertices, poly, | |
377 pBitmaps_LOD->pHardwareTextures[pHDWaterBitmapIDs[hd_water_current_frame]], false, true); | |
378 | |
379 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, true); | |
380 //DrawTerrainPolygon(poly->uNumVertices, poly, pBitmaps_LOD->pHardwareTextures[poly->uTileBitmapID], true, true); | |
381 } | |
382 | |
0 | 383 |
384 //----- (0047BACF) -------------------------------------------------------- | |
385 void Render::TransformBillboardsAndSetPalettesODM() | |
386 { | |
142 | 387 //int v0; // edi@1 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
388 //char *v1; // esi@2 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
389 //unsigned int v2; // edx@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
390 //int v3; // eax@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
391 //int v4; // edi@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
392 //int v5; // eax@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
393 //__int16 v6; // di@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
394 //int v7; // eax@3 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
395 //int v8; // ebx@4 |
0 | 396 unsigned __int16 *v9; // eax@7 |
397 char v10; // zf@9 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
398 //DWORD v11; // eax@13 |
0 | 399 int v12; // eax@13 |
400 int v13; // eax@14 | |
401 RenderBillboardTransform_local0 billboard; // [sp+4h] [bp-60h]@1 | |
402 int v15; // [sp+54h] [bp-10h]@13 | |
142 | 403 //int v16; // [sp+58h] [bp-Ch]@1 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
404 //int v17; // [sp+5Ch] [bp-8h]@2 |
0 | 405 int v18; // [sp+60h] [bp-4h]@13 |
406 | |
2002 | 407 billboard.sParentBillboardID = -1; |
0 | 408 billboard.pTarget = pRenderer->pTargetSurface; |
409 billboard.pTargetZ = pRenderer->pActiveZBuffer; | |
410 billboard.uTargetPitch = pRenderer->uTargetSurfacePitch; | |
693 | 411 billboard.uViewportX = pViewport->uViewportTL_X; |
412 billboard.uViewportY = pViewport->uViewportTL_Y; | |
413 billboard.uViewportZ = pViewport->uViewportBR_X - 1; | |
414 billboard.uViewportW = pViewport->uViewportBR_Y; | |
1637 | 415 pODMRenderParams->uNumBillboards = uNumBillboardsToDraw; |
142 | 416 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
417 for (int i = 0; i < ::uNumBillboardsToDraw; ++i) |
0 | 418 { |
1980 | 419 RenderBillboard* pBillboard = &pBillboardRenderList[i]; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
420 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
421 billboard.uScreenSpaceX = pBillboard->uScreenSpaceX; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
422 billboard.uScreenSpaceY = pBillboard->uScreenSpaceY; |
2002 | 423 billboard.sParentBillboardID = i; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
424 billboard._screenspace_x_scaler_packedfloat = pBillboard->_screenspace_x_scaler_packedfloat; |
2006 | 425 billboard.sTintColor = pBillboard->sTintColor; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
426 billboard._screenspace_y_scaler_packedfloat = pBillboard->_screenspace_y_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
427 billboard.sZValue = pBillboard->sZValue; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
428 billboard.uFlags = pBillboard->field_1E; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
429 if (pBillboard->uHwSpriteID != -1) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
430 { |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
431 if (!pRenderer->pRenderD3D) __debugbreak(); // no sw rendering |
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
432 //if (pRenderer->pRenderD3D) |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
433 pRenderer->TransformBillboard(&billboard, |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
434 &pSprites_LOD->pHardwareSprites[pBillboard->uHwSpriteID], |
657 | 435 pBillboard->dimming_level, pBillboard); |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
436 /*else |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
437 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
438 assert(false); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
439 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
440 auto v1 = (char *)&pBillboard->uScreenSpaceY; |
0 | 441 if ( *(v1 - 10) & 2 ) |
442 v9 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 0, 1); | |
443 else | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
444 v9 = sr_GetBillboardPalette((RenderBillboard *)(v1 - 40), *((short *)v1 - 7), pBillboard->sZValue, *((short *)v1 + 1)); |
0 | 445 v10 = (*(v1 - 9) & 1) == 0; |
446 billboard.pPalette = v9; | |
447 if ( !v10 ) | |
448 billboard.pPalette = pPaletteManager->field_261600[*((short *)v1 - 7)]; | |
449 if ( !(billboard.uFlags & 0x40) && billboard.uFlags & 0x80 ) | |
450 { | |
323 | 451 v12 = stru_5C6E00->Cos(i * 5 + GetTickCount()); |
0 | 452 v15 = abs(v12); |
453 v18 = (unsigned __int64)(15i64 * v15) >> 16; | |
454 billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 15 - v18, 1); | |
455 } | |
456 v13 = *((short *)v1 - 8); | |
457 if ( v13 >= 0 ) | |
733 | 458 pSprites_LOD->pSpriteHeaders[v13].DrawSprite_sw(&billboard, 1); |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
459 }*/ |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
460 } |
0 | 461 } |
462 } | |
463 | |
464 //----- (0047AF11) -------------------------------------------------------- | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
465 void Render::DrawSpriteObjects_ODM() |
0 | 466 { |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
467 //char *v0; // edi@2 |
430 | 468 //ObjectDesc *v1; // ebx@4 |
0 | 469 __int16 v2; // cx@5 |
470 RenderBillboard *v3; // esi@10 | |
471 SpriteFrame *v4; // eax@10 | |
430 | 472 //SpriteFrame *v5; // ebx@10 |
0 | 473 unsigned int v6; // eax@10 |
430 | 474 //int v7; // ecx@10 |
475 //int v8; // edx@10 | |
0 | 476 int v9; // ecx@10 |
477 unsigned __int16 v10; // ax@10 | |
430 | 478 //int *v11; // eax@14 |
0 | 479 int v12; // eax@22 |
480 int v13; // ST3C_4@23 | |
481 int v14; // eax@23 | |
482 int v15; // ecx@23 | |
483 int v16; // ebx@23 | |
484 int v17; // ecx@25 | |
485 int v18; // eax@25 | |
486 int v19; // ST40_4@26 | |
487 int v20; // ecx@26 | |
488 int v21; // ST44_4@28 | |
489 int v22; // ST3C_4@29 | |
490 signed __int64 v23; // qtt@30 | |
491 int v24; // ebx@30 | |
492 int v25; // ST3C_4@30 | |
493 int v26; // eax@31 | |
494 char v27; // zf@31 | |
430 | 495 //SpriteFrame *v28; // [sp+Ch] [bp-34h]@10 |
496 //__int16 a5; // [sp+10h] [bp-30h]@10 | |
0 | 497 int v30; // [sp+14h] [bp-2Ch]@23 |
498 int v31; // [sp+14h] [bp-2Ch]@29 | |
499 __int16 v32; // [sp+14h] [bp-2Ch]@30 | |
500 int v33; // [sp+18h] [bp-28h]@23 | |
501 int v34; // [sp+18h] [bp-28h]@26 | |
502 int v35; // [sp+18h] [bp-28h]@30 | |
503 int v36; // [sp+1Ch] [bp-24h]@10 | |
504 int v37; // [sp+1Ch] [bp-24h]@23 | |
505 int a6; // [sp+20h] [bp-20h]@10 | |
506 int a6a; // [sp+20h] [bp-20h]@23 | |
507 int v40; // [sp+24h] [bp-1Ch]@25 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
508 //signed int v41; // [sp+28h] [bp-18h]@1 |
0 | 509 int v42; // [sp+2Ch] [bp-14h]@23 |
510 int y; // [sp+30h] [bp-10h]@10 | |
511 int x; // [sp+34h] [bp-Ch]@10 | |
512 int z; // [sp+38h] [bp-8h]@10 | |
513 signed __int16 v46; // [sp+3Ch] [bp-4h]@12 | |
514 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
515 //v41 = 0; |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
516 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
|
517 { |
1980 | 518 SpriteObject* object = &pSpriteObjects[i]; |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
519 //auto v0 = (char *)&pSpriteObjects[i].uSectorID; |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
520 //v0 = (char *)&pSpriteObjects[0].uSectorID; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
521 //do |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
522 //{ |
430 | 523 if (!object->uObjectDescID) // item probably pciked up |
524 continue; | |
525 | |
526 assert(object->uObjectDescID < pObjectList->uNumObjects); | |
1980 | 527 ObjectDesc* object_desc = &pObjectList->pObjects[object->uObjectDescID]; |
430 | 528 if (object_desc->NoSprite()) |
529 continue; | |
530 | |
531 //v1 = &pObjectList->pObjects[*((short *)v0 - 13)]; | |
532 //if ( !(v1->uFlags & 1) ) | |
533 //{ | |
534 //v2 = *((short *)v0 - 14) | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
535 v2 = object->uType; |
430 | 536 if ( (v2 < 1000 || v2 >= 10000) && (v2 < 500 || v2 >= 600) || pGame->pStru6Instance->_4A81CA(object) ) |
537 { | |
538 //a5 = *(short *)v0; | |
539 x = object->vPosition.x; | |
540 y = object->vPosition.y; | |
541 z = object->vPosition.z; | |
542 v3 = &pBillboardRenderList[::uNumBillboardsToDraw]; | |
543 v4 = pSpriteFrameTable->GetFrame(object_desc->uSpriteID, object->uSpriteFrameID); | |
544 //v5 = v4; | |
545 //v28 = v4; | |
546 v36 = v4->uFlags; | |
547 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
|
548 v6 = stru_5C6E00->Atan2(object->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x, object->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y); |
430 | 549 //LOWORD(v7) = object->uFacing; |
550 //v8 = v36; | |
551 v9 = ((signed int)(stru_5C6E00->uIntegerPi + ((signed int)stru_5C6E00->uIntegerPi >> 3) + object->uFacing - v6) >> 8) & 7; | |
552 v10 = v4->pHwSpriteIDs[v9]; | |
0 | 553 v3->uHwSpriteID = v10; |
554 if ( v36 & 0x20 ) | |
555 { | |
430 | 556 //v8 = v36; |
557 z -= (signed int)((unsigned __int64)(v4->scale * (signed __int64)pSprites_LOD->pSpriteHeaders[(signed __int16)v10].uHeight) >> 16) >> 1; | |
0 | 558 } |
559 v46 = 0; | |
430 | 560 if ( v36 & 2 ) |
0 | 561 v46 = 2; |
430 | 562 //v11 = (int *)(256 << v9); |
563 if ( (256 << v9) & v36 ) | |
0 | 564 v46 |= 4u; |
430 | 565 if ( v36 & 0x40000 ) |
0 | 566 v46 |= 0x40u; |
430 | 567 if ( v36 & 0x20000 ) |
0 | 568 LOBYTE(v46) = v46 | 0x80; |
569 if ( a6 ) | |
570 { | |
2154 | 571 //LOBYTE(v11) = _4E94D3_light_type; |
572 pMobileLightsStack->AddLight(x, y, z, object->uSectorID, a6, 0xFFu, 0xFFu, 0xFFu, _4E94D3_light_type); | |
0 | 573 } |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
574 v12 = (x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
575 if (pGame->pIndoorCameraD3D->sRotationX) |
0 | 576 { |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
577 v13 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 578 v30 = ((unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) |
579 + ((unsigned __int64)(v13 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
580 v37 = (unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
581 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
|
582 v33 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1642 | 583 v14 = (unsigned __int64)(v30 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16; |
584 v15 = (unsigned __int64)(v33 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16; | |
0 | 585 v16 = v15 + v14; |
586 v42 = v15 + v14; | |
1637 | 587 if ( v15 + v14 >= 262144 && v16 <= pODMRenderParams->shading_dist_mist << 16 ) |
0 | 588 { |
589 v17 = a6a - v37; | |
590 v40 = a6a - v37; | |
1642 | 591 v18 = ((unsigned __int64)(v33 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) |
592 - ((unsigned __int64)(v30 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
0 | 593 goto LABEL_29; |
594 } | |
595 } | |
596 else | |
597 { | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
598 v34 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 599 v19 = (unsigned __int64)(v12 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; |
600 v20 = (unsigned __int64)(v34 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
0 | 601 v16 = v20 + v19; |
602 v42 = v20 + v19; | |
1637 | 603 if ( v20 + v19 >= 262144 && v16 <= pODMRenderParams->shading_dist_mist << 16 ) |
0 | 604 { |
1642 | 605 v21 = (unsigned __int64)(((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16) * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
606 v17 = ((unsigned __int64)(v34 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v21; | |
607 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
|
608 v18 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
0 | 609 LABEL_29: |
610 v31 = v18; | |
611 v22 = abs(v17); | |
612 if ( abs(v16) >= v22 ) | |
613 { | |
614 LODWORD(v23) = 0; | |
1637 | 615 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad); |
0 | 616 v24 = v23 / v42; |
617 v25 = v23 / v42; | |
618 LODWORD(v23) = 0; | |
1637 | 619 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad); |
430 | 620 v35 = pViewport->uScreenCenterX - ((signed int)(((unsigned __int64)(v25 * (signed __int64)v40) >> 16) + 32768) >> 16); |
621 v32 = LOWORD(pViewport->uScreenCenterY) - (((unsigned int)((unsigned __int64)(v23 / v42 * v31) >> 16) + 32768) >> 16); | |
622 | |
623 //if (::uNumBillboardsToDraw >= 500) | |
624 // return; | |
625 assert(::uNumBillboardsToDraw < 500); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
626 ++::uNumBillboardsToDraw; |
0 | 627 ++uNumSpritesDrawnThisFrame; |
430 | 628 |
629 object->uAttributes |= 1; | |
630 v3->uPalette = v4->uPaletteIndex; | |
631 v3->uIndoorSectorID = object->uSectorID; | |
632 v3->_screenspace_x_scaler_packedfloat = (unsigned __int64)(v4->scale * (signed __int64)v24) >> 16; | |
633 v26 = (unsigned __int64)(v4->scale * (signed __int64)v24) >> 16; | |
634 v3->pSpriteFrame = v4; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
635 v3->_screenspace_y_scaler_packedfloat = v26; |
0 | 636 v3->field_1E = v46; |
430 | 637 v3->world_x = x; |
638 v3->world_y = y; | |
639 v3->world_z = z; | |
0 | 640 v3->uScreenSpaceX = v35; |
641 v3->uScreenSpaceY = v32; | |
642 HIWORD(v26) = HIWORD(v42); | |
643 LOWORD(v26) = 0; | |
430 | 644 v27 = (object->uAttributes & 0x20) == 0; |
862 | 645 v3->sZValue = v26 + (PID(OBJECT_Item,i)); |
657 | 646 v3->dimming_level = 0; |
2006 | 647 v3->sTintColor = 0; |
0 | 648 if ( !v27 ) |
649 { | |
650 if ( !pRenderer->pRenderD3D ) | |
651 v3->sZValue = 0; | |
652 } | |
653 } | |
654 goto LABEL_34; | |
655 } | |
656 } | |
657 } | |
430 | 658 //} |
0 | 659 LABEL_34: |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
660 ; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
661 //++v41; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
662 //v0 += 112; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
663 //} |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
664 //while ( v41 < (signed int)uNumSpriteObjects ); |
0 | 665 } |
666 } | |
667 | |
668 //----- (0049D9BC) -------------------------------------------------------- | |
669 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut) | |
670 { | |
671 size_t v4; // eax@1 | |
672 size_t v5; // eax@1 | |
673 IUnknown *v6; // eax@10 | |
674 size_t v7; // eax@13 | |
675 DDDEVICEIDENTIFIER ddDevId; // [sp+4h] [bp-4F8h]@11 | |
676 DDSURFACEDESC2 v10;/*int v10; // [sp+42Ch] [bp-D0h]@16 | |
677 int v11; // [sp+430h] [bp-CCh]@16 | |
678 int v12; // [sp+434h] [bp-C8h]@16 | |
679 int v13; // [sp+438h] [bp-C4h]@16 | |
680 int v14; // [sp+474h] [bp-88h]@16*/ | |
681 DDSCAPS2 ddsCaps; // [sp+4A8h] [bp-54h]@14 | |
682 unsigned int uFreeVideoMem; // [sp+4B8h] [bp-44h]@14 | |
683 RenderD3D_aux aux; // [sp+4BCh] [bp-40h]@19 | |
684 IDirect3D3 *pDirect3D3; // [sp+4C4h] [bp-38h]@18 | |
685 int v19; // [sp+4C8h] [bp-34h]@16 | |
686 RenderD3D_D3DDevDesc v20; // [sp+4CCh] [bp-30h]@1 | |
687 LPDIRECTDRAW pDirectDraw; // [sp+4F4h] [bp-8h]@4 | |
688 IDirectDraw4 *pDirectDraw4; // [sp+4F8h] [bp-4h]@7 | |
689 | |
690 v4 = strlen(lpDriverName); | |
691 v20.pDriverName = new char[v4 + 1]; | |
692 v5 = strlen(lpDevDesc); | |
693 v20.pDeviceDesc = new char[v5 + 1]; | |
694 strcpy(v20.pDriverName, lpDriverName); | |
695 strcpy(v20.pDeviceDesc, lpDevDesc); | |
696 if ( lpGUID ) | |
697 { | |
698 v20.pGUID = new GUID; | |
699 memcpy(v20.pGUID, lpGUID, 0x10u); | |
700 } | |
701 else | |
702 { | |
703 v20.pGUID = 0; | |
704 } | |
705 | |
706 if (FAILED(DirectDrawCreate(v20.pGUID, &pDirectDraw, 0))) | |
707 { | |
708 delete [] v20.pDriverName; | |
709 delete [] v20.pDeviceDesc; | |
710 if ( v20.pGUID ) | |
711 delete v20.pGUID; | |
712 } | |
713 else | |
714 { | |
715 if (FAILED(pDirectDraw->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pDirectDraw4))) | |
716 { | |
717 delete [] v20.pDriverName; | |
718 delete [] v20.pDeviceDesc; | |
719 if ( v20.pGUID ) | |
720 delete v20.pGUID; | |
721 v6 = (IUnknown *)pDirectDraw; | |
722 } | |
723 else | |
724 { | |
725 pDirectDraw->Release(); | |
726 if (FAILED( pDirectDraw4->GetDeviceIdentifier(&ddDevId, 1u))) | |
727 { | |
728 v20.pDDraw4DevDesc = 0; | |
729 } | |
730 else | |
731 { | |
732 v7 = strlen(ddDevId.szDescription); | |
733 v20.pDDraw4DevDesc = new char[v7 + 1]; | |
734 strcpy(v20.pDDraw4DevDesc, ddDevId.szDescription); | |
735 } | |
736 memset(&ddsCaps, 0, 0x10u); | |
737 if (FAILED(pDirectDraw4->GetAvailableVidMem( | |
738 &ddsCaps, | |
739 (LPDWORD)&v20.uVideoMem, | |
740 (LPDWORD)&uFreeVideoMem))) | |
741 v20.uVideoMem = 0; | |
742 memset(&v10, 0, 0x7Cu); | |
743 v10.dwSize = 124; | |
744 v10.dwFlags = 6; | |
745 v10.dwHeight = 640; | |
746 v10.dwWidth = 480; | |
747 v10.ddpfPixelFormat.dwSize = 32; | |
748 | |
749 v19 = 0; | |
750 if ( FAILED(pDirectDraw4->EnumDisplayModes( | |
751 0, | |
752 0, | |
753 &v19, | |
754 (LPDDENUMMODESCALLBACK2)DDrawDisplayModesEnumerator)) | |
755 || !v19 | |
756 || FAILED(pDirectDraw4->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D3))) | |
757 { | |
758 delete [] v20.pDriverName; | |
759 delete [] v20.pDeviceDesc; | |
760 if ( v20.pDDraw4DevDesc ) | |
761 free(v20.pDDraw4DevDesc); | |
762 if ( v20.pGUID ) | |
763 delete v20.pGUID; | |
764 v6 = (IUnknown *)pDirectDraw4; | |
765 } | |
766 else | |
767 { | |
768 aux.pInfo = pOut; | |
769 aux.ptr_4 = &v20; | |
770 pDirect3D3->EnumDevices((LPD3DENUMDEVICESCALLBACK)D3DDeviceEnumerator, &aux); | |
771 delete [] v20.pDriverName; | |
772 delete [] v20.pDeviceDesc; | |
773 if ( v20.pDDraw4DevDesc ) | |
774 free(v20.pDDraw4DevDesc); | |
775 if ( v20.pGUID ) | |
776 delete v20.pGUID; | |
777 pDirectDraw4->Release(); | |
778 v6 = (IUnknown *)pDirect3D3; | |
779 pDirectDraw4 = 0; | |
780 } | |
781 } | |
782 v6->Release(); | |
783 } | |
784 return 1; | |
785 } | |
786 | |
787 //----- (0049D784) -------------------------------------------------------- | |
788 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, RenderD3D_aux *a6) | |
789 { | |
790 int v6; // eax@1 | |
791 signed int v7; // edi@1 | |
792 signed int v8; // edi@14 | |
793 size_t v9; // eax@30 | |
794 size_t v10; // eax@30 | |
795 size_t v11; // eax@30 | |
796 size_t v12; // eax@30 | |
797 size_t v13; // eax@30 | |
798 | |
799 v6 = pHWDesc->dwFlags; | |
800 v7 = -1; | |
801 if ( v6 ) | |
802 { | |
803 if ( !a6->ptr_4->pGUID ) | |
804 v7 = 0; | |
805 if ( v6 && a6->ptr_4->pGUID ) | |
806 v7 = 1; | |
807 } | |
808 if ( !strcmp(lpDeviceName, "RGB Emulation") && !a6->ptr_4->pGUID ) | |
809 v7 = 2; | |
810 if ( !strcmp(lpDeviceName, "Reference Rasterizer") && !a6->ptr_4->pGUID ) | |
811 v7 = 3; | |
812 if ( v7 != -1 ) | |
813 { | |
814 v8 = v7; | |
815 a6->pInfo[v8].bIsDeviceCompatible = 1; | |
816 a6->pInfo[v8].uCaps = 0; | |
817 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 0x10) ) | |
818 a6->pInfo[v8].uCaps |= 2u; | |
819 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 2) ) | |
820 a6->pInfo[v8].uCaps |= 4u; | |
821 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 1) ) | |
822 a6->pInfo[v8].uCaps |= 8u; | |
823 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 0x20) ) | |
824 a6->pInfo[v8].uCaps |= 0x10u; | |
825 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 2) ) | |
826 a6->pInfo[v8].uCaps |= 0x20u; | |
827 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 4) ) | |
828 a6->pInfo[v8].uCaps |= 0x40u; | |
829 if ( !(BYTE1(pHWDesc->dwDevCaps) & 0x10) ) | |
830 BYTE1(a6->pInfo[v8].uCaps) |= 1u; | |
831 if ( pHWDesc->dpcTriCaps.dwTextureCaps & 0x20 ) | |
832 LOBYTE(a6->pInfo[v8].uCaps) |= 0x80u; | |
833 v9 = strlen(lpDeviceName); | |
834 a6->pInfo[v8].pName = new char[v9 + 1]; | |
835 strcpy(a6->pInfo[v8].pName, lpDeviceName); | |
836 v10 = strlen(lpDeviceDesc); | |
837 a6->pInfo[v8].pDescription = new char[v10 + 1]; | |
838 strcpy(a6->pInfo[v8].pDescription, lpDeviceDesc); | |
1631 | 839 a6->pInfo[v8].pGUID = new GUID; |
0 | 840 memcpy(a6->pInfo[v8].pGUID, lpGUID, 0x10u); |
841 v11 = strlen(a6->ptr_4->pDriverName); | |
842 a6->pInfo[v8].pDriverName = new char[v11 + 1]; | |
843 strcpy(a6->pInfo[v8].pDriverName, a6->ptr_4->pDriverName); | |
844 v12 = strlen(a6->ptr_4->pDeviceDesc); | |
845 a6->pInfo[v8].pDeviceDesc = new char[v12 + 1]; | |
846 strcpy(a6->pInfo[v8].pDeviceDesc, a6->ptr_4->pDeviceDesc); | |
847 v13 = strlen(a6->ptr_4->pDDraw4DevDesc); | |
848 a6->pInfo[v8].pDDraw4DevDesc = new char[v13 + 1]; | |
849 strcpy(a6->pInfo[v8].pDDraw4DevDesc, a6->ptr_4->pDDraw4DevDesc); | |
850 if ( a6->ptr_4->pGUID ) | |
851 { | |
852 a6->pInfo[v8].pDirectDrawGUID = new GUID; | |
853 memcpy(a6->pInfo[v8].pDirectDrawGUID, a6->ptr_4->pGUID, 0x10u); | |
854 } | |
855 else | |
856 { | |
857 a6->pInfo[v8].pDirectDrawGUID = 0; | |
858 } | |
859 a6->pInfo[v8].uVideoMem = a6->ptr_4->uVideoMem; | |
860 } | |
861 return 1; | |
862 } | |
863 | |
864 //----- (0049D75C) -------------------------------------------------------- | |
865 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2) | |
866 { | |
867 HRESULT result; // eax@3 | |
868 | |
869 if ( pSurfaceDesc->ddsCaps.dwCaps | 0x2000 && pSurfaceDesc->ddpfPixelFormat.dwRGBBitCount == 16 ) | |
870 { | |
871 *a2 = 1; | |
872 result = 0; | |
873 } | |
874 else | |
875 { | |
876 result = 1; | |
877 } | |
878 return result; | |
879 } | |
880 | |
881 //----- (0047A95E) -------------------------------------------------------- | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
882 void Render::PrepareDecorationsRenderList_ODM() |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
883 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
884 //char *v0; // esi@2 |
639 | 885 //DecorationDesc *v1; // ebx@6 |
0 | 886 __int16 v2; // ax@6 |
887 double v3; // st7@7 | |
639 | 888 //int v4; // eax@9 |
889 //int v5; // edx@9 | |
0 | 890 unsigned int v6; // edi@9 |
891 int v7; // eax@9 | |
892 SpriteFrame *v8; // eax@9 | |
635 | 893 //SpriteFrame *v9; // edi@9 |
0 | 894 unsigned __int16 *v10; // eax@9 |
895 int v11; // ecx@9 | |
896 int v12; // eax@9 | |
897 int v13; // ecx@9 | |
898 int v14; // ecx@20 | |
899 char v15; // dl@20 | |
900 signed int v16; // eax@20 | |
901 int v17; // eax@23 | |
902 int v18; // ecx@24 | |
903 int v19; // eax@24 | |
904 int v20; // ecx@24 | |
905 int v21; // ebx@26 | |
906 int v22; // eax@26 | |
907 int v23; // eax@30 | |
908 signed __int64 v24; // qtt@31 | |
909 int v25; // ebx@31 | |
910 int v26; // ecx@32 | |
911 RenderBillboard *v27; // eax@37 | |
912 __int16 v28; // dx@37 | |
913 __int16 v29; // cx@37 | |
914 int v30; // ecx@37 | |
915 int v31; // ebx@37 | |
619 | 916 Particle_sw local_0; // [sp+Ch] [bp-98h]@7 |
639 | 917 //int x; // [sp+74h] [bp-30h]@9 |
918 //int y; // [sp+78h] [bp-2Ch]@9 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
919 //int v35; // [sp+7Ch] [bp-28h]@1 |
639 | 920 //int v36; // [sp+80h] [bp-24h]@9 |
0 | 921 unsigned __int16 *v37; // [sp+84h] [bp-20h]@9 |
922 int v38; // [sp+88h] [bp-1Ch]@9 | |
923 int v39; // [sp+8Ch] [bp-18h]@24 | |
924 int v40; // [sp+90h] [bp-14h]@24 | |
925 int v41; // [sp+94h] [bp-10h]@24 | |
926 int v42; // [sp+98h] [bp-Ch]@9 | |
927 int a5; // [sp+9Ch] [bp-8h]@9 | |
928 int b; // [sp+A0h] [bp-4h]@22 | |
929 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
930 //v35 = 0; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
931 //if ( (signed int)uNumLevelDecorations > 0 ) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
932 //{ |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
933 //v0 = (char *)&pLevelDecorations[0].vPosition.y; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
934 //do |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
935 for (int i = 0; i < uNumLevelDecorations; ++i) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
936 { |
1980 | 937 LevelDecoration* decor = &pLevelDecorations[i]; |
938 char* v0 = (char *)&pLevelDecorations[i].vPosition.y; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
939 |
1491
6d21ef91cb2d
Rename LevelDecoration::_47A825 to LevelDecoration::IsObeliskChestActive().
yoctozepto
parents:
1490
diff
changeset
|
940 if ((!(decor->uFlags & LEVEL_DECORATION_OBELISK_CHEST) || decor->IsObeliskChestActive()) && !(decor->uFlags & LEVEL_DECORATION_INVISIBLE)) |
1490 | 941 { |
942 //v1 = &pDecorationList->pDecorations[decor->uDecorationDescID]; | |
1980 | 943 DecorationDesc* decor_desc = pDecorationList->pDecorations + decor->uDecorationDescID; |
1490 | 944 v2 = decor_desc->uFlags; |
945 if ( (char)v2 >= 0 ) | |
946 { | |
947 if ( !(v2 & 0x22) ) | |
0 | 948 { |
1490 | 949 //v4 = decor->vPosition.x; |
950 //v5 = decor->vPosition.z; | |
951 v6 = pMiscTimer->uTotalGameTimeElapsed; | |
952 //y = decor->vPosition.y; | |
953 //x = decor->vPosition.x; | |
954 //v36 = decor->vPosition.z; | |
955 v7 = abs(decor->vPosition.x + decor->vPosition.y); | |
956 | |
957 | |
958 #pragma region "New: seasons change" | |
959 extern bool change_seasons; | |
960 if (change_seasons) | |
961 switch (pParty->uCurrentMonth) | |
962 { | |
963 // case 531 (tree60), 536 (tree65), 537 (tree66) have no autumn/winter sprites | |
964 case 11: case 0: case 1: // winter | |
965 switch (decor_desc->uSpriteID) | |
966 { | |
967 //case 468: //bush02 grows on swamps, which are evergreeen actually | |
968 case 548: // flower10 | |
969 case 547: // flower09 | |
970 case 541: // flower03 | |
971 case 539: continue; // flower01 | |
972 | |
973 case 483: // tree01 | |
974 case 486: // tree04 | |
975 case 492: // tree10 | |
976 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 2); | |
977 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 2, v6 + v7); | |
978 break; | |
979 | |
980 default: | |
981 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
982 } | |
983 break; | |
984 | |
985 case 2: case 3: case 4: // spring | |
986 switch (decor_desc->uSpriteID) | |
987 { | |
988 } | |
989 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
990 break; | |
991 | |
992 case 8: case 9: case 10: // autumn | |
993 switch (decor_desc->uSpriteID) | |
994 { | |
995 //case 468: //bush02 grows on swamps, which are evergreeen actually | |
996 case 548: // flower10 | |
997 case 547: // flower09 | |
998 case 541: // flower03 | |
999 case 539: continue; // flower01 | |
1000 | |
1001 case 483: // tree01 | |
1002 case 486: // tree04 | |
1003 case 492: // tree10 | |
1004 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 1); | |
1005 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 1, v6 + v7); | |
1006 break; | |
1007 | |
1008 default: | |
1009 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
1010 } | |
1011 break; | |
1012 | |
1013 case 5: case 6: case 7: // summer | |
1014 //all green by default | |
1015 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
1016 break; | |
1017 | |
1018 default: assert(pParty->uCurrentMonth >= 0 && pParty->uCurrentMonth < 12); | |
1019 } | |
1020 else | |
1021 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
1022 #pragma endregion | |
1023 //v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7); | |
1024 | |
1025 //v9 = v8; | |
1026 v42 = v8->uFlags; | |
1027 a5 = v8->uGlowRadius; | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1028 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
|
1029 decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y); |
1490 | 1030 v11 = *((int *)v0 + 2); |
1031 v37 = v10; | |
1032 v12 = v42; | |
1033 v38 = 0; | |
1034 v13 = ((signed int)(stru_5C6E00->uIntegerPi | |
1035 + ((signed int)stru_5C6E00->uIntegerPi >> 3) | |
1036 + v11 | |
1037 - (signed int)v37) >> 8) & 7; | |
1038 v37 = (unsigned __int16 *)v13; | |
1039 if ( v42 & 2 ) | |
1040 v38 = 2; | |
1041 if ( (256 << v13) & v42 ) | |
1042 v38 |= 4u; | |
1043 if ( v12 & 0x40000 ) | |
1044 v38 |= 0x40u; | |
1045 if ( v12 & 0x20000 ) | |
1046 LOBYTE(v38) = v38 | 0x80; | |
1047 if ( a5 ) | |
0 | 1048 { |
1490 | 1049 if ( pRenderer->pRenderD3D && pRenderer->bUseColoredLights ) |
0 | 1050 { |
1490 | 1051 v14 = decor_desc->uColoredLightRed; |
1052 v15 = decor_desc->uColoredLightGreen; | |
1053 v16 = decor_desc->uColoredLightBlue; | |
0 | 1054 } |
1055 else | |
1056 { | |
1490 | 1057 v16 = 255; |
1058 v14 = 255; | |
1059 v15 = 255; | |
1060 } | |
1061 b = v16; | |
1062 pStationaryLightsStack->AddLight( | |
1063 decor->vPosition.x, | |
1064 decor->vPosition.y, | |
1065 decor->vPosition.z + decor_desc->uDecorationHeight / 2, | |
1066 a5, | |
1067 v14, | |
1068 v15, | |
1069 v16, | |
2154 | 1070 _4E94D0_light_type); |
1490 | 1071 } |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1072 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
|
1073 if (pGame->pIndoorCameraD3D->sRotationX) |
1490 | 1074 { |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1075 v40 = (decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 1076 v18 = ((unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) |
1077 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
1490 | 1078 v42 = v18; |
1642 | 1079 b = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
1080 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
|
1081 v40 = (decor->vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1642 | 1082 v41 = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16; |
1083 v19 = (unsigned __int64)(v18 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16; | |
1084 v20 = v19 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
1085 v39 = v19 + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
1637 | 1086 if ( v20 >= 262144 && v20 <= pODMRenderParams->shading_dist_mist << 16 ) |
1490 | 1087 { |
1088 v21 = a5 - b; | |
1089 v41 = a5 - b; | |
1642 | 1090 a5 = (unsigned __int64)(v42 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16; |
1091 b = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16; | |
1092 v22 = ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) - a5; | |
1490 | 1093 LABEL_30: |
1094 v42 = v22; | |
1095 v40 = 2 * abs(v20); | |
1096 v23 = abs(v21); | |
1097 if ( v40 >= v23 ) | |
0 | 1098 { |
1490 | 1099 LODWORD(v24) = 0; |
1637 | 1100 HIDWORD(v24) = SLOWORD(pODMRenderParams->int_fov_rad); |
1490 | 1101 a5 = v24 / v39; |
1102 v25 = pViewport->uScreenCenterX | |
1103 - ((signed int)(((unsigned __int64)(v24 / v39 * v41) >> 16) + 32768) >> 16); | |
1104 b = (unsigned __int64)(a5 * (signed __int64)v42) >> 16; | |
1105 v41 = v24 / v39; | |
1106 v40 = pViewport->uScreenCenterY | |
1107 - ((signed int)(((unsigned __int64)(a5 * (signed __int64)v42) >> 16) + 32768) >> 16); | |
1108 v42 = v8->scale; | |
1109 v41 = (unsigned __int64)(v42 * v24 / v39) >> 16; | |
1110 v37 = (unsigned __int16 *)&v8->pHwSpriteIDs[(int)v37]; | |
1111 if ( pRenderer->pRenderD3D ) | |
1112 { | |
1113 v26 = v41; | |
1114 v42 = pSprites_LOD->pHardwareSprites[(signed __int16)*v37].uBufferWidth >> 1; | |
1115 b = (unsigned __int64)(v42 * (signed __int64)v41) >> 16; | |
1116 } | |
1117 else | |
1118 { | |
1119 v26 = v41; | |
1120 v42 = pSprites_LOD->pSpriteHeaders[(signed __int16)*v37].uWidth >> 1; | |
1121 b = (unsigned __int64)(v42 * (signed __int64)v41) >> 16; | |
1122 } | |
1123 if ( b + v25 >= (signed int)pViewport->uViewportTL_X && v25 - b <= (signed int)pViewport->uViewportBR_X ) | |
1124 { | |
1125 if (::uNumBillboardsToDraw >= 500) | |
1126 return; | |
1127 v27 = &pBillboardRenderList[::uNumBillboardsToDraw++]; | |
1128 ++uNumDecorationsDrawnThisFrame; | |
1129 v27->uHwSpriteID = *v37; | |
1130 v28 = v8->uPaletteIndex; | |
1131 v27->_screenspace_x_scaler_packedfloat = v26; | |
1132 v27->_screenspace_y_scaler_packedfloat = v26; | |
1133 v29 = v38; | |
1134 v27->uScreenSpaceX = v25; | |
1135 HIBYTE(v29) |= 2u; | |
1136 v27->uPalette = v28; | |
1137 v27->field_1E = v29; | |
1138 v27->world_x = decor->vPosition.x; | |
1139 v27->world_y = decor->vPosition.y; | |
1140 v27->world_z = decor->vPosition.z; | |
1141 v27->uScreenSpaceY = v40; | |
1142 HIWORD(v30) = HIWORD(v39); | |
1143 v31 = PID(OBJECT_Decoration,i); | |
1144 LOWORD(v30) = 0; | |
1145 v27->uIndoorSectorID = 0; | |
1146 v27->sZValue = v30 + v31; | |
1147 v27->dimming_level = 0; | |
1148 v27->pSpriteFrame = v8; | |
2006 | 1149 v27->sTintColor = 0; |
1490 | 1150 } |
0 | 1151 } |
1490 | 1152 goto LABEL_38; |
1153 } | |
1154 } | |
1155 else | |
1156 { | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1157 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
|
1158 v40 = (decor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 1159 b = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; |
1160 a5 = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
1161 v20 = b + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
1162 v39 = b + ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
1637 | 1163 if ( v20 >= 262144 && v20 <= pODMRenderParams->shading_dist_mist << 16 ) |
1490 | 1164 { |
1642 | 1165 a5 = (unsigned __int64)(v42 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
1166 b = (unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; | |
1167 v21 = ((unsigned __int64)(v40 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - a5; | |
1168 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
|
1169 v22 = (decor->vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1490 | 1170 goto LABEL_30; |
0 | 1171 } |
1172 } | |
1173 } | |
1490 | 1174 } |
1175 else | |
1176 { | |
1177 memset(&local_0, 0, 0x68u); | |
1178 v3 = (double)*((signed int *)v0 - 1); | |
1179 local_0.type = ParticleType_Bitmap | ParticleType_Rotating | ParticleType_8; | |
1180 local_0.uDiffuse = 0xFF3C1E; | |
1181 local_0.x = v3; | |
1182 local_0.y = (double)*(signed int *)v0; | |
1183 local_0.z = (double)*((signed int *)v0 + 1); | |
1184 local_0.r = 0.0; | |
1185 local_0.g = 0.0; | |
1186 local_0.b = 0.0; | |
1187 local_0.flt_28 = 1.0; | |
1188 local_0.timeToLive = (rand() & 0x80) + 128; | |
1189 local_0.uTextureID = pBitmaps_LOD->LoadTexture("effpar01"); | |
1190 pGame->pParticleEngine->AddParticle(&local_0); | |
1191 } | |
1192 } | |
0 | 1193 LABEL_38: |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1194 ; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1195 //++v35; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
1196 //v0 += 32; |
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 //while ( v35 < (signed int)uNumLevelDecorations ); |
0 | 1199 } |
1200 | |
1201 //----- (0049D717) -------------------------------------------------------- | |
1202 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst) | |
1203 { | |
1204 HRESULT v2; // esi@2 | |
1205 | |
2069 | 1206 if ( Src->dwFlags & (0x400 | 0x2000)) |
0 | 1207 { |
1208 v2 = 0; | |
1209 if ( Src->dwRGBBitCount == 16 && !Src->dwRBitMask ) | |
1210 goto LABEL_6; | |
1211 if ( !Dst->dwSize ) | |
1212 { | |
1213 v2 = 1; | |
1214 LABEL_6: | |
2078 | 1215 memcpy(Dst, Src, sizeof(DDPIXELFORMAT)); |
0 | 1216 return v2; |
1217 } | |
1218 } | |
1219 return 1; | |
1220 } | |
1221 | |
1222 //----- (0049DC28) -------------------------------------------------------- | |
1223 void RenderD3D::GetAvailableDevices(RenderD3D__DevInfo **pOutDevices) | |
1224 { | |
1225 RenderD3D__DevInfo *v2; // eax@1 | |
1226 | |
1227 v2 = new RenderD3D__DevInfo[4];// 4 items | |
1228 *pOutDevices = v2; | |
1229 memset(v2, 0, 0xA0u); | |
1985 | 1230 DirectDrawEnumerateExA((LPDDENUMCALLBACKEXA)RenderD3D__DeviceEnumerator, *pOutDevices, DDENUM_ATTACHEDSECONDARYDEVICES); |
0 | 1231 } |
1232 | |
1233 //----- (0049DC58) -------------------------------------------------------- | |
1234 RenderD3D::RenderD3D() | |
1235 { | |
1236 this->pHost = 0; | |
1237 this->pDirect3D = 0; | |
1238 this->pUnk = 0; | |
1239 this->pBackBuffer = 0; | |
1240 this->pFrontBuffer = 0; | |
1241 this->pZBuffer = 0; | |
1242 this->pDevice = 0; | |
1243 this->pViewport = 0; | |
1244 this->field_40 = 1; | |
1245 this->field_44 = 10; | |
1246 GetAvailableDevices(&this->pAvailableDevices); | |
1247 } | |
1248 | |
1249 //----- (0049DC90) -------------------------------------------------------- | |
1250 void RenderD3D::Release() | |
1251 { | |
1252 RenderD3D *v1; // esi@1 | |
1253 IDirectDraw4 *v2; // eax@2 | |
1254 signed int v3; // edi@4 | |
1255 IDirect3DViewport3 *v4; // eax@22 | |
1256 IUnknown *v5; // eax@24 | |
1257 IDirectDrawSurface4 *v6; // eax@26 | |
1258 IDirect3DDevice3 *v7; // eax@28 | |
1259 IDirect3D3 *v8; // eax@30 | |
1260 IDirectDrawSurface4 *v9; // eax@32 | |
1261 IDirectDrawSurface4 *v10; // eax@34 | |
1262 IDirectDraw4 *v11; // eax@36 | |
1263 | |
1264 v1 = this; | |
1265 if ( !this->bWindowed ) | |
1266 { | |
1267 v2 = this->pHost; | |
1268 if ( v2 ) | |
1269 { | |
1270 v2->RestoreDisplayMode(); | |
1271 v1->pHost->SetCooperativeLevel(v1->hWindow, 8u); | |
1272 v1->pHost->FlipToGDISurface(); | |
1273 } | |
1274 } | |
1275 v3 = 0; | |
1276 do | |
1277 { | |
1278 if ( v1->pAvailableDevices[v3].pDriverName ) | |
1279 { | |
1280 free(v1->pAvailableDevices[v3].pDriverName); | |
1281 v1->pAvailableDevices[v3].pDriverName = 0; | |
1282 } | |
1283 if ( v1->pAvailableDevices[v3].pDeviceDesc ) | |
1284 { | |
1285 free(v1->pAvailableDevices[v3].pDeviceDesc); | |
1286 v1->pAvailableDevices[v3].pDeviceDesc = 0; | |
1287 } | |
1288 if ( v1->pAvailableDevices[v3].pDDraw4DevDesc ) | |
1289 { | |
1290 free(v1->pAvailableDevices[v3].pDDraw4DevDesc); | |
1291 v1->pAvailableDevices[v3].pDDraw4DevDesc = 0; | |
1292 } | |
1293 if ( v1->pAvailableDevices[v3].pDirectDrawGUID ) | |
1294 { | |
1295 free(v1->pAvailableDevices[v3].pDirectDrawGUID); | |
1296 v1->pAvailableDevices[v3].pDirectDrawGUID = 0; | |
1297 } | |
1298 if ( v1->pAvailableDevices[v3].pName ) | |
1299 { | |
1300 free(v1->pAvailableDevices[v3].pName); | |
1301 v1->pAvailableDevices[v3].pName = 0; | |
1302 } | |
1303 if ( v1->pAvailableDevices[v3].pDescription ) | |
1304 { | |
1305 free(v1->pAvailableDevices[v3].pDescription); | |
1306 v1->pAvailableDevices[v3].pDescription = 0; | |
1307 } | |
1308 if ( v1->pAvailableDevices[v3].pGUID ) | |
1309 { | |
1310 free(v1->pAvailableDevices[v3].pGUID); | |
1311 v1->pAvailableDevices[v3].pGUID = 0; | |
1312 } | |
1313 ++v3; | |
1314 } | |
1315 while ( v3 < 4 ); | |
1316 if ( v1->pAvailableDevices ) | |
1317 { | |
1318 free(v1->pAvailableDevices); | |
1319 v1->pAvailableDevices = 0; | |
1320 } | |
1321 v4 = v1->pViewport; | |
1322 if ( v4 ) | |
1323 { | |
1324 v4->Release(); | |
1325 v1->pViewport = 0; | |
1326 } | |
1327 v5 = v1->pUnk; | |
1328 if ( v5 ) | |
1329 { | |
1330 v5->Release(); | |
1331 v1->pUnk = 0; | |
1332 } | |
1333 v6 = v1->pZBuffer; | |
1334 if ( v6 ) | |
1335 { | |
1336 v6->Release(); | |
1337 v1->pZBuffer = 0; | |
1338 } | |
1339 v7 = v1->pDevice; | |
1340 if ( v7 ) | |
1341 { | |
1342 v7->Release(); | |
1343 v1->pDevice = 0; | |
1344 } | |
1345 v8 = v1->pDirect3D; | |
1346 if ( v8 ) | |
1347 { | |
1348 v8->Release(); | |
1349 v1->pDirect3D = 0; | |
1350 } | |
1351 v9 = v1->pBackBuffer; | |
1352 if ( v9 ) | |
1353 { | |
1354 v9->Release(); | |
1355 v1->pBackBuffer = 0; | |
1356 } | |
1357 v10 = v1->pFrontBuffer; | |
1358 if ( v10 ) | |
1359 { | |
1360 v10->Release(); | |
1361 v1->pFrontBuffer = 0; | |
1362 } | |
1363 v11 = v1->pHost; | |
1364 if ( v11 ) | |
1365 { | |
1366 v11->Release(); | |
1367 v1->pHost = 0; | |
1368 } | |
1369 } | |
1370 | |
1371 //----- (0049DE14) -------------------------------------------------------- | |
2069 | 1372 bool RenderD3D::CreateDevice(unsigned int uDeviceID, int bWindowed, OSWindow *window) |
0 | 1373 { |
1374 //IDirectDraw4 *v8; // eax@12 | |
1375 //IDirectDraw4 *v9; // eax@16 | |
1376 //IDirectDraw4 *v10; // eax@20 | |
1377 //IDirectDraw4 *v13; // eax@35 | |
1378 const char *v23; // [sp-4h] [bp-DCh]@9 | |
1379 const char *v24; // [sp-4h] [bp-DCh]@13 | |
1380 const char *v25; // [sp-4h] [bp-DCh]@19 | |
1381 DWORD v26; // [sp-4h] [bp-DCh]@30 | |
1382 DDSCAPS2 v27; // [sp+Ch] [bp-CCh]@37 | |
1383 DDSURFACEDESC2 ddsd2; // [sp+1Ch] [bp-BCh]@11 | |
1384 D3DVIEWPORT2 d3dvp2; // [sp+98h] [bp-40h]@28 | |
1385 IDirectDrawClipper *v30; // [sp+C4h] [bp-14h]@18 | |
1386 LPDIRECTDRAW lpDD; // [sp+C8h] [bp-10h]@1 | |
1387 | |
2069 | 1388 auto hWnd = window->GetApiHandle(); |
1389 int game_width = window->GetWidth(); | |
1390 int game_height = window->GetHeight(); | |
1391 | |
0 | 1392 this->bWindowed = bWindowed; |
1393 this->hWindow = hWnd; | |
1394 | |
1395 if (FAILED(DirectDrawCreate(pAvailableDevices[uDeviceID].pDirectDrawGUID, &lpDD, 0))) | |
1396 { | |
1397 sprintf(pErrorMessage, "Init - Failed to create DirectDraw interface.\n"); | |
1398 return 0; | |
1399 } | |
1400 | |
1401 if (FAILED(lpDD->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pHost))) | |
1402 { | |
1403 sprintf(pErrorMessage, "Init - Failed to create DirectDraw4 interface.\n"); | |
1404 if (lpDD) | |
1405 lpDD->Release(); | |
1406 return 0; | |
1407 } | |
1408 lpDD->Release(); | |
1409 lpDD = 0; | |
1410 | |
1411 if (bWindowed && !pAvailableDevices[uDeviceID].pDirectDrawGUID) | |
1412 { | |
1413 if (FAILED(pHost->SetCooperativeLevel(hWnd, DDSCL_MULTITHREADED | DDSCL_NORMAL))) | |
1414 { | |
1415 v23 = "Init - Failed to set cooperative level.\n"; | |
1416 sprintf(pErrorMessage, v23); | |
1417 LABEL_65: | |
1418 if (pHost) | |
1419 { | |
1420 pHost->Release(); | |
1421 pHost = 0; | |
1422 } | |
1423 return 0; | |
1424 } | |
1425 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2)); | |
1426 ddsd2.dwSize = sizeof(DDSURFACEDESC2); | |
1427 ddsd2.dwFlags = DDSD_CAPS; | |
1428 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE; | |
1429 if ( !pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) ) | |
1430 { | |
1431 ddsd2.dwSize = sizeof(DDSURFACEDESC2); | |
1432 pHost->GetDisplayMode(&ddsd2); | |
2069 | 1433 if ( FORCE_16_BITS && ddsd2.ddpfPixelFormat.dwRGBBitCount != 16 ) |
0 | 1434 { |
1435 v24 = "Init - Desktop isn't in 16 bit mode.\n"; | |
1436 goto LABEL_14; | |
1437 } | |
1438 | |
1439 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT; | |
1440 ddsd2.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN | DDSCAPS_3DDEVICE; | |
2069 | 1441 ddsd2.dwWidth = game_width; |
1442 ddsd2.dwHeight = game_height; | |
0 | 1443 if (pHost->CreateSurface(&ddsd2, &pBackBuffer, 0) ) |
1444 { | |
1445 v24 = "Init - Failed to create back buffer.\n"; | |
1446 LABEL_14: | |
1447 sprintf(pErrorMessage, v24); | |
1448 if (pFrontBuffer) | |
1449 { | |
1450 pFrontBuffer->Release(); | |
1451 pFrontBuffer = 0; | |
1452 } | |
1453 goto LABEL_65; | |
1454 } | |
1455 if ( pHost->CreateClipper(0, &v30, 0) ) | |
1456 { | |
1457 v25 = "Init - Failed to create clipper.\n"; | |
1458 goto LABEL_45; | |
1459 } | |
1460 v30->SetHWnd(0, hWnd); | |
1461 pFrontBuffer->SetClipper(v30); | |
1462 | |
1463 v30->Release(); | |
1464 v30 = 0; | |
1465 | |
1466 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D); | |
1467 | |
1468 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT; | |
1469 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER; | |
2069 | 1470 ddsd2.dwWidth = game_width; |
1471 ddsd2.dwHeight = game_height; | |
0 | 1472 |
1473 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID, | |
1474 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator, | |
1475 &ddsd2.ddpfPixelFormat) ) | |
1476 goto LABEL_21; | |
1477 if ( uDeviceID == 2 || uDeviceID == 3 ) | |
1478 ddsd2.ddsCaps.dwCaps |= DDSCAPS_SYSTEMMEMORY; | |
1479 | |
1480 if ( !pHost->CreateSurface(&ddsd2, &pZBuffer, 0) ) | |
1481 { | |
1482 if ( !pBackBuffer->AddAttachedSurface(pZBuffer) ) | |
1483 { | |
1484 if ( !pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID, | |
1485 pBackBuffer, | |
1486 &pDevice, | |
1487 0) ) | |
1488 { | |
1489 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2)); | |
1490 d3dvp2.dvClipWidth = 2.0; | |
1491 d3dvp2.dvClipY = 1.0; | |
1492 d3dvp2.dvClipHeight = 2.0; | |
1493 d3dvp2.dvMaxZ = 1.0; | |
1494 d3dvp2.dvMinZ = 0.0; | |
1495 goto LABEL_54; | |
1496 } | |
1497 LABEL_51: | |
1498 sprintf(pErrorMessage, "Init - Failed to create D3D device.\n"); | |
1499 if (pDirect3D) | |
1500 { | |
1501 pDirect3D->Release(); | |
1502 pDirect3D = 0; | |
1503 } | |
1504 goto LABEL_59; | |
1505 } | |
1506 LABEL_48: | |
1507 sprintf(pErrorMessage, "Init - Failed to attach z-buffer to back buffer.\n"); | |
1508 if (pZBuffer) | |
1509 { | |
1510 pZBuffer->Release(); | |
1511 pZBuffer = 0; | |
1512 } | |
1513 goto LABEL_61; | |
1514 } | |
1515 goto LABEL_44; | |
1516 } | |
1517 LABEL_36: | |
1518 v23 = "Init - Failed to create front buffer.\n"; | |
1519 sprintf(pErrorMessage, v23); | |
1520 goto LABEL_65; | |
1521 } | |
1522 if ( uDeviceID == 1 ) | |
1523 v26 = 1045; | |
1524 else | |
1525 v26 = 1041; | |
1526 if (pHost->SetCooperativeLevel(hWnd, v26) ) | |
1527 { | |
1528 v23 = "Init - Failed to set cooperative level.\n"; | |
1529 sprintf(pErrorMessage, v23); | |
1530 goto LABEL_65; | |
1531 } | |
1532 if (pHost->SetDisplayMode(640u, 480u, 16u, 0, 0) ) | |
1533 { | |
1534 v23 = "Init - Failed to set display mode.\n"; | |
1535 sprintf(pErrorMessage, v23); | |
1536 goto LABEL_65; | |
1537 } | |
1538 | |
1539 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2)); | |
1540 ddsd2.dwSize = sizeof(DDSURFACEDESC2); | |
1541 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT; | |
1542 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_3DDEVICE | DDSCAPS_FLIP | DDSCAPS_COMPLEX; | |
1543 ddsd2.dwBackBufferCount = 1; | |
1544 if ( pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) ) | |
1545 goto LABEL_36; | |
1546 //a3a = &pBackBuffer; | |
1547 //v14 = *v34; | |
1548 memset(&v27, 0, sizeof(DDSCAPS2)); | |
1549 v27.dwCaps = DDSCAPS_BACKBUFFER; | |
1550 //v33 = (IDirect3DDevice3 **)v14->GetAttachedSurface(&v27, &pBackBuffer); | |
1551 //hWnda = &pDirect3D; | |
1552 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D); | |
1553 if (FAILED(pFrontBuffer->GetAttachedSurface(&v27, &pBackBuffer))) | |
1554 { | |
1555 v25 = "Init - Failed to get D3D interface.\n"; | |
1556 goto LABEL_45; | |
1557 } | |
1558 | |
1559 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT; | |
1560 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER; | |
1561 ddsd2.dwWidth = 640; | |
1562 ddsd2.dwHeight = 480; | |
1563 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID, | |
1564 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator, | |
1565 &ddsd2.ddpfPixelFormat) ) | |
1566 { | |
1567 LABEL_21: | |
1568 v25 = "Init - Failed to enumerate Z buffer formats.\n"; | |
1569 goto LABEL_45; | |
1570 } | |
1571 if ( uDeviceID == 2 || uDeviceID == 3 ) | |
1572 BYTE1(ddsd2.ddsCaps.dwCaps) |= 8u; | |
1573 //uDeviceIDa = &pZBuffer; | |
1574 if (pHost->CreateSurface(&ddsd2, &pZBuffer, 0) ) | |
1575 { | |
1576 LABEL_44: | |
1577 v25 = "Init - Failed to create z-buffer.\n"; | |
1578 LABEL_45: | |
1579 sprintf(pErrorMessage, v25); | |
1580 if (pBackBuffer) | |
1581 { | |
1582 pBackBuffer->Release(); | |
1583 pBackBuffer = 0; | |
1584 } | |
1585 LABEL_63: | |
1586 //v19 = &pFrontBuffer; | |
1587 if (pFrontBuffer) | |
1588 { | |
1589 pFrontBuffer->Release(); | |
1590 pFrontBuffer= 0; | |
1591 } | |
1592 goto LABEL_65; | |
1593 } | |
1594 if (pBackBuffer->AddAttachedSurface(pZBuffer)) | |
1595 goto LABEL_48; | |
1596 //v33 = &pDevice; | |
1597 if (pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID, | |
1598 pBackBuffer, | |
1599 &pDevice, | |
1600 0) ) | |
1601 goto LABEL_51; | |
1602 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2)); | |
1603 d3dvp2.dvClipWidth = 2.0; | |
1604 d3dvp2.dvClipY = 1.0; | |
1605 d3dvp2.dvClipHeight = 2.0; | |
1606 d3dvp2.dvMaxZ = 1.0; | |
1607 | |
1608 LABEL_54: | |
1609 d3dvp2.dwSize = sizeof(D3DVIEWPORT2); | |
1610 //v17 = *hWnda; | |
2069 | 1611 d3dvp2.dwWidth = game_width; |
1612 d3dvp2.dwHeight = game_height; | |
0 | 1613 d3dvp2.dvClipX = -1.0; |
1614 //v18 = v17->lpVtbl; | |
1615 //v32 = &v4->pViewport; | |
1616 if (pDirect3D->CreateViewport(&pViewport, 0)) | |
1617 { | |
1618 sprintf(pErrorMessage, "Init - Failed to create viewport.\n"); | |
1619 if (pDevice) | |
1620 { | |
1621 pDevice->Release(); | |
1622 pDevice = 0; | |
1623 } | |
1624 if (pDirect3D) | |
1625 { | |
1626 pDirect3D->Release(); | |
1627 pDirect3D = 0; | |
1628 } | |
1629 LABEL_59: | |
1630 if (pZBuffer) | |
1631 { | |
1632 pZBuffer->Release(); | |
1633 pZBuffer = 0; | |
1634 } | |
1635 LABEL_61: | |
1636 if (pBackBuffer) | |
1637 { | |
1638 pBackBuffer->Release(); | |
1639 pBackBuffer = 0; | |
1640 } | |
1641 goto LABEL_63; | |
1642 } | |
1643 | |
1644 pDevice->AddViewport(pViewport); | |
1645 pViewport->SetViewport2(&d3dvp2); | |
1646 pDevice->SetCurrentViewport(pViewport); | |
1647 return 1; | |
1648 } | |
1649 | |
1650 //----- (0049E444) -------------------------------------------------------- | |
1651 unsigned int RenderD3D::GetDeviceCaps() | |
1652 { | |
1653 unsigned int v1; // ebx@1 | |
1654 RenderD3D *v2; // edi@1 | |
1655 IDirect3DDevice3 *v3; // eax@1 | |
1656 unsigned int result; // eax@2 | |
1657 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-1F8h]@1 | |
1658 D3DDEVICEDESC halCaps; // [sp+108h] [bp-FCh]@1 | |
1659 | |
1660 v1 = 0; | |
1661 v2 = this; | |
1662 memset(&halCaps, 0, 0xFCu); | |
1663 halCaps.dwSize = 252; | |
1664 memset(&refCaps, 0, 0xFCu); | |
1665 v3 = v2->pDevice; | |
1666 refCaps.dwSize = 252; | |
1667 if ( v3->GetCaps(&halCaps, &refCaps) ) | |
1668 { | |
1669 result = 1; | |
1670 } | |
1671 else | |
1672 { | |
2154 | 1673 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & D3DPBLENDCAPS_SRCALPHA) ) |
0 | 1674 v1 = 2; |
2154 | 1675 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & D3DPBLENDCAPS_ONE) ) |
0 | 1676 v1 |= 4u; |
2154 | 1677 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & D3DPBLENDCAPS_ZERO) ) |
0 | 1678 v1 |= 8u; |
2154 | 1679 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & D3DPBLENDCAPS_INVSRCALPHA) ) |
0 | 1680 v1 |= 0x10u; |
2154 | 1681 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & D3DPBLENDCAPS_ONE) ) |
0 | 1682 v1 |= 0x20u; |
2154 | 1683 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & D3DPBLENDCAPS_SRCCOLOR) ) |
0 | 1684 v1 |= 0x40u; |
2154 | 1685 if ( halCaps.dpcTriCaps.dwTextureCaps & D3DPTEXTURECAPS_SQUAREONLY ) |
1686 v1 |= 0x80; | |
0 | 1687 result = v1; |
1688 } | |
1689 return result; | |
1690 } | |
1691 | |
1692 //----- (0049E4FC) -------------------------------------------------------- | |
1693 void RenderD3D::ClearTarget(unsigned int bClearColor, unsigned int uClearColor, unsigned int bClearDepth, float z_clear) | |
1694 { | |
1695 uint uClearFlags = 0; | |
1696 | |
1697 if (bClearColor) | |
1698 uClearFlags |= D3DCLEAR_TARGET; | |
1699 if (bClearDepth) | |
1700 uClearFlags |= D3DCLEAR_ZBUFFER; | |
1701 | |
1702 D3DRECT rects[] = {{0, 0, 640, 480}}; | |
1703 if (uClearFlags) | |
1704 pViewport->Clear2(1, rects, uClearFlags, uClearColor, z_clear, 0); | |
1705 } | |
1706 | |
1707 //----- (0049E54D) -------------------------------------------------------- | |
1708 void RenderD3D::Present(bool bForceBlit) | |
1709 { | |
1710 RECT v5; // [sp+18h] [bp-18h]@1 | |
1711 struct tagPOINT Point; // [sp+28h] [bp-8h]@4 | |
1712 | |
1713 v5.left = 0; | |
1714 v5.top = 0; | |
1715 v5.bottom = 480; | |
1716 v5.right = 640; | |
1717 | |
1718 if (bWindowed || bForceBlit) | |
1719 { | |
1720 RECT rc; | |
1721 GetClientRect(hWindow, &rc); | |
1722 Point.y = 0; | |
1723 Point.x = 0; | |
1724 ClientToScreen(hWindow, &Point); | |
1725 OffsetRect(&rc, Point.x, Point.y); | |
1726 pFrontBuffer->Blt(&rc, pBackBuffer, &v5, DDBLT_WAIT, 0); | |
1727 } | |
1728 else | |
1729 pFrontBuffer->Flip(0, 1); | |
1730 } | |
1731 | |
1732 //----- (0049E5D4) -------------------------------------------------------- | |
1733 bool RenderD3D::CreateTexture(unsigned int uTextureWidth, unsigned int uTextureHeight, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture, bool bAlphaChannel, bool bMipmaps, unsigned int uMinDeviceTexDim) | |
1734 { | |
1735 unsigned int v8; // edx@4 | |
1736 unsigned int v9; // ebx@5 | |
1737 unsigned int v10; // eax@5 | |
1738 DWORD v11; // edx@5 | |
1739 //int v12; // edx@7 | |
1740 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-80h]@1 | |
1741 //RenderD3D *v15; // [sp+88h] [bp-4h]@1 | |
1742 | |
1743 //v15 = this; | |
1744 memset(&ddsd2, 0, 0x7Cu); | |
1745 ddsd2.dwSize = 0x7Cu; | |
1746 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT; | |
1747 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE; | |
1748 ddsd2.ddsCaps.dwCaps2 = DDSCAPS2_TEXTUREMANAGE; | |
1749 ddsd2.dwHeight = uTextureHeight; | |
1750 ddsd2.dwWidth = uTextureWidth; | |
1751 if ( bMipmaps ) | |
1752 { | |
1753 if ( (signed int)uTextureHeight <= (signed int)uTextureWidth ) | |
1754 { | |
1755 v8 = GetMaxMipLevels(uTextureHeight) - GetMaxMipLevels(uMinDeviceTexDim); | |
1756 LABEL_8: | |
1757 ddsd2.dwMipMapCount = v8; | |
1758 if ( !v8 ) | |
1759 goto LABEL_12; | |
1760 goto LABEL_11; | |
1761 } | |
1762 if ( (signed int)uTextureWidth < (signed int)uMinDeviceTexDim ) | |
1763 { | |
1764 v8 = GetMaxMipLevels(uMinDeviceTexDim); | |
1765 goto LABEL_8; | |
1766 } | |
1767 v9 = GetMaxMipLevels(uTextureWidth); | |
1768 v10 = GetMaxMipLevels(uMinDeviceTexDim); | |
1769 ddsd2.dwMipMapCount = v9 - v10; | |
1770 if ( v9 == v10 ) | |
1771 { | |
1772 ddsd2.dwFlags = 0x1007u; | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
1773 __debugbreak(); // warning C4700: uninitialized local variable 'v11' used |
0 | 1774 ddsd2.ddsCaps.dwCaps = v11; |
1775 goto LABEL_12; | |
1776 } | |
1777 } | |
1778 else | |
1779 { | |
1780 ddsd2.dwMipMapCount = 1; | |
1781 } | |
1782 LABEL_11: | |
1783 ddsd2.dwFlags = DDSD_CAPS | DDSD_HEIGHT | DDSD_WIDTH | DDSD_PIXELFORMAT | DDSD_MIPMAPCOUNT; | |
1784 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_COMPLEX | DDSCAPS_MIPMAP; | |
1785 LABEL_12: | |
1786 ddsd2.ddpfPixelFormat.dwRGBBitCount = 16; | |
1787 ddsd2.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT); | |
1788 if (bAlphaChannel) | |
1789 { | |
1790 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB | DDPF_ALPHAPIXELS; | |
1791 ddsd2.ddpfPixelFormat.dwRBitMask = 0x7C00; | |
1792 ddsd2.ddpfPixelFormat.dwGBitMask = 0x03E0; | |
1793 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F; | |
1794 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0x8000u; | |
1795 } | |
1796 else | |
1797 { | |
1798 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB; | |
1799 ddsd2.ddpfPixelFormat.dwRBitMask = 0xF800; | |
1800 ddsd2.ddpfPixelFormat.dwGBitMask = 0x07E0; | |
1801 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F; | |
1802 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0; | |
1803 } | |
1804 if (FAILED(pHost->CreateSurface(&ddsd2, pOutSurface, 0))) | |
1805 return false; | |
1806 if (FAILED((*pOutSurface)->QueryInterface(IID_IDirect3DTexture2, (void **)pOutTexture))) | |
1807 { | |
1808 (*pOutSurface)->Release(); | |
1809 *pOutSurface = 0; | |
1810 return false; | |
1811 } | |
1812 return true; | |
1813 } | |
1814 | |
1815 //----- (004A5190) -------------------------------------------------------- | |
1816 void RenderD3D::HandleLostResources() | |
1817 { | |
1818 pBitmaps_LOD->ReleaseLostHardwareTextures(); | |
1819 pBitmaps_LOD->_410423_move_textures_to_device(); | |
1820 pSprites_LOD->ReleaseLostHardwareSprites(); | |
1821 } | |
1822 | |
1823 //----- (004A2050) -------------------------------------------------------- | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
1824 void Render::DrawPolygon(unsigned int uNumVertices, struct Polygon *a3, ODMFace *a4, IDirect3DTexture2 *pTexture) |
0 | 1825 { |
1826 Render *v5; // edi@1 | |
1827 unsigned int v6; // ebx@1 | |
1828 LightmapBuilder *v7; // esi@3 | |
1829 int v8; // eax@7 | |
1830 ODMFace *v9; // eax@12 | |
1831 char *v10; // esi@12 | |
1832 double v11; // st7@14 | |
1833 double v12; // st7@14 | |
1834 int v13; // eax@14 | |
1835 ODMFace *v14; // ecx@14 | |
1836 double v15; // st7@14 | |
1837 float v16; // ST48_4@15 | |
1838 int v17; // eax@15 | |
1839 char v18; // zf@17 | |
1840 HRESULT v19; // eax@18 | |
1841 HRESULT v20; // eax@18 | |
1842 HRESULT v21; // eax@20 | |
1843 HRESULT v22; // eax@20 | |
1844 unsigned int v23; // ecx@20 | |
1845 char *v24; // eax@21 | |
1846 HRESULT v25; // eax@23 | |
1847 HRESULT v26; // eax@23 | |
1848 HRESULT v27; // eax@24 | |
1849 HRESULT v28; // eax@25 | |
1850 HRESULT v29; // eax@25 | |
1851 HRESULT v30; // eax@25 | |
1852 HRESULT v31; // eax@25 | |
1853 HRESULT v32; // eax@26 | |
1854 unsigned int v33; // ecx@26 | |
1855 char *v34; // eax@27 | |
1856 int v35; // edx@28 | |
1857 HRESULT v36; // eax@29 | |
1858 HRESULT v37; // eax@29 | |
1859 HRESULT v38; // eax@29 | |
1860 HRESULT v39; // eax@29 | |
1861 //IDirect3DDevice3Vtbl *v40; // ebx@29 | |
1862 unsigned int v41; // eax@29 | |
1863 HRESULT v42; // eax@30 | |
1864 HRESULT v43; // eax@30 | |
1865 HRESULT v44; // eax@30 | |
1866 char *v45; // esi@34 | |
1867 int v46; // ecx@35 | |
1868 double v47; // st6@35 | |
1869 int v48; // eax@36 | |
1870 const char *v49; // [sp+4Ch] [bp-1Ch]@0 | |
1871 const char *v50; // [sp+4Ch] [bp-1Ch]@20 | |
1872 int v51; // [sp+50h] [bp-18h]@0 | |
1873 unsigned int v52; // [sp+54h] [bp-14h]@0 | |
1874 LightmapBuilder *v53; // [sp+58h] [bp-10h]@3 | |
1875 unsigned int v54; // [sp+5Ch] [bp-Ch]@3 | |
1876 unsigned int v55; // [sp+5Ch] [bp-Ch]@34 | |
1877 unsigned int v56; // [sp+60h] [bp-8h]@12 | |
1878 int v57; // [sp+60h] [bp-8h]@34 | |
2006 | 1879 signed int a2; // [sp+64h] [bp-4h]@4 |
0 | 1880 |
1881 v5 = this; | |
1882 v6 = 0; | |
1883 if ( this->uNumD3DSceneBegins && (signed int)uNumVertices >= 3 ) | |
1884 { | |
1885 v7 = pGame->pLightmapBuilder; | |
1886 v53 = v7; | |
1887 v54 = v7->std__vector_000004_size; | |
1888 if ( v7->std__vector_000004_size) | |
2006 | 1889 a2 = -1; |
638 | 1890 pGame->AlterGamma_ODM(a4, &a2); |
2155 | 1891 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01_lightmap_related) |
0 | 1892 { |
638 | 1893 v8 = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0); |
1394 | 1894 v7->DrawLightmaps(/*v8, 0*/); |
0 | 1895 } |
1896 else | |
1897 { | |
1898 if ( !v54 || byte_4D864C && pGame->uFlags & 2 ) | |
1899 { | |
323 | 1900 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 1901 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); |
1902 if (bUsingSpecular) | |
1903 { | |
186 | 1904 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); |
1905 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
1906 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 1907 } |
1073 | 1908 for (uint i = 0; i < uNumVertices; ++i) |
1909 { | |
1910 | |
1911 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
1912 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 1913 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 1914 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
1915 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
1916 pGame->AlterGamma_ODM(a4, &d3d_vertex_buffer[i].diffuse); | |
1917 | |
1918 if ( this->bUsingSpecular ) | |
0 | 1919 { |
2193
4842f58715ea
sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents:
2182
diff
changeset
|
1920 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_specular(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 1921 } |
1073 | 1922 else |
1923 { | |
1924 d3d_vertex_buffer[i].specular = 0; | |
1925 } | |
1926 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
1927 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
1928 | |
1929 } | |
323 | 1930 |
1931 if (a4->uAttributes & FACE_OUTLINED) | |
1932 { | |
1933 int color; | |
1934 if (GetTickCount() % 300 >= 150) | |
1935 color = 0xFFFF2020; | |
1936 else color = 0xFF901010; | |
1937 | |
1938 for (uint i = 0; i < uNumVertices; ++i) | |
1939 d3d_vertex_buffer[i].diffuse = color; | |
1940 } | |
1941 | |
0 | 1942 pRenderD3D->pDevice->SetTexture(0, pTexture); |
1943 pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
1944 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
1945 d3d_vertex_buffer, |
0 | 1946 uNumVertices, |
1947 D3DDP_DONOTLIGHT); | |
1948 } | |
1949 else | |
1950 { | |
1073 | 1951 for (uint i = 0; i < uNumVertices; ++i) |
1952 { | |
1953 | |
1954 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
1955 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 1956 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 1957 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
1958 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
1959 if ( this->bUsingSpecular ) | |
0 | 1960 { |
2193
4842f58715ea
sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents:
2182
diff
changeset
|
1961 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_specular(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 1962 } |
1073 | 1963 else |
1964 { | |
1965 d3d_vertex_buffer[i].specular = 0; | |
1966 } | |
1967 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
1968 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
1969 | |
1970 } | |
1971 | |
186 | 1972 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); |
1973 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
0 | 1974 if (bUsingSpecular) |
186 | 1975 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); |
0 | 1976 |
1977 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); | |
1978 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
1979 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
1980 d3d_vertex_buffer, |
0 | 1981 uNumVertices, |
1982 D3DDP_DONOTLIGHT)); | |
1983 //v50 = (const char *)v5->pRenderD3D->pDevice; | |
1984 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
1985 //(*(void (**)(void))(*(int *)v50 + 88))(); | |
1394 | 1986 v53->DrawLightmaps(/*-1, 0*/); |
1073 | 1987 for (uint i = 0; i < uNumVertices; ++i) |
1988 { | |
1989 d3d_vertex_buffer[i].diffuse = a2; | |
1990 } | |
0 | 1991 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture)); |
186 | 1992 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 1993 if ( !pRenderer->bUsingSpecular ) |
186 | 1994 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
1995 | |
1996 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
1997 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO)); | |
1998 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR)); | |
0 | 1999 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
2000 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
2001 d3d_vertex_buffer, |
0 | 2002 uNumVertices, |
2003 D3DDP_DONOTLIGHT)); | |
2004 if (bUsingSpecular) | |
2005 { | |
186 | 2006 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
0 | 2007 |
1073 | 2008 for (uint i = 0; i < uNumVertices; ++i) |
2009 { | |
2010 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000; | |
2011 d3d_vertex_buffer[i].specular = 0; | |
2012 } | |
2013 | |
0 | 2014 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); |
186 | 2015 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA)); |
2016 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA)); | |
0 | 2017 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
2018 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
2019 d3d_vertex_buffer, |
0 | 2020 uNumVertices, |
2021 D3DDP_DONOTLIGHT)); | |
186 | 2022 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 2023 //v40 = pRenderer->pRenderD3D->pDevice->lpVtbl; |
2024 v41 = GetLevelFogColor(); | |
2025 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF); | |
2026 v6 = 0; | |
2027 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0); | |
2028 } | |
186 | 2029 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
2030 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 2031 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v6)); |
2032 } | |
2033 } | |
2034 } | |
2035 } | |
2036 // 4D864C: using guessed type char byte_4D864C; | |
2037 | |
2038 //----- (0049EB79) -------------------------------------------------------- | |
2039 Render::~Render() | |
2040 { | |
2041 Render *v1; // esi@1 | |
2042 | |
2043 v1 = this; | |
1583 | 2044 free(this->pDefaultZBuffer); |
0 | 2045 v1->pD3DBitmaps.Release(); |
2046 v1->pD3DSprites.Release(); | |
2047 Release(); | |
2048 v1->bWindowMode = 1; | |
2049 //nullsub_1(); | |
2050 //nullsub_1(); | |
2051 } | |
2052 | |
2053 | |
2054 //----- (0049E992) -------------------------------------------------------- | |
2055 Render::Render() | |
2056 { | |
2057 Render *v1; // esi@1 | |
2058 int v2; // eax@1 | |
2059 char v3; // zf@1 | |
2060 | |
2061 v1 = this; | |
2062 this->pDirectDraw4 = 0; | |
2063 this->pFrontBuffer4 = 0; | |
2064 this->pBackBuffer4 = 0; | |
2154 | 2065 //this->pColorKeySurface4 = 0; |
2152 | 2066 //this->pDirectDraw2 = 0; |
2067 //this->pFrontBuffer2 = 0; | |
2068 //this->pBackBuffer2 = 0; | |
2069 //this->pSomeSurface2 = 0; | |
0 | 2070 //RenderHWLContainer::RenderHWLContainer(&this->pD3DBitmaps); |
2071 //RenderHWLContainer::RenderHWLContainer(&v1->pD3DSprites); | |
2072 v1->bWindowMode = 1; | |
2154 | 2073 //v1->field_40054 = 0; |
2074 //v1->field_10 = 640; | |
2075 //v1->field_14 = 480; | |
2076 //v1->field_40030 = 0; | |
2077 //v1->field_4002C = 0; | |
0 | 2078 v1->pActiveZBuffer = 0; |
2079 v1->pDefaultZBuffer = 0; | |
709 | 2080 v1->raster_clip_y = 0; |
2081 v1->raster_clip_x = 0; | |
2082 v1->raster_clip_z = 639; | |
2083 v1->raster_clip_w = 479; | |
2154 | 2084 //v1->field_4003C = 0x004EED80; |
2085 //v1->field_40040 = dword_4EED78; | |
0 | 2086 v1->uClipZ = 640; |
2154 | 2087 //v1->field_40044 = 2; |
2088 //v1->field_40048 = 6; | |
0 | 2089 v1->pFrontBuffer4 = 0; |
2090 v1->pBackBuffer4 = 0; | |
2154 | 2091 //v1->pColorKeySurface4 = 0; |
0 | 2092 v1->pDirectDraw4 = 0; |
2093 v1->pRenderD3D = 0; | |
2094 v1->uNumSceneBegins = 0; | |
2095 v1->uNumD3DSceneBegins = 0; | |
2069 | 2096 v1->using_software_screen_buffer = 0; |
0 | 2097 v1->pTargetSurface = 0; |
2098 v1->uTargetSurfacePitch = 0; | |
2099 v1->uClipY = 0; | |
2100 v1->uClipX = 0; | |
2101 v1->uClipW = 480; | |
2102 v1->bClip = 1; | |
2069 | 2103 //v1->bColorKeySupported = 0; |
0 | 2104 v1->bRequiredTextureStagesAvailable = 0; |
2105 v1->bTinting = 1; | |
2154 | 2106 //LOBYTE(v1->field_103668) = 0; |
0 | 2107 uNumBillboardsToDraw = 0; |
2108 bFogEnabled = false; | |
265 | 2109 |
2110 hd_water_tile_id = -1; | |
2111 hd_water_current_frame = 0; | |
0 | 2112 } |
2113 | |
2069 | 2114 bool Render::Initialize(OSWindow *window, bool bColoredLights, uint32_t uDetailLevel, bool bTinting) |
0 | 2115 { |
1802 | 2116 //bUserDirect3D = true;//ReadWindowsRegistryInt("Use D3D", 0); |
2117 | |
2118 this->window = window; | |
2069 | 2119 //bStartInWindow = true; |
1802 | 2120 //windowed_mode_width = windowed_width; |
2121 //windowed_mode_height = windowed_height; | |
2122 | |
1985 | 2123 uDesiredDirect3DDevice = ReadWindowsRegistryInt("D3D Device", 0); |
0 | 2124 |
2125 bUseColoredLights = bColoredLights;//ReadWindowsRegistryInt("Colored Lights", 0); | |
2126 uLevelOfDetail = uDetailLevel;//ReadWindowsRegistryInt("Detail Level", 1); | |
2127 | |
2128 this->bTinting = bTinting; | |
2129 | |
1980 | 2130 bool r1 = pD3DBitmaps.Load(L"data\\d3dbitmap.hwl"); |
2131 bool r2 = pD3DSprites.Load(L"data\\d3dsprite.hwl"); | |
0 | 2132 |
2133 return r1 && r2; | |
2134 } | |
2135 | |
2136 | |
2137 //----- (0049ECC4) -------------------------------------------------------- | |
2138 void Render::ClearBlack() | |
2139 { | |
2154 | 2140 //if (pRenderD3D) |
0 | 2141 { |
2069 | 2142 if (using_software_screen_buffer) |
0 | 2143 pRenderD3D->ClearTarget(true, 0, false, 0.0); |
2144 } | |
2154 | 2145 //else |
2146 //memset(pRenderer->pTargetSurface, 0, 4 * (field_10 * field_14 / 2)); | |
0 | 2147 } |
2148 | |
2149 //----- (0049ED18) -------------------------------------------------------- | |
2150 void Render::PresentBlackScreen() | |
2151 { | |
2152 IDirectDrawSurface *v2; // eax@3 | |
2153 DDBLTFX v3; // [sp+4h] [bp-74h]@5 | |
2154 RECT x; // [sp+68h] [bp-10h]@3 | |
2155 | |
2156 memset(&v3, 0, sizeof(DDBLTFX)); | |
1802 | 2157 GetWindowRect(window->GetApiHandle(), &x); |
2152 | 2158 |
0 | 2159 { |
2160 v2 = (IDirectDrawSurface *)this->pBackBuffer4; | |
2161 } | |
2152 | 2162 |
0 | 2163 v3.dwFillColor = 0; |
2164 v3.dwSize = 100; | |
2165 v2->Blt(&x, 0, 0, DDBLT_COLORFILL, &v3); | |
2166 pRenderer->Present(); | |
2167 } | |
2168 | |
2169 //----- (0049EDB6) -------------------------------------------------------- | |
2170 void Render::SavePCXScreenshot() | |
2171 { | |
2172 int v5; // eax@8 | |
2132 | 2173 FILE *pOutFile; // edi@10 |
2133 | 2174 unsigned short *v8; // eax@11 |
0 | 2175 int v9; // eax@13 |
2176 int v10; // ecx@15 | |
2177 signed int v12; // eax@18 | |
2178 HRESULT v14; // eax@29 | |
2179 char v15[56]; // [sp+Ch] [bp-158h]@10 | |
2180 DDSURFACEDESC2 Dst; // [sp+48h] [bp-11Ch]@7 | |
2181 char color_map[48]; // [sp+C4h] [bp-A0h]@10 | |
2182 char Filename[40]; // [sp+F4h] [bp-70h]@3 | |
2132 | 2183 char *lineB; // [sp+11Ch] [bp-48h]@14 |
2184 char *lineG; // [sp+120h] [bp-44h]@14 | |
2185 //int v24; // [sp+124h] [bp-40h]@11 | |
0 | 2186 FILE *File; // [sp+128h] [bp-3Ch]@3 |
2187 PCXHeader_1 header1; // [sp+130h] [bp-34h]@10 | |
2188 PCXHeader_2 header2; // [sp+140h] [bp-24h]@10 | |
2132 | 2189 char *lineRGB; // [sp+148h] [bp-1Ch]@10 |
2190 void *surface; // [sp+14Ch] [bp-18h]@8 | |
2191 int image_width; // [sp+150h] [bp-14h]@4 | |
2192 int pitch; // [sp+154h] [bp-10h]@4 | |
0 | 2193 char v31; // [sp+15Ah] [bp-Ah]@25 |
2132 | 2194 unsigned char pict_byte; // [sp+15Bh] [bp-9h]@17 |
2195 unsigned short *line_picture_data; // [sp+15Ch] [bp-8h]@10 | |
2196 byte test_byte; // [sp+163h] [bp-1h]@17 | |
2197 | |
2198 int num_r_bits = 5; | |
2199 int num_g_bits = 6; | |
2200 int num_b_bits = 5; | |
2201 | |
2202 int r_mask = 0xF800; | |
2203 int g_mask = 0x7E0; | |
2204 int b_mask = 0x1F; | |
2205 | |
2069 | 2206 if ( !this->pRenderD3D || this->using_software_screen_buffer ) |
0 | 2207 { |
2132 | 2208 sprintf(Filename, "screen%0.2i.pcx", ScreenshotFileNumber++ % 100); |
0 | 2209 File = fopen(Filename, "wb"); |
2210 if ( File ) | |
2211 { | |
2154 | 2212 pitch = this->GetRenderWidth(); |
2213 if ( pitch & 1 ) | |
2214 pitch = pitch + 1; | |
2132 | 2215 if ( this->pRenderD3D ) |
2216 { | |
2217 memset(&Dst, 0, 0x7C); | |
0 | 2218 Dst.dwSize = 124; |
168 | 2219 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &Dst, DDLOCK_WAIT) ) |
0 | 2220 return; |
2132 | 2221 surface = Dst.lpSurface; |
2222 v5 = Dst.lPitch / 2; | |
0 | 2223 } |
2224 else | |
2225 { | |
2226 pRenderer->BeginScene(); | |
2132 | 2227 surface = pRenderer->pTargetSurface; |
0 | 2228 v5 = pRenderer->uTargetSurfacePitch; |
2229 } | |
2154 | 2230 header1.right = GetRenderWidth() - 1; |
2132 | 2231 header1.left = 0; |
2154 | 2232 header1.bottom = this->GetRenderHeight() - 1; |
2132 | 2233 header1.up = 0; |
2234 header2.pitch = pitch; | |
0 | 2235 memset(color_map, 0, sizeof(color_map)); |
2236 memset(v15, 0, sizeof(v15)); | |
2237 header2.reserved = 0; | |
2238 header1.manufacturer = 10; | |
2132 | 2239 pOutFile = File; |
0 | 2240 header1.version = 5; |
2241 header1.encoding = 1; | |
2242 header1.bpp = 8; | |
2243 header1.hdpi = 75; | |
2244 header1.vdpi = 75; | |
2245 header2.planes = 3; | |
2246 header2.palette_info = 1; | |
2132 | 2247 fwrite(&header1, 1, 1, File); |
2248 fwrite(&header1.version, 1, 1, pOutFile); | |
2249 fwrite(&header1.encoding, 1, 1, pOutFile); | |
2250 fwrite(&header1.bpp, 1, 1, pOutFile); | |
2251 fwrite(&header1.left, 2, 1, pOutFile); | |
2252 fwrite(&header1.up, 2, 1, pOutFile); | |
2253 fwrite(&header1.right, 2, 1, pOutFile); | |
2254 fwrite(&header1.bottom, 2, 1, pOutFile); | |
2255 fwrite(&header1.hdpi, 2, 1, pOutFile); | |
2256 fwrite(&header1.vdpi, 2, 1, pOutFile); | |
2257 fwrite(color_map, 0x30u, 1, pOutFile); | |
2258 fwrite(&header2, 1, 1, pOutFile); | |
2259 fwrite(&header2.planes, 1, 1, pOutFile); | |
2260 fwrite(&header2.pitch, 2, 1, pOutFile); | |
2261 fwrite(&header2.palette_info, 2, 1, pOutFile); | |
2262 fwrite(v15, 0x3Au, 1, pOutFile); | |
2154 | 2263 lineRGB = (char *)malloc(3 * GetRenderWidth() + 6); |
2264 if ( this->GetRenderHeight() > 0 ) | |
2132 | 2265 { |
2266 image_width = 3 * pitch; | |
2267 //v24 = 2 * v5; | |
2268 v8 = (unsigned short *)surface; | |
2154 | 2269 for ( int y = 0; y < this->GetRenderHeight(); y++ ) |
0 | 2270 { |
2132 | 2271 line_picture_data = v8; |
2154 | 2272 if ( GetRenderWidth() > 0 ) |
0 | 2273 { |
2132 | 2274 lineG = (char *)lineRGB + pitch; |
2275 lineB = (char *)lineRGB + 2 * pitch; | |
2154 | 2276 for ( uint x = 0; x < this->GetRenderWidth(); x++ ) |
0 | 2277 { |
2135 | 2278 int p = *line_picture_data; //0x2818 |
2279 int for_rad = (pRenderer->uTargetGBits + pRenderer->uTargetBBits );//16 = 8 + 8 | |
2280 int value = (pRenderer->uTargetRMask & *line_picture_data);//0 = 0xFF0000 & 0x2818 | |
2133 | 2281 int result = (pRenderer->uTargetRMask & *line_picture_data) >> (pRenderer->uTargetGBits + pRenderer->uTargetBBits ); |
2282 lineRGB[x] = (pRenderer->uTargetRMask & *line_picture_data) >> (pRenderer->uTargetGBits + pRenderer->uTargetBBits );// + pRenderer->uTargetRBits - 8); | |
2283 lineG[x] = (pRenderer->uTargetGMask & *line_picture_data) >> (pRenderer->uTargetBBits);// + pRenderer->uTargetGBits - 8); | |
2135 | 2284 int value2 = (pRenderer->uTargetGMask & *line_picture_data); //10240 = 0xFF00 & 0x2818 |
2133 | 2285 int result2 = (pRenderer->uTargetGMask & *line_picture_data) >> (pRenderer->uTargetBBits); |
2286 lineB[x] = (pRenderer->uTargetBMask & *line_picture_data);// << (8 - pRenderer->uTargetBBits); | |
2135 | 2287 int value3 = (pRenderer->uTargetBMask & *line_picture_data);//24 = 0xFF & 0x2818 |
2132 | 2288 line_picture_data += 2; |
0 | 2289 } |
2290 } | |
2132 | 2291 for ( uint i = 0; i < image_width; i += test_byte ) |
0 | 2292 { |
2132 | 2293 pict_byte = lineRGB[i]; |
2294 for ( test_byte = 1; test_byte < 0x3F; ++test_byte ) | |
0 | 2295 { |
2132 | 2296 v12 = i + test_byte; |
2297 if ( lineRGB[v12] != pict_byte ) | |
0 | 2298 break; |
2132 | 2299 if ( !(v12 % pitch) ) |
0 | 2300 break; |
2301 } | |
2132 | 2302 if ( i + test_byte > image_width ) |
2303 test_byte = 3 * pitch - i; | |
2304 if ( test_byte > 1 || pict_byte >= 0xC0 ) | |
2305 { | |
2306 v31 = test_byte | 0xC0; | |
2307 fwrite(&v31, 1, 1, pOutFile); | |
2308 } | |
2309 fwrite(&pict_byte, 1, 1, pOutFile); | |
0 | 2310 } |
2132 | 2311 v8 += v5; |
0 | 2312 } |
2313 } | |
2132 | 2314 if ( this->pRenderD3D ) |
0 | 2315 ErrD3D(pRenderer->pBackBuffer4->Unlock(0)); |
2316 else | |
2317 pRenderer->EndScene(); | |
2132 | 2318 |
2319 free(lineRGB); | |
2320 fclose(pOutFile); | |
0 | 2321 } |
2322 } | |
2323 } | |
2324 | |
2325 //----- (0049F1BC) -------------------------------------------------------- | |
2069 | 2326 void Render::SaveWinnersCertificate(const char *a1) |
0 | 2327 { |
2328 unsigned int v6; // eax@8 | |
2133 | 2329 //FILE *v7; // edi@10 |
0 | 2330 int v8; // ecx@11 |
2133 | 2331 unsigned short *v9; // eax@11 |
0 | 2332 int v10; // eax@13 |
2333 signed int v13; // eax@18 | |
2334 char v14; // zf@27 | |
2335 HRESULT v15; // eax@29 | |
2133 | 2336 char v16[56]; // [sp+Ch] [bp-12Ch]@10 |
0 | 2337 __int16 v17; // [sp+44h] [bp-F4h]@10 |
2133 | 2338 DDSURFACEDESC2 Dst; // [sp+48h] [bp-F0h]@7 |
0 | 2339 int v19; // [sp+58h] [bp-E0h]@8 |
2340 unsigned __int16 *v20; // [sp+6Ch] [bp-CCh]@8 | |
2133 | 2341 char color_map[48]; // [sp+C4h] [bp-74h]@10 |
0 | 2342 unsigned int v22; // [sp+F4h] [bp-44h]@11 |
2133 | 2343 char *lineB; // [sp+F8h] [bp-40h]@14 |
2344 int image_width; // [sp+FCh] [bp-3Ch]@11 | |
0 | 2345 int v25; // [sp+100h] [bp-38h]@4 |
2346 FILE *File; // [sp+104h] [bp-34h]@3 | |
2347 char Str; // [sp+108h] [bp-30h]@10 | |
2348 char v28; // [sp+109h] [bp-2Fh]@10 | |
2349 char v29; // [sp+10Ah] [bp-2Eh]@10 | |
2350 char v30; // [sp+10Bh] [bp-2Dh]@10 | |
2351 __int16 v31; // [sp+10Ch] [bp-2Ch]@10 | |
2352 __int16 v32; // [sp+10Eh] [bp-2Ah]@10 | |
2353 __int16 v33; // [sp+110h] [bp-28h]@10 | |
2354 __int16 v34; // [sp+112h] [bp-26h]@10 | |
2355 __int16 v35; // [sp+114h] [bp-24h]@10 | |
2356 __int16 v36; // [sp+116h] [bp-22h]@10 | |
2357 char v37; // [sp+118h] [bp-20h]@10 | |
2358 char v38; // [sp+119h] [bp-1Fh]@10 | |
2359 __int16 v39; // [sp+11Ah] [bp-1Eh]@10 | |
2360 __int16 v40; // [sp+11Ch] [bp-1Ch]@10 | |
2133 | 2361 char *lineRGB; // [sp+120h] [bp-18h]@10 |
2362 void *surface; // [sp+124h] [bp-14h]@8 | |
2363 int pitch; // [sp+128h] [bp-10h]@4 | |
0 | 2364 char v44; // [sp+12Fh] [bp-9h]@25 |
2133 | 2365 char *lineG; // [sp+130h] [bp-8h]@10 |
2366 unsigned char pict_byte; // [sp+137h] [bp-1h]@17 | |
2367 byte test_byte; | |
2368 | |
2369 int num_r_bits = 5; | |
2370 int num_g_bits = 6; | |
2371 int num_b_bits = 5; | |
2372 | |
2373 int r_mask = 0xF800; | |
2374 int g_mask = 0x7E0; | |
2375 int b_mask = 0x1F; | |
2376 | |
2069 | 2377 if ( !this->pRenderD3D || this->using_software_screen_buffer ) |
0 | 2378 { |
2154 | 2379 static int _4EFA84_num_winners_certificates = 0; |
2380 ++_4EFA84_num_winners_certificates; | |
2381 | |
0 | 2382 File = fopen(a1, "wb"); |
2383 if ( File ) | |
2384 { | |
2154 | 2385 v25 = this->GetRenderWidth(); |
2386 pitch = v25; | |
2387 if ( pitch & 1 ) | |
2388 pitch = pitch + 1; | |
2133 | 2389 if ( this->pRenderD3D ) |
2390 { | |
2391 memset(&Dst, 0, 0x7C); | |
2392 Dst.dwSize = 124; | |
168 | 2393 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, (DDSURFACEDESC2 *)&Dst, DDLOCK_WAIT) ) |
0 | 2394 return; |
2133 | 2395 surface = Dst.lpSurface; |
2396 v6 = Dst.lPitch / 2; | |
0 | 2397 } |
2398 else | |
2399 { | |
2400 pRenderer->BeginScene(); | |
2133 | 2401 surface = pRenderer->pTargetSurface; |
0 | 2402 v6 = pRenderer->uTargetSurfacePitch; |
2403 } | |
2154 | 2404 v33 = this->GetRenderWidth() - 1; |
2133 | 2405 v31 = 0; |
2154 | 2406 v34 = (short)this->GetRenderHeight() - 1; |
2133 | 2407 v32 = 0; |
2408 v39 = pitch; | |
2409 memset(&color_map, 0, sizeof(color_map)); | |
2410 memset(&v16, 0, sizeof(v16)); | |
0 | 2411 v37 = 0; |
2412 Str = 10; | |
2413 v17 = 0; | |
2414 v28 = 5; | |
2415 v29 = 1; | |
2416 v30 = 8; | |
2417 v35 = 75; | |
2418 v36 = 75; | |
2419 v38 = 3; | |
2420 v40 = 1; | |
2133 | 2421 fwrite(&Str, 1, 1, File); |
2422 fwrite(&v28, 1, 1, File); | |
2423 fwrite(&v29, 1, 1, File); | |
2424 fwrite(&v30, 1, 1, File); | |
2425 fwrite(&v31, 2, 1, File); | |
2426 fwrite(&v32, 2, 1, File); | |
2427 fwrite(&v33, 2, 1, File); | |
2428 fwrite(&v34, 2, 1, File); | |
2429 fwrite(&v35, 2, 1, File); | |
2430 fwrite(&v36, 2, 1, File); | |
2431 fwrite(&color_map, 0x30, 1, File); | |
2432 fwrite(&v37, 1, 1, File); | |
2433 fwrite(&v38, 1, 1, File); | |
2434 fwrite(&v39, 2, 1, File); | |
2435 fwrite(&v40, 2, 1, File); | |
2436 fwrite(&v16, 0x3A, 1, File); | |
2437 lineRGB = (char *)malloc(3 * (v25 + 2)); | |
2154 | 2438 if ( (signed int)this->GetRenderHeight() > 0 ) |
2133 | 2439 { |
2440 image_width = 3 * pitch; | |
2441 v9 = (unsigned short *)surface; | |
2154 | 2442 for ( uint j = 0; j < this->GetRenderHeight(); j++) |
0 | 2443 { |
2444 a1 = (const char *)v9; | |
2445 if ( v25 > 0 ) | |
2446 { | |
2133 | 2447 lineG = (char *)lineRGB + pitch; |
2448 lineB = (char *)lineRGB + 2 * pitch; | |
2449 for ( v10 = 0; v10 < v25; v10++ ) | |
0 | 2450 { |
2133 | 2451 lineRGB[v10] = (signed int)(r_mask & *(short *)a1) >> (num_g_bits + num_b_bits + num_r_bits - 8); |
2452 lineG[v10] = (signed int)(g_mask & *(short *)a1) >> (num_b_bits + num_g_bits - 8); | |
2453 lineB[v10] = (b_mask & *(short *)a1) << (8 - num_b_bits); | |
0 | 2454 a1 += 2; |
2455 } | |
2456 } | |
2133 | 2457 for ( uint i = 0; i < image_width; i += test_byte ) |
0 | 2458 { |
2133 | 2459 pict_byte = lineRGB[i]; |
2460 for ( test_byte = 1; test_byte < 0x3F; test_byte ) | |
0 | 2461 { |
2133 | 2462 v13 = i + test_byte; |
2463 if ( lineRGB[v13] != pict_byte ) | |
0 | 2464 break; |
2133 | 2465 if ( !(v13 % pitch) ) |
0 | 2466 break; |
2467 } | |
2133 | 2468 if ( i + test_byte > image_width ) |
2469 test_byte = 3 * pitch - i; | |
2470 if ( test_byte > 1 || pict_byte >= 0xC0 ) | |
0 | 2471 { |
2133 | 2472 v44 = test_byte | 0xC0; |
2473 fwrite(&v44, 1, 1, File); | |
0 | 2474 } |
2133 | 2475 fwrite(&pict_byte, 1, 1, File); |
0 | 2476 } |
2133 | 2477 v9 += pitch; |
0 | 2478 } |
2479 } | |
2133 | 2480 if ( this->pRenderD3D ) |
0 | 2481 ErrD3D(pRenderer->pBackBuffer4->Unlock(0)); |
2482 else | |
2483 pRenderer->EndScene(); | |
2133 | 2484 free(lineRGB); |
2485 fclose(File); | |
0 | 2486 } |
2487 } | |
2488 } | |
2489 | |
2490 //----- (0049F5A2) -------------------------------------------------------- | |
810 | 2491 void Render::PackPCXpicture( unsigned short* picture_data, int wight, int heidth, void *data_buff, int max_buff_size,unsigned int* packed_size ) |
2127 | 2492 { |
0 | 2493 void *v8; // esi@3 |
2494 void *v9; // esi@3 | |
810 | 2495 unsigned short* v11; // eax@4 |
0 | 2496 int v13; // eax@8 |
2497 int v14; // ecx@8 | |
2498 signed int v15; // eax@11 | |
2499 char v16; // zf@20 | |
2500 int result; // eax@21 | |
2501 char v18[58]; // [sp+Ch] [bp-ACh]@3 | |
2502 char v20[48]; // [sp+48h] [bp-70h]@3 | |
810 | 2503 char *lineG; // [sp+78h] [bp-40h]@7 |
2504 char *lineB; // [sp+7Ch] [bp-3Ch]@7 | |
0 | 2505 int v23; // [sp+80h] [bp-38h]@4 |
2506 int v24; // [sp+84h] [bp-34h]@4 | |
2507 int v25; // [sp+88h] [bp-30h]@4 | |
2508 int v26; // [sp+8Ch] [bp-2Ch]@4 | |
810 | 2509 PCXHeader_1 Src; // [sp+90h] [bp-28h]@3 |
2510 PCXHeader_2 v27; // [sp+A0h] [bp-18h]@3 | |
2511 char *lineRGB; // [sp+A8h] [bp-10h]@3 | |
2512 int pitch; // [sp+ACh] [bp-Ch]@1 | |
0 | 2513 char v43; // [sp+B3h] [bp-5h]@18 |
2514 int i; // [sp+B4h] [bp-4h]@6 | |
2132 | 2515 unsigned short* line_picture_data; |
810 | 2516 byte test_byte; |
2517 unsigned char pict_byte; | |
0 | 2518 |
2131 | 2519 int num_r_bits = 5; |
2520 int num_g_bits = 6; | |
2521 int num_b_bits = 5; | |
2522 | |
2523 int r_mask = 0xF800; | |
2524 int g_mask = 0x7E0; | |
2525 int b_mask = 0x1F; | |
2526 | |
810 | 2527 pitch = wight; |
2528 if ( wight & 1 ) | |
2529 pitch = wight + 1; | |
2530 Src.left = 0; | |
2531 Src.up = 0; | |
2532 Src.right = wight - 1; | |
2533 Src.bottom = heidth - 1; | |
2534 v27.pitch = pitch; | |
0 | 2535 memset(&v20, 0, 0x30u); |
2536 memset(&v18, 0, 0x38u); | |
810 | 2537 v8 = data_buff; |
2538 v27.reserved = 0; | |
0 | 2539 *(_WORD *)&v18[56] = 0; |
810 | 2540 Src.manufacturer = 10; |
2541 Src.version = 5; | |
2542 Src.encoding = 1; | |
2543 Src.bpp = 8; | |
2544 Src.hdpi = 75; | |
2545 Src.vdpi = 75; | |
2546 v27.planes = 3; | |
2547 v27.palette_info = 1; | |
2128 | 2548 memcpy(data_buff, &Src, 1); |
0 | 2549 v8 = (char *)v8 + 1; |
2128 | 2550 memcpy(v8, &Src.version, 1); |
0 | 2551 v8 = (char *)v8 + 1; |
2128 | 2552 memcpy(v8, &Src.encoding, 1); |
0 | 2553 v8 = (char *)v8 + 1; |
2128 | 2554 memcpy(v8, &Src.bpp, 1); |
0 | 2555 v8 = (char *)v8 + 1; |
2128 | 2556 memcpy(v8, &Src.left, 2); |
0 | 2557 v8 = (char *)v8 + 2; |
2128 | 2558 memcpy(v8, &Src.up, 2); |
0 | 2559 v8 = (char *)v8 + 2; |
2128 | 2560 memcpy(v8, &Src.right, 2); |
0 | 2561 v8 = (char *)v8 + 2; |
2128 | 2562 memcpy(v8, &Src.bottom, 2); |
0 | 2563 v8 = (char *)v8 + 2; |
2127 | 2564 memcpy(v8, &Src.hdpi, 2); |
0 | 2565 v8 = (char *)v8 + 2; |
2127 | 2566 memcpy(v8, &Src.vdpi, 2); |
0 | 2567 v8 = (char *)v8 + 2; |
2568 memcpy(v8, &v20, 0x30u); | |
2569 v8 = (char *)v8 + 48; | |
810 | 2570 memcpy(v8, &v27, 1u); |
0 | 2571 v8 = (char *)v8 + 1; |
2127 | 2572 memcpy(v8, &v27.planes, 1); |
0 | 2573 v8 = (char *)v8 + 1; |
2127 | 2574 memcpy(v8, &v27.pitch, 2); |
0 | 2575 v8 = (char *)v8 + 2; |
2127 | 2576 memcpy(v8, &v27.palette_info, 2); |
0 | 2577 v8 = (char *)v8 + 2; |
2578 memcpy(v8, &v18, 0x3Au); | |
2579 v9 = (char *)v8 + 58; | |
810 | 2580 |
1583 | 2581 lineRGB = (char*)malloc(3 * (wight + 2)); |
810 | 2582 if ( heidth > 0 ) |
2583 { | |
2584 v26 = 3 * pitch; | |
2585 v23 = 2 * wight; | |
2586 v11 = picture_data; | |
2587 v24 = (int)picture_data; | |
2127 | 2588 for ( v25 = heidth; v25; v25-- ) |
0 | 2589 { |
2132 | 2590 line_picture_data = v11; |
810 | 2591 if ( wight > 0 ) |
2592 { | |
2593 lineG = (char *)lineRGB + pitch; | |
2594 lineB = (char *)lineRGB + 2 * pitch; | |
2127 | 2595 for ( uint i = 0; i < wight; i++ ) |
0 | 2596 { |
2132 | 2597 lineRGB[i] = (signed int)(r_mask & *line_picture_data) >> (num_g_bits + num_b_bits + num_r_bits - 8); |
2598 lineG[i] = (signed int)(g_mask & *line_picture_data) >> ( num_b_bits + num_g_bits- 8); | |
2599 lineB[i] = (b_mask & *line_picture_data) << (8 - num_b_bits); | |
2600 line_picture_data += 1; | |
810 | 2601 } |
0 | 2602 } |
2603 for ( i = 0; i < v26; v9 = (char *)v9 + 1 ) | |
2604 { | |
2128 | 2605 pict_byte = lineRGB[i]; |
2127 | 2606 for ( test_byte = 1; test_byte < 63; ++test_byte ) |
0 | 2607 { |
810 | 2608 v15 = i + test_byte; |
2128 | 2609 if ( lineRGB[v15] != pict_byte ) |
0 | 2610 break; |
810 | 2611 if ( !(v15 % pitch) ) |
0 | 2612 break; |
810 | 2613 } |
2614 if ( i + test_byte > v26 ) | |
2615 test_byte = 3 * pitch - i; | |
2127 | 2616 if ( test_byte > 1 || pict_byte >= 192 ) |
810 | 2617 { |
2618 v43 = test_byte | 0xC0; | |
2127 | 2619 memcpy(v9, &v43, 1); |
0 | 2620 v9 = (char *)v9 + 1; |
2621 } | |
2127 | 2622 memcpy(v9, &pict_byte, 1); |
810 | 2623 i += test_byte; |
2624 } | |
2128 | 2625 v11 += wight; |
810 | 2626 } |
2627 } | |
1583 | 2628 free(lineRGB); |
810 | 2629 *(int *)packed_size = (char *)v9 - data_buff; |
0 | 2630 } |
2631 | |
2632 //----- (0049F8B5) -------------------------------------------------------- | |
2155 | 2633 void Render::SavePCXImage(const char *Filename, unsigned short* picture_data, int width, int height) |
0 | 2634 { |
2635 FILE *result; // eax@1 | |
2127 | 2636 FILE *pOutFile; // edi@4 |
2128 | 2637 unsigned short* v9; // eax@5 |
0 | 2638 int v10; // eax@7 |
2639 signed int v12; // eax@12 | |
2640 char v13; // zf@21 | |
2641 char v14[56]; // [sp+4h] [bp-A0h]@4 | |
2642 __int16 v15; // [sp+3Ch] [bp-68h]@4 | |
2643 char color_map[48]; // [sp+40h] [bp-64h]@4 | |
2644 int v18; // [sp+74h] [bp-30h]@5 | |
2645 char *v19; // [sp+78h] [bp-2Ch]@5 | |
2127 | 2646 int image_width; // [sp+7Ch] [bp-28h]@5 |
0 | 2647 PCXHeader_1 header1; // [sp+80h] [bp-24h]@4 |
2648 PCXHeader_2 header2; // [sp+90h] [bp-14h]@4 | |
2128 | 2649 char *lineRGB; // [sp+98h] [bp-Ch]@4 |
2650 int pitch; // [sp+9Ch] [bp-8h]@2 | |
2651 char *lineB; // [sp+A0h] [bp-4h]@8 | |
2652 char *lineG; | |
2653 unsigned short* line_pictute_data; | |
2654 byte test_byte; | |
2655 char v43; | |
2127 | 2656 |
2657 int num_r_bits = 5; | |
2658 int num_g_bits = 6; | |
2659 int num_b_bits = 5; | |
2660 | |
2661 int r_mask = 0xF800; | |
2662 int g_mask = 0x7E0; | |
2663 int b_mask = 0x1F; | |
0 | 2664 |
2665 result = fopen(Filename, "wb"); | |
2666 Filename = (const char *)result; | |
2667 if ( result ) | |
2668 { | |
2128 | 2669 pitch = width; |
2127 | 2670 if ( width & 1 ) |
2128 | 2671 pitch = width + 1; |
0 | 2672 header1.left = 0; |
2673 header1.up = 0; | |
2127 | 2674 header1.right = width - 1; |
2675 header1.bottom = height - 1; | |
2128 | 2676 header2.pitch = pitch; |
0 | 2677 memset(color_map, 0, sizeof(color_map)); |
2678 header2.reserved = 0; | |
2679 memset(v14, 0, sizeof(v14)); | |
2680 v15 = 0; | |
2681 header1.manufacturer = 10; | |
2682 header1.version = 5; | |
2683 header1.encoding = 1; | |
2684 header1.bpp = 8; | |
2685 header1.hdpi = 75; | |
2686 header1.vdpi = 75; | |
2687 header2.planes = 3; | |
2688 header2.palette_info = 1; | |
2127 | 2689 fwrite(&header1, 1, 1, (FILE *)Filename); |
2690 pOutFile = (FILE *)Filename; | |
2691 fwrite(&header1.version, 1, 1, (FILE *)Filename); | |
2692 fwrite(&header1.encoding, 1, 1, pOutFile); | |
2693 fwrite(&header1.bpp, 1, 1, pOutFile); | |
2694 fwrite(&header1.left, 2, 1, pOutFile); | |
2695 fwrite(&header1.up, 2, 1, pOutFile); | |
2696 fwrite(&header1.right, 2, 1, pOutFile); | |
2697 fwrite(&header1.bottom, 2, 1, pOutFile); | |
2698 fwrite(&header1.hdpi, 2, 1, pOutFile); | |
2699 fwrite(&header1.vdpi, 2, 1, pOutFile); | |
2700 fwrite(color_map, 0x30u, 1, pOutFile); | |
2701 fwrite(&header2, 1, 1, pOutFile); | |
2702 fwrite(&header2.planes, 1, 1, pOutFile); | |
2703 fwrite(&header2.pitch, 2, 1, pOutFile); | |
2704 fwrite(&header2.palette_info, 2, 1, pOutFile); | |
2705 fwrite(v14, 0x3Au, 1, pOutFile); | |
2128 | 2706 |
2707 lineRGB = (char *)malloc(3 * (width + 2)); | |
2131 | 2708 //Ïðè ñîõðàíåíèè èçîáðàæåíèÿ ïîäðÿä èäóùèå ïèêñåëè îäèíàêîâîãî öâåòà îáúåäèíÿþòñÿ è âìåñòî óêàçàíèÿ öâåòà äëÿ êàæäîãî ïèêñåëÿ |
2709 //óêàçûâàåòñÿ öâåò ãðóïïû ïèêñåëåé è èõ êîëè÷åñòâî. | |
2128 | 2710 image_width = 3 * pitch; |
2711 v9 = picture_data; | |
2127 | 2712 for ( v18 = 0; v18 < height; v18++ )//ñòîëáåö |
2713 { | |
2128 | 2714 line_pictute_data = v9; |
2715 lineG = (char *)lineRGB + pitch; | |
2716 lineB = (char *)lineRGB + 2 * pitch; | |
2717 | |
2718 for ( int i = 0; i < width; i++ )//ñòðîêà | |
2719 { | |
2720 lineRGB[i] = (signed int)(r_mask & *line_pictute_data) >> (num_g_bits + num_b_bits + num_r_bits - 8); | |
2721 lineG[i] = (signed int)(g_mask & *line_pictute_data) >> (num_b_bits + num_g_bits - 8); | |
2722 lineB[i] = (b_mask & *line_pictute_data) << (8 - num_b_bits); | |
2131 | 2723 line_pictute_data += 1; |
2128 | 2724 } |
2725 test_byte = 1; | |
2131 | 2726 for ( int i = 0; (signed int)i < image_width; i += test_byte ) |
2128 | 2727 { |
2728 unsigned char pic_byte = lineRGB[i]; | |
2729 for ( test_byte; test_byte < 63; ++test_byte )// ðàñ÷¸ò êîëè÷åñòâà îäèíàêîâûõ öâåòîâ | |
0 | 2730 { |
2128 | 2731 v12 = i + test_byte; |
2732 if ( lineRGB[v12] != pic_byte ) | |
2127 | 2733 break; |
2128 | 2734 if ( !(v12 % pitch) ) |
2127 | 2735 break; |
0 | 2736 } |
2128 | 2737 if ( i + test_byte > image_width ) |
2738 test_byte = 3 * pitch - i; | |
2739 if ( test_byte > 1 || pic_byte >= 0xC0 ) | |
0 | 2740 { |
2128 | 2741 v43 = test_byte | 0xC0;//òåñò-áàéò îáúåäèíåíèÿ |
2742 fwrite(&v43, 1, 1, pOutFile); | |
0 | 2743 } |
2128 | 2744 fwrite(&pic_byte, 1, 1, pOutFile); |
2745 } | |
2746 v9 += width; | |
2131 | 2747 } |
2128 | 2748 free(lineRGB); |
2155 | 2749 fclose(pOutFile); |
2750 } | |
0 | 2751 } |
2752 | |
2753 //----- (0049FBCD) -------------------------------------------------------- | |
2754 void Render::ClearTarget(unsigned int uColor) | |
2755 { | |
2154 | 2756 //if (pRenderD3D) |
0 | 2757 { |
2069 | 2758 if (using_software_screen_buffer) |
0 | 2759 pRenderD3D->ClearTarget(true, uColor, false, 0.0); |
2760 } | |
2154 | 2761 //else |
2762 //memset32(pTargetSurface, uColor, field_10 * field_14 / 2); | |
0 | 2763 } |
2764 | |
2765 | |
2766 //----- (0049FC37) -------------------------------------------------------- | |
2767 void Render::Present() | |
2768 { | |
2769 Render *v1; // esi@1 | |
2770 struct tagRECT Rect; // [sp+8h] [bp-28h]@11 | |
2771 RECT a4; // [sp+18h] [bp-18h]@11 | |
2772 struct tagPOINT Point; // [sp+28h] [bp-8h]@11 | |
2773 | |
2774 v1 = this; | |
2069 | 2775 if ( !pRenderer->pRenderD3D || this->using_software_screen_buffer ) |
0 | 2776 { |
2777 this->pBeforePresentFunction(); | |
2778 if ( v1->pRenderD3D ) | |
2779 { | |
2069 | 2780 if ( v1->using_software_screen_buffer ) |
0 | 2781 { |
2782 pRenderD3D->Present(false); | |
2783 } | |
2784 } | |
1802 | 2785 else __debugbreak(); // no sr |
2786 /*{ | |
0 | 2787 if ( v1->bWindowMode ) |
2788 { | |
2789 RestoreFrontBuffer(); | |
2790 GetClientRect(v1->hWnd, &Rect); | |
2791 Point.y = 0; | |
2792 Point.x = 0; | |
2793 ClientToScreen(v1->hWnd, &Point); | |
2794 OffsetRect(&Rect, Point.x, Point.y); | |
2795 a4.top = 0; | |
2796 a4.bottom = 480; | |
2797 a4.left = 0; | |
2798 a4.right = 640; | |
2799 PresentRect(&Rect, &a4); | |
2800 } | |
2801 else | |
2802 { | |
2803 RestoreFrontBuffer(); | |
2804 a4.top = 0; | |
2805 a4.bottom = 480; | |
2806 a4.left = 0; | |
2807 a4.right = 640; | |
2808 BltBackToFontFast(0, 0, &a4); | |
2809 } | |
1802 | 2810 }*/ |
0 | 2811 } |
2812 } | |
2813 | |
2814 //----- (0049FD3A) -------------------------------------------------------- | |
2154 | 2815 void Render::_49FD3A_fullscreen() |
0 | 2816 { |
2817 Render *v2; // esi@1 | |
2818 IDirectDrawSurface4 *v3; // eax@6 | |
2819 IDirectDrawSurface4 *v4; // ST0C_4@6 | |
2820 RECT v5; // [sp+8h] [bp-10h]@6 | |
2821 | |
1980 | 2822 Render* a1 = this; |
0 | 2823 v2 = a1; |
2824 if ( a1->pRenderD3D ) | |
2825 { | |
2826 if (pFrontBuffer4->IsLost() == DDERR_SURFACELOST) | |
2827 pFrontBuffer4->Restore(); | |
2828 if (pBackBuffer4->IsLost() == DDERR_SURFACELOST) | |
2829 pBackBuffer4->Restore(); | |
2830 v3 = v2->pBackBuffer4; | |
2831 v4 = v2->pFrontBuffer4; | |
2832 v5.top = 0; | |
2833 v5.bottom = 480; | |
2834 v5.left = 0; | |
2835 v5.right = 640; | |
2836 v3->BltFast(0, 0, v4, &v5, 16u); | |
2837 } | |
2838 } | |
2839 | |
2840 //----- (0049FDBF) -------------------------------------------------------- | |
2841 void Render::CreateZBuffer() | |
2842 { | |
2843 if (!pDefaultZBuffer) | |
2844 { | |
2845 pDefaultZBuffer = pActiveZBuffer = nullptr; | |
1583 | 2846 pDefaultZBuffer = pActiveZBuffer = (int *)malloc(0x12C000); |
871 | 2847 memset32(pActiveZBuffer, 0xFFFF0000, 0x4B000u); // // inlined Render::ClearActiveZBuffer (mm8::004A085B) |
0 | 2848 } |
2849 } | |
2850 | |
2851 //----- (0049FE05) -------------------------------------------------------- | |
2852 void Render::Release() | |
2853 { | |
2854 Render *v1; // esi@1 | |
1802 | 2855 //RenderD3D *v2; // ecx@1 |
2856 //char v3; // zf@4 | |
2857 //void *v4; // ebx@6 | |
0 | 2858 IDirectDraw *v5; // eax@10 |
2859 IDirectDrawSurface2 *v6; // eax@11 | |
2860 IDirectDrawSurface2 *v7; // eax@13 | |
2861 IDirectDrawSurface2 *v8; // eax@15 | |
2862 IDirectDraw2 *v9; // eax@17 | |
2863 IDirectDraw4 *v10; // eax@19 | |
2864 IDirectDrawSurface4 *v11; // eax@20 | |
2865 IDirectDrawSurface4 *v12; // eax@22 | |
2866 IDirectDrawSurface4 *v13; // eax@24 | |
2867 IDirectDraw4 *v14; // eax@26 | |
2868 unsigned __int16 **v15; // ebx@28 | |
2869 void **v16; // esi@29 | |
2870 | |
2871 v1 = this; | |
1802 | 2872 if (pRenderD3D) |
0 | 2873 { |
2069 | 2874 if ( v1->using_software_screen_buffer ) |
0 | 2875 { |
1802 | 2876 pRenderD3D->ClearTarget(true, 0, false, 1.0); |
0 | 2877 pRenderD3D->Present(0); |
1802 | 2878 pRenderD3D->ClearTarget(true, 0, false, 1.0); |
0 | 2879 } |
2154 | 2880 //v1->pColorKeySurface4 = 0; |
0 | 2881 v1->pBackBuffer4 = 0; |
2882 v1->pFrontBuffer4 = 0; | |
2883 v1->pDirectDraw4 = 0; | |
1802 | 2884 if (v1->pTargetSurface) |
0 | 2885 { |
2069 | 2886 delete [] v1->pTargetSurface_unaligned; |
0 | 2887 v1->pTargetSurface = 0; |
2069 | 2888 v1->pTargetSurface_unaligned = 0; |
0 | 2889 } |
1802 | 2890 if (pRenderD3D) |
0 | 2891 { |
2892 pRenderD3D->Release(); | |
1802 | 2893 delete pRenderD3D; |
2894 } | |
2895 pRenderD3D = 0; | |
0 | 2896 } |
2897 else | |
1802 | 2898 ;//__debugbreak(); // no sr |
2899 /*{ | |
0 | 2900 if ( bWinNT4_0 == 1 ) |
2901 { | |
2902 v5 = (IDirectDraw *)v1->pDirectDraw2; | |
2903 if ( !v5 ) | |
2904 return; | |
2905 v5->SetCooperativeLevel(v1->hWnd, 8u); | |
2906 v1->pDirectDraw2->FlipToGDISurface(); | |
2907 v6 = v1->pSomeSurface2; | |
2908 if ( v6 ) | |
2909 { | |
2910 v6->Release(); | |
2911 v1->pSomeSurface2 = 0; | |
2912 } | |
2913 v7 = v1->pBackBuffer2; | |
2914 if ( v7 ) | |
2915 { | |
2916 v7->Release(); | |
2917 v1->pBackBuffer2 = 0; | |
2918 } | |
2919 v8 = v1->pFrontBuffer2; | |
2920 if ( v8 ) | |
2921 { | |
2922 v8->Release(); | |
2923 v1->pFrontBuffer2 = 0; | |
2924 } | |
2925 v9 = v1->pDirectDraw2; | |
2926 if ( v9 ) | |
2927 { | |
2928 v9->Release(); | |
2929 v1->pDirectDraw2 = 0; | |
2930 } | |
2931 } | |
2932 else | |
2933 { | |
2934 v10 = v1->pDirectDraw4; | |
2935 if ( !v10 ) | |
2936 return; | |
2937 v10->SetCooperativeLevel(v1->hWnd, 1032u); | |
2938 v1->pDirectDraw4->FlipToGDISurface(); | |
2939 v11 = v1->pColorKeySurface4; | |
2940 if ( v11 ) | |
2941 { | |
2942 v11->Release(); | |
2943 v1->pColorKeySurface4 = 0; | |
2944 } | |
2945 v12 = v1->pBackBuffer4; | |
2946 if ( v12 ) | |
2947 { | |
2948 v12->Release(); | |
2949 v1->pBackBuffer4 = 0; | |
2950 } | |
2951 v13 = v1->pFrontBuffer4; | |
2952 if ( v13 ) | |
2953 { | |
2954 v13->Release(); | |
2955 v1->pFrontBuffer4 = 0; | |
2956 } | |
2957 v14 = v1->pDirectDraw4; | |
2958 if ( v14 ) | |
2959 { | |
2960 v14->Release(); | |
2961 v1->pDirectDraw4 = 0; | |
2962 } | |
2963 } | |
2964 v15 = &v1->pTargetSurface; | |
2965 if ( v1->pTargetSurface ) | |
2966 { | |
2967 v16 = (void **)&v1->ptr_400E8; | |
2968 free(*v16); | |
2969 *v15 = 0; | |
2970 *v16 = 0; | |
2971 } | |
1802 | 2972 }*/ |
0 | 2973 } |
2974 | |
2152 | 2975 |
2976 | |
2977 | |
2978 void Present32(unsigned __int32 *src, unsigned int src_pitch, | |
2979 unsigned __int32 *dst, unsigned int dst_pitch) | |
2980 { | |
2981 for (uint y = 0; y < 8; ++y) | |
2982 memcpy(dst + y * dst_pitch, | |
2983 src + y * src_pitch, src_pitch * sizeof(__int32)); | |
2984 | |
2985 for (uint y = 8; y < 352; ++y) | |
2986 { | |
2987 memcpy(dst + y * dst_pitch, | |
2988 src + y * src_pitch, 8 * sizeof(__int32)); | |
2989 memcpy(dst + 8 + game_viewport_width + y * dst_pitch, | |
2990 src + 8 + game_viewport_width + y * src_pitch, 174/*172*/ * sizeof(__int32)); | |
2991 } | |
2992 | |
2993 for (uint y = 352; y < 480; ++y) | |
2994 memcpy(dst + y * dst_pitch, | |
2995 src + y * src_pitch, src_pitch * sizeof(__int32)); | |
2996 | |
2997 for (uint y = pViewport->uViewportTL_Y; y < pViewport->uViewportBR_Y + 1; ++y) | |
2998 { | |
2999 for (uint x = pViewport->uViewportTL_X; x < pViewport->uViewportBR_X; ++x) | |
3000 { | |
3001 //if (src[x + y * src_pitch] != (pRenderer->uTargetGMask | pRenderer->uTargetBMask)) | |
2155 | 3002 if (src[x + y * src_pitch] != 0xFF00FCF8) // FFF8FCF8 = Color32(Color16(g_mask | b_mask)) |
2152 | 3003 dst[x + y * dst_pitch] = src[x + y * src_pitch]; |
3004 } | |
3005 } | |
3006 } | |
3007 | |
3008 //----- (004A597D) -------------------------------------------------------- | |
3009 void Present_NoColorKey() | |
3010 { | |
3011 //unsigned __int16 *v0; // eax@4 | |
3012 unsigned __int16 *v1; // esi@4 | |
3013 void *v2; // edi@4 | |
3014 //signed int v4; // ebx@4 | |
3015 //signed int v5; // ebx@6 | |
3016 //void *v6; // edi@7 | |
3017 //const void *v7; // esi@7 | |
3018 signed int v8; // ebx@8 | |
3019 int v9; // eax@10 | |
3020 unsigned int v10; // esi@10 | |
3021 unsigned __int32 v11; // edi@10 | |
3022 //int v12; // ecx@10 | |
3023 unsigned int v13; // ebx@10 | |
3024 int v14; // eax@11 | |
3025 int v15; // eax@13 | |
3026 int v16; // eax@14 | |
3027 int v17; // eax@16 | |
3028 HRESULT v18; // eax@22 | |
3029 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-98h]@3 | |
3030 //int v20; // [sp+88h] [bp-1Ch]@10 | |
3031 int v21; // [sp+8Ch] [bp-18h]@10 | |
3032 __int32 v22; // [sp+90h] [bp-14h]@10 | |
3033 //unsigned __int32 v23; // [sp+94h] [bp-10h]@10 | |
3034 unsigned int v24; // [sp+98h] [bp-Ch]@4 | |
3035 //unsigned int _this; // [sp+9Ch] [bp-8h]@10 | |
3036 //LPVOID v26; // [sp+A0h] [bp-4h]@4 | |
3037 | |
3038 int r_mask = 0xF800; | |
3039 int g_mask = 0x7E0; | |
3040 int b_mask = 0x1F; | |
3041 | |
3042 if ( !pRenderer->uNumSceneBegins ) | |
3043 { | |
2154 | 3044 //if ( pRenderer->using_software_screen_buffer ) |
3045 //{ | |
2152 | 3046 memset(&Dst, 0, 0x7Cu); |
3047 Dst.dwSize = 124; | |
3048 if ( pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &Dst, DDLOCK_WAIT) ) | |
3049 { | |
3050 //v26 = Dst.lpSurface; | |
3051 //pRenderer->pCurrentlyLockedSurfaceDataPtr = (unsigned __int16 *)Dst.lpSurface; | |
3052 v24 = g_mask | b_mask | ((g_mask | b_mask) << 16); | |
3053 //pRenderer->pCurrentlyLockedSoftSurface = pRenderer->pTargetSurface; | |
3054 //pRenderer->uCurrentlyLockedSurfacePitch = Dst.lPitch; | |
3055 //v1 = pRenderer->pTargetSurface; | |
3056 v2 = Dst.lpSurface; | |
3057 | |
3058 | |
3059 /*for (uint y = 0; y < 480; ++y) | |
3060 { | |
3061 auto pDst = (unsigned short *)((char *)Dst.lpSurface + y * Dst.lPitch); | |
3062 for (uint x = 0; x < 640; ++x) | |
3063 pDst[x] = pRenderer->uTargetRMask | pRenderer->uTargetBMask; | |
3064 }*/ | |
3065 | |
3066 if (!FORCE_16_BITS) | |
3067 Present32((unsigned __int32 *)pRenderer->pTargetSurface, pRenderer->uTargetSurfacePitch, (unsigned __int32 *)Dst.lpSurface, Dst.lPitch / 4); | |
3068 else | |
3069 { | |
3070 ushort* pSrc = (unsigned short *)pRenderer->pTargetSurface; | |
3071 short* pDst = (__int16 *)Dst.lpSurface; | |
3072 | |
3073 for (uint y = 0; y < 8; ++y) | |
3074 memcpy(pDst + y * Dst.lPitch / 2, | |
3075 | |
3076 pSrc + y * 640, 640 * sizeof(__int16)); | |
3077 | |
3078 for (uint y = 8; y < 352; ++y) | |
3079 { | |
3080 memcpy(pDst + y * Dst.lPitch / 2, | |
3081 pSrc + y * 640, 8 * sizeof(__int16)); | |
3082 memcpy(pDst + 8 + game_viewport_width/*462*/ + y * Dst.lPitch / 2, | |
3083 pSrc + 8 + game_viewport_width/*462*/ + y * 640, 174/*172*/ * sizeof(__int16)); | |
3084 } | |
3085 | |
3086 for (uint y = 352; y < 480; ++y) | |
3087 memcpy(pDst + y * Dst.lPitch / 2, | |
3088 pSrc + y * 640, 640 * sizeof(__int16)); | |
3089 | |
3090 | |
3091 ushort* pSrc_x1y1 = pSrc + 640 * pViewport->uViewportTL_Y + pViewport->uViewportTL_X; | |
3092 //_this = (unsigned int)&pSrc[2 * (((signed int)pViewport->uViewportX >> 1) + 320 * pViewport->uViewportY)]; | |
3093 short* pDst_x1y1 = pDst + Dst.lPitch * pViewport->uViewportTL_Y + pViewport->uViewportTL_X; | |
3094 //v23 = (unsigned __int32)((char *)v26 + 4 * (((signed int)pViewport->uViewportX >> 1) + (Dst.lPitch >> 2) * pViewport->uViewportY)); | |
3095 v9 = ((signed int)pViewport->uViewportTL_X >> 1) - ((signed int)pViewport->uViewportBR_X >> 1); | |
3096 //v20 = ((signed int)pViewport->uViewportZ >> 1) - ((signed int)pViewport->uViewportX >> 1); | |
3097 v22 = 4 * ((Dst.lPitch / 4) + v9); | |
3098 v21 = 4 * v9 + 1280; | |
3099 | |
3100 //auto uNumLines = pViewport->uViewportW - pViewport->uViewportY + 1; | |
3101 //v26 = (LPVOID)(pViewport->uViewportW - pViewport->uViewportY + 1); | |
3102 v10 = (int)pSrc_x1y1; | |
3103 v11 = (int)pDst_x1y1; | |
3104 int uHalfWidth = (pViewport->uViewportBR_X - pViewport->uViewportTL_X) / 2; | |
3105 v13 = v24; | |
3106 | |
3107 for (uint y = pViewport->uViewportTL_Y; y < pViewport->uViewportBR_Y + 1; ++y) | |
3108 { | |
3109 //memcpy(pDst + pViewport->uViewportX + y * Dst.lPitch / 2, | |
3110 // pSrc + pViewport->uViewportX + y * 640, (pViewport->uViewportZ - pViewport->uViewportX) * sizeof(__int16)); | |
3111 for (uint x = pViewport->uViewportTL_X; x < pViewport->uViewportBR_X; ++x) | |
3112 { | |
3113 if (pSrc[y * 640 + x] != (g_mask | b_mask)) | |
3114 pDst[y * Dst.lPitch / 2 + x] = pSrc[y * 640 + x]; | |
3115 } | |
3116 } | |
3117 } | |
3118 | |
3119 ErrD3D(pRenderer->pBackBuffer4->Unlock(0)); | |
3120 | |
3121 /* while ( 1 ) | |
3122 { | |
3123 while ( 1 ) | |
3124 { | |
3125 v14 = *(int *)v10; | |
3126 v10 += 4; | |
3127 if ( v14 == v13 ) | |
3128 break; | |
3129 if ( (short)v14 == (short)v13 ) | |
3130 { | |
3131 *(int *)v11 = *(int *)v11 & 0xFFFF | v14 & 0xFFFF0000; | |
3132 v11 += 4; | |
3133 --uHalfWidth; | |
3134 if ( !uHalfWidth ) | |
3135 goto LABEL_21; | |
3136 } | |
3137 else | |
3138 { | |
3139 v15 = __ROL__(v14, 16); | |
3140 if ( (short)v15 == (short)v13 ) | |
3141 { | |
3142 v17 = __ROR__(v15, 16); | |
3143 *(int *)v11 = *(int *)v11 & 0xFFFF0000 | (unsigned __int16)v17; | |
3144 v11 += 4; | |
3145 --uHalfWidth; | |
3146 if ( !uHalfWidth ) | |
3147 goto LABEL_21; | |
3148 } | |
3149 else | |
3150 { | |
3151 v16 = __ROR__(v15, 16); | |
3152 *(int *)v11 = v16; | |
3153 v11 += 4; | |
3154 --uHalfWidth; | |
3155 if ( !uHalfWidth ) | |
3156 goto LABEL_21; | |
3157 } | |
3158 } | |
3159 } | |
3160 v11 += 4; | |
3161 --uHalfWidth; | |
3162 if ( !uHalfWidth ) | |
3163 { | |
3164 LABEL_21: | |
3165 v10 += v21; | |
3166 v11 += v22; | |
3167 uHalfWidth = v20; | |
3168 if ( !--uNumLines ) | |
3169 { | |
3170 ErrD3D(pRenderer->pBackBuffer4->Unlock(0)); | |
3171 return; | |
3172 } | |
3173 } | |
3174 }*/ | |
3175 } | |
2154 | 3176 //} |
3177 } | |
3178 } | |
3179 | |
0 | 3180 |
3181 //----- (0049FFFB) -------------------------------------------------------- | |
1802 | 3182 bool Render::InitializeFullscreen() |
0 | 3183 { |
3184 //Render *v2; // esi@1 | |
3185 //HWND v3; // ebx@1 | |
3186 //void *v4; // eax@2 | |
3187 //RenderD3D *v5; // eax@3 | |
3188 unsigned int v6; // edx@5 | |
3189 RenderD3D__DevInfo *v7; // ecx@5 | |
3190 bool v8; // eax@6 | |
3191 RenderD3D *v9; // ecx@13 | |
3192 unsigned int v10; // eax@13 | |
3193 RenderD3D *v11; // eax@25 | |
3194 HRESULT v12; // eax@25 | |
3195 int v13; // ecx@25 | |
3196 int v14; // eax@27 | |
3197 signed int v15; // ebx@31 | |
2069 | 3198 //bool v16; // eax@35 |
3199 //char v17; // zf@35 | |
0 | 3200 IDirectDraw4 *v18; // eax@38 |
3201 HRESULT v19; // eax@38 | |
2069 | 3202 //int *v20; // eax@39 |
0 | 3203 int *v22; // eax@42 |
3204 int v23; // ecx@42 | |
3205 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@25 | |
3206 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@40 | |
3207 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@25 | |
3208 DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@38 | |
3209 void *v28; // [sp+2FCh] [bp-10h]@2 | |
3210 int v29; // [sp+308h] [bp-4h]@2 | |
3211 | |
2069 | 3212 __debugbreak(); // Nomad |
3213 | |
0 | 3214 //v2 = this; |
2069 | 3215 this->using_software_screen_buffer = 0; |
2154 | 3216 //this->pColorKeySurface4 = 0; |
0 | 3217 this->pBackBuffer4 = 0; |
3218 this->pFrontBuffer4 = 0; | |
3219 this->pDirectDraw4 = 0; | |
2069 | 3220 //this->bColorKeySupported = 0; |
0 | 3221 Release(); |
3222 //v3 = hWnd; | |
1802 | 3223 this->window = window; |
0 | 3224 CreateZBuffer(); |
1802 | 3225 |
3226 /*if (!bUserDirect3D) | |
3227 { | |
3228 CreateDirectDraw(); | |
3229 SetDirectDrawCooperationMode(hWnd, 1); | |
3230 SetDirectDrawDisplayMode(640u, 480u, 16u); | |
3231 CreateDirectDrawPrimarySurface(); | |
3232 v15 = 1; | |
3233 } | |
3234 else | |
3235 {*/ | |
0 | 3236 pRenderD3D = new RenderD3D; |
3237 v28 = pRenderD3D; | |
3238 v6 = uDesiredDirect3DDevice; | |
3239 v29 = -1; | |
3240 v7 = pRenderD3D->pAvailableDevices; | |
3241 if ( v7[v6].bIsDeviceCompatible ) | |
3242 { | |
2069 | 3243 v8 = pRenderD3D->CreateDevice(v6, /*0*/true, window); |
0 | 3244 } |
3245 else | |
3246 { | |
3247 if ( v7[1].bIsDeviceCompatible ) | |
3248 { | |
2069 | 3249 v8 = pRenderD3D->CreateDevice(1, /*0*/true, window); |
0 | 3250 } |
3251 else | |
3252 { | |
3253 if ( !v7->bIsDeviceCompatible ) | |
1545 | 3254 Error("There aren't any D3D devices to create."); |
3255 | |
2069 | 3256 v8 = pRenderD3D->CreateDevice(0, /*0*/true, window); |
0 | 3257 } |
3258 } | |
3259 if ( !v8 ) | |
1545 | 3260 Error("D3Drend->Init failed."); |
3261 | |
0 | 3262 v9 = pRenderD3D; |
3263 pBackBuffer4 = v9->pBackBuffer; | |
3264 pFrontBuffer4 = v9->pFrontBuffer; | |
3265 pDirectDraw4 = v9->pHost; | |
3266 v10 = pRenderD3D->GetDeviceCaps(); | |
3267 if ( v10 & 1 ) | |
3268 { | |
3269 if ( pRenderD3D ) | |
3270 { | |
3271 pRenderD3D->Release(); | |
3272 delete pRenderD3D; | |
3273 } | |
3274 pRenderD3D = 0; | |
3275 pBackBuffer4 = 0; | |
3276 pFrontBuffer4 = 0; | |
3277 pDirectDraw4 = 0; | |
1545 | 3278 Error("Direct3D renderer: The device failed to return capabilities."); |
0 | 3279 } |
3280 if ( v10 & 0x3E ) | |
3281 { | |
3282 if ( pRenderD3D ) | |
3283 { | |
3284 pRenderD3D->Release(); | |
3285 delete pRenderD3D; | |
3286 } | |
2154 | 3287 //pColorKeySurface4 = 0; |
0 | 3288 pRenderD3D = 0; |
3289 pBackBuffer4 = 0; | |
3290 pFrontBuffer4 = 0; | |
3291 pDirectDraw4 = 0; | |
1545 | 3292 Error("Direct3D renderer: The device doesn't support the necessary alpha blending modes."); |
0 | 3293 } |
3294 if ( (v10 & 0x80u) != 0 ) | |
3295 { | |
3296 if ( pRenderD3D ) | |
3297 { | |
3298 pRenderD3D->Release(); | |
3299 delete pRenderD3D; | |
3300 } | |
3301 pRenderD3D = 0; | |
3302 pBackBuffer4 = 0; | |
3303 pFrontBuffer4 = 0; | |
3304 pDirectDraw4 = 0; | |
1545 | 3305 Error("Direct3D renderer: The device doesn't support non-square textures."); |
0 | 3306 } |
2154 | 3307 //LOBYTE(field_10365C) = ~(unsigned __int8)(v10 >> 6) & 1; |
0 | 3308 bRequiredTextureStagesAvailable = CheckTextureStages(); |
3309 memset(&halCaps, 0, 0xFCu); | |
3310 halCaps.dwSize = 252; | |
3311 memset(&refCaps, 0, 0xFCu); | |
3312 v11 = pRenderD3D; | |
3313 refCaps.dwSize = 252; | |
3314 ErrD3D(v11->pDevice->GetCaps(&halCaps, &refCaps)); | |
3315 v13 = halCaps.dwMinTextureWidth; | |
3316 if ( (unsigned int)halCaps.dwMinTextureWidth >= halCaps.dwMinTextureHeight ) | |
3317 v13 = halCaps.dwMinTextureHeight; | |
3318 v14 = halCaps.dwMaxTextureWidth; | |
3319 uMinDeviceTextureDim = v13; | |
3320 if ( (unsigned int)v14 < halCaps.dwMaxTextureHeight ) | |
3321 v14 = halCaps.dwMaxTextureHeight; | |
3322 uMaxDeviceTextureDim = v14; | |
3323 if ( (unsigned int)v13 < 4 ) | |
3324 uMinDeviceTextureDim = 4; | |
3325 v15 = 1; | |
3326 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, true)); | |
3327 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, true)); | |
2154 | 3328 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, 2)); |
0 | 3329 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SPECULARENABLE, false)); |
3330 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, false)); | |
3331 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHATESTENABLE, false)); | |
2154 | 3332 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1)); |
3333 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2)); | |
3334 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2)); | |
3335 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 3)); | |
3336 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG1, 2)); | |
0 | 3337 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG2, 0)); |
2154 | 3338 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAOP, 2)); |
3339 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2)); | |
0 | 3340 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG2, 0)); |
2154 | 3341 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 4)); |
1802 | 3342 //} |
2069 | 3343 ddpfPrimarySuface.dwSize = 32; |
3344 GetTargetPixelFormat(&ddpfPrimarySuface); | |
0 | 3345 ParseTargetPixelFormat(); |
2069 | 3346 |
3347 if (!pRenderD3D) | |
3348 { | |
3349 __debugbreak(); | |
3350 pBeforePresentFunction = 0;//nullsub_1; | |
3351 } | |
3352 //else | |
3353 //{ | |
3354 /*v16 = IsColorKeySupported(pDirectDraw4); | |
0 | 3355 v17 = uAcquiredDirect3DDevice == v15; |
3356 bColorKeySupported = v16; | |
3357 if ( !v17 ) | |
3358 bColorKeySupported = 0; | |
3359 if ( bColorKeySupported ) | |
3360 { | |
3361 memset(&ddsd2, 0, 0x7Cu); | |
3362 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask; | |
3363 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue; | |
3364 v18 = pDirectDraw4; | |
3365 ddsd2.dwSize = 124; | |
3366 ddsd2.dwFlags = 65543; | |
3367 ddsd2.ddsCaps.dwCaps = 2112; | |
3368 ddsd2.dwWidth = 640; | |
3369 ddsd2.dwHeight = 480; | |
3370 ErrD3D(v18->CreateSurface(&ddsd2, &pColorKeySurface4, 0)); | |
3371 pBeforePresentFunction = Present_ColorKey; | |
3372 } | |
2069 | 3373 else*/ |
0 | 3374 { |
3375 pTargetSurface = 0; | |
2069 | 3376 pTargetSurface_unaligned = 0; |
3377 pTargetSurface_unaligned = (unsigned int *)malloc(640 * 480 * 2 + 32); | |
3378 if ( !pTargetSurface_unaligned | |
0 | 3379 || (memset(&pDesc, 0, 0x7Cu), |
3380 pDesc.dwSize = 124, | |
3381 !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, v15)) ) | |
3382 return 0; | |
3383 pBackBuffer4->Unlock(0); | |
2069 | 3384 v22 = (int *)pTargetSurface_unaligned + 4; |
0 | 3385 v23 = (unsigned int)pDesc.lpSurface & 7; |
3386 LOBYTE(v22) = (unsigned __int8)v22 & 0xF8; | |
3387 uTargetSurfacePitch = 640; | |
3388 pBeforePresentFunction = Present_NoColorKey; | |
3389 v15 = 1; | |
2069 | 3390 pTargetSurface = (unsigned __int32 *)((char *)v22 + 2 * v23); |
3391 } | |
3392 using_software_screen_buffer = v15; | |
3393 //} | |
0 | 3394 bWindowMode = 0; |
3395 pParty->uFlags |= 2u; | |
2151 | 3396 pViewport->SetFOV(flt_6BE3A0 * 65536.0f); |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1110
diff
changeset
|
3397 return v15 != 0; |
0 | 3398 } |
3399 | |
3400 //----- (004A05F3) -------------------------------------------------------- | |
1802 | 3401 bool Render::SwitchToWindow() |
0 | 3402 { |
3403 //Render *v2; // esi@1 | |
3404 //void *v3; // eax@2 | |
3405 //RenderD3D *v4; // eax@3 | |
3406 //unsigned int v5; // edx@5 | |
3407 //RenderD3D__DevInfo *v6; // ecx@5 | |
3408 bool v7; // eax@7 | |
3409 //RenderD3D *v8; // ecx@12 | |
3410 unsigned int v9; // eax@12 | |
3411 RenderD3D *v10; // eax@24 | |
3412 HRESULT v11; // eax@24 | |
3413 int v12; // eax@24 | |
3414 int v13; // eax@26 | |
2069 | 3415 //bool v14; // eax@32 |
3416 //char v15; // zf@32 | |
0 | 3417 IDirectDraw4 *v16; // eax@35 |
3418 HRESULT v17; // eax@35 | |
2069 | 3419 //int *v18; // eax@36 |
0 | 3420 int *v19; // edx@38 |
3421 int v20; // eax@38 | |
3422 unsigned int v21; // ecx@38 | |
3423 int v22; // eax@41 | |
3424 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@24 | |
3425 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@37 | |
3426 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@24 | |
3427 DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@35 | |
3428 //RenderD3D *thisa; // [sp+2FCh] [bp-10h]@2 | |
3429 int v29; // [sp+308h] [bp-4h]@2 | |
3430 | |
2069 | 3431 pParty->uFlags |= PARTY_FLAGS_1_0002; |
2151 | 3432 pViewport->SetFOV(flt_6BE3A0 * 65536.0f); |
2069 | 3433 using_software_screen_buffer = 0; |
0 | 3434 Release(); |
2154 | 3435 //pColorKeySurface4 = 0; |
0 | 3436 pBackBuffer4 = 0; |
3437 pFrontBuffer4 = 0; | |
3438 pDirectDraw4 = 0; | |
2069 | 3439 //bColorKeySupported = 0; |
0 | 3440 CreateZBuffer(); |
1802 | 3441 /*if (!bUserDirect3D) |
3442 { | |
3443 CreateDirectDraw(); | |
3444 SetDirectDrawCooperationMode(hWnd, 0); | |
3445 field_4004C = 1; | |
3446 CreateFrontBuffer(); | |
3447 CreateClipper(hWnd); | |
3448 CreateBackBuffer(); | |
3449 field_40030 = 0; | |
3450 field_18_locked_pitch = 0; | |
3451 } | |
3452 else | |
3453 {*/ | |
1631 | 3454 /*v3 = malloc(0x148u); |
0 | 3455 thisa = (RenderD3D *)v3; |
3456 v29 = 0; | |
3457 if ( v3 ) | |
3458 v4 = RenderD3D::RenderD3D((RenderD3D *)v3); | |
3459 else | |
3460 v4 = 0;*/ | |
3461 pRenderD3D = new RenderD3D; | |
3462 //v4 = pRenderD3D; | |
3463 //v5 = uDesiredDirect3DDevice; | |
3464 v29 = -1; | |
3465 //v6 = pRenderD3D->pAvailableDevices; | |
3466 if (pRenderD3D->pAvailableDevices[uDesiredDirect3DDevice].bIsDeviceCompatible && | |
3467 uDesiredDirect3DDevice != 1 ) | |
3468 { | |
2069 | 3469 v7 = pRenderD3D->CreateDevice(uDesiredDirect3DDevice, true, window); |
0 | 3470 } |
3471 else | |
3472 { | |
3473 if ( !pRenderD3D->pAvailableDevices[0].bIsDeviceCompatible ) | |
1545 | 3474 Error("There aren't any D3D devices to init."); |
3475 | |
2069 | 3476 v7 = pRenderD3D->CreateDevice(0, true, window); |
0 | 3477 } |
3478 if ( !v7 ) | |
1545 | 3479 Error("D3Drend->Init failed."); |
0 | 3480 |
3481 //v8 = pRenderD3D; | |
2154 | 3482 //pColorKeySurface4 = 0; |
0 | 3483 pBackBuffer4 = pRenderD3D->pBackBuffer; |
3484 pFrontBuffer4 = pRenderD3D->pFrontBuffer; | |
3485 pDirectDraw4 = pRenderD3D->pHost; | |
3486 v9 = pRenderD3D->GetDeviceCaps(); | |
3487 if ( v9 & 1 ) | |
3488 { | |
3489 if (pRenderD3D) | |
3490 { | |
3491 pRenderD3D->Release(); | |
3492 delete pRenderD3D; | |
3493 } | |
3494 pRenderD3D = 0; | |
3495 pBackBuffer4 = 0; | |
3496 pFrontBuffer4 = 0; | |
3497 pDirectDraw4 = 0; | |
1545 | 3498 Error("Direct3D renderer: The device failed to return capabilities."); |
0 | 3499 } |
3500 if ( v9 & 0x3E ) | |
3501 { | |
3502 if (pRenderD3D) | |
3503 { | |
3504 pRenderD3D->Release(); | |
3505 delete pRenderD3D; | |
3506 } | |
2154 | 3507 //pColorKeySurface4 = 0; |
0 | 3508 pRenderD3D = 0; |
3509 pBackBuffer4 = 0; | |
3510 pFrontBuffer4 = 0; | |
3511 pDirectDraw4 = 0; | |
1545 | 3512 Error("Direct3D renderer: The device doesn't support the necessary alpha blending modes."); |
0 | 3513 } |
2154 | 3514 if (v9 & 0x80) |
0 | 3515 { |
3516 if (pRenderD3D) | |
3517 { | |
3518 pRenderD3D->Release(); | |
3519 delete pRenderD3D; | |
3520 } | |
3521 pRenderD3D = 0; | |
3522 pBackBuffer4 = 0; | |
3523 pFrontBuffer4 = 0; | |
3524 pDirectDraw4 = 0; | |
1545 | 3525 Error("Direct3D renderer: The device doesn't support non-square textures."); |
0 | 3526 } |
2154 | 3527 //LOBYTE(field_10365C) = ~(unsigned __int8)(v9 >> 6) & 1; |
0 | 3528 bRequiredTextureStagesAvailable = CheckTextureStages(); |
3529 memset(&halCaps, 0, 0xFCu); | |
3530 halCaps.dwSize = 252; | |
3531 memset(&refCaps, 0, 0xFCu); | |
3532 //v10 = v2->pRenderD3D; | |
3533 refCaps.dwSize = 252; | |
3534 ErrD3D(pRenderD3D->pDevice->GetCaps(&halCaps, &refCaps)); | |
3535 v12 = halCaps.dwMinTextureWidth; | |
2069 | 3536 if ( (unsigned int)halCaps.dwMinTextureWidth > halCaps.dwMinTextureHeight ) |
0 | 3537 v12 = halCaps.dwMinTextureHeight; |
3538 uMinDeviceTextureDim = v12; | |
3539 v13 = halCaps.dwMaxTextureWidth; | |
3540 if ( (unsigned int)halCaps.dwMaxTextureWidth < halCaps.dwMaxTextureHeight ) | |
3541 v13 = halCaps.dwMaxTextureHeight; | |
3542 uMaxDeviceTextureDim = v13; | |
3543 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, 1u)); | |
3544 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, 1u)); | |
3545 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, 2u)); | |
3546 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SPECULARENABLE, 0)); | |
3547 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, 0)); | |
3548 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1u)); | |
3549 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u)); | |
3550 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u)); | |
3551 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 3u)); | |
3552 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG1, 2u)); | |
3553 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG2, 0)); | |
3554 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAOP, 2u)); | |
3555 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u)); | |
3556 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG2, 0)); | |
3557 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 4u)); | |
1802 | 3558 //} |
3559 | |
2069 | 3560 ddpfPrimarySuface.dwSize = 32; |
3561 GetTargetPixelFormat(&ddpfPrimarySuface); | |
0 | 3562 ParseTargetPixelFormat(); |
2069 | 3563 |
0 | 3564 if ( !pRenderD3D ) |
3565 { | |
2069 | 3566 __debugbreak(); |
3567 //pBeforePresentFunction = 0;//nullsub_1; | |
3568 //goto LABEL_47; | |
3569 } | |
3570 /*v14 = IsColorKeySupported(pDirectDraw4); | |
0 | 3571 v15 = uAcquiredDirect3DDevice == 1; |
3572 bColorKeySupported = v14; | |
3573 if ( !v15 ) | |
2069 | 3574 bColorKeySupported = 0;*/ |
3575 //if ( bColorKeySupported ) | |
3576 if (false) | |
3577 { | |
3578 /*memset(&ddsd2, 0, 0x7Cu); | |
0 | 3579 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask; |
3580 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue; | |
3581 v16 = pDirectDraw4; | |
3582 ddsd2.dwSize = 124; | |
3583 ddsd2.dwFlags = 65543; | |
3584 ddsd2.ddsCaps.dwCaps = 2112; | |
3585 ddsd2.dwWidth = 640; | |
3586 ddsd2.dwHeight = 480; | |
3587 ErrD3D(v16->CreateSurface(&ddsd2, &pColorKeySurface4, 0)); | |
2069 | 3588 pBeforePresentFunction = Present_ColorKey;*/ |
0 | 3589 LABEL_45: |
2069 | 3590 using_software_screen_buffer = 1; |
3591 //LABEL_47: | |
0 | 3592 bWindowMode = 1; |
1802 | 3593 //hWnd = hWnd; |
0 | 3594 return 0; |
3595 } | |
3596 pTargetSurface = 0; | |
2069 | 3597 pTargetSurface_unaligned = 0; |
3598 | |
3599 uint num_pixels = window->GetWidth() * window->GetHeight(); | |
3600 pTargetSurface_unaligned = new unsigned int[num_pixels]; | |
3601 | |
3602 if (!pTargetSurface_unaligned) | |
3603 return false; | |
3604 | |
3605 memset(&pDesc, 0, 0x7Cu); | |
3606 pDesc.dwSize = 124; | |
3607 if (!pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, DDLOCK_WAIT)) | |
3608 { | |
3609 delete [] pTargetSurface_unaligned; | |
3610 return false; | |
3611 } | |
3612 | |
3613 memset32(pTargetSurface_unaligned, -1, num_pixels); | |
3614 | |
3615 | |
0 | 3616 pRenderer->pBackBuffer4->Unlock(0); |
2069 | 3617 /*v19 = pTargetSurface_unaligned; |
0 | 3618 v20 = (unsigned int)pDesc.lpSurface & 7; |
3619 v21 = (unsigned int)ptr_400E8 & 7; | |
3620 if ( v21 == v20 ) | |
3621 { | |
3622 pTargetSurface = (unsigned __int16 *)v19; | |
3623 } | |
3624 else | |
3625 { | |
3626 if ( (signed int)v21 >= v20 ) | |
3627 v22 = (int)((char *)v19 + 2 * (v21 - v20) + 16); | |
3628 else | |
3629 v22 = (int)((char *)v19 + 2 * (v20 - v21) + 16); | |
3630 pTargetSurface = (unsigned __int16 *)v22; | |
2069 | 3631 }*/ |
3632 pTargetSurface = pTargetSurface_unaligned; | |
3633 uTargetSurfacePitch = window->GetWidth(); | |
0 | 3634 pBeforePresentFunction = Present_NoColorKey; |
3635 goto LABEL_45; | |
3636 } | |
3637 | |
2154 | 3638 |
3639 //----- (0044F2B2) -------------------------------------------------------- | |
3640 bool Render::IsGammaSupported() | |
3641 { | |
3642 bool result; // eax@3 | |
3643 HRESULT v1; // eax@4 | |
3644 | |
3645 //if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
3646 { | |
3647 DDCAPS halCaps; // [sp+0h] [bp-180h]@4 | |
3648 memset(&halCaps, 0, sizeof(DDCAPS)); | |
3649 halCaps.dwSize = sizeof(DDCAPS); | |
3650 | |
3651 ErrD3D(pDirectDraw4->GetCaps(&halCaps, 0)); | |
3652 return (halCaps.dwCaps2 >> 17) & 1; | |
3653 } | |
3654 /*else | |
3655 return false;*/ | |
3656 } | |
3657 | |
0 | 3658 //----- (004A0BEE) -------------------------------------------------------- |
2102 | 3659 void Render::RasterLine2D(signed int uX, signed int uY, signed int uZ, signed int uW, unsigned __int16 uColor) |
3660 { | |
2198 | 3661 signed int lower_bound; // eax@17 |
3662 signed int left_bound; | |
0 | 3663 unsigned int v21; // edi@46 |
3664 int v22; // esi@47 | |
3665 int v23; // ebx@47 | |
3666 signed int v24; // edx@50 | |
3667 signed int v25; // esi@52 | |
3668 unsigned __int16 *v26; // ecx@52 | |
3669 int v27; // ebx@54 | |
3670 int v28; // edi@55 | |
3671 int v29; // edx@55 | |
3672 int v30; // ebx@60 | |
3673 int v31; // edx@61 | |
3674 int v32; // edi@61 | |
3675 __int64 v36; // [sp+14h] [bp-8h]@1 | |
2198 | 3676 signed int upper_bound; // [sp+18h] [bp-4h]@28 |
0 | 3677 unsigned int uXa; // [sp+24h] [bp+8h]@49 |
3678 int uYb; // [sp+28h] [bp+Ch]@47 | |
3679 | |
3680 v36 = 0i64; | |
2101 | 3681 if ( uX < this->raster_clip_x )// x âûõîäèò çà ðàìêè ëåâîé ãðàíèöû |
2102 | 3682 HIDWORD(v36) = 8; //left_border = true; |
2101 | 3683 if ( uX > this->raster_clip_z )// x âûõîäèò çà ðàìêè ïðàâîé ãðàíèöû |
2102 | 3684 HIDWORD(v36) |= 4;//right_border = true; |
2097 | 3685 |
2101 | 3686 if ( uZ < this->raster_clip_x )// z âûõîäèò çà ðàìêè ëåâîé ãðàíèöû |
2102 | 3687 LODWORD(v36) = 8;// |
2101 | 3688 if ( uZ > this->raster_clip_z )// z âûõîäèò çà ðàìêè ïðàâîé ãðàíèöû |
3689 LODWORD(v36) |= 4; | |
3690 | |
3691 if ( uY < this->raster_clip_y )// y âûõîäèò çà ðàìêè âåðõíåé ãðàíèöû | |
2102 | 3692 HIDWORD(v36) |= 2;//upper_border = true; |
2101 | 3693 if ( uY > this->raster_clip_w )// y âûõîäèò çà ðàìêè íèæíåé ãðàíèöû |
2102 | 3694 HIDWORD(v36) |= 1;//bottom_border = true; |
2101 | 3695 |
3696 if ( uW < this->raster_clip_y )// w âûõîäèò çà ðàìêè âåðõíåé ãðàíèöû | |
3697 LODWORD(v36) |= 2; | |
3698 if ( uW > this->raster_clip_w )// w âûõîäèò çà ðàìêè íèæíåé ãðàíèöû | |
3699 LODWORD(v36) |= 1; | |
3700 | |
2102 | 3701 //LOBYTE(v12) = v36; |
0 | 3702 if ( (unsigned int)v36 & HIDWORD(v36) ) |
2102 | 3703 return; |
3704 | |
2199 | 3705 if ( v36 ) //íå ïîëíîñòüþ â ðàìêàõ |
3706 { | |
3707 if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 8 )//for left and right(ëåâàÿ è ïðàâàÿ) | |
3708 { | |
3709 if ( BYTE4(v36) & 8 )//left_border = true; | |
3710 { | |
3711 uY += ((uW - uY) * (this->raster_clip_x - uX)) / (uZ - uX); | |
3712 uX = this->raster_clip_x; | |
3713 } | |
3714 else | |
3715 { | |
3716 uZ = this->raster_clip_x; | |
3717 uW += ((uY - uW) * (this->raster_clip_x - uZ)) / (uX - uZ); | |
3718 } | |
3719 } | |
3720 if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 4 ) | |
3721 { | |
3722 if ( BYTE4(v36) & 4 ) //right_border = true | |
3723 { | |
3724 uY += ((uW - uY) * (this->raster_clip_z - uX)) / (uZ - uX); | |
3725 uX = this->raster_clip_z; | |
0 | 3726 } |
3727 else | |
3728 { | |
2199 | 3729 uW += ((uY - uW) * (this->raster_clip_z - uZ)) / (uX - uZ); |
3730 uZ = this->raster_clip_z; | |
3731 } | |
3732 } | |
3733 upper_bound = 0; | |
3734 if ( uY < this->raster_clip_y ) | |
3735 upper_bound = 2; | |
3736 if ( uY > this->raster_clip_w ) | |
3737 upper_bound |= 1; | |
3738 | |
3739 lower_bound = 0; | |
3740 if ( uW < this->raster_clip_y ) | |
3741 lower_bound = 2; | |
3742 if ( uW > this->raster_clip_w ) | |
3743 lower_bound |= 1; | |
3744 | |
3745 if ( !(lower_bound & upper_bound) )//for up and down(äëÿ âåðõà è íèçà) | |
3746 { | |
3747 lower_bound ^= upper_bound; | |
3748 if ( lower_bound & 2 ) | |
3749 { | |
3750 if ( upper_bound & 2 ) | |
3751 { | |
3752 uX += ((uZ - uX) * (this->raster_clip_y - uY)) / (uW - uY); | |
3753 uY = this->raster_clip_y; | |
3754 } | |
3755 else | |
3756 { | |
3757 uZ += (uX - uZ) * (this->raster_clip_y - uW) / (uY - uW); | |
3758 uW = this->raster_clip_y; | |
3759 } | |
3760 } | |
3761 if ( lower_bound & 1 ) | |
3762 { | |
3763 if ( upper_bound & 1 ) | |
3764 { | |
3765 uX += ((uZ - uX) * (this->raster_clip_w - uY)) / (uW - uY); | |
3766 uY = this->raster_clip_w; | |
3767 } | |
3768 else | |
0 | 3769 { |
2199 | 3770 uZ += ((uX - uZ) * (this->raster_clip_w - uW)) / (uY - uW); |
3771 uW = this->raster_clip_w; | |
3772 } | |
3773 } | |
3774 } | |
3775 } | |
3776 v21 = pRenderer->uTargetSurfacePitch; | |
3777 if ( pRenderer->uTargetSurfacePitch ) | |
3778 { | |
3779 //v12 = uX + uY * pRenderer->uTargetSurfacePitch; | |
3780 v22 = uW - uY; | |
3781 v23 = v22; | |
3782 uYb = v22; | |
3783 if ( v22 < 0 ) | |
3784 { | |
3785 v23 = -v22; | |
3786 uYb = -v22; | |
3787 v21 = -pRenderer->uTargetSurfacePitch; | |
3788 } | |
3789 uXa = uZ - uX; | |
3790 if ((signed)(uZ - uX) >= 0) | |
3791 v24 = 1; | |
3792 else | |
3793 { | |
3794 uXa = -uXa; | |
3795 v24 = -1; | |
3796 } | |
3797 v25 = 0; | |
3798 | |
3799 v26 = (unsigned __int16 *)this->pTargetSurface; | |
3800 if ( v26 ) | |
3801 { | |
3802 if ( (signed int)uXa <= v23 )//ðèñóåì âåðòèêàëüíóþ ëèíèþ | |
3803 { | |
3804 v30 = v23 + 1; | |
3805 if ( v30 > 0 ) | |
3806 { | |
3807 v31 = 2 * v24; | |
3808 v32 = 2 * v21; | |
3809 //v12 = (int)&v26[v12]; | |
3810 int y = 0; | |
3811 int x = 0; | |
3812 for ( v30; v30; --v30 ) | |
0 | 3813 { |
2199 | 3814 v25 += uXa; |
3815 //*(short *)v12 = uColor; | |
3816 //v12 += v32; | |
3817 WritePixel16(uX + x, uY + y, uColor); | |
3818 if ( v32 >= 0 ) | |
3819 y += 1; | |
3820 else | |
3821 y -= 1; | |
3822 if ( v25 > 0 ) | |
0 | 3823 { |
2199 | 3824 v25 -= uYb; |
3825 //v12 += v31; | |
3826 if ( v31 >= 0 ) | |
2096 | 3827 x += 1; |
3828 else | |
3829 x -= 1; | |
0 | 3830 } |
3831 } | |
3832 } | |
3833 } | |
2199 | 3834 else//ðèñóåì ãîðèçîíòàëüíóþ ëèíèþ |
3835 { | |
3836 v27 = uXa + 1; | |
3837 if ( (signed int)(uXa + 1) > 0 ) | |
3838 { | |
3839 v28 = 2 * v21; | |
3840 v29 = 2 * v24; | |
3841 int y = 0; | |
3842 int x = 0; | |
3843 //v12 = (int)&v26[v12]; | |
3844 for ( v27; v27; --v27 ) | |
3845 { | |
3846 v25 += uYb; | |
3847 //*(short *)v12 = uColor; | |
3848 //v12 += v29; | |
3849 WritePixel16(uX + x, uY + y, uColor); | |
3850 if ( v29 >= 0 ) | |
3851 x += 1; | |
3852 else | |
3853 x -= 1; | |
3854 if ( v25 > (signed int)uXa ) | |
3855 { | |
3856 v25 -= uXa; | |
3857 //v12 += v28; | |
3858 if ( v28 >= 0 ) | |
3859 y += 1; | |
3860 else | |
3861 y -= 1; | |
3862 } | |
3863 } | |
3864 } | |
3865 } | |
3866 } | |
0 | 3867 } |
2102 | 3868 return; |
0 | 3869 } |
3870 | |
3871 //----- (004A0E80) -------------------------------------------------------- | |
3872 void Render::ClearZBuffer(int a2, int a3) | |
3873 { | |
3874 memset32(this->pActiveZBuffer, -65536, 0x4B000u); | |
3875 } | |
3876 | |
3877 //----- (004A0E97) -------------------------------------------------------- | |
709 | 3878 void Render::SetRasterClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW) |
3879 { | |
3880 this->raster_clip_x = uX; | |
3881 this->raster_clip_y = uY; | |
3882 this->raster_clip_z = uZ; | |
3883 this->raster_clip_w = uW; | |
0 | 3884 } |
3885 | |
3886 //----- (004A0EB6) -------------------------------------------------------- | |
3887 void Render::ParseTargetPixelFormat() | |
3888 { | |
3889 signed int v2; // ecx@1 | |
3890 DWORD uRedMask; // edx@1 | |
3891 unsigned int uGreenMask; // esi@5 | |
3892 signed int v5; // ecx@5 | |
3893 unsigned int uBlueMask; // edx@9 | |
3894 signed int v7; // ecx@9 | |
2069 | 3895 //unsigned int v8; // ecx@13 |
0 | 3896 |
3897 v2 = 0; | |
2132 | 3898 uRedMask = this->ddpfPrimarySuface.dwRBitMask; |
3899 this->uTargetBBits = 0; | |
3900 this->uTargetGBits = 0; | |
3901 this->uTargetRBits = 0; | |
0 | 3902 do |
3903 { | |
3904 if ( (1 << v2) & uRedMask ) | |
2132 | 3905 ++this->uTargetRBits; |
0 | 3906 ++v2; |
3907 } | |
2069 | 3908 while ( v2 < 32 ); |
2132 | 3909 uGreenMask = this->ddpfPrimarySuface.dwGBitMask; |
0 | 3910 v5 = 0; |
3911 do | |
3912 { | |
3913 if ( (1 << v5) & uGreenMask ) | |
2132 | 3914 ++this->uTargetGBits; |
0 | 3915 ++v5; |
3916 } | |
2069 | 3917 while ( v5 < 32 ); |
2132 | 3918 uBlueMask = this->ddpfPrimarySuface.dwBBitMask; |
0 | 3919 v7 = 0; |
3920 do | |
3921 { | |
3922 if ( (1 << v7) & uBlueMask ) | |
2132 | 3923 ++this->uTargetBBits; |
0 | 3924 ++v7; |
3925 } | |
2069 | 3926 while ( v7 < 32 ); |
2132 | 3927 this->uTargetGMask = uGreenMask; |
3928 this->uTargetRMask = this->ddpfPrimarySuface.dwRBitMask; | |
3929 this->uTargetBMask = uBlueMask; | |
0 | 3930 } |
3931 | |
3932 //----- (004A0F40) -------------------------------------------------------- | |
3933 bool Render::LockSurface_DDraw4(IDirectDrawSurface4 *pSurface, DDSURFACEDESC2 *pDesc, unsigned int uLockFlags) | |
3934 { | |
2132 | 3935 //IDirectDrawSurface4 *v4; // esi@1 |
168 | 3936 HRESULT result; // eax@1 |
0 | 3937 HRESULT v6; // eax@4 |
3938 int v7; // [sp-8h] [bp-14h]@10 | |
3939 unsigned int v8; // [sp-4h] [bp-10h]@10 | |
3940 char v9; // [sp+Bh] [bp-1h]@1 | |
3941 | |
2132 | 3942 //v4 = pSurface; |
0 | 3943 v9 = 1; |
3944 result = pSurface->Lock(0, pDesc, uLockFlags, 0); | |
3945 if ( result == DDERR_SURFACELOST ) | |
3946 { | |
2132 | 3947 v6 = pSurface->Restore(); |
0 | 3948 if ( v6 ) |
3949 { | |
3950 if ( v6 != DDERR_IMPLICITLYCREATED ) | |
3951 { | |
3952 LABEL_20: | |
3953 v9 = 0; | |
3954 result = (bool)memset(pDesc, 0, 4u); | |
3955 goto LABEL_21; | |
3956 } | |
3957 pRenderer->pFrontBuffer4->Restore(); | |
2132 | 3958 pSurface->Restore(); |
3959 } | |
3960 result = pSurface->Lock(0, pDesc, DDLOCK_WAIT, 0); | |
0 | 3961 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY ) |
3962 goto LABEL_20; | |
3963 ErrD3D(result); | |
3964 if ( result ) | |
3965 { | |
3966 //v8 = 0; | |
3967 //v7 = 2161; | |
3968 LABEL_19: | |
3969 //CheckHRESULT((CheckHRESULT_stru0 *)&pSurface, result, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp", v7, v8); | |
3970 goto LABEL_20; | |
3971 } | |
3972 if ( pRenderer->pRenderD3D ) | |
3973 pRenderD3D->HandleLostResources(); | |
3974 result = pRenderer->pDirectDraw4->RestoreAllSurfaces(); | |
3975 } | |
3976 else | |
3977 { | |
3978 if ( result ) | |
3979 { | |
3980 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY ) | |
3981 goto LABEL_20; | |
3982 ErrD3D(result); | |
3983 //v8 = 0; | |
3984 //v7 = 2199; | |
3985 //goto LABEL_19; | |
3986 } | |
3987 } | |
3988 LABEL_21: | |
3989 LOBYTE(result) = v9; | |
3990 return result; | |
3991 } | |
3992 | |
3993 | |
3994 //----- (004A10E4) -------------------------------------------------------- | |
3995 void Render::CreateDirectDraw() | |
3996 { | |
3997 Render *v1; // edi@1 | |
3998 HRESULT v2; // eax@1 | |
3999 HRESULT v3; // eax@5 | |
4000 int v6; // [sp-Ch] [bp-20h]@3 | |
4001 unsigned int v9; // [sp+0h] [bp-14h]@0 | |
4002 IDirectDraw *lpDD; // [sp+10h] [bp-4h]@1 | |
4003 | |
4004 v1 = this; | |
4005 ErrD3D(DirectDrawCreate(0, &lpDD, 0)); | |
4006 | |
4007 pDirectDraw4 = nullptr; | |
4008 | |
2152 | 4009 ErrD3D(lpDD->QueryInterface(IID_IDirectDraw4, (void **)&pDirectDraw4)); |
0 | 4010 |
4011 lpDD->Release(); | |
4012 lpDD = nullptr; | |
4013 } | |
4014 | |
4015 //----- (004A1169) -------------------------------------------------------- | |
4016 void Render::SetDirectDrawCooperationMode(HWND hWnd, bool bFullscreen) | |
4017 { | |
4018 DWORD flags; // eax@1 | |
4019 IDirectDraw *v4; // ecx@3 | |
4020 HRESULT v5; // eax@5 | |
4021 int v6; // [sp-8h] [bp-8h]@3 | |
4022 unsigned int v7; // [sp-4h] [bp-4h]@3 | |
4023 | |
4024 flags = bFullscreen ? DDSCL_NORMAL | DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN : | |
4025 DDSCL_NORMAL; | |
4026 | |
2152 | 4027 ErrD3D(pDirectDraw4->SetCooperativeLevel(hWnd, flags | DDSCL_MULTITHREADED)); |
0 | 4028 } |
4029 | |
4030 //----- (004A11C6) -------------------------------------------------------- | |
4031 void Render::SetDirectDrawDisplayMode(unsigned int uWidth, unsigned int uHeight, unsigned int uBPP) | |
4032 { | |
2152 | 4033 ErrD3D(pDirectDraw4->SetDisplayMode(uWidth, uHeight, uBPP, 0, 0)); |
0 | 4034 } |
4035 | |
4036 //----- (004A121C) -------------------------------------------------------- | |
4037 void Render::CreateFrontBuffer() | |
4038 { | |
4039 Render *v1; // esi@1 | |
4040 IDirectDraw *pDD; // eax@3 | |
4041 IDirectDrawSurface **pOutSurf; // esi@3 | |
4042 struct _DDSURFACEDESC *v4; // edx@3 | |
4043 HRESULT v5; // eax@5 | |
4044 int v6; // [sp-8h] [bp-8Ch]@3 | |
4045 unsigned int v7; // [sp-4h] [bp-88h]@3 | |
4046 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3 | |
4047 | |
4048 v1 = this; | |
2152 | 4049 //if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4050 //pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4051 { |
4052 memset(&a2, 0, 0x7Cu); | |
4053 pDD = (IDirectDraw *)v1->pDirectDraw4; | |
4054 a2.dwSize = 124; | |
4055 a2.dwFlags = 1; | |
4056 v7 = 0; | |
4057 a2.ddsCaps.dwCaps = 512; | |
4058 v6 = 2357; | |
4059 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer4; | |
4060 v4 = (struct _DDSURFACEDESC *)&a2; | |
4061 } | |
2152 | 4062 /*else |
0 | 4063 { |
4064 memset(&a2.lPitch, 0, 0x6Cu); // DDSURFACEDESC here | |
4065 pDD = (IDirectDraw *)v1->pDirectDraw2; | |
4066 a2.lPitch = 108; | |
4067 a2.dwBackBufferCount = 1; | |
4068 v7 = 0; | |
4069 a2.dwTextureStage = 512; | |
4070 v6 = 2346; | |
4071 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer2; | |
4072 v4 = (struct _DDSURFACEDESC *)&a2.lPitch; | |
2152 | 4073 }*/ |
0 | 4074 ErrD3D(pDD->CreateSurface(v4, pOutSurf, 0)); |
4075 } | |
4076 | |
4077 //----- (004A12CD) -------------------------------------------------------- | |
4078 void Render::CreateBackBuffer() | |
4079 { | |
4080 Render *v1; // esi@1 | |
4081 IDirectDraw *v2; // eax@3 | |
4082 IDirectDrawSurface **ppBackBuffer; // esi@3 | |
4083 struct _DDSURFACEDESC *v4; // edx@3 | |
4084 HRESULT v5; // eax@5 | |
4085 int v6; // [sp-8h] [bp-8Ch]@3 | |
4086 unsigned int v7; // [sp-4h] [bp-88h]@3 | |
4087 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3 | |
4088 | |
4089 v1 = this; | |
2152 | 4090 //if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4091 // pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4092 { |
4093 memset(&a2, 0, 0x7Cu); | |
4094 v2 = (IDirectDraw *)v1->pDirectDraw4; | |
4095 a2.dwSize = 124; | |
4096 a2.dwFlags = 7; | |
4097 v7 = 0; | |
4098 a2.ddsCaps.dwCaps = 2112; | |
4099 a2.dwWidth = 640; | |
4100 a2.dwHeight = 480; | |
4101 v6 = 2387; | |
4102 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4; | |
4103 v4 = (struct _DDSURFACEDESC *)&a2; | |
4104 } | |
2152 | 4105 /*else |
0 | 4106 { |
4107 memset(&a2.lPitch, 0, 0x6Cu); | |
4108 v2 = (IDirectDraw *)v1->pDirectDraw2; | |
4109 a2.lPitch = 108; | |
4110 a2.dwBackBufferCount = 7; | |
4111 v7 = 0; | |
4112 a2.dwTextureStage = 2112; | |
4113 a2.dwAlphaBitDepth = 640; | |
4114 a2.dwMipMapCount = 480; | |
4115 v6 = 2374; | |
4116 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2; | |
4117 v4 = (struct _DDSURFACEDESC *)&a2.lPitch; // //DDSURFACEDESC here fo ddraw2 | |
2152 | 4118 }*/ |
0 | 4119 ErrD3D(v2->CreateSurface(v4, ppBackBuffer, 0)); |
4120 } | |
4121 | |
4122 //----- (004A139A) -------------------------------------------------------- | |
4123 void Render::CreateDirectDrawPrimarySurface() | |
4124 { | |
4125 Render *v1; // esi@1 | |
2154 | 4126 //int v2; // ebx@3 |
0 | 4127 IDirectDraw2 *v3; // eax@3 |
4128 HRESULT v4; // eax@3 | |
4129 IDirectDrawSurface *pFrontBuffer; // eax@3 | |
4130 DDSCAPS2 *v6; // edx@3 | |
4131 IDirectDraw4 *v7; // eax@4 | |
4132 HRESULT v8; // eax@4 | |
4133 int v9; // ST14_4@5 | |
4134 IDirectDrawSurface *v10; // ST10_4@5 | |
4135 HRESULT v11; // eax@5 | |
4136 IDirectDrawSurface **ppBackBuffer; // [sp-4h] [bp-A4h]@3 | |
4137 const char *v13; // [sp+0h] [bp-A0h]@0 | |
4138 int v14; // [sp+4h] [bp-9Ch]@0 | |
4139 unsigned int v15; // [sp+8h] [bp-98h]@0 | |
4140 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-94h]@3 | |
4141 DDSCAPS2 v17; // [sp+88h] [bp-18h]@4 | |
4142 int a4; // [sp+98h] [bp-8h]@3 | |
4143 | |
4144 v1 = this; | |
2152 | 4145 //if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4146 //pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4147 { |
2154 | 4148 //v2 = 0; |
4149 //this->field_4004C = 1; | |
0 | 4150 memset(&ddsd2, 0, 0x7Cu); |
4151 v7 = v1->pDirectDraw4; | |
4152 ddsd2.dwBackBufferCount = 1; | |
4153 ddsd2.dwSize = 0x7Cu; | |
4154 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT; | |
4155 ddsd2.ddsCaps.dwCaps = DDSCAPS_COMPLEX | DDSCAPS_FLIP | DDSCAPS_3DDEVICE | DDSCAPS_PRIMARYSURFACE; | |
4156 ErrD3D(v7->CreateSurface( | |
4157 &ddsd2, | |
4158 &pFrontBuffer4, | |
4159 0)); | |
4160 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer4; | |
4161 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4; | |
4162 } | |
2152 | 4163 /*else |
0 | 4164 { |
4165 v2 = 0; | |
4166 this->field_4004C = 1; | |
4167 | |
4168 DDSURFACEDESC ddsd; | |
4169 memset(&ddsd, 0, sizeof(DDSURFACEDESC)); | |
4170 | |
4171 ddsd.lpSurface = (LPVOID)1; | |
4172 ddsd.lPitch = 108; | |
4173 ddsd.dwBackBufferCount = 33; | |
4174 ddsd.ddsCaps.dwCaps = 8728; | |
4175 ErrD3D(pDirectDraw2->CreateSurface( | |
4176 &ddsd, | |
4177 (IDirectDrawSurface **)&pFrontBuffer2, | |
4178 0)); | |
4179 | |
4180 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer2; | |
4181 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2; | |
2152 | 4182 }*/ |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
4183 __debugbreak(); // warning C4700: uninitialized local variable 'v6' used |
0 | 4184 v9 = (int)v6; |
4185 v10 = pFrontBuffer; // BUG | |
4186 | |
4187 v17.dwCaps = 4; | |
4188 ErrD3D(pFrontBuffer->GetAttachedSurface((DDSCAPS *)&v17, ppBackBuffer));// hr = this->pFrontBuffer->GetAttachedSurface(&ddsCaps2, ppBackBuffer); | |
4189 //CheckHRESULT(&thisa, v11, (const char *)v10, v9, (unsigned int)ppBackBuffer); | |
2154 | 4190 //v1->field_40030 = v2; |
4191 //v1->field_18_locked_pitch = v2; | |
0 | 4192 } |
4193 | |
4194 //----- (004A14F4) -------------------------------------------------------- | |
4195 void Render::CreateClipper(HWND a2) | |
4196 { | |
2152 | 4197 ErrD3D(pDirectDraw4->CreateClipper(0, &pDDrawClipper, 0)); |
4198 ErrD3D(pDDrawClipper->SetHWnd(0, a2)); | |
4199 ErrD3D(pFrontBuffer4->SetClipper(pDDrawClipper)); | |
0 | 4200 } |
4201 | |
4202 //----- (004A15D8) -------------------------------------------------------- | |
4203 void Render::GetTargetPixelFormat(DDPIXELFORMAT *pOut) | |
4204 { | |
2152 | 4205 pFrontBuffer4->GetPixelFormat(pOut); |
0 | 4206 } |
4207 | |
4208 //----- (004A1605) -------------------------------------------------------- | |
4209 void Render::LockRenderSurface(void **pOutSurfacePtr, unsigned int *pOutPixelsPerRow) | |
4210 { | |
4211 signed int v4; // eax@3 | |
4212 | |
2152 | 4213 //if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
4214 //pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 4215 { |
4216 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3 | |
4217 memset(&pDesc, 0, 0x7Cu); | |
4218 pDesc.dwSize = 124; | |
2132 | 4219 LockSurface_DDraw4(this->pBackBuffer4, &pDesc, DDLOCK_WAIT); |
0 | 4220 *pOutSurfacePtr = pDesc.lpSurface; |
4221 v4 = pDesc.lPitch; | |
4222 } | |
2152 | 4223 /*else |
0 | 4224 { |
4225 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3 | |
4226 memset(&pDesc.lPitch, 0, 0x6Cu); | |
4227 pDesc.lPitch = 108; | |
2132 | 4228 LockSurface_DDraw2(this->pBackBuffer2, &pDesc, 1); |
0 | 4229 *pOutSurfacePtr = (void *)pDesc.lpSurface; |
4230 v4 = pDesc.dwReserved; | |
2152 | 4231 }*/ |
0 | 4232 *pOutPixelsPerRow = v4 >> 1; |
4233 } | |
4234 | |
4235 //----- (004A16E1) -------------------------------------------------------- | |
4236 void Render::UnlockBackBuffer() | |
4237 { | |
2152 | 4238 ErrD3D(pBackBuffer4->Unlock(0)); |
0 | 4239 } |
4240 | |
4241 //----- (004A172E) -------------------------------------------------------- | |
4242 void Render::LockFrontBuffer(void **pOutSurface, unsigned int *pOutPixelsPerRow) | |
4243 { | |
4244 signed int v4; // eax@3 | |
4245 | |
2152 | 4246 //if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) |
0 | 4247 { |
4248 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3 | |
4249 memset(&pDesc, 0, 0x7Cu); | |
4250 pDesc.dwSize = 124; | |
2132 | 4251 LockSurface_DDraw4(this->pFrontBuffer4, &pDesc, DDLOCK_WAIT); |
0 | 4252 *pOutSurface = pDesc.lpSurface; |
4253 v4 = pDesc.lPitch; | |
4254 } | |
2152 | 4255 /*else |
0 | 4256 { |
4257 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3 | |
4258 memset(&pDesc.lPitch, 0, 0x6Cu); | |
4259 pDesc.lPitch = 108; | |
2132 | 4260 LockSurface_DDraw2(this->pFrontBuffer2, &pDesc, 1); |
0 | 4261 *pOutSurface = (void *)pDesc.lpSurface; |
4262 v4 = pDesc.dwReserved; | |
2152 | 4263 }*/ |
0 | 4264 *pOutPixelsPerRow = v4 >> 1; |
4265 } | |
4266 | |
4267 //----- (004A17C7) -------------------------------------------------------- | |
4268 void Render::UnlockFrontBuffer() | |
4269 { | |
2152 | 4270 ErrD3D(pFrontBuffer4->Unlock(0)); |
0 | 4271 } |
4272 | |
4273 //----- (004A1814) -------------------------------------------------------- | |
4274 void Render::RestoreFrontBuffer() | |
4275 { | |
2152 | 4276 if (pFrontBuffer4->IsLost() == DDERR_SURFACELOST ) |
4277 pFrontBuffer4->Restore(); | |
0 | 4278 } |
4279 | |
4280 //----- (004A184C) -------------------------------------------------------- | |
2152 | 4281 void Render::RestoreBackBuffer() |
4282 { | |
4283 if ( pBackBuffer4->IsLost() == DDERR_SURFACELOST ) | |
4284 pBackBuffer4->Restore(); | |
0 | 4285 } |
4286 | |
4287 //----- (004A18F5) -------------------------------------------------------- | |
4288 void Render::BltToFront(RECT *pDstRect, IDirectDrawSurface *pSrcSurface, RECT *pSrcRect, unsigned int uBltFlags) | |
4289 { | |
2152 | 4290 ErrD3D(pFrontBuffer4->Blt(pDstRect, (IDirectDrawSurface4 *)pSrcSurface, pSrcRect, uBltFlags, nullptr)); |
0 | 4291 } |
4292 | |
4293 //----- (004A194A) -------------------------------------------------------- | |
4294 void Render::BltBackToFontFast(int a2, int a3, RECT *a4) | |
4295 { | |
4296 IDirectDrawSurface *pFront; // eax@3 | |
4297 IDirectDrawSurface *pBack; // [sp-Ch] [bp-Ch]@3 | |
4298 | |
2152 | 4299 //if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 ) |
0 | 4300 { |
4301 pFront = (IDirectDrawSurface *)this->pFrontBuffer4; | |
4302 pBack = (IDirectDrawSurface *)this->pBackBuffer4; | |
4303 } | |
2152 | 4304 /*else |
0 | 4305 { |
4306 pFront = (IDirectDrawSurface *)this->pFrontBuffer2; | |
4307 pBack = (IDirectDrawSurface *)this->pBackBuffer2; | |
2152 | 4308 }*/ |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4309 pFront->BltFast(0, 0, pBack, a4, DDBLTFAST_WAIT); |
0 | 4310 } |
4311 | |
4312 //----- (004A1B22) -------------------------------------------------------- | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4313 unsigned int Render::Billboard_ProbablyAddToListAndSortByZOrder(float z) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4314 { |
0 | 4315 unsigned int v7; // edx@6 |
2166 | 4316 |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4317 if (uNumBillboardsToDraw >= 999 ) |
0 | 4318 return 0; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4319 if (!uNumBillboardsToDraw) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4320 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4321 uNumBillboardsToDraw = 1; |
0 | 4322 return 0; |
4323 } | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4324 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4325 for (int left = 0, right = uNumBillboardsToDraw; left < right; ) // binsearch |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4326 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4327 v7 = left + (right - left) / 2; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4328 if (z <= pRenderer->pBillboardRenderListD3D[v7].z_order) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4329 right = v7; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4330 else |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4331 left = v7 + 1; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4332 } |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4333 |
2166 | 4334 if (z > pRenderer->pBillboardRenderListD3D[v7].z_order ) |
0 | 4335 { |
4336 if ( v7 == pRenderer->uNumBillboardsToDraw - 1 ) | |
4337 v7 = pRenderer->uNumBillboardsToDraw; | |
4338 else | |
4339 { | |
4340 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 ) | |
4341 { | |
2166 | 4342 for ( uint i = 0; i < pRenderer->uNumBillboardsToDraw - v7; i++ ) |
0 | 4343 { |
2166 | 4344 memcpy(&pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - i], |
4345 &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - (i + 1)], | |
4346 sizeof(pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - i])); | |
0 | 4347 } |
4348 } | |
4349 ++v7; | |
4350 } | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
4351 uNumBillboardsToDraw++; |
0 | 4352 return v7; |
4353 } | |
2166 | 4354 if (z <= pRenderer->pBillboardRenderListD3D[v7].z_order ) |
0 | 4355 { |
4356 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 ) | |
4357 { | |
2166 | 4358 for ( uint i = 0; i < pRenderer->uNumBillboardsToDraw - v7; i++ ) |
4359 { | |
4360 memcpy(&pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - i], | |
4361 &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw -(i + 1)], | |
4362 sizeof(pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - i])); | |
4363 } | |
4364 } | |
717 | 4365 uNumBillboardsToDraw++; |
4366 return v7; | |
0 | 4367 } |
4368 return v7; | |
4369 } | |
4370 | |
4371 //----- (004A1E9D) -------------------------------------------------------- | |
4372 unsigned int Render::GetBillboardDrawListSize() | |
4373 { | |
4374 return pRenderer->uNumBillboardsToDraw; | |
4375 } | |
4376 | |
4377 //----- (004A1EA3) -------------------------------------------------------- | |
4378 unsigned int Render::GetParentBillboardID(unsigned int uBillboardID) | |
4379 { | |
2002 | 4380 return pRenderer->pBillboardRenderListD3D[uBillboardID].sParentBillboardID; |
0 | 4381 } |
4382 | |
4383 //----- (004A1EB6) -------------------------------------------------------- | |
4384 void Render::BeginSceneD3D() | |
4385 { | |
4386 if (!uNumD3DSceneBegins++) | |
4387 { | |
2154 | 4388 //if (pRenderD3D) |
0 | 4389 { |
4390 pRenderD3D->ClearTarget(true, 0x00F08020, true, 1.0); | |
4391 pRenderer->uNumBillboardsToDraw = 0; | |
4392 pRenderD3D->pDevice->BeginScene(); | |
1390 | 4393 |
0 | 4394 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) |
4395 uFogColor = GetLevelFogColor(); | |
4396 else | |
4397 uFogColor = 0; | |
4398 | |
4399 if ( uFogColor & 0xFF000000 ) | |
4400 { | |
4401 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 1); | |
4402 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, uFogColor & 0xFFFFFF); | |
4403 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0); | |
4404 bUsingSpecular = true; | |
4405 } | |
4406 else | |
4407 { | |
4408 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 0); | |
4409 bUsingSpecular = 0; | |
4410 } | |
4411 } | |
2154 | 4412 /*else |
0 | 4413 { |
4414 LockRenderSurface((void **)&pTargetSurface, &uTargetSurfacePitch); | |
4415 if (pTargetSurface) | |
4416 field_18_locked_pitch = uTargetSurfacePitch; | |
4417 else | |
4418 --uNumD3DSceneBegins; | |
2154 | 4419 }*/ |
0 | 4420 } |
4421 } | |
4422 | |
4423 //----- (004A1FE1) -------------------------------------------------------- | |
4424 void Render::DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene() | |
4425 { | |
4426 --uNumD3DSceneBegins; | |
4427 if (uNumD3DSceneBegins) | |
4428 return; | |
4429 | |
4430 if (pRenderD3D) | |
4431 { | |
4432 pGame->draw_debug_outlines(); | |
161 | 4433 DoRenderBillboards_D3D(); |
0 | 4434 pGame->pStru6Instance->RenderSpecialEffects(); |
4435 pRenderD3D->pDevice->EndScene(); | |
4436 } | |
4437 else | |
4438 pGame->pStru6Instance->RenderSpecialEffects(); | |
4439 } | |
4440 | |
4441 //----- (004A2031) -------------------------------------------------------- | |
349 | 4442 unsigned int Render::GetActorTintColor(float a2, int tint, int a4, int a5, RenderBillboard *a6) |
4443 { | |
1117
ad89d1905b48
* stru6_stru1_indoor_sw_billboard::sub_47802A() cleaned, fireball working
zipi
parents:
1113
diff
changeset
|
4444 // __debugbreak(); // should not fire outside decal builder |
349 | 4445 return ::GetActorTintColor(tint, a4, a2, a5, a6); |
0 | 4446 } |
4447 | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
4448 /*void Render::DrawTerrainPolygon_new(Polygon *a3, IDirect3DTexture2 *pTexture)//new function |
86 | 4449 { |
4450 int v5; // ebx@1 | |
4451 int v6; // edi@1 | |
4452 int v8; // eax@7 | |
4453 float v9; // eax@12 | |
4454 float *v10; // esi@12 | |
4455 float v11; // ecx@14 | |
4456 double v12; // st7@14 | |
4457 double v13; // st7@14 | |
4458 double v14; // st7@14 | |
4459 signed int v15; // eax@14 | |
4460 int v16; // eax@15 | |
4461 float v17; // ST48_4@15 | |
4462 char v18; // zf@17 | |
4463 int v19; // eax@18 | |
4464 int v20; // eax@18 | |
4465 int v21; // edx@20 | |
4466 signed int v22; // ecx@20 | |
4467 int v23; // eax@20 | |
4468 const char *v24; // ST4C_4@20 | |
4469 unsigned int v25; // ST50_4@20 | |
4470 int v26; // ST54_4@20 | |
4471 int v27; // eax@20 | |
4472 _UNKNOWN *v28; // eax@21 | |
4473 int v29; // ecx@23 | |
4474 int v30; // eax@23 | |
4475 int v31; // eax@23 | |
4476 int v32; // eax@24 | |
4477 int v33; // eax@25 | |
4478 int v34; // eax@25 | |
4479 int v35; // eax@25 | |
4480 int v36; // eax@25 | |
4481 signed int v37; // ecx@26 | |
4482 int v38; // eax@26 | |
4483 _UNKNOWN *v39; // eax@27 | |
4484 int v40; // edx@28 | |
4485 int v41; // eax@29 | |
4486 int v42; // eax@29 | |
4487 int v43; // eax@29 | |
4488 int v44; // eax@29 | |
4489 unsigned int v46; // eax@29 | |
4490 int v47; // eax@30 | |
4491 int v48; // eax@30 | |
4492 int v49; // eax@30 | |
4493 double v52; // st6@35 | |
4494 const char *v55; // [sp+4Ch] [bp-1Ch]@20 | |
4495 int v57; // [sp+5Ch] [bp-Ch]@3 | |
4496 signed int v59; // [sp+60h] [bp-8h]@12 | |
4497 int v61; // [sp+64h] [bp-4h]@4 | |
4498 int i; | |
4499 | |
4500 v6 = (int)this; | |
4501 v5 = 0; | |
4502 if (!this->uNumD3DSceneBegins) | |
4503 return; | |
4504 | |
4505 | |
4506 | |
4507 | |
186 | 4508 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP); |
86 | 4509 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE); |
4510 if (this->bUsingSpecular) | |
4511 { | |
186 | 4512 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE); |
4513 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE); | |
4514 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO); | |
86 | 4515 } |
4516 | |
4517 pVertices[0].pos.x = array_50AC10[0].vWorldViewProjX; | |
4518 pVertices[0].pos.y = array_50AC10[0].vWorldViewProjY; | |
1637 | 4519 pVertices[0].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[0].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4520 pVertices[0].rhw = 1.0 / (array_50AC10[0].vWorldViewPosition.x + 0.0000001000000011686097); |
4521 pVertices[0].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0); | |
4522 pVertices[0].specular = 0; | |
4523 pVertices[0].texcoord.x = array_50AC10[0].u; | |
4524 pVertices[0].texcoord.y = array_50AC10[0].v; | |
4525 | |
4526 pVertices[1].pos.x = array_50AC10[3].vWorldViewProjX; | |
4527 pVertices[1].pos.y = array_50AC10[3].vWorldViewProjY; | |
1637 | 4528 pVertices[1].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[3].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4529 pVertices[1].rhw = 1.0 / (array_50AC10[3].vWorldViewPosition.x + 0.0000001000000011686097); |
4530 pVertices[1].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[3].vWorldViewPosition.x, 0, 0); | |
4531 pVertices[1].specular = 0; | |
4532 pVertices[1].texcoord.x = array_50AC10[3].u; | |
4533 pVertices[1].texcoord.y = array_50AC10[3].v; | |
4534 | |
4535 pVertices[2].pos.x = array_50AC10[1].vWorldViewProjX; | |
4536 pVertices[2].pos.y = array_50AC10[1].vWorldViewProjY; | |
1637 | 4537 pVertices[2].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[1].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4538 pVertices[2].rhw = 1.0 / (array_50AC10[1].vWorldViewPosition.x + 0.0000001000000011686097); |
4539 pVertices[2].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[1].vWorldViewPosition.x, 0, 0); | |
4540 pVertices[2].specular = 0; | |
4541 pVertices[2].texcoord.x = array_50AC10[1].u; | |
4542 pVertices[2].texcoord.y = array_50AC10[1].v; | |
4543 | |
4544 memcpy(pVertices + 3, pVertices + 2, sizeof(RenderVertexD3D3)); | |
4545 memcpy(pVertices + 4, pVertices + 1, sizeof(RenderVertexD3D3)); | |
4546 | |
4547 pVertices[5].pos.x = array_50AC10[2].vWorldViewProjX; | |
4548 pVertices[5].pos.y = array_50AC10[2].vWorldViewProjY; | |
1637 | 4549 pVertices[5].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[2].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist); |
86 | 4550 pVertices[5].rhw = 1.0 / (array_50AC10[2].vWorldViewPosition.x + 0.0000001000000011686097); |
4551 pVertices[5].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[2].vWorldViewPosition.x, 0, 0); | |
4552 pVertices[5].specular = 0; | |
4553 pVertices[5].texcoord.x = array_50AC10[2].u; | |
4554 pVertices[5].texcoord.y = array_50AC10[2].v; | |
4555 | |
4556 | |
4557 this->pRenderD3D->pDevice->SetTexture(0, pTexture); | |
4558 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLELIST, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, pVertices, 6, D3DDP_DONOTLIGHT); | |
4559 | |
186 | 4560 }*/ |
4561 | |
0 | 4562 //----- (004A26BC) -------------------------------------------------------- |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
4563 void Render::DrawTerrainPolygon(unsigned int uNumVertices, struct Polygon *a4, IDirect3DTexture2 *a5, bool transparent, bool clampAtTextureBorders) |
186 | 4564 { |
4565 //RenderVertexSoft *pVertices; // esi@0 | |
4566 //int v7; // edi@1 | |
0 | 4567 unsigned int v8; // ebx@1 |
4568 LightmapBuilder *v9; // esi@3 | |
4569 unsigned int v10; // edx@3 | |
4570 int v11; // eax@5 | |
4571 int v12; // eax@11 | |
4572 char *v13; // esi@11 | |
4573 double v14; // st7@13 | |
4574 double v15; // st7@13 | |
4575 signed int v16; // eax@13 | |
4576 int v17; // ecx@13 | |
4577 double v18; // st7@13 | |
4578 float v19; // ST78_4@14 | |
4579 int v20; // eax@14 | |
4580 char v21; // zf@16 | |
4581 HRESULT v22; // eax@17 | |
4582 HRESULT v23; // eax@17 | |
4583 HRESULT v24; // eax@19 | |
4584 HRESULT v25; // eax@19 | |
4585 unsigned int v26; // ecx@19 | |
4586 char *v27; // eax@20 | |
4587 HRESULT v28; // eax@22 | |
4588 HRESULT v29; // eax@22 | |
4589 HRESULT v30; // eax@23 | |
4590 HRESULT v31; // eax@24 | |
4591 HRESULT v32; // eax@24 | |
4592 HRESULT v33; // eax@24 | |
4593 HRESULT v34; // eax@24 | |
4594 HRESULT v35; // eax@25 | |
4595 HRESULT v36; // eax@25 | |
4596 unsigned int v37; // ecx@25 | |
4597 char *v38; // eax@26 | |
4598 int v39; // edx@27 | |
4599 HRESULT v40; // eax@28 | |
4600 HRESULT v41; // eax@28 | |
4601 HRESULT v42; // eax@28 | |
4602 HRESULT v43; // eax@28 | |
4603 //IDirect3DDevice3Vtbl *v44; // ebx@28 | |
4604 unsigned int v45; // eax@28 | |
4605 HRESULT v46; // eax@29 | |
4606 HRESULT v47; // eax@29 | |
4607 HRESULT v48; // eax@29 | |
186 | 4608 //IDirect3DDevice3 *v49; // eax@35 |
0 | 4609 //IDirect3DDevice3Vtbl *v50; // ecx@35 |
4610 int v51; // eax@40 | |
4611 char *v52; // esi@40 | |
4612 double v53; // st7@42 | |
4613 double v54; // st7@42 | |
4614 signed int v55; // eax@42 | |
4615 int v56; // ecx@42 | |
4616 double v57; // st7@42 | |
4617 float v58; // ST7C_4@43 | |
4618 int v59; // eax@43 | |
186 | 4619 //signed int v60; // [sp+78h] [bp-14h]@31 |
4620 //RenderVertexSoft *v61; // [sp+7Ch] [bp-10h]@3 | |
0 | 4621 const char *v62; // [sp+80h] [bp-Ch]@0 |
4622 const char *v63; // [sp+80h] [bp-Ch]@19 | |
4623 int v64; // [sp+84h] [bp-8h]@0 | |
4624 LightmapBuilder *v65; // [sp+88h] [bp-4h]@3 | |
4625 unsigned int v66; // [sp+88h] [bp-4h]@40 | |
4626 unsigned int a6a; // [sp+A0h] [bp+14h]@11 | |
186 | 4627 int a7; |
4628 | |
4629 //v7 = (int)this; | |
0 | 4630 v8 = 0; |
186 | 4631 if (!this->uNumD3DSceneBegins) |
75 | 4632 return; |
4633 if ( uNumVertices < 3) | |
4634 return; | |
4635 | |
186 | 4636 //v61 = pVertices; |
4637 | |
75 | 4638 /* v9 = pGame->pLightmapBuilder; |
0 | 4639 v65 = v9; |
75 | 4640 v10 = v9->std__vector_000004_size;*/ |
2155 | 4641 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01_lightmap_related) |
0 | 4642 { |
638 | 4643 v11 = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0); |
1394 | 4644 pGame->pLightmapBuilder->DrawLightmaps(/*v11, 0*/); |
0 | 4645 } |
4646 else | |
4647 { | |
186 | 4648 if (transparent || !pGame->pLightmapBuilder->std__vector_000004_size || |
75 | 4649 byte_4D864C && pGame->uFlags & 2 ) |
4650 { | |
186 | 4651 if (clampAtTextureBorders) |
4652 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP); | |
0 | 4653 else |
186 | 4654 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP); |
4655 | |
4656 if (transparent || this->bUsingSpecular) | |
4657 { | |
4658 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE); | |
4659 if (transparent) | |
0 | 4660 { |
186 | 4661 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA); |
4662 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA); | |
4663 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO); | |
4664 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE); | |
0 | 4665 } |
4666 else | |
4667 { | |
186 | 4668 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE); |
4669 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO); | |
0 | 4670 } |
186 | 4671 } |
1073 | 4672 |
4673 for (uint i = 0; i < uNumVertices; ++i) | |
4674 { | |
4675 | |
4676 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
4677 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 4678 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 4679 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
4680 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
4681 if ( this->bUsingSpecular ) | |
0 | 4682 { |
2193
4842f58715ea
sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents:
2182
diff
changeset
|
4683 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_specular(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 4684 } |
1073 | 4685 else |
4686 { | |
4687 d3d_vertex_buffer[i].specular = 0; | |
4688 } | |
4689 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
4690 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
4691 } | |
4692 | |
4693 this->pRenderD3D->pDevice->SetTexture(0, a5); | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4694 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, d3d_vertex_buffer, uNumVertices, 16); |
186 | 4695 if (transparent) |
4696 { | |
4697 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
4698 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
4699 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 4700 } |
4701 } | |
4702 else | |
4703 { | |
1073 | 4704 for (uint i = 0; i < uNumVertices; ++i) |
4705 { | |
4706 | |
4707 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
4708 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
1637 | 4709 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist); |
1073 | 4710 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
4711 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0); | |
4712 if ( this->bUsingSpecular ) | |
0 | 4713 { |
2193
4842f58715ea
sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents:
2182
diff
changeset
|
4714 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_specular(0, 0, array_50AC10[i].vWorldViewPosition.x); |
0 | 4715 } |
1073 | 4716 else |
4717 { | |
4718 d3d_vertex_buffer[i].specular = 0; | |
4719 } | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1394
diff
changeset
|
4720 __debugbreak(); // warning C4700: uninitialized local variable 'v20' used |
1073 | 4721 d3d_vertex_buffer[i].specular = v20; |
4722 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u; | |
4723 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v; | |
4724 } | |
186 | 4725 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); |
4726 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
4727 if (pRenderer->bUsingSpecular) | |
4728 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); | |
0 | 4729 |
4730 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0)); | |
186 | 4731 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
0 | 4732 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4733 d3d_vertex_buffer, |
0 | 4734 uNumVertices, |
4735 16)); | |
4736 //v63 = (const char *)v7->pRenderD3D->pDevice; | |
186 | 4737 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); |
0 | 4738 //(*(void (**)(void))(*(int *)v63 + 88))(); |
1394 | 4739 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/); |
1073 | 4740 for (uint i = 0; i < uNumVertices; ++i) |
4741 { | |
4742 d3d_vertex_buffer[i].diffuse = -1; | |
4743 } | |
0 | 4744 ErrD3D(pRenderD3D->pDevice->SetTexture(0, a5)); |
186 | 4745 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 4746 if ( !pRenderer->bUsingSpecular ) |
4747 { | |
186 | 4748 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
4749 } | |
4750 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
4751 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO)); | |
4752 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR)); | |
4753 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
0 | 4754 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4755 d3d_vertex_buffer, |
0 | 4756 uNumVertices, |
4757 16)); | |
4758 if ( pRenderer->bUsingSpecular ) | |
4759 { | |
186 | 4760 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); |
0 | 4761 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0)); |
1073 | 4762 for (uint i = 0; i < uNumVertices; ++i) |
4763 { | |
4764 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000; | |
4765 d3d_vertex_buffer[i].specular = 0; | |
4766 } | |
4767 | |
75 | 4768 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));//problem |
186 | 4769 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA)); |
4770 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA)); | |
4771 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
0 | 4772 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
4773 d3d_vertex_buffer, |
0 | 4774 uNumVertices, |
4775 16)); | |
186 | 4776 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); |
0 | 4777 //v44 = pRenderer->pRenderD3D->pDevice; |
4778 v45 = GetLevelFogColor(); | |
4779 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, v45 & 0xFFFFFF)); | |
4780 v8 = 0; | |
4781 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
4782 } | |
186 | 4783 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
4784 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
0 | 4785 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v8)); |
4786 } | |
4787 } | |
186 | 4788 |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
4789 //if (pIndoorCamera->flags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES || pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES) |
1642 | 4790 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
|
4791 pGame->pIndoorCameraD3D->debug_outline_d3d(d3d_vertex_buffer, uNumVertices, 0x00FFFFFF, 0.0); |
0 | 4792 } |
4793 // 4A26BC: could not find valid save-restore pair for esi | |
4794 // 4D864C: using guessed type char byte_4D864C; | |
4795 | |
4796 //----- (004A2DA3) -------------------------------------------------------- | |
1923 | 4797 void Render::DrawOutdoorSkyPolygon(unsigned int uNumVertices, struct Polygon *pSkyPolygon, IDirect3DTexture2 *pTexture) |
852 | 4798 { |
67 | 4799 int v7; // eax@7 |
4800 | |
4801 if ( !this->uNumD3DSceneBegins ) | |
4802 return; | |
4803 if ( uNumVertices >= 3 ) | |
4804 { | |
186 | 4805 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP); |
67 | 4806 if ( this->bUsingSpecular ) |
4807 { | |
186 | 4808 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE); |
4809 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE); | |
4810 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO); | |
67 | 4811 } |
1427 | 4812 for ( uint i = 0; i < uNumVertices; ++i ) |
67 | 4813 { |
4814 pVertices[i].pos.x = array_50AC10[i].vWorldViewProjX; | |
4815 pVertices[i].pos.y = array_50AC10[i].vWorldViewProjY; | |
4816 pVertices[i].pos.z = 0.99989998; | |
168 | 4817 pVertices[i].rhw = array_50AC10[i]._rhw; |
67 | 4818 |
840 | 4819 pVertices[i].diffuse = ::GetActorTintColor(31, 0, array_50AC10[i].vWorldViewPosition.x, 1, 0); |
67 | 4820 v7 = 0; |
4821 if (this->bUsingSpecular) | |
2193
4842f58715ea
sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents:
2182
diff
changeset
|
4822 v7 = sub_47C3D7_get_fog_specular(0, 1, array_50AC10[i].vWorldViewPosition.x); |
67 | 4823 pVertices[i].specular = v7; |
4824 pVertices[i].texcoord.x = array_50AC10[i].u; | |
4825 pVertices[i].texcoord.y = array_50AC10[i].v; | |
4826 } | |
4827 pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture); | |
4828 pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
840 | 4829 pVertices, uNumVertices, D3DDP_DONOTUPDATEEXTENTS | D3DDP_DONOTLIGHT); |
0 | 4830 } |
4831 } | |
4832 | |
4833 //----- (004A2ED5) -------------------------------------------------------- | |
1923 | 4834 void Render::DrawIndoorSkyPolygon(signed int uNumVertices, struct Polygon *pSkyPolygon, IDirect3DTexture2 *pTexture) |
0 | 4835 { |
4836 int v5; // eax@3 | |
4837 | |
4838 if ( this->uNumD3DSceneBegins ) | |
4839 { | |
1923 | 4840 if ( uNumVertices >= 3 ) |
0 | 4841 { |
186 | 4842 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
1923 | 4843 v5 = 31 - (pSkyPolygon->dimming_level & 0x1F); |
638 | 4844 if ( v5 < pOutdoor->max_terrain_dimming_level ) |
4845 v5 = pOutdoor->max_terrain_dimming_level; | |
1937 | 4846 for (uint i = 0; i < uNumVertices; ++i) |
4847 { | |
4848 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; | |
4849 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
1999 | 4850 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); |
1937 | 4851 d3d_vertex_buffer[i].rhw = array_507D30[i]._rhw; |
4852 d3d_vertex_buffer[i].diffuse = 8 * v5 | ((8 * v5 | (v5 << 11)) << 8); | |
4853 d3d_vertex_buffer[i].specular = 0; | |
4854 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u; | |
4855 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v; | |
4856 } | |
1923 | 4857 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture)); |
1936 | 4858 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
4859 d3d_vertex_buffer, uNumVertices, 28)); | |
0 | 4860 } |
4861 } | |
4862 } | |
4863 | |
1390 | 4864 //----- (00479A53) -------------------------------------------------------- |
1923 | 4865 void Render::DrawIndoorSky(unsigned int uNumVertices, unsigned int uFaceID) |
1390 | 4866 { |
4867 BLVFace *pFace; // esi@1 | |
4868 double v5; // st7@3 | |
4869 signed __int64 v6; // qax@3 | |
4870 int v12; // edx@7 | |
4871 int v13; // eax@7 | |
4872 void *v15; // ecx@9 | |
4873 int v17; // edi@9 | |
4874 double v18; // st7@9 | |
4875 signed int v19; // ebx@9 | |
4876 void *v20; // ecx@9 | |
4877 int v21; // ebx@11 | |
4878 int v22; // eax@14 | |
4879 signed __int64 v23; // qtt@16 | |
4880 double v24; // st7@16 | |
4881 unsigned __int8 v25; // sf@16 | |
4882 unsigned __int8 v26; // of@16 | |
4883 double v28; // st7@20 | |
4884 char *v29; // ebx@20 | |
4885 char *v30; // edx@20 | |
4886 unsigned __int8 v31; // c0@21 | |
4887 unsigned __int8 v32; // c3@21 | |
4888 double v33; // st6@23 | |
4889 char *v34; // esi@30 | |
4890 const void *v35; // ecx@31 | |
4891 int v36; // eax@31 | |
4892 const void *v37; // edi@31 | |
4893 signed __int64 v38; // qax@31 | |
4894 int v39; // ecx@31 | |
4895 int v40; // ebx@33 | |
4896 int v41; // eax@36 | |
4897 signed __int64 v42; // qtt@39 | |
4898 int v43; // eax@39 | |
4899 char v44; // zf@39 | |
4900 double v45; // st7@39 | |
4901 double v46; // st7@39 | |
4902 unsigned int v47; // edx@40 | |
4903 double v48; // st7@41 | |
4904 RenderVertexSoft *v49; // ebx@41 | |
4905 void *v50; // edi@43 | |
4906 double v51; // st7@46 | |
4907 RenderVertexSoft *v52; // edx@46 | |
4908 void *v53; // edi@48 | |
4909 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
|
4910 struct Polygon *v60; // [sp+0h] [bp-174h]@17 |
1390 | 4911 IDirect3DTexture2 *v61; // [sp+4h] [bp-170h]@17 |
1981 | 4912 struct Polygon pSkyPolygon; // [sp+14h] [bp-160h]@6 |
1390 | 4913 unsigned int v63; // [sp+120h] [bp-54h]@7 |
4914 unsigned int v65; // [sp+128h] [bp-4Ch]@1 | |
4915 unsigned int v66; // [sp+12Ch] [bp-48h]@7 | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
4916 //float v67; // [sp+130h] [bp-44h]@7 |
1390 | 4917 __int64 v69; // [sp+13Ch] [bp-38h]@3 |
4918 int v70; // [sp+144h] [bp-30h]@3 | |
4919 int X; // [sp+148h] [bp-2Ch]@9 | |
4920 int v72; // [sp+14Ch] [bp-28h]@7 | |
4921 float v73; // [sp+150h] [bp-24h]@16 | |
4922 unsigned int v74; // [sp+154h] [bp-20h]@3 | |
1999 | 4923 unsigned int v74_; // [sp+154h] [bp-20h]@3 |
1390 | 4924 RenderVertexSoft *v75; // [sp+158h] [bp-1Ch]@3 |
4925 float v76; // [sp+15Ch] [bp-18h]@9 | |
4926 int v77; // [sp+160h] [bp-14h]@9 | |
4927 int v78; // [sp+164h] [bp-10h]@7 | |
4928 void *v79; // [sp+168h] [bp-Ch]@9 | |
4929 float v80; // [sp+16Ch] [bp-8h]@3 | |
4930 const void *v81; // [sp+170h] [bp-4h]@7 | |
4931 | |
4932 pFace = &pIndoor->pFaces[uFaceID]; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
4933 //for floor and wall(for example Selesta)------------------- |
1644 | 4934 if (pFace->uPolygonType == POLYGON_InBetweenFloorAndWall || pFace->uPolygonType == POLYGON_Floor) |
4935 { | |
4936 int v69 = (GetTickCount() / 32) - pGame->pIndoorCameraD3D->vPartyPos.x; | |
4937 int v55 = (GetTickCount() / 32) + pGame->pIndoorCameraD3D->vPartyPos.y; | |
4938 for (uint i = 0; i < uNumVertices; ++i) | |
4939 { | |
4940 array_507D30[i].u = (v69 + array_507D30[i].u) * 0.25f; | |
4941 array_507D30[i].v = (v55 + array_507D30[i].v) * 0.25f; | |
4942 } | |
4943 pRenderer->DrawIndoorPolygon(uNumVertices, pFace, pBitmaps_LOD->pHardwareTextures[pFace->uBitmapID], pFace->GetTexture(), PID(OBJECT_BModel, uFaceID), -1, 0); | |
1390 | 4944 return; |
4945 } | |
1981 | 4946 //--------------------------------------- |
4947 v70 = (signed __int64)((double)(pBLVRenderParams->fov_rad_fixpoint * pGame->pIndoorCameraD3D->vPartyPos.z)//179 | |
1641 | 4948 / (((double)pBLVRenderParams->fov_rad_fixpoint + 16192.0) |
1390 | 4949 * 65536.0) |
1922 | 4950 + (double)pBLVRenderParams->uViewportCenterY); |
1981 | 4951 v5 = (double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064;//0 |
4952 v6 = (signed __int64)((double)pBLVRenderParams->uViewportCenterY//183 | |
1641 | 4953 - (double)pBLVRenderParams->fov_rad_fixpoint |
1644 | 4954 / ((cos(v5) * 16192.0 + 0.0000001) |
1390 | 4955 * 65535.0) |
1922 | 4956 * (sin(v5) * -16192.0 - (double)pGame->pIndoorCameraD3D->vPartyPos.z)); |
1644 | 4957 |
1999 | 4958 stru_8019C8._48653D_frustum_blv(65536, 0, 0, 0, 65536, 0); |
1981 | 4959 pSkyPolygon.Create_48607B(&stru_8019C8); |
4960 pSkyPolygon.uTileBitmapID = pFace->uBitmapID; | |
4961 | |
4962 pSkyPolygon.pTexture = pBitmaps_LOD->GetTexture(pSkyPolygon.uTileBitmapID); | |
4963 if ( !pSkyPolygon.pTexture ) | |
1390 | 4964 return; |
1644 | 4965 |
1981 | 4966 pSkyPolygon.dimming_level = 0; |
4967 pSkyPolygon.uNumVertices = uNumVertices; | |
4968 | |
4969 pSkyPolygon.v_18.x = -stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationX + 16); | |
4970 pSkyPolygon.v_18.y = 0; | |
4971 pSkyPolygon.v_18.z = -stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationX + 16); | |
4972 | |
1644 | 4973 memcpy(&array_507D30[uNumVertices], array_507D30, sizeof(array_507D30[uNumVertices])); |
1981 | 4974 pSkyPolygon.field_24 = 0x2000000; |
1644 | 4975 |
4976 extern float _calc_fov(int viewport_width, int angle_degree); | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
4977 //v64 = (double)(signed int)(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX) * 0.5; |
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
4978 //v72 = 65536 / (signed int)(signed __int64)(v64 / tan(0.6457717418670654) + 0.5); |
1644 | 4979 v72 = 65536.0f / _calc_fov(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX, 74); |
1981 | 4980 v12 = pSkyPolygon.pTexture->uWidthMinus1; |
4981 v13 = pSkyPolygon.pTexture->uHeightMinus1; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
4982 //v67 = 1.0 / (double)pSkyPolygon.pTexture->uTextureWidth; |
1390 | 4983 v63 = 224 * pMiscTimer->uTotalGameTimeElapsed & v13; |
4984 v66 = 224 * pMiscTimer->uTotalGameTimeElapsed & v12; | |
4985 v78 = 0; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
4986 //v81 = 0; |
1981 | 4987 float v68 = 1.0 / (double)pSkyPolygon.pTexture->uTextureHeight; |
4988 if ( (signed int)pSkyPolygon.uNumVertices <= 0 ) | |
4989 return; | |
1644 | 4990 |
4991 int _507D30_idx = 0; | |
1999 | 4992 for ( _507D30_idx; _507D30_idx < pSkyPolygon.uNumVertices; _507D30_idx++ ) |
1390 | 4993 { |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
4994 //v15 = (void *)(v72 * (v70 - (int)array_507D30[_507D30_idx].vWorldViewProjY)); |
1981 | 4995 v77 = (unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_west_east * (signed __int64)(v72 * (v70 - array_507D30[_507D30_idx].vWorldViewProjY))) >> 16; |
4996 v74 = v77 + pSkyPolygon.ptr_38->angle_from_north; | |
4997 | |
4998 v77 = (unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_north_south * (signed __int64)(v72 * (v70 - array_507D30[_507D30_idx].vWorldViewProjY))) >> 16; | |
1999 | 4999 v74_ = v77 + pSkyPolygon.ptr_38->angle_from_east; |
1981 | 5000 |
1997 | 5001 v79 = (void *)(((unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)v72 * (v70 - (int)array_507D30[_507D30_idx].vWorldViewProjY))) >> 16); |
1644 | 5002 v17 = v72 * (pBLVRenderParams->uViewportCenterX - (int)array_507D30[_507D30_idx].vWorldViewProjX); |
5003 v18 = array_507D30[_507D30_idx].vWorldViewProjY - 1.0; | |
1981 | 5004 v19 = -pSkyPolygon.field_24; |
5005 v77 = -pSkyPolygon.field_24; | |
5006 X = (int)((char *)v79 + pSkyPolygon.v_18.x); | |
1390 | 5007 LODWORD(v76) = (signed __int64)v18; |
5008 v20 = (void *)(v72 * (v70 - LODWORD(v76))); | |
5009 while ( 1 ) | |
5010 { | |
5011 v79 = v20; | |
5012 if ( !X ) | |
5013 goto LABEL_14; | |
5014 v21 = abs(v19 >> 14); | |
1999 | 5015 if ( v21 <= abs(X) )//0x800 <= 0x28652 |
1390 | 5016 break; |
5017 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y ) | |
5018 break; | |
5019 v19 = v77; | |
5020 v20 = v79; | |
5021 LABEL_14: | |
1981 | 5022 v79 = (void *)((unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)(signed int)v20) >> 16); |
5023 v22 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)(signed int)v20) >> 16; | |
1390 | 5024 --LODWORD(v76); |
5025 v20 = (char *)v20 + v72; | |
1981 | 5026 X = v22 + pSkyPolygon.v_18.x; |
1390 | 5027 v78 = 1; |
5028 } | |
5029 if ( !v78 ) | |
5030 { | |
5031 LODWORD(v23) = v77 << 16; | |
1981 | 5032 HIDWORD(v23) = v77 >> 16;//v23 = 0xfffffe0000000000 |
1997 | 5033 v79 = (void *)(v23 / X);//X = FFFF9014(-28652) |
1390 | 5034 v77 = v17; |
1999 | 5035 signed __int64 s = v74 + ((pSkyPolygon.ptr_38->angle_from_west * (signed __int64)v17) >> 16);// s = 0xFFFFFFFF FFFF3EE6 |
5036 LODWORD(v80) = v66 + ((signed int)((unsigned __int64)(SLODWORD(s) * (v23 / X)) >> 16) >> 4); | |
1981 | 5037 array_507D30[_507D30_idx].u = ((double)SLODWORD(v80) * 0.000015259022) * (1.0 / (double)pSkyPolygon.pTexture->uTextureWidth); |
5038 | |
1999 | 5039 signed __int64 s2 = (signed __int64)(v74_ + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_south * (signed __int64)v17) >> 16)); |
5040 LODWORD(v80) = v63 + ((signed int)((unsigned __int64)(SLODWORD(s2) * (v23 / X)) >> 16) >> 4); | |
1981 | 5041 array_507D30[_507D30_idx].v = ((double)SLODWORD(v80) * 0.000015259022) * v68; |
5042 | |
1999 | 5043 v77 = (unsigned __int64)(SLODWORD(s) * (v23 / X)) >> 16; |
5044 LODWORD(v73) = (unsigned __int64)(SLODWORD(s2) * (v23 / X)) >> 16; | |
1644 | 5045 array_507D30[_507D30_idx]._rhw = 65536.0 / (double)(signed int)v79; |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5046 |
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5047 //if ( (int)v81 >= pSkyPolygon.uNumVertices ) |
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5048 //{ |
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5049 // pRenderer->DrawIndoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, |
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5050 // pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); |
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5051 // return; |
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5052 //} |
1390 | 5053 continue; |
5054 } | |
5055 break; | |
5056 } | |
1999 | 5057 if ( _507D30_idx >= pSkyPolygon.uNumVertices ) |
5058 { | |
5059 pRenderer->DrawIndoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, | |
5060 pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); | |
5061 return; | |
5062 } | |
1390 | 5063 LODWORD(v73) = 0; |
5064 v80 = v76; | |
1981 | 5065 if ( (signed int)pSkyPolygon.uNumVertices > 0 ) |
1390 | 5066 { |
5067 v28 = (double)SLODWORD(v76); | |
5068 LODWORD(v76) = (int)(char *)array_50AC10 + 28; | |
1997 | 5069 uint i = 0; |
5070 for ( v78 = pSkyPolygon.uNumVertices; v78; --v78 ) | |
5071 { | |
1390 | 5072 ++LODWORD(v73); |
1997 | 5073 memcpy(&array_50AC10[i], &array_507D30[i], 0x30u); |
1390 | 5074 LODWORD(v76) += 48; |
1997 | 5075 if ( v28 < array_507D30[i].vWorldViewProjY | v28 == array_507D30[i].vWorldViewProjY |
5076 || v28 >= array_507D30[i + 1].vWorldViewProjY ) | |
5077 { | |
5078 if ( v28 >= array_507D30[i].vWorldViewProjY || v28 <= array_507D30[i + 1].vWorldViewProjY ) | |
5079 { | |
5080 i++; | |
5081 continue; | |
5082 } | |
5083 v33 = (array_507D30[i + 1].vWorldViewProjX - array_507D30[i].vWorldViewProjX) * v28 / (array_507D30[i + 1].vWorldViewProjY - array_507D30[i].vWorldViewProjY) | |
5084 + array_507D30[i + 1].vWorldViewProjX; | |
1390 | 5085 } |
5086 else | |
5087 { | |
1997 | 5088 v33 = (array_507D30[i].vWorldViewProjX - array_507D30[i + 1].vWorldViewProjX) * v28 / (array_507D30[i].vWorldViewProjY - array_507D30[i + 1].vWorldViewProjY) |
5089 + array_507D30[i].vWorldViewProjX; | |
5090 } | |
5091 array_50AC10[i + 1].vWorldViewProjX = v33; | |
1390 | 5092 ++LODWORD(v73); |
5093 *(unsigned int *)LODWORD(v76) = v28; | |
5094 LODWORD(v76) += 48; | |
1997 | 5095 i++; |
5096 } | |
1390 | 5097 } |
5098 if ( SLODWORD(v73) <= 0 ) | |
5099 goto LABEL_40; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5100 //v34 = (char *)&array_50AC10[0].vWorldViewProjY; |
1997 | 5101 uint j = 0; |
1390 | 5102 v65 = v77 >> 14; |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5103 //HIDWORD(v69) = LODWORD(v73); |
1997 | 5104 for ( int t = (int)LODWORD(v73); t > 1; t-- ) |
5105 { | |
5106 v35 = (const void *)(v72 * (v70 - (unsigned __int64)(signed __int64)array_50AC10[j].vWorldViewProjY)); | |
5107 | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5108 //v78 = pSkyPolygon.ptr_38->viewing_angle_from_west_east; |
1997 | 5109 v81 = (const void *)((unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_west_east * (signed __int64)(signed int)v35) >> 16); |
1981 | 5110 v36 = (int)((char *)v81 + pSkyPolygon.ptr_38->angle_from_north); |
1997 | 5111 |
1390 | 5112 v81 = v35; |
5113 v74 = v36; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5114 //v78 = pSkyPolygon.ptr_38->viewing_angle_from_north_south; |
1997 | 5115 v81 = (const void *)((unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_north_south * (signed __int64)(signed int)v35) >> 16); |
1390 | 5116 v78 = (int)v35; |
1981 | 5117 v75 = (RenderVertexSoft *)((char *)v81 + pSkyPolygon.ptr_38->angle_from_east); |
5118 v81 = (const void *)pSkyPolygon.v_18.z; | |
5119 v78 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)(signed int)v35) >> 16; | |
1390 | 5120 v37 = (const void *)(v72 |
1997 | 5121 * (pBLVRenderParams->uViewportCenterX - (unsigned __int64)(signed __int64)array_50AC10[j].vWorldViewProjX)); |
5122 v38 = (signed __int64)(array_50AC10[j].vWorldViewProjY - 1.0); | |
1390 | 5123 v81 = 0; |
5124 LODWORD(v76) = v38; | |
5125 v39 = v72 * (v70 - v38); | |
5126 while ( 1 ) | |
5127 { | |
5128 v78 = v39; | |
5129 if ( !X ) | |
5130 goto LABEL_36; | |
5131 v40 = abs(X); | |
5132 if ( abs((signed __int64)v65) <= v40 ) | |
5133 break; | |
5134 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y ) | |
5135 break; | |
5136 v39 = v78; | |
5137 LABEL_36: | |
1981 | 5138 v78 = pSkyPolygon.v_18.z; |
5139 v41 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)v39) >> 16; | |
1390 | 5140 --LODWORD(v76); |
5141 v39 += v72; | |
1981 | 5142 X = v41 + pSkyPolygon.v_18.x; |
1390 | 5143 v81 = (const void *)1; |
5144 } | |
5145 if ( v81 ) | |
5146 { | |
1981 | 5147 v79 = (void *)pSkyPolygon.v_18.z; |
1390 | 5148 v78 = 2 * LODWORD(v76); |
1981 | 5149 v81 = (const void *)((unsigned __int64)(pSkyPolygon.v_18.z |
1390 | 5150 * (signed __int64)(signed int)(signed __int64)(((double)v70 |
5151 - ((double)(2 * LODWORD(v76)) | |
1997 | 5152 - array_50AC10[j].vWorldViewProjY)) |
1390 | 5153 * (double)v72)) >> 16); |
1981 | 5154 X = (int)((char *)v81 + pSkyPolygon.v_18.x); |
1390 | 5155 } |
5156 LODWORD(v42) = v77 << 16; | |
5157 HIDWORD(v42) = v77 >> 16; | |
5158 v79 = (void *)(v42 / X); | |
5159 v81 = v37; | |
1997 | 5160 |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5161 //v78 = pSkyPolygon.ptr_38->angle_from_west; |
1997 | 5162 v81 = (const void *)((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_west * (signed __int64)(signed int)v37) >> 16); |
5163 v43 = v74 + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_west * (signed __int64)(signed int)v37) >> 16); | |
1390 | 5164 v74 = (unsigned int)v37; |
5165 LODWORD(v76) = v43; | |
1997 | 5166 |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5167 //v78 = pSkyPolygon.ptr_38->angle_from_south; |
1997 | 5168 v75 = (RenderVertexSoft *)((char *)v75 + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_south * (signed __int64)(signed int)v37) >> 16)); |
1390 | 5169 v74 = (unsigned __int64)(v43 * v42 / X) >> 16; |
5170 v81 = (const void *)((unsigned __int64)((signed int)v75 * v42 / X) >> 16); | |
1997 | 5171 |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5172 //v34 += 48; |
1390 | 5173 v78 = v66 + ((signed int)v74 >> 4); |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5174 //v44 = HIDWORD(v69)-- == 1; |
1390 | 5175 v45 = (double)v78 * 0.000015259022; |
5176 v78 = v63 + ((signed int)((unsigned __int64)((signed int)v75 * v42 / X) >> 16) >> 4); | |
1997 | 5177 array_50AC10[j].u = v45 * (1.0 / (double)pSkyPolygon.pTexture->uTextureWidth); |
5178 array_50AC10[j].v = (double)v78 * 0.000015259022 * v68; | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5179 //v46 = (double)(signed int)v79; |
1997 | 5180 array_50AC10[j].vWorldViewPosition.x = 0.000015258789 * (double)(signed int)v79; |
5181 array_50AC10[j]._rhw = 65536.0 / (double)(signed int)v79; | |
5182 ++j; | |
5183 } | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5184 //while ( !v44 ); |
1390 | 5185 LABEL_40: |
1997 | 5186 uint i = 0; |
1390 | 5187 if ( SLODWORD(v73) > 0 ) |
5188 { | |
5189 v48 = (double)SLODWORD(v80); | |
1997 | 5190 for ( HIDWORD(v69) = LODWORD(v73); HIDWORD(v69); --HIDWORD(v69) ) |
5191 { | |
5192 if ( v48 >= array_50AC10[i].vWorldViewProjY ) | |
5193 { | |
5194 ++i; | |
5195 memcpy(&array_507D30[i], &array_50AC10[i], 0x30u); | |
5196 } | |
5197 } | |
5198 } | |
5199 pSkyPolygon.uNumVertices = i; | |
5200 pRenderer->DrawIndoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); | |
5201 int pNumVertices = 0; | |
1390 | 5202 if ( SLODWORD(v73) > 0 ) |
5203 { | |
5204 v51 = (double)SLODWORD(v80); | |
1997 | 5205 for ( v80 = v73; v80 != 0.0; --LODWORD(v80) ) |
5206 { | |
5207 if ( v51 <= array_50AC10[pNumVertices].vWorldViewProjY ) | |
5208 { | |
5209 ++pNumVertices; | |
5210 memcpy(&array_507D30[pNumVertices], &array_50AC10[pNumVertices], 0x30u); | |
5211 } | |
5212 } | |
5213 } | |
5214 pRenderer->DrawIndoorSkyPolygon(pNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); | |
1390 | 5215 } |
5216 | |
2016
f1fd2ed4e9ba
Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents:
2014
diff
changeset
|
5217 |
0 | 5218 //----- (004A2FC0) -------------------------------------------------------- |
5219 void Render::DrawIndoorPolygon(unsigned int uNumVertices, BLVFace *pFace, IDirect3DTexture2 *pHwTex, Texture *pTex, int uPackedID, unsigned int uColor, int a8) | |
5220 { | |
5221 //Render *v8; // edi@1 | |
5222 //unsigned int v9; // esi@3 | |
1072 | 5223 RenderVertexSoft *v12; // ecx@9 |
5224 RenderVertexD3D3 *v13; // eax@9 | |
0 | 5225 double v14; // st6@10 |
5226 int v15; // edx@10 | |
5227 Texture *v16; // edx@10 | |
5228 double v17; // st6@10 | |
5229 //char v18; // zf@10 | |
5230 Texture *v19; // edx@10 | |
595 | 5231 //Texture *v23; // edx@16 |
5232 //char *v24; // ecx@16 | |
5233 //char *v25; // eax@16 | |
5234 //double v26; // st6@17 | |
5235 //int v27; // esi@17 | |
5236 //double v28; // st6@17 | |
5237 //unsigned int v33; // ecx@18 | |
5238 //char *v34; // eax@19 | |
0 | 5239 //Texture *v45; // edx@23 |
5240 //char *v46; // ecx@23 | |
5241 //char *v47; // eax@23 | |
5242 //double v48; // st6@24 | |
5243 //int v49; // esi@24 | |
5244 //double v50; // st6@24 | |
5245 const char *v53; // [sp-Ch] [bp-20h]@21 | |
5246 //int v54; // [sp-8h] [bp-1Ch]@21 | |
5247 //unsigned int v55; // [sp-4h] [bp-18h]@21 | |
5248 const char *v56; // [sp+0h] [bp-14h]@0 | |
5249 int v57; // [sp+4h] [bp-10h]@0 | |
5250 unsigned int v58; // [sp+8h] [bp-Ch]@0 | |
5251 //LightmapBuilder *v59; // [sp+Ch] [bp-8h]@3 | |
5252 //int a3a; // [sp+10h] [bp-4h]@4 | |
5253 | |
5254 //v8 = this; | |
5255 if (!uNumD3DSceneBegins || uNumVertices < 3) | |
5256 return; | |
5257 | |
5258 //auto a3 = pFace; | |
5259 //auto a6 = uPackedID; | |
5260 //v59 = pGame->pLightmapBuilder; | |
5261 //v9 = v59->std__vector_000004_size; | |
5262 | |
2006 | 5263 int sCorrectedColor = uColor; |
0 | 5264 if (pGame->pLightmapBuilder->std__vector_000004_size) |
2006 | 5265 sCorrectedColor = -1; |
5266 pGame->AlterGamma_BLV(pFace, &sCorrectedColor); | |
0 | 5267 |
792 | 5268 |
5269 if (pFace->uAttributes & FACE_OUTLINED) | |
5270 { | |
5271 int color; | |
5272 if (GetTickCount() % 300 >= 150) | |
2006 | 5273 uColor = sCorrectedColor = 0xFF20FF20; |
5274 else uColor = sCorrectedColor = 0xFF109010; | |
792 | 5275 } |
5276 | |
2155 | 5277 if (byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01_lightmap_related) |
0 | 5278 { |
5279 __debugbreak(); | |
5280 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false)); | |
186 | 5281 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
1072 | 5282 for (uint i = 0; i < uNumVertices; ++i) |
5283 { | |
5284 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; | |
5285 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
5286 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); | |
5287 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x; | |
2006 | 5288 d3d_vertex_buffer[i].diffuse = sCorrectedColor; |
1072 | 5289 d3d_vertex_buffer[i].specular = 0; |
5290 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth; | |
5291 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight; | |
5292 } | |
5293 | |
186 | 5294 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 5295 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); |
5296 ErrD3D(pRenderD3D->pDevice->DrawPrimitive( | |
5297 D3DPT_TRIANGLEFAN, | |
5298 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5299 d3d_vertex_buffer, |
0 | 5300 uNumVertices, |
5301 28)); | |
1394 | 5302 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/); |
0 | 5303 } |
5304 else | |
5305 { | |
5306 if (!pGame->pLightmapBuilder->std__vector_000004_size || | |
5307 byte_4D864C && pGame->uFlags & 2) | |
5308 { | |
5309 for (uint i = 0; i < uNumVertices; ++i) | |
5310 { | |
186 | 5311 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; |
5312 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
5313 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); | |
5314 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x; | |
2006 | 5315 d3d_vertex_buffer[i].diffuse = sCorrectedColor; |
186 | 5316 d3d_vertex_buffer[i].specular = 0; |
5317 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth; | |
5318 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight; | |
5319 } | |
5320 | |
5321 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); | |
0 | 5322 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex)); |
5323 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
5324 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5325 d3d_vertex_buffer, |
0 | 5326 uNumVertices, |
5327 28)); | |
5328 } | |
5329 else | |
5330 { | |
595 | 5331 for (uint i = 0; i < uNumVertices; ++i) |
5332 { | |
5333 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX; | |
5334 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY; | |
5335 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894); | |
5336 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x; | |
5337 d3d_vertex_buffer[i].diffuse = uColor; | |
5338 d3d_vertex_buffer[i].specular = 0; | |
5339 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth; | |
5340 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight; | |
5341 } | |
5342 //__debugbreak(); | |
5343 //if ( (signed int)uNumVertices > 0 ) | |
5344 //{ | |
5345 //v23 = pTex; | |
5346 //v24 = (char *)&array_507D30[0].vWorldViewPosition; | |
5347 //v25 = (char *)&d3d_vertex_buffer[0].pos.y; | |
5348 //pTex = (Texture *)uNumVertices; | |
5349 //uint v18; | |
5350 //do | |
5351 //{ | |
5352 //v26 = *(float *)v24 * 0.061758894; | |
5353 //v27 = *((int *)v24 + 3); | |
5354 //*((int *)v25 + 4) = 0; | |
5355 //*((int *)v25 - 1) = v27; | |
5356 //*(int *)v25 = *((int *)v24 + 4); | |
5357 //*((int *)v25 + 3) = uColor; | |
5358 //v25 += 32; | |
5359 //*((float *)v25 - 7) = 1.0 - 1.0 / v26; | |
5360 //v28 = 1.0 / *(float *)v24; | |
5361 //v24 += 48; | |
5362 //v18 = pTex == (Texture *)1; | |
5363 //pTex = (Texture *)((char *)pTex - 1); | |
5364 //*((float *)v25 - 6) = v28; | |
0 | 5365 //a3 = (BLVFace *)v23->uTextureWidth; |
595 | 5366 //*((float *)v25 - 3) = *((float *)v24 - 6) / (double)(signed int)v23->uTextureWidth; |
0 | 5367 //a3 = (BLVFace *)v23->uTextureHeight; |
595 | 5368 //*((float *)v25 - 2) = *((float *)v24 - 5) / (double)(signed int)v23->uTextureHeight; |
5369 //} | |
5370 //while ( !v18 ); | |
5371 //} | |
0 | 5372 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false)); |
186 | 5373 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
0 | 5374 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); |
186 | 5375 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
0 | 5376 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5377 d3d_vertex_buffer, |
0 | 5378 uNumVertices, |
5379 28)); | |
595 | 5380 |
5381 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
1394 | 5382 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/); |
595 | 5383 |
5384 for (uint i = 0; i < uNumVertices; ++i) | |
2006 | 5385 d3d_vertex_buffer[i].diffuse = sCorrectedColor; |
595 | 5386 /*v33 = uNumVertices; |
0 | 5387 if ( (signed int)uNumVertices > 0 ) |
5388 { | |
186 | 5389 v34 = (char *)&d3d_vertex_buffer[0].diffuse; |
0 | 5390 do |
5391 { | |
5392 *(int *)v34 = uCorrectedColor; | |
5393 v34 += 32; | |
5394 --v33; | |
5395 } | |
5396 while ( v33 ); | |
595 | 5397 }*/ |
0 | 5398 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex)); |
186 | 5399 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP)); |
5400 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
5401 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
5402 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO)); | |
5403 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR)); | |
5404 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
0 | 5405 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
5406 d3d_vertex_buffer, |
0 | 5407 uNumVertices, |
5408 28)); | |
186 | 5409 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
5410 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
5411 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
0 | 5412 } |
5413 } | |
5414 } | |
5415 // 4D864C: using guessed type char byte_4D864C; | |
5416 | |
5417 //----- (004A43B1) -------------------------------------------------------- | |
717 | 5418 void Render::DrawBillboard_Indoor(RenderBillboardTransform_local0 *pSoftBillboard, Sprite *pSprite, int dimming_level) |
5419 { | |
5420 //RenderBillboardTransform_local0 *v4; // ebx@2 | |
5421 //double v5; // st7@2 | |
5422 //float v6; // ST08_4@2 | |
0 | 5423 unsigned int v7; // eax@2 |
717 | 5424 //int v8; // ecx@2 |
5425 //unsigned int v9; // esi@2 | |
5426 //Sprite *v10; // edi@5 | |
0 | 5427 signed int v11; // eax@9 |
5428 signed int v12; // eax@9 | |
717 | 5429 //double v13; // st7@12 |
5430 //double v14; // st6@12 | |
0 | 5431 double v15; // st5@12 |
5432 double v16; // st4@12 | |
5433 double v17; // st3@12 | |
5434 double v18; // st2@12 | |
5435 int v19; // ecx@14 | |
5436 double v20; // st3@14 | |
5437 int v21; // ecx@16 | |
5438 double v22; // st3@16 | |
717 | 5439 //IDirect3DTexture2 *v23; // eax@18 |
5440 //signed int v24; // [sp+18h] [bp-18h]@5 | |
5441 //signed int v25; // [sp+1Ch] [bp-14h]@5 | |
5442 //Render *v26; // [sp+20h] [bp-10h]@1 | |
0 | 5443 float v27; // [sp+24h] [bp-Ch]@5 |
5444 int v28; // [sp+28h] [bp-8h]@2 | |
5445 float v29; // [sp+2Ch] [bp-4h]@5 | |
717 | 5446 //float pSoftBillboarda; // [sp+38h] [bp+8h]@2 |
0 | 5447 float v31; // [sp+3Ch] [bp+Ch]@5 |
717 | 5448 //float v32; // [sp+3Ch] [bp+Ch]@12 |
0 | 5449 float a1; // [sp+40h] [bp+10h]@5 |
5450 | |
717 | 5451 //v26 = this; |
0 | 5452 if ( this->uNumD3DSceneBegins ) |
5453 { | |
717 | 5454 //v4 = pSoftBillboard; |
5455 //v5 = (double)pSoftBillboard->zbuffer_depth; | |
5456 //pSoftBillboarda = pSoftBillboard->zbuffer_depth; | |
5457 //v6 = pSoftBillboard->zbuffer_depth; | |
5458 v7 = Billboard_ProbablyAddToListAndSortByZOrder(pSoftBillboard->zbuffer_depth); | |
5459 //v8 = dimming_level; | |
5460 //v9 = v7; | |
657 | 5461 v28 = dimming_level & 0xFF000000; |
5462 if ( dimming_level & 0xFF000000 ) | |
2155 | 5463 pBillboardRenderListD3D[v7].opacity = RenderBillboardD3D::Opaque_3; |
0 | 5464 else |
2155 | 5465 pBillboardRenderListD3D[v7].opacity = RenderBillboardD3D::Transparent; |
717 | 5466 //v10 = a3; |
5467 pBillboardRenderListD3D[v7].field_90 = pSoftBillboard->field_44; | |
5468 pBillboardRenderListD3D[v7].sZValue = pSoftBillboard->sZValue; | |
2002 | 5469 pBillboardRenderListD3D[v7].sParentBillboardID = pSoftBillboard->sParentBillboardID; |
717 | 5470 //v25 = pSoftBillboard->uScreenSpaceX; |
5471 //v24 = pSoftBillboard->uScreenSpaceY; | |
5472 a1 = (pSoftBillboard->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_x_scaler_packedfloat); | |
5473 v29 = (pSoftBillboard->_screenspace_y_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_y_scaler_packedfloat); | |
5474 v31 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX); | |
5475 v27 = (double)(pSprite->uBufferHeight - pSprite->uAreaY); | |
5476 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5477 v31 = v31 * -1.0; |
2006 | 5478 if ( pSoftBillboard->sTintColor && this->bTinting ) |
717 | 5479 { |
5480 v11 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0); | |
2006 | 5481 v12 = BlendColors(pSoftBillboard->sTintColor, v11); |
0 | 5482 if ( v28 ) |
5483 v12 = (unsigned int)((char *)&array_77EC08[1852].pEdgeList1[17] + 3) & ((unsigned int)v12 >> 1); | |
5484 } | |
5485 else | |
5486 { | |
717 | 5487 v12 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0); |
5488 } | |
5489 //v13 = (double)v25; | |
1390 | 5490 pBillboardRenderListD3D[v7].pQuads[0].specular = 0; |
5491 pBillboardRenderListD3D[v7].pQuads[0].diffuse = v12; | |
5492 pBillboardRenderListD3D[v7].pQuads[0].pos.x = pSoftBillboard->uScreenSpaceX - v31 * a1; | |
717 | 5493 //v14 = (double)v24; |
5494 //v32 = v14; | |
1390 | 5495 pBillboardRenderListD3D[v7].pQuads[0].pos.y = pSoftBillboard->uScreenSpaceY - v27 * v29; |
717 | 5496 v15 = 1.0 - 1.0 / (pSoftBillboard->zbuffer_depth * 0.061758894); |
1390 | 5497 pBillboardRenderListD3D[v7].pQuads[0].pos.z = v15; |
717 | 5498 v16 = 1.0 / pSoftBillboard->zbuffer_depth; |
1390 | 5499 pBillboardRenderListD3D[v7].pQuads[0].rhw = 1.0 / pSoftBillboard->zbuffer_depth; |
5500 pBillboardRenderListD3D[v7].pQuads[0].texcoord.x = 0.0; | |
5501 pBillboardRenderListD3D[v7].pQuads[0].texcoord.y = 0.0; | |
717 | 5502 v17 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX); |
5503 v18 = (double)(pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight); | |
5504 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5505 v17 = v17 * -1.0; |
1390 | 5506 pBillboardRenderListD3D[v7].pQuads[1].specular = 0; |
5507 pBillboardRenderListD3D[v7].pQuads[1].diffuse = v12; | |
5508 pBillboardRenderListD3D[v7].pQuads[1].pos.x = pSoftBillboard->uScreenSpaceX - v17 * a1; | |
5509 pBillboardRenderListD3D[v7].pQuads[1].pos.y = pSoftBillboard->uScreenSpaceY - v18 * v29; | |
5510 pBillboardRenderListD3D[v7].pQuads[1].pos.z = v15; | |
5511 pBillboardRenderListD3D[v7].pQuads[1].rhw = v16; | |
5512 pBillboardRenderListD3D[v7].pQuads[1].texcoord.x = 0.0; | |
5513 pBillboardRenderListD3D[v7].pQuads[1].texcoord.y = 1.0; | |
717 | 5514 v19 = pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight; |
5515 v20 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth); | |
5516 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5517 v20 = v20 * -1.0; |
1390 | 5518 pBillboardRenderListD3D[v7].pQuads[2].specular = 0; |
5519 pBillboardRenderListD3D[v7].pQuads[2].diffuse = v12; | |
5520 pBillboardRenderListD3D[v7].pQuads[2].pos.x = v20 * a1 + pSoftBillboard->uScreenSpaceX; | |
5521 pBillboardRenderListD3D[v7].pQuads[2].pos.y = pSoftBillboard->uScreenSpaceY - (double)v19 * v29; | |
5522 pBillboardRenderListD3D[v7].pQuads[2].pos.z = v15; | |
5523 pBillboardRenderListD3D[v7].pQuads[2].rhw = v16; | |
5524 pBillboardRenderListD3D[v7].pQuads[2].texcoord.x = 1.0; | |
5525 pBillboardRenderListD3D[v7].pQuads[2].texcoord.y = 1.0; | |
717 | 5526 v21 = pSprite->uBufferHeight - pSprite->uAreaY; |
5527 v22 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth); | |
5528 if ( pSoftBillboard->uFlags & 4 ) | |
0 | 5529 v22 = v22 * -1.0; |
1390 | 5530 pBillboardRenderListD3D[v7].pQuads[3].specular = 0; |
5531 pBillboardRenderListD3D[v7].pQuads[3].diffuse = v12; | |
5532 pBillboardRenderListD3D[v7].pQuads[3].pos.x = v22 * a1 + pSoftBillboard->uScreenSpaceX; | |
5533 pBillboardRenderListD3D[v7].pQuads[3].pos.y = pSoftBillboard->uScreenSpaceY - (double)v21 * v29; | |
5534 pBillboardRenderListD3D[v7].pQuads[3].pos.z = v15; | |
5535 pBillboardRenderListD3D[v7].pQuads[3].rhw = v16; | |
5536 pBillboardRenderListD3D[v7].pQuads[3].texcoord.x = 1.0; | |
5537 pBillboardRenderListD3D[v7].pQuads[3].texcoord.y = 0.0; | |
717 | 5538 //v23 = pSprite->pTexture; |
5539 pBillboardRenderListD3D[v7].uNumVertices = 4; | |
5540 pBillboardRenderListD3D[v7].z_order = pSoftBillboard->zbuffer_depth; | |
5541 pBillboardRenderListD3D[v7].pTexture = pSprite->pTexture; | |
0 | 5542 } |
5543 } | |
5544 | |
5545 //----- (004A354F) -------------------------------------------------------- | |
5546 void Render::MakeParticleBillboardAndPush_BLV(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle) | |
5547 { | |
743 | 5548 //double v5; // st7@3 |
5549 //float v6; // ST20_4@3 | |
5550 //float v7; // ST00_4@3 | |
0 | 5551 unsigned int v8; // esi@3 |
743 | 5552 //int v9; // eax@3 |
5553 //int v10; // ebx@3 | |
0 | 5554 float v11; // ST28_4@3 |
743 | 5555 //double v12; // st7@3 |
5556 //float v13; // ST24_4@3 | |
5557 //double v14; // st6@3 | |
5558 //float v15; // ST1C_4@3 | |
0 | 5559 float v16; // ST2C_4@3 |
5560 float v17; // ST30_4@3 | |
5561 signed int v18; // ST18_4@3 | |
5562 signed int v19; // ST14_4@3 | |
5563 signed int v20; // ST10_4@3 | |
5564 signed int v21; // eax@3 | |
5565 double v22; // st6@3 | |
5566 float v23; // ST2C_4@3 | |
5567 float v24; // ST30_4@3 | |
5568 signed int v25; // ST10_4@3 | |
5569 signed int v26; // ST14_4@3 | |
5570 signed int v27; // ST18_4@3 | |
5571 signed int v28; // eax@3 | |
5572 double v29; // st6@3 | |
5573 float v30; // ecx@3 | |
5574 float v31; // ST2C_4@3 | |
5575 float v32; // ST30_4@3 | |
5576 signed int v33; // ST10_4@3 | |
5577 signed int v34; // ST14_4@3 | |
5578 signed int v35; // ST18_4@3 | |
5579 signed int v36; // eax@3 | |
5580 float v37; // ecx@3 | |
5581 double v38; // st6@3 | |
5582 float v39; // ST2C_4@3 | |
5583 float v40; // ST30_4@3 | |
5584 signed int v41; // ST10_4@3 | |
5585 signed int v42; // ST14_4@3 | |
5586 signed int v43; // ST18_4@3 | |
5587 signed int v44; // eax@3 | |
5588 double v45; // st6@3 | |
5589 float v46; // eax@3 | |
5590 | |
5591 if ( this->uNumD3DSceneBegins ) | |
5592 { | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5593 if (a2->zbuffer_depth) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5594 { |
743 | 5595 //v5 = (double)a2->zbuffer_depth; |
5596 //v6 = v5; | |
5597 //v7 = v5; | |
5598 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth); | |
2155 | 5599 pBillboardRenderListD3D[v8].opacity = RenderBillboardD3D::Opaque_1; |
0 | 5600 pBillboardRenderListD3D[v8].field_90 = a2->field_44; |
5601 pBillboardRenderListD3D[v8].sZValue = a2->sZValue; | |
2002 | 5602 pBillboardRenderListD3D[v8].sParentBillboardID = a2->sParentBillboardID; |
743 | 5603 //v9 = a2->uScreenSpaceX; |
5604 //v10 = a2->uScreenSpaceY; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5605 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat); |
743 | 5606 //v12 = (double) a2->uScreenSpaceX; |
5607 //v13 = v12; | |
5608 //v14 = (double)(a2->uScreenSpaceY - 12); | |
5609 //v15 = v14; | |
5610 v16 = (double)( a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX; | |
5611 v17 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12); | |
323 | 5612 v18 = stru_5C6E00->Cos(angle); |
5613 v19 = stru_5C6E00->Sin(angle); | |
5614 v20 = stru_5C6E00->Sin(angle); | |
5615 v21 = stru_5C6E00->Cos(angle); | |
1390 | 5616 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022 |
0 | 5617 + (double)(v18 >> 16)) |
5618 * v16 | |
5619 - ((double)(unsigned __int16)v19 * 0.000015259022 | |
5620 + (double)(v19 >> 16)) | |
5621 * v17) | |
743 | 5622 * v11 + (double) a2->uScreenSpaceX; |
0 | 5623 v22 = (((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v17 |
5624 + ((double)(unsigned __int16)v20 * 0.000015259022 + (double)(v20 >> 16)) * v16 | |
5625 - 12.0) | |
5626 * v11 | |
5627 + (double)a2->uScreenSpaceY; | |
1390 | 5628 pBillboardRenderListD3D[v8].pQuads[0].specular = 0; |
5629 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse; | |
5630 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v22; | |
5631 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 0.061758894); | |
5632 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth; | |
5633 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0; | |
5634 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0; | |
743 | 5635 v31 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX; |
5636 v32 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12); | |
323 | 5637 v25 = stru_5C6E00->Cos(angle); |
5638 v26 = stru_5C6E00->Sin(angle); | |
5639 v27 = stru_5C6E00->Sin(angle); | |
5640 v28 = stru_5C6E00->Cos(angle); | |
1390 | 5641 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v25 * 0.000015259022 |
0 | 5642 + (double)(v25 >> 16)) |
740 | 5643 * v31 |
0 | 5644 - ((double)(unsigned __int16)v26 * 0.000015259022 |
5645 + (double)(v26 >> 16)) | |
740 | 5646 * v32) |
743 | 5647 * v11 + (double) a2->uScreenSpaceX; |
740 | 5648 v29 = (((double)(unsigned __int16)v28 * 0.000015259022 + (double)(v28 >> 16)) * v32 |
5649 + ((double)(unsigned __int16)v27 * 0.000015259022 + (double)(v27 >> 16)) * v31 | |
0 | 5650 - 12.0) |
5651 * v11 | |
5652 + (double)a2->uScreenSpaceY; | |
1390 | 5653 pBillboardRenderListD3D[v8].pQuads[1].pos.z = pRenderer->pBillboardRenderListD3D[v8].pQuads[0].pos.z; |
5654 v30 = pBillboardRenderListD3D[v8].pQuads[0].rhw; | |
5655 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v29; | |
5656 pBillboardRenderListD3D[v8].pQuads[1].specular = 0; | |
5657 pBillboardRenderListD3D[v8].pQuads[1].rhw = v30; | |
5658 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse; | |
5659 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0; | |
5660 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0; | |
743 | 5661 v23 = (double)(a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX; |
5662 v24 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12); | |
323 | 5663 v33 = stru_5C6E00->Cos(angle); |
5664 v34 = stru_5C6E00->Sin(angle); | |
5665 v35 = stru_5C6E00->Sin(angle); | |
5666 v36 = stru_5C6E00->Cos(angle); | |
1390 | 5667 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v33 * 0.000015259022 |
0 | 5668 + (double)(v33 >> 16)) |
740 | 5669 * v23 |
0 | 5670 - ((double)(unsigned __int16)v34 * 0.000015259022 |
5671 + (double)(v34 >> 16)) | |
740 | 5672 * v24) |
743 | 5673 * v11 + (double) a2->uScreenSpaceX; |
1390 | 5674 v37 = pBillboardRenderListD3D[v8].pQuads[0].pos.z; |
740 | 5675 v38 = (((double)(unsigned __int16)v36 * 0.000015259022 + (double)(v36 >> 16)) * v24 |
5676 + ((double)(unsigned __int16)v35 * 0.000015259022 + (double)(v35 >> 16)) * v23 | |
0 | 5677 - 12.0) |
5678 * v11 | |
5679 + (double)a2->uScreenSpaceY; | |
1390 | 5680 pBillboardRenderListD3D[v8].pQuads[2].specular = 0; |
5681 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v37; | |
5682 pBillboardRenderListD3D[v8].pQuads[2].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw; | |
5683 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse; | |
5684 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v38; | |
5685 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0; | |
5686 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0; | |
743 | 5687 v39 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX; |
5688 v40 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12); | |
323 | 5689 v41 = stru_5C6E00->Cos(angle); |
5690 v42 = stru_5C6E00->Sin(angle); | |
5691 v43 = stru_5C6E00->Sin(angle); | |
5692 v44 = stru_5C6E00->Cos(angle); | |
1390 | 5693 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v41 * 0.000015259022 |
0 | 5694 + (double)(v41 >> 16)) |
5695 * v39 | |
5696 - ((double)(unsigned __int16)v42 * 0.000015259022 | |
5697 + (double)(v42 >> 16)) | |
5698 * v40) | |
743 | 5699 * v11 + (double) a2->uScreenSpaceX; |
0 | 5700 v45 = (((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40 |
5701 + ((double)(unsigned __int16)v43 * 0.000015259022 + (double)(v43 >> 16)) * v39 | |
5702 - 12.0) | |
5703 * v11 | |
5704 + (double)a2->uScreenSpaceY; | |
1390 | 5705 v46 = pBillboardRenderListD3D[v8].pQuads[0].pos.z; |
5706 pBillboardRenderListD3D[v8].pQuads[3].specular = 0; | |
5707 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v46; | |
5708 pBillboardRenderListD3D[v8].pQuads[3].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw; | |
5709 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse; | |
0 | 5710 pBillboardRenderListD3D[v8].pTexture = a3; |
743 | 5711 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth; |
0 | 5712 pBillboardRenderListD3D[v8].uNumVertices = 4; |
1390 | 5713 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v45; |
5714 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0; | |
5715 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0; | |
0 | 5716 } |
5717 } | |
5718 } | |
5719 | |
5720 //----- (004A3AD9) -------------------------------------------------------- | |
5721 void Render::MakeParticleBillboardAndPush_ODM(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle) | |
5722 { | |
5723 double v5; // st7@2 | |
5724 float v6; // ST28_4@2 | |
5725 float v7; // ST00_4@2 | |
5726 unsigned int v8; // esi@2 | |
5727 int v9; // eax@2 | |
5728 int v10; // ebx@2 | |
5729 float v11; // ST34_4@2 | |
5730 double v12; // st7@2 | |
5731 float v13; // ST2C_4@2 | |
5732 double v14; // st6@2 | |
5733 float v15; // ST24_4@2 | |
5734 float v16; // ST38_4@2 | |
5735 float v17; // ST3C_4@2 | |
5736 signed int v18; // ST1C_4@2 | |
5737 int v19; // ST30_4@2 | |
5738 signed int v20; // ST20_4@2 | |
5739 signed int v21; // ST18_4@2 | |
5740 signed int v22; // eax@2 | |
5741 double v23; // st6@2 | |
5742 float v24; // ST20_4@2 | |
5743 float v25; // ST1C_4@2 | |
5744 float v26; // ST38_4@2 | |
5745 float v27; // ST3C_4@2 | |
5746 signed int v28; // ST18_4@2 | |
5747 signed int v29; // ST14_4@2 | |
5748 signed int v30; // ST10_4@2 | |
5749 signed int v31; // eax@2 | |
5750 double v32; // st6@2 | |
5751 float v33; // ST38_4@2 | |
5752 float v34; // ST3C_4@2 | |
5753 signed int v35; // ST10_4@2 | |
5754 signed int v36; // ST14_4@2 | |
5755 signed int v37; // ST18_4@2 | |
5756 signed int v38; // eax@2 | |
5757 double v39; // st6@2 | |
5758 float v40; // ST38_4@2 | |
5759 float v41; // ST3C_4@2 | |
5760 signed int v42; // ST10_4@2 | |
5761 signed int v43; // ST14_4@2 | |
5762 signed int v44; // ST18_4@2 | |
5763 signed int v45; // eax@2 | |
5764 double v46; // st6@2 | |
5765 | |
5766 if ( this->uNumD3DSceneBegins ) | |
5767 { | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5768 v5 = (double)a2->zbuffer_depth; |
0 | 5769 v6 = v5; |
5770 v7 = v5; | |
5771 v8 = Billboard_ProbablyAddToListAndSortByZOrder(LODWORD(v7)); | |
2155 | 5772 pBillboardRenderListD3D[v8].opacity = RenderBillboardD3D::Opaque_1; |
0 | 5773 pBillboardRenderListD3D[v8].field_90 = a2->field_44; |
5774 pBillboardRenderListD3D[v8].sZValue = a2->sZValue; | |
2002 | 5775 pBillboardRenderListD3D[v8].sParentBillboardID = a2->sParentBillboardID; |
0 | 5776 v9 = a2->uScreenSpaceX; |
5777 v10 = a2->uScreenSpaceY; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5778 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat); |
0 | 5779 v12 = (double)v9; |
5780 v13 = v12; | |
5781 v14 = (double)(v10 - 12); | |
5782 v15 = v14; | |
5783 v16 = (double)(v9 - 12) - v12; | |
5784 v17 = (double)(v10 - 25) - v14; | |
323 | 5785 v18 = stru_5C6E00->Cos(angle); |
0 | 5786 v19 = angle - stru_5C6E00->uIntegerHalfPi; |
323 | 5787 v20 = stru_5C6E00->Sin(angle); |
5788 v21 = stru_5C6E00->Sin(angle); | |
5789 v22 = stru_5C6E00->Cos(angle); | |
1390 | 5790 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022 |
0 | 5791 + (double)(v18 >> 16)) |
5792 * v16 | |
5793 - ((double)(unsigned __int16)v20 * 0.000015259022 | |
5794 + (double)(v20 >> 16)) | |
5795 * v17) | |
5796 * v11 + v13; | |
5797 v23 = (((double)(unsigned __int16)v22 * 0.000015259022 + (double)(v22 >> 16)) * v17 | |
5798 + ((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v16 | |
5799 - 12.0) | |
5800 * v11 | |
5801 + (double)a2->uScreenSpaceY; | |
1390 | 5802 pBillboardRenderListD3D[v8].pQuads[0].specular = 0; |
5803 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse; | |
5804 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v23; | |
1637 | 5805 v24 = 1.0 - 1.0 / (v6 * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 5806 pBillboardRenderListD3D[v8].pQuads[0].pos.z = v24; |
0 | 5807 v25 = 1.0 / v6; |
1390 | 5808 pBillboardRenderListD3D[v8].pQuads[0].rhw = v25; |
5809 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0; | |
5810 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0; | |
0 | 5811 v26 = (double)(a2->uScreenSpaceX - 12) - v13; |
5812 v27 = (double)a2->uScreenSpaceY - v15; | |
323 | 5813 v28 = stru_5C6E00->Cos(angle); |
5814 v29 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5815 v30 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5816 v31 = stru_5C6E00->Cos(angle); | |
1390 | 5817 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v28 * 0.000015259022 |
0 | 5818 + (double)(v28 >> 16)) |
5819 * v26 | |
5820 - ((double)(unsigned __int16)v29 * 0.000015259022 | |
5821 + (double)(v29 >> 16)) | |
5822 * v27) | |
5823 * v11 + v13; | |
5824 v32 = (((double)(unsigned __int16)v31 * 0.000015259022 + (double)(v31 >> 16)) * v27 | |
5825 + ((double)(unsigned __int16)v30 * 0.000015259022 + (double)(v30 >> 16)) * v26 | |
5826 - 12.0) | |
5827 * v11 | |
5828 + (double)a2->uScreenSpaceY; | |
1390 | 5829 pBillboardRenderListD3D[v8].pQuads[1].pos.z = v24; |
5830 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v32; | |
5831 pBillboardRenderListD3D[v8].pQuads[1].specular = 0; | |
5832 pBillboardRenderListD3D[v8].pQuads[1].rhw = v25; | |
5833 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse; | |
5834 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0; | |
5835 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0; | |
0 | 5836 v33 = (double)(a2->uScreenSpaceX + 12) - v13; |
5837 v34 = (double)a2->uScreenSpaceY - v15; | |
323 | 5838 v35 = stru_5C6E00->Cos(angle); |
5839 v36 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5840 v37 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5841 v38 = stru_5C6E00->Cos(angle); | |
1390 | 5842 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v35 * 0.000015259022 |
0 | 5843 + (double)(v35 >> 16)) |
5844 * v33 | |
5845 - ((double)(unsigned __int16)v36 * 0.000015259022 | |
5846 + (double)(v36 >> 16)) | |
5847 * v34) | |
5848 * v11 + v13; | |
5849 v39 = (((double)(unsigned __int16)v38 * 0.000015259022 + (double)(v38 >> 16)) * v34 | |
5850 + ((double)(unsigned __int16)v37 * 0.000015259022 + (double)(v37 >> 16)) * v33 | |
5851 - 12.0) | |
5852 * v11 | |
5853 + (double)a2->uScreenSpaceY; | |
1390 | 5854 pBillboardRenderListD3D[v8].pQuads[2].specular = 0; |
5855 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v24; | |
5856 pBillboardRenderListD3D[v8].pQuads[2].rhw = v25; | |
5857 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse; | |
5858 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v39; | |
5859 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0; | |
5860 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0; | |
0 | 5861 v40 = (double)(a2->uScreenSpaceX + 12) - v13; |
5862 v41 = (double)(a2->uScreenSpaceY - 25) - v15; | |
323 | 5863 v42 = stru_5C6E00->Cos(angle); |
5864 v43 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5865 v44 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi); | |
5866 v45 = stru_5C6E00->Cos(angle); | |
1390 | 5867 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v42 * 0.000015259022 |
0 | 5868 + (double)(v42 >> 16)) |
5869 * v40 | |
5870 - ((double)(unsigned __int16)v43 * 0.000015259022 | |
5871 + (double)(v43 >> 16)) | |
5872 * v41) | |
5873 * v11 + v13; | |
5874 v46 = (((double)(unsigned __int16)v45 * 0.000015259022 + (double)(v45 >> 16)) * v41 | |
5875 + ((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40 | |
5876 - 12.0) | |
5877 * v11 | |
5878 + (double)a2->uScreenSpaceY; | |
1390 | 5879 pBillboardRenderListD3D[v8].pQuads[3].specular = 0; |
5880 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v24; | |
5881 pBillboardRenderListD3D[v8].pQuads[3].rhw = v25; | |
5882 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse; | |
0 | 5883 pBillboardRenderListD3D[v8].pTexture = a3; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5884 pBillboardRenderListD3D[v8].z_order = v6; |
0 | 5885 pBillboardRenderListD3D[v8].uNumVertices = 4; |
1390 | 5886 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v46; |
5887 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0; | |
5888 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0; | |
0 | 5889 } |
5890 } | |
5891 | |
5892 //----- (004A4023) -------------------------------------------------------- | |
657 | 5893 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
|
5894 { |
0 | 5895 unsigned int v8; // esi@2 |
5896 double v14; // st6@14 | |
5897 double v15; // st5@14 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5898 //unsigned int v16; // ecx@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5899 //double v17; // st7@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5900 //double v18; // st5@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5901 //double v19; // st4@16 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5902 //double v20; // st5@18 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5903 //double v21; // st4@18 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5904 //signed int v23; // [sp+18h] [bp-18h]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5905 //signed int v24; // [sp+1Ch] [bp-14h]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5906 //float v26; // [sp+20h] [bp-10h]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5907 //float v27; // [sp+20h] [bp-10h]@12 |
0 | 5908 float v29; // [sp+28h] [bp-8h]@5 |
5909 float v30; // [sp+2Ch] [bp-4h]@5 | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5910 //float pSpritea; // [sp+3Ch] [bp+Ch]@5 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5911 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5912 if (!uNumD3DSceneBegins) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5913 return; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5914 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5915 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5916 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5917 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
|
5918 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
|
5919 |
657 | 5920 unsigned int diffuse = ::GetActorTintColor(dimming_level, 0, a2->zbuffer_depth, 0, pBillboard); |
2006 | 5921 if (a2->sTintColor & 0x00FFFFFF && bTinting) |
5922 { | |
5923 diffuse = BlendColors(a2->sTintColor, diffuse); | |
5924 if (a2->sTintColor & 0xFF000000) | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5925 diffuse = 0x007F7F7F & ((unsigned int)diffuse >> 1); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5926 } |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5927 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5928 unsigned int specular = 0; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5929 if (bUsingSpecular) |
2193
4842f58715ea
sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents:
2182
diff
changeset
|
5930 specular = sub_47C3D7_get_fog_specular(0, 0, a2->zbuffer_depth); |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5931 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5932 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5933 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5934 if (a2->uFlags & 4) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5935 v14 *= -1.0; |
1390 | 5936 pBillboardRenderListD3D[v8].pQuads[0].diffuse = diffuse; |
5937 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (double)a2->uScreenSpaceX - v14 * v30; | |
5938 pBillboardRenderListD3D[v8].pQuads[0].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 5939 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 5940 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth; |
5941 pBillboardRenderListD3D[v8].pQuads[0].specular = specular; | |
5942 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0; | |
5943 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5944 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5945 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5946 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5947 if ( a2->uFlags & 4 ) |
0 | 5948 v14 = v14 * -1.0; |
1390 | 5949 pBillboardRenderListD3D[v8].pQuads[1].specular = specular; |
5950 pBillboardRenderListD3D[v8].pQuads[1].diffuse = diffuse; | |
5951 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (double)a2->uScreenSpaceX - v14 * v30; | |
5952 pBillboardRenderListD3D[v8].pQuads[1].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 5953 pBillboardRenderListD3D[v8].pQuads[1].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 5954 pBillboardRenderListD3D[v8].pQuads[1].rhw = 1.0 / a2->zbuffer_depth; |
5955 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0; | |
5956 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5957 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5958 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
|
5959 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5960 if ( a2->uFlags & 4 ) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5961 v14 *= -1.0; |
1390 | 5962 pBillboardRenderListD3D[v8].pQuads[2].diffuse = diffuse; |
5963 pBillboardRenderListD3D[v8].pQuads[2].specular = specular; | |
5964 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (double)a2->uScreenSpaceX + v14 * v30; | |
5965 pBillboardRenderListD3D[v8].pQuads[2].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 5966 pBillboardRenderListD3D[v8].pQuads[2].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 5967 pBillboardRenderListD3D[v8].pQuads[2].rhw = 1.0 / a2->zbuffer_depth; |
5968 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0; | |
5969 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5970 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5971 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
|
5972 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5973 if ( a2->uFlags & 4 ) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5974 v14 *= -1.0; |
1390 | 5975 pBillboardRenderListD3D[v8].pQuads[3].diffuse = diffuse; |
5976 pBillboardRenderListD3D[v8].pQuads[3].specular = specular; | |
5977 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (double)a2->uScreenSpaceX + v14 * v30; | |
5978 pBillboardRenderListD3D[v8].pQuads[3].pos.y = (double)a2->uScreenSpaceY - v15 * v29; | |
1637 | 5979 pBillboardRenderListD3D[v8].pQuads[3].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist); |
1390 | 5980 pBillboardRenderListD3D[v8].pQuads[3].rhw = 1.0 / a2->zbuffer_depth; |
5981 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0; | |
5982 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5983 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5984 pBillboardRenderListD3D[v8].uNumVertices = 4; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5985 pBillboardRenderListD3D[v8].pTexture = pSprite->pTexture; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5986 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5987 pBillboardRenderListD3D[v8].field_90 = a2->field_44; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5988 pBillboardRenderListD3D[v8].sZValue = a2->sZValue; |
2002 | 5989 pBillboardRenderListD3D[v8].sParentBillboardID = a2->sParentBillboardID; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5990 |
2006 | 5991 if (a2->sTintColor & 0xFF000000) |
2155 | 5992 pBillboardRenderListD3D[v8].opacity = RenderBillboardD3D::Opaque_3; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
5993 else |
2155 | 5994 pBillboardRenderListD3D[v8].opacity = RenderBillboardD3D::Transparent; |
0 | 5995 } |
5996 | |
5997 | |
5998 //----- (004A49D0) -------------------------------------------------------- | |
5999 void Render::DrawProjectile(float srcX, float srcY, float a3, float a4, float dstX, float dstY, float a7, float a8, IDirect3DTexture2 *a9) | |
6000 { | |
1159 | 6001 int absXDifference; // eax@1 |
6002 int absYDifference; // eax@1 | |
6003 unsigned int smallerabsdiff; // ebx@1 | |
6004 unsigned int largerabsdiff; | |
0 | 6005 double v16; // st7@7 |
6006 double v17; // st7@7 | |
6007 double v18; // st6@7 | |
6008 double v20; // st4@8 | |
6009 double v21; // st4@10 | |
6010 double v22; // st4@10 | |
6011 double v23; // st4@10 | |
6012 double v25; // st4@11 | |
6013 double v26; // st4@13 | |
6014 double v28; // st4@13 | |
6015 RenderVertexD3D3 v29[4]; // [sp+0h] [bp-94h]@7 | |
1159 | 6016 int xDifference; // [sp+88h] [bp-Ch]@1 |
0 | 6017 signed int v32; // [sp+8Ch] [bp-8h]@1 |
1159 | 6018 int yDifference; // [sp+90h] [bp-4h]@1 |
6019 | |
6020 xDifference = bankersRounding(dstX - srcX); | |
6021 yDifference = bankersRounding(dstY - srcY); | |
6022 absYDifference = abs(yDifference); | |
6023 absXDifference = abs(xDifference); | |
6024 smallerabsdiff = min(absXDifference, absYDifference); | |
6025 largerabsdiff = max(absXDifference, absYDifference); | |
6026 v32 = (11 * smallerabsdiff >> 5) + largerabsdiff; | |
0 | 6027 v16 = 1.0 / (double)v32; |
1159 | 6028 v17 = (double)yDifference * v16 * a4; |
6029 v18 = (double)xDifference * v16 * a4; | |
6030 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
6031 { | |
1637 | 6032 v20 = a3 * 1000.0 / (double)pODMRenderParams->shading_dist_mist; |
6033 v25 = a7 * 1000.0 / (double)pODMRenderParams->shading_dist_mist; | |
1159 | 6034 } |
6035 else | |
6036 { | |
6037 v20 = a3 * 0.061758894; | |
6038 v25 = a7 * 0.061758894; | |
6039 } | |
6040 v21 = 1.0 / a3; | |
6041 v22 = (double)yDifference * v16 * a8; | |
6042 v23 = (double)xDifference * v16 * a8; | |
6043 v26 = 1.0 - 1.0 / v25; | |
6044 v28 = 1.0 / a7; | |
0 | 6045 v29[0].pos.x = srcX + v17; |
6046 v29[0].pos.y = srcY - v18; | |
1159 | 6047 v29[0].pos.z = 1.0 - 1.0 / v20; |
6048 v29[0].rhw = v21; | |
0 | 6049 v29[0].diffuse = -1; |
6050 v29[0].specular = 0; | |
6051 v29[0].texcoord.x = 1.0; | |
6052 v29[0].texcoord.y = 0.0; | |
1159 | 6053 |
0 | 6054 v29[1].pos.x = v22 + dstX; |
6055 v29[1].pos.y = dstY - v23; | |
1159 | 6056 v29[1].pos.z = v26; |
6057 v29[1].rhw = v28; | |
0 | 6058 v29[1].diffuse = -16711936; |
6059 v29[1].specular = 0; | |
6060 v29[1].texcoord.x = 1.0; | |
6061 v29[1].texcoord.y = 1.0; | |
1159 | 6062 |
6063 v29[2].pos.x = dstX - v22; | |
6064 v29[2].pos.y = v23 + dstY; | |
6065 v29[2].pos.z = v26; | |
0 | 6066 v29[2].rhw = v28; |
1159 | 6067 v29[2].diffuse = -1; |
6068 v29[2].specular = 0; | |
0 | 6069 v29[2].texcoord.x = 0.0; |
6070 v29[2].texcoord.y = 1.0; | |
1159 | 6071 |
0 | 6072 v29[3].pos.x = srcX - v17; |
6073 v29[3].pos.y = v18 + srcY; | |
1159 | 6074 v29[3].pos.z = v29[0].pos.z; |
6075 v29[3].rhw = v21; | |
6076 v29[3].diffuse = -1; | |
6077 v29[3].specular = 0; | |
0 | 6078 v29[3].texcoord.x = 0.0; |
6079 v29[3].texcoord.y = 0.0; | |
186 | 6080 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); |
6081 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
6082 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
6083 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
6084 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
6085 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
0 | 6086 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, a9)); |
6087 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive( | |
6088 D3DPT_TRIANGLEFAN, | |
6089 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
6090 v29, | |
6091 4, | |
6092 24)); | |
186 | 6093 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); |
6094 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
6095 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
6096 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
6097 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
6098 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); | |
0 | 6099 } |
6100 | |
6101 //----- (004A4CC9) -------------------------------------------------------- | |
1390 | 6102 void Render::_4A4CC9_AddSomeBillboard(stru6_stru1_indoor_sw_billboard *a1, int diffuse) |
6103 { | |
0 | 6104 unsigned int v5; // eax@7 |
6105 char *v7; // edx@8 | |
6106 double v10; // st6@9 | |
6107 double v11; // st6@10 | |
6108 int v12; // ebx@13 | |
1390 | 6109 |
6110 if (a1->uNumVertices < 3) | |
6111 return; | |
6112 | |
6113 float depth = 1000000.0; | |
6114 for (uint i = 0; i < a1->uNumVertices; ++i) | |
6115 { | |
6116 if (a1->field_104[i].z < depth) | |
6117 depth = a1->field_104[i * 4].z; | |
6118 } | |
6119 | |
6120 v5 = Billboard_ProbablyAddToListAndSortByZOrder(depth); | |
6121 pBillboardRenderListD3D[v5].field_90 = 0; | |
2002 | 6122 pBillboardRenderListD3D[v5].sParentBillboardID = -1; |
2155 | 6123 pBillboardRenderListD3D[v5].opacity = RenderBillboardD3D::Opaque_2; |
1390 | 6124 pBillboardRenderListD3D[v5].pTexture = 0; |
6125 pBillboardRenderListD3D[v5].uNumVertices = a1->uNumVertices; | |
6126 pBillboardRenderListD3D[v5].z_order = depth; | |
6127 | |
6128 for (uint i = 0; i < a1->uNumVertices; ++i) | |
6129 { | |
6130 pBillboardRenderListD3D[v5].pQuads[i].pos.x = a1->field_104[i].x; | |
6131 pBillboardRenderListD3D[v5].pQuads[i].pos.y = a1->field_104[i].y; | |
6132 | |
6133 v10 = a1->field_104[i].z; | |
6134 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
6135 v11 = v10 * 0.061758894; | |
6136 else | |
1637 | 6137 v11 = v10 * 1000.0 / (double)pODMRenderParams->shading_dist_mist; |
1390 | 6138 pBillboardRenderListD3D[v5].pQuads[i].pos.z = 1.0 - 1.0 / v11; |
6139 pBillboardRenderListD3D[v5].pQuads[i].rhw = 1.0 / a1->field_104[i].z; | |
6140 | |
6141 if (diffuse & 0xFF000000) | |
6142 v12 = a1->field_104[i].diffuse; | |
6143 else | |
6144 v12 = diffuse; | |
6145 pBillboardRenderListD3D[v5].pQuads[i].diffuse = v12; | |
6146 pBillboardRenderListD3D[v5].pQuads[i].specular = 0; | |
6147 | |
6148 pBillboardRenderListD3D[v5].pQuads[i].texcoord.x = 0.0; | |
6149 pBillboardRenderListD3D[v5].pQuads[i].texcoord.y = 0.0; | |
0 | 6150 } |
6151 } | |
6152 | |
6153 //----- (004A4DE1) -------------------------------------------------------- | |
6154 bool Render::LoadTexture(const char *pName, unsigned int bMipMaps, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture) | |
6155 { | |
6156 HRESULT v12; // eax@14 | |
6157 unsigned __int16 *v13; // ecx@19 | |
6158 unsigned __int16 *v14; // eax@19 | |
6159 DWORD v15; // edx@20 | |
6160 HRESULT v16; // eax@23 | |
6161 stru350 Dst; // [sp+Ch] [bp-F8h]@12 | |
6162 | |
1980 | 6163 HWLTexture* pHWLTexture = pD3DBitmaps.LoadTexture(pName, bMipMaps); |
0 | 6164 if ( pHWLTexture ) |
6165 { | |
6166 bMipMaps = !strncmp(pName, "HDWTR", 5); | |
6167 if ( !pRenderD3D->CreateTexture( | |
6168 pHWLTexture->uWidth, | |
6169 pHWLTexture->uHeight, | |
6170 pOutSurface, | |
6171 pOutTexture, | |
6172 true, | |
6173 bMipMaps, | |
6174 uMinDeviceTextureDim) ) | |
1545 | 6175 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0); |
0 | 6176 //v10 = *pOutSurface; |
6177 //v11 = 0; | |
1578
56cc81b1ed49
workaround for crash on startup
Beri Levi berilevi@gmail.com
parents:
1574
diff
changeset
|
6178 if (bMipMaps) |
0 | 6179 { |
6180 Dst._450DDE(); | |
6181 //v20 = 0; | |
6182 Dst._450DF1(&stru_4EFCBC, &stru_4EFCBC); | |
6183 | |
6184 IDirectDrawSurface4 *pNextSurf = *pOutSurface; | |
6185 while ( 1 ) | |
6186 { | |
6187 DDSCAPS2 v19; | |
6188 memset(&v19, 0, sizeof(DDSCAPS2)); | |
6189 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP; | |
6190 | |
6191 DDSURFACEDESC2 desc; | |
6192 memset(&desc, 0, sizeof(DDSURFACEDESC2)); | |
6193 desc.dwSize = sizeof(DDSURFACEDESC2); | |
6194 | |
168 | 6195 if ( LockSurface_DDraw4(pNextSurf, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) |
0 | 6196 { |
1831 | 6197 Dst.sub_451007_scale_image_bicubic( |
0 | 6198 pHWLTexture->pPixels, |
6199 pHWLTexture->uWidth, | |
6200 pHWLTexture->uHeight, | |
6201 pHWLTexture->uWidth, | |
6202 (unsigned short *)desc.lpSurface, | |
6203 desc.dwWidth, | |
6204 desc.dwHeight, | |
6205 desc.lPitch >> 1, | |
6206 0, | |
1831 | 6207 0); |
0 | 6208 ErrD3D(pNextSurf->Unlock(0)); |
6209 //bMipMaps = 0x4D86ACu; | |
6210 } | |
6211 if (FAILED(pNextSurf->GetAttachedSurface(&v19, &pNextSurf))) | |
6212 break; | |
6213 //v10 = (IDirectDrawSurface4 *)pName; | |
6214 //v11 = 0; | |
6215 } | |
6216 //v20 = -1; | |
6217 //nullsub_1(); | |
6218 } | |
6219 else | |
6220 { | |
6221 DDSCAPS2 v19; | |
6222 memset(&v19, 0, sizeof(DDSCAPS2)); | |
6223 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP; | |
6224 | |
6225 DDSURFACEDESC2 desc; | |
6226 memset(&desc, 0, sizeof(DDSURFACEDESC2)); | |
6227 desc.dwSize = sizeof(DDSURFACEDESC2); | |
6228 | |
168 | 6229 if ( LockSurface_DDraw4(*pOutSurface, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) |
0 | 6230 { |
6231 bMipMaps = 0; | |
6232 v13 = pHWLTexture->pPixels; | |
6233 v14 = (unsigned __int16 *)desc.lpSurface; | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6234 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
|
6235 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6236 for (v15 = 0; v15 < desc.dwWidth; v15++) |
0 | 6237 { |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6238 *v14 = *v13; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6239 ++v14; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6240 ++v13; |
0 | 6241 } |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6242 v14 += (desc.lPitch >> 1) - desc.dwWidth; |
0 | 6243 } |
6244 ErrD3D((*pOutSurface)->Unlock(0)); | |
6245 } | |
6246 } | |
6247 delete [] pHWLTexture->pPixels; | |
6248 delete pHWLTexture; | |
6249 return true; | |
6250 } | |
6251 return false; | |
6252 } | |
6253 | |
6254 //----- (004A5048) -------------------------------------------------------- | |
670 | 6255 bool Render::MoveSpriteToDevice( Sprite *pSprite ) |
6256 { | |
6257 | |
6258 HWLTexture *sprite_texture; // eax@1 | |
0 | 6259 unsigned __int16 *v9; // edx@5 |
6260 LPVOID v10; // eax@5 | |
6261 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4 | |
6262 | |
670 | 6263 sprite_texture = pD3DSprites.LoadTexture(pSprite->pName, pSprite->uPaletteID); |
6264 if ( sprite_texture ) | |
6265 { | |
6266 pSprite->uAreaX = sprite_texture->uAreaX; | |
6267 pSprite->uAreaY = sprite_texture->uAreaY; | |
6268 pSprite->uBufferWidth = sprite_texture->uBufferWidth; | |
6269 pSprite->uBufferHeight = sprite_texture->uBufferHeight; | |
6270 pSprite->uAreaWidth = sprite_texture->uAreaWidth; | |
6271 pSprite->uAreaHeight = sprite_texture->uAreaHeigth; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6272 //v6 = v3->uMinDeviceTextureDim; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
6273 //v7 = v3->pRenderD3D; |
670 | 6274 if (!pRenderD3D->CreateTexture(sprite_texture->uWidth, sprite_texture->uHeight, &pSprite->pTextureSurface, &pSprite->pTexture, 1u, 0, uMinDeviceTextureDim)) |
1545 | 6275 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0); |
0 | 6276 //pSprite = v2->pTextureSurface; |
6277 //pSprite = (Sprite *)pSprite->pName; | |
6278 //v8 = pSprite; | |
670 | 6279 memset(&Dst, 0, sizeof(DDSURFACEDESC2)); |
0 | 6280 Dst.dwSize = 124; |
670 | 6281 if ( LockSurface_DDraw4((IDirectDrawSurface4 *)pSprite->pTextureSurface, &Dst, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) |
6282 { | |
6283 v9 = sprite_texture->pPixels; | |
6284 v10 = Dst.lpSurface; | |
6285 for (int i=0; i<sprite_texture->uHeight; ++i) | |
0 | 6286 { |
670 | 6287 for (int j=0; j<sprite_texture->uWidth/2; ++j) |
6288 { | |
0 | 6289 *(int *)v10 = *(int *)v9; |
6290 v9 += 2; | |
6291 v10 = (char *)v10 + 4; | |
670 | 6292 } |
6293 v10 = (char *)v10+Dst.lPitch-sprite_texture->uWidth*2; | |
0 | 6294 } |
670 | 6295 ErrD3D(pSprite->pTextureSurface->Unlock(0)); |
6296 } | |
6297 free(sprite_texture->pPixels); | |
6298 free(sprite_texture); | |
6299 return true; | |
6300 } | |
6301 return false; | |
0 | 6302 } |
6303 | |
6304 //----- (004A51CB) -------------------------------------------------------- | |
6305 void Render::BeginScene() | |
6306 { | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6307 //Render *v1; // esi@1 |
0 | 6308 unsigned int v2; // eax@1 |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6309 /*int v3; // eax@5 |
0 | 6310 unsigned __int16 **v4; // edi@6 |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6311 char *v5; // ebx@7*/ |
0 | 6312 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4 |
6313 | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6314 //v1 = this; |
0 | 6315 v2 = this->uNumSceneBegins; |
6316 this->uNumSceneBegins = v2 + 1; | |
6317 if ( !v2 ) | |
6318 { | |
6319 if ( this->pRenderD3D ) | |
6320 { | |
2069 | 6321 /*if ( this->bColorKeySupported ) |
0 | 6322 { |
6323 memset(&Dst, 0, 0x7Cu); | |
6324 Dst.dwSize = 124; | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6325 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
|
6326 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6327 this->pTargetSurface = (unsigned __int16 *)Dst.lpSurface; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6328 this->uTargetSurfacePitch = Dst.lPitch >> 1; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6329 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
|
6330 } |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6331 --this->uNumSceneBegins; |
2069 | 6332 }*/ |
0 | 6333 } |
6334 else | |
6335 { | |
6336 if ( !this->pTargetSurface ) | |
6337 { | |
6338 LockRenderSurface((void **)&this->pTargetSurface, &this->uTargetSurfacePitch); | |
2154 | 6339 /*if ( this->pTargetSurface ) |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6340 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6341 this->field_18_locked_pitch = this->uTargetSurfacePitch; |
2154 | 6342 }*/ |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6343 --this->uNumSceneBegins; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6344 } |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6345 } |
0 | 6346 RestoreFrontBuffer(); |
6347 } | |
6348 } | |
6349 | |
6350 //----- (004A527D) -------------------------------------------------------- | |
6351 void Render::EndScene() | |
6352 { | |
1151
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6353 if ( this->uNumSceneBegins ) |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6354 { |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6355 this->uNumSceneBegins--; |
4eca5bb63dc0
some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents:
1117
diff
changeset
|
6356 if ( !this->uNumSceneBegins ) |
0 | 6357 { |
6358 if ( this->pRenderD3D ) | |
6359 { | |
2069 | 6360 /*if ( this->bColorKeySupported ) |
0 | 6361 { |
6362 this->pTargetSurface = 0; | |
6363 this->uTargetSurfacePitch = 0; | |
6364 this->field_18_locked_pitch = 0; | |
6365 ErrD3D(this->pColorKeySurface4->Unlock(0)); | |
2069 | 6366 }*/ |
0 | 6367 } |
6368 else | |
6369 { | |
6370 this->pTargetSurface = 0; | |
6371 this->uTargetSurfacePitch = 0; | |
2154 | 6372 //this->field_18_locked_pitch = 0; |
0 | 6373 UnlockBackBuffer(); |
6374 } | |
6375 } | |
6376 } | |
6377 } | |
6378 | |
2155 | 6379 //----- (004A52F1) -------------------------------------------------------- |
6380 void Render::ScreenFade(unsigned int color, float t) | |
0 | 6381 { |
6382 unsigned int v3; // esi@1 | |
2155 | 6383 //double v4; // st7@2 |
6384 //double v5; // st7@6 | |
0 | 6385 double v6; // st6@6 |
6386 unsigned int v7; // eax@6 | |
6387 double v8; // st5@6 | |
6388 double v9; // st4@6 | |
6389 HRESULT v10; // eax@6 | |
6390 HRESULT v11; // eax@6 | |
6391 unsigned int result; // eax@6 | |
6392 unsigned int v13; // eax@7 | |
6393 unsigned __int16 *v14; // ecx@7 | |
6394 int *v15; // eax@7 | |
6395 unsigned int v16; // ecx@8 | |
6396 __int16 v17; // ax@10 | |
6397 int v18; // esi@10 | |
6398 float v19; // edi@10 | |
6399 void *v20; // esi@10 | |
6400 int v21; // edx@10 | |
6401 int v22; // ecx@11 | |
6402 int v23; // edx@12 | |
6403 __int16 v24; // ax@15 | |
6404 int v25; // esi@15 | |
6405 float v26; // edi@15 | |
6406 char *v27; // esi@15 | |
6407 int v28; // edx@15 | |
6408 int v29; // ecx@16 | |
6409 int v30; // edx@17 | |
6410 int v31; // [sp-Ch] [bp-ACh]@11 | |
6411 int v32; // [sp-Ch] [bp-ACh]@16 | |
6412 const char *v33; // [sp+0h] [bp-A0h]@0 | |
6413 int v34; // [sp+4h] [bp-9Ch]@0 | |
6414 unsigned int v35; // [sp+8h] [bp-98h]@0 | |
6415 RenderVertexD3D3 v36[4]; // [sp+Ch] [bp-94h]@6 | |
6416 unsigned int v37; // [sp+8Ch] [bp-14h]@7 | |
6417 int v38; // [sp+90h] [bp-10h]@7 | |
6418 double v39; // [sp+94h] [bp-Ch]@6 | |
2155 | 6419 int v40; // [sp+9Ch] [bp-4h]@6 |
6420 | |
0 | 6421 v3 = 0; |
1574 | 6422 |
6423 //{ | |
2155 | 6424 if (t > 1.0f) |
6425 t = 1.0f; | |
6426 else if (t < 0.0f) | |
6427 t = 0.0f; | |
6428 | |
6429 v40 = (char)floorf(t * 255.0f + 0.5f); | |
6430 //v5 = (double)(signed int)pViewport->uViewportTL_X; | |
6431 v36[0].pos.x = pViewport->uViewportTL_X; | |
693 | 6432 v6 = (double)(signed int)pViewport->uViewportTL_Y; |
2155 | 6433 v7 = color | (v40 << 24); |
6434 //this_ = pViewport->uViewportBR_Y + 1; | |
0 | 6435 v36[0].specular = 0; |
6436 v36[0].pos.y = v6; | |
6437 v36[0].diffuse = v7; | |
6438 v36[1].diffuse = v7; | |
6439 v36[0].pos.z = 0.0; | |
6440 v36[2].diffuse = v7; | |
6441 v36[3].diffuse = v7; | |
6442 v36[0].rhw = 1.0; | |
6443 v36[1].specular = 0; | |
6444 v36[0].texcoord.x = 0.0; | |
6445 v36[2].specular = 0; | |
6446 v36[3].specular = 0; | |
6447 v36[0].texcoord.y = 0.0; | |
2155 | 6448 v36[1].pos.x = pViewport->uViewportTL_X; |
693 | 6449 v8 = (double)(pViewport->uViewportBR_Y + 1); |
0 | 6450 v36[1].pos.y = v8; |
6451 v36[1].pos.z = 0.0; | |
6452 v36[1].rhw = 1.0; | |
6453 v36[1].texcoord.x = 0.0; | |
6454 v36[1].texcoord.y = 0.0; | |
693 | 6455 v9 = (double)(signed int)pViewport->uViewportBR_X; |
0 | 6456 v36[2].pos.x = v9; |
6457 v36[2].pos.y = v8; | |
6458 v36[2].pos.z = 0.0; | |
6459 v36[2].rhw = 1.0; | |
6460 v36[2].texcoord.x = 0.0; | |
6461 v36[2].texcoord.y = 0.0; | |
6462 v36[3].pos.x = v9; | |
6463 v36[3].pos.y = v6; | |
6464 v36[3].pos.z = 0.0; | |
6465 v36[3].rhw = 1.0; | |
6466 v36[3].texcoord.x = 0.0; | |
6467 v36[3].texcoord.y = 0.0; | |
6468 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0)); | |
186 | 6469 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); |
6470 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
6471 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
6472 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA)); | |
6473 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA)); | |
6474 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
6475 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_ALWAYS)); | |
0 | 6476 ErrD3D(pRenderD3D->pDevice->DrawPrimitive( |
6477 D3DPT_TRIANGLEFAN, | |
6478 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
6479 v36, | |
6480 4, | |
6481 28)); | |
186 | 6482 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
6483 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
6484 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
6485 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
6486 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
6487 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_LESS)); | |
1574 | 6488 /*} |
0 | 6489 else |
6490 { | |
6491 v40 = (1.0 - a3) * 65536.0; | |
6492 v39 = v40 + 6.7553994e15; | |
6493 LODWORD(a3) = LODWORD(v39); | |
693 | 6494 v38 = (signed int)(pViewport->uViewportBR_X - pViewport->uViewportTL_X) >> 1; |
6495 HIDWORD(v39) = pViewport->uViewportBR_Y - pViewport->uViewportTL_Y + 1; | |
6496 v13 = pViewport->uViewportTL_X + ecx0->uTargetSurfacePitch - pViewport->uViewportBR_X; | |
6497 v14 = &ecx0->pTargetSurface[pViewport->uViewportTL_X + pViewport->uViewportTL_Y * ecx0->uTargetSurfacePitch]; | |
0 | 6498 v37 = 2 * v13; |
6499 LODWORD(v40) = (int)v14; | |
6500 | |
6501 int __i = 0; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
6502 v15 = dword_F1B430.data(); |
0 | 6503 do |
6504 { | |
6505 v16 = v3; | |
6506 v3 += LODWORD(a3); | |
6507 dword_F1B430[__i++] = v16 >> 16; | |
6508 } | |
6509 //while ( (signed int)v15 < (signed int)&Aureal3D_SplashScreen ); | |
6510 while (__i < 32); | |
6511 | |
6512 if ( pRenderer->uTargetGBits == 6 ) | |
6513 { | |
1574 | 6514 v17 = sr_42690D_colors_cvt(this_); |
0 | 6515 v18 = (65536 - LODWORD(a3)) * (v17 & 0x1F); |
6516 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); | |
6517 v19 = v40; | |
6518 v20 = off_4EFDB0; | |
6519 v21 = HIDWORD(v39); | |
6520 do | |
6521 { | |
6522 v22 = v38; | |
6523 v31 = v21; | |
6524 do | |
6525 { | |
6526 v23 = (*(int *)((char *)v20 | |
6527 + ((((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; | |
6528 result = this_ | |
6529 + (*((int *)v20 | |
6530 + (((unsigned __int8)(*((char *)v20 | |
6531 + ((((unsigned __int16)(*(short *)((char *)v20 | |
6532 + ((*(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); | |
6533 *(unsigned int *)LODWORD(v19) = result; | |
6534 LODWORD(v19) += 4; | |
6535 --v22; | |
6536 } | |
6537 while ( v22 ); | |
6538 LODWORD(v19) += v37; | |
6539 v21 = v31 - 1; | |
6540 } | |
6541 while ( v31 != 1 ); | |
6542 } | |
6543 else | |
6544 { | |
1574 | 6545 v24 = sr_4268E3_smthn_to_a1r5g5b5(this_); |
0 | 6546 v25 = (65536 - LODWORD(a3)) * (v24 & 0x1F); |
6547 this_ = (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3)) | |
6548 * (v24 & 0x3E0) & 0x3E00000u) >> 16 << 16) | (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3)) * (v24 & 0x3E0) & 0x3E00000u) >> 16); | |
6549 v26 = v40; | |
6550 v27 = (char *)off_4EFDB0; | |
6551 v28 = HIDWORD(v39); | |
6552 do | |
6553 { | |
6554 v29 = v38; | |
6555 v32 = v28; | |
6556 do | |
6557 { | |
6558 v30 = 32 | |
6559 * *(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; | |
6560 result = this_ | |
6561 + (*(int *)&v27[4 | |
6562 * (((unsigned __int8)(32 | |
6563 * 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); | |
6564 *(unsigned int *)LODWORD(v26) = result; | |
6565 LODWORD(v26) += 4; | |
6566 --v29; | |
6567 } | |
6568 while ( v29 ); | |
6569 LODWORD(v26) += v37; | |
6570 v28 = v32 - 1; | |
6571 } | |
6572 while ( v32 != 1 ); | |
6573 } | |
1574 | 6574 }*/ |
0 | 6575 } |
6576 | |
6577 //----- (004A5B81) -------------------------------------------------------- | |
727 | 6578 void Render::SetTextureClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW) |
0 | 6579 { |
6580 this->bClip = 1; | |
6581 this->uClipY = uY; | |
6582 this->uClipX = uX; | |
6583 this->uClipW = uW; | |
6584 this->uClipZ = uZ; | |
6585 } | |
6586 | |
6587 //----- (004A5BB6) -------------------------------------------------------- | |
727 | 6588 void Render::ResetTextureClipRect() |
0 | 6589 { |
6590 this->uClipY = 0; | |
6591 this->uClipX = 0; | |
6592 this->bClip = 1; | |
6593 this->uClipW = 480; | |
6594 this->uClipZ = 640; | |
6595 } | |
6596 | |
2069 | 6597 unsigned __int32 Color32(unsigned __int16 color16) |
6598 { | |
6599 unsigned __int32 c = color16; | |
6600 unsigned int b = (c & 31) * 8; | |
6601 unsigned int g = ((c >> 5) & 63) * 4; | |
6602 unsigned int r = ((c >> 11) & 31) * 8; | |
6603 | |
2078 | 6604 return (r << 16) | (g << 8) | b;// |
2069 | 6605 } |
6606 | |
6607 //----- (0040DEF3) -------------------------------------------------------- | |
6608 unsigned __int16 Color16(unsigned __int32 r, unsigned __int32 g, unsigned __int32 b) | |
6609 { | |
6610 //return ((unsigned int)b >> (8 - LOBYTE(pRenderer->uTargetBBits))) | pRenderer->uTargetGMask & (g << (LOBYTE(pRenderer->uTargetGBits) + | |
6611 // LOBYTE(pRenderer->uTargetBBits) - 8)) | pRenderer->uTargetRMask & (r << (LOBYTE(pRenderer->uTargetGBits) + | |
6612 // LOBYTE(pRenderer->uTargetRBits) + LOBYTE(pRenderer->uTargetBBits) - 8)); | |
6613 return (b >> (8 - 5)) | | |
6614 0x7E0 & (g << (6 + 5 - 8)) | | |
6615 0xF800 & (r << (6 + 5 + 5 - 8)); | |
6616 } | |
6617 | |
6618 | |
0 | 6619 //----- (004A5BE3) -------------------------------------------------------- |
6620 void Render::DrawTextureRGB(unsigned int uOutX, unsigned int uOutY, RGBTexture *a4) | |
6621 { | |
6622 int v4; // edi@3 | |
2069 | 6623 //unsigned __int16 *v5; // edx@3 |
0 | 6624 unsigned __int16 *v6; // esi@3 |
6625 unsigned int v8; // eax@5 | |
6626 unsigned int v9; // ebx@5 | |
6627 unsigned int v11; // eax@7 | |
6628 unsigned int v12; // ebx@8 | |
6629 unsigned int v15; // eax@14 | |
6630 int v19; // [sp+10h] [bp-8h]@3 | |
6631 unsigned int uOutXa; // [sp+20h] [bp+8h]@16 | |
6632 int v23; // [sp+28h] [bp+10h]@3 | |
6633 | |
6634 if ( this->uNumSceneBegins && a4 ) | |
6635 { | |
6636 v4 = a4->uWidth; | |
2069 | 6637 //v5 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch]; |
0 | 6638 v6 = a4->pPixels; |
6639 v23 = a4->uHeight; | |
6640 v19 = v4; | |
6641 if ( this->bClip ) | |
6642 { | |
1152 | 6643 if ( (signed int)uOutX < (signed int)this->uClipX ) |
6644 { | |
6645 v8 = this->uClipX - uOutX; | |
6646 v9 = uOutX - this->uClipX; | |
0 | 6647 v8 *= 2; |
6648 v4 += v9; | |
6649 v6 = (unsigned __int16 *)((char *)v6 + v8); | |
2069 | 6650 //v5 = (unsigned __int16 *)((char *)v5 + v8); |
0 | 6651 } |
1152 | 6652 if ( (signed int)uOutY < (signed int)this->uClipY ) |
6653 { | |
6654 v11 = this->uClipY - uOutY; | |
0 | 6655 v6 += v19 * v11; |
6656 v23 += uOutY - this->uClipY; | |
2069 | 6657 //v5 += this->uTargetSurfacePitch * v11; |
0 | 6658 } |
1152 | 6659 v12 = max(this->uClipX, uOutX); |
6660 if ( (signed int)(v4 + v12) > (signed int)this->uClipZ ) | |
6661 { | |
6662 v4 = this->uClipZ - max(this->uClipX, uOutX); | |
6663 } | |
6664 v15 = max(this->uClipY, uOutY); | |
6665 if ( (signed int)(v15 + v23) > (signed int)this->uClipW ) | |
6666 { | |
6667 v23 = this->uClipW - max(this->uClipY, uOutY); | |
6668 } | |
6669 } | |
6670 | |
2069 | 6671 for (int y = 0; y < v23; y++) |
6672 { | |
6673 for (int x = 0; x < v4; x++) | |
6674 { | |
6675 WritePixel16(uOutX + x, uOutY + y, *v6); | |
6676 //*v5 = *v6; | |
6677 //++v5; | |
1152 | 6678 ++v6; |
6679 } | |
6680 v6 += v19 - v4; | |
2069 | 6681 //v5 += this->uTargetSurfacePitch - v4; |
0 | 6682 } |
6683 } | |
6684 } | |
6685 | |
6686 //----- (004A5D33) -------------------------------------------------------- | |
1675 | 6687 void Render::CreditsTextureScroll(unsigned int pX, unsigned int pY, int move_X, int move_Y, RGBTexture *pTexture) |
0 | 6688 { |
2069 | 6689 //unsigned __int16 *v7; // ebx@3 |
1675 | 6690 int full_width; // ecx@3 |
6691 int full_height; // edi@3 | |
2069 | 6692 //int v23; // edi@23 |
0 | 6693 unsigned __int16 *pTexturea; // [sp+28h] [bp+18h]@3 |
6694 | |
6695 if ( this->uNumSceneBegins && pTexture ) | |
6696 { | |
2069 | 6697 /*auto v7 = this->pTargetSurface; |
6698 if (FORCE_16_BITS) | |
6699 v7 = (unsigned __int32 *)((char *)v7 + (pX + pY * this->uTargetSurfacePitch) * 2); | |
6700 else | |
6701 v7 = (unsigned __int32 *)((char *)v7 + (pX + pY * this->uTargetSurfacePitch) * 4);*/ | |
1675 | 6702 full_width = pTexture->uWidth - move_X; |
6703 full_height = pTexture->uHeight - move_Y; | |
6704 pTexturea = &pTexture->pPixels[move_X + move_Y * pTexture->uWidth]; | |
6705 if ( this->bClip ) | |
6706 { | |
6707 if ( pX < this->uClipX )//åñëè êàäð âûõîäèò çà ïðàâóþ ãðàíèöó | |
6708 { | |
6709 pTexturea = (unsigned __int16 *)((char *)pTexturea + (2 * (this->uClipX - pX))); | |
6710 full_width += pX - this->uClipX; | |
2069 | 6711 //v7 = (unsigned __int32 *)((char *)v7 + ((FORCE_16_BITS ? 2 : 4) * (this->uClipX - pX))); |
1675 | 6712 } |
6713 if ( pY < this->uClipY )//åñëè êàäð âûõîäèò çà âåðõíþþ ãðàíèöó | |
6714 { | |
6715 pTexturea += pTexture->uWidth * (this->uClipY - pY); | |
6716 full_height += pY - this->uClipY; | |
2069 | 6717 //v7 = (unsigned __int32 *)((char *)v7 + (FORCE_16_BITS ? 2 : 4) * this->uTargetSurfacePitch * (this->uClipY - pY)); |
1675 | 6718 } |
6719 if ( this->uClipX < pX )//åñëè ïðàâàÿ ãðàíèöà îêíà ìåíüøå õ êîîðäèíàòû êàäðà | |
6720 this->uClipX = pX; | |
6721 if ( this->uClipY < pY )//åñëè âåðõíÿÿ ãðàíèöà îêíà ìåíüøå y êîîðäèíàòû êàäðà | |
6722 this->uClipY = pY; | |
6723 if ( (full_width + this->uClipX) > this->uClipZ )//åñëè øèðèíà êàäðà âûõîäèò çà ïðàâóþ ãðàíèöó | |
6724 { | |
6725 if ( this->uClipX < pX ) | |
6726 this->uClipX = pX; | |
6727 full_width = this->uClipZ - this->uClipX; | |
6728 } | |
6729 if ( (full_height + this->uClipY) > this->uClipW )//åñëè âûñîòà êàäðà âûõîäèò çà íèæíþþ ãðàíèöó | |
6730 { | |
6731 if ( this->uClipY < pY ) | |
6732 this->uClipY = pY; | |
6733 full_height = this->uClipW - this->uClipY; | |
6734 } | |
6735 } | |
2069 | 6736 |
6737 for (int y = 0; y < full_height; ++y) | |
6738 { | |
6739 for (int x = 0; x < full_width; ++x) | |
6740 { | |
6741 if ( *pTexturea != Color16(0, 0xFFu, 0xFFu) ) | |
6742 { | |
6743 WritePixel16(pX + x, pY + y, *pTexturea); | |
6744 /*if (FORCE_16_BITS) | |
6745 *(unsigned __int16 *)v7 = *pTexturea; | |
6746 else | |
6747 *(unsigned __int32 *)v7 = r5g6b5_2_r8g8b8(*pTexturea);*/ | |
6748 } | |
0 | 6749 ++pTexturea; |
2069 | 6750 //++v7; |
0 | 6751 } |
2069 | 6752 //v7 += this->uTargetSurfacePitch - full_width; |
1675 | 6753 pTexturea = (unsigned __int16 *)((char *)pTexturea + 2 * (pTexture->uWidth - full_width)); |
2069 | 6754 } |
0 | 6755 } |
6756 } | |
6757 | |
6758 //----- (004A6E7E) -------------------------------------------------------- | |
2155 | 6759 void Render::DrawTranslucent(unsigned int a2, unsigned int a3, Texture *a4) |
0 | 6760 { |
2069 | 6761 //unsigned __int16 *v4; // eax@4 |
0 | 6762 int v5; // edx@4 |
6763 unsigned int v6; // edi@4 | |
6764 unsigned int v7; // edx@5 | |
6765 unsigned int v8; // edx@6 | |
6766 unsigned int v9; // edx@7 | |
6767 unsigned int v10; // edx@8 | |
6768 unsigned int v11; // ebx@9 | |
6769 unsigned int v12; // esi@11 | |
6770 unsigned int v13; // edx@12 | |
6771 unsigned int v14; // ebx@15 | |
6772 unsigned int v15; // esi@17 | |
6773 unsigned int v16; // edi@18 | |
6774 char v17; // zf@29 | |
6775 int v18; // [sp+14h] [bp-Ch]@4 | |
6776 int v19; // [sp+18h] [bp-8h]@4 | |
6777 unsigned __int8 *v20; // [sp+1Ch] [bp-4h]@4 | |
6778 int v21; // [sp+28h] [bp+8h]@25 | |
6779 int v22; // [sp+28h] [bp+8h]@34 | |
6780 unsigned int v23; // [sp+2Ch] [bp+Ch]@23 | |
6781 unsigned int v24; // [sp+2Ch] [bp+Ch]@32 | |
6782 | |
6783 if ( this->uNumSceneBegins && a4 && a4->pPalette16 ) | |
6784 { | |
2069 | 6785 //v4 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; |
710 | 6786 v20 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 6787 v5 = a4->uTextureWidth; |
6788 v6 = a4->uTextureHeight; | |
6789 v19 = a4->uTextureWidth; | |
6790 v18 = a4->uTextureWidth; | |
2069 | 6791 int clipped_out_x = a2; |
6792 int clipped_out_y = a3; | |
0 | 6793 if ( this->bClip ) |
6794 { | |
6795 v7 = this->uClipX; | |
6796 if ( (signed int)a2 < (signed int)v7 ) | |
6797 { | |
6798 v8 = v7 - a2; | |
6799 v20 += v8; | |
6800 v19 += a2 - this->uClipX; | |
2069 | 6801 //v4 += v8; |
6802 clipped_out_x = uClipX; | |
0 | 6803 } |
6804 v9 = this->uClipY; | |
6805 if ( (signed int)a3 < (signed int)v9 ) | |
6806 { | |
6807 v10 = v9 - a3; | |
6808 v20 += v18 * v10; | |
6809 v6 = a3 - this->uClipY + a4->uTextureHeight; | |
2069 | 6810 //v4 += this->uTargetSurfacePitch * v10; |
6811 clipped_out_y = uClipY; | |
0 | 6812 } |
6813 v11 = this->uClipX; | |
6814 v5 = v19; | |
6815 if ( (signed int)v11 < (signed int)a2 ) | |
6816 v11 = a2; | |
6817 v12 = this->uClipZ; | |
6818 if ( (signed int)(v19 + v11) > (signed int)v12 ) | |
6819 { | |
6820 v13 = this->uClipX; | |
6821 if ( (signed int)v13 < (signed int)a2 ) | |
6822 v13 = a2; | |
6823 v5 = v12 - v13; | |
6824 } | |
6825 v14 = this->uClipY; | |
6826 if ( (signed int)v14 < (signed int)a3 ) | |
6827 v14 = a3; | |
6828 v15 = this->uClipW; | |
6829 if ( (signed int)(v6 + v14) > (signed int)v15 ) | |
6830 { | |
6831 v16 = this->uClipY; | |
6832 if ( (signed int)v16 < (signed int)a3 ) | |
6833 v16 = a3; | |
6834 v6 = v15 - v16; | |
6835 } | |
6836 } | |
2069 | 6837 |
6838 for (int y = 0; y < v6; ++y) | |
6839 { | |
6840 for (int x = 0; x < v5; ++x) | |
6841 { | |
6842 if ( *v20 ) | |
6843 WritePixel16(clipped_out_x + x, clipped_out_y + y, ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x7BEF); | |
6844 ++v20; | |
6845 } | |
6846 v20 += v18 - v5; | |
6847 } | |
6848 | |
6849 /*if ( pRenderer->uTargetGBits == 5 ) | |
0 | 6850 { |
6851 if ( (signed int)v6 > 0 ) | |
6852 { | |
6853 v23 = v6; | |
6854 do | |
6855 { | |
6856 if ( v5 > 0 ) | |
6857 { | |
6858 v21 = v5; | |
6859 do | |
6860 { | |
6861 if ( *v20 ) | |
6862 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x3DEF; | |
6863 ++v4; | |
6864 ++v20; | |
6865 --v21; | |
6866 } | |
6867 while ( v21 ); | |
6868 } | |
6869 v20 += v18 - v5; | |
6870 v17 = v23-- == 1; | |
6871 v4 += this->uTargetSurfacePitch - v5; | |
6872 } | |
6873 while ( !v17 ); | |
6874 } | |
6875 } | |
6876 else | |
6877 { | |
6878 if ( (signed int)v6 > 0 ) | |
6879 { | |
6880 v24 = v6; | |
6881 do | |
6882 { | |
6883 if ( v5 > 0 ) | |
6884 { | |
6885 v22 = v5; | |
6886 do | |
6887 { | |
6888 if ( *v20 ) | |
6889 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x7BEF; | |
6890 ++v4; | |
6891 ++v20; | |
6892 --v22; | |
6893 } | |
6894 while ( v22 ); | |
6895 } | |
6896 v20 += v18 - v5; | |
6897 v17 = v24-- == 1; | |
6898 v4 += this->uTargetSurfacePitch - v5; | |
6899 } | |
6900 while ( !v17 ); | |
6901 } | |
2069 | 6902 }*/ |
0 | 6903 } |
6904 } | |
6905 | |
6906 //----- (004A6DF5) -------------------------------------------------------- | |
2069 | 6907 void Render::_4A6DF5(unsigned __int16 *pBitmap, unsigned int uBitmapPitch, Vec2_int_ *pBitmapXY, void *pTarget, unsigned int uTargetPitch, Vec4_int_ *a7) |
0 | 6908 { |
6909 int v8; // ecx@3 | |
6910 unsigned __int16 *v10; // ebx@4 | |
6911 int v11; // esi@4 | |
6912 | |
2069 | 6913 if ( !pBitmap || !pTarget) |
6914 return; | |
6915 | |
2093 | 6916 v8 = a7->z - a7->x; |
6917 v11 = a7->w - a7->y; | |
6918 v10 = (unsigned short *)pTarget + a7->x + uTargetPitch * a7->y; | |
6919 for ( int y = 0; y < v11; ++y ) | |
6920 { | |
6921 for ( int x = 0; x < v8; ++x ) | |
6922 { | |
6923 WritePixel16(a7->x + x, a7->y + y, *v10); | |
6924 ++v10; | |
6925 } | |
6926 v10 += uTargetPitch - v8; | |
6927 } | |
0 | 6928 } |
6929 | |
6930 //----- (004A6D87) -------------------------------------------------------- | |
6931 void Render::FillRectFast(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, unsigned int uColor16) | |
6932 { | |
6933 if (!uNumSceneBegins) | |
6934 return; | |
6935 | |
6936 unsigned __int32 twoColors = (uColor16 << 16) | uColor16; | |
6937 for (uint y = 0; y < uHeight; ++y) | |
6938 { | |
2069 | 6939 void *pDst = (char *)pTargetSurface + (FORCE_16_BITS ? 2 : 4) * (uX + (y + uY) * uTargetSurfacePitch); |
6940 | |
6941 memset32(pDst, | |
2098 | 6942 FORCE_16_BITS ? twoColors : 0xFF000000 | Color32(uColor16), // two colors per int (16bit) or 1 (32bit) |
2069 | 6943 uWidth / (FORCE_16_BITS ? 2 : 1)); // two pixels per int (16bit) or 1 (32bit) |
6944 | |
6945 if (FORCE_16_BITS && uWidth & 1) // we may miss one pixel for 16bit | |
6946 ((unsigned __int16 *)pTargetSurface)[uX + uWidth - 1 + (y + uY) * uTargetSurfacePitch] = uColor16; | |
0 | 6947 } |
6948 } | |
6949 | |
6950 //----- (004A6C4F) -------------------------------------------------------- | |
2073 | 6951 void Render::DrawText(signed int uOutX, signed int uOutY, unsigned __int8 *pFontPixels, unsigned int uCharWidth, |
6952 unsigned int uCharHeight, unsigned __int16 *pFontPalette, | |
6953 unsigned __int16 uFaceColor, unsigned __int16 uShadowColor) | |
0 | 6954 { |
6955 unsigned int v9; // edi@2 | |
6956 unsigned int v10; // esi@2 | |
2069 | 6957 //unsigned __int16 *v11; // eax@2 |
0 | 6958 unsigned int v12; // ebx@3 |
6959 signed int v13; // edx@5 | |
6960 int v14; // edx@6 | |
6961 signed int v15; // ebx@7 | |
6962 unsigned int v16; // edx@9 | |
6963 signed int v17; // edi@10 | |
6964 signed int v18; // ebx@13 | |
6965 unsigned int v19; // edx@15 | |
6966 signed int v20; // esi@16 | |
2069 | 6967 //unsigned int v21; // esi@22 |
0 | 6968 unsigned __int16 v22; // dx@24 |
2069 | 6969 //char v23; // zf@28 |
0 | 6970 unsigned __int8 *v24; // [sp+Ch] [bp-4h]@2 |
2069 | 6971 //unsigned int uOutXa; // [sp+18h] [bp+8h]@20 |
6972 | |
6973 if (!this->uNumSceneBegins) | |
6974 return; | |
6975 | |
0 | 6976 v9 = uCharWidth; |
6977 v10 = uCharHeight; | |
2069 | 6978 //v11 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch]; |
0 | 6979 v24 = pFontPixels; |
2069 | 6980 |
6981 int clipped_out_x = uOutX, clipped_out_y = uOutY; | |
0 | 6982 if ( this->bClip ) |
6983 { | |
6984 v12 = this->uClipX; | |
6985 if ( uOutX < (signed int)v12 ) | |
6986 { | |
6987 v24 = &pFontPixels[v12 - uOutX]; | |
2069 | 6988 //v11 += v12 - uOutX; |
6989 clipped_out_x = uClipX; | |
0 | 6990 v9 = uCharWidth + uOutX - v12; |
6991 } | |
6992 v13 = this->uClipY; | |
6993 if ( uOutY < v13 ) | |
6994 { | |
6995 v14 = v13 - uOutY; | |
6996 v24 += uCharWidth * v14; | |
6997 v10 = uCharHeight + uOutY - this->uClipY; | |
2069 | 6998 //v11 += this->uTargetSurfacePitch * v14; |
6999 clipped_out_y = uClipY; | |
0 | 7000 } |
7001 v15 = this->uClipX; | |
7002 if ( v15 < uOutX ) | |
7003 v15 = uOutX; | |
7004 v16 = this->uClipZ; | |
7005 if ( (signed int)(v9 + v15) > (signed int)v16 ) | |
7006 { | |
7007 v17 = this->uClipX; | |
7008 if ( v17 < uOutX ) | |
7009 v17 = uOutX; | |
7010 v9 = v16 - v17; | |
7011 } | |
7012 v18 = this->uClipY; | |
7013 if ( v18 < uOutY ) | |
7014 v18 = uOutY; | |
7015 v19 = this->uClipW; | |
7016 if ( (signed int)(v10 + v18) > (signed int)v19 ) | |
7017 { | |
7018 v20 = this->uClipY; | |
7019 if ( v20 < uOutY ) | |
7020 v20 = uOutY; | |
7021 v10 = v19 - v20; | |
7022 } | |
7023 } | |
2069 | 7024 |
7025 for (int y = 0; y < v10; ++y) | |
7026 { | |
7027 for (int x = 0; x < v9; ++x) | |
7028 { | |
7029 if (*v24) | |
0 | 7030 { |
2069 | 7031 v22 = uShadowColor; |
7032 if ( *v24 != 1 ) | |
7033 v22 = uFaceColor; | |
2073 | 7034 WritePixel16(clipped_out_x + x, clipped_out_y + y, v22); |
0 | 7035 } |
2073 | 7036 ++v24; |
7037 } | |
7038 v24 += uCharWidth - v9; | |
2069 | 7039 //v23 = uOutXa-- == 1; |
7040 //v11 += this->uTargetSurfacePitch - v9; | |
7041 } | |
0 | 7042 } |
7043 | |
7044 //----- (004A6A68) -------------------------------------------------------- | |
1496 | 7045 void Render::GetLeather(unsigned int a2, unsigned int a3, Texture *a4, __int16 height) |
7046 { | |
0 | 7047 Texture tex; // [sp+Ch] [bp-48h]@1 |
1496 | 7048 |
0 | 7049 memcpy(&tex, a4, sizeof(tex)); |
1496 | 7050 tex.uTextureHeight = a4->uTextureHeight - height; |
7051 if ( (signed __int16)tex.uTextureHeight > 0 ) | |
0 | 7052 DrawTextureIndexed(a2, a3, &tex); |
7053 } | |
7054 | |
7055 //----- (004A6AB1) -------------------------------------------------------- | |
1268 | 7056 void Render::DrawTextPalette( int x, int y, unsigned char* font_pixels, int a5, unsigned int uFontHeight, unsigned __int16 *pPalette, int a8 ) |
7057 { | |
0 | 7058 int v8; // edi@2 |
7059 unsigned int v9; // esi@2 | |
2069 | 7060 //unsigned __int16 *v10; // eax@2 |
0 | 7061 unsigned char *v11; // edx@2 |
7062 unsigned int v12; // ebx@3 | |
7063 signed int v13; // edx@5 | |
7064 int v14; // edx@6 | |
7065 signed int v15; // ebx@7 | |
7066 unsigned int v16; // edx@9 | |
7067 signed int v17; // edi@10 | |
7068 signed int v18; // ebx@13 | |
7069 unsigned int v19; // edx@15 | |
7070 signed int v20; // esi@16 | |
7071 int v21; // ebx@22 | |
7072 char v22; // zf@28 | |
7073 int v23; // ebx@31 | |
7074 unsigned __int16 v24; // si@35 | |
7075 int v25; // [sp+Ch] [bp-4h]@2 | |
7076 int v26; // [sp+1Ch] [bp+Ch]@24 | |
7077 int v27; // [sp+1Ch] [bp+Ch]@33 | |
7078 unsigned int v28; // [sp+20h] [bp+10h]@30 | |
7079 unsigned int v29; // [sp+24h] [bp+14h]@22 | |
7080 unsigned int v30; // [sp+24h] [bp+14h]@31 | |
7081 | |
1980 | 7082 int a2 = x; |
7083 int a3 = y; | |
7084 uint a6 = uFontHeight; | |
2069 | 7085 if (!this->uNumSceneBegins) |
7086 return; | |
7087 | |
0 | 7088 v8 = a5; |
7089 v9 = a6; | |
2069 | 7090 //v10 = &pTargetSurface[x + y * uTargetSurfacePitch]; |
1268 | 7091 v11 = (unsigned char *)font_pixels; |
7092 v25 = (int)font_pixels; | |
2069 | 7093 int clipped_out_x = x; |
7094 int clipped_out_y = y; | |
0 | 7095 if ( this->bClip ) |
7096 { | |
7097 v12 = this->uClipX; | |
7098 if ( a2 < (signed int)v12 ) | |
7099 { | |
1268 | 7100 v25 = v12 - a2 + (int)font_pixels; |
2069 | 7101 //v10 += v12 - a2; |
0 | 7102 v8 = a5 + a2 - v12; |
2069 | 7103 clipped_out_x = uClipX; |
0 | 7104 } |
7105 v13 = this->uClipY; | |
7106 if ( a3 < v13 ) | |
7107 { | |
7108 v14 = v13 - a3; | |
7109 v25 += a5 * v14; | |
7110 v9 = a6 + a3 - this->uClipY; | |
2069 | 7111 //v10 += this->uTargetSurfacePitch * v14; |
7112 clipped_out_y = uClipY; | |
0 | 7113 } |
7114 v15 = this->uClipX; | |
7115 if ( v15 < a2 ) | |
7116 v15 = a2; | |
7117 v16 = this->uClipZ; | |
7118 if ( v8 + v15 > (signed int)v16 ) | |
7119 { | |
7120 v17 = this->uClipX; | |
7121 if ( v17 < a2 ) | |
7122 v17 = a2; | |
7123 v8 = v16 - v17; | |
7124 } | |
7125 v18 = this->uClipY; | |
7126 if ( v18 < a3 ) | |
7127 v18 = a3; | |
7128 v19 = this->uClipW; | |
7129 if ( (signed int)(v9 + v18) > (signed int)v19 ) | |
7130 { | |
7131 v20 = this->uClipY; | |
7132 if ( v20 < a3 ) | |
7133 v20 = a3; | |
7134 v9 = v19 - v20; | |
7135 } | |
7136 v11 = (unsigned char *)v25; | |
7137 } | |
2069 | 7138 |
0 | 7139 if ( a8 ) |
7140 { | |
2069 | 7141 v28 = 0x7FF; // 16bit pRenderer->uTargetGMask | pRenderer->uTargetBMask; |
7142 for (int dy = 0; dy < v9; ++dy) | |
7143 { | |
7144 for (int dx = 0; dx < v8; ++dx) | |
7145 { | |
7146 if ( *v11 ) | |
7147 v24 = pPalette[*v11]; | |
7148 else | |
7149 v24 = v28; | |
7150 WritePixel16(clipped_out_x + dx, clipped_out_y + dy, v24); | |
7151 //*v10 = v24; | |
7152 //++v10; | |
2074 | 7153 ++v11; |
2069 | 7154 //--v27; |
2074 | 7155 |
2069 | 7156 } |
7157 v11 += a5 - v8; | |
7158 } | |
7159 /*if ( (signed int)v9 > 0 ) | |
0 | 7160 { |
7161 v23 = a5; | |
7162 v30 = v9; | |
7163 do | |
7164 { | |
7165 if ( v8 > 0 ) | |
7166 { | |
7167 v27 = v8; | |
7168 do | |
7169 { | |
7170 if ( *v11 ) | |
7171 v24 = pPalette[*v11]; | |
7172 else | |
7173 v24 = v28; | |
7174 *v10 = v24; | |
7175 ++v10; | |
7176 ++v11; | |
7177 --v27; | |
7178 } | |
7179 while ( v27 ); | |
7180 } | |
7181 v11 += v23 - v8; | |
7182 v22 = v30-- == 1; | |
7183 v10 += this->uTargetSurfacePitch - v8; | |
7184 } | |
7185 while ( !v22 ); | |
2069 | 7186 }*/ |
0 | 7187 } |
7188 else | |
7189 { | |
2069 | 7190 for (int dy = 0; dy < v9; ++dy) |
7191 { | |
7192 for (int dx = 0; dx < v8; ++dx) | |
7193 { | |
2074 | 7194 if ( *v11 ) |
2069 | 7195 WritePixel16(clipped_out_x + dx, clipped_out_y + dy, pPalette[*v11]); |
7196 //*v10 = v24; | |
7197 //++v10; | |
2074 | 7198 ++v11; |
2069 | 7199 //--v27; |
7200 } | |
7201 v11 += a5 - v8; | |
7202 } | |
7203 | |
7204 /*if ( (signed int)v9 > 0 ) | |
0 | 7205 { |
7206 v21 = a5; | |
7207 v29 = v9; | |
7208 do | |
7209 { | |
7210 if ( v8 > 0 ) | |
7211 { | |
7212 v26 = v8; | |
7213 do | |
7214 { | |
7215 if ( *v11 ) | |
7216 *v10 = pPalette[*v11]; | |
7217 ++v10; | |
7218 ++v11; | |
7219 --v26; | |
7220 } | |
7221 while ( v26 ); | |
7222 } | |
7223 v11 += v21 - v8; | |
7224 v22 = v29-- == 1; | |
7225 v10 += this->uTargetSurfacePitch - v8; | |
7226 } | |
7227 while ( !v22 ); | |
2069 | 7228 }*/ |
7229 } | |
0 | 7230 } |
7231 | |
7232 //----- (004A68EF) -------------------------------------------------------- | |
7233 void Render::DrawTransparentGreenShade(signed int a2, signed int a3, Texture *pTexture) | |
7234 { | |
2069 | 7235 DrawMasked(a2, a3, pTexture, 0x07E0); |
7236 } | |
7237 | |
0 | 7238 |
7239 //----- (004A6776) -------------------------------------------------------- | |
315 | 7240 void Render::DrawTransparentRedShade(unsigned int a2, unsigned int a3, Texture *a4) |
0 | 7241 { |
2069 | 7242 DrawMasked(a2, a3, a4, 0xF800); |
7243 /*Texture *v4; // edi@2 | |
0 | 7244 unsigned int v5; // ebx@4 |
7245 unsigned __int16 *v6; // eax@4 | |
7246 unsigned int v7; // edx@5 | |
7247 unsigned int v8; // edx@6 | |
7248 unsigned int v9; // edx@7 | |
7249 unsigned int v10; // edx@8 | |
7250 unsigned int v11; // edx@9 | |
7251 unsigned int v12; // esi@12 | |
7252 unsigned int v13; // esi@15 | |
7253 unsigned int v14; // edx@17 | |
7254 unsigned int v15; // esi@18 | |
7255 unsigned __int8 *v16; // ebx@22 | |
7256 char v17; // zf@28 | |
7257 int v18; // [sp+10h] [bp-10h]@4 | |
7258 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
7259 int v20; // [sp+1Ch] [bp-4h]@4 | |
7260 int a2a; // [sp+28h] [bp+8h]@24 | |
7261 unsigned int a3a; // [sp+2Ch] [bp+Ch]@22 | |
7262 unsigned int a4a; // [sp+30h] [bp+10h]@11 | |
7263 | |
7264 if ( this->uNumSceneBegins ) | |
7265 { | |
7266 v4 = a4; | |
7267 if ( a4 ) | |
7268 { | |
7269 if ( a4->pPalette16 ) | |
7270 { | |
7271 v5 = a4->uTextureHeight; | |
7272 v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; | |
710 | 7273 v19 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7274 v20 = a4->uTextureWidth; |
7275 v18 = a4->uTextureWidth; | |
7276 if ( this->bClip ) | |
7277 { | |
7278 v7 = this->uClipX; | |
7279 if ( (signed int)a2 < (signed int)v7 ) | |
7280 { | |
7281 v8 = v7 - a2; | |
7282 v19 += v8; | |
7283 v20 += a2 - this->uClipX; | |
7284 v6 += v8; | |
7285 } | |
7286 v9 = this->uClipY; | |
7287 v5 = a4->uTextureHeight; | |
7288 if ( (signed int)a3 < (signed int)v9 ) | |
7289 { | |
7290 v10 = v9 - a3; | |
7291 v19 += v18 * v10; | |
7292 v5 = a3 - this->uClipY + a4->uTextureHeight; | |
7293 v4 = a4; | |
7294 v6 += this->uTargetSurfacePitch * v10; | |
7295 } | |
7296 v11 = this->uClipX; | |
7297 if ( (signed int)v11 < (signed int)a2 ) | |
7298 v11 = a2; | |
7299 a4a = this->uClipZ; | |
7300 if ( (signed int)(v11 + v20) > (signed int)a4a ) | |
7301 { | |
7302 v12 = this->uClipX; | |
7303 if ( (signed int)v12 < (signed int)a2 ) | |
7304 v12 = a2; | |
7305 v20 = a4a - v12; | |
7306 } | |
7307 v13 = this->uClipY; | |
7308 if ( (signed int)v13 < (signed int)a3 ) | |
7309 v13 = a3; | |
7310 v14 = this->uClipW; | |
7311 if ( (signed int)(v5 + v13) > (signed int)v14 ) | |
7312 { | |
7313 v15 = this->uClipY; | |
7314 if ( (signed int)v15 < (signed int)a3 ) | |
7315 v15 = a3; | |
7316 v5 = v14 - v15; | |
7317 } | |
7318 } | |
7319 if ( (signed int)v5 > 0 ) | |
7320 { | |
7321 a3a = v5; | |
7322 v16 = v19; | |
7323 do | |
7324 { | |
7325 if ( v20 > 0 ) | |
7326 { | |
7327 a2a = v20; | |
7328 do | |
7329 { | |
7330 if ( *v16 ) | |
7331 *v6 = this->uTargetRMask & v4->pPalette16[*v16]; | |
7332 ++v6; | |
7333 ++v16; | |
7334 --a2a; | |
7335 } | |
7336 while ( a2a ); | |
7337 } | |
7338 v16 += v18 - v20; | |
7339 v17 = a3a-- == 1; | |
7340 v6 += this->uTargetSurfacePitch - v20; | |
7341 } | |
7342 while ( !v17 ); | |
7343 } | |
7344 } | |
7345 } | |
2069 | 7346 }*/ |
7347 } | |
7348 | |
7349 //----- (004A68EF) -------------------------------------------------------- | |
7350 void Render::DrawMasked(signed int a2, signed int a3, Texture *pTexture, unsigned __int16 mask) | |
7351 { | |
7352 Texture *v4; // edi@2 | |
7353 unsigned int v5; // ebx@4 | |
7354 //unsigned __int16 *v6; // eax@4 | |
7355 signed int v7; // edx@5 | |
7356 int v8; // edx@6 | |
7357 signed int v9; // edx@7 | |
7358 int v10; // edx@8 | |
7359 signed int v11; // edx@9 | |
7360 signed int v12; // esi@12 | |
7361 signed int v13; // esi@15 | |
7362 unsigned int v14; // edx@17 | |
7363 signed int v15; // esi@18 | |
7364 unsigned __int8 *v16; // ebx@22 | |
7365 char v17; // zf@28 | |
7366 int v18; // [sp+10h] [bp-10h]@4 | |
7367 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
7368 int v20; // [sp+1Ch] [bp-4h]@4 | |
7369 int v21; // [sp+28h] [bp+8h]@24 | |
7370 unsigned int v22; // [sp+2Ch] [bp+Ch]@22 | |
7371 unsigned int pTexturea; // [sp+30h] [bp+10h]@11 | |
7372 | |
7373 if (!uNumSceneBegins || !pTexture) | |
7374 return; | |
7375 | |
7376 v4 = pTexture; | |
7377 | |
7378 if ( pTexture->pPalette16 ) | |
7379 { | |
7380 v5 = pTexture->uTextureHeight; | |
7381 //v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch]; | |
7382 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask; | |
7383 v20 = pTexture->uTextureWidth; | |
7384 v18 = pTexture->uTextureWidth; | |
7385 int clipped_out_x = a2; | |
7386 int clipped_out_y = a3; | |
7387 if ( this->bClip ) | |
7388 { | |
7389 v7 = this->uClipX; | |
7390 if ( a2 < v7 ) | |
7391 { | |
7392 v8 = v7 - a2; | |
7393 v19 += v8; | |
7394 v20 += a2 - this->uClipX; | |
7395 //v6 += v8; | |
7396 clipped_out_x = uClipX; | |
7397 } | |
7398 v9 = this->uClipY; | |
7399 v5 = pTexture->uTextureHeight; | |
7400 if ( a3 < v9 ) | |
7401 { | |
7402 v10 = v9 - a3; | |
7403 v19 += v18 * v10; | |
7404 v5 = a3 - this->uClipY + pTexture->uTextureHeight; | |
7405 v4 = pTexture; | |
7406 //v6 += this->uTargetSurfacePitch * v10; | |
7407 clipped_out_y = uClipY; | |
7408 } | |
7409 v11 = this->uClipX; | |
7410 if ( v11 < a2 ) | |
7411 v11 = a2; | |
7412 pTexturea = this->uClipZ; | |
7413 if ( v11 + v20 > (signed int)pTexturea ) | |
7414 { | |
7415 v12 = this->uClipX; | |
7416 if ( v12 < a2 ) | |
7417 v12 = a2; | |
7418 v20 = pTexturea - v12; | |
7419 } | |
7420 v13 = this->uClipY; | |
7421 if ( v13 < a3 ) | |
7422 v13 = a3; | |
7423 v14 = this->uClipW; | |
7424 if ( (signed int)(v5 + v13) > (signed int)v14 ) | |
7425 { | |
7426 v15 = this->uClipY; | |
7427 if ( v15 < a3 ) | |
7428 v15 = a3; | |
7429 v5 = v14 - v15; | |
7430 } | |
7431 } | |
7432 | |
7433 v16 = v19; | |
7434 for (int y = 0; y < v5; ++y) | |
7435 { | |
7436 for (int x = 0; x < v20; ++x) | |
7437 { | |
7438 if ( *v16 ) | |
7439 WritePixel16(clipped_out_x + x, clipped_out_y + y, v4->pPalette16[*v16] & mask); | |
7440 ++v16; | |
7441 } | |
7442 v16 += v18 - v20; | |
7443 } | |
7444 | |
7445 /*if ( (signed int)v5 > 0 ) | |
7446 { | |
7447 v22 = v5; | |
7448 v16 = v19; | |
7449 do | |
7450 { | |
7451 if ( v20 > 0 ) | |
7452 { | |
7453 v21 = v20; | |
7454 do | |
7455 { | |
7456 if ( *v16 ) | |
7457 *v6 = this->uTargetGMask & v4->pPalette16[*v16]; | |
7458 ++v6; | |
7459 ++v16; | |
7460 --v21; | |
7461 } | |
7462 while ( v21 ); | |
7463 } | |
7464 v16 += v18 - v20; | |
7465 v17 = v22-- == 1; | |
7466 v6 += this->uTargetSurfacePitch - v20; | |
7467 } | |
7468 while ( !v17 ); | |
7469 }*/ | |
7470 } | |
7471 } | |
7472 | |
0 | 7473 |
7474 //----- (004A65CC) -------------------------------------------------------- | |
7475 void Render::_4A65CC(unsigned int x, unsigned int y, Texture *a4, Texture *a5, int a6, int a7, int a8) | |
7476 { | |
2198 | 7477 unsigned int uHeight; // edi@6 |
0 | 7478 unsigned int v14; // edx@11 |
7479 unsigned int v16; // edx@14 | |
7480 unsigned int v17; // edx@17 | |
7481 unsigned int v19; // edx@20 | |
7482 int v20; // eax@27 | |
7483 int v21; // edx@29 | |
7484 int v23; // [sp+Ch] [bp-Ch]@24 | |
7485 unsigned __int8 *v24; // [sp+14h] [bp-4h]@6 | |
7486 int xa; // [sp+20h] [bp+8h]@26 | |
7487 unsigned int ya; // [sp+24h] [bp+Ch]@24 | |
2198 | 7488 int Width; // [sp+2Ch] [bp+14h]@6 |
0 | 7489 |
7490 if ( this->uNumSceneBegins && a4 && a4->pPalette16 && a5 && a5->pPalette16 ) | |
7491 { | |
710 | 7492 v24 = a4->pLevelOfDetail0_prolly_alpha_mask; |
2198 | 7493 Width = a4->uTextureWidth; |
7494 uHeight = a4->uTextureHeight; | |
2069 | 7495 int clipped_out_x = x; |
7496 int clipped_out_y = y; | |
0 | 7497 if ( this->bClip ) |
7498 { | |
2198 | 7499 if ( (signed int)x < (signed int)this->uClipX ) |
7500 { | |
7501 v24 += this->uClipX - x; | |
7502 Width += x - this->uClipX; | |
2069 | 7503 clipped_out_x = uClipX; |
0 | 7504 } |
2198 | 7505 if ( (signed int)y < (signed int)this->uClipY ) |
7506 { | |
7507 v24 += a4->uTextureWidth * (this->uClipY - y); | |
7508 uHeight = y - this->uClipY + a4->uTextureHeight; | |
2069 | 7509 clipped_out_y = uClipY; |
0 | 7510 } |
7511 v14 = this->uClipX; | |
2198 | 7512 if ( (signed int)this->uClipX < (signed int)x ) |
0 | 7513 v14 = x; |
2198 | 7514 if ( (signed int)(Width + v14) > (signed int)this->uClipZ ) |
0 | 7515 { |
7516 v16 = this->uClipX; | |
2198 | 7517 if ( (signed int)this->uClipX < (signed int)x ) |
0 | 7518 v16 = x; |
2198 | 7519 Width = this->uClipZ - v16; |
0 | 7520 } |
7521 v17 = this->uClipY; | |
2198 | 7522 if ( (signed int)this->uClipY < (signed int)y ) |
0 | 7523 v17 = y; |
2198 | 7524 if ( (signed int)(uHeight + v17) > (signed int)this->uClipW ) |
0 | 7525 { |
7526 v19 = this->uClipY; | |
7527 if ( (signed int)v19 < (signed int)y ) | |
7528 v19 = y; | |
2198 | 7529 uHeight = this->uClipW - v19; |
7530 } | |
7531 } | |
7532 | |
7533 for (int dy = 0; dy < uHeight; ++dy) | |
7534 { | |
7535 for (int dx = 0; dx < Width; ++dx) | |
7536 { | |
7537 v20 = *v24; | |
7538 if ( v20 >= a7 && v20 <= a8 ) | |
7539 { | |
7540 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7541 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7542 v21 = 2 * a8 - v21 - a7; | |
7543 WritePixel16(clipped_out_x + dx, clipped_out_y + dy, a4->pPalette16[v21]); | |
7544 } | |
7545 ++v24; | |
7546 } | |
7547 v24 += a4->uTextureWidth - Width; | |
2069 | 7548 } |
7549 /*if ( (signed int)v9 > 0 ) | |
0 | 7550 { |
7551 ya = v9; | |
7552 v23 = v22 - v27; | |
7553 do | |
7554 { | |
7555 if ( v27 > 0 ) | |
7556 { | |
7557 xa = v27; | |
7558 do | |
7559 { | |
7560 v20 = *v24; | |
7561 if ( v20 >= a7 && v20 <= a8 ) | |
7562 { | |
7563 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7564 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7565 v21 = 2 * a8 - v21 - a7; | |
7566 *v8 = a4->pPalette16[v21]; | |
7567 } | |
7568 ++v8; | |
7569 ++v24; | |
7570 --xa; | |
7571 } | |
7572 while ( xa ); | |
7573 } | |
7574 v8 += this->uTargetSurfacePitch - v27; | |
7575 v24 += v23; | |
7576 --ya; | |
7577 } | |
7578 while ( ya ); | |
2069 | 7579 }*/ |
0 | 7580 } |
7581 } | |
7582 | |
7583 //----- (004A63E6) -------------------------------------------------------- | |
1455 | 7584 void Render::DrawAura(unsigned int a2, unsigned int a3, Texture *a4, Texture *a5, int a6, int a7, int a8) |
0 | 7585 { |
7586 unsigned int v14; // edx@11 | |
7587 unsigned int v16; // edx@14 | |
7588 unsigned int v17; // edx@17 | |
7589 unsigned int v19; // edx@20 | |
7590 int v20; // eax@27 | |
7591 int v21; // edx@29 | |
7592 int v23; // [sp+Ch] [bp-Ch]@24 | |
2198 | 7593 int Height; // [sp+10h] [bp-8h]@6 |
7594 int Width; // [sp+14h] [bp-4h]@6 | |
0 | 7595 int v27; // [sp+24h] [bp+Ch]@23 |
7596 unsigned __int8 *v28; // [sp+28h] [bp+10h]@6 | |
7597 | |
7598 if ( this->uNumSceneBegins ) | |
7599 { | |
7600 if ( a4 ) | |
7601 { | |
7602 if ( a4->pPalette16 ) | |
7603 { | |
7604 if ( a5 ) | |
7605 { | |
7606 if ( a5->pPalette16 ) | |
7607 { | |
710 | 7608 v28 = a4->pLevelOfDetail0_prolly_alpha_mask; |
2198 | 7609 Width = a4->uTextureWidth; |
7610 Height = a4->uTextureHeight; | |
2069 | 7611 int clipped_out_x = a2; |
7612 int clipped_out_y = a3; | |
0 | 7613 if ( this->bClip ) |
7614 { | |
2198 | 7615 if ( (signed int)a2 < (signed int)this->uClipX ) |
0 | 7616 { |
2198 | 7617 v28 += this->uClipX - a2; |
7618 Width += a2 - this->uClipX; | |
2069 | 7619 clipped_out_x = uClipX; |
0 | 7620 } |
2198 | 7621 |
7622 if ( (signed int)a3 < (signed int)this->uClipY ) | |
0 | 7623 { |
2198 | 7624 v28 += a4->uTextureWidth * (this->uClipY - a3); |
7625 Height += a3 - this->uClipY; | |
2069 | 7626 clipped_out_y = uClipY; |
0 | 7627 } |
2198 | 7628 |
0 | 7629 v14 = this->uClipX; |
2198 | 7630 if ( (signed int)this->uClipX < (signed int)a2 ) |
0 | 7631 v14 = a2; |
2198 | 7632 if ( (signed int)(Width + v14) > (signed int)this->uClipZ ) |
0 | 7633 { |
7634 v16 = this->uClipX; | |
2198 | 7635 if ( (signed int)this->uClipX < (signed int)a2 ) |
0 | 7636 v16 = a2; |
2198 | 7637 Width = this->uClipZ - v16; |
0 | 7638 } |
2198 | 7639 |
0 | 7640 v17 = this->uClipY; |
2198 | 7641 if ( (signed int)this->uClipY < (signed int)a3 ) |
0 | 7642 v17 = a3; |
2198 | 7643 if ( (signed int)(Height + v17) > (signed int)this->uClipW ) |
0 | 7644 { |
7645 v19 = this->uClipY; | |
2198 | 7646 if ( (signed int)this->uClipY < (signed int)a3 ) |
0 | 7647 v19 = a3; |
2198 | 7648 Height = this->uClipW - v19; |
0 | 7649 } |
7650 } | |
2069 | 7651 |
0 | 7652 v27 = 0; |
2198 | 7653 for (int y = 0; y < Height; ++y) |
2069 | 7654 { |
2198 | 7655 for (int x = 0; x < Width; ++x) |
2069 | 7656 { |
7657 if ( *v28 ) | |
7658 { | |
2101 | 7659 v20 = *(&a5->pLevelOfDetail0_prolly_alpha_mask[x & a5->uWidthMinus1] + a5->uTextureWidth * (v27 & a5->uHeightMinus1)); |
2069 | 7660 if ( v20 >= a7 ) |
7661 { | |
7662 if ( v20 <= a8 ) | |
7663 { | |
7664 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7665 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7666 v21 = 2 * a8 - v21 - a7; | |
7667 //v9 = a5; | |
7668 //*v10 = a5->pPalette16[v21]; | |
7669 WritePixel16(clipped_out_x + x, clipped_out_y + y, a5->pPalette16[v21]); | |
7670 } | |
7671 } | |
7672 } | |
7673 v28++; | |
7674 } | |
2198 | 7675 v28 += a4->uTextureWidth - Width; |
2069 | 7676 } |
7677 | |
7678 /*if ( v24 > 0 ) | |
0 | 7679 { |
7680 v23 = v22 - v25; | |
7681 do | |
7682 { | |
7683 for ( i = 0; i < v25; ++v28 ) | |
7684 { | |
7685 if ( *v28 ) | |
7686 { | |
710 | 7687 v20 = *(&v9->pLevelOfDetail0_prolly_alpha_mask[i & v9->uWidthMinus1] + v9->uTextureWidth * (v27 & v9->uHeightMinus1)); |
0 | 7688 if ( v20 >= a7 ) |
7689 { | |
7690 if ( v20 <= a8 ) | |
7691 { | |
7692 v21 = a7 + (a6 + v20) % (2 * (a8 - a7)); | |
7693 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 ) | |
7694 v21 = 2 * a8 - v21 - a7; | |
7695 v9 = a5; | |
7696 *v10 = a5->pPalette16[v21]; | |
7697 } | |
7698 } | |
7699 } | |
7700 ++i; | |
7701 ++v10; | |
7702 } | |
7703 ++v27; | |
7704 v10 += this->uTargetSurfacePitch - v25; | |
7705 v28 += v23; | |
7706 } | |
7707 while ( v27 < v24 ); | |
2069 | 7708 }*/ |
7709 | |
0 | 7710 } |
7711 } | |
7712 } | |
7713 } | |
7714 } | |
7715 } | |
7716 | |
7717 //----- (004A6274) -------------------------------------------------------- | |
7718 void Render::DrawTextureTransparent(unsigned int uX, unsigned int uY, Texture *pTexture) | |
7719 { | |
7720 int uHeight; // ebx@4 | |
7721 unsigned int v11; // edx@9 | |
7722 unsigned int v12; // esi@12 | |
7723 unsigned int v13; // esi@15 | |
7724 unsigned int v15; // esi@18 | |
7725 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
7726 int uWidth; // [sp+1Ch] [bp-4h]@4 | |
7727 | |
7728 if ( this->uNumSceneBegins ) | |
7729 { | |
7730 if ( pTexture ) | |
7731 { | |
7732 if ( pTexture->pPalette16 ) | |
7733 { | |
7734 uHeight = pTexture->uTextureHeight; | |
710 | 7735 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7736 uWidth = pTexture->uTextureWidth; |
2069 | 7737 |
7738 int clipped_out_x = uX; | |
7739 int clipped_out_y = uY; | |
0 | 7740 if ( this->bClip ) |
7741 { | |
2198 | 7742 if ( (signed int)uX < (signed int)this->uClipX ) |
0 | 7743 { |
2198 | 7744 v19 += this->uClipX - uX; |
0 | 7745 uWidth += uX - this->uClipX; |
2069 | 7746 clipped_out_x = uClipX; |
0 | 7747 } |
2198 | 7748 |
0 | 7749 uHeight = pTexture->uTextureHeight; |
2198 | 7750 if ( (signed int)uY < (signed int)this->uClipY ) |
0 | 7751 { |
2198 | 7752 v19 += pTexture->uTextureWidth * (this->uClipY - uY); |
0 | 7753 uHeight = uY - this->uClipY + pTexture->uTextureHeight; |
2069 | 7754 clipped_out_y = uClipY; |
0 | 7755 } |
7756 v11 = this->uClipX; | |
2198 | 7757 if ( (signed int)this->uClipX < (signed int)uX ) |
0 | 7758 v11 = uX; |
2198 | 7759 |
7760 if ( (signed int)(v11 + uWidth) > (signed int)this->uClipZ ) | |
0 | 7761 { |
7762 v12 = this->uClipX; | |
2198 | 7763 if ( (signed int)this->uClipX < (signed int)uX ) |
0 | 7764 v12 = uX; |
2198 | 7765 uWidth = this->uClipZ - v12; |
0 | 7766 } |
7767 v13 = this->uClipY; | |
2198 | 7768 if ( (signed int)this->uClipY < (signed int)uY ) |
0 | 7769 v13 = uY; |
2198 | 7770 |
7771 if ( (signed int)(uHeight + v13) > (signed int)this->uClipW ) | |
0 | 7772 { |
7773 v15 = this->uClipY; | |
2198 | 7774 if ( (signed int)this->uClipY < (signed int)uY ) |
0 | 7775 v15 = uY; |
2198 | 7776 uHeight = this->uClipW - v15; |
0 | 7777 } |
7778 } | |
2198 | 7779 |
2069 | 7780 for (int y = 0; y < uHeight; ++y) |
7781 { | |
7782 for (int x = 0; x < uWidth; ++x) | |
7783 { | |
2198 | 7784 if ( *v19 ) |
7785 WritePixel16(clipped_out_x + x, clipped_out_y + y, pTexture->pPalette16[*v19]); | |
7786 ++v19; | |
2069 | 7787 } |
2198 | 7788 v19 += pTexture->uTextureWidth - uWidth; |
2069 | 7789 } |
7790 /*if ( (signed int)uHeight > 0 ) | |
0 | 7791 { |
7792 uYa = uHeight; | |
7793 v16 = v19; | |
7794 do | |
7795 { | |
7796 if ( uWidth > 0 ) | |
7797 { | |
7798 uXa = uWidth; | |
7799 do | |
7800 { | |
7801 if ( *v16 ) | |
7802 *v6 = pCurrentTexture->pPalette16[*v16]; | |
7803 ++v6; | |
7804 ++v16; | |
7805 } | |
7806 while ( uXa-- !=1 ); | |
7807 } | |
7808 v16 += v18 - uWidth; | |
7809 uFlag = uYa-- == 1; | |
7810 v6 += this->uTargetSurfacePitch - uWidth; | |
7811 } | |
7812 while ( !uFlag ); | |
2069 | 7813 }*/ |
0 | 7814 } |
7815 } | |
7816 } | |
7817 } | |
7818 | |
7819 //----- (004A612A) -------------------------------------------------------- | |
710 | 7820 void Render::DrawMaskToZBuffer(signed int uOutX, unsigned int uOutY, Texture *pTexture, int zVal) |
0 | 7821 { |
7822 Texture *v5; // eax@2 | |
7823 unsigned int v6; // edx@3 | |
7824 int v7; // ebx@3 | |
7825 int v8; // edi@3 | |
7826 signed int v9; // eax@4 | |
7827 int v10; // eax@5 | |
7828 unsigned int v11; // esi@6 | |
7829 signed int v12; // esi@8 | |
7830 unsigned int v13; // eax@10 | |
7831 signed int v14; // esi@11 | |
7832 unsigned int v15; // esi@14 | |
7833 unsigned int v16; // eax@16 | |
7834 unsigned int v17; // ecx@17 | |
7835 int v18; // edx@23 | |
7836 int v19; // [sp+Ch] [bp-Ch]@3 | |
7837 int v20; // [sp+10h] [bp-8h]@3 | |
7838 int uOutXa; // [sp+20h] [bp+8h]@21 | |
7839 unsigned __int8 *uOutYa; // [sp+24h] [bp+Ch]@3 | |
7840 int *pZBuffer; // [sp+28h] [bp+10h]@3 | |
7841 | |
7842 if ( this->uNumSceneBegins ) | |
7843 { | |
7844 v5 = pTexture; | |
7845 if ( pTexture ) | |
7846 { | |
7847 v6 = uOutY; | |
7848 v7 = pTexture->uTextureHeight; | |
7849 pZBuffer = &this->pActiveZBuffer[uOutX + 640 * uOutY]; | |
710 | 7850 uOutYa = v5->pLevelOfDetail0_prolly_alpha_mask; |
0 | 7851 v8 = v5->uTextureWidth; |
7852 v20 = v5->uTextureWidth; | |
7853 v19 = v5->uTextureWidth; | |
7854 if ( this->bClip ) | |
7855 { | |
7856 v9 = this->uClipX; | |
7857 if ( uOutX < v9 ) | |
7858 { | |
7859 v10 = v9 - uOutX; | |
7860 uOutYa += v10; | |
7861 v8 += uOutX - this->uClipX; | |
7862 v20 = v8; | |
7863 pZBuffer += v10; | |
7864 } | |
7865 v11 = this->uClipY; | |
7866 if ( (signed int)v6 < (signed int)v11 ) | |
7867 { | |
7868 uOutYa += v19 * (v11 - v6); | |
7869 v7 += v6 - v11; | |
7870 pZBuffer += 640 * (v11 - v6); | |
7871 v8 = v20; | |
7872 } | |
7873 v12 = this->uClipX; | |
7874 if ( v12 < uOutX ) | |
7875 v12 = uOutX; | |
7876 v13 = this->uClipZ; | |
7877 if ( v8 + v12 > (signed int)v13 ) | |
7878 { | |
7879 v14 = this->uClipX; | |
7880 if ( v14 < uOutX ) | |
7881 v14 = uOutX; | |
7882 v8 = v13 - v14; | |
7883 } | |
7884 v15 = this->uClipY; | |
7885 if ( (signed int)v15 < (signed int)v6 ) | |
7886 v15 = v6; | |
7887 v16 = this->uClipW; | |
7888 if ( (signed int)(v7 + v15) > (signed int)v16 ) | |
7889 { | |
7890 v17 = this->uClipY; | |
7891 if ( (signed int)v17 >= (signed int)v6 ) | |
7892 v6 = v17; | |
7893 v7 = v16 - v6; | |
7894 } | |
7895 } | |
7896 if ( v7 > 0 ) | |
7897 { | |
7898 uOutXa = v7; | |
7899 do | |
7900 { | |
7901 if ( v8 > 0 ) | |
7902 { | |
7903 v18 = v8; | |
7904 do | |
7905 { | |
7906 if ( *uOutYa ) | |
7907 *pZBuffer = zVal; | |
7908 ++pZBuffer; | |
7909 ++uOutYa; | |
7910 --v18; | |
7911 } | |
7912 while ( v18 ); | |
7913 } | |
7914 pZBuffer += 640 - v8; | |
7915 uOutYa += v19 - v8; | |
7916 --uOutXa; | |
7917 } | |
7918 while ( uOutXa ); | |
7919 } | |
7920 } | |
7921 } | |
7922 } | |
7923 | |
7924 //----- (004A601E) -------------------------------------------------------- | |
991 | 7925 void Render::ZBuffer_Fill_2(signed int a2, signed int a3, Texture *pTexture, int a5) |
0 | 7926 { |
7927 signed int v5; // edx@3 | |
7928 int v6; // ebx@3 | |
7929 int v7; // esi@3 | |
7930 void *v8; // esi@3 | |
7931 unsigned int v9; // eax@4 | |
7932 unsigned int v10; // eax@6 | |
7933 signed int v11; // edi@8 | |
7934 unsigned int v12; // eax@10 | |
7935 signed int v13; // edi@11 | |
7936 unsigned int v14; // edi@14 | |
7937 unsigned int v15; // eax@16 | |
7938 unsigned int v16; // ecx@17 | |
7939 int v17; // [sp+18h] [bp+Ch]@3 | |
7940 unsigned int pTexturea; // [sp+1Ch] [bp+10h]@3 | |
7941 | |
7942 if ( this->uNumSceneBegins && pTexture ) | |
7943 { | |
7944 v5 = a3; | |
7945 v6 = pTexture->uTextureHeight; | |
7946 v7 = 5 * a3; | |
7947 v17 = pTexture->uTextureHeight; | |
7948 v8 = &this->pActiveZBuffer[a2 + (v7 << 7)]; | |
7949 pTexturea = pTexture->uTextureWidth; | |
7950 if ( this->bClip ) | |
7951 { | |
7952 v9 = this->uClipX; | |
7953 if ( a2 < (signed int)v9 ) | |
7954 { | |
7955 pTexturea += a2 - v9; | |
7956 v8 = (char *)v8 + 4 * (v9 - a2); | |
7957 } | |
7958 v10 = this->uClipY; | |
7959 if ( v5 < (signed int)v10 ) | |
7960 { | |
7961 v17 += v5 - v10; | |
7962 v8 = (char *)v8 + 2560 * (v10 - v5); | |
7963 } | |
7964 v11 = this->uClipX; | |
7965 if ( v11 < a2 ) | |
7966 v11 = a2; | |
7967 v12 = this->uClipZ; | |
7968 if ( (signed int)(pTexturea + v11) > (signed int)v12 ) | |
7969 { | |
7970 v13 = this->uClipX; | |
7971 if ( v13 < a2 ) | |
7972 v13 = a2; | |
7973 pTexturea = v12 - v13; | |
7974 } | |
7975 v14 = this->uClipY; | |
7976 if ( (signed int)v14 < v5 ) | |
7977 v14 = v5; | |
7978 v6 = v17; | |
7979 v15 = this->uClipW; | |
7980 if ( (signed int)(v17 + v14) > (signed int)v15 ) | |
7981 { | |
7982 v16 = this->uClipY; | |
7983 if ( (signed int)v16 < v5 ) | |
7984 v16 = v5; | |
7985 v6 = v15 - v16; | |
7986 } | |
7987 } | |
7988 if ( v6 > 0 ) | |
7989 { | |
7990 do | |
7991 { | |
7992 if ( (signed int)pTexturea > 0 ) | |
7993 { | |
7994 memset32(v8, a5, pTexturea); | |
7995 v8 = (char *)v8 + 4 * pTexturea; | |
7996 } | |
7997 v8 = (char *)v8 + 4 * (640 - pTexturea); | |
7998 --v6; | |
7999 } | |
8000 while ( v6 ); | |
8001 } | |
8002 } | |
8003 } | |
8004 | |
8005 //----- (004A5EB2) -------------------------------------------------------- | |
8006 void Render::DrawTextureIndexed(unsigned int uX, unsigned int uY, Texture *a4) | |
8007 { | |
2069 | 8008 int v5; // ebx@4 |
0 | 8009 unsigned int v8; // edx@6 |
8010 unsigned int v10; // edx@8 | |
8011 unsigned int v11; // edx@9 | |
8012 unsigned int v12; // esi@12 | |
8013 unsigned int v13; // esi@15 | |
8014 unsigned int v15; // esi@18 | |
8015 char v17; // zf@26 | |
8016 int v18; // [sp+10h] [bp-10h]@4 | |
8017 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4 | |
8018 int v20; // [sp+1Ch] [bp-4h]@4 | |
8019 int uXa; // [sp+28h] [bp+8h]@24 | |
8020 unsigned int uYa; // [sp+2Ch] [bp+Ch]@22 | |
8021 | |
8022 if ( this->uNumSceneBegins ) | |
8023 { | |
8024 if ( a4 ) | |
8025 { | |
8026 if ( a4->pPalette16 ) | |
8027 { | |
8028 v5 = a4->uTextureHeight; | |
2069 | 8029 //pTarget = &this->pTargetSurface[uX + uY * this->uTargetSurfacePitch]; |
710 | 8030 v19 = a4->pLevelOfDetail0_prolly_alpha_mask; |
0 | 8031 v20 = a4->uTextureWidth; |
8032 v18 = a4->uTextureWidth; | |
2069 | 8033 |
8034 int clipped_out_x = uX; | |
8035 int clipped_out_y = uY; | |
0 | 8036 if ( this->bClip ) |
8037 { | |
2198 | 8038 if ( (signed int)uX < (signed int)this->uClipX ) |
0 | 8039 { |
2198 | 8040 v8 = this->uClipX - uX; |
0 | 8041 v19 += v8; |
8042 v20 += uX - this->uClipX; | |
2069 | 8043 clipped_out_x = uClipX; |
0 | 8044 } |
2198 | 8045 |
0 | 8046 v5 = a4->uTextureHeight; |
2198 | 8047 if ( (signed int)uY < (signed int)this->uClipY ) |
0 | 8048 { |
2198 | 8049 v10 = this->uClipY - uY; |
0 | 8050 v19 += v18 * v10; |
8051 v5 = uY - this->uClipY + a4->uTextureHeight; | |
2198 | 8052 //v4 = a4; |
2069 | 8053 clipped_out_y = uClipY; |
0 | 8054 } |
2198 | 8055 |
0 | 8056 v11 = this->uClipX; |
8057 if ( (signed int)v11 < (signed int)uX ) | |
8058 v11 = uX; | |
2198 | 8059 |
8060 if ( (signed int)(v11 + v20) > (signed int)this->uClipZ ) | |
0 | 8061 { |
8062 v12 = this->uClipX; | |
8063 if ( (signed int)v12 < (signed int)uX ) | |
8064 v12 = uX; | |
2198 | 8065 v20 = this->uClipZ - v12; |
0 | 8066 } |
2198 | 8067 |
0 | 8068 v13 = this->uClipY; |
8069 if ( (signed int)v13 < (signed int)uY ) | |
8070 v13 = uY; | |
2069 | 8071 |
8072 if ( (signed int)(v5 + v13) > (signed int)uClipW ) | |
0 | 8073 { |
8074 v15 = this->uClipY; | |
8075 if ( (signed int)v15 < (signed int)uY ) | |
8076 v15 = uY; | |
2069 | 8077 v5 = uClipW - v15; |
0 | 8078 } |
8079 } | |
2198 | 8080 |
2069 | 8081 for (int y = 0; y < v5; ++y) |
8082 { | |
8083 for (int x = 0; x < v20; ++x) | |
8084 { | |
2198 | 8085 if ( a4->pPalette16[*v19] != 0x7FF )// 2047 |
8086 WritePixel16(clipped_out_x + x, clipped_out_y + y, a4->pPalette16[*v19]); | |
8087 ++v19; | |
2069 | 8088 } |
2198 | 8089 v19 += v18 - v20; |
2069 | 8090 } |
8091 /*if ( (signed int)v5 > 0 ) | |
0 | 8092 { |
8093 uYa = v5; | |
8094 v16 = v19; | |
8095 do | |
8096 { | |
8097 if ( v20 > 0 ) | |
8098 { | |
8099 uXa = v20; | |
8100 do | |
8101 { | |
8102 *pTarget = v4->pPalette16[*v16]; | |
8103 ++pTarget; | |
8104 ++v16; | |
8105 --uXa; | |
8106 } | |
8107 while ( uXa ); | |
8108 } | |
8109 v16 += v18 - v20; | |
8110 v17 = uYa-- == 1; | |
8111 pTarget += this->uTargetSurfacePitch - v20; | |
8112 } | |
8113 while ( !v17 ); | |
2069 | 8114 }*/ |
0 | 8115 } |
8116 } | |
8117 } | |
8118 } | |
8119 | |
8120 //----- (004667E9) -------------------------------------------------------- | |
8121 void Render::ChangeBetweenWinFullscreenModes() | |
8122 { | |
8123 float v0; // ST14_4@17 | |
8124 int v4; // edx@26 | |
8125 ObjectDesc *v5; // eax@26 | |
8126 RGBTexture *v6; // esi@33 | |
8127 const char *v8; // [sp-4h] [bp-28h]@33 | |
8128 struct tagRECT Rect; // [sp+14h] [bp-10h]@15 | |
8129 | |
2061 | 8130 /*if ( !pRenderer->bWindowMode && (dword_6BE364_game_settings_1 & 2) ) |
0 | 8131 { |
1458 | 8132 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 | 8133 return; |
2061 | 8134 }*/ |
2154 | 8135 if ( pRenderer->bWindowMode || pRenderer->pRenderD3D->pAvailableDevices->bIsDeviceCompatible ) |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8136 { |
0 | 8137 if ( pEventTimer->bPaused ) |
2061 | 8138 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0800; |
0 | 8139 else |
8140 pEventTimer->Pause(); | |
8141 if ( pMiscTimer->bPaused ) | |
2061 | 8142 dword_6BE364_game_settings_1 |= GAME_SETTINGS_1000; |
0 | 8143 else |
8144 pMiscTimer->Pause(); | |
8145 pMouse->bActive = 0; | |
8146 if ( pRenderer->pRenderD3D ) | |
8147 { | |
8148 pBitmaps_LOD->ReleaseHardwareTextures(); | |
8149 pSprites_LOD->ReleaseAll(); | |
8150 } | |
8151 if ( pRenderer->bWindowMode ) | |
8152 { | |
1802 | 8153 //SetMenu(hWnd, 0); |
8154 //SetWindowLongA(hWnd, -20, 0); | |
8155 //SetWindowLongA(hWnd, -16, 0x10000000u); | |
8156 window->SetFullscreenMode(); | |
8157 pRenderer->InitializeFullscreen(); | |
0 | 8158 v0 = (double)(signed int)uGammaPos * 0.1 + 0.6; |
8159 pGame->pGammaController->Initialize(v0); | |
8160 } | |
8161 else | |
8162 { | |
1802 | 8163 //ClipCursor(0); |
8164 window->SetWindowedMode(window->GetWidth(), window->GetHeight()); | |
8165 pRenderer->SwitchToWindow(); | |
0 | 8166 } |
8167 if ( pRenderer->pRenderD3D ) | |
8168 { | |
8169 pBitmaps_LOD->_410423_move_textures_to_device(); | |
8170 pSprites_LOD->MoveSpritesToVideoMemory(); | |
8171 } | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8172 if (!( pPaletteManager->uNumTargetBBits == pRenderer->uTargetBBits |
0 | 8173 && pPaletteManager->uNumTargetGBits == pRenderer->uTargetGBits |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8174 && pPaletteManager->uNumTargetRBits == pRenderer->uTargetRBits )) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8175 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8176 pPaletteManager->SetColorChannelInfo(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8177 pPaletteManager->RecalculateAll(); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8178 pBitmaps_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8179 pIcons_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8180 for (int i = 0; i < pObjectList->uNumObjects; i++) |
0 | 8181 { |
8182 BYTE3(v4) = 0; | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8183 v5 = &pObjectList->pObjects[i]; |
0 | 8184 *(short *)((char *)&v4 + 1) = v5->uParticleTrailColorR; |
8185 LOBYTE(v4) = v5->uParticleTrailColorG; | |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1110
diff
changeset
|
8186 v5->uParticleTrailColor = v5->uParticleTrailColorB | (v4 << 8); |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8187 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8188 SetUserInterface(pParty->alignment, true); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8189 if ( pVideoPlayer->pVideoFrame.pPixels ) |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8190 pVideoPlayer->pVideoFrame.Load(pVideoPlayer->pVideoFrameTextureFilename, 1); |
2006 | 8191 if ( sCurrentMenuID != MENU_CREATEPARTY ) |
8192 { | |
8193 if ( sCurrentMenuID == MENU_CREDITSPROC ) | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8194 dword_A74C88 = 1; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8195 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8196 else |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8197 { |
2006 | 8198 if ( sCurrentMenuID ) |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8199 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8200 v6 = &pTexture_PCX; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8201 pTexture_PCX.Release(); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8202 v8 = "makeme.pcx"; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8203 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8204 else |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8205 { |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8206 v6 = &pTexture_PCX; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8207 pTexture_PCX.Release(); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8208 v8 = "title.pcx"; |
2006 | 8209 if ( sCurrentMenuID ) |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8210 v8 = "lsave640.pcx"; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8211 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8212 v6->Load(v8, 0); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8213 } |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8214 } |
0 | 8215 viewparams->bRedrawGameUI = 1; |
688 | 8216 viewparams->InitGrayPalette(); |
0 | 8217 pMouse->SetCurrentCursorBitmap(); |
1802 | 8218 /*if ( pRenderer->bWindowMode ) |
0 | 8219 { |
1655 | 8220 //MoveWindow(hWnd, uWindowX, uWindowY, uWindowWidth, uWindowHeight, 0); |
8221 CenterWindowAndAdjustSize(hWnd, windowed_mode_width, windowed_mode_height); | |
1586 | 8222 ShowWindow(hWnd, SW_SHOWNORMAL); |
1802 | 8223 }*/ |
8224 pMouse->bActive = true; | |
0 | 8225 if ( pVideoPlayer->AnyMovieLoaded() ) |
898 | 8226 pVideoPlayer->SelectMovieType(); |
2061 | 8227 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_0800) |
8228 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_0800; | |
0 | 8229 else |
8230 pEventTimer->Resume(); | |
2061 | 8231 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_1000) |
8232 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_1000; | |
0 | 8233 else |
8234 pMiscTimer->Resume(); | |
8235 } | |
8236 } | |
8237 | |
8238 | |
8239 //----- (004524D8) -------------------------------------------------------- | |
8240 HWLTexture *RenderHWLContainer::LoadTexture(const char *pName, int bMipMaps) | |
8241 { | |
1583 | 8242 //int v11; // eax@13 |
8243 //int v12; // ecx@13 | |
0 | 8244 void *v13; // eax@13 |
1583 | 8245 //unsigned __int8 v14; // zf@13 |
8246 //unsigned __int8 v15; // sf@13 | |
0 | 8247 int v16; // esi@14 |
8248 int v17; // ecx@16 | |
8249 int v18; // esi@16 | |
8250 unsigned __int16 *v19; // eax@16 | |
8251 int v20; // edx@16 | |
8252 int v21; // ecx@16 | |
8253 int v22; // eax@16 | |
8254 int v23; // esi@16 | |
8255 unsigned __int16 *v26; // [sp+24h] [bp-10h]@13 | |
8256 int v27; // [sp+28h] [bp-Ch]@14 | |
8257 int v28; // [sp+2Ch] [bp-8h]@13 | |
8258 int pDestb; // [sp+3Ch] [bp+8h]@15 | |
8259 | |
8260 //v3 = this; | |
8261 //sprintf(Str1, "%s", pName); | |
8262 //v4 = uNumItems; | |
8263 if (!uNumItems) | |
8264 return nullptr; | |
8265 | |
8266 //{ | |
8267 //v5 = 0, pDesta = uNumItems; | |
8268 uint idx1 = 0, | |
8269 idx2 = uNumItems; | |
8270 while (true) | |
8271 { | |
1980 | 8272 uint i = idx1 + (idx2 - idx1) / 2; |
8273 | |
8274 int res = _stricmp(pName, pSpriteNames[i]); | |
0 | 8275 if (!res) |
8276 { | |
8277 fseek(pFile, pSpriteOffsets[i], SEEK_SET); | |
8278 break; | |
8279 } | |
8280 else if (res < 0) | |
8281 idx2 = idx1 + (idx2 - idx1) / 2; | |
8282 else | |
8283 idx1 = i + 1; | |
8284 | |
8285 if ( idx1 >= idx2 ) | |
8286 return false; | |
8287 } | |
8288 | |
8289 | |
8290 uint uCompressedSize = 0; | |
8291 fread(&uCompressedSize, 4, 1, pFile); | |
8292 | |
1980 | 8293 HWLTexture* pTex = new HWLTexture; |
670 | 8294 fread(&pTex->uBufferWidth, 4, 1, pFile); |
8295 fread(&pTex->uBufferHeight, 4, 1, pFile); | |
8296 fread(&pTex->uAreaWidth, 4, 1, pFile); | |
8297 fread(&pTex->uAreaHeigth, 4, 1, pFile); | |
0 | 8298 fread(&pTex->uWidth, 4, 1, pFile); |
8299 fread(&pTex->uHeight, 4, 1, pFile); | |
670 | 8300 fread(&pTex->uAreaX, 4, 1, pFile); |
8301 fread(&pTex->uAreaY, 4, 1, pFile); | |
0 | 8302 |
8303 pTex->pPixels = new unsigned __int16[pTex->uWidth * pTex->uHeight]; | |
8304 if (uCompressedSize) | |
8305 { | |
1980 | 8306 char* pCompressedData = new char[uCompressedSize]; |
0 | 8307 { |
8308 fread(pCompressedData, 1, uCompressedSize, pFile); | |
1980 | 8309 uint uDecompressedSize = pTex->uWidth * pTex->uHeight * sizeof(short); |
0 | 8310 zlib::MemUnzip(pTex->pPixels, &uDecompressedSize, pCompressedData, uCompressedSize); |
8311 } | |
8312 delete [] pCompressedData; | |
8313 } | |
8314 else | |
8315 fread(pTex->pPixels, 2, pTex->uWidth * pTex->uHeight, pFile); | |
8316 | |
1583 | 8317 if ( scale_hwls_to_half ) |
8318 { | |
8319 pTex->uHeight /= 2; | |
8320 pTex->uWidth /= 2; | |
8321 v13 = new unsigned __int16[pTex->uWidth * pTex->uHeight]; | |
0 | 8322 v28 = 0; |
8323 v26 = (unsigned __int16 *)v13; | |
1583 | 8324 if ( pTex->uHeight > 0 ) |
0 | 8325 { |
8326 v16 = pTex->uWidth; | |
8327 v27 = 1; | |
8328 do | |
8329 { | |
8330 pDestb = 0; | |
8331 if ( v16 > 0 ) | |
8332 { | |
8333 do | |
8334 { | |
8335 v17 = v16 * v27; | |
8336 v18 = v28 * v16; | |
8337 v19 = pTex->pPixels; | |
8338 v20 = pDestb + 2 * v18; | |
8339 v21 = (int)&v19[2 * (pDestb + v17)]; | |
8340 v22 = (int)&v19[2 * v20]; | |
8341 LOWORD(v20) = *(unsigned short *)(v21 + 2); | |
8342 LOWORD(v21) = *(unsigned short *)v21; | |
8343 v23 = pDestb++ + v18; | |
1583 | 8344 extern unsigned int __fastcall _452442_color_cvt(unsigned __int16 a1, unsigned __int16 a2, int a3, int a4); |
8345 v26[v23] = _452442_color_cvt(*(unsigned short *)v22, *(unsigned short *)(v22 + 2), v21, v20); | |
0 | 8346 v16 = pTex->uWidth; |
8347 } | |
8348 while (pDestb < pTex->uWidth); | |
8349 } | |
8350 ++v28; | |
8351 v27 += 2; | |
8352 } | |
8353 while ( v28 < (signed int)pTex->uHeight ); | |
8354 } | |
8355 delete [] pTex->pPixels; | |
8356 pTex->pPixels = v26; | |
8357 } | |
8358 return pTex; | |
8359 } | |
8360 | |
8361 //----- (0045271F) -------------------------------------------------------- | |
8362 bool RenderHWLContainer::Release() | |
8363 { | |
8364 __int32 v4; // eax@6 | |
8365 FILE *v5; // ST24_4@6 | |
8366 FILE *File; // [sp+4h] [bp-4h]@6 | |
8367 | |
1162 | 8368 if ( this->bDumpDebug) |
0 | 8369 { |
8370 File = fopen("logd3d.txt", "w"); | |
1162 | 8371 v4 = ftell(this->pFile); |
8372 v5 = this->pFile; | |
8373 this->uDataOffset = v4; | |
8374 fwrite(&this->uNumItems, 4u, 1u, v5); | |
8375 for (int i = 0; i < this->uNumItems; i++) | |
8376 { | |
8377 fwrite(this->pSpriteNames[i], 1u, 0x14u, this->pFile); | |
8378 fprintf(File, "D3D texture name: %s\t\toffset: %x\n", this->pSpriteNames[i], *(unsigned int *)(&(this->pSpriteNames[i]) + 200000/sizeof(char*))); | |
8379 } | |
8380 fwrite(this->pSpriteOffsets, 4u, this->uNumItems, this->pFile); | |
8381 fseek(this->pFile, 4, 0); | |
8382 fwrite(&this->uDataOffset, 4u, 1u, this->pFile); | |
8383 fclose(this->pFile); | |
0 | 8384 fclose(File); |
8385 } | |
8386 else | |
8387 { | |
8388 fclose(this->pFile); | |
1162 | 8389 for (int i = 0; i < this->uNumItems; i++) |
8390 { | |
8391 free(this->pSpriteNames[i]); | |
0 | 8392 } |
8393 } | |
1093 | 8394 return true; |
0 | 8395 } |
8396 | |
8397 //----- (00452347) -------------------------------------------------------- | |
8398 RenderHWLContainer::RenderHWLContainer(): | |
8399 bDumpDebug(false) | |
8400 { | |
8401 this->pFile = 0; | |
8402 uSignature = 0; | |
1164
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8403 this->uDataOffset = 0; |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8404 memset(&this->uNumItems, 0, 0x61A84u); |
6b911d7e09a5
RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents:
1162
diff
changeset
|
8405 this->uNumItems = 0; |
1583 | 8406 this->scale_hwls_to_half = false; |
0 | 8407 } |
8408 | |
8409 //----- (0045237F) -------------------------------------------------------- | |
8410 bool RenderHWLContainer::Load(const wchar_t *pFilename) | |
8411 { | |
8412 pFile = _wfopen(pFilename, L"rb"); | |
8413 if (!pFile) | |
8414 { | |
8415 Log::Warning(L"Failed to open file: %s", pFilename); | |
8416 return false; | |
8417 } | |
8418 | |
8419 fread(&uSignature, 1, 4, pFile); | |
8420 if (uSignature != 'TD3D') | |
8421 { | |
8422 Log::Warning(L"Invalid format: %s", pFilename); | |
8423 return false; | |
8424 } | |
8425 | |
8426 fread(&uDataOffset, 4, 1, pFile); | |
8427 fseek(pFile, uDataOffset, SEEK_SET); | |
8428 fread(&uNumItems, 4, 1, pFile); | |
8429 | |
8430 memset(pSpriteNames, 0, 50000 * sizeof(char *)); | |
8431 for (uint i = 0; i < uNumItems; ++i) | |
8432 { | |
8433 pSpriteNames[i] = new char[20]; | |
8434 fread(pSpriteNames[i], 1, 20, pFile); | |
8435 } | |
8436 fread(pSpriteOffsets, 4, uNumItems, pFile); | |
8437 | |
8438 return true; | |
8439 } | |
8440 | |
8441 //----- (004A1C1E) -------------------------------------------------------- | |
2153 | 8442 void Render::DoRenderBillboards_D3D() |
8443 { | |
8444 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP)); | |
8445 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
8446 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
8447 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8448 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8449 /*if (pRenderer->uNumBillboardsToDraw) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8450 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8451 auto p = &pRenderer->pBillboardRenderListD3D[0]; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8452 for (int i = 0; i < p->uNumVertices; ++i) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8453 { |
1390 | 8454 p->pQuads[i].pos.z -= p->pQuads[i].pos.z * 0.6; |
8455 //p->pQuads[i].rhw = + 0.8 * (1.0f - p->pQuads[i].rhw); | |
8456 } | |
8457 p->pQuads[0].pos.x = 10; | |
8458 p->pQuads[0].pos.y = 10; | |
8459 | |
8460 p->pQuads[1].pos.x = 10; | |
8461 p->pQuads[1].pos.y = 200; | |
8462 | |
8463 p->pQuads[2].pos.x = 100; | |
8464 p->pQuads[2].pos.y = 200; | |
8465 | |
8466 p->pQuads[3].pos.x = 100; | |
8467 p->pQuads[3].pos.y = 10; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8468 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8469 if (p->uOpacity != RenderBillboardD3D::NoBlend) |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8470 SetBillboardBlendOptions(p->uOpacity); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8471 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8472 pRenderer->pRenderD3D->pDevice->SetTexture(0, p->pTexture); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8473 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8474 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, |
1390 | 8475 p->pQuads, p->uNumVertices, |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8476 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS)); |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8477 |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8478 }*/ |
0 | 8479 |
2153 | 8480 for (int i = uNumBillboardsToDraw - 1; i >= 0; --i) |
8481 { | |
2155 | 8482 if (pBillboardRenderListD3D[i].opacity != RenderBillboardD3D::NoBlend) |
8483 SetBillboardBlendOptions(pBillboardRenderListD3D[i].opacity); | |
2114 | 8484 |
2153 | 8485 pRenderD3D->pDevice->SetTexture(0, pBillboardRenderListD3D[i].pTexture); |
8486 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
8487 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
8488 pBillboardRenderListD3D[i].pQuads, pBillboardRenderListD3D[i].uNumVertices, | |
8489 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS)); | |
8490 } | |
8491 | |
8492 if (bFogEnabled) | |
8493 { | |
8494 bFogEnabled = false; | |
8495 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); | |
8496 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF)); | |
8497 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
8498 } | |
8499 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); | |
8500 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
8501 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
8502 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
8503 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
8504 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
0 | 8505 } |
8506 | |
8507 //----- (004A1DA8) -------------------------------------------------------- | |
2153 | 8508 void Render::SetBillboardBlendOptions(RenderBillboardD3D::OpacityType a1) |
0 | 8509 { |
8510 switch (a1) | |
8511 { | |
8512 case RenderBillboardD3D::Transparent: | |
8513 { | |
2153 | 8514 if (bFogEnabled) |
8515 { | |
8516 bFogEnabled = false; | |
8517 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); | |
8518 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF)); | |
8519 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
8520 } | |
8521 | |
8522 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA)); | |
8523 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA)); | |
8524 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
0 | 8525 } |
8526 break; | |
8527 | |
8528 case RenderBillboardD3D::Opaque_1: | |
8529 case RenderBillboardD3D::Opaque_2: | |
8530 case RenderBillboardD3D::Opaque_3: | |
8531 { | |
2153 | 8532 if (bUsingSpecular) |
8533 { | |
8534 if (!bFogEnabled) | |
0 | 8535 { |
2153 | 8536 bFogEnabled = true; |
8537 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); | |
186 | 8538 } |
8539 } | |
8540 | |
2153 | 8541 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); |
8542 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
8543 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
0 | 8544 } |
8545 break; | |
8546 | |
8547 default: | |
8548 Log::Warning(L"SetBillboardBlendOptions: invalid opacity type (%u)", a1); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
143
diff
changeset
|
8549 assert(false); |
0 | 8550 break; |
8551 } | |
1787 | 8552 } |
1903 | 8553 //----- (00424CD7) -------------------------------------------------------- |
8554 int ODM_NearClip(unsigned int num_vertices) | |
8555 { | |
8556 bool current_vertices_flag; // edi@1 | |
8557 bool next_vertices_flag; // [sp+Ch] [bp-24h]@6 | |
8558 double t; // st6@10 | |
8559 int pNextVertices; | |
8560 | |
8561 if (!num_vertices) | |
8562 return 0; | |
8563 | |
8564 memcpy(&array_50AC10[num_vertices], array_50AC10, sizeof(array_50AC10[0])); | |
8565 current_vertices_flag = 0; | |
8566 if ( array_50AC10[0].vWorldViewPosition.x >= 8.0 ) | |
8567 current_vertices_flag = 1; | |
8568 | |
8569 int out_num_vertices = 0; | |
8570 for (int i = 0; i < num_vertices; ++i) | |
8571 { | |
8572 next_vertices_flag = array_50AC10[i + 1].vWorldViewPosition.x >= 8.0; | |
8573 if ( current_vertices_flag != next_vertices_flag ) | |
8574 { | |
8575 if ( next_vertices_flag ) | |
8576 { | |
2191 | 8577 //t = near_clip - v0.x / v1.x - v0.x (ôîðìóëà ïîëó÷åíèÿ òî÷êè ïåðåñå÷åíèÿ îòðåçêà ñ ïëîñêîñòüþ) |
1903 | 8578 t = (8.0 - array_50AC10[i].vWorldViewPosition.x) / (array_50AC10[i + 1].vWorldViewPosition.x - array_50AC10[i].vWorldViewPosition.x); |
8579 array_507D30[out_num_vertices].vWorldViewPosition.y = (array_50AC10[i + 1].vWorldViewPosition.y - array_50AC10[i].vWorldViewPosition.y) * t + array_50AC10[i].vWorldViewPosition.y; | |
8580 array_507D30[out_num_vertices].vWorldViewPosition.z = (array_50AC10[i + 1].vWorldViewPosition.z - array_50AC10[i].vWorldViewPosition.z) * t + array_50AC10[i].vWorldViewPosition.z; | |
8581 array_507D30[out_num_vertices].u = (array_50AC10[i + 1].u - array_50AC10[i].u) * t + array_50AC10[i].u; | |
8582 array_507D30[out_num_vertices].v = (array_50AC10[i + 1].v - array_50AC10[i].v) * t + array_50AC10[i].v; | |
8583 } | |
8584 else | |
8585 { | |
8586 t = (8.0 - array_50AC10[i + 1].vWorldViewPosition.x) / (array_50AC10[i].vWorldViewPosition.x - array_50AC10[i + 1].vWorldViewPosition.x); | |
8587 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; | |
8588 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; | |
8589 array_507D30[out_num_vertices].u = (array_50AC10[i].u - array_50AC10[i + 1].u) * t + array_50AC10[i + 1].u; | |
8590 array_507D30[out_num_vertices].v = (array_50AC10[i].v - array_50AC10[i + 1].v) * t + array_50AC10[i + 1].v; | |
8591 } | |
8592 array_507D30[out_num_vertices].vWorldViewPosition.x = 8.0; | |
8593 array_507D30[out_num_vertices]._rhw = 1.0 / 8.0; | |
1904 | 8594 //array_507D30[out_num_vertices]._rhw = 0x3E000000u; |
1903 | 8595 ++out_num_vertices; |
8596 } | |
8597 if ( next_vertices_flag ) | |
8598 { | |
8599 pNextVertices = out_num_vertices++; | |
8600 memcpy(&array_507D30[pNextVertices], &array_50AC10[i + 1], 0x30); | |
8601 } | |
8602 current_vertices_flag = next_vertices_flag; | |
8603 } | |
8604 return out_num_vertices >= 3 ? out_num_vertices : 0; | |
8605 } | |
1787 | 8606 //----- (00424EE0) -------------------------------------------------------- |
1903 | 8607 int ODM_FarClip(unsigned int uNumVertices) |
1787 | 8608 { |
8609 signed int previous_vertices_flag; // edi@1 | |
8610 double t; // st6@10 | |
8611 bool current_vertices_flag; // [sp+Ch] [bp-28h]@6 | |
8612 signed int depth_num_vertices; // [sp+18h] [bp-1Ch]@1 | |
8613 int pNextVertices; | |
8614 //Äîï èíôî "Ïðîãðàììèðîâàíèå òð¸õìåðíûõ èãð äëÿ windows" Ëàìîò ñòð 910 | |
8615 | |
8616 memcpy(&array_50AC10[uNumVertices], array_50AC10, sizeof(array_50AC10[uNumVertices])); | |
8617 depth_num_vertices = 0; | |
8618 previous_vertices_flag = 0; | |
8619 if ( array_50AC10[0].vWorldViewPosition.x <= pODMRenderParams->shading_dist_mist ) | |
8620 previous_vertices_flag = 1;//ïðåäûäóùàÿ ãðàíü ìåíüøå ãðàíèöû âèäèìîñòè | |
8621 if ( (signed int)uNumVertices <= 0 ) | |
8622 return 0; | |
8623 for ( uint i = 1; i <= uNumVertices; ++i ) | |
8624 { | |
8625 current_vertices_flag = pODMRenderParams->shading_dist_mist >= array_50AC10[i].vWorldViewPosition.x; | |
8626 if ( previous_vertices_flag != current_vertices_flag )//îäíà èç ãðàíåé çà ãðàíèöåé âèäèìîñòè | |
8627 { | |
8628 if ( current_vertices_flag )//òåêóùàÿ ãðàíü ìåíüøå ãðàíèöû âèäèìîñòè(ïðåäûäóùàÿ ãðàíü çà ïðåäåëàìè âèäèìîñòè) | |
8629 { | |
8630 //t = far_clip - v0.x / v1.x - v0.x (ôîðìóëà ïîëó÷åíèÿ òî÷êè ïåðåñå÷åíèÿ îòðåçêà ñ ïëîñêîñòüþ) | |
8631 t = (pODMRenderParams->shading_dist_mist - array_50AC10[i - 1].vWorldViewPosition.x) / (array_50AC10[i].vWorldViewPosition.x - array_50AC10[i - 1].vWorldViewPosition.x); | |
8632 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; | |
8633 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; | |
8634 array_507D30[depth_num_vertices].u = (array_50AC10[i].u - array_50AC10[i - 1].u) * t + array_50AC10[i - 1].u; | |
8635 array_507D30[depth_num_vertices].v = (array_50AC10[i].v - array_50AC10[i - 1].v) * t + array_50AC10[i - 1].v; | |
8636 } | |
8637 else//ïðåäûäóùàÿ ãðàíü ìåíüøå ãðàíèöû âèäèìîñòè(òåêóùàÿ ãðàíü âûøëà çà ïðåäåëû âèäèìîñòè) | |
8638 { | |
8639 //t = far_clip - v1.x / v0.x - v1.x | |
8640 t = (pODMRenderParams->shading_dist_mist - array_50AC10[i].vWorldViewPosition.x) / (array_50AC10[i - 1].vWorldViewPosition.x - array_50AC10[i].vWorldViewPosition.x); | |
8641 array_507D30[depth_num_vertices].vWorldViewPosition.y = (array_50AC10[i - 1].vWorldViewPosition.y - array_50AC10[i].vWorldViewPosition.y) * t + array_50AC10[i].vWorldViewPosition.y; | |
8642 array_507D30[depth_num_vertices].vWorldViewPosition.z = (array_50AC10[i - 1].vWorldViewPosition.z - array_50AC10[i].vWorldViewPosition.z) * t + array_50AC10[i].vWorldViewPosition.z; | |
8643 array_507D30[depth_num_vertices].u = (array_50AC10[i - 1].u - array_50AC10[i].u) * t + array_50AC10[i].u; | |
8644 array_507D30[depth_num_vertices].v = (array_50AC10[i - 1].v - array_50AC10[i].v) * t + array_50AC10[i].v; | |
8645 } | |
8646 array_507D30[depth_num_vertices].vWorldViewPosition.x = pODMRenderParams->shading_dist_mist; | |
8647 array_507D30[depth_num_vertices]._rhw = 1.0 / pODMRenderParams->shading_dist_mist; | |
8648 ++depth_num_vertices; | |
8649 } | |
8650 if ( current_vertices_flag )//îáà â ãðàíèöå âèäèìîñòè | |
8651 { | |
8652 pNextVertices = depth_num_vertices++; | |
8653 memcpy(&array_507D30[pNextVertices], &array_50AC10[i], 0x30); | |
1799 | 8654 //array_507D30[pNextVertices]._rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001); |
8655 //array_507D30[pNextVertices].flt_2C = array_50AC10[i].flt_2C; | |
1787 | 8656 } |
8657 previous_vertices_flag = current_vertices_flag; | |
8658 } | |
8659 if ( depth_num_vertices < 3 ) | |
8660 return 0; | |
8661 return depth_num_vertices; | |
8662 } | |
8663 | |
8664 //----- (0047840D) -------------------------------------------------------- | |
8665 void Render::DrawBuildingsD3D() | |
8666 { | |
8667 int v9; // ecx@8 | |
8668 Texture *pFaceTexture; // eax@10 | |
8669 unsigned int v16; // edi@22 | |
8670 int v27; // eax@57 | |
8671 int vertex_id; // eax@58 | |
8672 unsigned int v34; // eax@80 | |
8673 int v40; // [sp-4h] [bp-5Ch]@2 | |
8674 int v49; // [sp+2Ch] [bp-2Ch]@10 | |
8675 int v50; // [sp+30h] [bp-28h]@34 | |
8676 int v51; // [sp+34h] [bp-24h]@35 | |
8677 int v52; // [sp+38h] [bp-20h]@36 | |
8678 int v53; // [sp+3Ch] [bp-1Ch]@8 | |
8679 int uNumVertices; // [sp+4Ch] [bp-Ch]@34 | |
8680 int unused; // [sp+50h] [bp-8h]@3 | |
8681 | |
8682 if ( !pRenderer->pRenderD3D ) | |
8683 { | |
8684 MessageBoxW(nullptr, L"D3D version of RenderBuildings called in software!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odbuild.cpp:73", 0); | |
8685 } | |
8686 | |
8687 unused = 0; | |
8688 if ( (signed int)pOutdoor->uNumBModels > 0 ) | |
8689 { | |
8690 for ( uint model_id = 0; model_id < pOutdoor->uNumBModels; model_id++ ) | |
8691 { | |
8692 if ( IsBModelVisible(model_id, &unused) ) | |
8693 { | |
8694 pOutdoor->pBModels[model_id].field_40 |= 1; | |
8695 if ( pOutdoor->pBModels[model_id].uNumFaces > 0 ) | |
8696 { | |
8697 for ( int face_id = 0; face_id < pOutdoor->pBModels[model_id].uNumFaces; face_id++ ) | |
8698 { | |
8699 if (!pOutdoor->pBModels[model_id].pFaces[face_id].Invisible()) | |
8700 { | |
8701 v53 = 0; | |
8702 array_77EC08[pODMRenderParams->uNumPolygons].flags = 0; | |
8703 array_77EC08[pODMRenderParams->uNumPolygons].field_32 = 0; | |
8704 v9 = pOutdoor->pBModels[model_id].pFaces[face_id].uTextureID; | |
8705 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_TEXTURE_FRAME) | |
8706 v9 = pTextureFrameTable->GetFrameTexture(v9, pEventTimer->uTotalGameTimeElapsed); | |
8707 pFaceTexture = pBitmaps_LOD->GetTexture(v9); | |
8708 array_77EC08[pODMRenderParams->uNumPolygons].pTexture = pFaceTexture; | |
8709 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_FLUID) | |
8710 array_77EC08[pODMRenderParams->uNumPolygons].flags |= 2; | |
1922 | 8711 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_INDOOR_SKY ) |
1787 | 8712 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 4; |
2166 | 8713 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_UNKNOW8 ) |
1787 | 8714 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 4; |
8715 else | |
8716 { | |
2166 | 8717 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_UNKNOW9 ) |
1787 | 8718 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 8; |
8719 } | |
2166 | 8720 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_UNKNOW10) |
1787 | 8721 array_77EC08[pODMRenderParams->uNumPolygons].flags |= 0x2000; |
8722 else | |
8723 { | |
8724 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_DONT_CACHE_TEXTURE) | |
8725 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 0x10u; | |
8726 } | |
8727 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU = pOutdoor->pBModels[model_id].pFaces[face_id].sTextureDeltaU; | |
8728 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV = pOutdoor->pBModels[model_id].pFaces[face_id].sTextureDeltaV; | |
8729 v16 = GetTickCount() >> 4; | |
8730 if ( pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z && abs(pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z) >= 59082 ) | |
8731 { | |
8732 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 4 ) | |
8733 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1; | |
8734 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 8 ) | |
8735 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1; | |
8736 } | |
8737 else | |
8738 { | |
8739 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 4 ) | |
8740 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1; | |
8741 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 8 ) | |
8742 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1; | |
8743 } | |
8744 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x10 ) | |
8745 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uWidthMinus1; | |
8746 else | |
8747 { | |
8748 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x20 ) | |
8749 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uWidthMinus1; | |
8750 } | |
8751 v50 = 0; | |
8752 v49 = 0; | |
8753 uNumVertices = pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; | |
8754 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices > 0 ) | |
8755 { | |
8756 for ( uint vertex_id = 1; vertex_id <= pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; vertex_id++ ) | |
8757 { | |
8758 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; | |
8759 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; | |
8760 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; | |
8761 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); | |
8762 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); | |
8763 } | |
8764 for ( uint i = 1; i <= pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; i++ ) | |
8765 { | |
8766 if ( pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[0]].z == array_73D150[i - 1].vWorldPosition.z ) | |
8767 ++v53; | |
8768 pGame->pIndoorCameraD3D->ViewTransform(&array_73D150[i - 1], 1); | |
8769 if ( array_73D150[i - 1].vWorldViewPosition.x < 8.0 || array_73D150[i - 1].vWorldViewPosition.x > pODMRenderParams->shading_dist_mist ) | |
8770 { | |
8771 if ( array_73D150[i - 1].vWorldViewPosition.x >= 8.0 ) | |
8772 v49 = 1; | |
8773 else | |
8774 v50 = 1; | |
8775 } | |
8776 else | |
8777 pGame->pIndoorCameraD3D->Project(&array_73D150[i - 1], 1, 0); | |
8778 } | |
8779 } | |
8780 if ( v53 == pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices ) | |
8781 LOBYTE(array_77EC08[pODMRenderParams->uNumPolygons].field_32) |= 1; | |
8782 array_77EC08[pODMRenderParams->uNumPolygons].pODMFace = &pOutdoor->pBModels[model_id].pFaces[face_id]; | |
8783 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; | |
8784 array_77EC08[pODMRenderParams->uNumPolygons].field_59 = 5; | |
8785 v51 = (unsigned __int64)(-pOutdoor->vSunlight.x * (signed __int64)pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.x) >> 16; | |
8786 v53 = (unsigned __int64)(-pOutdoor->vSunlight.y * (signed __int64)pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.y) >> 16; | |
8787 v52 = (unsigned __int64)(-pOutdoor->vSunlight.z * (signed __int64)pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z) >> 16; | |
8788 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 20 - (20 * (signed int)(v51 + v53 + v52) >> 16); | |
8789 if ( array_77EC08[pODMRenderParams->uNumPolygons].dimming_level < 0 ) | |
8790 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 0; | |
8791 if ( array_77EC08[pODMRenderParams->uNumPolygons].dimming_level > 31 ) | |
8792 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 31; | |
8793 if ( pODMRenderParams->uNumPolygons >= 1999 + 5000) | |
8794 return; | |
2169 | 8795 if ( ODMFace::IsBackfaceCulled(array_73D150, &array_77EC08[pODMRenderParams->uNumPolygons]) ) |
1787 | 8796 { |
8797 pOutdoor->pBModels[model_id].pFaces[face_id].bVisible = 1; | |
8798 array_77EC08[pODMRenderParams->uNumPolygons].uBModelFaceID = face_id; | |
8799 array_77EC08[pODMRenderParams->uNumPolygons].uBModelID = model_id; | |
8800 v27 = 8 * (face_id | (model_id << 6)); | |
8801 LOBYTE(v27) = v27 | 6; | |
8802 array_77EC08[pODMRenderParams->uNumPolygons].field_50 = v27; | |
8803 for ( int vertex_id = 0; vertex_id < pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; ++vertex_id) | |
8804 { | |
8805 memcpy(&array_50AC10[vertex_id], &array_73D150[vertex_id], sizeof(array_50AC10[vertex_id])); | |
8806 array_50AC10[vertex_id]._rhw = 1.0 / (array_73D150[vertex_id].vWorldViewPosition.x + 0.0000001); | |
8807 } | |
8808 static stru154 static_RenderBuildingsD3D_stru_73C834; | |
8809 /*static bool __init_flag = false; | |
8810 if (!__init_flag) | |
8811 { | |
8812 __init_flag = true; | |
8813 static_RenderBuildingsD3D_byte_73C84C_init_flag |= 1u; | |
8814 stru154::stru154(&static_RenderBuildingsD3D_stru_73C834); | |
8815 atexit(loc_4789D4); | |
8816 }*/ | |
8817 | |
8818 v40 = (int)&pOutdoor->pBModels[model_id].pFaces[face_id]; | |
8819 pGame->pLightmapBuilder->ApplyLights_OutdoorFace(&pOutdoor->pBModels[model_id].pFaces[face_id]); | |
8820 pDecalBuilder->ApplyDecals_OutdoorFace(&pOutdoor->pBModels[model_id].pFaces[face_id]); | |
8821 pGame->pLightmapBuilder->std__vector_000004_size = 0; | |
8822 int v31 = 0; | |
8823 if ( stru_F8AD28.uNumLightsApplied > 0 || pDecalBuilder->uNumDecals > 0 ) | |
8824 { | |
8825 v31 = v50 ? 3 : v49 != 0 ? 5 : 0; | |
8826 static_RenderBuildingsD3D_stru_73C834.GetFacePlaneAndClassify(&pOutdoor->pBModels[model_id].pFaces[face_id], &pOutdoor->pBModels[model_id].pVertices); | |
8827 if ( pDecalBuilder->uNumDecals > 0 ) | |
8828 { | |
8829 v40 = -1; | |
8830 pDecalBuilder->ApplyDecals(31 - array_77EC08[pODMRenderParams->uNumPolygons].dimming_level, 2, &static_RenderBuildingsD3D_stru_73C834, | |
8831 pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices, array_50AC10, 0, (char)v31, -1); | |
8832 } | |
8833 } | |
8834 if ( stru_F8AD28.uNumLightsApplied > 0 ) | |
8835 pGame->pLightmapBuilder->ApplyLights(&stru_F8AD28, &static_RenderBuildingsD3D_stru_73C834, uNumVertices, array_50AC10, 0, (char)v31); | |
8836 if ( v50 ) | |
8837 { | |
1903 | 8838 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = ODM_NearClip(pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices); |
1787 | 8839 uNumVertices = array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices; |
8840 ODM_Project(array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices); | |
8841 } | |
8842 if ( v49 ) | |
8843 { | |
1903 | 8844 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = ODM_FarClip(pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices); |
1787 | 8845 uNumVertices = array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices; |
8846 ODM_Project(array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices); | |
8847 } | |
8848 if ( uNumVertices ) | |
8849 { | |
8850 if ( array_77EC08[pODMRenderParams->uNumPolygons].flags & 2 ) | |
8851 { | |
8852 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x3C ) | |
8853 v34 = pRenderer->pHDWaterBitmapIDs[0]; | |
8854 else | |
8855 v34 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame]; | |
8856 v40 = (int)pBitmaps_LOD->pHardwareTextures[v34]; | |
8857 } | |
8858 else | |
8859 v40 = (int)pBitmaps_LOD->pHardwareTextures[v9]; | |
8860 pRenderer->DrawPolygon(uNumVertices, &array_77EC08[pODMRenderParams->uNumPolygons], &pOutdoor->pBModels[model_id].pFaces[face_id], (IDirect3DTexture2 *)v40); | |
8861 } | |
8862 } | |
8863 } | |
8864 } | |
8865 } | |
8866 } | |
8867 } | |
8868 } | |
8869 return; | |
1911 | 8870 } |
8871 //----- (00479543) -------------------------------------------------------- | |
1923 | 8872 void Render::DrawOutdoorSkyD3D() |
1911 | 8873 { |
8874 int v9; // eax@4 | |
8875 int v10; // ebx@4 | |
8876 int v13; // edi@6 | |
8877 int v14; // ecx@6 | |
8878 int v15; // eax@8 | |
8879 int v16; // eax@12 | |
8880 signed __int64 v17; // qtt@13 | |
8881 signed int v18; // ecx@13 | |
8882 struct Polygon pSkyPolygon; // [sp+14h] [bp-150h]@1 | |
8883 int v30; // [sp+134h] [bp-30h]@1 | |
8884 int v32; // [sp+13Ch] [bp-28h]@6 | |
8885 int v33; // [sp+140h] [bp-24h]@2 | |
8886 signed __int64 v34; // [sp+144h] [bp-20h]@1 | |
8887 int v35; // [sp+148h] [bp-1Ch]@4 | |
8888 int v36; // [sp+14Ch] [bp-18h]@2 | |
8889 int v37; // [sp+154h] [bp-10h]@8 | |
8890 int v38; // [sp+158h] [bp-Ch]@1 | |
8891 int v39; // [sp+15Ch] [bp-8h]@4 | |
2120 | 8892 |
8893 v30 = (signed __int64)((double)(pODMRenderParams->int_fov_rad * pGame->pIndoorCameraD3D->vPartyPos.z) | |
1911 | 8894 / ((double)pODMRenderParams->int_fov_rad + 8192.0) |
2119 | 8895 + (double)(pViewport->uScreenCenterY)); |
8896 v34 = cos((double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064) * 0x2000;//(double)pODMRenderParams->shading_dist_mist, 8192 | |
2120 | 8897 v38 = (signed __int64)((double)(pViewport->uScreenCenterY) |
1911 | 8898 - (double)pODMRenderParams->int_fov_rad |
8899 / (v34 + 0.0000001) | |
8900 * (sin((double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064) | |
8901 * (double)-0x2000//(double)pODMRenderParams->shading_dist_mist | |
8902 - (double)pGame->pIndoorCameraD3D->vPartyPos.z)); | |
8903 pSkyPolygon.Create_48607B(&stru_8019C8);//çàïîëíÿåòñÿ ptr_38 | |
8904 pSkyPolygon.ptr_38->_48694B_frustum_sky(); | |
2006 | 8905 pSkyPolygon.uTileBitmapID = pOutdoor->sSky_TextureID;//179(original 166) |
8906 pSkyPolygon.pTexture = (Texture *)(SLOWORD(pOutdoor->sSky_TextureID) != -1 ? (int)&pBitmaps_LOD->pTextures[SLOWORD(pOutdoor->sSky_TextureID)] : 0); | |
1911 | 8907 if ( pSkyPolygon.pTexture ) |
8908 { | |
8909 pSkyPolygon.dimming_level = 0; | |
8910 pSkyPolygon.uNumVertices = 4; | |
2119 | 8911 //centering(öåíòðóåì)----------------------------------------------------------------- |
2120 | 8912 pSkyPolygon.v_18.x = -stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationX + 16); |
1911 | 8913 pSkyPolygon.v_18.y = 0; |
2120 | 8914 pSkyPolygon.v_18.z = -stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationX + 16); |
1911 | 8915 |
8916 //sky wiew position(ïîëîæåíèå íåáà íà ýêðàíå)------------------------------------------ | |
8917 // X | |
8918 // 0._____________________________.3 | |
8919 // |8,8 468,8 | | |
8920 // | | | |
8921 // | | | |
8922 // Y| | | |
8923 // | | | |
8924 // |8,351 468,351 | | |
8925 // 1._____________________________.2 | |
8926 // | |
2119 | 8927 array_50AC10[0].vWorldViewProjX = (double)(signed int)pViewport->uViewportTL_X;//8 |
8928 array_50AC10[0].vWorldViewProjY = (double)(signed int)pViewport->uViewportTL_Y;//8 | |
8929 | |
8930 array_50AC10[1].vWorldViewProjX = (double)(signed int)pViewport->uViewportTL_X;//8 | |
8931 array_50AC10[1].vWorldViewProjY = (double)v38;//247 | |
8932 | |
8933 array_50AC10[2].vWorldViewProjX = (double)(signed int)pViewport->uViewportBR_X;//468 | |
8934 array_50AC10[2].vWorldViewProjY = (double)v38;//247 | |
8935 | |
8936 array_50AC10[3].vWorldViewProjX = (double)(signed int)pViewport->uViewportBR_X;//468 | |
8937 array_50AC10[3].vWorldViewProjY = (double)(signed int)pViewport->uViewportTL_Y;//8 | |
8938 | |
8939 pSkyPolygon.sTextureDeltaU = 224 * pMiscTimer->uTotalGameTimeElapsed;//7168 | |
8940 pSkyPolygon.sTextureDeltaV = 224 * pMiscTimer->uTotalGameTimeElapsed;//7168 | |
8941 | |
8942 pSkyPolygon.field_24 = 0x2000000u;//maybe attributes | |
2120 | 8943 v33 = 65536 / (signed int)(signed __int64)(((double)(pViewport->uViewportBR_X - pViewport->uViewportTL_X) / 2) / tan(0.6457717418670654) + 0.5); |
1911 | 8944 for ( uint i = 0; i < pSkyPolygon.uNumVertices; ++i ) |
8945 { | |
8946 //rotate skydome(âðàùåíèå êóïîëà íåáà)-------------------------------------- | |
8947 //  èãðå ïðèíÿòà ñâîÿ ñèñòåìà èçìåðåíèÿ óãëîâ. Ïîëíûé óãîë (180). Çíà÷åíèþ óãëà 0 ñîîòâåòñòâóåò | |
8948 // íàïðàâëåíèå íà ñåâåð è/èëè þã (ëèáî íà âîñòîê è/èëè çàïàä), çíà÷åíèþ 65536 åäåíèöàì(0õ10000) ñîîòâåòñòâóåò óãîë 90. | |
2119 | 8949 // äâå ïåðåìåííûå õðàíÿò äàííûå ïî óãëó îáçîðà. field_14 ïî çàïàäó è âîñòîêó. field_20 ïî þãó è ñåâåðó |
1911 | 8950 // îò -25080 äî 25080 |
2120 | 8951 v39 = (unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_west_east * (signed __int64)(v33 * (v30 - floor(array_50AC10[i].vWorldViewProjY + 0.5)))) >> 16; |
8952 v35 = v39 + pSkyPolygon.ptr_38->angle_from_north; | |
8953 | |
8954 v39 = (unsigned __int64)(pSkyPolygon.ptr_38->viewing_angle_from_north_south * (signed __int64)(v33 * (v30 - floor(array_50AC10[i].vWorldViewProjY + 0.f)))) >> 16; | |
8955 v36 = v39 + pSkyPolygon.ptr_38->angle_from_east; | |
8956 | |
8957 v9 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)(v33 * (v30 - floor(array_50AC10[i].vWorldViewProjY + 0.5)))) >> 16; | |
8958 v10 = pSkyPolygon.v_18.x + v9; | |
2119 | 8959 if ( v10 > 0 ) |
1911 | 8960 v10 = 0; |
2120 | 8961 v13 = v33 * (pViewport->uScreenCenterX - (signed __int64)array_50AC10[i].vWorldViewProjX); |
8962 v34 = -pSkyPolygon.field_24; | |
8963 v32 = (signed __int64)array_50AC10[i].vWorldViewProjY - 1.0; | |
8964 v14 = v33 * (v30 - v32); | |
1911 | 8965 while ( 1 ) |
8966 { | |
2120 | 8967 if ( v10 ) |
1911 | 8968 { |
2120 | 8969 v37 = abs((int)v34 >> 14); |
8970 v15 = abs(v10); | |
8971 if ( v37 <= v15 || v32 <= (signed int)pViewport->uViewportTL_Y ) | |
8972 { | |
8973 if ( v10 <= 0 ) | |
8974 break; | |
8975 } | |
1911 | 8976 } |
8977 v16 = (unsigned __int64)(pSkyPolygon.v_18.z * (signed __int64)v14) >> 16; | |
8978 --v32; | |
8979 v14 += v33; | |
8980 v10 = pSkyPolygon.v_18.x + v16; | |
8981 } | |
8982 LODWORD(v17) = LODWORD(v34) << 16; | |
2120 | 8983 HIDWORD(v17) = v34 >> 16; |
8984 v18 = v17 / v10; | |
1911 | 8985 if ( v18 < 0 ) |
8986 v18 = pODMRenderParams->shading_dist_mist; | |
2120 | 8987 v37 = v35 + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_west * (signed __int64)v13) >> 16); |
8988 v35 = 224 * pMiscTimer->uTotalGameTimeElapsed | |
1911 | 8989 + ((signed int)((unsigned __int64)(v37 * (signed __int64)v18) >> 16) >> 3); |
2120 | 8990 array_50AC10[i].u = (double)v35 / ((double)pSkyPolygon.pTexture->uTextureWidth * 65536.0); |
8991 | |
8992 v36 = v36 + ((unsigned __int64)(pSkyPolygon.ptr_38->angle_from_south * (signed __int64)v13) >> 16); | |
8993 v35 = 224 * pMiscTimer->uTotalGameTimeElapsed | |
1911 | 8994 + ((signed int)((unsigned __int64)(v36 * (signed __int64)v18) >> 16) >> 3); |
2120 | 8995 array_50AC10[i].v = (double)v35 / ((double)pSkyPolygon.pTexture->uTextureHeight * 65536.0); |
2119 | 8996 |
8997 array_50AC10[i].vWorldViewPosition.x = (double)0x2000;//pODMRenderParams->shading_dist_mist 8192 | |
2120 | 8998 array_50AC10[i]._rhw = 1.0 / (double)(v18 >> 16); |
1911 | 8999 } |
1923 | 9000 pRenderer->DrawOutdoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); |
2120 | 9001 array_50AC10[0].vWorldViewProjY = (double)v10; |
1911 | 9002 array_50AC10[1].vWorldViewProjY = array_50AC10[1].vWorldViewProjY + 30.0; |
9003 array_50AC10[2].vWorldViewProjY = array_50AC10[2].vWorldViewProjY + 30.0; | |
2120 | 9004 array_50AC10[3].vWorldViewProjY = (double)v10; |
1923 | 9005 pRenderer->DrawOutdoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]); |
1911 | 9006 return; |
9007 } | |
1913 | 9008 } |
9009 //----- (004226C2) -------------------------------------------------------- | |
9010 bool PauseGameDrawing() | |
9011 { | |
9012 if ( pCurrentScreen != SCREEN_GAME | |
9013 && pCurrentScreen != SCREEN_NPC_DIALOGUE | |
9014 && pCurrentScreen != SCREEN_CHANGE_LOCATION ) | |
9015 { | |
2142
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2135
diff
changeset
|
9016 if (pCurrentScreen == SCREEN_INPUT_BLV) |
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2135
diff
changeset
|
9017 return pVideoPlayer->pMovie;//pSmackerMovie != 0; |
1913 | 9018 if ( pCurrentScreen != SCREEN_BRANCHLESS_NPC_DIALOG ) |
9019 return true; | |
9020 } | |
9021 return false; | |
2154 | 9022 } |
9023 | |
9024 | |
9025 //----- (0045E03A) -------------------------------------------------------- | |
9026 unsigned short *Render::MakeScreenshot(signed int width, signed int height) | |
9027 { | |
9028 unsigned __int16 *v3; // ebx@1 | |
9029 int v4; // edx@7 | |
9030 unsigned __int8 v5; // cf@9 | |
9031 unsigned int v6; // ecx@9 | |
9032 unsigned __int16 *v7; // edi@9 | |
9033 int j; // ecx@9 | |
9034 unsigned int screen_x; // qax@18 | |
9035 HRESULT v14; // eax@21 | |
9036 int v15; // edi@29 | |
9037 signed __int64 v16; // qax@30 | |
9038 signed int v17; // edx@34 | |
9039 unsigned __int16 *v18; // edi@36 | |
9040 int k; // ecx@36 | |
9041 DDSURFACEDESC2 Dst; // [sp+4h] [bp-A0h]@6 | |
9042 unsigned __int16 *pPixels; // [sp+80h] [bp-24h]@1 | |
9043 float interval_x; // [sp+84h] [bp-20h]@1 | |
9044 unsigned __int16 *_this; // [sp+88h] [bp-1Ch]@21 | |
9045 float interval_y; // [sp+8Ch] [bp-18h]@1 | |
9046 unsigned int screen_y; // [sp+90h] [bp-14h]@17 | |
9047 int v28; // [sp+98h] [bp-Ch]@16 | |
9048 int v29; // [sp+9Ch] [bp-8h]@15 | |
9049 | |
9050 interval_x = game_viewport_width / (double)width; | |
9051 interval_y = game_viewport_height / (double)height; | |
9052 | |
9053 pPixels = (unsigned __int16 *)malloc(2 * height * width); | |
9054 memset(pPixels, 0 , 2 * height * width); | |
9055 | |
9056 v3 = pPixels; | |
9057 | |
2182 | 9058 BeginSceneD3D(); |
9059 | |
9060 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
9061 pIndoor->Draw(); | |
9062 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
9063 pOutdoor->Draw(); | |
9064 DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene(); | |
9065 memset(&Dst, 0, 0x7C); | |
9066 Dst.dwSize = sizeof(Dst); | |
9067 | |
9068 if ( LockSurface_DDraw4(pBackBuffer4, &Dst, DDLOCK_WAIT) ) | |
9069 { | |
9070 for (uint y = 0; y < height; ++y) | |
9071 { | |
9072 for (uint x = 0; x < width; ++x) | |
9073 { | |
9074 //*v3 = pRenderer->ReadPixel16((int)(x* interval_x + 8.0), (int)(y * interval_y + 8.0));//screen_data[screen_y + (int)(x* interval_x + 8.0)]; | |
9075 if (Dst.ddpfPixelFormat.dwRGBBitCount == 32) | |
2154 | 9076 { |
2182 | 9077 auto p = (unsigned __int32 *)Dst.lpSurface + (int)(x * interval_x + 8.0) + y/* (int)(y * interval_y + 8.0)*/ * Dst.lPitch; |
9078 *v3 = Color16((*p >> 16) & 255, (*p >> 8) & 255, *p & 255); | |
9079 } | |
9080 else if (Dst.ddpfPixelFormat.dwRGBBitCount == 16) | |
9081 { | |
9082 auto p = (unsigned __int16 *)Dst.lpSurface + (int)(x * interval_x + 8.0) + y * Dst.lPitch; | |
9083 *v3 = *p; | |
2154 | 9084 } |
2182 | 9085 else __debugbreak(); |
9086 ++v3; | |
9087 } | |
9088 } | |
9089 ErrD3D(pBackBuffer4->Unlock(0)); | |
9090 } | |
9091 else | |
9092 { | |
9093 __debugbreak(); // unrefactored - black screenshot | |
9094 v4 = height; | |
9095 if ( height > 0 ) | |
9096 { | |
9097 do | |
9098 { | |
9099 if ( width > 0 ) | |
2154 | 9100 { |
2182 | 9101 v5 = width & 1; |
9102 v6 = (unsigned int)width / 2; | |
9103 memset(v3, 0, 4 * ((unsigned int)width / 2)); | |
9104 v7 = &v3[2 * v6]; | |
9105 for ( j = v5; j; --j ) | |
2154 | 9106 { |
2182 | 9107 *v7 = 0; |
9108 ++v7; | |
2154 | 9109 } |
2182 | 9110 v3 += width; |
2154 | 9111 } |
2182 | 9112 --v4; |
9113 } | |
9114 while ( v4 ); | |
9115 } | |
9116 } | |
9117 | |
2154 | 9118 /*if (!pRenderer->pRenderD3D) |
9119 { | |
9120 pRenderer->BeginScene(); | |
9121 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
9122 { | |
9123 pIndoor->Draw(); | |
9124 } | |
9125 else | |
9126 { | |
9127 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
9128 pOutdoor->Draw(); | |
9129 } | |
9130 _this = pRenderer->pTargetSurface; | |
9131 v26 = pRenderer->uTargetSurfacePitch; | |
9132 if ( pRenderer->pTargetSurface ) | |
9133 { | |
9134 if ( height > 0 ) | |
9135 { | |
9136 for ( v29 = 0; v29 < height; ++v29 ) | |
9137 { | |
9138 if ( width > 0 ) | |
9139 { | |
9140 v15 = v26 * (unsigned __int64)(signed __int64)((double)v29 * v25 + 8.0); | |
9141 for ( v28 = 0; v28 < width; v28++ ) | |
9142 { | |
9143 *v3 = _this[v15 + (int)(signed __int64)((double)v28 * v23 + 8.0)]; | |
9144 ++v3; | |
9145 } | |
9146 } | |
9147 } | |
9148 } | |
9149 } | |
9150 else | |
9151 { | |
9152 if ( height > 0 ) | |
9153 { | |
9154 for ( v17 = height; v17; --v17 ) | |
9155 { | |
9156 if ( width > 0 ) | |
9157 { | |
9158 memset(v3, 0, 4 * ((unsigned int)width >> 1)); | |
9159 v18 = &v3[2 * ((unsigned int)width >> 1)]; | |
9160 for ( k = width & 1; k; --k ) | |
9161 { | |
9162 *v18 = 0; | |
9163 ++v18; | |
9164 } | |
9165 v3 += width; | |
9166 } | |
9167 } | |
9168 } | |
9169 } | |
9170 pRenderer->EndScene(); | |
9171 }*/ | |
9172 return pPixels; | |
9173 } | |
9174 //----- (0045E26C) -------------------------------------------------------- | |
9175 void Render::SaveScreenshot(const char *pFilename, unsigned int width, unsigned int height) | |
9176 { | |
9177 auto pixels = pRenderer->MakeScreenshot(width, height); | |
9178 pRenderer->SavePCXImage(pFilename, pixels, width, height); | |
9179 free(pixels); | |
9180 } | |
9181 | |
9182 void Render::PackScreenshot(unsigned int width, unsigned int height, void *data, unsigned int data_size, unsigned int *out_screenshot_size) | |
9183 { | |
9184 auto pixels = pRenderer->MakeScreenshot(150, 112); | |
9185 pRenderer->PackPCXpicture(pixels, 150, 112, data, 1000000, out_screenshot_size); | |
9186 free(pixels); | |
9187 } | |
2155 | 9188 |
9189 | |
9190 //----- (0046A7C8) -------------------------------------------------------- | |
2182 | 9191 int Render::_46À6ÀÑ_GetActorsInViewport(int pDepth) |
9192 { | |
9193 unsigned int v3; // eax@2 ïðèìåíÿåòñÿ â çàêëå Æàð ïå÷è äëÿ ïîäñ÷¸òà êîë-âà ìîíñòðîâ âèäèìûõ ãðóïïå è çàïîëíåíèÿ ìàññèâà id âèäèìûõ ìîíñòðîâ | |
2155 | 9194 unsigned int v5; // eax@2 |
9195 unsigned int v6; // eax@4 | |
9196 unsigned int v12; // [sp+10h] [bp-14h]@1 | |
2182 | 9197 int mon_num; // [sp+1Ch] [bp-8h]@1 |
2155 | 9198 unsigned int a1a; // [sp+20h] [bp-4h]@1 |
9199 | |
2182 | 9200 mon_num = 0; |
2155 | 9201 v12 = GetBillboardDrawListSize(); |
9202 if ( (signed int)GetBillboardDrawListSize() > 0 ) | |
9203 { | |
9204 for ( a1a = 0; (signed int)a1a < (signed int)v12; ++a1a ) | |
9205 { | |
9206 v3 = GetParentBillboardID(a1a); | |
9207 v5 = (unsigned __int16)pBillboardRenderList[v3].object_pid; | |
9208 if ( PID_TYPE(v5) == OBJECT_Actor) | |
9209 { | |
2182 | 9210 if ( pBillboardRenderList[v3].sZValue <= (unsigned int)(pDepth << 16) ) |
2155 | 9211 { |
9212 v6 = PID_ID(v5); | |
9213 if ( pActors[v6].uAIState != Dead && pActors[v6].uAIState != Dying && pActors[v6].uAIState != Removed | |
9214 && pActors[v6].uAIState != Disabled && pActors[v6].uAIState != Summoned ) | |
9215 { | |
2182 | 9216 if ( pGame->pVisInstance->DoesRayIntersectBillboard((double)pDepth, a1a) ) |
2155 | 9217 { |
2182 | 9218 if ( mon_num < 100 ) |
2155 | 9219 { |
2182 | 9220 _50BF30_actors_in_viewport_ids[mon_num] = v6; |
9221 mon_num++; | |
2155 | 9222 } |
9223 } | |
9224 } | |
9225 } | |
9226 } | |
9227 } | |
9228 } | |
2182 | 9229 return mon_num; |
2155 | 9230 } |
9231 | |
9232 | |
9233 | |
9234 | |
9235 void Render::BeginLightmaps() | |
9236 { | |
9237 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP)); | |
9238 | |
9239 if (bUsingSpecular) | |
9240 pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE); | |
9241 | |
9242 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
9243 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
9244 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pGame->pIndoorCameraD3D->LoadTextureAndGetHardwarePtr("effpar03"))); | |
9245 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
9246 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
9247 } | |
9248 | |
9249 void Render::EndLightmaps() | |
9250 { | |
9251 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
9252 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
9253 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
9254 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
9255 | |
9256 if (bUsingSpecular) | |
9257 { | |
9258 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); | |
9259 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, uFogColor)); | |
9260 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0)); | |
9261 } | |
9262 } | |
9263 | |
9264 | |
9265 void Render::BeginLightmaps2() | |
9266 { | |
9267 if (bUsingSpecular) | |
9268 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); | |
9269 | |
9270 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
9271 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
9272 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
9273 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
9274 | |
9275 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pGame->pIndoorCameraD3D->LoadTextureAndGetHardwarePtr("effpar03"))); | |
9276 | |
9277 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
9278 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
9279 } | |
9280 | |
9281 | |
9282 void Render::EndLightmaps2() | |
9283 { | |
9284 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
9285 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
9286 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
9287 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
9288 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
9289 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); | |
9290 | |
9291 if (bUsingSpecular) | |
9292 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); | |
9293 } | |
9294 | |
9295 | |
9296 | |
9297 //----- (00437C96) -------------------------------------------------------- | |
9298 void Render::do_draw_debug_line_d3d(const RenderVertexD3D3 *pLineBegin, signed int sDiffuseBegin, const RenderVertexD3D3 *pLineEnd, signed int sDiffuseEnd, float z_stuff) | |
9299 { | |
9300 double v6; // st7@2 | |
9301 //IDirect3DDevice3 *v7; // eax@2 | |
9302 HRESULT v8; // eax@2 | |
9303 std::string v9; // [sp-18h] [bp-60h]@3 | |
9304 const char *v10; // [sp-Ch] [bp-54h]@2 | |
9305 const char *v11; // [sp-8h] [bp-50h]@2 | |
9306 int v12; // [sp-4h] [bp-4Ch]@2 | |
9307 RenderVertexD3D3 v13[2]; // [sp+8h] [bp-40h]@2 | |
9308 | |
9309 //if ( pRenderer->pRenderD3D ) | |
9310 { | |
9311 v6 = 0.001 - z_stuff; | |
9312 memcpy(v13, pLineBegin, 0x20u); | |
9313 memcpy(&v13[1], pLineEnd, sizeof(v13[1])); | |
9314 v13[0].pos.z = v6; | |
9315 v13[1].pos.z = v6; | |
9316 v13[0].diffuse = sDiffuseBegin; | |
9317 v13[1].diffuse = sDiffuseEnd; | |
9318 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); | |
9319 ErrD3D(pRenderD3D->pDevice->DrawPrimitive( | |
9320 D3DPT_LINELIST, | |
9321 452, | |
9322 v13, | |
9323 2, | |
9324 16)); | |
9325 } | |
9326 } | |
9327 | |
9328 | |
9329 void Render::DrawLines(const RenderVertexD3D3 *vertices, unsigned int num_vertices) | |
9330 { | |
9331 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); | |
9332 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_LINELIST, | |
9333 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
9334 (void *)vertices, | |
9335 num_vertices, | |
9336 D3DDP_DONOTLIGHT)); | |
9337 } | |
9338 | |
9339 | |
9340 void Render::DrawFansTransparent(const RenderVertexD3D3 *vertices, unsigned int num_vertices) | |
9341 { | |
9342 //ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false)); | |
9343 //ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, false)); | |
9344 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
9345 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA)); | |
9346 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA)); | |
9347 | |
9348 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr)); | |
9349 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
9350 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
9351 (void *)vertices, | |
9352 num_vertices, | |
9353 28)); | |
9354 | |
9355 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
9356 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
9357 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
9358 //ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, TRUE)); | |
9359 //ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
9360 } | |
9361 | |
9362 | |
9363 void Render::BeginDecals() | |
9364 { | |
9365 // code chunk from 0049C304 | |
9366 if (bUsingSpecular) | |
9367 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); | |
9368 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP)); | |
9369 | |
9370 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
9371 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
9372 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE)); | |
9373 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
9374 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
9375 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
9376 | |
9377 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pGame->pIndoorCameraD3D->LoadTextureAndGetHardwarePtr("hwsplat04"))); | |
9378 } | |
9379 | |
9380 | |
9381 void Render::EndDecals() | |
9382 { | |
9383 // code chunk from 0049C304 | |
9384 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW)); | |
9385 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
9386 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
9387 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
9388 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
9389 | |
9390 if (bUsingSpecular) | |
9391 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE)); | |
9392 } | |
9393 | |
9394 | |
9395 | |
9396 //----- (0049C095) -------------------------------------------------------- | |
9397 void Render::DrawDecal(Decal *pDecal, float z_bias) | |
9398 { | |
9399 signed int v21; // [sp+Ch] [bp-864h]@15 | |
9400 RenderVertexD3D3 pVerticesD3D[64]; // [sp+20h] [bp-850h]@6 | |
9401 | |
9402 if (pDecal->uNumVertices < 3) | |
9403 { | |
9404 Log::Warning(L"Decal has < 3 vertices"); | |
9405 return; | |
9406 } | |
9407 | |
9408 float color_mult; | |
9409 if ( pDecal->field_C1C & 1 ) | |
9410 color_mult = 1.0; | |
9411 else | |
9412 color_mult = pDecal->field_C18->_43B570_get_color_mult_by_time(); | |
9413 | |
9414 for (uint i = 0; i < pDecal->uNumVertices; ++i) | |
9415 { | |
9416 uint uTint = Render::GetActorTintColor(pDecal->pVertices[i].vWorldViewPosition.x, pDecal->field_C14, 0, 0, nullptr); | |
9417 | |
9418 uint uTintR = (uTint >> 16) & 0xFF, | |
9419 uTintG = (uTint >> 8) & 0xFF, | |
9420 uTintB = uTint & 0xFF; | |
9421 | |
9422 uint uDecalColorMultR = (pDecal->uColorMultiplier >> 16) & 0xFF, | |
9423 uDecalColorMultG = (pDecal->uColorMultiplier >> 8) & 0xFF, | |
9424 uDecalColorMultB = pDecal->uColorMultiplier & 0xFF; | |
9425 | |
9426 uint uFinalR = floorf(uTintR / 255.0 * color_mult * uDecalColorMultR + 0.0f), | |
9427 uFinalG = floorf(uTintG / 255.0 * color_mult * uDecalColorMultG + 0.0f), | |
9428 uFinalB = floorf(uTintB / 255.0 * color_mult * uDecalColorMultB + 0.0f); | |
9429 | |
9430 | |
9431 float v15; | |
9432 if (fabs(z_bias) < 1e-5) | |
9433 v15 = 1.0 - 1.0 / ((1.0f / pGame->pIndoorCameraD3D->GetShadingDistMist()) * pDecal->pVertices[i].vWorldViewPosition.x * 1000.0); | |
9434 else | |
9435 { | |
9436 v15 = 1.0 - 1.0 / ((1.0f / pGame->pIndoorCameraD3D->GetShadingDistMist()) * pDecal->pVertices[i].vWorldViewPosition.x * 1000.0) - z_bias; | |
9437 if (v15 < 0.000099999997) | |
9438 v15 = 0.000099999997; | |
9439 } | |
9440 | |
9441 pVerticesD3D[i].pos.z = v15; | |
9442 | |
9443 pVerticesD3D[i].pos.x = pDecal->pVertices[i].vWorldViewProjX; | |
9444 pVerticesD3D[i].pos.y = pDecal->pVertices[i].vWorldViewProjY; | |
9445 pVerticesD3D[i].texcoord.x = pDecal->pVertices[i].u; | |
9446 pVerticesD3D[i].texcoord.y = pDecal->pVertices[i].v; | |
9447 pVerticesD3D[i].diffuse = (uFinalR << 16) | (uFinalG << 8) | uFinalB; | |
9448 pVerticesD3D[i].specular = 0; | |
9449 pVerticesD3D[i].rhw = 1.0 / pDecal->pVertices[i].vWorldViewPosition.x; | |
9450 } | |
9451 | |
9452 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
9453 v21 = D3DDP_DONOTLIGHT | D3DDP_DONOTCLIP | D3DDP_DONOTUPDATEEXTENTS; | |
9454 else | |
9455 v21 = D3DDP_DONOTLIGHT; | |
9456 | |
9457 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
9458 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
9459 pVerticesD3D, | |
9460 pDecal->uNumVertices, | |
9461 v21)); | |
9462 } | |
9463 | |
9464 | |
9465 void Render::DrawSpecialEffectsQuad(const RenderVertexD3D3 *vertices, IDirect3DTexture2 *texture) | |
9466 { | |
9467 ErrD3D(pRenderD3D->pDevice->SetTexture(0, texture)); | |
9468 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE)); | |
9469 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE)); | |
9470 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE)); | |
9471 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
9472 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE)); | |
9473 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE)); | |
9474 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_ALWAYS)); | |
9475 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, | |
9476 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, | |
9477 (void *)vertices, 4, 28)); | |
9478 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE)); | |
9479 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO)); | |
9480 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE)); | |
9481 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE)); | |
9482 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE)); | |
9483 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_LESS)); | |
9484 } |