Mercurial > mm7
annotate Indoor.cpp @ 618:5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
author | Nomad |
---|---|
date | Fri, 08 Mar 2013 16:06:49 +0200 |
parents | 55d6b756e03a |
children | 7747161ea5b5 8c595c7a3218 b54755fa0dbc |
rev | line source |
---|---|
0 | 1 #include <assert.h> |
2 | |
3 #include "Outdoor.h" | |
4 #include "Render.h" | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
5 #include "SpriteObject.h" |
0 | 6 #include "Events.h" |
7 #include "Game.h" | |
8 #include "Viewport.h" | |
9 #include "Time.h" | |
10 #include "Party.h" | |
11 #include "Math.h" | |
12 #include "Allocator.h" | |
13 #include "LOD.h" | |
14 #include "DecorationList.h" | |
15 #include "ObjectList.h" | |
16 #include "Actor.h" | |
17 #include "Chest.h" | |
18 #include "GUIProgressBar.h" | |
19 #include "stru123.h" | |
20 #include "AudioPlayer.h" | |
21 #include "Log.h" | |
22 #include "TurnEngine.h" | |
23 #include "PaletteManager.h" | |
24 #include "MapInfo.h" | |
186 | 25 #include "IndoorCamera.h" |
0 | 26 |
27 #include "mm7_data.h" | |
28 | |
29 | |
30 | |
31 | |
32 | |
33 | |
34 | |
35 | |
36 | |
37 IndoorLocation *pIndoor = new IndoorLocation; | |
38 BLVRenderParams *pBLVRenderParams = new BLVRenderParams; | |
39 | |
40 struct DecorationList *pDecorationList; | |
41 | |
42 LevelDecoration pLevelDecorations[3000]; | |
43 size_t uNumLevelDecorations; | |
520
35f28d4c0ff9
GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents:
515
diff
changeset
|
44 LevelDecoration* activeLevelDecoration; |
0 | 45 |
46 LEVEL_TYPE uCurrentlyLoadedLevelType = LEVEL_null; | |
47 | |
48 stru320 stru_F8AD28; // idb | |
49 stru337 stru_F81018; | |
50 stru167_wrap array_5118E8; | |
51 BspRenderer_stru2 stru_F8A590; | |
52 BspRenderer *pBspRenderer = new BspRenderer; // idb | |
53 stru141 stru_721530; | |
54 stru352 stru_F83B80[480]; | |
55 | |
56 | |
57 | |
58 unsigned __int16 pDoorSoundIDsByLocationID[78] = | |
59 { | |
60 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, | |
61 300, 300, 300, 404, 302, 306, 308, 304, 308, 302, 400, 302, 300, | |
62 308, 308, 306, 308, 308, 304, 300, 404, 406, 300, 400, 406, 404, | |
63 306, 302, 408, 304, 300, 300, 300, 300, 300, 300, 300, 300, 300, | |
64 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 404, 304, | |
65 400, 300, 300, 404, 304, 400, 300, 300, 404, 304, 400, 300, 300 | |
66 }; | |
67 | |
68 | |
69 | |
70 //----- (0043F39E) -------------------------------------------------------- | |
71 void __fastcall PrepareDrawLists_BLV(IndoorLocation_drawstru *_this) | |
72 { | |
73 //int *v1; // ecx@1 | |
74 //double v2; // ST30_8@3 | |
75 //double v3; // ST30_8@6 | |
76 //double v4; // ST28_8@6 | |
77 int v5; // eax@4 | |
78 int v6; // eax@7 | |
79 unsigned int v7; // ebx@8 | |
80 BLVSector *v8; // esi@8 | |
81 unsigned __int16 *v9; // edi@8 | |
82 int i; // [sp+18h] [bp-8h]@7 | |
83 //unsigned __int8 v11; // [sp+1Ch] [bp-4h]@3 | |
84 signed int v12; // [sp+1Ch] [bp-4h]@8 | |
85 | |
86 pBLVRenderParams->Reset(_this); | |
87 pMobileLightsStack->uNumLightsActive = 0; | |
88 //uNumMobileLightsApplied = 0; | |
89 uNumDecorationsDrawnThisFrame = 0; | |
90 _unused000 = 0; | |
91 uNumSpritesDrawnThisFrame = 0; | |
92 uNumBillboardsToDraw = 0; | |
93 if ( !byte_4D864C || !(pGame->uFlags & 0x1000) ) | |
94 { | |
95 //v2 = pParty->flt_TorchlightColorB + 6.7553994e15; | |
96 //v11 = LOBYTE(v2); | |
97 v5 = 800; | |
98 if (pParty->TorchlightActive()) | |
99 v5 *= pParty->pPartyBuffs[16].uPower; | |
100 //LOBYTE(v1) = byte_4E94D0; | |
101 //v4 = pParty->flt_TorchlightColorR + 6.7553994e15; | |
102 //v3 = pParty->flt_TorchlightColorG + 6.7553994e15; | |
103 pMobileLightsStack->AddLight( | |
104 pBLVRenderParams->vPartyPos.x, | |
105 pBLVRenderParams->vPartyPos.y, | |
106 pBLVRenderParams->vPartyPos.z, | |
107 pBLVRenderParams->uPartySectorID, | |
108 v5, | |
109 floorf(pParty->flt_TorchlightColorR + 0.5f), | |
110 floorf(pParty->flt_TorchlightColorG + 0.5f), | |
111 floorf(pParty->flt_TorchlightColorB + 0.5f), | |
112 byte_4E94D0); | |
113 } | |
114 PrepareBspRenderList_BLV(); | |
115 PrepareItemsRenderList_BLV(); | |
116 PrepareActorRenderList_BLV(); | |
117 v6 = 0; | |
118 for ( i = 0; i < pBspRenderer->uNumVisibleNotEmptySectors; ++i ) | |
119 { | |
120 v7 = pBspRenderer->pVisibleSectorIDs_toDrawDecorsActorsEtcFrom[v6]; | |
121 v12 = 0; | |
122 v8 = &pIndoor->pSectors[pBspRenderer->pVisibleSectorIDs_toDrawDecorsActorsEtcFrom[v6]]; | |
123 v9 = v8->pDecorationIDs; | |
124 if ( v8->uNumDecorations > 0 ) | |
125 { | |
126 do | |
127 PrepareDecorationsRenderList_BLV(v9[v12++], v7); | |
128 while ( v12 < v8->uNumDecorations ); | |
129 } | |
130 v6 = i + 1; | |
131 } | |
132 MessWithBillboards_BLV(); | |
133 pGame->PrepareBloodsplats(); | |
134 } | |
135 | |
136 | |
137 | |
138 //----- (004407D9) -------------------------------------------------------- | |
139 int BLVRenderParams::Reset(IndoorLocation_drawstru *a2) | |
140 { | |
141 IndoorLocation_drawstru *v2; // ebx@1 | |
142 BLVRenderParams *v3; // esi@1 | |
143 int v4; // ST08_4@1 | |
144 int v5; // ST04_4@1 | |
145 int v6; // ST00_4@1 | |
146 int v7; // eax@1 | |
147 int v8; // ST08_4@2 | |
148 int v9; // ST04_4@2 | |
149 int v10; // ST00_4@2 | |
150 unsigned int v11; // edi@4 | |
151 unsigned int v12; // ecx@4 | |
152 int v13; // edx@4 | |
153 signed int v14; // ecx@4 | |
154 unsigned int v15; // edx@4 | |
155 unsigned int v16; // eax@4 | |
156 double v17; // st7@5 | |
157 int v18; // eax@5 | |
158 double v19; // st7@5 | |
159 int v20; // eax@5 | |
160 double v21; // st7@5 | |
161 int v22; // eax@5 | |
162 unsigned int v23; // edx@5 | |
163 unsigned int v24; // ecx@5 | |
164 int v25; // eax@5 | |
165 int v26; // eax@5 | |
166 signed int v27; // eax@6 | |
167 int result; // eax@6 | |
168 int v29; // [sp+24h] [bp+8h]@5 | |
169 | |
170 v2 = a2; | |
171 v3 = this; | |
172 this->field_0_timer_ = a2->field_0_timer; | |
173 this->uFlags = a2->uFlags; | |
174 this->vPartyPos.x = a2->vPosition.x; | |
175 this->vPartyPos.y = a2->vPosition.y; | |
176 this->vPartyPos.z = a2->vPosition.z; | |
177 v4 = this->vPartyPos.z; | |
178 v5 = this->vPartyPos.y; | |
179 this->sPartyRotY = a2->sRotationY; | |
180 v6 = this->vPartyPos.x; | |
181 this->sPartyRotX = a2->sRotationX; | |
182 v7 = pIndoor->GetSector(v6, v5, v4); | |
183 v3->uPartySectorID = v7; | |
184 if ( !v7 ) | |
185 { | |
186 v8 = v3->vPartyPos.z; | |
187 v3->vPartyPos.x = pParty->vPosition.x; | |
188 v9 = pParty->vPosition.y; | |
189 v10 = v3->vPartyPos.x; | |
190 v3->vPartyPos.y = pParty->vPosition.y; | |
191 v3->uPartySectorID = pIndoor->GetSector(v10, v9, v8); | |
192 } | |
193 if ( pRenderer->pRenderD3D ) | |
194 { | |
323 | 195 v3->sCosineY = stru_5C6E00->Cos(v3->sPartyRotY); |
196 v3->sSineY = stru_5C6E00->Sin(v3->sPartyRotY); | |
197 v3->sCosineNegX = stru_5C6E00->Cos(-v3->sPartyRotX); | |
198 v3->sSineNegX = stru_5C6E00->Sin(-v3->sPartyRotX); | |
0 | 199 v3->fCosineY = cos((3.141592653589793 + 3.141592653589793) * (double)v3->sPartyRotY * 0.00048828125); |
200 v3->fSineY = sin((3.141592653589793 + 3.141592653589793) * (double)v3->sPartyRotY * 0.00048828125); | |
201 v3->fCosineNegX = cos((3.141592653589793 + 3.141592653589793) * (double)-v3->sPartyRotX * 0.00048828125); | |
202 v3->fSineNegX = sin((3.141592653589793 + 3.141592653589793) * (double)-v3->sPartyRotX * 0.00048828125); | |
203 v3->field_64 = a2->field_3C; | |
204 v11 = v3->uViewportW; | |
205 v12 = v3->uViewportX; | |
206 v13 = v3->uViewportZ - v12; | |
207 v14 = v3->uViewportZ + v12; | |
208 v3->field_70 = v13 + 1; | |
209 v15 = v3->uViewportY; | |
210 v3->uViewportHeight = v11 - v15 + 1; | |
211 v16 = v3->uViewportW; | |
212 v3->uViewportCenterX = v14 >> 1; | |
213 v3->uViewportCenterY = (signed int)(v16 + v15) >> 1; | |
214 } | |
215 else | |
216 { | |
323 | 217 v3->sCosineY = stru_5C6E00->Cos(-v3->sPartyRotY); |
218 v3->sSineY = stru_5C6E00->Sin(-v3->sPartyRotY); | |
219 v3->sCosineNegX = stru_5C6E00->Cos(-v3->sPartyRotX); | |
220 v3->sSineNegX = stru_5C6E00->Sin(-v3->sPartyRotX); | |
0 | 221 v17 = cos((double)-v3->sPartyRotY * 0.0030664064); |
222 v18 = v3->sPartyRotY; | |
223 v3->fCosineY = v17; | |
224 v19 = sin((double)-v18 * 0.0030664064); | |
225 v20 = v3->sPartyRotX; | |
226 v3->fSineY = v19; | |
227 v21 = cos((double)-v20 * 0.0030664064); | |
228 v22 = v3->sPartyRotX; | |
229 v3->fCosineNegX = v21; | |
230 v3->fSineNegX = sin((double)-v22 * 0.0030664064); | |
231 v23 = v3->uViewportX; | |
232 v3->field_64 = a2->field_3C; | |
233 v24 = v3->uViewportZ; | |
234 v3->field_70 = v3->uViewportZ - v23 + 1; | |
235 v25 = v3->uViewportW - v3->uViewportY + 1; | |
236 v3->uViewportHeight = v25; | |
237 v29 = v25; | |
238 v26 = v3->field_64; | |
239 v3->uViewportCenterX = (signed int)(v24 + v23) >> 1; | |
240 v3->uViewportCenterY = v3->uViewportW - ((unsigned __int64)(v26 * (signed __int64)v29) >> 16); | |
241 } | |
242 v27 = (unsigned int)(signed __int64)((double)v3->field_70 * 0.5 / tan((double)(v2->field_1C_mb_fov >> 1) * 0.01745329) | |
243 + 0.5) << 16; | |
244 v3->field_40 = v27; | |
245 LODWORD(v3->field_44) = 4294967296i64 / v27; | |
246 v3->pRenderTarget = v2->pRenderTarget; | |
247 v3->uTargetWidth = v2->uTargetWidth; | |
248 v3->uTargetHeight = v2->uTargetHeight; | |
249 v3->uViewportX = v2->uViewportX; | |
250 v3->uViewportY = v2->uViewportY; | |
251 v3->uViewportZ = v2->uViewportZ; | |
252 v3->uViewportW = v2->uViewportW; | |
253 v3->pTargetZBuffer = v2->pTargetZ; | |
254 result = 0; | |
255 v3->field_8C = 0; | |
256 v3->field_84 = 0; | |
257 v3->uNumFacesRenderedThisFrame = 0; | |
258 v3->field_88 = 0; | |
259 pBLVRenderParams->field_90 = 64; | |
260 pBLVRenderParams->field_94 = 6; | |
261 return result; | |
262 } | |
263 | |
264 //----- (00440B44) -------------------------------------------------------- | |
265 void IndoorLocation::ExecDraw(bool bD3D) | |
266 { | |
267 int v2; // eax@3 | |
268 IndoorCameraD3D_Vec4 *v3; // edx@4 | |
269 unsigned int v5; // ecx@9 | |
270 RenderVertexSoft *v6; // [sp-4h] [bp-8h]@4 | |
271 | |
272 if (bD3D) | |
273 { | |
274 pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); | |
275 for (uint i = 0; i < pBspRenderer->uNumFaceIDs; ++i) | |
276 { | |
277 v2 = pBspRenderer->pFaceIDs[2 * i + 1]; | |
278 if ( pBspRenderer->field_FA8[v2].std__vector_0007A8 == -1 ) | |
279 { | |
280 v6 = 0; | |
281 v3 = 0; | |
282 } | |
283 else | |
284 { | |
285 v3 = pBspRenderer->field_FA8[v2].std__vector_0007AC; | |
286 v6 = pBspRenderer->field_FA8[v2].pVertices; | |
287 } | |
288 IndoorLocation::ExecDraw_d3d(pBspRenderer->pFaceIDs[2 * i], v3, 4, v6); | |
289 } | |
290 } | |
291 else | |
292 { | |
293 for (uint j = 0; j < pBspRenderer->uNumFaceIDs; ++j ) | |
294 { | |
295 v5 = pBspRenderer->pFaceIDs[2 * j]; | |
296 pBLVRenderParams->field_7C = &pBspRenderer->field_FA8[pBspRenderer->pFaceIDs[2 * j + 1]].field_C; | |
297 IndoorLocation::ExecDraw_sw(v5); | |
298 } | |
299 } | |
300 } | |
301 | |
302 //----- (00440BED) -------------------------------------------------------- | |
303 void __fastcall sub_440BED(IndoorLocation_drawstru *_this) | |
304 { | |
305 unsigned __int16 *v1; // edi@7 | |
306 char *v2; // esi@8 | |
307 int v3; // ecx@9 | |
308 unsigned int v4; // edx@9 | |
309 char *v5; // eax@10 | |
310 signed int v6; // [sp+8h] [bp-8h]@7 | |
311 int v7; // [sp+Ch] [bp-4h]@8 | |
312 | |
313 PrepareDrawLists_BLV(_this); | |
314 if (pBLVRenderParams->uPartySectorID) | |
315 IndoorLocation::ExecDraw(pRenderer->pRenderD3D != 0); | |
316 pRenderer->DrawBillboardList_BLV(); | |
317 if ( !pRenderer->pRenderD3D ) | |
318 { | |
486 | 319 if (pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_D3D_OUTLINES) |
320 pBspRenderer->DrawFaceOutlines(); | |
321 if (pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_SW_OUTLINES) | |
0 | 322 { |
323 v1 = pBLVRenderParams->pRenderTarget; | |
324 v6 = 0; | |
325 if ( (signed int)pBspRenderer->std__vector_000FA8 > 0 ) | |
326 { | |
327 v7 = 0; | |
328 v2 = (char *)&pBspRenderer->field_FA8[0].field_C._viewport_space_w; | |
329 do | |
330 { | |
331 v3 = *((int *)v2 - 1); | |
332 v4 = pRenderer->uTargetSurfacePitch * *((int *)v2 - 1); | |
333 if ( v3 <= *(int *)v2 ) | |
334 { | |
335 v5 = (char *)&pBspRenderer->field_FA8[0].field_C.array_3D8[v3 + v7]; | |
336 do | |
337 { | |
338 v1[v4 + *((short *)v5 - 480)] = 255; | |
339 ++v3; | |
340 v1[v4 + *(short *)v5] = 255; | |
341 v4 += pRenderer->uTargetSurfacePitch; | |
342 v5 += 2; | |
343 } | |
344 while ( v3 <= *(int *)v2 ); | |
345 } | |
346 ++v6; | |
347 v7 += 1126; | |
348 v2 += 2252; | |
349 } | |
350 while ( v6 < (signed int)pBspRenderer->std__vector_000FA8 ); | |
351 } | |
352 } | |
353 } | |
354 } | |
355 | |
356 | |
357 | |
358 | |
359 | |
360 //----- (00441BD4) -------------------------------------------------------- | |
361 void IndoorLocation::Draw() | |
362 { | |
186 | 363 //int v0; // eax@1 |
0 | 364 IndoorLocation_drawstru _this; // [sp+0h] [bp-4Ch]@5 |
365 int v2; // [sp+44h] [bp-8h]@5 | |
366 int v3; // [sp+48h] [bp-4h]@5 | |
367 | |
186 | 368 _this.uFlags = 0; |
369 if (viewparams->draw_sw_outlines) | |
370 _this.uFlags |= INDOOR_CAMERA_DRAW_SW_OUTLINES; | |
371 if (viewparams->draw_d3d_outlines) | |
372 _this.uFlags |= INDOOR_CAMERA_DRAW_D3D_OUTLINES; | |
373 | |
0 | 374 _this.field_0_timer = pEventTimer->uTotalGameTimeElapsed; |
375 _this.field_1C_mb_fov = 65; | |
581 | 376 _this.vPosition.x = pParty->vPosition.x - ((stru_5C6E00->Cos(pParty->sRotationY) * (signed __int64)pParty->y_rotation_granularity) >> 16); |
377 _this.vPosition.y = pParty->vPosition.y - ((stru_5C6E00->Sin(pParty->sRotationY) * (signed __int64)pParty->y_rotation_granularity) >> 16); | |
378 _this.vPosition.z = pParty->vPosition.z + pParty->sEyelevel; | |
379 _this.sRotationX = pParty->sRotationX; | |
0 | 380 _this.sRotationY = pParty->sRotationY; |
381 _this.pRenderTarget = pRenderer->pTargetSurface; | |
382 _this.uViewportX = pViewport->uScreenX; | |
383 _this.uViewportY = pViewport->uScreenY; | |
384 _this.uViewportZ = pViewport->uScreenZ; | |
385 _this.uViewportW = pViewport->uScreenW; | |
386 _this.field_3C = pViewport->field_30; | |
581 | 387 |
0 | 388 _this.uTargetWidth = 640; |
389 _this.uTargetHeight = 480; | |
390 _this.pTargetZ = pRenderer->pActiveZBuffer; | |
391 sub_440BED(&_this); | |
569 | 392 pParty->uFlags &= ~2; |
0 | 393 pGame->DrawParticles(); |
394 array_5118E8._440F07(); | |
395 } | |
396 | |
397 //----- (004C0EF2) -------------------------------------------------------- | |
398 void BLVFace::FromODM(ODMFace *a2) | |
399 { | |
400 this->pFacePlane_old.vNormal.x = a2->pFacePlane.vNormal.x; | |
401 this->pFacePlane_old.vNormal.y = a2->pFacePlane.vNormal.y; | |
402 this->pFacePlane_old.vNormal.z = a2->pFacePlane.vNormal.z; | |
403 this->pFacePlane_old.dist = a2->pFacePlane.dist; | |
404 this->pFacePlane.vNormal.x = (double)(a2->pFacePlane.vNormal.x & 0xFFFF) * 0.000015259022 | |
405 + (double)(a2->pFacePlane.vNormal.x >> 16); | |
406 this->pFacePlane.vNormal.y = (double)(a2->pFacePlane.vNormal.y & 0xFFFF) * 0.000015259022 | |
407 + (double)(a2->pFacePlane.vNormal.y >> 16); | |
408 this->pFacePlane.vNormal.z = (double)(a2->pFacePlane.vNormal.z & 0xFFFF) * 0.000015259022 | |
409 + (double)(a2->pFacePlane.vNormal.z >> 16); | |
410 this->pFacePlane.dist = (double)(a2->pFacePlane.dist & 0xFFFF) * 0.000015259022 + (double)(a2->pFacePlane.dist >> 16); | |
411 this->uAttributes = a2->uAttributes; | |
412 this->pBounding.x1 = a2->pBoundingBox.x1; | |
413 this->pBounding.y1 = a2->pBoundingBox.y1; | |
414 this->pBounding.z1 = a2->pBoundingBox.z1; | |
415 this->pBounding.x2 = a2->pBoundingBox.x2; | |
416 this->pBounding.y2 = a2->pBoundingBox.y2; | |
417 this->pBounding.z2 = a2->pBoundingBox.z2; | |
418 this->zCalc1 = a2->zCalc1; | |
419 this->zCalc2 = a2->zCalc2; | |
420 this->zCalc3 = a2->zCalc3; | |
421 this->pXInterceptDisplacements = a2->pXInterceptDisplacements; | |
422 this->pYInterceptDisplacements = a2->pYInterceptDisplacements; | |
423 this->pZInterceptDisplacements = a2->pZInterceptDisplacements; | |
424 this->uPolygonType = (PolygonType)a2->uPolygonType; | |
425 this->uNumVertices = a2->uNumVertices; | |
426 this->uBitmapID = a2->uTextureID; | |
427 this->pVertexIDs = a2->pVertexIDs; | |
428 } | |
429 | |
430 //----- (004B0A25) -------------------------------------------------------- | |
431 void IndoorLocation::ExecDraw_d3d(unsigned int uFaceID, IndoorCameraD3D_Vec4 *pVertices, unsigned int uNumVertices, RenderVertexSoft *a4) | |
432 { | |
433 //unsigned int v4; // esi@1 | |
434 char *v5; // eax@4 | |
435 signed int v6; // ecx@4 | |
436 char *v7; // eax@8 | |
437 signed int v8; // ecx@8 | |
438 //BLVFace *v9; // esi@13 | |
439 //IndoorCameraD3D *v10; // edi@16 | |
440 //int v11; // ebx@17 | |
441 //Vec3_short_ *v12; // ecx@18 | |
442 //char *v13; // edx@18 | |
443 //int v14; // eax@19 | |
444 //unsigned __int8 v15; // sf@19 | |
445 //unsigned __int8 v16; // of@19 | |
446 int v17; // ebx@25 | |
447 //double v18; // st7@27 | |
448 //double v19; // st6@27 | |
449 //double v20; // st5@27 | |
450 //char v21; // dl@27 | |
451 //unsigned int v22; // eax@44 | |
452 unsigned int v23; // eax@35 | |
453 //DWORD v24; // eax@37 | |
454 //int v25; // eax@38 | |
455 //char *v26; // edi@38 | |
456 IDirect3DTexture2 *v27; // eax@42 | |
457 Texture *v28; // [sp+Ch] [bp-1Ch]@15 | |
458 //int i; // [sp+10h] [bp-18h]@38 | |
459 //LightmapBuilder *pStru4; // [sp+14h] [bp-14h]@16 | |
460 //IndoorCameraD3D *v31; // [sp+18h] [bp-10h]@16 | |
461 //IndoorCameraD3D_Vec4 *a7; // [sp+1Ch] [bp-Ch]@1 | |
462 //unsigned int uFaceID_; // [sp+20h] [bp-8h]@1 | |
463 unsigned int uNumVerticesa; // [sp+24h] [bp-4h]@17 | |
464 int a4a; // [sp+34h] [bp+Ch]@25 | |
465 //unsigned int a4b; // [sp+34h] [bp+Ch]@38 | |
466 | |
467 //v4 = uFaceID; | |
468 //a7 = pVertices; | |
469 //uFaceID_ = uFaceID; | |
470 if (uFaceID >= pIndoor->uNumFaces) | |
471 return; | |
472 | |
473 static RenderVertexSoft static_vertices_F7C228[64]; | |
474 static RenderVertexSoft static_vertices_F7B628[64]; | |
475 static stru154 stru_F7B60C; // idb | |
476 | |
477 //v9 = &pIndoor->pFaces[uFaceID]; | |
478 auto pFace = &pIndoor->pFaces[uFaceID]; | |
479 if (pFace->uNumVertices < 3) | |
480 return; | |
481 | |
482 | |
483 if (pFace->Invisible()) | |
484 return; | |
485 | |
486 ++pBLVRenderParams->uNumFacesRenderedThisFrame; | |
487 pFace->uAttributes |= 0x80u; | |
488 | |
489 if (!pFace->GetTexture()) | |
490 return; | |
491 | |
492 v28 = pFace->GetTexture(); | |
493 | |
494 if (!pGame->pIndoorCameraD3D->IsCulled(pFace)) | |
495 { | |
496 uNumVerticesa = pFace->uNumVertices; | |
497 for (uint i = 0; i < pFace->uNumVertices; ++i) | |
498 { | |
499 static_vertices_F7C228[i].vWorldPosition.x = pIndoor->pVertices[pFace->pVertexIDs[i]].x; | |
500 static_vertices_F7C228[i].vWorldPosition.y = pIndoor->pVertices[pFace->pVertexIDs[i]].y; | |
501 static_vertices_F7C228[i].vWorldPosition.z = pIndoor->pVertices[pFace->pVertexIDs[i]].z; | |
502 static_vertices_F7C228[i].u = (signed short)pFace->pVertexUIDs[i]; | |
503 static_vertices_F7C228[i].v = (signed short)pFace->pVertexVIDs[i]; | |
504 } | |
505 | |
506 if (!pVertices || | |
507 (pGame->pStru9Instance->_498377(a4, 4u, pVertices, static_vertices_F7C228, &uNumVerticesa), uNumVerticesa) ) | |
508 { | |
581 | 509 if (pGame->pIndoorCameraD3D->_437285_prolly_colide_vertices_against_frustrum(static_vertices_F7C228, &uNumVerticesa, |
510 static_vertices_F7B628, pGame->pIndoorCameraD3D->std__vector_000034_prolly_frustrum, 4, false, 0) != 1 || uNumVerticesa ) | |
0 | 511 { |
512 a4a = SHIWORD(stru_F8AD28.uCurrentAmbientLightLevel); | |
513 v17 = (248 - 8 * SHIWORD(stru_F8AD28.uCurrentAmbientLightLevel)) | (((248 - 8 * SHIWORD(stru_F8AD28.uCurrentAmbientLightLevel)) | ((248 - 8 * SHIWORD(stru_F8AD28.uCurrentAmbientLightLevel)) << 8)) << 8); | |
514 sub_4B0E07(uFaceID); | |
515 pGame->pLightmapBuilder->ApplyLights_IndoorFace(uFaceID); | |
516 pDecalBuilder->ApplyBloodsplatDecals_IndoorFace(uFaceID); | |
517 pGame->pIndoorCameraD3D->ViewTransfrom_OffsetUV(static_vertices_F7B628, uNumVerticesa, array_507D30, &stru_F8AD28); | |
518 pGame->pIndoorCameraD3D->Project(array_507D30, uNumVerticesa, 0); | |
519 pGame->pLightmapBuilder->std__vector_000004_size = 0; | |
520 if (stru_F8AD28.uNumLightsApplied > 0 || | |
521 pDecalBuilder->uNumDecals > 0) | |
522 { | |
523 stru_F7B60C.face_plane.vNormal.x = pFace->pFacePlane.vNormal.x; | |
524 stru_F7B60C.polygonType = pFace->uPolygonType; | |
525 stru_F7B60C.face_plane.vNormal.y = pFace->pFacePlane.vNormal.y; | |
526 stru_F7B60C.face_plane.vNormal.z = pFace->pFacePlane.vNormal.z; | |
527 stru_F7B60C.face_plane.dist = pFace->pFacePlane.dist; | |
528 } | |
529 | |
595 | 530 if (stru_F8AD28.uNumLightsApplied > 0 && !(pFace->uAttributes & 0x400000)) |
581 | 531 pGame->pLightmapBuilder->ApplyLights(&stru_F8AD28, &stru_F7B60C, uNumVerticesa, array_507D30, pVertices, 0); |
0 | 532 |
533 if (pDecalBuilder->uNumDecals > 0) | |
581 | 534 pDecalBuilder->ApplyDecals(a4a, 1, &stru_F7B60C, uNumVerticesa, array_507D30, pVertices, 0, pFace->uSectorID); |
0 | 535 |
536 if (pFace->Animated() && | |
265 | 537 pFace->uBitmapID == pRenderer->hd_water_tile_id ) |
0 | 538 { |
539 __debugbreak(); | |
265 | 540 v23 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame]; |
0 | 541 goto LABEL_42; |
542 } | |
543 | |
544 if (pFace->Animated()) | |
545 { | |
546 //auto v24 = GetTickCount() / 4; | |
547 //auto v25 = v24 - stru_5C6E00->uIntegerHalfPi; | |
548 uint eightSeconds = GetTickCount() % 8000; | |
549 float angle = (eightSeconds / 8000.0f) * 2 * 3.1415f; | |
550 | |
551 //animte lava back and forth | |
552 for (uint i = 0; i < uNumVerticesa; ++i) | |
553 //array_507D30[i].v += (double)(pBitmaps_LOD->pTextures[pFace->uBitmapID].uHeightMinus1 & (unsigned int)(stru_5C6E00->SinCos(v25) >> 8)); | |
554 array_507D30[i].v += pBitmaps_LOD->pTextures[pFace->uBitmapID].uHeightMinus1 * cosf(angle); | |
555 | |
556 v23 = pFace->uBitmapID; | |
557 goto LABEL_42; | |
558 } | |
595 | 559 else if (pFace->uAttributes & 0x4000) |
0 | 560 { |
581 | 561 v23 = pTextureFrameTable->GetFrameTexture(pFace->uBitmapID, pBLVRenderParams->field_0_timer_); |
0 | 562 LABEL_42: |
581 | 563 v27 = pBitmaps_LOD->pHardwareTextures[v23]; |
595 | 564 if (pFace->uAttributes & FACE_DO_NOT_LIGHT) |
581 | 565 _479A53_draw_some_blv_poly(uNumVerticesa, uFaceID); |
566 else | |
567 pRenderer->DrawIndoorPolygon(uNumVerticesa, pFace, v27, v28, 8 * uFaceID | 6, v17, 0); | |
568 return; | |
0 | 569 } |
595 | 570 //v17 = 0xFFFFFFFF; |
571 v23 = pFace->uBitmapID; | |
572 goto LABEL_42; | |
0 | 573 } |
574 } | |
575 } | |
576 } | |
577 | |
578 //----- (004AFF79) -------------------------------------------------------- | |
579 void IndoorLocation::ExecDraw_sw(unsigned int uFaceID) | |
580 { | |
581 unsigned int v1; // ebx@1 | |
582 BLVFace *v2; // esi@3 | |
583 unsigned int v3; // eax@3 | |
584 Texture *v4; // eax@8 | |
585 Texture *v5; // edi@8 | |
586 int v6; // eax@9 | |
587 int v7; // eax@9 | |
588 int v8; // ecx@17 | |
589 int v9; // ebx@17 | |
590 int v10; // eax@17 | |
591 int v11; // esi@17 | |
592 unsigned int v12; // eax@17 | |
593 int j; // ecx@19 | |
594 int v14; // edx@20 | |
595 int v15; // eax@20 | |
596 int v16; // edx@20 | |
597 int i; // ebx@22 | |
598 int v18; // ecx@23 | |
599 int v19; // eax@23 | |
600 int v20; // eax@23 | |
601 int v21; // eax@24 | |
602 unsigned __int8 *v22; // ecx@24 | |
603 int v23; // ebx@24 | |
604 int v24; // esi@25 | |
605 int v25; // eax@28 | |
606 unsigned __int16 *v26; // eax@28 | |
607 unsigned int v27; // eax@29 | |
608 int v28; // eax@30 | |
609 char *v29; // esi@31 | |
610 int v30; // eax@33 | |
611 int v31; // eax@33 | |
612 int v32; // eax@35 | |
613 int v33; // edx@35 | |
614 signed int v34; // ebx@35 | |
615 int v35; // eax@35 | |
616 int v36; // ebx@35 | |
617 signed int v37; // ebx@35 | |
618 signed int v38; // edi@35 | |
619 unsigned int v39; // edi@36 | |
620 int v40; // edx@40 | |
621 int v41; // ecx@40 | |
622 signed int v42; // edx@40 | |
623 int v43; // edx@42 | |
624 int v44; // eax@42 | |
625 unsigned __int16 *v45; // eax@43 | |
626 int *v46; // esi@44 | |
627 unsigned __int16 *v47; // edi@44 | |
628 unsigned int v48; // edx@44 | |
629 int v49; // ebx@44 | |
630 char v50; // cl@44 | |
631 char v51; // ch@44 | |
632 unsigned int v52; // ebx@46 | |
633 int v53; // edx@46 | |
634 unsigned int v54; // ebx@46 | |
635 int v55; // edx@46 | |
636 unsigned int v56; // ebx@47 | |
637 int v57; // edx@47 | |
638 int v58; // ebx@47 | |
639 int v59; // edx@47 | |
640 unsigned __int16 *v60; // eax@50 | |
641 int *v61; // esi@51 | |
642 unsigned __int16 *v62; // edi@51 | |
643 unsigned int v63; // edx@51 | |
644 int v64; // ebx@51 | |
645 char v65; // cl@51 | |
646 char v66; // ch@51 | |
647 unsigned int v67; // ebx@53 | |
648 int v68; // edx@53 | |
649 unsigned int v69; // ebx@53 | |
650 int v70; // edx@53 | |
651 unsigned int v71; // ebx@54 | |
652 int v72; // edx@54 | |
653 int v73; // ebx@54 | |
654 int v74; // edx@54 | |
655 unsigned __int16 *v75; // eax@58 | |
656 int *v76; // esi@59 | |
657 int v77; // edi@59 | |
658 unsigned int v78; // edx@59 | |
659 int v79; // ebx@59 | |
660 char v80; // cl@59 | |
661 char v81; // ch@59 | |
662 int v82; // ebx@61 | |
663 int v83; // edx@61 | |
664 unsigned int v84; // ebx@62 | |
665 int v85; // edx@62 | |
666 unsigned __int16 *v86; // eax@65 | |
667 int *v87; // esi@66 | |
668 int v88; // edi@66 | |
669 unsigned int v89; // edx@66 | |
670 int v90; // ebx@66 | |
671 char v91; // cl@66 | |
672 char v92; // ch@66 | |
673 int v93; // ebx@68 | |
674 int v94; // edx@68 | |
675 unsigned __int16 v95; // bx@69 | |
676 int v96; // edx@69 | |
677 unsigned __int8 *v97; // [sp+Ch] [bp-9Ch]@24 | |
678 unsigned __int8 *v98; // [sp+10h] [bp-98h]@24 | |
679 unsigned __int8 *v99; // [sp+14h] [bp-94h]@24 | |
680 unsigned __int8 *v100; // [sp+18h] [bp-90h]@24 | |
681 int v101; // [sp+1Ch] [bp-8Ch]@40 | |
682 int v102; // [sp+20h] [bp-88h]@31 | |
683 BLVFace *v103; // [sp+24h] [bp-84h]@3 | |
684 unsigned __int16 *v104; // [sp+28h] [bp-80h]@24 | |
685 int v105; // [sp+2Ch] [bp-7Ch]@30 | |
686 int v106; // [sp+30h] [bp-78h]@24 | |
687 int v107; // [sp+34h] [bp-74h]@9 | |
688 Texture *v108; // [sp+38h] [bp-70h]@8 | |
689 int v109; // [sp+3Ch] [bp-6Ch]@9 | |
690 unsigned int v110; // [sp+40h] [bp-68h]@24 | |
691 unsigned int v111; // [sp+44h] [bp-64h]@1 | |
692 int *k; // [sp+48h] [bp-60h]@31 | |
693 int v113; // [sp+4Ch] [bp-5Ch]@35 | |
694 int v114; // [sp+50h] [bp-58h]@35 | |
695 int v115; // [sp+54h] [bp-54h]@42 | |
696 unsigned __int8 *v116; // [sp+58h] [bp-50h]@35 | |
697 int v117; // [sp+5Ch] [bp-4Ch]@33 | |
698 int a1; // [sp+60h] [bp-48h]@27 | |
699 int v119; // [sp+64h] [bp-44h]@17 | |
700 int v120; // [sp+68h] [bp-40h]@23 | |
701 unsigned int v121; // [sp+6Ch] [bp-3Ch]@40 | |
702 unsigned int v122; // [sp+70h] [bp-38h]@35 | |
703 int v123; // [sp+74h] [bp-34h]@30 | |
704 int v124; // [sp+78h] [bp-30h]@17 | |
705 int v125; // [sp+7Ch] [bp-2Ch]@35 | |
706 unsigned int v126; // [sp+80h] [bp-28h]@9 | |
707 int v127; // [sp+84h] [bp-24h]@17 | |
708 int v128; // [sp+88h] [bp-20h]@9 | |
709 int *pZPixel; // [sp+8Ch] [bp-1Ch]@28 | |
710 int a2; // [sp+90h] [bp-18h]@16 | |
711 unsigned int v131; // [sp+94h] [bp-14h]@17 | |
712 unsigned __int16 *pColorPixel; // [sp+98h] [bp-10h]@28 | |
713 int v133; // [sp+9Ch] [bp-Ch]@17 | |
714 int v134; // [sp+A0h] [bp-8h]@17 | |
715 int v135; // [sp+A4h] [bp-4h]@24 | |
716 | |
717 v1 = uFaceID; | |
718 v111 = pRenderer->uTargetSurfacePitch; | |
719 if ( (uFaceID & 0x80000000u) == 0 ) | |
720 { | |
721 if ( (signed int)uFaceID < (signed int)pIndoor->uNumFaces ) | |
722 { | |
723 v2 = &pIndoor->pFaces[uFaceID]; | |
724 v103 = v2; | |
725 v3 = v2->uAttributes; | |
726 if ( !(BYTE1(v3) & 0x20) ) | |
727 { | |
728 if ( v3 & 0x400000 ) | |
729 { | |
730 sub_4ADD1D(uFaceID); | |
731 return; | |
732 } | |
733 if ( !(v3 & 0x10) || (sub_4AD504(uFaceID), pRenderer->pRenderD3D) ) | |
734 { | |
735 v4 = v2->GetTexture(); | |
736 ++pBLVRenderParams->uNumFacesRenderedThisFrame; | |
737 v5 = v4; | |
738 v108 = v4; | |
739 if ( v4 ) | |
740 { | |
741 v6 = v4->palette_id2; | |
742 LOBYTE(v2->uAttributes) |= 0x80u; | |
743 v109 = v6; | |
744 sub_4AE5F1(v1); | |
745 v126 = stru_F8AD28.pDeltaUV[0]; | |
746 v128 = stru_F8AD28.pDeltaUV[1]; | |
747 v107 = bUseLoResSprites; | |
748 v7 = sub_423B5D(v1); | |
749 if ( v7 ) | |
750 { | |
751 if ( sub_424829(v7, &stru_F8A590, pBLVRenderParams->field_7C, v1) ) | |
752 { | |
753 if ( v2->uPolygonType == 1 ) | |
754 { | |
755 for ( i = 0; i < stru_F8AD28.uNumLightsApplied; stru_F8AD28._blv_lights_ys[v18] = v20 ) | |
756 { | |
757 v18 = i; | |
758 v120 = stru_F8AD28._blv_lights_xs[i]; | |
759 v134 = (unsigned __int64)(v120 * (signed __int64)-stru_F8AD28.plane_4.vNormal.y) >> 16; | |
760 v133 = stru_F8AD28.plane_4.vNormal.x; | |
761 v120 = stru_F8AD28._blv_lights_ys[i]; | |
762 v133 = (unsigned __int64)(v120 * (signed __int64)stru_F8AD28.plane_4.vNormal.x) >> 16; | |
763 v19 = v128; | |
764 stru_F8AD28._blv_lights_xs[i] = v126 | |
765 + v134 | |
766 + ((unsigned __int64)(v120 | |
767 * (signed __int64)stru_F8AD28.plane_4.vNormal.x) >> 16); | |
768 v20 = v19 - stru_F8AD28._blv_lights_zs[i++]; | |
769 } | |
770 } | |
771 else | |
772 { | |
773 if ( v2->uPolygonType != 3 ) | |
774 { | |
775 if ( v2->uPolygonType == 4 ) | |
776 { | |
777 LABEL_16: | |
778 a2 = 0; | |
779 if ( stru_F8AD28.uNumLightsApplied > 0 ) | |
780 { | |
781 do | |
782 { | |
783 v8 = a2; | |
784 v9 = stru_F8AD28._blv_lights_xs[a2]; | |
785 v131 = stru_F8AD28._blv_lights_ys[a2]; | |
786 v10 = stru_F8AD28._blv_lights_zs[a2]; | |
787 v11 = (signed int)(v10 * stru_F8AD28.plane_4.vNormal.z | |
788 + stru_F8AD28.plane_4.dist | |
789 + v9 * stru_F8AD28.plane_4.vNormal.x | |
790 + v131 * stru_F8AD28.plane_4.vNormal.y) >> 16; | |
791 v119 = v9 | |
792 - ((unsigned __int64)(stru_F8AD28.plane_4.vNormal.x | |
793 * (signed __int64)((signed int)(v10 * stru_F8AD28.plane_4.vNormal.z | |
794 + stru_F8AD28.plane_4.dist | |
795 + v9 * stru_F8AD28.plane_4.vNormal.x | |
796 + v131 * stru_F8AD28.plane_4.vNormal.y) >> 16)) >> 16); | |
797 v131 -= (unsigned __int64)(stru_F8AD28.plane_4.vNormal.y * (signed __int64)v11) >> 16; | |
798 v127 = v10 - ((unsigned __int64)(stru_F8AD28.plane_4.vNormal.z * (signed __int64)v11) >> 16); | |
799 stru_F8AD28._blv_lights_xs[a2] = ((unsigned __int64)(v119 | |
800 * (signed __int64)stru_F8AD28.vec_14.x) >> 16) | |
801 + ((unsigned __int64)((signed int)v131 | |
802 * (signed __int64)stru_F8AD28.vec_14.y) >> 16); | |
803 v124 = (unsigned __int64)(v119 * (signed __int64)stru_F8AD28.vec_20.x) >> 16; | |
804 v134 = (unsigned __int64)((signed int)v131 * (signed __int64)stru_F8AD28.vec_20.y) >> 16; | |
805 v133 = (unsigned __int64)(v127 * (signed __int64)stru_F8AD28.vec_20.z) >> 16; | |
806 v12 = v126; | |
807 stru_F8AD28._blv_lights_ys[v8] = v124 | |
808 + ((unsigned __int64)((signed int)v131 | |
809 * (signed __int64)stru_F8AD28.vec_20.y) >> 16) | |
810 + ((unsigned __int64)(v127 | |
811 * (signed __int64)stru_F8AD28.vec_20.z) >> 16); | |
812 stru_F8AD28._blv_lights_xs[v8] += v12; | |
813 stru_F8AD28._blv_lights_ys[v8] += v128; | |
814 ++a2; | |
815 } | |
816 while ( a2 < stru_F8AD28.uNumLightsApplied ); | |
817 v2 = v103; | |
818 } | |
819 goto LABEL_24; | |
820 } | |
821 if ( v2->uPolygonType != 5 ) | |
822 { | |
823 if ( v2->uPolygonType != 6 ) | |
824 goto LABEL_24; | |
825 goto LABEL_16; | |
826 } | |
827 } | |
828 for ( j = 0; j < stru_F8AD28.uNumLightsApplied; *(int *)v15 = v16 ) | |
829 { | |
830 v14 = v128; | |
831 stru_F8AD28._blv_lights_xs[j] += v126; | |
832 v15 = 4 * j + 16297672; | |
833 v16 = v14 - stru_F8AD28._blv_lights_ys[j++]; | |
834 } | |
835 } | |
836 LABEL_24: | |
837 v135 = 1; | |
838 pGame->_44ED0A(v2, &v135, 31); | |
839 v104 = sr_sub_47C24C_get_palette(v2, v109, 0, 1); | |
840 v134 = stru_F8AD28.field_44; | |
841 v106 = stru_F8AD28.field_48; | |
842 v21 = stru_F8A590._viewport_space_y; | |
843 a2 = stru_F8A590._viewport_space_y; | |
844 v110 = v111 * stru_F8A590._viewport_space_y; | |
845 v97 = v5->pLevelOfDetail0; | |
846 v98 = v5->pLevelOfDetail1; | |
847 v99 = v5->pLevelOfDetail2; | |
848 v22 = v5->pLevelOfDetail3; | |
849 v23 = 640 * stru_F8A590._viewport_space_y; | |
850 v119 = 640 * stru_F8A590._viewport_space_y; | |
851 v100 = v22; | |
852 if ( stru_F8A590._viewport_space_y <= stru_F8A590._viewport_space_w ) | |
853 { | |
854 v24 = 2 * stru_F8A590._viewport_space_y; | |
855 v120 = 2 * stru_F8A590._viewport_space_y; | |
856 while ( 1 ) | |
857 { | |
858 a1 = *(__int16 *)((char *)stru_F8A590.array_18 + v24); | |
859 sub_4AE313(a1, v21, &stru_F81018.field_0); | |
860 if ( LOBYTE(viewparams->field_20) ) | |
861 { | |
862 v27 = v111 * (v24 - pBLVRenderParams->uViewportY); | |
863 pZPixel = &pBLVRenderParams->pTargetZBuffer[2 | |
864 * (*(__int16 *)((char *)stru_F8A590.array_18 + v24) | |
865 + 320 * (v24 - pBLVRenderParams->uViewportY)) | |
866 - pBLVRenderParams->uViewportX]; | |
867 pColorPixel = &pBLVRenderParams->pRenderTarget[v27 | |
868 + 2 * *(__int16 *)((char *)stru_F8A590.array_18 + v24) | |
869 - pBLVRenderParams->uViewportX]; | |
870 v26 = &pBLVRenderParams->pRenderTarget[v27 | |
871 + 2 * *(__int16 *)((char *)stru_F8A590.array_3D8 + v24) | |
872 - pBLVRenderParams->uViewportX]; | |
873 v23 = v119; | |
874 } | |
875 else | |
876 { | |
877 v25 = *(__int16 *)((char *)stru_F8A590.array_18 + v24); | |
878 pZPixel = &pBLVRenderParams->pTargetZBuffer[v25 + v23]; | |
879 pColorPixel = &pBLVRenderParams->pRenderTarget[v25 + v110]; | |
880 v26 = &pBLVRenderParams->pRenderTarget[v110 + *(__int16 *)((char *)stru_F8A590.array_3D8 + v24)]; | |
881 } | |
882 v131 = (unsigned int)v26; | |
883 HIWORD(v28) = HIWORD(stru_F81018.field_0.field_0); | |
884 LOWORD(v28) = 0; | |
885 v105 = stru_F8AD28.field_0 | v28; | |
886 v123 = sub_4AE491(SHIWORD(stru_F81018.field_0.field_4), SHIWORD(stru_F81018.field_0.field_8)); | |
887 if ( (unsigned int)pColorPixel < v131 ) | |
888 { | |
889 v102 = v107 + v106; | |
890 v29 = (char *)&stru_F81018.field_34.field_8; | |
891 a1 += v134; | |
892 for ( k = &stru_F81018.field_34.field_8; ; v29 = (char *)k ) | |
893 { | |
894 sub_4AE313(a1, a2, (stru337_stru0 *)(v29 - 8)); | |
895 v30 = *((int *)v29 - 2); | |
896 LOWORD(v30) = 0; | |
897 v117 = v105; | |
898 v31 = stru_F8AD28.field_0 | v30; | |
899 if ( v105 <= (unsigned int)v31 ) | |
900 v117 = v31; | |
901 v105 = v31; | |
902 v32 = *((int *)v29 - 14); | |
903 v122 = *((int *)v29 - 14) >> v107; | |
904 v33 = *((int *)v29 - 13); | |
905 v125 = *((int *)v29 - 13) >> v107; | |
906 v34 = *((int *)v29 - 1) - v32; | |
907 v113 = (*(int *)v29 - v33) >> v102; | |
908 v35 = *((int *)v29 - 11); | |
909 v114 = v34 >> v102; | |
910 v116 = (&v97)[4 * v35]; | |
911 v36 = v35 + 16 - v5->uWidthLn2; | |
912 v133 = v35 + 16; | |
913 v127 = v35 + v36; | |
914 v37 = v5->uWidthMinus1 >> v35; | |
915 v38 = v5->uHeightMinus1 >> v35 << (v35 + 16); | |
916 v128 = v37; | |
917 v126 = v38; | |
918 v39 = (unsigned int)(LOBYTE(viewparams->field_20) ? &pColorPixel[2 * v134] : &pColorPixel[v134]); | |
919 if ( v39 > v131 ) | |
920 v39 = v131; | |
921 v40 = *((short *)v29 + 1); | |
922 v41 = *((short *)v29 - 1); | |
923 v121 = v39; | |
924 v42 = sub_4AE491(v41, v40); | |
925 v101 = v42; | |
926 v124 = (signed int)(v39 - (int)pColorPixel) >> 1; | |
927 if ( v123 >> 16 == v42 >> 16 || v135 & 2 ) | |
928 { | |
929 v123 = (int)sr_sub_47C24C_get_palette(v103, v109, v123 >> 16, 1); | |
930 if ( LOBYTE(viewparams->field_20) ) | |
931 { | |
932 v86 = pColorPixel; | |
933 if ( (unsigned int)pColorPixel < v121 ) | |
934 { | |
935 v87 = pZPixel; | |
936 v88 = v123; | |
937 v89 = v122; | |
938 v90 = v125; | |
939 v91 = v133; | |
940 v92 = v127; | |
941 if ( v124 & 2 ) | |
942 { | |
943 *pZPixel = v117; | |
944 v87 -= 2; | |
945 v86 = pColorPixel + 2; | |
946 goto LABEL_69; | |
947 } | |
948 do | |
949 { | |
950 v86 += 4; | |
951 v93 = *(&v116[v128 & (v89 >> v91)] + ((v126 & v90) >> v92)); | |
952 v94 = v117; | |
953 LOWORD(v93) = *(short *)(v88 + 2 * v93); | |
954 *v87 = v117; | |
955 v87[1] = v94; | |
956 v87[640] = v94; | |
957 v87[641] = v94; | |
958 *(v86 - 4) = v93; | |
959 *(v86 - 3) = v93; | |
960 v86[636] = v93; | |
961 v86[637] = v93; | |
962 v87[2] = v94; | |
963 v87[3] = v94; | |
964 v87[642] = v94; | |
965 v87[643] = v94; | |
966 v122 += v114; | |
967 v125 += v113; | |
968 v89 = v122; | |
969 v90 = v125; | |
970 LABEL_69: | |
971 v87 += 4; | |
972 v95 = *(short *)(v88 + 2 * *(&v116[v128 & (v89 >> v91)] + ((v126 & v90) >> v92))); | |
973 v96 = v114; | |
974 *(v86 - 2) = v95; | |
975 *(v86 - 1) = v95; | |
976 v86[638] = v95; | |
977 v86[639] = v95; | |
978 v122 += v96; | |
979 v125 += v113; | |
980 v89 = v122; | |
981 v90 = v125; | |
982 } | |
983 while ( (unsigned int)v86 < v121 ); | |
984 pColorPixel = v86; | |
985 pZPixel = v87; | |
986 } | |
987 } | |
988 else | |
989 { | |
990 v75 = pColorPixel; | |
991 if ( (unsigned int)pColorPixel < v121 ) | |
992 { | |
993 v76 = pZPixel; | |
994 v77 = v123; | |
995 v78 = v122; | |
996 v79 = v125; | |
997 v80 = v133; | |
998 v81 = v127; | |
999 if ( v124 & 1 ) | |
1000 { | |
1001 *pZPixel = v117; | |
1002 --v76; | |
1003 v75 = pColorPixel + 1; | |
1004 goto LABEL_62; | |
1005 } | |
1006 do | |
1007 { | |
1008 v75 += 2; | |
1009 v82 = *(&v116[v128 & (v78 >> v80)] + ((v126 & v79) >> v81)); | |
1010 v83 = v117; | |
1011 LOWORD(v82) = *(short *)(v77 + 2 * v82); | |
1012 *v76 = v117; | |
1013 *(v75 - 2) = v82; | |
1014 v76[1] = v83; | |
1015 v122 += v114; | |
1016 v125 += v113; | |
1017 v78 = v122; | |
1018 v79 = v125; | |
1019 LABEL_62: | |
1020 v84 = (unsigned int)(&v116[v128 & (v78 >> v80)] + ((v126 & v79) >> v81)); | |
1021 v76 += 2; | |
1022 v85 = v114; | |
1023 *(v75 - 1) = *(short *)(v77 + 2 * *(char *)v84); | |
1024 v122 += v85; | |
1025 v125 += v113; | |
1026 v78 = v122; | |
1027 v79 = v125; | |
1028 } | |
1029 while ( (unsigned int)v75 < v121 ); | |
1030 pColorPixel = v75; | |
1031 pZPixel = v76; | |
1032 } | |
1033 } | |
1034 } | |
1035 else | |
1036 { | |
1037 v43 = (v42 - v123) >> v106; | |
1038 v44 = v123 - v43; | |
1039 v123 = v43; | |
1040 v115 = v44; | |
1041 if ( LOBYTE(viewparams->field_20) ) | |
1042 { | |
1043 v60 = pColorPixel; | |
1044 if ( (unsigned int)pColorPixel < v121 ) | |
1045 { | |
1046 v61 = pZPixel; | |
1047 v62 = v104; | |
1048 v63 = v122; | |
1049 v64 = v125; | |
1050 v65 = v133; | |
1051 v66 = v127; | |
1052 if ( v124 & 2 ) | |
1053 { | |
1054 *pZPixel = v117; | |
1055 v61 += 2; | |
1056 v60 = pColorPixel + 2; | |
1057 goto LABEL_54; | |
1058 } | |
1059 do | |
1060 { | |
1061 v67 = (v128 & (v63 >> v65)) + ((v126 & v64) >> v66); | |
1062 v68 = v123 + v115; | |
1063 v60 += 4; | |
1064 v115 = v68; | |
1065 v69 = ((v68 & 0xFFFF0000u) >> 8) + v116[v67]; | |
1066 v70 = v117; | |
1067 LOWORD(v69) = v62[v69]; | |
1068 *v61 = v117; | |
1069 v61[1] = v70; | |
1070 v61[640] = v70; | |
1071 v61[641] = v70; | |
1072 *(v60 - 4) = v69; | |
1073 *(v60 - 3) = v69; | |
1074 v60[636] = v69; | |
1075 v60[637] = v69; | |
1076 v61[2] = v70; | |
1077 v61[3] = v70; | |
1078 v61[642] = v70; | |
1079 v61[643] = v70; | |
1080 v122 += v114; | |
1081 v125 += v113; | |
1082 v63 = v122; | |
1083 v64 = v125; | |
1084 v61 += 4; | |
1085 LABEL_54: | |
1086 v71 = (v128 & (v63 >> v65)) + ((v126 & v64) >> v66); | |
1087 v72 = v123 + v115; | |
1088 v73 = v116[v71]; | |
1089 v115 = v72; | |
1090 LOWORD(v73) = v62[((v72 & 0xFFFF0000u) >> 8) + v73]; | |
1091 v74 = v114; | |
1092 *(v60 - 2) = v73; | |
1093 *(v60 - 1) = v73; | |
1094 v60[638] = v73; | |
1095 v60[639] = v73; | |
1096 v122 += v74; | |
1097 v125 += v113; | |
1098 v63 = v122; | |
1099 v64 = v125; | |
1100 } | |
1101 while ( (unsigned int)v60 < v121 ); | |
1102 pColorPixel = v60; | |
1103 pZPixel = v61; | |
1104 } | |
1105 } | |
1106 else | |
1107 { | |
1108 v45 = pColorPixel; | |
1109 if ( (unsigned int)pColorPixel < v121 ) | |
1110 { | |
1111 v46 = pZPixel; | |
1112 v47 = v104; | |
1113 v48 = v122; | |
1114 v49 = v125; | |
1115 v50 = v133; | |
1116 v51 = v127; | |
1117 if ( v124 & 1 ) | |
1118 { | |
1119 *pZPixel = v117; | |
1120 ++v46; | |
1121 v45 = pColorPixel + 1; | |
1122 goto LABEL_47; | |
1123 } | |
1124 do | |
1125 { | |
1126 v52 = (v128 & (v48 >> v50)) + ((v126 & v49) >> v51); | |
1127 v53 = v123 + v115; | |
1128 v45 += 2; | |
1129 v115 = v53; | |
1130 v54 = ((v53 & 0xFFFF0000u) >> 8) + v116[v52]; | |
1131 v55 = v117; | |
1132 LOWORD(v54) = v47[v54]; | |
1133 *v46 = v117; | |
1134 *(v45 - 2) = v54; | |
1135 v46[1] = v55; | |
1136 v122 += v114; | |
1137 v125 += v113; | |
1138 v48 = v122; | |
1139 v49 = v125; | |
1140 v46 += 2; | |
1141 LABEL_47: | |
1142 v56 = (v128 & (v48 >> v50)) + ((v126 & v49) >> v51); | |
1143 v57 = v123 + v115; | |
1144 v58 = v116[v56]; | |
1145 v115 = v57; | |
1146 LOWORD(v58) = v47[((v57 & 0xFFFF0000u) >> 8) + v58]; | |
1147 v59 = v114; | |
1148 *(v45 - 1) = v58; | |
1149 v122 += v59; | |
1150 v125 += v113; | |
1151 v48 = v122; | |
1152 v49 = v125; | |
1153 } | |
1154 while ( (unsigned int)v45 < v121 ); | |
1155 pColorPixel = v45; | |
1156 pZPixel = v46; | |
1157 } | |
1158 } | |
1159 } | |
1160 k += 13; | |
1161 v5 = v108; | |
1162 v123 = v101; | |
1163 a1 += v134; | |
1164 if ( (unsigned int)pColorPixel >= v131 ) | |
1165 break; | |
1166 } | |
1167 v23 = v119; | |
1168 v24 = v120; | |
1169 } | |
1170 ++a2; | |
1171 v110 += v111; | |
1172 v23 += 640; | |
1173 v24 += 2; | |
1174 v120 = v24; | |
1175 v119 = v23; | |
1176 if ( a2 > stru_F8A590._viewport_space_w ) | |
1177 break; | |
1178 v21 = a2; | |
1179 } | |
1180 } | |
1181 return; | |
1182 } | |
1183 } | |
1184 } | |
1185 } | |
1186 } | |
1187 } | |
1188 } | |
1189 } | |
1190 // 4AE491: using guessed type int __fastcall sub_4AE491(int, int); | |
1191 | |
1192 | |
1193 | |
1194 //----- (004B0E07) -------------------------------------------------------- | |
1195 unsigned int __fastcall sub_4B0E07(unsigned int uFaceID) | |
1196 { | |
1197 BLVFace *v1; // edi@1 | |
1198 BLVFaceExtra *v2; // ecx@1 | |
1199 Texture *v3; // esi@1 | |
1200 unsigned int v4; // eax@1 | |
1201 unsigned int v5; // ecx@1 | |
1202 unsigned int result; // eax@1 | |
1203 unsigned int v7; // ecx@5 | |
1204 | |
1205 v1 = &pIndoor->pFaces[uFaceID]; | |
1206 v2 = &pIndoor->pFaceExtras[v1->uFaceExtraID]; | |
1207 v3 = (Texture *)(v1->uBitmapID != -1 ? (int)&pBitmaps_LOD->pTextures[v1->uBitmapID] : 0); | |
1208 stru_F8AD28.pDeltaUV[0] = v2->sTextureDeltaU; | |
1209 stru_F8AD28.pDeltaUV[1] = v2->sTextureDeltaV; | |
1210 v4 = GetTickCount(); | |
1211 v5 = v1->uAttributes; | |
1212 result = v4 >> 3; | |
1213 if ( v5 & 4 ) | |
1214 { | |
1215 stru_F8AD28.pDeltaUV[1] -= result & v3->uHeightMinus1; | |
1216 } | |
1217 else | |
1218 { | |
1219 if ( v5 & 0x20 ) | |
1220 stru_F8AD28.pDeltaUV[1] += result & v3->uHeightMinus1; | |
1221 } | |
1222 v7 = v1->uAttributes; | |
1223 if ( BYTE1(v7) & 8 ) | |
1224 { | |
1225 stru_F8AD28.pDeltaUV[0] -= result & v3->uWidthMinus1; | |
1226 } | |
1227 else | |
1228 { | |
1229 if ( v7 & 0x40 ) | |
1230 stru_F8AD28.pDeltaUV[0] += result & v3->uWidthMinus1; | |
1231 } | |
1232 return result; | |
1233 } | |
1234 | |
1235 //----- (004B0EA8) -------------------------------------------------------- | |
618
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1236 void BspRenderer::AddFaceToRenderList_d3d(int a2, unsigned int uFaceID) |
0 | 1237 { |
1238 //unsigned int v3; // edx@1 | |
1239 //stru170 *v4; // ebx@1 | |
1240 //BLVFace *v5; // eax@1 | |
1241 //int v6; // ecx@2 | |
1242 unsigned __int16 v7; // ax@11 | |
1243 Vec3_short_ *v8; // esi@15 | |
1244 int v9; // edx@15 | |
1245 signed int v10; // eax@18 | |
1246 signed int v11; // edi@19 | |
1247 signed int v12; // ecx@19 | |
1248 signed int v13; // esi@19 | |
1249 signed int v14; // edx@20 | |
1250 int v15; // edx@24 | |
1251 //int v16; // esi@29 | |
1252 //BLVFace *v17; // edi@34 | |
1253 unsigned __int16 v18; // ax@34 | |
1254 char *v19; // eax@38 | |
1255 signed int v20; // ecx@38 | |
1256 char *v21; // eax@42 | |
1257 signed int v22; // ecx@42 | |
1258 //signed int v23; // edx@45 | |
1259 //char *v24; // ecx@46 | |
1260 //int v25; // eax@47 | |
1261 //Vec3_short_ *v26; // eax@47 | |
1262 //double v27; // st7@47 | |
1263 //signed int v28; // ST28_4@47 | |
1264 char v29; // al@48 | |
1265 signed int v30; // eax@51 | |
1266 int v31; // eax@52 | |
1267 //unsigned int v32; // eax@55 | |
1268 //__int16 v33; // cx@56 | |
1269 signed int v34; // [sp+Ch] [bp-14h]@18 | |
1270 //int a0; // [sp+14h] [bp-Ch]@2 | |
1271 //IndoorCameraD3D *a0a; // [sp+14h] [bp-Ch]@36 | |
1272 signed int v37; // [sp+18h] [bp-8h]@19 | |
1273 //stru10 *v38; // [sp+18h] [bp-8h]@36 | |
1274 //BLVFace *v39; // [sp+1Ch] [bp-4h]@1 | |
1275 | |
1276 //v3 = uFaceID; | |
1277 //v4 = this; | |
1278 //v5 = &pIndoor->pFaces[uFaceID]; | |
1279 field_FA8[std__vector_000FA8].std__vector_0007A8 = -1; | |
1280 //v39 = &pIndoor->pFaces[uFaceID]; | |
1281 | |
1282 auto pFace = &pIndoor->pFaces[uFaceID]; | |
1283 | |
315 | 1284 if (pFace->TwoSided()) |
0 | 1285 { |
1286 auto p = &field_FA8[a2]; | |
1287 //v6 = (int)((char *)this + 2252 * a2); | |
1288 //a0 = v6; | |
1289 if (p->uFaceID == uFaceID) | |
1290 return; | |
1291 if (!a2 && | |
1292 pBLVRenderParams->vPartyPos.x >= pFace->pBounding.x1 - 16 && | |
1293 pBLVRenderParams->vPartyPos.x <= pFace->pBounding.x2 + 16 && | |
1294 pBLVRenderParams->vPartyPos.y >= pFace->pBounding.y1 - 16 && | |
1295 pBLVRenderParams->vPartyPos.y <= pFace->pBounding.y2 + 16 && | |
1296 pBLVRenderParams->vPartyPos.z >= pFace->pBounding.z1 - 16 && | |
1297 pBLVRenderParams->vPartyPos.z <= pFace->pBounding.z2 + 16 ) | |
1298 { | |
1299 if ( abs(pFace->pFacePlane_old.dist + pBLVRenderParams->vPartyPos.x * pFace->pFacePlane_old.vNormal.x | |
1300 + pBLVRenderParams->vPartyPos.y * pFace->pFacePlane_old.vNormal.y | |
1301 + pBLVRenderParams->vPartyPos.z * pFace->pFacePlane_old.vNormal.z) <= 589824 ) | |
1302 { | |
1303 v7 = pFace->uSectorID; | |
1304 if ( field_FA8[0].uSectorID == v7 ) | |
1305 v7 = pFace->uBackSectorID; | |
1306 field_FA8[std__vector_000FA8].uSectorID = v7; | |
1307 field_FA8[std__vector_000FA8].uFaceID = uFaceID; | |
1308 field_FA8[std__vector_000FA8].uViewportX = pBLVRenderParams->uViewportX; | |
1309 field_FA8[std__vector_000FA8].uViewportZ = pBLVRenderParams->uViewportZ; | |
1310 field_FA8[std__vector_000FA8].uViewportY = pBLVRenderParams->uViewportY; | |
1311 field_FA8[std__vector_000FA8].uViewportW = pBLVRenderParams->uViewportW; | |
1312 field_FA8[std__vector_000FA8++].field_C._43F9E1( | |
1313 pBLVRenderParams->uViewportX, | |
1314 pBLVRenderParams->uViewportY, | |
1315 pBLVRenderParams->uViewportZ, | |
1316 pBLVRenderParams->uViewportW); | |
1317 sub_440639(std__vector_000FA8 - 1); | |
1318 return; | |
1319 } | |
1320 //v5 = v39; | |
1321 //v6 = a0; | |
1322 } | |
1323 v8 = &pIndoor->pVertices[pFace->pVertexIDs[0]]; | |
1324 v9 = pFace->pFacePlane_old.vNormal.x * (v8->x - pBLVRenderParams->vPartyPos.x) | |
1325 + pFace->pFacePlane_old.vNormal.y * (v8->y - pBLVRenderParams->vPartyPos.y) | |
1326 + pFace->pFacePlane_old.vNormal.z * (v8->z - pBLVRenderParams->vPartyPos.z); | |
1327 if (p->uSectorID != pFace->uSectorID) | |
1328 v9 = -v9; | |
1329 if ( v9 < 0 ) | |
1330 { | |
1331 v10 = sub_423B5D(uFaceID); | |
1332 v34 = v10; | |
1333 if ( v10 ) | |
1334 { | |
1335 v11 = dword_50BAC8[0]; | |
1336 v12 = dword_50B9D8_ys[0]; | |
1337 a2 = dword_50BAC8[0]; | |
1338 v13 = 1; | |
1339 v37 = dword_50B9D8_ys[0]; | |
1340 if ( v10 > 1 ) | |
1341 { | |
1342 do | |
1343 { | |
1344 v14 = dword_50BAC8[v13]; | |
1345 if ( v14 < a2 ) | |
1346 a2 = dword_50BAC8[v13]; | |
1347 if ( v14 > v11 ) | |
1348 v11 = v14; | |
1349 v15 = dword_50B9D8_ys[v13]; | |
1350 if ( v15 < v37 ) | |
1351 v37 = dword_50B9D8_ys[v13]; | |
1352 if ( v15 > v12 ) | |
1353 v12 = dword_50B9D8_ys[v13]; | |
1354 v10 = v34; | |
1355 ++v13; | |
1356 } | |
1357 while ( v13 < v34 ); | |
1358 } | |
1359 //v16 = a0; | |
1360 if (v11 >= p->uViewportX && | |
1361 a2 <= p->uViewportZ && | |
1362 v12 >= p->uViewportY && | |
1363 v37 <= p->uViewportW && | |
1364 sub_424829(v10, &field_FA8[std__vector_000FA8].field_C, &p->field_C, uFaceID)) | |
1365 { | |
1366 //v17 = v39; | |
1367 v18 = pFace->uSectorID; | |
1368 if (p->uSectorID == v18 ) | |
1369 v18 = pFace->uBackSectorID; | |
1370 field_FA8[std__vector_000FA8].uSectorID = v18; | |
1371 field_FA8[std__vector_000FA8].uFaceID = uFaceID; | |
1372 field_FA8[std__vector_000FA8].uViewportX = pBLVRenderParams->uViewportX; | |
1373 field_FA8[std__vector_000FA8].uViewportZ = pBLVRenderParams->uViewportZ; | |
1374 field_FA8[std__vector_000FA8].uViewportY = pBLVRenderParams->uViewportY; | |
1375 field_FA8[std__vector_000FA8].uViewportW = pBLVRenderParams->uViewportW; | |
1376 //v38 = pGame->pStru10Instance; | |
1377 //a0a = pGame->pIndoorCameraD3D; | |
1378 if (p->std__vector_0007A8 == -1 ) | |
1379 { | |
1380 v29 = pGame->pStru10Instance->_49C681_DrawDebugStuff( | |
1381 pFace, | |
1382 field_FA8[std__vector_000FA8].std__vector_0007AC, | |
1383 field_FA8[std__vector_000FA8].pVertices); | |
1384 } | |
1385 else | |
1386 { | |
618
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1387 static RenderVertexSoft static_subAddFaceToRenderList_d3d_stru_F7AA08[64]; |
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1388 static RenderVertexSoft static_subAddFaceToRenderList_d3d_stru_F79E08[64]; |
0 | 1389 |
1390 //v23 = 0; | |
1391 a2 = pFace->uNumVertices; | |
1392 for (uint k = 0; k < pFace->uNumVertices; ++k) | |
1393 { | |
618
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1394 //v24 = (char *)&static_subAddFaceToRenderList_d3d_stru_F7AA08[0].vWorldPosition.z; |
0 | 1395 //do |
1396 //{ | |
1397 //v25 = pFace->pVertexIDs[k]; | |
1398 //v26 = &pIndoor->pVertices[pFace->pVertexIDs[k]]; | |
1399 auto pVertex = &pIndoor->pVertices[pFace->pVertexIDs[k]]; | |
1400 //v27 = (double)v26->z; | |
1401 //v28 = v26->y; | |
1402 //v17 = v39; | |
618
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1403 static_subAddFaceToRenderList_d3d_stru_F7AA08[k].vWorldPosition.x = pVertex->x; |
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1404 static_subAddFaceToRenderList_d3d_stru_F7AA08[k].vWorldPosition.y = pVertex->y; |
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1405 static_subAddFaceToRenderList_d3d_stru_F7AA08[k].vWorldPosition.z = pVertex->z; |
0 | 1406 //v24 += 48; |
1407 //} | |
1408 //while ( v23 < a2 ); | |
1409 } | |
1410 pGame->pIndoorCameraD3D->_437285_prolly_colide_vertices_against_frustrum( | |
618
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1411 static_subAddFaceToRenderList_d3d_stru_F7AA08, |
0 | 1412 (unsigned int *)&a2, |
618
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1413 static_subAddFaceToRenderList_d3d_stru_F79E08, |
0 | 1414 p->std__vector_0007AC, |
1415 4, | |
1416 0, | |
1417 0); | |
1418 v29 = pGame->pStru10Instance->_49C5DA( | |
1419 pFace, | |
618
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1420 static_subAddFaceToRenderList_d3d_stru_F79E08, |
0 | 1421 &a2, |
1422 field_FA8[std__vector_000FA8].std__vector_0007AC, | |
1423 field_FA8[std__vector_000FA8].pVertices); | |
1424 } | |
1425 if ( v29 ) | |
1426 { | |
1427 field_FA8[std__vector_000FA8].std__vector_0007A8 = uFaceID; | |
1428 v30 = std__vector_000FA8; | |
1429 if ( v30 < 150 ) | |
1430 { | |
1431 v31 = v30 + 1; | |
1432 std__vector_000FA8 = v31; | |
1433 sub_440639(v31 - 1); | |
1434 } | |
1435 } | |
486 | 1436 if (pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_SW_OUTLINES) |
0 | 1437 pGame->pIndoorCameraD3D->PrepareAndDrawDebugOutline(pFace, 0x1E1EFF); |
1438 } | |
1439 } | |
1440 } | |
1441 } | |
1442 else | |
1443 { | |
1444 if (uNumFaceIDs < 1000 ) | |
1445 { | |
1446 pFaceIDs[2 * uNumFaceIDs] = uFaceID; | |
1447 pFaceIDs[2 * uNumFaceIDs++ + 1] = a2; | |
1448 } | |
1449 } | |
1450 } | |
1451 | |
1452 | |
1453 //----- (004AFB86) -------------------------------------------------------- | |
618
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
1454 void BspRenderer::AddFaceToRenderList_sw(int a2, unsigned int uFaceID) |
0 | 1455 { |
1456 BspRenderer *v3; // ebx@1 | |
1457 BLVFace *v4; // eax@1 | |
1458 char *v5; // ecx@2 | |
1459 unsigned __int16 v6; // ax@11 | |
1460 int v7; // ecx@13 | |
1461 Vec3_short_ *v8; // esi@16 | |
1462 int v9; // edx@16 | |
1463 signed int v10; // eax@19 | |
1464 signed int v11; // edi@20 | |
1465 signed int v12; // ecx@20 | |
1466 signed int v13; // esi@20 | |
1467 int v14; // edx@21 | |
1468 int v15; // edx@25 | |
1469 unsigned __int16 v16; // ax@35 | |
1470 signed int v17; // eax@37 | |
1471 int v18; // eax@38 | |
1472 signed int v19; // [sp+Ch] [bp-14h]@19 | |
1473 char *v20; // [sp+14h] [bp-Ch]@2 | |
1474 BLVFace *v21; // [sp+18h] [bp-8h]@1 | |
1475 signed int v22; // [sp+1Ch] [bp-4h]@20 | |
1476 signed int v23; // [sp+28h] [bp+8h]@20 | |
1477 | |
1478 v3 = this; | |
1479 v4 = &pIndoor->pFaces[uFaceID]; | |
1480 v21 = v4; | |
315 | 1481 if (v4->TwoSided()) |
0 | 1482 { |
1483 v5 = (char *)this + 2252 * a2; | |
1484 v20 = v5; | |
1485 if ( uFaceID == *((short *)v5 + 2982) ) | |
1486 return; | |
1487 if ( !a2 | |
1488 && pBLVRenderParams->vPartyPos.x >= v4->pBounding.x1 - 16 | |
1489 && pBLVRenderParams->vPartyPos.x <= v4->pBounding.x2 + 16 | |
1490 && pBLVRenderParams->vPartyPos.y >= v4->pBounding.y1 - 16 | |
1491 && pBLVRenderParams->vPartyPos.y <= v4->pBounding.y2 + 16 | |
1492 && pBLVRenderParams->vPartyPos.z >= v4->pBounding.z1 - 16 | |
1493 && pBLVRenderParams->vPartyPos.z <= v4->pBounding.z2 + 16 ) | |
1494 { | |
1495 if ( abs(v4->pFacePlane_old.dist + pBLVRenderParams->vPartyPos.x * v4->pFacePlane_old.vNormal.x | |
1496 + pBLVRenderParams->vPartyPos.y * v4->pFacePlane_old.vNormal.y | |
1497 + pBLVRenderParams->vPartyPos.z * v4->pFacePlane_old.vNormal.z) <= 589824 ) | |
1498 { | |
1499 v6 = v21->uSectorID; | |
1500 if ( v3->field_FA8[0].uSectorID == v6 ) | |
1501 v6 = v21->uBackSectorID; | |
1502 v3->field_FA8[v3->std__vector_000FA8].uSectorID = v6; | |
1503 v3->field_FA8[v3->std__vector_000FA8].uFaceID = uFaceID; | |
1504 v3->field_FA8[v3->std__vector_000FA8].uViewportX = LOWORD(pBLVRenderParams->uViewportX); | |
1505 v3->field_FA8[v3->std__vector_000FA8].uViewportZ = LOWORD(pBLVRenderParams->uViewportZ); | |
1506 v3->field_FA8[v3->std__vector_000FA8].uViewportY = LOWORD(pBLVRenderParams->uViewportY); | |
1507 v3->field_FA8[v3->std__vector_000FA8].uViewportW = LOWORD(pBLVRenderParams->uViewportW); | |
1508 v3->field_FA8[v3->std__vector_000FA8++].field_C._43F9E1( | |
1509 SLOWORD(pBLVRenderParams->uViewportX), | |
1510 pBLVRenderParams->uViewportY, | |
1511 SLOWORD(pBLVRenderParams->uViewportZ), | |
1512 pBLVRenderParams->uViewportW); | |
1513 v7 = v3->std__vector_000FA8 - 1; | |
1514 goto LABEL_14; | |
1515 } | |
1516 v4 = v21; | |
1517 v5 = v20; | |
1518 } | |
1519 v8 = &pIndoor->pVertices[*v4->pVertexIDs]; | |
1520 v9 = v4->pFacePlane_old.vNormal.x * ((signed __int16)*(int *)&v8->x - pBLVRenderParams->vPartyPos.x) | |
1521 + v4->pFacePlane_old.vNormal.y * ((signed __int16)(*(int *)&v8->x >> 16) - pBLVRenderParams->vPartyPos.y) | |
1522 + v4->pFacePlane_old.vNormal.z * (v8->z - pBLVRenderParams->vPartyPos.z); | |
1523 if ( *((short *)v5 + 2004) != v4->uSectorID ) | |
1524 v9 = -v9; | |
1525 if ( v9 < 0 ) | |
1526 { | |
1527 v10 = sub_423B5D(uFaceID); | |
1528 v19 = v10; | |
1529 if ( v10 ) | |
1530 { | |
1531 v11 = dword_50BAC8[0]; | |
1532 v12 = dword_50B9D8_ys[0]; | |
1533 v23 = dword_50BAC8[0]; | |
1534 v13 = 1; | |
1535 v22 = dword_50B9D8_ys[0]; | |
1536 if ( v10 > 1 ) | |
1537 { | |
1538 do | |
1539 { | |
1540 v14 = dword_50BAC8[v13]; | |
1541 if ( v14 < v23 ) | |
1542 v23 = dword_50BAC8[v13]; | |
1543 if ( v14 > v11 ) | |
1544 v11 = dword_50BAC8[v13]; | |
1545 v15 = dword_50B9D8_ys[v13]; | |
1546 if ( v15 < v22 ) | |
1547 v22 = dword_50B9D8_ys[v13]; | |
1548 if ( v15 > v12 ) | |
1549 v12 = dword_50B9D8_ys[v13]; | |
1550 v10 = v19; | |
1551 ++v13; | |
1552 } | |
1553 while ( v13 < v19 ); | |
1554 } | |
1555 if ( v11 >= *((short *)v20 + 2005) | |
1556 && v23 <= *((short *)v20 + 2007) | |
1557 && v12 >= *((short *)v20 + 2006) | |
1558 && v22 <= *((short *)v20 + 2008) | |
1559 && sub_424829(v10, &v3->field_FA8[v3->std__vector_000FA8].field_C, (BspRenderer_stru2 *)(v20 + 4020), uFaceID) ) | |
1560 { | |
1561 v16 = v21->uSectorID; | |
1562 if ( *((short *)v20 + 2004) == v16 ) | |
1563 v16 = v21->uBackSectorID; | |
1564 v3->field_FA8[v3->std__vector_000FA8].uSectorID = v16; | |
1565 v3->field_FA8[v3->std__vector_000FA8].uFaceID = uFaceID; | |
1566 v3->field_FA8[v3->std__vector_000FA8].uViewportX = LOWORD(pBLVRenderParams->uViewportX); | |
1567 v3->field_FA8[v3->std__vector_000FA8].uViewportZ = LOWORD(pBLVRenderParams->uViewportZ); | |
1568 v3->field_FA8[v3->std__vector_000FA8].uViewportY = LOWORD(pBLVRenderParams->uViewportY); | |
1569 v3->field_FA8[v3->std__vector_000FA8].uViewportW = LOWORD(pBLVRenderParams->uViewportW); | |
1570 v17 = v3->std__vector_000FA8; | |
1571 if ( v17 < 150 ) | |
1572 { | |
1573 v18 = v17 + 1; | |
1574 v3->std__vector_000FA8 = v18; | |
1575 v7 = v18 - 1; | |
1576 LABEL_14: | |
1577 sub_440639(v7); | |
1578 return; | |
1579 } | |
1580 } | |
1581 } | |
1582 } | |
1583 } | |
1584 else | |
1585 { | |
1586 if ( (signed int)this->uNumFaceIDs < 1000 ) | |
1587 { | |
1588 this->pFaceIDs[2 * this->uNumFaceIDs] = uFaceID; | |
1589 this->pFaceIDs[2 * this->uNumFaceIDs++ + 1] = a2; | |
1590 } | |
1591 } | |
1592 } | |
1593 | |
1594 //----- (004B0967) -------------------------------------------------------- | |
486 | 1595 void BspRenderer::DrawFaceOutlines() |
0 | 1596 { |
1597 signed int i; // edi@1 | |
1598 int v1; // esi@2 | |
1599 unsigned int v2; // ecx@4 | |
1600 int v3; // eax@4 | |
1601 int v4; // eax@6 | |
1602 unsigned __int16 *v5; // edx@6 | |
1603 int v6; // ecx@7 | |
1604 int v7; // esi@8 | |
1605 | |
1606 for ( i = 0; i < (signed int)pBspRenderer->uNumFaceIDs; ++i ) | |
1607 { | |
1608 v1 = pBspRenderer->pFaceIDs[2 * i]; | |
1609 if ( v1 >= 0 ) | |
1610 { | |
1611 if ( v1 < (signed int)pIndoor->uNumFaces ) | |
1612 { | |
1613 v2 = pBspRenderer->pFaceIDs[2 * i]; | |
1614 pBLVRenderParams->field_7C = &pBspRenderer->field_FA8[pBspRenderer->pFaceIDs[2 * i + 1]].field_C; | |
1615 v3 = sub_423B5D(v2); | |
1616 if ( v3 ) | |
1617 { | |
1618 if ( sub_424829(v3, &stru_F8A590, pBLVRenderParams->field_7C, v1) ) | |
1619 { | |
1620 v4 = stru_F8A590._viewport_space_y; | |
1621 v5 = pBLVRenderParams->pRenderTarget; | |
1622 if ( stru_F8A590._viewport_space_y <= stru_F8A590._viewport_space_w ) | |
1623 { | |
1624 v6 = 640 * stru_F8A590._viewport_space_y; | |
1625 do | |
1626 { | |
1627 v5[v6 + stru_F8A590.array_18[v4]] = -1; | |
1628 v7 = v6 + stru_F8A590.array_3D8[v4]; | |
1629 v6 += 640; | |
1630 v5[v7] = -1; | |
1631 ++v4; | |
1632 } | |
1633 while ( v4 <= stru_F8A590._viewport_space_w ); | |
1634 } | |
1635 } | |
1636 } | |
1637 } | |
1638 } | |
1639 } | |
1640 } | |
1641 | |
1642 | |
1643 //----- (004AE5BA) -------------------------------------------------------- | |
1644 Texture *BLVFace::GetTexture() | |
1645 { | |
1646 unsigned int v1; // ecx@2 | |
1647 | |
1648 if ( uAttributes & 0x4000 ) | |
1649 v1 = pTextureFrameTable->GetFrameTexture(this->uBitmapID, pBLVRenderParams->field_0_timer_); | |
1650 else | |
1651 v1 = uBitmapID; | |
1652 return (Texture *)(v1 != -1 ? (int)&pBitmaps_LOD->pTextures[v1] : 0); | |
1653 } | |
1654 | |
1655 | |
1656 //----- (00498B15) -------------------------------------------------------- | |
1657 void IndoorLocation::Release() | |
1658 { | |
1659 IndoorLocation *v1; // esi@1 | |
1660 char *v2; // ebp@1 | |
1661 void *v3; // ST00_4@1 | |
1662 | |
1663 v1 = this; | |
1664 v2 = (char *)&this->ptr_0002B4_doors_ddata; | |
1665 pAllocator->FreeChunk(this->ptr_0002B4_doors_ddata); | |
1666 *(int *)v2 = 0; | |
1667 pAllocator->FreeChunk(v1->ptr_0002B0_sector_rdata); | |
1668 v1->ptr_0002B0_sector_rdata = 0; | |
1669 pAllocator->FreeChunk(v1->ptr_0002B8_sector_lrdata); | |
1670 v1->ptr_0002B8_sector_lrdata = 0; | |
1671 pAllocator->FreeChunk(v1->ptr_2AC); | |
1672 v1->ptr_2AC = 0; | |
1673 pAllocator->FreeChunk(v1->pSpawnPoints); | |
1674 v3 = v1->pVertices; | |
1675 v1->pSpawnPoints = 0; | |
1676 v1->uNumSectors = 0; | |
1677 v1->uNumFaces = 0; | |
1678 v1->uNumVertices = 0; | |
1679 v1->uNumNodes = 0; | |
1680 v1->uNumDoors = 0; | |
1681 v1->uNumLights = 0; | |
1682 pAllocator->FreeChunk(v3); | |
1683 pAllocator->FreeChunk(v1->pFaces); | |
1684 pAllocator->FreeChunk(v1->pFaceExtras); | |
1685 pAllocator->FreeChunk(v1->pSectors); | |
1686 pAllocator->FreeChunk(v1->pLights); | |
1687 pAllocator->FreeChunk(v1->pDoors); | |
1688 pAllocator->FreeChunk(v1->pNodes); | |
1689 pAllocator->FreeChunk(v1->pMapOutlines); | |
1690 v1->pVertices = 0; | |
1691 v1->pFaces = 0; | |
1692 v1->pFaceExtras = 0; | |
1693 v1->pSectors = 0; | |
1694 v1->pLights = 0; | |
1695 v1->pDoors = 0; | |
1696 v1->pNodes = 0; | |
1697 v1->pMapOutlines = 0; | |
1698 v1->bLoaded = 0; | |
1699 } | |
1700 | |
1701 //----- (00498C45) -------------------------------------------------------- | |
1702 int IndoorLocation::Alloc() | |
1703 { | |
1704 IndoorLocation *v1; // esi@1 | |
1705 void *v2; // eax@1 | |
1706 const void *v3; // ST3C_4@1 | |
1707 void *v4; // eax@1 | |
1708 const void *v5; // ST3C_4@1 | |
1709 void *v6; // eax@1 | |
1710 const void *v7; // ST3C_4@1 | |
1711 void *v8; // eax@1 | |
1712 const void *v9; // ST3C_4@1 | |
1713 void *v10; // eax@1 | |
1714 const void *v11; // ST3C_4@1 | |
1715 void *v12; // eax@1 | |
1716 const void *v13; // ST3C_4@1 | |
1717 void *v14; // eax@1 | |
1718 const void *v15; // ST3C_4@1 | |
1719 void *v16; // eax@1 | |
1720 void *v17; // ecx@1 | |
1721 signed int result; // eax@9 | |
1722 | |
1723 v1 = this; | |
1724 v2 = pAllocator->AllocNamedChunk(this->pVertices, 0x15F90u, "L.V"); | |
1725 v3 = v1->pFaces; | |
1726 v1->pVertices = (Vec3_short_ *)v2; | |
1727 v4 = pAllocator->AllocNamedChunk(v3, 0xEA600u, "L.F"); | |
1728 v5 = v1->pFaceExtras; | |
1729 v1->pFaces = (BLVFace *)v4; | |
1730 v6 = pAllocator->AllocNamedChunk(v5, 0x2BF20u, "L.FX"); | |
1731 v7 = v1->pSectors; | |
1732 v1->pFaceExtras = (BLVFaceExtra *)v6; | |
1733 v8 = pAllocator->AllocNamedChunk(v7, 0xE800u, "L.R"); | |
1734 v9 = v1->pLights; | |
1735 v1->pSectors = (BLVSector *)v8; | |
1736 v10 = pAllocator->AllocNamedChunk(v9, 0x1900u, "L.L"); | |
1737 v11 = v1->pDoors; | |
1738 v1->pLights = (BLVLightMM7 *)v10; | |
1739 v12 = pAllocator->AllocNamedChunk(v11, 0x3E80u, "L.D"); | |
1740 v13 = v1->pNodes; | |
1741 v1->pDoors = (BLVDoor *)v12; | |
1742 v14 = pAllocator->AllocNamedChunk(v13, 0x9C40u, "L.BSP"); | |
1743 v15 = v1->pMapOutlines; | |
1744 v1->pNodes = (BSPNode *)v14; | |
1745 v16 = pAllocator->AllocNamedChunk(v15, 0x14824u, "L.Map"); | |
1746 v17 = v1->pVertices; | |
1747 v1->pMapOutlines = (BLVMapOutlines *)v16; | |
1748 if ( v17 && v1->pFaces && v1->pFaceExtras && v1->pSectors && v1->pLights && v1->pDoors && v1->pNodes && v16 ) | |
1749 { | |
1750 memset(v17, 90000, 0); | |
1751 memset(v1->pFaces, 960000, 0); | |
1752 memset(v1->pFaceExtras, 180000, 0); | |
1753 memset(v1->pSectors, 59392, 0); | |
1754 memset(v1->pLights, 6400, 0); | |
1755 memset(v1->pDoors, 16000, 0); | |
1756 memset(v1->pNodes, 40000, 0); | |
1757 memset(v1->pMapOutlines, 84004, 0); | |
1758 result = 1; | |
1759 } | |
1760 else | |
1761 { | |
1762 result = 0; | |
1763 } | |
1764 return result; | |
1765 } | |
1766 | |
1767 | |
1768 | |
1769 //----- (00444810) -------------------------------------------------------- | |
1770 unsigned int IndoorLocation::GetLocationIndex(const char *Str1) | |
1771 { | |
1772 const char *v1; // edi@1 | |
1773 signed int v2; // esi@1 | |
1774 | |
434 | 1775 for (uint i = 0; i < 11; ++i) |
1776 if (!strcmpi(Str1, _4E6BDC_loc_names[i])) | |
1777 return i + 1; | |
1778 return 0; | |
0 | 1779 } |
1780 | |
1781 | |
1782 | |
1783 //----- (004488F7) -------------------------------------------------------- | |
1784 void IndoorLocation::ToggleLight(unsigned int uLightID, unsigned int bToggle) | |
1785 { | |
1786 char *v2; // eax@4 | |
1787 | |
1788 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor && (signed int)uLightID <= pIndoor->uNumLights - 1 && (uLightID & 0x80000000u) == 0 ) | |
1789 { | |
1790 v2 = (char *)&pIndoor->pLights[uLightID].uAtributes; | |
1791 if ( bToggle ) | |
1792 *v2 &= 0xF7u; | |
1793 else | |
1794 *v2 |= 8u; | |
1795 pParty->uFlags |= 2u; | |
1796 } | |
1797 } | |
1798 | |
1799 | |
1800 //----- (00498E0A) -------------------------------------------------------- | |
1801 bool IndoorLocation::Load(char *pFilename, int a3, size_t _i, char *pDest) | |
1802 { | |
1803 /*unsigned int v5; // ebx@1 | |
1804 //IndoorLocation *v6; // esi@1 | |
1805 FILE *v7; // edi@3 | |
1806 bool result; // eax@3 | |
1807 char *v9; // ecx@4 | |
1808 void *v10; // eax@4 | |
1809 //unsigned __int8 v11; // zf@4 | |
1810 //unsigned __int8 v12; // sf@4 | |
1811 int v13; // eax@5 | |
1812 size_t v14; // ecx@6 | |
1813 char *v15; // ecx@6 | |
1814 int v16; // edx@6 | |
1815 size_t v17; // ecx@6 | |
1816 char *v18; // ecx@6 | |
1817 int v19; // edx@6 | |
1818 unsigned __int16 *v20; // edx@6 | |
1819 unsigned __int16 *v21; // edx@6 | |
1820 unsigned __int16 *v22; // edx@6 | |
1821 __int16 v23; // ax@10 | |
1822 char *v24; // ecx@10 | |
1823 __int16 v25; // cx@10 | |
1824 __int16 v26; // ax@11 | |
1825 char *v27; // ecx@11 | |
1826 unsigned __int16 v28; // ax@17 | |
1827 BLVFaceExtra *v29; // ecx@17 | |
1828 char *v30; // edx@17 | |
1829 int v31; // ecx@20 | |
1830 void *v32; // eax@25 | |
1831 int v33; // eax@26 | |
1832 unsigned __int16 *v34; // edx@27 | |
1833 size_t v35; // ecx@27 | |
1834 char *v36; // ecx@27 | |
1835 int v37; // edx@27 | |
1836 size_t v38; // ecx@27 | |
1837 char *v39; // ecx@27 | |
1838 int v40; // edx@27 | |
1839 unsigned __int16 *v41; // edx@27 | |
1840 unsigned __int16 *v42; // edx@27 | |
1841 unsigned __int16 *v43; // edx@27 | |
1842 unsigned __int16 *v44; // edx@27 | |
1843 size_t v45; // ecx@27 | |
1844 unsigned __int16 *v46; // edx@27 | |
1845 void *v47; // eax@28 | |
1846 BLVSector *v48; // eax@29 | |
1847 size_t v49; // ecx@29 | |
1848 unsigned __int16 *v50; // edx@31 | |
1849 void *v51; // eax@32 | |
1850 int v52; // eax@33 | |
1851 unsigned __int16 *v53; // edx@34 | |
1852 size_t v54; // ecx@34 | |
1853 char *v55; // ecx@34 | |
1854 int v56; // edx@34 | |
1855 size_t v57; // ecx@34 | |
1856 char *v58; // ecx@34 | |
1857 int v59; // edx@34 | |
1858 unsigned __int16 *v60; // edx@34 | |
1859 unsigned __int16 *v61; // edx@34 | |
1860 unsigned __int16 *v62; // edx@34 | |
1861 unsigned __int16 *v63; // edx@34 | |
1862 int v64; // ecx@34 | |
1863 BLVDoor *v65; // ecx@36 | |
1864 char *v66; // eax@37 | |
1865 int v67; // edx@38 | |
1866 int v68; // ecx@38 | |
1867 BLVFace *v69; // edx@38 | |
1868 int v70; // ecx@38 | |
1869 int v71; // edx@38 | |
1870 int v72; // eax@38 | |
1871 unsigned __int16 v73; // ax@42 | |
1872 char *v74; // ecx@42 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
1873 SpriteObject *v75; // ecx@44 |
0 | 1874 size_t v76; // eax@45 |
1875 int j; // edx@46 | |
1876 unsigned __int16 v78; // ax@50 | |
1877 void *v79; // eax@52 | |
1878 void **v80; // esi@52 | |
1879 unsigned int v145; // eax@103 | |
1880 void *v146; // eax@103 | |
1881 unsigned int v147; // ecx@103 | |
1882 int v148; // ebx@103 | |
1883 unsigned int *v149; // ecx@103*/ | |
1884 //size_t v150; // eax@103 | |
1885 //unsigned int v151; // ebx@109 | |
1886 //unsigned int v152; // ecx@116 | |
1887 //unsigned int v153; // eax@117 | |
1888 //size_t v154; // ebx@126 | |
1889 //unsigned int v155; // ebx@134 | |
1890 //size_t v156; // eax@140 | |
1891 //signed int v157; // ebx@142 | |
1892 //int v158; // ebx@148 | |
1893 //BLVFace *v159; // eax@149 | |
1894 // BLVFaceExtra *v160; // ecx@149 | |
1895 //BLVFaceExtra *v161; // ecx@149 | |
1896 //signed int v162; // ebx@154 | |
1897 //unsigned int v163; // ebx@157 | |
1898 //unsigned int v164; // ebx@157 | |
1899 //unsigned int v165; // edx@158 | |
1900 //char *v166; // ecx@158 | |
1901 //unsigned __int16 v167; // ax@161 | |
1902 //__int16 v168; // ax@165 | |
1903 //unsigned int v169; // ebx@168 | |
1904 //void *v170; // eax@168 | |
1905 //size_t v171; // ebx@168 | |
1906 //int v172; // edx@168 | |
1907 //BLVDoor *v173; // ecx@169 | |
1908 //int k; // eax@169 | |
1909 //BLVDoor *v175; // ecx@172 | |
1910 //int v176; // edx@172 | |
1911 //BLVDoor *v177; // ecx@172 | |
1912 //int v178; // edx@172 | |
1913 //BLVDoor *v179; // ecx@172 | |
1914 //int v180; // edx@172 | |
1915 //BLVDoor *v181; // ecx@172 | |
1916 //int v182; // edx@172 | |
1917 //BLVDoor *v183; // ecx@172 | |
1918 //int v184; // edx@172 | |
1919 //BLVDoor *v185; // ecx@172 | |
1920 //int v186; // edx@172 | |
1921 //BLVDoor *v187; // ecx@172 | |
1922 //int v188; // edx@172 | |
1923 //unsigned __int16 *v189; // ebx@172 | |
1924 //char *v190; // edx@173 | |
1925 //BLVDoor *v191; // ecx@174 | |
1926 //BLVDoor *l; // eax@175 | |
1927 //signed int v193; // ebx@176 | |
1928 //int v194; // ecx@176 | |
1929 //BLVFaceExtra *v195; // ecx@176 | |
1930 //BLVFace *v196; // ebx@178 | |
1931 //std::string v197; // [sp-18h] [bp-680h]@66 | |
1932 //void *v198; // [sp-14h] [bp-67Ch]@72 | |
1933 //size_t v199; // [sp-10h] [bp-678h]@72 | |
1934 //size_t v200; // [sp-Ch] [bp-674h]@72 | |
1935 //const char *v201; // [sp-8h] [bp-670h]@4 | |
1936 //int v202; // [sp-4h] [bp-66Ch]@4 | |
1937 char v203[875]; // [sp+Ch] [bp-65Ch]@130 | |
1938 char FileName[260]; // [sp+378h] [bp-2F0h]@1 | |
1939 //char DstBuf; // [sp+47Ch] [bp-1ECh]@4 | |
1940 __int32 Offset; // [sp+480h] [bp-1E8h]@4 | |
1941 __int32 v207; // [sp+48Ch] [bp-1DCh]@4 | |
1942 __int32 v208; // [sp+498h] [bp-1D0h]@4 | |
1943 __int32 v209; // [sp+4A4h] [bp-1C4h]@4 | |
1944 __int32 v210; // [sp+4B0h] [bp-1B8h]@4 | |
1945 __int32 v211; // [sp+4BCh] [bp-1ACh]@15 | |
1946 __int32 v212; // [sp+4C8h] [bp-1A0h]@15 | |
1947 __int32 v213; // [sp+4D4h] [bp-194h]@25 | |
1948 __int32 v214; // [sp+4E0h] [bp-188h]@25 | |
1949 __int32 v215; // [sp+4ECh] [bp-17Ch]@32 | |
1950 __int32 v216; // [sp+4F8h] [bp-170h]@32 | |
1951 __int32 v217; // [sp+504h] [bp-164h]@40 | |
1952 __int32 v218; // [sp+510h] [bp-158h]@40 | |
1953 __int32 v219; // [sp+51Ch] [bp-14Ch]@43 | |
1954 __int32 v220; // [sp+528h] [bp-140h]@43 | |
1955 __int32 v221; // [sp+534h] [bp-134h]@52 | |
1956 __int32 v222; // [sp+540h] [bp-128h]@52 | |
1957 __int32 v223; // [sp+54Ch] [bp-11Ch]@52 | |
1958 __int32 v224; // [sp+558h] [bp-110h]@52 | |
1959 __int32 v225; // [sp+564h] [bp-104h]@52 | |
1960 __int32 v226; // [sp+570h] [bp-F8h]@52 | |
1961 __int32 v227; // [sp+57Ch] [bp-ECh]@52 | |
1962 __int32 v228; // [sp+588h] [bp-E0h]@52 | |
1963 __int32 v229; // [sp+594h] [bp-D4h]@52 | |
1964 __int32 v230; // [sp+5A0h] [bp-C8h]@52 | |
1965 __int32 v231; // [sp+5ACh] [bp-BCh]@52 | |
1966 __int32 v232; // [sp+5B8h] [bp-B0h]@52 | |
1967 __int32 v233; // [sp+5C4h] [bp-A4h]@52 | |
1968 __int32 v234; // [sp+5D0h] [bp-98h]@52 | |
1969 //char pName[40]; // [sp+5FCh] [bp-6Ch]@42 | |
1970 //size_t pSource; // [sp+624h] [bp-44h]@67 | |
1971 //char Dst[12]; // [sp+628h] [bp-40h]@9 | |
1972 //char *v238; // [sp+634h] [bp-34h]@38 | |
1973 ODMHeader header; // [sp+638h] [bp-30h]@61 | |
1974 //void *ptr; // [sp+648h] [bp-20h]@66 | |
1975 //size_t Count; // [sp+64Ch] [bp-1Ch]@109 | |
1976 //int uSourceLen; // [sp+653h] [bp-15h]@66 | |
1977 FILE *File; // [sp+658h] [bp-10h]@56 | |
1978 //BLVSector *v244; // [sp+65Ch] [bp-Ch]@72 | |
1979 //int v245; // [sp+660h] [bp-8h]@72 | |
1980 //BLVFace *Src; // [sp+664h] [bp-4h]@73 | |
1981 signed int Argsa; // [sp+670h] [bp+8h]@4 | |
1982 signed int Argsb; // [sp+670h] [bp+8h]@7 | |
1983 signed int Argsc; // [sp+670h] [bp+8h]@15 | |
1984 signed int Argsd; // [sp+670h] [bp+8h]@18 | |
1985 int Argse; // [sp+670h] [bp+8h]@25 | |
1986 int Argsf; // [sp+670h] [bp+8h]@28 | |
1987 int Argsg; // [sp+670h] [bp+8h]@32 | |
1988 int Argsh; // [sp+670h] [bp+8h]@35 | |
1989 signed int Argsi; // [sp+670h] [bp+8h]@40 | |
1990 signed int Argsj; // [sp+670h] [bp+8h]@45 | |
1991 //int Argsk; // [sp+670h] [bp+8h]@143 | |
1992 //void *Argsl; // [sp+670h] [bp+8h]@155 | |
1993 //signed int Argsm; // [sp+670h] [bp+8h]@161 | |
1994 //signed int Argsn; // [sp+670h] [bp+8h]@175 | |
1995 | |
1996 //v5 = 0; | |
1997 //v6 = this; | |
1998 _6807E0_num_decorations_with_sounds_6807B8 = 0; | |
1999 | |
2000 #pragma region "loading from txt" | |
2001 /*sprintf(FileName, "levels\\%s", pFilename); | |
2002 if ( GetFileAttributesA(FileName) != -1 ) | |
2003 { | |
2004 Release(); | |
2005 if ( Alloc() ) | |
2006 { | |
2007 v7 = fopen(FileName, "rb"); | |
2008 result = 1; | |
2009 if ( !v7 ) | |
2010 return result; | |
2011 v9 = pDest; | |
2012 bLoaded = 1; | |
2013 v202 = (int)v7; | |
2014 v201 = (const char *)1; | |
2015 *(int *)v9 = 1; | |
2016 fread(&DstBuf, 0x180u, (size_t)v201, (FILE *)v202); | |
2017 fseek(v7, Offset, 0); | |
2018 fread(&blv, 0x88u, 1u, v7); | |
2019 fseek(v7, v207, 0); | |
2020 fread(&uNumVertices, 1u, 4u, v7); | |
2021 fseek(v7, v208, 0); | |
2022 fread(pVertices, 6u, uNumVertices, v7); | |
2023 fseek(v7, v209, 0); | |
2024 fread(&uNumFaces, 4u, 1u, v7); | |
2025 fseek(v7, v210, 0); | |
2026 fread(pFaces, 0x60u, uNumFaces, v7); | |
2027 v10 = pAllocator->AllocNamedChunk(ptr_2AC, blv.uFaces_fdata_Size, "L.FData"); | |
2028 v202 = (int)v7; | |
2029 ptr_2AC = (unsigned __int16 *)v10; | |
2030 fread(v10, 1u, blv.uFaces_fdata_Size, (FILE *)v202); | |
2031 v11 = uNumFaces == 0; | |
2032 v12 = (uNumFaces & 0x80000000u) != 0; | |
2033 pDest = 0; | |
2034 Argsa = 0; | |
2035 if ( !(v12 | v11) ) | |
2036 { | |
2037 v13 = 0; | |
2038 do | |
2039 { | |
2040 pFaces[v13].pVertexIDs = (unsigned __int16 *)&pDest[(unsigned int)ptr_2AC]; | |
2041 v14 = (size_t)&pFaces[v13]; | |
2042 i = v14; | |
2043 v15 = &pDest[2 * *(char *)(v14 + 93) + 2]; | |
2044 v16 = (int)&v15[(unsigned int)ptr_2AC]; | |
2045 pDest = v15; | |
2046 *(int *)(i + 52) = v16; | |
2047 v17 = (size_t)&pFaces[v13]; | |
2048 i = v17; | |
2049 v18 = &pDest[2 * *(char *)(v17 + 93) + 2]; | |
2050 v19 = (int)&v18[(unsigned int)ptr_2AC]; | |
2051 pDest = v18; | |
2052 *(int *)(i + 56) = v19; | |
2053 i = (size_t)&pFaces[v13]; | |
2054 v20 = ptr_2AC; | |
2055 pDest += 2 * *(char *)(i + 93) + 2; | |
2056 *(int *)(i + 60) = (int)(char *)v20 + (int)pDest; | |
2057 i = (size_t)&pFaces[v13]; | |
2058 v21 = ptr_2AC; | |
2059 pDest += 2 * *(char *)(i + 93) + 2; | |
2060 *(int *)(i + 64) = (int)(char *)v21 + (int)pDest; | |
2061 i = (size_t)&pFaces[v13]; | |
2062 ++v13; | |
2063 v22 = ptr_2AC; | |
2064 pDest += 2 * *(char *)(i + 93) + 2; | |
2065 ++Argsa; | |
2066 *(int *)(i + 68) = (int)(char *)v22 + (int)pDest; | |
2067 pDest += 2 * *((char *)&pFaces[v13] - 3) + 2; | |
2068 } | |
2069 while ( Argsa < (signed int)uNumFaces ); | |
2070 } | |
2071 Argsb = 0; | |
2072 if ( (signed int)uNumFaces > 0 ) | |
2073 { | |
2074 pDest = 0; | |
2075 do | |
2076 { | |
2077 fread(Dst, 1u, 0xAu, v7); | |
2078 if ( pDest[(unsigned int)pFaces + 45] & 0x40 ) | |
2079 { | |
2080 v23 = pTextureFrameTable->FindTextureByName(Dst); | |
2081 v24 = pDest; | |
2082 *(short *)&pDest[(unsigned int)pFaces + 74] = v23; | |
2083 v25 = *(short *)&v24[(unsigned int)pFaces + 74]; | |
2084 if ( v25 ) | |
2085 { | |
2086 pTextureFrameTable->LoadAnimationSequenceAndPalettes(v25); | |
2087 } | |
2088 else | |
2089 { | |
2090 v26 = pBitmaps_LOD->LoadTexture(Dst); | |
2091 v27 = pDest; | |
2092 *(short *)&pDest[(unsigned int)pFaces + 74] = v26; | |
2093 v27[(unsigned int)pFaces + 45] &= 0xBFu; | |
2094 } | |
2095 } | |
2096 else | |
2097 { | |
2098 *(short *)&pDest[(unsigned int)pFaces + 74] = pBitmaps_LOD->LoadTexture(Dst); | |
2099 } | |
2100 ++Argsb; | |
2101 pDest += 96; | |
2102 } | |
2103 while ( Argsb < (signed int)uNumFaces ); | |
2104 } | |
2105 fseek(v7, v211, 0); | |
2106 fread(&uNumFaceExtras, 4u, 1u, v7); | |
2107 fseek(v7, v212, 0); | |
2108 fread(pFaceExtras, 0x24u, uNumFaceExtras, v7); | |
2109 Argsc = 0; | |
2110 if ( (signed int)uNumFaceExtras > 0 ) | |
2111 { | |
2112 pDest = 0; | |
2113 do | |
2114 { | |
2115 fread(Dst, 1u, 0xAu, v7); | |
2116 v28 = pBitmaps_LOD->LoadTexture(Dst); | |
2117 v29 = pFaceExtras; | |
2118 v30 = pDest; | |
2119 ++Argsc; | |
2120 pDest += 36; | |
2121 *(unsigned __int16 *)((char *)&v29->uAdditionalBitmapID + (int)v30) = v28; | |
2122 } | |
2123 while ( Argsc < (signed int)uNumFaceExtras ); | |
2124 } | |
2125 Argsd = 0; | |
2126 if ( (signed int)uNumFaces > 0 ) | |
2127 { | |
2128 pDest = 0; | |
2129 do | |
2130 { | |
2131 v31 = (int)&pFaceExtras[*(short *)&pDest[(unsigned int)pFaces + 72]]; | |
2132 if ( *(short *)(v31 + 26) ) | |
2133 { | |
2134 if ( ((BLVFaceExtra *)v31)->HasEventint() ) | |
2135 pDest[(unsigned int)pFaces + 46] |= 0x10u; | |
2136 else | |
2137 pDest[(unsigned int)pFaces + 46] &= 0xEFu; | |
2138 } | |
2139 ++Argsd; | |
2140 pDest += 96; | |
2141 } | |
2142 while ( Argsd < (signed int)uNumFaces ); | |
2143 } | |
2144 fseek(v7, v213, 0); | |
2145 fread(&uNumSectors, 4u, 1u, v7); | |
2146 fseek(v7, v214, 0); | |
2147 fread(pSectors, 0x74u, uNumSectors, v7); | |
2148 v32 = pAllocator->AllocNamedChunk(ptr_0002B0_sector_rdata, blv.uSector_rdata_Size, "L.RData"); | |
2149 v202 = (int)v7; | |
2150 ptr_0002B0_sector_rdata = (unsigned __int16 *)v32; | |
2151 fread(v32, 1u, blv.uSector_rdata_Size, (FILE *)v202); | |
2152 v11 = uNumSectors == 0; | |
2153 v12 = uNumSectors < 0; | |
2154 pDest = 0; | |
2155 Argse = 0; | |
2156 if ( !(v12 | v11) ) | |
2157 { | |
2158 v33 = 0; | |
2159 do | |
2160 { | |
2161 pSectors[v33].pFloors = (unsigned __int16 *)&pDest[(unsigned int)ptr_0002B0_sector_rdata]; | |
2162 i = (size_t)&pSectors[v33]; | |
2163 v34 = ptr_0002B0_sector_rdata; | |
2164 pDest += 2 * *(short *)(i + 4); | |
2165 *(int *)(i + 16) = (int)(char *)v34 + (int)pDest; | |
2166 v35 = (size_t)&pSectors[v33]; | |
2167 i = v35; | |
2168 v36 = &pDest[2 * *(short *)(v35 + 12)]; | |
2169 v37 = (int)&v36[(unsigned int)ptr_0002B0_sector_rdata]; | |
2170 pDest = v36; | |
2171 *(int *)(i + 24) = v37; | |
2172 v38 = (size_t)&pSectors[v33]; | |
2173 i = v38; | |
2174 v39 = &pDest[2 * *(short *)(v38 + 20)]; | |
2175 v40 = (int)&v39[(unsigned int)ptr_0002B0_sector_rdata]; | |
2176 pDest = v39; | |
2177 *(int *)(i + 32) = v40; | |
2178 i = (size_t)&pSectors[v33]; | |
2179 v41 = ptr_0002B0_sector_rdata; | |
2180 pDest += 2 * *(short *)(i + 28); | |
2181 *(int *)(i + 40) = (int)(char *)v41 + (int)pDest; | |
2182 i = (size_t)&pSectors[v33]; | |
2183 v42 = ptr_0002B0_sector_rdata; | |
2184 pDest += 2 * *(short *)(i + 36); | |
2185 *(int *)(i + 48) = (int)(char *)v42 + (int)pDest; | |
2186 i = (size_t)&pSectors[v33]; | |
2187 v43 = ptr_0002B0_sector_rdata; | |
2188 pDest += 2 * *(short *)(i + 44); | |
2189 *(int *)(i + 64) = (int)(char *)v43 + (int)pDest; | |
2190 i = (size_t)&pSectors[v33]; | |
2191 v44 = ptr_0002B0_sector_rdata; | |
2192 pDest += 2 * *(short *)(i + 60); | |
2193 *(int *)(i + 72) = (int)(char *)v44 + (int)pDest; | |
2194 v45 = (size_t)&pSectors[v33]; | |
2195 ++v33; | |
2196 i = v45; | |
2197 v46 = ptr_0002B0_sector_rdata; | |
2198 pDest += 2 * *(short *)(v45 + 68); | |
2199 ++Argse; | |
2200 *(int *)(v45 + 80) = (int)(char *)v46 + (int)pDest; | |
2201 pDest += 2 * *((short *)&pSectors[v33] - 20); | |
2202 } | |
2203 while ( Argse < uNumSectors ); | |
2204 } | |
2205 v47 = pAllocator->AllocNamedChunk( | |
2206 ptr_0002B8_sector_lrdata, | |
2207 blv.uSector_lrdata_Size, | |
2208 "L.RLData"); | |
2209 v202 = (int)v7; | |
2210 ptr_0002B8_sector_lrdata = (unsigned __int16 *)v47; | |
2211 fread(v47, 1u, blv.uSector_lrdata_Size, (FILE *)v202); | |
2212 v11 = uNumSectors == 0; | |
2213 v12 = uNumSectors < 0; | |
2214 pDest = 0; | |
2215 Argsf = 0; | |
2216 if ( !(v12 | v11) ) | |
2217 { | |
2218 v48 = pSectors; | |
2219 v49 = 0; | |
2220 for ( i = 0; ; v49 = i ) | |
2221 { | |
2222 v50 = ptr_0002B8_sector_lrdata; | |
2223 i += 116; | |
2224 ++Argsf; | |
2225 *(BLVLightMM7 **)((char *)&v48->pLights + v49) = (BLVLightMM7 *)((char *)v50 + (int)pDest); | |
2226 v48 = pSectors; | |
2227 pDest += 2 * *(__int16 *)((char *)&v48->uNumLights + v49); | |
2228 if ( Argsf >= uNumSectors ) | |
2229 break; | |
2230 } | |
2231 } | |
2232 fseek(v7, v215, 0); | |
2233 fread(&uNumDoors, 4u, 1u, v7); | |
2234 fseek(v7, v216, 0); | |
2235 fread(pDoors, 0x50u, 0xC8u, v7); | |
2236 v51 = pAllocator->AllocNamedChunk(ptr_0002B4_doors_ddata, blv.uDoors_ddata_Size, "L.DData"); | |
2237 v202 = (int)v7; | |
2238 ptr_0002B4_doors_ddata = (unsigned __int16 *)v51; | |
2239 fread(v51, 1u, blv.uDoors_ddata_Size, (FILE *)v202); | |
2240 v11 = uNumDoors == 0; | |
2241 v12 = uNumDoors < 0; | |
2242 pDest = 0; | |
2243 Argsg = 0; | |
2244 if ( !(v12 | v11) ) | |
2245 { | |
2246 v52 = 0; | |
2247 do | |
2248 { | |
2249 pDoors[v52].pVertexIDs = (unsigned __int16 *)&pDest[(unsigned int)ptr_0002B4_doors_ddata]; | |
2250 i = (size_t)&pDoors[v52]; | |
2251 v53 = ptr_0002B4_doors_ddata; | |
2252 pDest += 2 * *(short *)(i + 68); | |
2253 *(int *)(i + 40) = (int)(char *)v53 + (int)pDest; | |
2254 v54 = (size_t)&pDoors[v52]; | |
2255 i = v54; | |
2256 v55 = &pDest[2 * *(short *)(v54 + 70)]; | |
2257 v56 = (int)&v55[(unsigned int)ptr_0002B4_doors_ddata]; | |
2258 pDest = v55; | |
2259 *(int *)(i + 44) = v56; | |
2260 v57 = (size_t)&pDoors[v52]; | |
2261 i = v57; | |
2262 v58 = &pDest[2 * *(short *)(v57 + 72)]; | |
2263 v59 = (int)&v58[(unsigned int)ptr_0002B4_doors_ddata]; | |
2264 pDest = v58; | |
2265 *(int *)(i + 48) = v59; | |
2266 i = (size_t)&pDoors[v52]; | |
2267 v60 = ptr_0002B4_doors_ddata; | |
2268 pDest += 2 * *(short *)(i + 70); | |
2269 *(int *)(i + 52) = (int)(char *)v60 + (int)pDest; | |
2270 i = (size_t)&pDoors[v52]; | |
2271 v61 = ptr_0002B4_doors_ddata; | |
2272 pDest += 2 * *(short *)(i + 70); | |
2273 *(int *)(i + 56) = (int)(char *)v61 + (int)pDest; | |
2274 i = (size_t)&pDoors[v52]; | |
2275 v62 = ptr_0002B4_doors_ddata; | |
2276 pDest += 2 * *(short *)(i + 74); | |
2277 *(int *)(i + 60) = (int)(char *)v62 + (int)pDest; | |
2278 i = (size_t)&pDoors[v52]; | |
2279 v63 = ptr_0002B4_doors_ddata; | |
2280 pDest += 2 * *(short *)(i + 74); | |
2281 *(int *)(i + 64) = (int)(char *)v63 + (int)pDest; | |
2282 ++Argsg; | |
2283 v64 = pDoors[v52].uNumOffsets; | |
2284 ++v52; | |
2285 pDest += 2 * v64; | |
2286 } | |
2287 while ( Argsg < uNumDoors ); | |
2288 } | |
2289 Argsh = 0; | |
2290 if ( uNumDoors > 0 ) | |
2291 { | |
2292 v65 = pDoors; | |
2293 pDest = 0; | |
2294 do | |
2295 { | |
2296 i = 0; | |
2297 v66 = &pDest[(int)v65]; | |
2298 if ( *(short *)&pDest[(int)v65 + 70] > 0 ) | |
2299 { | |
2300 do | |
2301 { | |
2302 v67 = *((int *)v66 + 10); | |
2303 a3 = 2 * i; | |
2304 v68 = *(short *)(v67 + 2 * i); | |
2305 v69 = pFaces; | |
2306 ++i; | |
2307 v70 = (int)&pFaceExtras[v69[v68].uFaceExtraID]; | |
2308 v71 = *((int *)v66 + 12); | |
2309 v72 = a3; | |
2310 v238 = (char *)v70; | |
2311 *(short *)(a3 + v71) = *(short *)(v70 + 20); | |
2312 *(__int16 *)(*(char **)((char *)&pDoors->pDeltaVs + (unsigned int)pDest) + v72) = *((short *)v238 + 11); | |
2313 v65 = pDoors; | |
2314 v66 = &pDest[(int)v65]; | |
2315 } | |
2316 while ( (signed int)i < *(short *)&pDest[(int)v65 + 70] ); | |
2317 } | |
2318 ++Argsh; | |
2319 pDest += 80; | |
2320 } | |
2321 while ( Argsh < uNumDoors ); | |
2322 } | |
2323 fseek(v7, v217, 0); | |
2324 fread(&uNumLevelDecorations, 4u, 1u, v7); | |
2325 fseek(v7, v218, 0); | |
2326 fread(pLevelDecorations, 0x20u, uNumLevelDecorations, v7); | |
2327 Argsi = 0; | |
2328 if ( (signed int)uNumLevelDecorations > 0 ) | |
2329 { | |
2330 pDest = (char *)pLevelDecorations; | |
2331 do | |
2332 { | |
2333 fread(pName, 1u, 0x20u, v7); | |
2334 v73 = pDecorationList->GetDecorIdByName(pName); | |
2335 v74 = pDest; | |
2336 ++Argsi; | |
2337 pDest += 32; | |
2338 *(short *)v74 = v73; | |
2339 } | |
2340 while ( Argsi < (signed int)uNumLevelDecorations ); | |
2341 } | |
2342 fseek(v7, v219, 0); | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2343 fread(&uNumSpriteObjects, 4u, 1u, v7); |
0 | 2344 fseek(v7, v220, 0); |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2345 fread(pSpriteObjects, 0x70u, uNumSpriteObjects, v7); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2346 if ( (signed int)uNumSpriteObjects > 0 ) |
0 | 2347 { |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2348 v75 = pSpriteObjects; |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2349 pDest = (char *)uNumSpriteObjects; |
0 | 2350 do |
2351 { | |
2352 Argsj = 0; | |
2353 v76 = 48 * v75->stru_24.uItemID; | |
2354 v11 = pObjectList->uNumObjects == 0; | |
2355 v12 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
2356 LOWORD(v76) = *(unsigned __int16 *)((char *)&pItemsTable->pItems[0].uSpriteID + v76); | |
2357 i = v76; | |
2358 v75->uItemType = v76; | |
2359 if ( v12 | v11 ) | |
2360 { | |
2361 LABEL_50: | |
2362 v78 = 0; | |
2363 } | |
2364 else | |
2365 { | |
2366 for ( j = (int)&pObjectList->pObjects->uObjectID; (short)v76 != *(short *)j; j = a3 ) | |
2367 { | |
2368 ++Argsj; | |
2369 a3 = j + 56; | |
2370 if ( Argsj >= (signed int)pObjectList->uNumObjects ) | |
2371 goto LABEL_50; | |
2372 LOWORD(v76) = i; | |
2373 } | |
2374 v78 = Argsj; | |
2375 } | |
2376 v75->uObjectDescID = v78; | |
2377 ++v75; | |
2378 --pDest; | |
2379 } | |
2380 while ( pDest ); | |
2381 } | |
2382 fseek(v7, v221, 0); | |
2383 fread(&uNumActors, 4u, 1u, v7); | |
2384 fseek(v7, v222, 0); | |
2385 fread(pActors, 0x344u, uNumActors, v7); | |
2386 fseek(v7, v228, 0); | |
2387 fread(&uNumChests, 4u, 1u, v7); | |
2388 fseek(v7, v229, 0); | |
2389 fread(pChests, 0x14CCu, uNumChests, v7); | |
2390 fseek(v7, v224, 0); | |
2391 fread(&uNumLights, 4u, 1u, v7); | |
2392 fseek(v7, v225, 0); | |
2393 fread(pLights, 0x10u, uNumLights, v7); | |
2394 fseek(v7, v226, 0); | |
2395 fread(&uNumNodes, 4u, 1u, v7); | |
2396 fseek(v7, v227, 0); | |
2397 fread(pNodes, 8u, uNumNodes, v7); | |
2398 fseek(v7, v230, 0); | |
2399 fread(&uNumSpawnPoints, 4u, 1u, v7); | |
2400 v79 = pAllocator->AllocNamedChunk(pSpawnPoints, 24 * uNumSpawnPoints, "Spawn"); | |
2401 v202 = 0; | |
2402 pSpawnPoints = (SpawnPointMM7 *)v79; | |
2403 fseek(v7, v231, v202); | |
2404 fread(pSpawnPoints, 0x18u, uNumSpawnPoints, v7); | |
2405 fseek(v7, v232, 0); | |
2406 fread(&dlv, 0x28u, 1u, v7); | |
2407 fseek(v7, v233, 0); | |
2408 fread(&stru_5E4C90, 1u, 0xC8u, v7); | |
2409 fseek(v7, v234, 0); | |
2410 fread(&uLastVisitDay, 1u, 0x38u, v7); | |
2411 fseek(v7, v223, 0); | |
2412 v80 = (void **)&pMapOutlines; | |
2413 fread(*v80, 4u, 1u, v7); | |
2414 fread((char *)*v80 + 4, 0xCu, *(int *)*v80, v7); | |
2415 fclose(v7); | |
2416 goto LABEL_179; | |
2417 } | |
2418 return 4; | |
2419 }*/ | |
2420 #pragma endregion | |
2421 | |
2422 if (bLoaded) | |
2423 { | |
2424 Log::Warning(L"BLV is already loaded"); | |
2425 return 3; | |
2426 } | |
2427 | |
2428 if ( !pGames_LOD->DoesContainerExist(pFilename) ) | |
2429 Abortf("Unable to find %s in Games.LOD", pFilename); | |
2430 | |
2431 //v238 = pFilename - 4; | |
2432 //v81 = strlen(pFilename); | |
2433 strcpy(this->pFilename, pFilename); | |
2434 strcpy(&pFilename[strlen(pFilename) - 4], ".blv"); | |
2435 File = pGames_LOD->FindContainer(pFilename, 1); | |
2436 //File = v82; | |
2437 | |
2438 Release(); | |
2439 if ( !Alloc() ) | |
2440 return 4; | |
2441 | |
2442 header.uVersion = 91969; | |
2443 header.pMagic[0] = 'm'; | |
2444 header.pMagic[1] = 'v'; | |
2445 header.pMagic[2] = 'i'; | |
2446 header.pMagic[3] = 'i'; | |
2447 header.uCompressedSize = 0; | |
2448 header.uDecompressedSize = 0; | |
2449 fread(&header, sizeof(ODMHeader), 1u, File); | |
2450 if (header.uVersion != 91969 || | |
2451 header.pMagic[0] != 'm' || | |
2452 header.pMagic[1] != 'v' || | |
2453 header.pMagic[2] != 'i' || | |
2454 header.pMagic[3] != 'i' ) | |
2455 { | |
2456 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:792", 0); | |
2457 } | |
2458 //v83 = header.uCompressedSize; | |
2459 //pSource = header.uDecompressedSize; | |
2460 //v84 = malloc(header.uDecompressedSize); | |
2461 //v85 = v84; | |
2462 //ptr = v84; | |
2463 auto pRawBLV = malloc(header.uDecompressedSize); | |
2464 memset(pRawBLV, 0, header.uDecompressedSize); | |
2465 | |
2466 if (header.uCompressedSize == header.uDecompressedSize) | |
2467 fread(pRawBLV, header.uDecompressedSize, 1, File); | |
2468 else if (header.uCompressedSize < header.uDecompressedSize) | |
2469 { | |
2470 auto pTmpMem = malloc(header.uCompressedSize); | |
2471 { | |
2472 fread(pTmpMem, header.uCompressedSize, 1, File); | |
2473 | |
2474 uint uDecompressedSize = header.uDecompressedSize; | |
2475 zlib::MemUnzip(pRawBLV, &uDecompressedSize, pTmpMem, header.uCompressedSize); | |
2476 | |
2477 if (uDecompressedSize != header.uDecompressedSize) | |
2478 Log::Warning(L"uDecompressedSize != header.uDecompressedSize in BLV"); | |
2479 } | |
2480 free(pTmpMem); | |
2481 } | |
2482 else | |
2483 { | |
2484 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:803", 0); | |
2485 return 0; | |
2486 } | |
2487 | |
2488 assert(sizeof(Vec3_short_) == 6); | |
2489 assert(sizeof(BLVFace) == 96); | |
2490 assert(sizeof(BLVFaceExtra) == 36); | |
2491 assert(sizeof(BLVSector) == 116); | |
2492 assert(sizeof(LevelDecoration) == 32); | |
2493 assert(sizeof(BLVLightMM7) == 16); | |
2494 assert(sizeof(BSPNode) == 8); | |
2495 assert(sizeof(SpawnPointMM7) == 24); | |
2496 assert(sizeof(DDM_DLV_Header) == 40); | |
2497 assert(sizeof(Actor) == 836); | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2498 assert(sizeof(SpriteObject) == 112); |
0 | 2499 assert(sizeof(Chest) == 5324); |
2500 assert(sizeof(stru123) == 0xC8); | |
2501 assert(sizeof(BLVMapOutline) == 12); | |
2502 | |
2503 bLoaded = true; | |
2504 | |
2505 auto pData = (char *)pRawBLV; | |
2506 | |
2507 pGameLoadingUI_ProgressBar->Progress(); | |
2508 | |
2509 memcpy(&blv, pData, 136); | |
2510 memcpy(&uNumVertices, pData += 136, 4); | |
2511 memcpy(pVertices, pData += 4, uNumVertices * sizeof(Vec3_short_)); | |
2512 | |
2513 pGameLoadingUI_ProgressBar->Progress(); | |
2514 | |
2515 memcpy(&uNumFaces, pData += uNumVertices * sizeof(Vec3_short_), 4); | |
2516 | |
2517 pGameLoadingUI_ProgressBar->Progress(); | |
2518 | |
2519 memcpy(pFaces, pData += 4, uNumFaces * sizeof (BLVFace)); | |
2520 ptr_2AC = (unsigned __int16 *)pAllocator->AllocNamedChunk(ptr_2AC, blv.uFaces_fdata_Size, "L.FData"); | |
2521 | |
2522 memcpy(ptr_2AC, pData += uNumFaces * sizeof (BLVFace), blv.uFaces_fdata_Size); | |
2523 | |
2524 for (uint i = 0, j = 0; i < uNumFaces; ++i) | |
2525 { | |
2526 auto pFace = pFaces + i; | |
2527 | |
2528 pFace->pVertexIDs = ptr_2AC + j; | |
2529 | |
2530 j += pFace->uNumVertices + 1; | |
2531 pFace->pXInterceptDisplacements = ptr_2AC + j; | |
2532 | |
2533 j += pFace->uNumVertices + 1; | |
2534 pFace->pYInterceptDisplacements = ptr_2AC + j; | |
2535 | |
2536 j += pFace->uNumVertices + 1; | |
2537 pFace->pZInterceptDisplacements = ptr_2AC + j; | |
2538 | |
2539 j += pFace->uNumVertices + 1; | |
2540 pFace->pVertexUIDs = (__int16 *)(ptr_2AC + j); | |
2541 | |
2542 j += pFace->uNumVertices + 1; | |
2543 pFace->pVertexVIDs = (__int16 *)(ptr_2AC + j); | |
2544 | |
2545 j += pFace->uNumVertices + 1; | |
2546 /*v93 = &pFaces[v92]; | |
2547 Src = v93; | |
2548 v94 = (BLVSector *)((char *)v244 + 2 * v93->uNumVertices + 2); | |
2549 v95 = (unsigned __int16 *)((char *)v94 + (unsigned int)ptr_2AC); | |
2550 v244 = v94; | |
2551 Src->pXInterceptDisplacements = v95; | |
2552 v96 = (int)&pFaces[v92]; | |
2553 Src = (BLVFace *)v96; | |
2554 v97 = (BLVSector *)((char *)v244 + 2 * *(char *)(v96 + 93) + 2); | |
2555 v98 = (unsigned __int16 *)((char *)v97 + (unsigned int)ptr_2AC); | |
2556 v244 = v97; | |
2557 Src->pYInterceptDisplacements = v98; | |
2558 Src = &pFaces[v92]; | |
2559 v99 = ptr_2AC; | |
2560 v244 = (BLVSector *)((char *)v244 + 2 * Src->uNumVertices + 2); | |
2561 Src->pZInterceptDisplacements = (unsigned __int16 *)((char *)v99 + (int)v244); | |
2562 Src = &pFaces[v92]; | |
2563 v100 = ptr_2AC; | |
2564 v244 = (BLVSector *)((char *)v244 + 2 * Src->uNumVertices + 2); | |
2565 Src->pVertexUIDs = (unsigned __int16 *)((char *)v100 + (int)v244); | |
2566 Src = &pFaces[v92]; | |
2567 ++v92; | |
2568 v101 = ptr_2AC; | |
2569 v244 = (BLVSector *)((char *)v244 + 2 * Src->uNumVertices + 2); | |
2570 ++v245; | |
2571 Src->pVertexVIDs = (unsigned __int16 *)((char *)v101 + (int)v244); | |
2572 v244 = (BLVSector *)((char *)v244 + 2 * *((char *)&pFaces[v92] - 3) + 2);*/ | |
2573 } | |
2574 | |
2575 pGameLoadingUI_ProgressBar->Progress(); | |
2576 | |
2577 pData += blv.uFaces_fdata_Size; | |
2578 | |
2579 for (uint i = 0; i < uNumFaces; ++i) | |
2580 { | |
2581 auto pFace = pFaces + i; | |
2582 | |
2583 char pTexName[16]; | |
2584 strncpy(pTexName, pData, 10); | |
2585 pData += 10; | |
2586 | |
2587 if (pFace->uAttributes & 0x4000) | |
2588 { | |
2589 pFace->uBitmapID = pTextureFrameTable->FindTextureByName(pTexName); | |
2590 if (pFace->uBitmapID) | |
2591 pTextureFrameTable->LoadAnimationSequenceAndPalettes(pFace->uBitmapID); | |
2592 else | |
2593 { | |
2594 pFace->uBitmapID = pBitmaps_LOD->LoadTexture(pTexName); | |
2595 pFace->uAttributes &= ~0x4000; | |
2596 } | |
2597 } | |
2598 else | |
2599 pFace->uBitmapID = pBitmaps_LOD->LoadTexture(pTexName); | |
2600 } | |
2601 | |
2602 pGameLoadingUI_ProgressBar->Progress(); | |
2603 | |
2604 memcpy(&uNumFaceExtras, pData, 4u); | |
2605 memcpy(pFaceExtras, pData += 4, uNumFaceExtras * sizeof(BLVFaceExtra)); | |
2606 pData += uNumFaceExtras * sizeof(BLVFaceExtra); | |
2607 | |
2608 pGameLoadingUI_ProgressBar->Progress(); | |
2609 | |
2610 //v108 = (char *)v107 + 36 * uNumFaceExtras; | |
2611 //v245 = 0; | |
2612 //*(int *)((char *)&uSourceLen + 1) = 0; | |
2613 for (uint i = 0; i < uNumFaceExtras; ++i) | |
2614 { | |
2615 char pTexName[32]; | |
2616 strncpy(pTexName, pData, 10); | |
2617 pData += 10; | |
2618 | |
2619 if (!strcmp(pTexName, "")) | |
2620 pFaceExtras[i].uAdditionalBitmapID = -1; | |
2621 else | |
2622 pFaceExtras[i].uAdditionalBitmapID = pBitmaps_LOD->LoadTexture(pTexName); | |
2623 } | |
2624 | |
2625 | |
2626 for (uint i = 0; i < uNumFaces; ++i) | |
2627 { | |
2628 auto pFace = pFaces + i; | |
2629 auto pFaceExtra = pFaceExtras + pFace->uFaceExtraID; | |
2630 | |
2631 if (pFaceExtra->uEventID) | |
2632 { | |
2633 if (pFaceExtra->HasEventint()) | |
2634 pFace->uAttributes |= 0x100000; | |
2635 else | |
2636 pFace->uAttributes &= ~0x100000; | |
2637 } | |
2638 } | |
2639 | |
2640 pGameLoadingUI_ProgressBar->Progress(); | |
2641 | |
2642 memcpy(&uNumSectors, pData, 4); | |
2643 memcpy(pSectors, pData + 4, uNumSectors * sizeof(BLVSector)); | |
2644 pData += 4 + uNumSectors * sizeof(BLVSector); | |
2645 | |
2646 pGameLoadingUI_ProgressBar->Progress(); | |
2647 | |
2648 ptr_0002B0_sector_rdata = (unsigned short *)pAllocator->AllocNamedChunk(ptr_0002B0_sector_rdata, blv.uSector_rdata_Size, "L.RData"); | |
2649 memcpy(ptr_0002B0_sector_rdata, pData, blv.uSector_rdata_Size); | |
2650 pData += blv.uSector_rdata_Size; | |
2651 | |
2652 for (uint i = 0, j = 0; i < uNumSectors; ++i) | |
2653 { | |
2654 auto pSector = pSectors + i; | |
2655 | |
2656 pSector->pFloors = ptr_0002B0_sector_rdata + j; | |
2657 j += pSector->uNumFloors; | |
2658 | |
2659 pSector->pWalls = ptr_0002B0_sector_rdata + j; | |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
2660 j += pSector->uNumWalls; |
0 | 2661 |
2662 pSector->pCeilings = ptr_0002B0_sector_rdata + j; | |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
2663 j += pSector->uNumCeilings; |
0 | 2664 |
2665 pSector->pFluids = ptr_0002B0_sector_rdata + j; | |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
2666 j += pSector->uNumFluids; |
0 | 2667 |
2668 pSector->pPortals = ptr_0002B0_sector_rdata + j; | |
2669 j += pSector->uNumPortals; | |
2670 | |
2671 pSector->pFaceIDs = ptr_0002B0_sector_rdata + j; | |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
2672 j += pSector->uNumFaces; |
0 | 2673 |
2674 pSector->pCogs = ptr_0002B0_sector_rdata + j; | |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
2675 j += pSector->uNumCogs; |
0 | 2676 |
2677 pSector->pDecorationIDs = ptr_0002B0_sector_rdata + j; | |
2678 j += pSector->uNumDecorations; | |
2679 | |
2680 pSector->pMarkers = ptr_0002B0_sector_rdata + j; | |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
2681 j += pSector->uNumMarkers; |
0 | 2682 |
2683 | |
2684 //do | |
2685 //{ | |
2686 /*pSectors[v118].pFloors = (unsigned __int16 *)((char *)Src + (unsigned int)ptr_0002B0_sector_rdata); | |
2687 v244 = &pSectors[v118]; | |
2688 v119 = ptr_0002B0_sector_rdata; | |
2689 Src = (BLVFace *)((char *)Src + 2 * v244->field_4); | |
2690 v244->pWalls = (unsigned __int16 *)((char *)v119 + (int)Src); | |
2691 v120 = (int)&pSectors[v118]; | |
2692 v244 = (BLVSector *)v120; | |
2693 v121 = (BLVFace *)((char *)Src + 2 * *(short *)(v120 + 12)); | |
2694 v122 = (unsigned __int16 *)((char *)v121 + (unsigned int)ptr_0002B0_sector_rdata); | |
2695 Src = v121; | |
2696 v244->pCeilings = v122; | |
2697 v123 = (int)&pSectors[v118]; | |
2698 v244 = (BLVSector *)v123; | |
2699 v124 = (BLVFace *)((char *)Src + 2 * *(short *)(v123 + 20)); | |
2700 v125 = (unsigned __int16 *)((char *)v124 + (unsigned int)ptr_0002B0_sector_rdata); | |
2701 Src = v124; | |
2702 v244->pFluids = v125; | |
2703 v244 = &pSectors[v118]; | |
2704 v126 = ptr_0002B0_sector_rdata; | |
2705 Src = (BLVFace *)((char *)Src + 2 * v244->field_1C); | |
2706 v244->pPortals = (unsigned __int16 *)((char *)v126 + (int)Src); | |
2707 v244 = &pSectors[v118]; | |
2708 v127 = ptr_0002B0_sector_rdata; | |
2709 Src = (BLVFace *)((char *)Src + 2 * v244->uNumPortals); | |
2710 v244->pFaceIDs = (unsigned __int16 *)((char *)v127 + (int)Src); | |
2711 v244 = &pSectors[v118]; | |
2712 v128 = ptr_0002B0_sector_rdata; | |
2713 Src = (BLVFace *)((char *)Src + 2 * v244->field_2C); | |
2714 v244->pCogs = (unsigned __int16 *)((char *)v128 + (int)Src); | |
2715 v244 = &pSectors[v118]; | |
2716 v129 = ptr_0002B0_sector_rdata; | |
2717 Src = (BLVFace *)((char *)Src + 2 * v244->field_3C); | |
2718 v244->pDecorationIDs = (unsigned __int16 *)((char *)v129 + (int)Src); | |
2719 v130 = (int)&pSectors[v118]; | |
2720 ++v118; | |
2721 v244 = (BLVSector *)v130; | |
2722 v131 = ptr_0002B0_sector_rdata; | |
2723 Src = (BLVFace *)((char *)Src + 2 * *(short *)(v130 + 68)); | |
2724 ++v245; | |
2725 *(int *)(v130 + 80) = (int)(char *)v131 + (int)Src; | |
2726 Src = (BLVFace *)((char *)Src + 2 * *((short *)&pSectors[v118] - 20));*/ | |
2727 //} | |
2728 //while ( v245 < uNumSectors ); | |
2729 } | |
2730 | |
2731 ptr_0002B8_sector_lrdata = (unsigned __int16 *)pAllocator->AllocNamedChunk(ptr_0002B8_sector_lrdata, blv.uSector_lrdata_Size, "L.RLData"); | |
2732 memcpy(ptr_0002B8_sector_lrdata, pData, blv.uSector_lrdata_Size); | |
2733 pData += blv.uSector_lrdata_Size; | |
2734 | |
2735 pGameLoadingUI_ProgressBar->Progress(); | |
2736 | |
2737 for (uint i = 0, j = 0; i < uNumSectors; ++i) | |
2738 { | |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
2739 pSectors[i].pLights = ptr_0002B8_sector_lrdata + j; |
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
2740 j += pSectors[i].uNumLights; |
0 | 2741 } |
2742 | |
2743 pGameLoadingUI_ProgressBar->Progress(); | |
2744 | |
2745 memcpy(&uNumDoors, pData, 4); | |
2746 pData += 4; | |
2747 | |
2748 pGameLoadingUI_ProgressBar->Progress(); | |
2749 pGameLoadingUI_ProgressBar->Progress(); | |
2750 | |
2751 memcpy(&uNumLevelDecorations, pData, 4); | |
2752 memcpy(pLevelDecorations, pData + 4, uNumLevelDecorations * sizeof(LevelDecoration)); | |
2753 pData += 4 + uNumLevelDecorations * sizeof(LevelDecoration); | |
2754 | |
2755 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
2756 { | |
2757 pLevelDecorations[i].uDecorationDescID = pDecorationList->GetDecorIdByName(pData); | |
2758 | |
2759 pData += 32; | |
2760 } | |
2761 | |
2762 pGameLoadingUI_ProgressBar->Progress(); | |
2763 | |
2764 memcpy(&uNumLights, pData, 4); | |
2765 memcpy(pLights, pData + 4, uNumLights * sizeof(BLVLightMM7)); | |
2766 pData += 4 + uNumLights * sizeof(BLVLightMM7); | |
2767 | |
2768 pGameLoadingUI_ProgressBar->Progress(); | |
2769 pGameLoadingUI_ProgressBar->Progress(); | |
2770 | |
2771 memcpy(&uNumNodes, pData, 4); | |
2772 memcpy(pNodes, pData + 4, uNumNodes * sizeof(BSPNode)); | |
2773 pData += 4 + uNumNodes * sizeof(BSPNode); | |
2774 | |
2775 pGameLoadingUI_ProgressBar->Progress(); | |
2776 pGameLoadingUI_ProgressBar->Progress(); | |
2777 | |
2778 memcpy(&uNumSpawnPoints, pData, 4); | |
2779 pSpawnPoints = (SpawnPointMM7 *)pAllocator->AllocNamedChunk(pSpawnPoints, uNumSpawnPoints * sizeof(SpawnPointMM7), "Spawn"); | |
2780 memcpy(pSpawnPoints, pData + 4, uNumSpawnPoints * sizeof(SpawnPointMM7)); | |
2781 pData += 4 + uNumSpawnPoints * sizeof(SpawnPointMM7); | |
2782 | |
2783 pGameLoadingUI_ProgressBar->Progress(); | |
2784 pGameLoadingUI_ProgressBar->Progress(); | |
2785 | |
2786 //v201 = (const char *)v148; | |
2787 //v200 = (size_t)pMapOutlines; | |
2788 memcpy(&pMapOutlines->uNumOutlines, pData, 4); | |
2789 memcpy(pMapOutlines->pOutlines, pData + 4, pMapOutlines->uNumOutlines * sizeof(BLVMapOutline)); | |
2790 //v149 = pMapOutlines; | |
2791 //v199 = 12 * *v149; | |
2792 //memcpy(v149 + 1, (const void *)(v148 + 4), v199); | |
2793 free(pRawBLV); | |
2794 pRawBLV = nullptr; | |
2795 | |
2796 void *pRawDLV = nullptr; | |
2797 strcpy(&pFilename[strlen(pFilename) - 4], ".dlv"); | |
2798 File = pNew_LOD->FindContainer(pFilename, 1); | |
2799 fread(&header, 0x10u, 1u, File);//(FILE *)v245); | |
2800 bool _v244 = false; | |
2801 if (header.uVersion != 91969 || | |
2802 header.pMagic[0] != 'm' || | |
2803 header.pMagic[1] != 'v' || | |
2804 header.pMagic[2] != 'i' || | |
2805 header.pMagic[3] != 'i' ) | |
2806 { | |
2807 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:1090", 0); | |
2808 _v244 = true; | |
2809 } | |
2810 else | |
2811 { | |
2812 pRawDLV = malloc(header.uDecompressedSize); | |
2813 if (header.uCompressedSize == header.uDecompressedSize) | |
2814 fread(pRawDLV, 1, header.uCompressedSize, File); | |
2815 else if (header.uCompressedSize < header.uDecompressedSize) | |
2816 { | |
2817 auto pTmpMem = malloc(header.uCompressedSize); | |
2818 { | |
2819 fread(pTmpMem, header.uCompressedSize, 1, File); | |
2820 | |
2821 uint uDecompressedSize = header.uDecompressedSize; | |
2822 zlib::MemUnzip(pRawDLV, &uDecompressedSize, pTmpMem, header.uCompressedSize); | |
2823 | |
2824 if (uDecompressedSize != header.uDecompressedSize) | |
2825 Log::Warning(L"uDecompressedSize != header.uDecompressedSize in DLV"); | |
2826 } | |
2827 free(pTmpMem); | |
2828 } | |
2829 else | |
2830 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:1108", 0); | |
2831 | |
2832 pData = (char *)pRawDLV; | |
2833 } | |
2834 | |
2835 memcpy(&dlv, pData, 40); | |
2836 pData += 40; | |
2837 | |
2838 //v152 = dlv.uNumFacesInBModels; | |
2839 if (dlv.uNumFacesInBModels) | |
2840 { | |
2841 //v153 = dlv.uNumDecorations; | |
2842 if (dlv.uNumDecorations) | |
2843 { | |
2844 if (dlv.uNumFacesInBModels != uNumFaces || | |
2845 dlv.uNumDecorations != uNumLevelDecorations) | |
2846 _v244 = true; | |
2847 } | |
2848 } | |
2849 | |
2850 if (dword_6BE364_game_settings_1 & 0x2000 ) | |
2851 _i = 29030400; | |
2852 bool _a = false; | |
2853 if ( a3 - dlv.uLastRepawnDay >= _i && strcmpi(pCurrentMapName, "d29.dlv") ) | |
2854 _a = true; | |
2855 | |
2856 //v154 = 875; | |
2857 if (_v244) | |
2858 { | |
2859 memset(v203, 0, 0x36B); | |
2860 goto LABEL_132; | |
2861 } | |
2862 if (_a || !dlv.uLastRepawnDay ) | |
2863 { | |
2864 memcpy(v203, pData, 0x36B); | |
2865 LABEL_132: | |
435 | 2866 free(pRawDLV); |
0 | 2867 dlv.uLastRepawnDay = a3; |
2868 if (_v244) | |
2869 ++dlv.uNumRespawns; | |
2870 //v201 = pFilename; | |
2871 *(int *)pDest = 1; | |
2872 File = pGames_LOD->FindContainer(pFilename, 0); | |
2873 fread(&header, 0x10u, 1u, File); | |
2874 auto v155 = header.uCompressedSize; | |
2875 auto Count = header.uDecompressedSize; | |
2876 auto Src = (BLVFace *)malloc(header.uDecompressedSize); | |
435 | 2877 pRawDLV = Src; |
0 | 2878 if ( v155 <= Count ) |
2879 { | |
2880 if ( v155 == Count ) | |
2881 { | |
2882 fread(Src, 1u, Count, File); | |
2883 } | |
2884 else | |
2885 { | |
2886 auto _uSourceLen = malloc(v155); | |
2887 fread(_uSourceLen, v155, 1u, File); | |
2888 zlib::MemUnzip(Src, &Count, _uSourceLen, v155); | |
2889 free(_uSourceLen); | |
2890 } | |
2891 } | |
2892 else | |
2893 { | |
2894 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:1195", 0); | |
2895 } | |
2896 pData = ((char *)Src + 40); | |
2897 //v154 = 875; | |
2898 goto LABEL_140; | |
2899 } | |
2900 *(int *)pDest = 0; | |
2901 LABEL_140: | |
2902 //v202 = (int)".blv"; | |
2903 //v156 = strlen(pFilename); | |
2904 strcpy(&pFilename[strlen(pFilename) - 4], ".blv"); | |
2905 memcpy(_visible_outlines, pData, 875); | |
2906 pData += 875; | |
2907 | |
2908 if ( *(int *)pDest ) | |
2909 memcpy(_visible_outlines, v203, 875); | |
2910 | |
2911 for (uint i = 0; i < pMapOutlines->uNumOutlines; ++i) | |
2912 { | |
2913 auto pVertex = pMapOutlines->pOutlines + i; | |
2914 if ((unsigned __int8)(1 << (7 - i % 8)) & _visible_outlines[i / 8]) | |
2915 pVertex->uFlags |= 1; | |
2916 } | |
2917 | |
2918 | |
2919 for (uint i = 0; i < uNumFaces; ++i) | |
2920 { | |
2921 auto pFace = pFaces + i; | |
2922 auto pFaceExtra = pFaceExtras + pFace->uFaceExtraID; | |
2923 | |
2924 memcpy(&pFace->uAttributes, pData, 4); | |
2925 pData += 4; | |
2926 | |
2927 if (pFaceExtra->uEventID) | |
2928 { | |
2929 if (pFaceExtra->HasEventint()) | |
2930 pFace->uAttributes |= 0x100000; | |
2931 else | |
2932 pFace->uAttributes &= ~0x100000; | |
2933 } | |
2934 } | |
2935 | |
2936 pGameLoadingUI_ProgressBar->Progress(); | |
2937 | |
2938 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
2939 { | |
2940 memcpy(&pLevelDecorations[i].field_2, pData, 2); | |
2941 pData += 2; | |
2942 } | |
2943 | |
2944 pGameLoadingUI_ProgressBar->Progress(); | |
2945 | |
2946 memcpy(&uNumActors, pData, 4); | |
2947 memcpy(pActors, pData + 4, uNumActors * sizeof(Actor)); | |
2948 pData += 4 + uNumActors * sizeof(Actor); | |
2949 | |
2950 pGameLoadingUI_ProgressBar->Progress(); | |
2951 pGameLoadingUI_ProgressBar->Progress(); | |
2952 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2953 memcpy(&uNumSpriteObjects, pData, 4); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2954 memcpy(pSpriteObjects, pData + 4, uNumSpriteObjects * sizeof(SpriteObject)); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2955 pData += 4 + uNumSpriteObjects * sizeof(SpriteObject); |
0 | 2956 |
2957 pGameLoadingUI_ProgressBar->Progress(); | |
2958 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2959 for (uint i = 0; i < uNumSpriteObjects; ++i) |
0 | 2960 { |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2961 auto pItem = pSpriteObjects + i; |
0 | 2962 |
2963 if (pItem->stru_24.uItemID && !(pItem->uAttributes & 0x0100)) | |
2964 { | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2965 pItem->uType = pItemsTable->pItems[pItem->stru_24.uItemID - 1].uSpriteID; |
0 | 2966 |
2967 uint uObjectID = 0; | |
2968 for (uint j = 0; j < pObjectList->uNumObjects; ++j) | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
2969 if (pItem->uType == pObjectList->pObjects[j].uObjectID) |
0 | 2970 { |
2971 pItem->uObjectDescID = j; | |
2972 break; | |
2973 } | |
2974 } | |
2975 } | |
2976 | |
2977 pGameLoadingUI_ProgressBar->Progress(); | |
2978 | |
2979 memcpy(&uNumChests, pData, 4); | |
2980 memcpy(pChests, pData + 4, uNumChests * sizeof(Chest)); | |
2981 pData += 4 + uNumChests * sizeof(Chest); | |
2982 | |
2983 pGameLoadingUI_ProgressBar->Progress(); | |
2984 pGameLoadingUI_ProgressBar->Progress(); | |
2985 | |
2986 memcpy(pDoors, pData, 0x3E80); | |
2987 pData += 0x3E80; | |
2988 | |
2989 //v201 = (const char *)blv.uDoors_ddata_Size; | |
2990 //v200 = (size_t)ptr_0002B4_doors_ddata; | |
2991 //v170 = pAllocator->AllocNamedChunk(ptr_0002B4_doors_ddata, blv.uDoors_ddata_Size, "L.DData"); | |
2992 //v171 = blv.uDoors_ddata_Size; | |
2993 ptr_0002B4_doors_ddata = (unsigned __int16 *)pAllocator->AllocNamedChunk(ptr_0002B4_doors_ddata, blv.uDoors_ddata_Size, "L.DData"); | |
2994 memcpy(ptr_0002B4_doors_ddata, pData, blv.uDoors_ddata_Size); | |
2995 pData += blv.uDoors_ddata_Size; | |
2996 | |
2997 //Src = (BLVFace *)((char *)Src + v171); | |
2998 //v172 = 0; | |
2999 //v245 = 0; | |
3000 //if (uNumDoors > 0) | |
3001 for (uint i = 0, j = 0; i < uNumDoors; ++i) | |
3002 { | |
3003 auto pDoor = pDoors + i; | |
3004 | |
3005 pDoor->pVertexIDs = ptr_0002B4_doors_ddata + j; | |
3006 j += pDoor->uNumVertices; | |
3007 | |
3008 pDoor->pFaceIDs = ptr_0002B4_doors_ddata + j; | |
3009 j += pDoor->uNumFaces; | |
3010 | |
3011 pDoor->pSectorIDs = ptr_0002B4_doors_ddata + j; | |
3012 j += pDoor->field_48; | |
3013 | |
3014 pDoor->pDeltaUs = (short *)(ptr_0002B4_doors_ddata + j); | |
3015 j += pDoor->uNumFaces; | |
3016 | |
3017 pDoor->pDeltaVs = (short *)(ptr_0002B4_doors_ddata + j); | |
3018 j += pDoor->uNumFaces; | |
3019 | |
3020 pDoor->pXOffsets = ptr_0002B4_doors_ddata + j; | |
3021 j += pDoor->uNumOffsets; | |
3022 | |
3023 pDoor->pYOffsets = ptr_0002B4_doors_ddata + j; | |
3024 j += pDoor->uNumOffsets; | |
3025 | |
3026 pDoor->pZOffsets = ptr_0002B4_doors_ddata + j; | |
3027 j += pDoor->uNumOffsets; | |
3028 /*v173 = pDoors; | |
3029 for ( k = 0; ; v172 = v188 + 2 * *((short *)&v173[k] - 3) ) | |
3030 { | |
3031 v173[k].pVertexIDs = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v172); | |
3032 v175 = &pDoors[k]; | |
3033 v176 = v172 + 2 * v175->uNumVertices; | |
3034 v175->pFaceIDs = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v176); | |
3035 v177 = &pDoors[k]; | |
3036 v178 = v176 + 2 * v177->uNumFaces; | |
3037 v177->pSectorIDs = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v178); | |
3038 v179 = &pDoors[k]; | |
3039 v180 = v178 + 2 * v179->field_48; | |
3040 v179->pDeltaUs = (__int16 *)((char *)ptr_0002B4_doors_ddata + v180); | |
3041 v181 = &pDoors[k]; | |
3042 v182 = v180 + 2 * v181->uNumFaces; | |
3043 v181->pDeltaVs = (__int16 *)((char *)ptr_0002B4_doors_ddata + v182); | |
3044 v183 = &pDoors[k]; | |
3045 v184 = v182 + 2 * v183->uNumFaces; | |
3046 v183->pXOffsets = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v184); | |
3047 v185 = &pDoors[k]; | |
3048 v186 = v184 + 2 * v185->uNumOffsets; | |
3049 v185->pYOffsets = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v186); | |
3050 v187 = &pDoors[k]; | |
3051 ++k; | |
3052 v188 = v186 + 2 * v187->uNumOffsets; | |
3053 v189 = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v188); | |
3054 ++v245; | |
3055 v187->pZOffsets = v189; | |
3056 v173 = pDoors; | |
3057 if ( v245 >= uNumDoors ) | |
3058 break; | |
3059 }*/ | |
3060 } | |
3061 //v190 = 0; | |
3062 //v245 = 0; | |
3063 for (uint i = 0; i < uNumDoors; ++i) | |
3064 { | |
3065 auto pDoor = pDoors + i; | |
3066 | |
3067 for (uint j = 0; j < pDoor->uNumFaces; ++j) | |
3068 { | |
3069 auto pFace = pFaces + pDoor->pFaceIDs[j]; | |
3070 auto pFaceExtra = pFaceExtras + pFace->uFaceExtraID; | |
3071 | |
3072 pDoor->pDeltaUs[j] = pFaceExtra->sTextureDeltaU; | |
3073 pDoor->pDeltaVs[j] = pFaceExtra->sTextureDeltaV; | |
3074 } | |
3075 //v191 = pDoors; | |
3076 //pDest = 0; | |
3077 //do | |
3078 // { | |
3079 /*Argsn = 0; | |
3080 for ( l = (BLVDoor *)&v190[(int)v191]; | |
3081 Argsn < *(short *)&v190[(int)v191 + 70]; | |
3082 l = (BLVDoor *)&v190[(int)v191] ) | |
3083 { | |
3084 v193 = Argsn; | |
3085 v194 = l->pFaceIDs[Argsn++]; | |
3086 v195 = &pFaceExtras[pFaces[v194].uFaceExtraID]; | |
3087 l->pDeltaUs[v193] = v195->sTextureDeltaU; | |
3088 v190 = pDest; | |
3089 *(short *)(v193 * 2 + *(int *)&pDest[(unsigned int)pDoors + 52]) = v195->sTextureDeltaV; | |
3090 v191 = pDoors; | |
3091 } | |
3092 ++v245; | |
3093 v190 += 80; | |
3094 pDest = v190;*/ | |
3095 //} | |
3096 //while ( v245 < uNumDoors ); | |
3097 } | |
3098 | |
3099 | |
3100 pGameLoadingUI_ProgressBar->Progress(); | |
3101 | |
3102 memcpy(&stru_5E4C90, pData, 0xC8); | |
3103 pData += 0xC8; | |
3104 | |
3105 pGameLoadingUI_ProgressBar->Progress(); | |
3106 | |
3107 memcpy(&stru1, pData, 0x38u); | |
3108 pData += 0x38; | |
3109 | |
3110 free(pRawDLV); | |
3111 //v5 = 0; | |
3112 | |
3113 pSoundList->LoadSound(64, 0); | |
3114 pSoundList->LoadSound(103, 0); | |
3115 pSoundList->LoadSound(63, 0); | |
3116 pSoundList->LoadSound(102, 0); | |
3117 pSoundList->LoadSound(50, 0); | |
3118 pSoundList->LoadSound(89, 0); | |
3119 | |
3120 return 0; | |
3121 } | |
3122 | |
3123 | |
3124 //----- (0049AC17) -------------------------------------------------------- | |
3125 int IndoorLocation::GetSector(int sX, int sY, int sZ) | |
3126 { | |
3127 int v4; // esi@1 | |
3128 //unsigned __int8 v5; // zf@1 | |
3129 //unsigned __int8 v6; // sf@1 | |
3130 //unsigned __int8 v7; // of@1 | |
3131 //BLVSector *v8; // eax@3 | |
3132 //int v9; // edi@9 | |
3133 //int v10; // eax@9 | |
3134 //int v11; // edx@9 | |
3135 //int v12; // eax@10 | |
3136 //unsigned __int16 v13; // ax@12 | |
3137 //int v14; // edi@14 | |
3138 //BLVFace *v15; // eax@14 | |
3139 //BLVFace *v16; // edi@14 | |
3140 //PolygonType v17; // al@14 | |
3141 //unsigned __int16 *pVertexIDs; // esi@16 | |
3142 //Vec3_short_ *v19; // eax@16 | |
3143 //int v20; // edx@16 | |
3144 //unsigned __int16 *v21; // esi@17 | |
3145 //int v22; // edi@19 | |
3146 //int v23; // edi@20 | |
3147 //Vec3_short_ *v24; // edx@20 | |
3148 signed int v25; // edx@21 | |
3149 int v26; // ebx@23 | |
3150 //int v27; // edx@26 | |
3151 //signed __int64 v28; // qtt@26 | |
3152 ///Vec3_short_ *v29; // eax@26 | |
3153 //Vec3_short_ *v30; // edx@26 | |
3154 //int v31; // edx@26 | |
3155 signed int v32; // edi@27 | |
3156 signed __int64 v33; // qtt@27 | |
3157 //Vec3_short_ *v34; // edx@27 | |
3158 int v35; // edx@32 | |
3159 int v37; // edi@38 | |
3160 int v38; // ebx@40 | |
3161 int v39; // eax@41 | |
3162 BLVFace *v40; // esi@42 | |
3163 PolygonType v41; // dl@42 | |
3164 int v42; // edx@43 | |
3165 int v43[50]; // [sp+Ch] [bp-108h]@1 | |
3166 //int v44; // [sp+D4h] [bp-40h]@9 | |
3167 //int v45; // [sp+D8h] [bp-3Ch]@14 | |
3168 //int v46; // [sp+DCh] [bp-38h]@14 | |
3169 //int v47; // [sp+E0h] [bp-34h]@19 | |
3170 //int v48; // [sp+E4h] [bp-30h]@9 | |
3171 //Vec3_short_ *v49; // [sp+E8h] [bp-2Ch]@19 | |
3172 bool v50; // [sp+ECh] [bp-28h]@19 | |
3173 int v51; // [sp+F0h] [bp-24h]@9 | |
3174 //unsigned int v52; // [sp+F4h] [bp-20h]@2 | |
3175 int v53; // [sp+F8h] [bp-1Ch]@10 | |
3176 int v54; // [sp+FCh] [bp-18h]@16 | |
3177 int v55; // [sp+100h] [bp-14h]@1 | |
3178 int v56; // [sp+104h] [bp-10h]@1 | |
3179 int v57; // [sp+108h] [bp-Ch]@16 | |
3180 //Vec3_short_ *v58; // [sp+10Ch] [bp-8h]@20 | |
3181 int v59; // [sp+110h] [bp-4h]@16 | |
3182 | |
3183 v4 = 0; | |
3184 //v7 = __OFSUB__(this->uNumSectors, 1); | |
3185 //v5 = this->uNumSectors == 1; | |
3186 //v6 = this->uNumSectors - 1 < 0; | |
3187 v55 = 0; | |
3188 v43[0] = 0; | |
3189 //v56 = 1; | |
3190 if (uNumSectors < 2) | |
3191 return 0; | |
3192 | |
3193 for (uint i = 1; i < uNumSectors; ++i) | |
3194 { | |
3195 auto pSector = pSectors + i; | |
3196 | |
3197 if (pSector->pBounding.x1 <= sX && pSector->pBounding.x2 >= sX) | |
3198 if (pSector->pBounding.y1 <= sY && pSector->pBounding.y2 >= sY) | |
3199 if (pSector->pBounding.z1 - 64 <= sZ && pSector->pBounding.z2 + 64 >= sZ) | |
3200 { | |
618
5cfb5dadf330
Margareth righ-click (addded constructor to NPCProfession) and cleaned BLV debug logs
Nomad
parents:
595
diff
changeset
|
3201 //Log::Warning(L"Sector[%u]", i); |
0 | 3202 v51 = pSector->uNumFloors + pSector->uNumPortals; |
3203 if (!v51) | |
3204 continue; | |
3205 | |
3206 //v9 = pSector->uNumFloors; | |
3207 //v10 = v9 + pSector->uNumPortals; | |
3208 //v11 = 0; | |
3209 //v44 = v9; | |
3210 //v48 = 0; | |
3211 | |
3212 //v12 = -2 * v9; | |
3213 //v53 = -2 * v9; | |
3214 for (uint j = 0; j < v51; ++j) | |
3215 { | |
3216 unsigned int uFaceID; | |
3217 if (j < pSector->uNumFloors) | |
3218 uFaceID = pSector->pFloors[j]; | |
3219 else | |
3220 uFaceID = pSector->pPortals[j - pSector->uNumFloors]; | |
3221 | |
3222 auto pFace = pFaces + uFaceID; | |
3223 //v14 = (signed __int16)v13; | |
3224 //v15 = this->pFaces; | |
3225 //v46 = v13; | |
3226 //v14 *= 96; | |
3227 //v45 = v13 * sizeof(BLVFace); | |
3228 //v16 = pFaces + uFaceID; | |
3229 //v17 = v16->uPolygonType; | |
3230 if (pFace->uPolygonType == POLYGON_Floor || | |
3231 pFace->uPolygonType == POLYGON_InBetweenFloorAndWall) | |
3232 { | |
3233 //pVertexIDs = pFace->pVertexIDs; | |
3234 //v19 = this->pVertices; | |
3235 //v20 = pVertices[pFace->pVertexIDs[0]].y; | |
3236 v54 = 0; | |
3237 //v57 = 0; | |
3238 //v5 = v16->uNumVertices == 0; | |
3239 v59 = pVertices[pFace->pVertexIDs[0]].y >= sY; | |
3240 | |
3241 //v21 = pFace->pVertexIDs + 1; | |
3242 for (uint k = 1; k < pFace->uNumVertices; ++k) | |
3243 { | |
3244 if (v54 >= 2) | |
3245 break; | |
3246 | |
3247 //v49 = &pVertices[pFace->pVertexIDs[k]]; | |
3248 auto v2 = &pVertices[pFace->pVertexIDs[k]]; | |
3249 //v22 = pVertex->y; | |
3250 //v47 = pVertex->y; | |
3251 v50 = v2->y >= sY; | |
3252 if ( v59 ^ v50 ) | |
3253 { | |
3254 //v58 = &pVertices[pFace->pVertexIDs[k - 1]]; | |
3255 auto v1 = &pVertices[pFace->pVertexIDs[k - 1]]; | |
3256 //v23 = v58->x; | |
3257 //HIWORD(v24) = HIWORD(v49); | |
3258 //LOWORD(v24) = v49->x; | |
3259 //v49 = v24; | |
3260 //v59 = v49->x; | |
3261 v25 = v1->x >= sX ? 0 : 2; // BUG TODO TROLOLO | |
3262 v26 = v25 | v2->x < sX; // SWAP v1 and v2 till the result's correct | |
3263 if ( v26 != 3 ) | |
3264 { | |
3265 if (!v26) | |
3266 ++v54; | |
3267 else | |
3268 { | |
3269 if (v1->x >= v2->x) | |
3270 { | |
3271 int _a58; | |
3272 int _a59; | |
3273 | |
3274 v32 = v1->x - v2->x; | |
3275 LODWORD(v33) = v32 << 16; | |
3276 HIDWORD(v33) = v32 >> 16; | |
3277 _a58 = v33 / (v1->y - v2->y); | |
3278 _a59 = (unsigned __int64)(_a58 * (__int64)(sY - v2->y)) >> 16; | |
3279 | |
3280 if (v59 + pVertices[k].x > sX) | |
3281 ++v54; | |
3282 } | |
3283 else | |
3284 { | |
3285 int _a58; | |
3286 int _a59; | |
3287 v32 = v2->x - v1->x; | |
3288 LODWORD(v33) = v32 << 16; | |
3289 HIDWORD(v33) = v32 >> 16; | |
3290 _a58 = v33 / (v2->y - v1->y); | |
3291 _a59 = (unsigned __int64)(_a58 * (signed __int64)(sY - v1->y)) >> 16; | |
3292 | |
3293 if (_a59 + pVertices[k - 1].x > sX) | |
3294 ++v54; | |
3295 } | |
3296 } | |
3297 } | |
3298 } | |
3299 | |
3300 v59 = v50; | |
3301 } | |
3302 | |
3303 if (pFace->uNumVertices) | |
3304 { | |
3305 if (v54 == 1) | |
3306 { | |
3307 v35 = v55++; | |
3308 v43[v35] = uFaceID; | |
3309 } | |
3310 } | |
3311 } | |
3312 } | |
3313 v4 = v43[0]; | |
3314 } | |
3315 } | |
3316 | |
3317 if ( v55 == 1 ) | |
3318 return this->pFaces[v4].uSectorID; | |
3319 v37 = 0; | |
3320 if ( !v55 ) | |
3321 return 0; | |
3322 v38 = 0; | |
3323 v53 = 0xFFFFFFu; | |
3324 if ( v55 > 0 ) | |
3325 { | |
3326 v39 = sY; | |
3327 while ( 1 ) | |
3328 { | |
3329 v40 = &this->pFaces[v43[v37]]; | |
3330 v41 = v40->uPolygonType; | |
3331 if ( v41 == 3 ) | |
3332 break; | |
3333 if ( v41 == 4 ) | |
3334 { | |
3335 v51 = v40->zCalc1; | |
3336 v57 = (unsigned __int64)(v51 * (signed __int64)(sX << 16)) >> 16; | |
3337 v56 = sY << 16; | |
3338 v51 = v40->zCalc2; | |
3339 v56 = (unsigned __int64)(v51 * (signed __int64)(sY << 16)) >> 16; | |
3340 v42 = (v56 + v40->zCalc3 + v57 + 32768) >> 16; | |
3341 goto LABEL_46; | |
3342 } | |
3343 LABEL_47: | |
3344 if ( v39 >= 0 ) | |
3345 { | |
3346 if ( v39 < v53 ) | |
3347 { | |
3348 v38 = v40->uSectorID; | |
3349 v53 = v39; | |
3350 } | |
3351 } | |
3352 ++v37; | |
3353 if ( v37 >= v55 ) | |
3354 return v38; | |
3355 } | |
3356 v42 = this->pVertices[*v40->pVertexIDs].z; | |
3357 LABEL_46: | |
3358 v39 = sZ - v42; | |
3359 goto LABEL_47; | |
3360 } | |
3361 return v38; | |
3362 } | |
3363 // 49AC17: using guessed type int var_108[50]; | |
3364 | |
3365 | |
3366 //----- (00498A41) -------------------------------------------------------- | |
3367 char BLVFace::_get_normals(Vec3_int_ *a2, Vec3_int_ *a3) | |
3368 { | |
3369 BLVFace *v3; // ebx@1 | |
3370 int v4; // eax@1 | |
3371 signed __int64 v5; // qax@2 | |
3372 double v6; // st7@8 | |
3373 Vec3_float_ a1; // [sp+Ch] [bp-Ch]@8 | |
3374 | |
3375 v3 = this; | |
3376 LOBYTE(v4) = this->uPolygonType; | |
3377 if ( (char)v4 == POLYGON_VerticalWall ) | |
3378 { | |
3379 a2->x = -this->pFacePlane_old.vNormal.y; | |
3380 LODWORD(v5) = this->pFacePlane_old.vNormal.x; | |
3381 LABEL_9: | |
3382 a2->y = v5; | |
3383 v4 = 0; | |
3384 a2->z = 0; | |
3385 a3->y = 0; | |
3386 a3->z = 0xFFFF0000u; | |
3387 LABEL_11: | |
3388 a3->x = v4; | |
3389 goto LABEL_12; | |
3390 } | |
3391 if ( (char)v4 == POLYGON_Floor || (char)v4 == POLYGON_Ceiling ) | |
3392 { | |
3393 LABEL_10: | |
3394 v4 = 0; | |
3395 a2->x = 0x10000u; | |
3396 a2->z = 0; | |
3397 a2->y = 0; | |
3398 a3->y = 0xFFFF0000u; | |
3399 a3->z = 0; | |
3400 goto LABEL_11; | |
3401 } | |
3402 if ( (char)v4 == POLYGON_InBetweenFloorAndWall || (char)v4 == POLYGON_InBetweenCeilingAndWall ) | |
3403 { | |
3404 if ( abs(this->pFacePlane_old.vNormal.z) < 46441 ) | |
3405 { | |
3406 a1.x = (double)-v3->pFacePlane_old.vNormal.y; | |
3407 a1.y = (double)v3->pFacePlane_old.vNormal.x; | |
3408 a1.z = 0.0; | |
3409 a1.Normalize(); | |
3410 v6 = a1.y * 65536.0; | |
3411 a2->x = (signed __int64)(a1.x * 65536.0); | |
3412 v5 = (signed __int64)v6; | |
3413 goto LABEL_9; | |
3414 } | |
3415 goto LABEL_10; | |
3416 } | |
3417 LABEL_12: | |
3418 if ( BYTE2(v3->uAttributes) & 0x80 ) | |
3419 { | |
3420 a2->x = -a2->x; | |
3421 a2->y = -a2->y; | |
3422 a2->z = -a2->z; | |
3423 } | |
3424 if ( BYTE3(v3->uAttributes) & 1 ) | |
3425 { | |
3426 a3->x = -a3->x; | |
3427 a3->y = -a3->y; | |
3428 a3->z = -a3->z; | |
3429 } | |
3430 return v4; | |
3431 } | |
3432 | |
3433 //----- (0044C23B) -------------------------------------------------------- | |
428 | 3434 bool BLVFaceExtra::HasEventint() |
3435 { | |
3436 signed int event_index; // eax@1 | |
3437 _evt_raw* start_evt; | |
3438 _evt_raw* end_evt; | |
3439 | |
3440 event_index = 0; | |
3441 if ( (uLevelEVT_NumEvents - 1) <= 0 ) | |
3442 return false; | |
3443 while ( pLevelEVT_Index[event_index].uEventID != this->uEventID ) | |
0 | 3444 { |
428 | 3445 ++event_index; |
3446 if ( event_index >= (signed int)(uLevelEVT_NumEvents - 1) ) | |
3447 return false; | |
0 | 3448 } |
428 | 3449 end_evt=(_evt_raw*)&pLevelEVT[pLevelEVT_Index[event_index+1].uEventOffsetInEVT]; |
3450 start_evt=(_evt_raw*)&pLevelEVT[pLevelEVT_Index[event_index].uEventOffsetInEVT]; | |
3451 if ( (end_evt->_e_type != EVENT_Exit) || (start_evt->_e_type!= EVENT_MouseOver) ) | |
3452 return false; | |
0 | 3453 else |
428 | 3454 return true; |
0 | 3455 } |
3456 | |
3457 | |
3458 | |
3459 | |
3460 //----- (0046F228) -------------------------------------------------------- | |
3461 void __cdecl BLV_UpdateDoors() | |
3462 { | |
472 | 3463 //int v0; // ebx@1 |
3464 //int v1; // edi@1 | |
3465 //BLVDoor *v2; // esi@3 | |
3466 //unsigned __int16 v3; // ax@3 | |
3467 //unsigned int v4; // ecx@5 | |
3468 //int v5; // eax@8 | |
3469 //int v6; // ecx@8 | |
3470 //int v7; // eax@12 | |
3471 //int v8; // eax@16 | |
3472 //unsigned __int8 v9; // zf@18 | |
3473 //char v10; // sf@18 | |
3474 //unsigned __int8 v11; // of@18 | |
3475 //int v12; // edi@19 | |
3476 //int v13; // ecx@19 | |
3477 //__int16 v14; // ax@19 | |
0 | 3478 BLVFace *v15; // ebx@24 |
472 | 3479 //unsigned __int16 *v16; // ecx@24 |
0 | 3480 Vec3_short_ *v17; // esi@24 |
3481 int v18; // eax@24 | |
3482 int v19; // edx@24 | |
3483 signed int v20; // eax@24 | |
472 | 3484 //Vec3_short_ *v21; // ecx@24 |
3485 //double v22; // st7@24 | |
3486 //double v23; // st6@24 | |
0 | 3487 int v24; // esi@25 |
3488 int v25; // eax@25 | |
472 | 3489 //BLVDoor *v26; // edi@25 |
0 | 3490 signed __int64 v27; // qtt@27 |
3491 BLVFaceExtra *v28; // esi@32 | |
3492 int v29; // ecx@34 | |
3493 int v30; // edx@34 | |
3494 unsigned __int64 v31; // qax@34 | |
3495 int v32; // eax@34 | |
472 | 3496 //unsigned __int16 *v33; // eax@35 |
0 | 3497 Vec3_short_ *v34; // eax@35 |
3498 int v35; // ecx@35 | |
3499 int v36; // edx@35 | |
3500 signed int v37; // eax@35 | |
3501 signed int v38; // edx@35 | |
3502 int v39; // eax@35 | |
3503 int v40; // edx@35 | |
472 | 3504 //unsigned __int8 v41; // cf@35 |
3505 //unsigned __int16 *v42; // edi@36 | |
0 | 3506 Vec3_short_ *v43; // edi@36 |
472 | 3507 //int v44; // ecx@36 |
3508 //int v45; // edi@36 | |
3509 //int v46; // ecx@36 | |
3510 //__int16 *v47; // edx@44 | |
3511 //int v48; // ecx@44 | |
0 | 3512 unsigned int v49; // ecx@46 |
3513 unsigned __int16 v50; // ax@48 | |
3514 unsigned int v51; // eax@51 | |
3515 unsigned __int16 v52; // ax@54 | |
3516 int v53; // ecx@57 | |
472 | 3517 //int v54; // edx@57 |
0 | 3518 unsigned __int64 v55; // qax@57 |
3519 int v56; // ecx@58 | |
3520 int v57; // eax@58 | |
472 | 3521 //int v58; // eax@59 |
3522 //SoundID v59; // [sp-24h] [bp-88h]@12 | |
3523 //signed int v60; // [sp-20h] [bp-84h]@12 | |
3524 //unsigned int v61; // [sp-1Ch] [bp-80h]@12 | |
3525 //signed int v62; // [sp-18h] [bp-7Ch]@12 | |
3526 //signed int v63; // [sp-14h] [bp-78h]@12 | |
3527 //int v64; // [sp-10h] [bp-74h]@12 | |
3528 //unsigned int v65; // [sp-Ch] [bp-70h]@12 | |
3529 //int v66; // [sp-8h] [bp-6Ch]@12 | |
3530 Vec3_int_ v67; | |
3531 //int v67; // [sp+8h] [bp-5Ch]@31 | |
3532 //int v68; // [sp+Ch] [bp-58h]@34 | |
3533 //int v69; // [sp+10h] [bp-54h]@34 | |
3534 Vec3_int_ v70; | |
3535 //int v70; // [sp+14h] [bp-50h]@31 | |
3536 //int v71; // [sp+18h] [bp-4Ch]@34 | |
3537 //int v72; // [sp+1Ch] [bp-48h]@34 | |
0 | 3538 int v73; // [sp+20h] [bp-44h]@24 |
472 | 3539 //__int16 v74; // [sp+24h] [bp-40h]@24 |
0 | 3540 int v75; // [sp+28h] [bp-3Ch]@36 |
3541 int v76; // [sp+2Ch] [bp-38h]@36 | |
3542 int v77; // [sp+30h] [bp-34h]@36 | |
472 | 3543 //int v78; // [sp+34h] [bp-30h]@36 |
3544 //int v79; // [sp+38h] [bp-2Ch]@19 | |
3545 //unsigned int v80; // [sp+3Ch] [bp-28h]@2 | |
3546 //int v81; // [sp+40h] [bp-24h]@1 | |
0 | 3547 int v82; // [sp+44h] [bp-20h]@35 |
3548 int v83; // [sp+48h] [bp-1Ch]@34 | |
3549 int v84; // [sp+4Ch] [bp-18h]@34 | |
3550 int v85; // [sp+50h] [bp-14h]@19 | |
3551 SoundID eDoorSoundID; // [sp+54h] [bp-10h]@1 | |
472 | 3552 //BLVDoor *v87; // [sp+58h] [bp-Ch]@3 |
0 | 3553 int v88; // [sp+5Ch] [bp-8h]@18 |
3554 int v89; // [sp+60h] [bp-4h]@6 | |
3555 | |
472 | 3556 //v0 = 0; |
3557 //v1 = 0; | |
0 | 3558 eDoorSoundID = (SoundID)pDoorSoundIDsByLocationID[dword_6BE13C_uCurrentlyLoadedLocationID]; |
472 | 3559 //v81 = 0; |
3560 //if ( pIndoor->uNumDoors > 0 ) | |
3561 for (uint i = 0; i < pIndoor->uNumDoors; ++i) | |
0 | 3562 { |
472 | 3563 auto door = pIndoor->pDoors + i; |
3564 //v80 = 0; | |
3565 //do | |
3566 //{ | |
3567 //v2 = &pIndoor->pDoors[v80 / 0x50]; | |
3568 //v87 = &pIndoor->pDoors[v80 / 0x50]; | |
3569 //v3 = door->uState; | |
3570 if (door->uState == BLVDoor::Closed || door->uState == BLVDoor::Open) | |
0 | 3571 { |
472 | 3572 door->uAttributes &= 0xFFFFFFFDu; |
0 | 3573 goto LABEL_62; |
3574 } | |
472 | 3575 door->uTimeSinceTriggered += pEventTimer->uTimeElapsed; |
3576 //v4 = door->uTimeSinceTriggered; | |
3577 if (door->uState == BLVDoor::Opening) | |
0 | 3578 { |
472 | 3579 v89 = (signed int)(door->uTimeSinceTriggered * door->uCloseSpeed) / 128; |
3580 if ( v89 >= door->uMoveLength ) | |
0 | 3581 { |
472 | 3582 v89 = door->uMoveLength; |
3583 door->uState = BLVDoor::Open; | |
0 | 3584 LABEL_10: |
472 | 3585 if ( !(door->uAttributes & 6) && door->uNumVertices != 0) |
0 | 3586 { |
472 | 3587 //v66 = 0; |
3588 //v65 = 0; | |
3589 //v64 = 0; | |
3590 //v7 = 8 * i | OBJECT_BLVDoor; | |
3591 //v63 = 0; | |
3592 //v62 = -1; | |
3593 //LOBYTE(v7) = 8 * i | OBJECT_BLVDoor; | |
3594 //v61 = 0; | |
3595 //v60 = 8 * i | OBJECT_BLVDoor; | |
3596 //v59 = (SoundID)((int)eDoorSoundID + 1); | |
3597 //LABEL_17: | |
3598 pAudioPlayer->PlaySound((SoundID)((int)eDoorSoundID + 1), 8 * i | OBJECT_BLVDoor, 0, -1, 0, 0, 0, 0); | |
3599 //goto LABEL_18; | |
0 | 3600 } |
3601 goto LABEL_18; | |
3602 } | |
3603 } | |
3604 else | |
3605 { | |
472 | 3606 auto v5 = (signed int)(door->uTimeSinceTriggered * door->uOpenSpeed) / 128; |
3607 //v6 = door->uMoveLength; | |
3608 if ( v5 >= door->uMoveLength) | |
0 | 3609 { |
472 | 3610 v89 = 0; |
3611 door->uState = BLVDoor::Closed; | |
0 | 3612 goto LABEL_10; |
3613 } | |
472 | 3614 v89 = door->uMoveLength - v5; |
0 | 3615 } |
472 | 3616 if ( !(door->uAttributes & 6) && door->uNumVertices) |
0 | 3617 { |
472 | 3618 //v66 = 0; |
3619 //v65 = 0; | |
3620 //v64 = 0; | |
3621 //v8 = 8 * i | OBJECT_BLVDoor; | |
3622 //v63 = 0; | |
3623 //v62 = -1; | |
3624 //LOBYTE(v8) = 8 * v1 | 1; | |
3625 //v61 = 1; | |
3626 //v60 = 8 * i | OBJECT_BLVDoor; | |
3627 //v59 = eDoorSoundID; | |
3628 pAudioPlayer->PlaySound(eDoorSoundID, 8 * i | OBJECT_BLVDoor, 1, -1, 0, 0, 0, 0); | |
3629 //goto LABEL_18; | |
0 | 3630 } |
3631 LABEL_18: | |
472 | 3632 //v11 = __OFSUB__(v2->uNumVertices, 0); |
3633 //v9 = v2->uNumVertices == 0; | |
3634 //v10 = (signed __int16)(v2->uNumVertices - 0) < 0; | |
3635 //v88 = 0; | |
3636 //if (door->uNumVertices > 0) | |
3637 for (uint j = 0; j < door->uNumVertices; ++j) | |
0 | 3638 { |
472 | 3639 //do |
3640 //{ | |
3641 //v12 = v88; | |
3642 //v13 = door->pVertexIDs[v88]; | |
3643 //v85 = v89; | |
3644 //v79 = door->vDirection.x; | |
3645 //v85 = (unsigned __int64)(v79 * (signed __int64)v89) >> 16; | |
3646 //v13 *= 6; | |
3647 pIndoor->pVertices[door->pVertexIDs[j]].x = ((unsigned int)(door->vDirection.x * v89) >> 16) + door->pXOffsets[j]; | |
3648 //v85 = v89; | |
3649 //v79 = door->vDirection.y; | |
3650 //v85 = (unsigned __int64)(v79 * (signed __int64)v89) >> 16; | |
3651 pIndoor->pVertices[door->pVertexIDs[j]].y = ((unsigned int)(door->vDirection.y * v89) >> 16) + door->pYOffsets[j]; | |
3652 //v85 = v89; | |
3653 //v79 = door->vDirection.z; | |
3654 //v85 = (unsigned __int64)(v79 * (signed __int64)v89) >> 16; | |
3655 //v14 = ((unsigned int)(door->vDirection.z * v89) >> 16) + door->pZOffsets[j]; | |
3656 pIndoor->pVertices[door->pVertexIDs[j]].z = ((unsigned int)(door->vDirection.z * v89) >> 16) + door->pZOffsets[j]; | |
3657 //++v88; | |
3658 //} | |
3659 //while ( v88 < door->uNumVertices ); | |
3660 //v1 = v81; | |
0 | 3661 } |
472 | 3662 //v11 = __OFSUB__(v2->uNumFaces, 0); |
3663 //v9 = v2->uNumFaces == 0; | |
3664 //v10 = (signed __int16)(v2->uNumFaces - 0) < 0; | |
3665 v88 = 0; | |
3666 if (door->uNumFaces > 0) | |
0 | 3667 { |
3668 while ( 1 ) | |
3669 { | |
472 | 3670 v15 = &pIndoor->pFaces[door->pFaceIDs[v88]]; |
3671 //v16 = v15->pVertexIDs; | |
3672 v17 = &pIndoor->pVertices[v15->pVertexIDs[0]]; | |
0 | 3673 v18 = v15->pFacePlane_old.vNormal.y; |
3674 v73 = *(int *)&v17->x; | |
472 | 3675 //v74 = v17->z; |
0 | 3676 v19 = v15->pFacePlane_old.vNormal.z; |
472 | 3677 v20 = -(v19 * (int)v17->z + (signed __int16)v73 * v15->pFacePlane_old.vNormal.x + SHIWORD(v73) * v18); |
0 | 3678 v15->pFacePlane_old.dist = v20; |
472 | 3679 //v21 = &pIndoor->pVertices[v15->pVertexIDs[0]]; |
3680 //v79 = v21->x; | |
3681 //v22 = (double)v21->x; | |
3682 //v23 = (double)v21->y; | |
3683 //v79 = v21->z; | |
3684 v15->pFacePlane.dist = -((double)v17->z * v15->pFacePlane.vNormal.z | |
3685 + (double)v17->y * v15->pFacePlane.vNormal.y | |
3686 + (double)v17->x * v15->pFacePlane.vNormal.x); | |
0 | 3687 if ( v19 ) |
3688 { | |
3689 v24 = abs(v20 >> 15); | |
3690 v25 = abs(v15->pFacePlane_old.vNormal.z); | |
472 | 3691 //v26 = v87; |
0 | 3692 if ( v24 > v25 ) |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
3693 Abortf("Door Error\ndoor id: %i\nfacet no: %i\n\nOverflow dividing facet->d [%i] by facet->nz [%i]", |
472 | 3694 door->uDoorID, |
3695 door->pFaceIDs[v88], | |
0 | 3696 v15->pFacePlane_old.dist, |
3697 v15->pFacePlane_old.vNormal.z); | |
472 | 3698 //v79 = v15->pFacePlane_old.vNormal.z; |
3699 //v85 = v15->pFacePlane_old.dist; | |
3700 LODWORD(v27) = v15->pFacePlane_old.dist << 16; | |
3701 HIDWORD(v27) = v15->pFacePlane_old.dist >> 16; | |
3702 //v85 = v27 / v15->pFacePlane_old.vNormal.z; | |
3703 v15->zCalc3 = -v27 / v15->pFacePlane_old.vNormal.z; | |
0 | 3704 } |
472 | 3705 /*else |
0 | 3706 { |
3707 v26 = v87; | |
472 | 3708 }*/ |
0 | 3709 if ( BYTE2(v15->uAttributes) & 4 || pRenderer->pRenderD3D ) |
472 | 3710 v15->_get_normals(&v70, &v67); |
0 | 3711 v28 = &pIndoor->pFaceExtras[v15->uFaceExtraID]; |
3712 if ( !pRenderer->pRenderD3D ) | |
3713 { | |
3714 if ( !(BYTE2(v15->uAttributes) & 4) ) | |
3715 goto LABEL_59; | |
472 | 3716 //v79 = door->vDirection.x; |
3717 v83 = (unsigned __int64)(door->vDirection.x * (signed __int64)v70.x) >> 16; | |
3718 //v85 = v71; | |
3719 //v79 = door->vDirection.y; | |
3720 v85 = (unsigned __int64)(door->vDirection.y * (signed __int64)v70.y) >> 16; | |
3721 //v84 = v72; | |
3722 //v79 = door->vDirection.z; | |
3723 v84 = (unsigned __int64)(door->vDirection.z * (signed __int64)v70.z) >> 16; | |
3724 //v79 = v83 + v85 + v84; | |
0 | 3725 v29 = v89; |
472 | 3726 //v83 = (unsigned __int64)(v79 * (signed __int64)v89) >> 16; |
3727 v28->sTextureDeltaU = -((v83 + v85 + v84) * (signed __int64)v89) >> 16; | |
3728 //v79 = door->vDirection.x; | |
3729 v85 = (unsigned __int64)(door->vDirection.x * (signed __int64)v67.x) >> 16; | |
3730 //v83 = v68; | |
3731 //v79 = door->vDirection.y; | |
3732 v83 = (unsigned __int64)(door->vDirection.y * (signed __int64)v67.y) >> 16; | |
3733 //v84 = v69; | |
3734 //v79 = door->vDirection.z; | |
3735 v84 = (unsigned __int64)(door->vDirection.z * (signed __int64)v67.z) >> 16; | |
3736 //v30 = v83 + v84; | |
3737 //v79 = v85 + v30; | |
3738 v31 = (v85 + v83 + v84) * (signed __int64)v29; | |
3739 //v83 = v31 >> 16; | |
0 | 3740 v32 = v31 >> 16; |
3741 goto LABEL_58; | |
3742 } | |
3743 v28->sTextureDeltaU = 0; | |
3744 v28->sTextureDeltaV = 0; | |
472 | 3745 //v33 = v15->pVertexIDs; |
3746 //v85 = 1; | |
3747 v34 = &pIndoor->pVertices[v15->pVertexIDs[0]]; | |
0 | 3748 v35 = v34->z; |
3749 v36 = v34->y; | |
3750 v82 = v34->x; | |
472 | 3751 //v79 = v36; |
3752 v37 = v70.x * v82 + v70.y * v36 + v70.z * v35; | |
3753 v38 = v67.x * v82 + v67.y * v36 + v67.z * v35; | |
0 | 3754 v39 = v37 >> 16; |
3755 *v15->pVertexUIDs = v39; | |
3756 v40 = v38 >> 16; | |
3757 *v15->pVertexVIDs = v40; | |
472 | 3758 //v41 = v15->uNumVertices < 1u; |
3759 //v9 = v15->uNumVertices == 1; | |
3760 //v83 = v40; | |
0 | 3761 v84 = v39; |
3762 v82 = v40; | |
472 | 3763 //if (v15->uNumVertices > 1) |
3764 for (uint j = 1; j < v15->uNumVertices; ++j) | |
0 | 3765 { |
472 | 3766 //do |
3767 //{ | |
3768 //v42 = v15->pVertexIDs; | |
3769 //v75 = 2 * v85; | |
3770 v43 = &pIndoor->pVertices[v15->pVertexIDs[j]]; | |
3771 //v79 = v43->z; | |
3772 //v44 = v43->y; | |
3773 //v45 = v43->x; | |
3774 //v78 = v43->y; | |
3775 v76 = ((__int64)v70.z * v43->z + (__int64)v70.x * v43->x + (__int64)v70.y * v43->y) >> 16; | |
3776 //v46 = (v67 * v45 + v68 * v44 + v79 * v69) >> 16; | |
3777 v77 = ((__int64)v67.x * v43->x + (__int64)v67.y * v43->y + (__int64)v43->z * v67.z) >> 16; | |
0 | 3778 if ( v76 < v39 ) |
3779 v39 = v76; | |
472 | 3780 if ( v77 < v40 ) |
3781 v40 = v77; | |
0 | 3782 if ( v76 > v84 ) |
3783 v84 = v76; | |
472 | 3784 if ( v77 > v82 ) |
3785 v82 = v77; | |
3786 //v40 = v83; | |
3787 //v47 = v15->pVertexUIDs; | |
3788 //v48 = v75; | |
3789 //++v85; | |
3790 v15->pVertexUIDs[j] = v76; | |
3791 v15->pVertexVIDs[j] = v77; | |
3792 //} | |
3793 //while ( v85 < v15->uNumVertices ); | |
3794 //v26 = v87; | |
0 | 3795 } |
3796 v49 = v15->uAttributes; | |
3797 if ( BYTE1(v49) & 0x10 ) | |
3798 goto LABEL_50; | |
3799 if ( SBYTE1(v49) < 0 ) | |
3800 { | |
3801 v50 = v15->uBitmapID; | |
3802 if ( v50 != -1 ) | |
3803 break; | |
3804 } | |
3805 LABEL_51: | |
3806 v51 = v15->uAttributes; | |
3807 if ( v51 & 8 ) | |
3808 { | |
3809 v28->sTextureDeltaV -= v40; | |
3810 } | |
3811 else | |
3812 { | |
3813 if ( v51 & 0x20000 ) | |
3814 { | |
3815 v52 = v15->uBitmapID; | |
3816 if ( v52 != -1 ) | |
564 | 3817 v28->sTextureDeltaV -= v82 + (v52 != -1 ? pBitmaps_LOD->pTextures[v52].uTextureHeight : 26); |
0 | 3818 } |
3819 } | |
3820 if ( BYTE2(v15->uAttributes) & 4 ) | |
3821 { | |
472 | 3822 //v75 = door->vDirection.x; |
3823 v84 = (unsigned __int64)(door->vDirection.x * (signed __int64)v70.x) >> 16; | |
3824 //v82 = v71; | |
3825 //v75 = door->vDirection.y; | |
3826 v82 = (unsigned __int64)(door->vDirection.y * (signed __int64)v70.y) >> 16; | |
3827 //v83 = v72; | |
3828 //v75 = door->vDirection.z; | |
3829 v83 = (unsigned __int64)(door->vDirection.z * (signed __int64)v70.z) >> 16; | |
3830 v75 = v84 + v82 + v83; | |
0 | 3831 v53 = v89; |
3832 v82 = (unsigned __int64)(v75 * (signed __int64)v89) >> 16; | |
472 | 3833 v28->sTextureDeltaU = -v82; |
3834 //v75 = door->vDirection.x; | |
3835 v84 = (unsigned __int64)(door->vDirection.x * (signed __int64)v67.x) >> 16; | |
3836 //v82 = v68; | |
3837 //v75 = door->vDirection.y; | |
3838 v82 = (unsigned __int64)(door->vDirection.y * (signed __int64)v67.y) >> 16; | |
3839 //v83 = v69; | |
3840 //v75 = door->vDirection.z; | |
3841 v83 = (unsigned __int64)(door->vDirection.z * (signed __int64)v67.z) >> 16; | |
3842 //v54 = v82 + v83; | |
3843 v75 = v84 + v82 + v83; | |
3844 v55 = v75 * (signed __int64)v53; | |
3845 //v82 = v55 >> 16; | |
0 | 3846 v32 = v55 >> 16; |
3847 LABEL_58: | |
3848 v56 = v88; | |
3849 v57 = -v32; | |
3850 v28->sTextureDeltaV = v57; | |
472 | 3851 v28->sTextureDeltaU += door->pDeltaUs[v56]; |
3852 v28->sTextureDeltaV = v57 + door->pDeltaVs[v56]; | |
0 | 3853 } |
3854 LABEL_59: | |
472 | 3855 //v58 = door->uNumFaces; |
0 | 3856 ++v88; |
472 | 3857 if ( v88 >= door->uNumFaces) |
0 | 3858 { |
472 | 3859 //v1 = v81; |
3860 //v0 = 0; | |
0 | 3861 goto LABEL_62; |
3862 } | |
472 | 3863 //v2 = v87; |
0 | 3864 } |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
3865 LOWORD(v39) = v84; |
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
3866 if (v15->uBitmapID != -1) |
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
520
diff
changeset
|
3867 LOWORD(v39) += pBitmaps_LOD->pTextures[v15->uBitmapID].uTextureWidth; |
0 | 3868 LABEL_50: |
3869 v28->sTextureDeltaU -= v39; | |
3870 goto LABEL_51; | |
3871 } | |
3872 LABEL_62: | |
472 | 3873 ; |
3874 //v80 += 80; | |
3875 //++v1; | |
3876 //v81 = v1; | |
3877 //} | |
3878 //while ( v1 < pIndoor->uNumDoors ); | |
0 | 3879 } |
3880 } | |
3881 // 6BE13C: using guessed type int dword_6BE13C_uCurrentlyLoadedLocationID; | |
3882 | |
3883 //----- (0046F90C) -------------------------------------------------------- | |
3884 void __cdecl UpdateActors_BLV() | |
3885 { | |
3886 Actor *v0; // esi@2 | |
3887 unsigned __int16 v1; // ax@2 | |
3888 int v2; // edi@6 | |
3889 int v3; // eax@6 | |
3890 int v4; // eax@8 | |
3891 __int16 v5; // ax@11 | |
3892 signed int v6; // ebx@14 | |
3893 unsigned __int8 v7; // zf@14 | |
3894 unsigned __int8 v8; // sf@14 | |
3895 signed __int16 v9; // ax@17 | |
3896 signed __int64 v10; // qax@18 | |
3897 unsigned __int16 v11; // ax@21 | |
3898 int v12; // eax@29 | |
3899 unsigned __int64 v13; // qax@29 | |
3900 int v14; // eax@30 | |
3901 unsigned __int64 v15; // qax@30 | |
3902 int v16; // ecx@33 | |
3903 BLVFace *v17; // edx@33 | |
3904 int v18; // ecx@33 | |
3905 BLVFace *v19; // eax@34 | |
3906 int v20; // ecx@46 | |
3907 int v21; // eax@46 | |
3908 int v22; // edi@46 | |
3909 int v23; // eax@48 | |
3910 unsigned int v24; // eax@51 | |
3911 int v25; // eax@52 | |
3912 int v26; // ebx@54 | |
3913 int v27; // ST08_4@54 | |
3914 int v28; // edi@54 | |
3915 int v29; // eax@54 | |
3916 int v30; // ecx@62 | |
3917 int v31; // ebx@62 | |
3918 int v32; // eax@62 | |
3919 int v33; // eax@64 | |
3920 unsigned int v34; // ecx@64 | |
3921 int v35; // ecx@64 | |
3922 signed int v36; // edx@85 | |
3923 signed int v37; // ebx@85 | |
3924 BLVFace *v38; // edi@89 | |
3925 int v39; // ecx@90 | |
3926 int v40; // ebx@90 | |
3927 PolygonType v41; // al@94 | |
3928 int v42; // eax@96 | |
3929 __int16 v43; // dx@96 | |
3930 int v44; // ecx@96 | |
3931 int v45; // edi@101 | |
3932 int v46; // edi@101 | |
3933 int v47; // eax@101 | |
3934 unsigned __int64 v48; // qax@101 | |
3935 unsigned __int8 v49; // zf@103 | |
3936 unsigned __int8 v50; // sf@103 | |
3937 unsigned __int8 v51; // of@103 | |
3938 AIDirection v52; // [sp+0h] [bp-60h]@75 | |
3939 AIDirection v53; // [sp+1Ch] [bp-44h]@116 | |
3940 int v54; // [sp+38h] [bp-28h]@53 | |
3941 unsigned int uSectorID; // [sp+3Ch] [bp-24h]@6 | |
3942 int v56; // [sp+40h] [bp-20h]@6 | |
3943 unsigned int _this; // [sp+44h] [bp-1Ch]@51 | |
3944 int v58; // [sp+48h] [bp-18h]@51 | |
3945 int v59; // [sp+4Ch] [bp-14h]@8 | |
3946 unsigned int uFaceID; // [sp+50h] [bp-10h]@6 | |
3947 int v61; // [sp+54h] [bp-Ch]@14 | |
3948 int v62; // [sp+58h] [bp-8h]@6 | |
3949 unsigned int v63; // [sp+5Ch] [bp-4h]@1 | |
3950 | |
3951 v63 = 0; | |
3952 if ( (signed int)uNumActors > 0 ) | |
3953 { | |
3954 while ( 1 ) | |
3955 { | |
3956 v0 = &pActors[v63]; | |
3957 v1 = v0->uAIState; | |
3958 if ( v1 == 11 || v1 == 19 || v1 == 17 || !v0->uMovementSpeed ) | |
3959 goto LABEL_123; | |
3960 uSectorID = v0->uSectorID; | |
3961 v2 = _46ED1B_collide_against_floor(v0->vPosition.x, v0->vPosition.y, v0->vPosition.z, &uSectorID, &uFaceID); | |
3962 v0->uSectorID = uSectorID; | |
3963 v3 = v0->pMonsterInfo.uFlying; | |
3964 v56 = v2; | |
3965 v62 = v3; | |
3966 if ( !v0->CanAct() ) | |
3967 v62 = 0; | |
3968 v4 = v0->vPosition.z; | |
3969 v59 = 0; | |
3970 if ( v4 > v2 + 1 ) | |
3971 v59 = 1; | |
3972 if ( v2 <= -30000 ) | |
3973 { | |
3974 v5 = pIndoor->GetSector(v0->vPosition.x, v0->vPosition.y, v4); | |
3975 v0->uSectorID = v5; | |
3976 if ( !v5 | |
3977 || (v56 = _46CEC3_get_floor_level(v0->vPosition.x, v0->vPosition.y, v0->vPosition.z, v5, &uFaceID), v56 == -30000) ) | |
3978 goto LABEL_123; | |
3979 } | |
305 | 3980 if ( v0->uCurrentActionAnimation == ANIM_Walking) |
0 | 3981 { |
3982 v6 = v0->uMovementSpeed; | |
3983 v7 = HIDWORD(v0->pActorBuffs[7].uExpireTime) == 0; | |
3984 v8 = SHIDWORD(v0->pActorBuffs[7].uExpireTime) < 0; | |
3985 v61 = v0->uMovementSpeed; | |
3986 if ( !v8 && (!(v8 | v7) || LODWORD(v0->pActorBuffs[7].uExpireTime)) ) | |
3987 { | |
3988 v9 = v0->pActorBuffs[7].uPower; | |
3989 if ( v9 ) | |
3990 LODWORD(v10) = v6 / (unsigned __int16)v9; | |
3991 else | |
3992 v10 = (signed __int64)((double)v61 * 0.5); | |
3993 v6 = v10; | |
3994 v61 = v10; | |
3995 } | |
3996 v11 = v0->uAIState; | |
3997 if ( v11 == 6 || v11 == 7 ) | |
3998 { | |
3999 v6 *= 2; | |
4000 v61 = v6; | |
4001 } | |
4002 if ( pParty->bTurnBasedModeOn == 1 && pTurnEngine->field_4 == 1 ) | |
4003 v6 = (signed __int64)((double)v61 * flt_6BE3AC_debug_recmod1_x_1_6); | |
4004 if ( v6 > 1000 ) | |
4005 v6 = 1000; | |
323 | 4006 v12 = stru_5C6E00->Cos(v0->uYawAngle); |
0 | 4007 uSectorID = v12; |
4008 v13 = v12 * (signed __int64)v6; | |
4009 v61 = v13 >> 16; | |
4010 v0->vVelocity.x = WORD1(v13); | |
323 | 4011 uSectorID = stru_5C6E00->Sin(v0->uYawAngle); |
0 | 4012 v61 = (unsigned __int64)(uSectorID * (signed __int64)v6) >> 16; |
4013 v7 = v62 == 0; | |
4014 v0->vVelocity.y = (unsigned int)(uSectorID * v6) >> 16; | |
4015 if ( !v7 ) | |
4016 { | |
323 | 4017 v14 = stru_5C6E00->Sin(v0->uPitchAngle); |
0 | 4018 uSectorID = v14; |
4019 v15 = v14 * (signed __int64)v6; | |
4020 v61 = v15 >> 16; | |
4021 v0->vVelocity.z = WORD1(v15); | |
4022 } | |
4023 } | |
4024 else | |
4025 { | |
4026 v61 = v0->vVelocity.x; | |
4027 uSectorID = 55000; | |
4028 v61 = (unsigned __int64)(55000i64 * v61) >> 16; | |
4029 v0->vVelocity.x = v61; | |
4030 v61 = v0->vVelocity.y; | |
4031 v61 = (unsigned __int64)(uSectorID * (signed __int64)v61) >> 16; | |
4032 v7 = v62 == 0; | |
4033 v0->vVelocity.y = v61; | |
4034 if ( !v7 ) | |
4035 { | |
4036 uSectorID = 55000; | |
4037 v61 = v0->vVelocity.z; | |
4038 v61 = (unsigned __int64)(55000i64 * v61) >> 16; | |
4039 v0->vVelocity.z = v61; | |
4040 } | |
4041 } | |
4042 v16 = v0->vPosition.z; | |
4043 v17 = pIndoor->pFaces; | |
4044 v51 = __OFSUB__(v16, v56); | |
4045 v8 = v16 - v56 < 0; | |
4046 v18 = uFaceID; | |
4047 if ( v8 ^ v51 ) | |
4048 { | |
4049 v0->vPosition.z = v56 + 1; | |
4050 v19 = &v17[v18]; | |
4051 if ( v19->uPolygonType == 3 ) | |
4052 { | |
4053 if ( v0->vVelocity.z < 0 ) | |
4054 v0->vVelocity.z = 0; | |
4055 } | |
4056 else | |
4057 { | |
4058 if ( v19->pFacePlane_old.vNormal.z < 45000 ) | |
4059 v0->vVelocity.z -= LOWORD(pEventTimer->uTimeElapsed) * GetGravityStrength(); | |
4060 } | |
4061 } | |
4062 else | |
4063 { | |
4064 if ( v59 && !v62 ) | |
4065 v0->vVelocity.z += -8 * LOWORD(pEventTimer->uTimeElapsed) * GetGravityStrength(); | |
4066 } | |
4067 if ( v0->vVelocity.x * v0->vVelocity.x + v0->vVelocity.y * v0->vVelocity.y + v0->vVelocity.z * v0->vVelocity.z >= 400 ) | |
4068 break; | |
4069 v0->vVelocity.z = 0; | |
4070 v0->vVelocity.y = 0; | |
4071 v0->vVelocity.x = 0; | |
4072 if ( BYTE2(v17[v18].uAttributes) & 0x40 ) | |
4073 { | |
4074 if (v0->uAIState == Dead) | |
4075 v0->uAIState = Removed; | |
4076 } | |
4077 LABEL_123: | |
4078 ++v63; | |
4079 if ( (signed int)v63 >= (signed int)uNumActors ) | |
4080 return; | |
4081 } | |
4082 v20 = v0->uActorRadius; | |
4083 v21 = v0->uActorHeight; | |
4084 stru_721530.field_84 = -1; | |
4085 stru_721530.field_70 = 0; | |
4086 uSectorID = 0; | |
4087 stru_721530.field_0 = 1; | |
4088 stru_721530.field_8 = v20; | |
4089 stru_721530.prolly_normal_d = v20; | |
4090 stru_721530.field_C = v21; | |
4091 v22 = 0; | |
4092 while ( 1 ) | |
4093 { | |
4094 stru_721530.field_34.x = v0->vPosition.x; | |
4095 stru_721530.normal.x = stru_721530.field_34.x; | |
4096 stru_721530.field_34.y = v0->vPosition.y; | |
4097 stru_721530.normal.y = stru_721530.field_34.y; | |
4098 v23 = v0->vPosition.z; | |
4099 stru_721530.normal.z = v23 + v20 + 1; | |
4100 stru_721530.field_34.z = v23 - v20 + stru_721530.field_C - 1; | |
4101 if ( stru_721530.field_34.z < stru_721530.normal.z ) | |
4102 stru_721530.field_34.z = v23 + v20 + 1; | |
4103 stru_721530.field_1C = v0->vVelocity.x; | |
4104 stru_721530.field_20 = v0->vVelocity.y; | |
4105 stru_721530.field_24 = v0->vVelocity.z; | |
4106 stru_721530.uSectorID = v0->uSectorID; | |
4107 if ( !stru_721530._47050A(v22) ) | |
4108 { | |
4109 v58 = v22; | |
4110 v24 = 8 * v63; | |
4111 LOBYTE(v24) = 8 * v63 | 3; | |
4112 v61 = v22; | |
4113 _this = v24; | |
4114 do | |
4115 { | |
4116 _46E44E_collide_against_faces_and_portals(1u); | |
4117 _46E0B2_collide_against_decorations(); | |
4118 _46EF01_collision_chech_player(0); | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
4119 _46ED8A_collide_against_sprite_objects(_this); |
0 | 4120 v25 = 0; |
4121 v56 = 0; | |
4122 if ( ai_arrays_size > v22 ) | |
4123 { | |
4124 do | |
4125 { | |
390 | 4126 v54 = ai_near_actors_ids[v25]; |
0 | 4127 if ( v54 != v63 ) |
4128 { | |
4129 v26 = v54; | |
4130 v27 = abs(pActors[v54].vPosition.z - v0->vPosition.z); | |
4131 v28 = abs(pActors[v26].vPosition.y - v0->vPosition.y); | |
4132 v29 = abs(pActors[v26].vPosition.x - v0->vPosition.x); | |
322 | 4133 if ( int_get_vector_length(v29, v28, v27) >= v0->uActorRadius + (signed int)pActors[v26].uActorRadius |
0 | 4134 && _46DF1A_collide_against_actor(v54, 40) ) |
4135 ++v58; | |
4136 v22 = 0; | |
4137 } | |
4138 v25 = v56++ + 1; | |
4139 } | |
4140 while ( v56 < ai_arrays_size ); | |
4141 } | |
4142 if ( _46F04E_collide_against_portals() ) | |
4143 break; | |
4144 ++v61; | |
4145 } | |
4146 while ( v61 < 100 ); | |
4147 v56 = v58 > 1; | |
4148 if ( stru_721530.field_7C >= stru_721530.field_6C ) | |
4149 { | |
4150 v30 = stru_721530.normal2.x; | |
4151 v31 = stru_721530.normal2.y; | |
4152 v32 = stru_721530.normal2.z - stru_721530.prolly_normal_d - 1; | |
4153 } | |
4154 else | |
4155 { | |
4156 v58 = (unsigned __int64)(stru_721530.field_7C * (signed __int64)stru_721530.field_58.x) >> 16; | |
4157 v30 = v58 + v0->vPosition.x; | |
4158 v58 = (unsigned __int64)(stru_721530.field_7C * (signed __int64)stru_721530.field_58.y) >> 16; | |
4159 v31 = v58 + v0->vPosition.y; | |
4160 v58 = (unsigned __int64)(stru_721530.field_7C * (signed __int64)stru_721530.field_58.z) >> 16; | |
4161 v32 = v58 + v0->vPosition.z; | |
4162 } | |
4163 v33 = _46ED1B_collide_against_floor(v30, v31, v32, &stru_721530.uSectorID, &uFaceID); | |
4164 v34 = pIndoor->pFaces[uFaceID].uAttributes; | |
4165 v35 = v34 & 0x400000; | |
4166 if (v35 && v0->uAIState == Dead) | |
4167 { | |
4168 v0->uAIState = Removed; | |
4169 goto LABEL_120; | |
4170 } | |
4171 if ( v59 != v22 || v62 != v22 || v35 == v22 ) | |
4172 { | |
4173 if ( v33 == -30000 ) | |
4174 goto LABEL_120; | |
4175 if ( v0->uCurrentActionAnimation != 1 || v33 >= v0->vPosition.z - 100 || v59 != v22 || v62 != v22 ) | |
4176 { | |
4177 if ( stru_721530.field_7C >= stru_721530.field_6C ) | |
4178 { | |
4179 v0->vPosition.x = LOWORD(stru_721530.normal2.x); | |
4180 v0->vPosition.y = LOWORD(stru_721530.normal2.y); | |
4181 v0->vPosition.z = LOWORD(stru_721530.normal2.z) - LOWORD(stru_721530.prolly_normal_d) - 1; | |
4182 v0->uSectorID = LOWORD(stru_721530.uSectorID); | |
4183 goto LABEL_123; | |
4184 } | |
4185 v58 = (unsigned __int64)(stru_721530.field_7C * (signed __int64)stru_721530.field_58.x) >> 16; | |
4186 v0->vPosition.x += (unsigned int)(stru_721530.field_7C * stru_721530.field_58.x) >> 16; | |
4187 v58 = (unsigned __int64)(stru_721530.field_7C * (signed __int64)stru_721530.field_58.y) >> 16; | |
4188 v0->vPosition.y += (unsigned int)(stru_721530.field_7C * stru_721530.field_58.y) >> 16; | |
4189 v58 = (unsigned __int64)(stru_721530.field_7C * (signed __int64)stru_721530.field_58.z) >> 16; | |
4190 v36 = stru_721530.uFaceID; | |
4191 v0->vPosition.z += (unsigned int)(stru_721530.field_7C * stru_721530.field_58.z) >> 16; | |
4192 v0->uSectorID = LOWORD(stru_721530.uSectorID); | |
4193 stru_721530.field_70 += stru_721530.field_7C; | |
4194 v37 = v36 >> 3; | |
141 | 4195 if ( (v36 & 7) != OBJECT_Actor) |
0 | 4196 { |
141 | 4197 if ( (v36 & 7) != OBJECT_Player) |
0 | 4198 { |
141 | 4199 if ( (v36 & 7) == OBJECT_Decoration) |
0 | 4200 { |
295 | 4201 _this = integer_sqrt(v0->vVelocity.x * v0->vVelocity.x + v0->vVelocity.y * v0->vVelocity.y); |
0 | 4202 v45 = stru_5C6E00->Atan2( |
4203 v0->vPosition.x - pLevelDecorations[v37].vPosition.x, | |
4204 v0->vPosition.y - pLevelDecorations[v37].vPosition.y); | |
323 | 4205 v54 = stru_5C6E00->Cos(v45); |
0 | 4206 v56 = (unsigned __int64)(v54 * (signed __int64)(signed int)_this) >> 16; |
4207 v46 = v45 - stru_5C6E00->uIntegerHalfPi; | |
4208 v0->vVelocity.x = v54 * _this >> 16; | |
323 | 4209 v47 = stru_5C6E00->Sin(v45); |
0 | 4210 v54 = v47; |
4211 v48 = v47 * (signed __int64)(signed int)_this; | |
4212 v56 = v48 >> 16; | |
4213 v0->vVelocity.y = WORD1(v48); | |
4214 goto LABEL_119; | |
4215 } | |
141 | 4216 if ( (v36 & 7) == OBJECT_BModel) |
0 | 4217 { |
4218 stru_721530.field_84 = v36 >> 3; | |
4219 v38 = &pIndoor->pFaces[v37]; | |
4220 if ( v38->uPolygonType == 3 ) | |
4221 { | |
4222 v39 = v0->vVelocity.x; | |
4223 v40 = v0->vVelocity.y * v0->vVelocity.y; | |
4224 v0->vVelocity.z = 0; | |
4225 v0->vPosition.z = pIndoor->pVertices[*v38->pVertexIDs].z + 1; | |
4226 if ( v39 * v39 + v40 < 400 ) | |
4227 { | |
4228 v0->vVelocity.y = 0; | |
4229 v0->vVelocity.x = 0; | |
4230 goto LABEL_119; | |
4231 } | |
4232 } | |
4233 else | |
4234 { | |
4235 v61 = abs(v38->pFacePlane_old.vNormal.x * v0->vVelocity.x + v38->pFacePlane_old.vNormal.y | |
4236 * v0->vVelocity.y | |
4237 + v38->pFacePlane_old.vNormal.z | |
4238 * v0->vVelocity.z) >> 16; | |
4239 if ( stru_721530.field_64 >> 3 > v61 ) | |
4240 v61 = stru_721530.field_64 >> 3; | |
4241 v58 = v38->pFacePlane_old.vNormal.x; | |
4242 v58 = (unsigned __int64)(v61 * (signed __int64)v58) >> 16; | |
4243 _this = v38->pFacePlane_old.vNormal.y; | |
4244 _this = (unsigned __int64)(v61 * (signed __int64)(signed int)_this) >> 16; | |
4245 v56 = v38->pFacePlane_old.vNormal.z; | |
4246 v56 = (unsigned __int64)(v61 * (signed __int64)v56) >> 16; | |
4247 v0->vVelocity.x += v58; | |
4248 v0->vVelocity.y += _this; | |
4249 v0->vVelocity.z += v56; | |
4250 v41 = v38->uPolygonType; | |
4251 if ( v41 != 4 && v41 != 3 ) | |
4252 { | |
4253 v42 = v38->pFacePlane_old.vNormal.x; | |
4254 v43 = v0->vPosition.z; | |
4255 v44 = stru_721530.prolly_normal_d | |
4256 - ((v38->pFacePlane_old.dist | |
4257 + v38->pFacePlane_old.vNormal.z * v0->vPosition.z | |
4258 + v38->pFacePlane_old.vNormal.y * v0->vPosition.y | |
4259 + v42 * v0->vPosition.x) >> 16); | |
4260 if ( v44 > 0 ) | |
4261 { | |
4262 v0->vPosition.x += (unsigned int)(v44 * v42) >> 16; | |
4263 v0->vPosition.y += (unsigned int)(v44 * v38->pFacePlane_old.vNormal.y) >> 16; | |
4264 v0->vPosition.z = v43 + ((unsigned int)(v44 * v38->pFacePlane_old.vNormal.z) >> 16); | |
4265 } | |
4266 v0->uYawAngle = stru_5C6E00->Atan2(v0->vVelocity.x, v0->vVelocity.y); | |
4267 } | |
4268 } | |
4269 if ( BYTE3(v38->uAttributes) & 8 ) | |
4270 EventProcessor(pIndoor->pFaceExtras[v38->uFaceExtraID].uEventID, 0, 1); | |
4271 } | |
4272 LABEL_119: | |
4273 v56 = v0->vVelocity.x; | |
4274 v54 = 58500; | |
4275 v56 = (unsigned __int64)(58500i64 * v56) >> 16; | |
4276 v0->vVelocity.x = v56; | |
4277 v56 = v0->vVelocity.y; | |
4278 v56 = (unsigned __int64)(v54 * (signed __int64)v56) >> 16; | |
4279 v54 = 58500; | |
4280 v0->vVelocity.y = v56; | |
4281 v56 = v0->vVelocity.z; | |
4282 v56 = (unsigned __int64)(v54 * (signed __int64)v56) >> 16; | |
4283 v22 = 0; | |
4284 v0->vVelocity.z = v56; | |
4285 goto LABEL_120; | |
4286 } | |
4287 if ( v0->GetActorsRelation(0) ) | |
4288 { | |
4289 v51 = __OFSUB__(HIDWORD(pParty->pPartyBuffs[11].uExpireTime), v22); | |
4290 v49 = HIDWORD(pParty->pPartyBuffs[11].uExpireTime) == v22; | |
4291 v50 = HIDWORD(pParty->pPartyBuffs[11].uExpireTime) - v22 < 0; | |
4292 v0->vVelocity.y = v22; | |
4293 v0->vVelocity.x = v22; | |
4294 if ( !(v50 ^ v51) | |
4295 && (!((unsigned __int8)(v50 ^ v51) | v49) || LODWORD(pParty->pPartyBuffs[11].uExpireTime) > v22) ) | |
4296 pParty->pPartyBuffs[11].Reset(); | |
4297 viewparams->bRedrawGameUI = 1; | |
4298 goto LABEL_119; | |
4299 } | |
4300 v36 = stru_721530.uFaceID; | |
4301 LABEL_118: | |
4302 Actor::FaceObject(v63, v36, v22, (AIDirection *)v22); | |
4303 goto LABEL_119; | |
4304 } | |
4305 if ( pParty->bTurnBasedModeOn == 1 && (pTurnEngine->field_4 == 2 || pTurnEngine->field_4 == 3) ) | |
4306 goto LABEL_119; | |
4307 if ( v0->pMonsterInfo.uHostilityType ) | |
4308 { | |
4309 if ( v56 == v22 ) | |
4310 goto LABEL_114; | |
4311 } | |
4312 else | |
4313 { | |
4314 if ( v56 == v22 ) | |
4315 { | |
4316 if ( !pActors[v37].pMonsterInfo.uHostilityType ) | |
4317 goto LABEL_118; | |
4318 LABEL_114: | |
4319 Actor::_402968(v63, v36, v22, (AIDirection *)v22); | |
4320 goto LABEL_119; | |
4321 } | |
4322 } | |
414 | 4323 Actor::AI_StandOrBored(v63, 4, v22, &v53); |
0 | 4324 goto LABEL_119; |
4325 } | |
4326 if ( v0->vPosition.x & 1 ) | |
4327 v0->uYawAngle += 100; | |
4328 else | |
4329 v0->uYawAngle -= 100; | |
4330 } | |
4331 else | |
4332 { | |
4333 if ( pParty->bTurnBasedModeOn == 1 && (pTurnEngine->field_4 == 2 || pTurnEngine->field_4 == 3) ) | |
4334 goto LABEL_123; | |
4335 if ( !v0->pMonsterInfo.uHostilityType || v56 != v22 ) | |
4336 { | |
414 | 4337 Actor::AI_StandOrBored(v63, 4, v22, &v52); |
0 | 4338 goto LABEL_123; |
4339 } | |
4340 } | |
4341 } | |
4342 LABEL_120: | |
4343 ++uSectorID; | |
4344 if ( uSectorID >= 100 ) | |
4345 goto LABEL_123; | |
4346 v20 = stru_721530.prolly_normal_d; | |
4347 } | |
4348 } | |
4349 } | |
4350 // 46DF1A: using guessed type int __fastcall 46DF1A_collide_against_actor(int, int); | |
4351 // 4F75D8: using guessed type int ai_arrays_size; | |
4352 | |
4353 | |
4354 | |
4355 | |
4356 | |
4357 | |
4358 //----- (00460A78) -------------------------------------------------------- | |
4359 void __thiscall PrepareToLoadBLV(unsigned int bLoading) | |
4360 { | |
4361 unsigned int v1; // ebx@1 | |
4362 unsigned int v2; // eax@8 | |
4363 MapInfo *v3; // edi@9 | |
4364 int v4; // eax@11 | |
4365 int v5; // eax@12 | |
4366 int v6; // eax@13 | |
4367 int v7; // esi@27 | |
4368 SpawnPointMM7 *v8; // edx@28 | |
4369 //char v9; // bl@33 | |
4370 //int v10; // eax@34 | |
4371 //char *v11; // ecx@37 | |
4372 //int v12; // edi@44 | |
4373 //unsigned int v13; // edi@48 | |
4374 char *v14; // esi@49 | |
4375 __int16 v15; // ax@50 | |
4376 int v16; // ecx@52 | |
4377 DecorationDesc *v17; // eax@54 | |
4378 int v18; // ecx@55 | |
4379 //int *v19; // edi@58 | |
4380 //unsigned char v20; // dl@58 | |
4381 int v21; // eax@64 | |
4382 char v22; // cl@64 | |
4383 //signed int v23; // ebx@67 | |
4384 //char *v24; // esi@68 | |
4385 //int v25; // eax@70 | |
4386 //char *v26; // esi@78 | |
4387 //int v27; // eax@79 | |
4388 char v28; // zf@81 | |
4389 __int16 v29; // ax@85 | |
4390 signed int v30; // edi@94 | |
4391 int v31; // esi@94 | |
4392 char Args; // [sp+350h] [bp-C4h]@16 | |
4393 int v34[4]; // [sp+3E8h] [bp-2Ch]@96 | |
4394 int v35; // [sp+3F8h] [bp-1Ch]@1 | |
4395 //char b[4]; // [sp+3FCh] [bp-18h]@58 | |
4396 MapInfo *v37; // [sp+400h] [bp-14h]@1 | |
4397 int v38; // [sp+404h] [bp-10h]@1 | |
4398 unsigned int v39; // [sp+408h] [bp-Ch]@8 | |
4399 int pDest; // [sp+40Ch] [bp-8h]@1 | |
4400 //int i; // [sp+410h] [bp-4h]@27 | |
4401 | |
4402 v37 = (MapInfo *)bLoading; | |
4403 v1 = 0; | |
4404 v35 = 0; | |
4405 pGameLoadingUI_ProgressBar->Reset(0x20u); | |
4406 bUnderwater = 0; | |
4407 bNoNPCHiring = 0; | |
4408 v38 = 0; | |
4409 pDest = 1; | |
4410 uCurrentlyLoadedLevelType = LEVEL_Indoor; | |
4411 pGame->uFlags2 &= 0xFFFFFFF7u; | |
4412 if ( Is_out15odm_underwater() ) | |
4413 { | |
4414 bUnderwater = 1; | |
4415 pGame->uFlags2 |= 8u; | |
4416 } | |
4417 if ( !_strcmpi(pCurrentMapName, "out15.odm") || !_strcmpi(pCurrentMapName, "d23.blv") ) | |
4418 bNoNPCHiring = 1; | |
4419 pPaletteManager->pPalette_tintColor[0] = 0; | |
4420 pPaletteManager->pPalette_tintColor[1] = 0; | |
4421 pPaletteManager->pPalette_tintColor[2] = 0; | |
4422 pPaletteManager->RecalculateAll(); | |
4423 if ( qword_A750D8 ) | |
4424 qword_A750D8 = 0i64; | |
4425 v2 = pMapStats->GetMapInfo(pCurrentMapName); | |
4426 v39 = v2; | |
4427 if ( v2 ) | |
4428 { | |
4429 v3 = &pMapStats->pInfos[v2]; | |
4430 v1 = v3->uRespawnIntervalDays; | |
4431 v38 = GetAlertStatus(); | |
4432 } | |
4433 else | |
4434 { | |
4435 v3 = v37; | |
4436 } | |
4437 dword_6BE13C_uCurrentlyLoadedLocationID = v39; | |
4438 pAllocator->FreeChunk(ptr_6A0D08); | |
4439 ptr_6A0D08 = 0; | |
4440 _6A0D0C_txt_lod_loading = 0; | |
4441 TryLoadLevelFromLOD(); | |
4442 pStationaryLightsStack->uNumLightsActive = 0; | |
4443 v4 = pIndoor->Load( | |
4444 pCurrentMapName, | |
4445 (unsigned int)(signed __int64)((double)pParty->uTimePlayed * 0.234375) / 60 / 60 / 24 + 1, | |
4446 v1, | |
4447 (char *)&pDest) | |
4448 - 1; | |
4449 if ( !v4 ) | |
4450 { | |
4451 sprintf(&Args, "Unable to open %s", pCurrentMapName); | |
4452 Abortf(&Args); | |
4453 } | |
4454 v5 = v4 - 1; | |
4455 if ( !v5 ) | |
4456 { | |
4457 sprintf(&Args, "File %s is not a BLV File", pCurrentMapName); | |
4458 Abortf(&Args); | |
4459 } | |
4460 v6 = v5 - 1; | |
4461 if ( !v6 ) | |
4462 Abortf("Attempt to open new level before clearing old"); | |
4463 if ( v6 == 1 ) | |
4464 Abortf("Out of memory loading indoor level"); | |
4465 if ( !(dword_6BE364_game_settings_1 & 0x2000) ) | |
4466 { | |
4467 InitializeActors(); | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
4468 InitializeSpriteObjects(); |
0 | 4469 } |
4470 BYTE1(dword_6BE364_game_settings_1) &= 0xDFu; | |
4471 if ( !v39 ) | |
4472 pDest = 0; | |
4473 if ( pDest == 1 ) | |
4474 { | |
4475 v7 = 0; | |
4476 for (uint i = 0; i < pIndoor->uNumSpawnPoints; ++v7 ) | |
4477 { | |
4478 v8 = &pIndoor->pSpawnPoints[v7]; | |
4479 if ( pIndoor->pSpawnPoints[v7].uKind == 3 ) | |
4480 SpawnEncounter(v3, v8, 0, 0, 0); | |
4481 else | |
4482 v3->SpawnRandomTreasure(v8); | |
4483 ++i; | |
4484 } | |
4485 RespawnGlobalDecorations(); | |
4486 } | |
4487 | |
4488 pSoundList->LoadSound(pDoorSoundIDsByLocationID[v39], 0); | |
4489 pSoundList->LoadSound(pDoorSoundIDsByLocationID[v39] + 1, 0); | |
4490 | |
4491 for (uint i = 0; i < pIndoor->uNumDoors; ++i) | |
4492 { | |
4493 auto pDoor = pIndoor->pDoors + i; | |
4494 | |
4495 if (pDoor->uAttributes & 0x01) | |
4496 { | |
4497 pDoor->uState = BLVDoor::Opening; | |
4498 pDoor->uTimeSinceTriggered = 15360; | |
4499 pDoor->uAttributes = 2; | |
4500 } | |
4501 | |
4502 if (pDoor->uState == BLVDoor::Closed) | |
4503 { | |
4504 pDoor->uState = BLVDoor::Closing; | |
4505 pDoor->uTimeSinceTriggered = 15360; | |
4506 pDoor->uAttributes = 2; | |
4507 } | |
4508 else if (pDoor->uState == BLVDoor::Open) | |
4509 { | |
4510 pDoor->uState = BLVDoor::Opening; | |
4511 pDoor->uTimeSinceTriggered = 15360; | |
4512 pDoor->uAttributes = 2; | |
4513 } | |
4514 } | |
4515 | |
4516 /* | |
4517 i = 0; | |
4518 v9 = 2; | |
4519 if ( pIndoor->uNumDoors > 0 ) | |
4520 { | |
4521 v10 = 0; | |
4522 while ( 1 ) | |
4523 { | |
4524 if ( pIndoor->pDoors[v10].uAttributes & 1 ) | |
4525 { | |
4526 pIndoor->pDoors[v10].uState = 1; | |
4527 pIndoor->pDoors[v10].uTimeSinceTriggered = 15360; | |
4528 pIndoor->pDoors[v10].uAttributes = 2; | |
4529 } | |
4530 v11 = (char *)&pIndoor->pDoors[v10].uState; | |
4531 if ( !*(short *)v11 ) | |
4532 break; | |
4533 if ( *(short *)v11 == 2 ) | |
4534 { | |
4535 *(short *)v11 = 1; | |
4536 goto LABEL_41; | |
4537 } | |
4538 LABEL_42: | |
4539 ++i; | |
4540 ++v10; | |
4541 if ( i >= pIndoor->uNumDoors ) | |
4542 goto LABEL_43; | |
4543 } | |
4544 *(short *)v11 = 3; | |
4545 LABEL_41: | |
4546 pIndoor->pDoors[v10].uTimeSinceTriggered = 15360; | |
4547 pIndoor->pDoors[v10].uAttributes = 2; | |
4548 goto LABEL_42; | |
4549 } | |
4550 LABEL_43: | |
4551 */ | |
4552 | |
4553 for (uint i = 0; i < pIndoor->uNumFaces; ++i) | |
4554 { | |
4555 auto pFace = pIndoor->pFaces + i; | |
4556 if (!pFace->uBitmapID != -1) | |
4557 pBitmaps_LOD->pTextures[pFace->uBitmapID].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[pFace->uBitmapID].palette_id1); | |
4558 } | |
4559 | |
4560 /*i = 0; | |
4561 if ( (signed int)pIndoor->uNumFaces > 0 ) | |
4562 { | |
4563 v12 = 0; | |
4564 do | |
4565 { | |
4566 if ( pIndoor->pFaces[v12].uBitmapID != -1 ) | |
4567 pBitmaps_LOD->pTextures[pIndoor->pFaces[v12].uBitmapID].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[pIndoor->pFaces[v12].uBitmapID].palette_id1); | |
4568 ++i; | |
4569 ++v12; | |
4570 } | |
4571 while ( i < (signed int)pIndoor->uNumFaces ); | |
4572 }*/ | |
4573 | |
4574 | |
4575 pGameLoadingUI_ProgressBar->Progress(); | |
4576 | |
4577 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
4578 { | |
4579 auto pDecortaion = pLevelDecorations + i; | |
4580 | |
4581 pDecorationList->InitializeDecorationSprite(pDecortaion->uDecorationDescID); | |
4582 | |
4583 v15 = pDecorationList->pDecorations[pDecortaion->uDecorationDescID].uSoundID; | |
4584 if (v15 && _6807E0_num_decorations_with_sounds_6807B8 < 9) | |
4585 { | |
4586 pSoundList->LoadSound(v15, 0); | |
4587 v16 = _6807E0_num_decorations_with_sounds_6807B8++; | |
4588 _6807B8_level_decorations_ids[v16] = i; | |
4589 } | |
4590 | |
4591 if ( !(pDecortaion->field_2 & 0x20) ) | |
4592 { | |
4593 v17 = &pDecorationList->pDecorations[pDecortaion->uDecorationDescID]; | |
380 | 4594 if (!v17->DontDraw()) |
0 | 4595 { |
4596 v18 = v17->uLightRadius; | |
4597 if ( v18 ) | |
4598 { | |
4599 unsigned char r = 255, | |
4600 g = 255, | |
4601 b = 255; | |
4602 if (pRenderer->pRenderD3D && pRenderer->bUseColoredLights) | |
4603 { | |
4604 r = v17->uColoredLightRed; | |
4605 g = v17->uColoredLightGreen; | |
4606 b = v17->uColoredLightBlue; | |
4607 } | |
4608 pStationaryLightsStack->AddLight(pDecortaion->vPosition.x, | |
4609 pDecortaion->vPosition.y, | |
4610 pDecortaion->vPosition.z + v17->uDecorationHeight, | |
4611 v18, | |
4612 r, | |
4613 g, | |
4614 b, | |
4615 byte_4E94D0); | |
4616 } | |
4617 } | |
4618 } | |
4619 | |
4620 if (!pDecortaion->field_16_event_id) | |
4621 { | |
4622 if (pDecortaion->IsInteractive()) | |
4623 { | |
4624 if ( v35 < 124 ) | |
4625 { | |
4626 v21 = v35 + 1; | |
4627 pDecortaion->_idx_in_stru123 = v35 + 75; | |
4628 v22 = stru_5E4C90._decor_events[v21 + 74 - 75]; | |
4629 v35 = v21; | |
4630 if ( !v22 ) | |
4631 pDecortaion->field_2 |= 0x20; | |
4632 } | |
4633 } | |
4634 } | |
4635 } | |
4636 | |
4637 pGameLoadingUI_ProgressBar->Progress(); | |
4638 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
4639 for (uint i = 0; i < uNumSpriteObjects; ++i) |
0 | 4640 { |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
486
diff
changeset
|
4641 auto p = pSpriteObjects + i; |
0 | 4642 if (p->uObjectDescID) |
4643 { | |
4644 auto uItemID = p->stru_24.uItemID; | |
4645 if (uItemID) | |
4646 { | |
4647 if (uItemID != 220 && pItemsTable->pItems[uItemID].uEquipType == EQUIP_POTION && | |
570 | 4648 !p->stru_24.uEnchantmentType) |
4649 p->stru_24.uEnchantmentType = rand() % 15 + 5; | |
0 | 4650 pItemsTable->SetSpecialBonus(&p->stru_24); |
4651 } | |
4652 } | |
4653 } | |
4654 | |
4655 for (uint i = 0; i < uNumActors; ++i) | |
4656 //if ( (signed int)uNumActors > (signed int)v13 ) | |
4657 { | |
4658 Actor *pActor = pActors + i; | |
4659 //v26 = (char *)&pActors[0].uAttributes; | |
4660 //do | |
4661 //{ | |
4662 //v27 = *(int *)v26; | |
4663 if (pActor->uAttributes & 0x100000) | |
4664 { | |
4665 if ( !v39 ) | |
4666 { | |
4667 pActor->pMonsterInfo.field_3E = 19; | |
4668 pActor->uAttributes |= 0x10000; | |
4669 continue; | |
4670 } | |
4671 v28 = v38 == 0; | |
4672 } | |
4673 else | |
4674 { | |
4675 v28 = v38 == 1; | |
4676 } | |
4677 | |
4678 if ( !v28 ) | |
4679 { | |
4680 pActor->PrepareSprites(0); | |
4681 v29 = pActor->pMonsterInfo.field_3E; | |
4682 pActor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
4683 if ( v29 != 11 && v29 != 19 && (!pActor->sCurrentHP || !pActor->pMonsterInfo.uHP) ) | |
4684 { | |
4685 pActor->pMonsterInfo.field_3E = 5; | |
4686 pActor->UpdateAnimation(); | |
4687 } | |
4688 } | |
4689 else | |
4690 { | |
4691 pActor->pMonsterInfo.field_3E = 19; | |
4692 pActor->uAttributes |= 0x10000; | |
4693 } | |
4694 //} | |
4695 //while ( i < (signed int)uNumActors ); | |
4696 } | |
4697 | |
4698 pGameLoadingUI_ProgressBar->Progress(); | |
4699 | |
4700 Actor this_; | |
4701 this_.pMonsterInfo.uID = 45; | |
4702 this_.PrepareSprites(0); | |
4703 if ( !v37 ) | |
4704 { | |
4705 pParty->sRotationX = 0; | |
4706 pParty->sRotationY = 0; | |
4707 pParty->vPosition.z = 0; | |
4708 pParty->vPosition.y = 0; | |
4709 pParty->vPosition.x = 0; | |
4710 pParty->uFallStartY = 0; | |
4711 pParty->uFallSpeed = 0; | |
4712 TeleportToStartingPoint(uLevel_StartingPointType); | |
4713 } | |
4714 viewparams->_443365(); | |
4715 PlayLevelMusic(); | |
4716 if ( !v37 ) | |
4717 { | |
4718 v30 = 0; | |
4719 v31 = 1; | |
4720 do | |
4721 { | |
4722 if ( pPlayers[v31]->CanAct() ) | |
4723 v34[v30++] = v31; | |
4724 ++v31; | |
4725 } | |
4726 while ( v31 <= 4 ); | |
4727 if ( v30 ) | |
4728 { | |
4729 if ( pDest ) | |
4730 { | |
4731 qword_A750D8 = 256i64; | |
4732 word_A750E0 = 46; | |
4733 word_A750E2 = LOWORD(v34[rand() % v30]); | |
4734 } | |
4735 } | |
4736 } | |
4737 } |