Mercurial > mm7
annotate Engine/Graphics/Indoor.cpp @ 2575:a76d408c5132 tip
DrawTranslucent -> DrawTextureGrayShade
Removed old texture drawing stuff
author | a.parshin |
---|---|
date | Wed, 09 Mar 2016 01:39:52 +0200 |
parents | dd36326a9994 |
children |
rev | line source |
---|---|
2496 | 1 #define _CRTDBG_MAP_ALLOC |
2 #include <stdlib.h> | |
3 #include <crtdbg.h> | |
4 | |
5 #define _CRT_SECURE_NO_WARNINGS | |
2541 | 6 |
7 #include "Engine/Engine.h" | |
8 | |
2499 | 9 #include "../ZlibWrapper.h" |
2496 | 10 |
11 #include "LightmapBuilder.h" | |
12 #include "DecalBuilder.h" | |
13 #include "stru9.h" | |
14 #include "stru10.h" | |
2499 | 15 #include "../stru367.h" |
2496 | 16 |
17 #include "Outdoor.h" | |
2541 | 18 #include "Engine/Objects/SpriteObject.h" |
19 #include "Engine/Events.h" | |
2496 | 20 #include "Viewport.h" |
2499 | 21 #include "../Timer.h" |
22 #include "../Party.h" | |
23 #include "../OurMath.h" | |
24 #include "../LOD.h" | |
2496 | 25 #include "DecorationList.h" |
2499 | 26 #include "../Objects/ObjectList.h" |
27 #include "../Objects/Actor.h" | |
28 #include "../Objects/Chest.h" | |
2502 | 29 #include "GUI/GUIProgressBar.h" |
2499 | 30 #include "../stru123.h" |
2502 | 31 #include "Media/Audio/AudioPlayer.h" |
2499 | 32 #include "../TurnEngine/TurnEngine.h" |
2496 | 33 #include "PaletteManager.h" |
34 #include "Lights.h" | |
35 | |
36 #include "Sprites.h" | |
2567 | 37 #include "Engine/stru6.h" |
2496 | 38 #include "ParticleEngine.h" |
2499 | 39 #include "../texts.h" |
2502 | 40 #include "GUI/GUIWindow.h" |
2499 | 41 #include "Level/Decoration.h" |
2496 | 42 #include "Overlays.h" |
43 | |
44 | |
45 | |
46 IndoorLocation *pIndoor = new IndoorLocation; | |
47 BLVRenderParams *pBLVRenderParams = new BLVRenderParams; | |
48 | |
49 | |
50 LEVEL_TYPE uCurrentlyLoadedLevelType = LEVEL_null; | |
51 | |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
52 LightsData Lights; // stru_F8AD28 |
2496 | 53 stru337 stru_F81018; |
54 BspRenderer_PortalViewportData stru_F8A590; | |
55 BspRenderer *pBspRenderer = new BspRenderer; // idb | |
56 stru141_actor_collision_object stru_721530; | |
57 std::array<stru352, 480> stru_F83B80; | |
58 | |
59 | |
60 | |
61 unsigned __int16 pDoorSoundIDsByLocationID[78] = | |
62 { | |
63 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, | |
64 300, 300, 300, 404, 302, 306, 308, 304, 308, 302, 400, 302, 300, | |
65 308, 308, 306, 308, 308, 304, 300, 404, 406, 300, 400, 406, 404, | |
66 306, 302, 408, 304, 300, 300, 300, 300, 300, 300, 300, 300, 300, | |
67 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 404, 304, | |
68 400, 300, 300, 404, 304, 400, 300, 300, 404, 304, 400, 300, 300 | |
69 }; | |
70 | |
71 | |
72 std::array<const char *, 11> _4E6BDC_loc_names= | |
73 { | |
74 "mdt12.blv", | |
75 "d18.blv", | |
76 "mdt14.blv", | |
77 "d37.blv", | |
78 "mdk01.blv", | |
79 "mdt01.blv", | |
80 "mdr01.blv", | |
81 "mdt10.blv", | |
82 "mdt09.blv", | |
83 "mdt15.blv", | |
84 "mdt11.blv" | |
85 }; | |
86 | |
87 | |
88 //----- (0043F39E) -------------------------------------------------------- | |
89 void __fastcall PrepareDrawLists_BLV() | |
90 { | |
91 int v5; // eax@4 | |
92 unsigned int v7; // ebx@8 | |
93 BLVSector *v8; // esi@8 | |
94 | |
95 pBLVRenderParams->Reset(); | |
96 pMobileLightsStack->uNumLightsActive = 0; | |
97 //uNumMobileLightsApplied = 0; | |
98 uNumDecorationsDrawnThisFrame = 0; | |
99 uNumSpritesDrawnThisFrame = 0; | |
100 uNumBillboardsToDraw = 0; | |
101 | |
2541 | 102 if ( !byte_4D864C || !(pEngine->uFlags & 0x1000) ) // lightspot around party |
2496 | 103 { |
104 //v2 = pParty->flt_TorchlightColorB + 6.7553994e15; | |
105 //v11 = LOBYTE(v2); | |
106 v5 = 800; | |
107 if (pParty->TorchlightActive()) | |
108 v5 *= pParty->pPartyBuffs[PARTY_BUFF_TORCHLIGHT].uPower; | |
109 //LOBYTE(v1) = _4E94D0_light_type; | |
110 //v4 = pParty->flt_TorchlightColorR + 6.7553994e15; | |
111 //v3 = pParty->flt_TorchlightColorG + 6.7553994e15; | |
2543 | 112 pMobileLightsStack->AddLight(pIndoorCameraD3D->vPartyPos.x, |
113 pIndoorCameraD3D->vPartyPos.y, | |
114 pIndoorCameraD3D->vPartyPos.z, | |
2496 | 115 pBLVRenderParams->uPartySectorID, |
116 v5, | |
117 floorf(pParty->flt_TorchlightColorR + 0.5f), | |
118 floorf(pParty->flt_TorchlightColorG + 0.5f), | |
119 floorf(pParty->flt_TorchlightColorB + 0.5f), | |
120 _4E94D0_light_type); | |
121 } | |
122 PrepareBspRenderList_BLV(); | |
123 PrepareItemsRenderList_BLV(); | |
124 PrepareActorRenderList_BLV(); | |
125 | |
126 for (uint i = 0; i < pBspRenderer->uNumVisibleNotEmptySectors; ++i) | |
127 { | |
128 v7 = pBspRenderer->pVisibleSectorIDs_toDrawDecorsActorsEtcFrom[i]; | |
129 v8 = &pIndoor->pSectors[pBspRenderer->pVisibleSectorIDs_toDrawDecorsActorsEtcFrom[i]]; | |
130 | |
131 for (uint j = 0; j < v8->uNumDecorations; ++j) | |
132 PrepareDecorationsRenderList_BLV(v8->pDecorationIDs[j], v7); | |
133 } | |
134 FindBillboardsLightLevels_BLV(); | |
2541 | 135 pEngine->PrepareBloodsplats(); |
2496 | 136 } |
137 | |
138 //----- (004407D9) -------------------------------------------------------- | |
139 void BLVRenderParams::Reset() | |
140 { | |
141 int v7; // eax@1 | |
142 | |
143 this->field_0_timer_ = pEventTimer->uTotalGameTimeElapsed; | |
144 | |
2543 | 145 pIndoorCameraD3D->debug_flags = 0; |
2496 | 146 if (viewparams->draw_sw_outlines) |
2543 | 147 pIndoorCameraD3D->debug_flags |= BLV_RENDER_DRAW_SW_OUTLINES; |
2496 | 148 if (viewparams->draw_d3d_outlines) |
2543 | 149 pIndoorCameraD3D->debug_flags |= BLV_RENDER_DRAW_D3D_OUTLINES; |
2496 | 150 |
151 //v2 = a2; | |
152 //this->field_0_timer_ = a2->field_0_timer; | |
153 //this->uFlags = a2->uFlags; | |
154 //this->vPartyPos.x = a2->vPosition.x; | |
155 //this->vPartyPos.y = a2->vPosition.y; | |
156 //this->vPartyPos.z = a2->vPosition.z; | |
157 //v4 = this->vPartyPos.z; | |
158 //v5 = this->vPartyPos.y; | |
159 //this->sPartyRotY = a2->sRotationY; | |
160 //v6 = this->vPartyPos.x; | |
161 //this->sPartyRotX = a2->sRotationX; | |
2543 | 162 v7 = pIndoor->GetSector(pIndoorCameraD3D->vPartyPos.x, |
163 pIndoorCameraD3D->vPartyPos.y, | |
164 pIndoorCameraD3D->vPartyPos.z); | |
2496 | 165 this->uPartySectorID = v7; |
166 if ( !v7 ) | |
167 { | |
168 //__debugbreak(); // shouldnt happen, please provide savegame | |
169 /*v8 = this->vPartyPos.z; | |
170 this->vPartyPos.x = pParty->vPosition.x; | |
171 v9 = pParty->vPosition.y; | |
172 v10 = this->vPartyPos.x; | |
173 this->vPartyPos.y = pParty->vPosition.y;*/ | |
174 this->uPartySectorID = pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); | |
175 } | |
176 //if ( pRenderer->pRenderD3D ) | |
177 { | |
2543 | 178 //this->sCosineY = stru_5C6E00->Cos(pIndoorCameraD3D->sRotationY); |
179 //this->sSineY = stru_5C6E00->Sin(pIndoorCameraD3D->sRotationY); | |
180 //this->sCosineNegX = stru_5C6E00->Cos(-pIndoorCameraD3D->sRotationX); | |
181 //this->sSineNegX = stru_5C6E00->Sin(-pIndoorCameraD3D->sRotationX); | |
182 //this->fCosineY = cos((3.141592653589793 + 3.141592653589793) * (double)pIndoorCameraD3D->sRotationY * 0.00048828125); | |
183 //this->fSineY = sin((3.141592653589793 + 3.141592653589793) * (double)pIndoorCameraD3D->sRotationY * 0.00048828125); | |
184 //this->fCosineNegX = cos((3.141592653589793 + 3.141592653589793) * (double)-pIndoorCameraD3D->sRotationX * 0.00048828125); | |
185 //this->fSineNegX = sin((3.141592653589793 + 3.141592653589793) * (double)-pIndoorCameraD3D->sRotationX * 0.00048828125); | |
2496 | 186 this->field_64 = pViewport->field_of_view; |
187 | |
188 this->uViewportX = pViewport->uScreen_TL_X; | |
189 this->uViewportY = pViewport->uScreen_TL_Y; | |
190 this->uViewportZ = pViewport->uScreen_BR_X; | |
191 this->uViewportW = pViewport->uScreen_BR_Y; | |
192 | |
193 this->uViewportWidth = uViewportZ - uViewportX + 1; | |
194 this->uViewportHeight = uViewportW - uViewportY + 1; | |
195 this->uViewportCenterX = (uViewportZ + uViewportX) / 2; | |
196 this->uViewportCenterY = (uViewportY + uViewportW) / 2; | |
197 } | |
198 /*else | |
199 { | |
200 __debugbreak(); // no sw | |
201 this->sCosineY = stru_5C6E00->Cos(-this->sPartyRotY); | |
202 this->sSineY = stru_5C6E00->Sin(-this->sPartyRotY); | |
203 this->sCosineNegX = stru_5C6E00->Cos(-this->sPartyRotX); | |
204 this->sSineNegX = stru_5C6E00->Sin(-this->sPartyRotX); | |
205 v17 = cos((double)-this->sPartyRotY * 0.0030664064); | |
206 v18 = this->sPartyRotY; | |
207 this->fCosineY = v17; | |
208 v19 = sin((double)-v18 * 0.0030664064); | |
209 v20 = this->sPartyRotX; | |
210 this->fSineY = v19; | |
211 v21 = cos((double)-v20 * 0.0030664064); | |
212 v22 = this->sPartyRotX; | |
213 this->fCosineNegX = v21; | |
214 this->fSineNegX = sin((double)-v22 * 0.0030664064); | |
215 v23 = this->uViewportX; | |
216 this->field_64 = a2->field_3C; | |
217 v24 = this->uViewportZ; | |
218 this->field_70 = this->uViewportZ - v23 + 1; | |
219 v25 = this->uViewportW - this->uViewportY + 1; | |
220 this->uViewportHeight = v25; | |
221 v29 = v25; | |
222 v26 = this->field_64; | |
223 this->uViewportCenterX = (signed int)(v24 + v23) >> 1; | |
224 this->uViewportCenterY = this->uViewportW - ((unsigned __int64)(v26 * (signed __int64)v29) >> 16); | |
225 }*/ | |
226 //v27 = (unsigned int)(signed __int64)((double)this->uViewportWidth * 0.5 | |
227 // / tan((double)(v2->fov_deg >> 1) * 0.01745329) | |
228 // + 0.5) << 16; | |
229 extern float _calc_fov(int viewport_width, int angle_degree); | |
230 this->fov_rad_fixpoint = fixpoint_from_int(_calc_fov(uViewportWidth, 65), 0); | |
231 this->fov_rad_inv_fixpoint = 0x100000000i64 / this->fov_rad_fixpoint; | |
232 this->pRenderTarget = pRenderer->pTargetSurface; | |
233 this->uTargetWidth = window->GetWidth(); | |
234 this->uTargetHeight = window->GetHeight(); | |
235 this->pTargetZBuffer = pRenderer->pActiveZBuffer; | |
236 this->field_8C = 0; | |
237 this->field_84 = 0; | |
238 this->uNumFacesRenderedThisFrame = 0; | |
239 this->field_88 = 0; | |
240 pBLVRenderParams->field_90 = 64; | |
241 pBLVRenderParams->field_94 = 6; | |
242 } | |
243 | |
244 //----- (00440B44) -------------------------------------------------------- | |
245 void IndoorLocation::ExecDraw(bool bD3D) | |
246 { | |
247 if (bD3D) | |
248 { | |
249 pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); | |
250 for (uint i = 0; i < pBspRenderer->num_faces; ++i) | |
251 { | |
252 if (pBspRenderer->nodes[pBspRenderer->faces[i].uNodeID].viewing_portal_id == -1) | |
253 IndoorLocation::ExecDraw_d3d(pBspRenderer->faces[i].uFaceID, nullptr, 4, nullptr); | |
254 else | |
255 IndoorLocation::ExecDraw_d3d(pBspRenderer->faces[i].uFaceID, | |
256 pBspRenderer->nodes[pBspRenderer->faces[i].uNodeID].std__vector_0007AC, 4, | |
257 pBspRenderer->nodes[pBspRenderer->faces[i].uNodeID].pPortalBounding); | |
258 } | |
259 } | |
260 else for (uint j = 0; j < pBspRenderer->num_faces; ++j ) | |
261 { | |
262 __debugbreak(); // no SW | |
263 //pBLVRenderParams->field_7C = &pBspRenderer->nodes[pBspRenderer->faces[j].uNodeID].PortalScreenData; | |
264 //IndoorLocation::ExecDraw_sw(pBspRenderer->faces[j].uFaceID); | |
265 } | |
266 } | |
267 | |
268 | |
269 /* | |
270 //----- (00440BED) -------------------------------------------------------- | |
271 void __fastcall sub_440BED(IndoorLocation_drawstru *_this) | |
272 { | |
273 unsigned __int16 *v1; // edi@7 | |
274 BspRenderer_stru0 *v2; // esi@8 | |
275 int v3; // ecx@9 | |
276 unsigned int v4; // edx@9 | |
277 short *v5; // eax@10 | |
278 signed int v6; // [sp+8h] [bp-8h]@7 | |
279 int v7; // [sp+Ch] [bp-4h]@8 | |
280 short *v8; | |
281 | |
282 PrepareDrawLists_BLV(_this); | |
283 if (pBLVRenderParams->uPartySectorID) | |
284 IndoorLocation::ExecDraw(pRenderer->pRenderD3D != 0); | |
285 pRenderer->DrawBillboardList_BLV(); | |
286 | |
287 if ( !pRenderer->pRenderD3D ) | |
288 { | |
289 if (pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_D3D_OUTLINES) | |
290 pBspRenderer->DrawFaceOutlines(); | |
291 if (pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_SW_OUTLINES) | |
292 { | |
293 v1 = pBLVRenderParams->pRenderTarget; | |
294 v7 = 0; | |
295 for(int i=0; i < pBspRenderer->num_nodes; i++) | |
296 { | |
297 BspRenderer_stru0 *pNode = &pBspRenderer->nodes[i]; | |
298 v4 = pRenderer->uTargetSurfacePitch * pNode->PortalScreenData._viewport_space_y; | |
299 if ( pNode->PortalScreenData._viewport_space_y <= pNode->PortalScreenData._viewport_space_w ) | |
300 { | |
301 //v5 = (char *)&pBspRenderer->nodes[0].field_C.array_3D8[pNode->field_C._viewport_space_y + v7]; | |
302 v5 = &pNode->PortalScreenData.viewport_right_side[pNode->PortalScreenData._viewport_space_y]; | |
303 v8 = &pNode->PortalScreenData.viewport_left_side[pNode->PortalScreenData._viewport_space_y]; | |
304 do | |
305 { | |
306 v1[v4 + *v8] = 255; | |
307 ++pNode->PortalScreenData._viewport_space_y; | |
308 v1[v4 + *v5] = 255; | |
309 v4 += pRenderer->uTargetSurfacePitch; | |
310 ++v5; | |
311 ++v8; | |
312 } | |
313 while ( pNode->PortalScreenData._viewport_space_y <= pNode->PortalScreenData._viewport_space_w ); | |
314 } | |
315 } | |
316 } | |
317 } | |
318 } | |
319 */ | |
320 | |
321 //----- (00441BD4) -------------------------------------------------------- | |
322 void IndoorLocation::Draw() | |
323 { | |
324 //int v0; // eax@1 | |
325 //IndoorLocation_drawstru _this; // [sp+0h] [bp-4Ch]@5 | |
326 // int v2; // [sp+44h] [bp-8h]@5 | |
327 // int v3; // [sp+48h] [bp-4h]@5 | |
328 | |
329 /*_this.uFlags = 0; | |
330 if (viewparams->draw_sw_outlines) | |
331 _this.uFlags |= BLV_RENDER_DRAW_SW_OUTLINES; | |
332 if (viewparams->draw_d3d_outlines) | |
333 _this.uFlags |= BLV_RENDER_DRAW_D3D_OUTLINES; | |
334 | |
335 _this.uFlags |= BLV_RENDER_DRAW_SW_OUTLINES; | |
336 _this.uFlags |= BLV_RENDER_DRAW_D3D_OUTLINES; | |
337 | |
338 _this.field_0_timer = pEventTimer->uTotalGameTimeElapsed; | |
339 //_this.fov_deg = 65; | |
340 //_this.vPosition.x = pParty->vPosition.x - fixpoint_mul(stru_5C6E00->Cos(pParty->sRotationY), pParty->y_rotation_granularity); | |
341 //_this.vPosition.y = pParty->vPosition.y - fixpoint_mul(stru_5C6E00->Sin(pParty->sRotationY), pParty->y_rotation_granularity); | |
342 //_this.vPosition.z = pParty->vPosition.z + pParty->sEyelevel; | |
343 //_this.sRotationX = pParty->sRotationX; | |
344 //_this.sRotationY = pParty->sRotationY; | |
345 _this.pRenderTarget = pRenderer->pTargetSurface; | |
346 _this.uViewportX = pViewport->uScreen_TL_X; | |
347 _this.uViewportY = pViewport->uScreen_TL_Y; | |
348 _this.uViewportZ = pViewport->uScreen_BR_X; | |
349 _this.uViewportW = pViewport->uScreen_BR_Y; | |
350 _this.field_3C = pViewport->field_30; | |
351 | |
352 _this.uTargetWidth = 640; | |
353 _this.uTargetHeight = 480; | |
354 _this.pTargetZ = pRenderer->pActiveZBuffer;*/ | |
355 | |
356 //sub_440BED(&_this); -- inlined | |
357 //{ | |
358 PrepareDrawLists_BLV(); | |
359 if (pBLVRenderParams->uPartySectorID) | |
360 IndoorLocation::ExecDraw(true/*pRenderer->pRenderD3D != 0*/); | |
361 pRenderer->DrawBillboardList_BLV(); | |
362 //} | |
363 | |
364 pParty->uFlags &= ~2; | |
2541 | 365 pEngine->DrawParticles(); |
2496 | 366 trail_particle_generator.UpdateParticles(); |
367 } | |
368 | |
369 //----- (004C0EF2) -------------------------------------------------------- | |
370 void BLVFace::FromODM(ODMFace *face) | |
371 { | |
372 this->pFacePlane_old.vNormal.x = face->pFacePlane.vNormal.x; | |
373 this->pFacePlane_old.vNormal.y = face->pFacePlane.vNormal.y; | |
374 this->pFacePlane_old.vNormal.z = face->pFacePlane.vNormal.z; | |
375 this->pFacePlane_old.dist = face->pFacePlane.dist; | |
376 this->pFacePlane.vNormal.x = (double)(face->pFacePlane.vNormal.x & 0xFFFF) * 0.000015259022 | |
377 + (double)(face->pFacePlane.vNormal.x >> 16); | |
378 this->pFacePlane.vNormal.y = (double)(face->pFacePlane.vNormal.y & 0xFFFF) * 0.000015259022 | |
379 + (double)(face->pFacePlane.vNormal.y >> 16); | |
380 this->pFacePlane.vNormal.z = (double)(face->pFacePlane.vNormal.z & 0xFFFF) * 0.000015259022 | |
381 + (double)(face->pFacePlane.vNormal.z >> 16); | |
382 this->pFacePlane.dist = (double)(face->pFacePlane.dist & 0xFFFF) * 0.000015259022 + (double)(face->pFacePlane.dist >> 16); | |
383 this->uAttributes = face->uAttributes; | |
384 this->pBounding.x1 = face->pBoundingBox.x1; | |
385 this->pBounding.y1 = face->pBoundingBox.y1; | |
386 this->pBounding.z1 = face->pBoundingBox.z1; | |
387 this->pBounding.x2 = face->pBoundingBox.x2; | |
388 this->pBounding.y2 = face->pBoundingBox.y2; | |
389 this->pBounding.z2 = face->pBoundingBox.z2; | |
390 this->zCalc1 = face->zCalc1; | |
391 this->zCalc2 = face->zCalc2; | |
392 this->zCalc3 = face->zCalc3; | |
393 this->pXInterceptDisplacements = face->pXInterceptDisplacements; | |
394 this->pYInterceptDisplacements = face->pYInterceptDisplacements; | |
395 this->pZInterceptDisplacements = face->pZInterceptDisplacements; | |
396 this->uPolygonType = (PolygonType)face->uPolygonType; | |
397 this->uNumVertices = face->uNumVertices; | |
398 this->uBitmapID = face->uTextureID; | |
399 this->pVertexIDs = face->pVertexIDs; | |
400 } | |
401 | |
402 //----- (004B0A25) -------------------------------------------------------- | |
403 void IndoorLocation::ExecDraw_d3d(unsigned int uFaceID, IndoorCameraD3D_Vec4 *pVertices, unsigned int uNumVertices, RenderVertexSoft *pPortalBounding) | |
404 { | |
405 int v17; // ebx@25 | |
406 IDirect3DTexture2 *v27; // eax@42 | |
407 unsigned int uNumVerticesa; // [sp+24h] [bp-4h]@17 | |
408 int a4a; // [sp+34h] [bp+Ch]@25 | |
409 | |
410 if (uFaceID >= pIndoor->uNumFaces) | |
411 return; | |
412 | |
413 static RenderVertexSoft static_vertices_F7C228[64]; | |
414 static RenderVertexSoft static_vertices_F7B628[64]; | |
415 static stru154 stru_F7B60C; // idb | |
416 | |
417 BLVFace* pFace = &pIndoor->pFaces[uFaceID]; | |
418 if (pFace->uNumVertices < 3) | |
419 return; | |
420 | |
421 | |
422 if (pFace->Invisible()) | |
423 return; | |
424 | |
425 ++pBLVRenderParams->uNumFacesRenderedThisFrame; | |
2508 | 426 pFace->uAttributes |= FACE_UNKNOW7; |
2496 | 427 |
428 if (!pFace->GetTexture()) | |
429 return; | |
430 | |
2543 | 431 if (!pIndoorCameraD3D->IsCulled(pFace)) |
2496 | 432 { |
433 uNumVerticesa = pFace->uNumVertices; | |
434 for (uint i = 0; i < pFace->uNumVertices; ++i) | |
435 { | |
436 static_vertices_F7C228[i].vWorldPosition.x = pIndoor->pVertices[pFace->pVertexIDs[i]].x; | |
437 static_vertices_F7C228[i].vWorldPosition.y = pIndoor->pVertices[pFace->pVertexIDs[i]].y; | |
438 static_vertices_F7C228[i].vWorldPosition.z = pIndoor->pVertices[pFace->pVertexIDs[i]].z; | |
439 static_vertices_F7C228[i].u = (signed short)pFace->pVertexUIDs[i]; | |
440 static_vertices_F7C228[i].v = (signed short)pFace->pVertexVIDs[i]; | |
441 } | |
442 | |
443 if (!pVertices || | |
2541 | 444 (pEngine->pStru9Instance->_498377(pPortalBounding, 4, pVertices, static_vertices_F7C228, &uNumVerticesa), uNumVerticesa) ) |
2496 | 445 { |
2543 | 446 if (pIndoorCameraD3D->CalcPortalShape(static_vertices_F7C228, &uNumVerticesa, |
447 static_vertices_F7B628, pIndoorCameraD3D->std__vector_000034_prolly_frustrum, 4, false, 0) != 1 || uNumVerticesa ) | |
2496 | 448 { |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
449 a4a = SHIWORD(Lights.uCurrentAmbientLightLevel); |
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
450 v17 = (248 - (SHIWORD(Lights.uCurrentAmbientLightLevel) << 3)) |
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
451 | (((248 - (SHIWORD(Lights.uCurrentAmbientLightLevel) << 3)) |
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
452 | ((248 - (SHIWORD(Lights.uCurrentAmbientLightLevel) << 3)) << 8)) << 8); |
2496 | 453 sub_4B0E07(uFaceID); |
2541 | 454 pEngine->pLightmapBuilder->ApplyLights_IndoorFace(uFaceID); |
2496 | 455 pDecalBuilder->ApplyBloodsplatDecals_IndoorFace(uFaceID); |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
456 pIndoorCameraD3D->ViewTransfrom_OffsetUV(static_vertices_F7B628, uNumVerticesa, array_507D30, &Lights); |
2543 | 457 pIndoorCameraD3D->Project(array_507D30, uNumVerticesa, 0); |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
458 pEngine->pLightmapBuilder->StationaryLightsCount = 0; |
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
459 if (Lights.uNumLightsApplied > 0 || pDecalBuilder->uNumDecals > 0) |
2496 | 460 { |
461 stru_F7B60C.face_plane.vNormal.x = pFace->pFacePlane.vNormal.x; | |
462 stru_F7B60C.polygonType = pFace->uPolygonType; | |
463 stru_F7B60C.face_plane.vNormal.y = pFace->pFacePlane.vNormal.y; | |
464 stru_F7B60C.face_plane.vNormal.z = pFace->pFacePlane.vNormal.z; | |
465 stru_F7B60C.face_plane.dist = pFace->pFacePlane.dist; | |
466 } | |
467 | |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
468 if (Lights.uNumLightsApplied > 0 && !pFace->Indoor_sky()) //for torchlight(äëÿ ñâåòà ôàêåëîâ) |
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
469 pEngine->pLightmapBuilder->ApplyLights(&Lights, &stru_F7B60C, uNumVerticesa, array_507D30, pVertices, 0); |
2496 | 470 |
471 if (pDecalBuilder->uNumDecals > 0)//îòðèñîâêà ïÿòåí êðîâè | |
472 pDecalBuilder->ApplyDecals(a4a, 1, &stru_F7B60C, uNumVerticesa, array_507D30, pVertices, 0, pFace->uSectorID); | |
473 | |
474 if (pFace->Fluid()) | |
475 { | |
476 if (pFace->uBitmapID == pRenderer->hd_water_tile_id) | |
477 v27 = pBitmaps_LOD->pHardwareTextures[pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame]]; | |
478 else | |
479 { | |
480 //auto v24 = GetTickCount() / 4; | |
481 //auto v25 = v24 - stru_5C6E00->uIntegerHalfPi; | |
482 uint eightSeconds = GetTickCount() % 8000; | |
483 float angle = (eightSeconds / 8000.0f) * 2 * 3.1415f; | |
484 | |
485 //animte lava back and forth | |
486 for (uint i = 0; i < uNumVerticesa; ++i) | |
487 //array_507D30[i].v += (double)(pBitmaps_LOD->pTextures[pFace->uBitmapID].uHeightMinus1 & (unsigned int)(stru_5C6E00->SinCos(v25) >> 8)); | |
488 array_507D30[i].v += pBitmaps_LOD->pTextures[pFace->uBitmapID].uHeightMinus1 * cosf(angle); | |
489 v27 = pBitmaps_LOD->pHardwareTextures[pFace->uBitmapID]; | |
490 } | |
491 } | |
492 else if (pFace->uAttributes & FACE_TEXTURE_FRAME) | |
493 v27 = pBitmaps_LOD->pHardwareTextures[pTextureFrameTable->GetFrameTexture(pFace->uBitmapID, pBLVRenderParams->field_0_timer_)]; | |
494 else | |
495 { | |
496 v17 = 0xFF808080; | |
497 v27 = pBitmaps_LOD->pHardwareTextures[pFace->uBitmapID]; | |
498 } | |
499 | |
500 if (pFace->Indoor_sky()) | |
501 pRenderer->DrawIndoorSky(uNumVerticesa, uFaceID); | |
502 else | |
503 pRenderer->DrawIndoorPolygon(uNumVerticesa, pFace, v27, pFace->GetTexture(), PID(OBJECT_BModel, uFaceID), v17, 0); | |
504 return; | |
505 } | |
506 } | |
507 } | |
508 } | |
509 | |
510 //----- (004B0E07) -------------------------------------------------------- | |
511 unsigned int __fastcall sub_4B0E07(unsigned int uFaceID) | |
512 { | |
513 unsigned int result; // eax@1 | |
514 | |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
515 Lights.pDeltaUV[0] = pIndoor->pFaceExtras[pIndoor->pFaces[uFaceID].uFaceExtraID].sTextureDeltaU; |
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
516 Lights.pDeltaUV[1] = pIndoor->pFaceExtras[pIndoor->pFaces[uFaceID].uFaceExtraID].sTextureDeltaV; |
2496 | 517 result = GetTickCount() >> 3; |
518 if ( pIndoor->pFaces[uFaceID].uAttributes & FACE_FLOW_DIAGONAL ) | |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
519 Lights.pDeltaUV[1] -= result & pBitmaps_LOD->GetTexture(pIndoor->pFaces[uFaceID].uBitmapID)->uHeightMinus1; |
2496 | 520 else |
521 { | |
522 if ( pIndoor->pFaces[uFaceID].uAttributes & FACE_FLOW_VERTICAL ) | |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
523 Lights.pDeltaUV[1] += result & pBitmaps_LOD->GetTexture(pIndoor->pFaces[uFaceID].uBitmapID)->uHeightMinus1; |
2496 | 524 } |
525 if ( pIndoor->pFaces[uFaceID].uAttributes & FACE_FLOW_HORIZONTAL ) | |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
526 Lights.pDeltaUV[0] -= result & pBitmaps_LOD->GetTexture(pIndoor->pFaces[uFaceID].uBitmapID)->uWidthMinus1; |
2496 | 527 else |
528 { | |
529 if ( pIndoor->pFaces[uFaceID].uAttributes & FACE_DONT_CACHE_TEXTURE ) | |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
530 Lights.pDeltaUV[0] += result & pBitmaps_LOD->GetTexture(pIndoor->pFaces[uFaceID].uBitmapID)->uWidthMinus1; |
2496 | 531 } |
532 return result; | |
533 } | |
534 | |
535 //----- (004B0EA8) -------------------------------------------------------- | |
536 void BspRenderer::AddFaceToRenderList_d3d(unsigned int node_id, unsigned int uFaceID) | |
537 { | |
538 unsigned __int16 pTransitionSector; // ax@11 | |
539 int v9; // edx@15 | |
540 char v29; // al@48 | |
541 | |
542 nodes[num_nodes].viewing_portal_id = -1; | |
543 //v39 = &pIndoor->pFaces[uFaceID]; | |
544 | |
545 BLVFace* pFace = &pIndoor->pFaces[uFaceID]; | |
546 | |
547 if (!pFace->Portal()) | |
548 { | |
549 if (num_faces < 1000) | |
550 { | |
551 faces[num_faces].uFaceID = uFaceID; | |
552 faces[num_faces++].uNodeID = node_id; | |
553 } | |
554 return; | |
555 } | |
556 | |
557 if (nodes[node_id].uFaceID == uFaceID) | |
558 return; | |
559 if (!node_id && | |
2543 | 560 pIndoorCameraD3D->vPartyPos.x >= pFace->pBounding.x1 - 16 && // we are probably standing at the portal plane |
561 pIndoorCameraD3D->vPartyPos.x <= pFace->pBounding.x2 + 16 && | |
562 pIndoorCameraD3D->vPartyPos.y >= pFace->pBounding.y1 - 16 && | |
563 pIndoorCameraD3D->vPartyPos.y <= pFace->pBounding.y2 + 16 && | |
564 pIndoorCameraD3D->vPartyPos.z >= pFace->pBounding.z1 - 16 && | |
565 pIndoorCameraD3D->vPartyPos.z <= pFace->pBounding.z2 + 16 ) | |
2496 | 566 { |
2543 | 567 if ( abs(pFace->pFacePlane_old.dist + pIndoorCameraD3D->vPartyPos.x * pFace->pFacePlane_old.vNormal.x |
568 + pIndoorCameraD3D->vPartyPos.y * pFace->pFacePlane_old.vNormal.y | |
569 + pIndoorCameraD3D->vPartyPos.z * pFace->pFacePlane_old.vNormal.z) <= 589824 ) // we sure are standing at the portal plane | |
2496 | 570 { |
571 pTransitionSector = pFace->uSectorID; | |
572 if ( nodes[0].uSectorID == pTransitionSector ) // draw back sector | |
573 pTransitionSector = pFace->uBackSectorID; | |
574 nodes[num_nodes].uSectorID = pTransitionSector; | |
575 nodes[num_nodes].uFaceID = uFaceID; | |
576 nodes[num_nodes].uViewportX = pBLVRenderParams->uViewportX; | |
577 nodes[num_nodes].uViewportZ = pBLVRenderParams->uViewportZ; | |
578 nodes[num_nodes].uViewportY = pBLVRenderParams->uViewportY; | |
579 nodes[num_nodes].uViewportW = pBLVRenderParams->uViewportW; | |
580 nodes[num_nodes].PortalScreenData.GetViewportData(pBLVRenderParams->uViewportX, pBLVRenderParams->uViewportY, | |
581 pBLVRenderParams->uViewportZ, pBLVRenderParams->uViewportW); | |
582 AddBspNodeToRenderList(++num_nodes - 1); | |
583 return; | |
584 } | |
585 } | |
586 | |
2543 | 587 v9 = pFace->pFacePlane_old.vNormal.x * (pIndoor->pVertices[pFace->pVertexIDs[0]].x - pIndoorCameraD3D->vPartyPos.x) |
588 + pFace->pFacePlane_old.vNormal.y * (pIndoor->pVertices[pFace->pVertexIDs[0]].y - pIndoorCameraD3D->vPartyPos.y) | |
589 + pFace->pFacePlane_old.vNormal.z * (pIndoor->pVertices[pFace->pVertexIDs[0]].z - pIndoorCameraD3D->vPartyPos.z); | |
2496 | 590 if (nodes[node_id].uSectorID != pFace->uSectorID) |
591 v9 = -v9; | |
592 if (v9 >= 0) | |
593 return; | |
594 | |
595 int num_vertices = GetPortalScreenCoord(uFaceID); | |
596 if (num_vertices < 2) | |
597 return; | |
598 | |
599 int face_min_screenspace_x = PortalFace._screen_space_x[0], | |
600 face_max_screenspace_x = PortalFace._screen_space_x[0]; | |
601 int face_min_screenspace_y = PortalFace._screen_space_y[0], | |
602 face_max_screenspace_y = PortalFace._screen_space_y[0]; | |
603 for (uint i = 1; i < num_vertices; ++i) | |
604 { | |
605 if (face_min_screenspace_x > PortalFace._screen_space_x[i]) | |
606 face_min_screenspace_x = PortalFace._screen_space_x[i]; | |
607 if (face_max_screenspace_x < PortalFace._screen_space_x[i]) | |
608 face_max_screenspace_x = PortalFace._screen_space_x[i]; | |
609 | |
610 if (face_min_screenspace_y > PortalFace._screen_space_y[i]) | |
611 face_min_screenspace_y = PortalFace._screen_space_y[i]; | |
612 if (face_max_screenspace_y < PortalFace._screen_space_y[i]) | |
613 face_max_screenspace_y = PortalFace._screen_space_y[i]; | |
614 } | |
615 //_screen_space_x = 719, 568, 493 | |
616 //savegame: qw , 0Bh and 0x1D4h | |
617 //problem here when standing near/on portal, condition is false because of face_min_screenspace_x > p->uViewportZ | |
618 if (face_max_screenspace_x >= nodes[node_id].uViewportX && | |
619 face_min_screenspace_x <= nodes[node_id].uViewportZ && | |
620 face_max_screenspace_y >= nodes[node_id].uViewportY && | |
621 face_min_screenspace_y <= nodes[node_id].uViewportW && | |
622 PortalFrustrum(num_vertices, &nodes[num_nodes].PortalScreenData, &nodes[node_id].PortalScreenData, uFaceID)) | |
623 { | |
624 pTransitionSector = pFace->uSectorID; | |
625 if (nodes[node_id].uSectorID == pTransitionSector ) | |
626 pTransitionSector = pFace->uBackSectorID; | |
627 nodes[num_nodes].uSectorID = pTransitionSector; | |
628 nodes[num_nodes].uFaceID = uFaceID; | |
629 nodes[num_nodes].uViewportX = pBLVRenderParams->uViewportX; | |
630 nodes[num_nodes].uViewportZ = pBLVRenderParams->uViewportZ; | |
631 nodes[num_nodes].uViewportY = pBLVRenderParams->uViewportY; | |
632 nodes[num_nodes].uViewportW = pBLVRenderParams->uViewportW; | |
633 v29 = false; | |
634 if (nodes[node_id].viewing_portal_id == -1)//for first portal | |
2541 | 635 v29 = pEngine->pStru10Instance->CalcPortalShape(pFace, nodes[num_nodes].std__vector_0007AC, nodes[num_nodes].pPortalBounding); |
2496 | 636 else//for next portals |
637 { | |
638 static RenderVertexSoft static_subAddFaceToRenderList_d3d_stru_F7AA08[64]; | |
639 static RenderVertexSoft static_subAddFaceToRenderList_d3d_stru_F79E08[64]; | |
640 | |
641 for (uint k = 0; k < pFace->uNumVertices; ++k) | |
642 { | |
643 static_subAddFaceToRenderList_d3d_stru_F7AA08[k].vWorldPosition.x = pIndoor->pVertices[pFace->pVertexIDs[k]].x; | |
644 static_subAddFaceToRenderList_d3d_stru_F7AA08[k].vWorldPosition.y = pIndoor->pVertices[pFace->pVertexIDs[k]].y; | |
645 static_subAddFaceToRenderList_d3d_stru_F7AA08[k].vWorldPosition.z = pIndoor->pVertices[pFace->pVertexIDs[k]].z; | |
646 } | |
647 | |
648 unsigned int pNewNumVertices = pFace->uNumVertices; | |
2543 | 649 pIndoorCameraD3D->CalcPortalShape(static_subAddFaceToRenderList_d3d_stru_F7AA08, &pNewNumVertices, |
2496 | 650 static_subAddFaceToRenderList_d3d_stru_F79E08, nodes[node_id].std__vector_0007AC, 4, 0, 0); |
651 | |
2541 | 652 v29 = pEngine->pStru10Instance->_49C5DA(pFace, static_subAddFaceToRenderList_d3d_stru_F79E08, &pNewNumVertices, |
2496 | 653 nodes[num_nodes].std__vector_0007AC, nodes[num_nodes].pPortalBounding); |
654 } | |
655 if ( 1 ) | |
656 { | |
657 assert(num_nodes < 150); | |
658 | |
659 nodes[num_nodes].viewing_portal_id = uFaceID; | |
660 AddBspNodeToRenderList(++num_nodes - 1); | |
661 } | |
2543 | 662 if (pIndoorCameraD3D->debug_flags & BLV_RENDER_DRAW_SW_OUTLINES) |
663 pIndoorCameraD3D->PrepareAndDrawDebugOutline(pFace, 0x1E1EFF); | |
664 //pIndoorCameraD3D->DebugDrawPortal(pFace); | |
2496 | 665 } |
666 } | |
667 | |
668 //----- (004AE5BA) -------------------------------------------------------- | |
2574 | 669 Texture_MM7 *BLVFace::GetTexture() |
2496 | 670 { |
671 unsigned int v1; // ecx@2 | |
672 | |
673 if ( uAttributes & FACE_TEXTURE_FRAME ) | |
674 v1 = pTextureFrameTable->GetFrameTexture(this->uBitmapID, pBLVRenderParams->field_0_timer_); | |
675 else | |
676 v1 = uBitmapID; | |
677 return pBitmaps_LOD->GetTexture(v1); | |
678 } | |
679 | |
680 | |
681 //----- (00498B15) -------------------------------------------------------- | |
682 void IndoorLocation::Release() | |
683 { | |
684 free(this->ptr_0002B4_doors_ddata); | |
685 this->ptr_0002B4_doors_ddata = NULL; | |
686 | |
687 free(this->ptr_0002B0_sector_rdata); | |
688 this->ptr_0002B0_sector_rdata = NULL; | |
689 | |
690 free(this->ptr_0002B8_sector_lrdata); | |
691 this->ptr_0002B8_sector_lrdata = NULL; | |
692 | |
693 free(this->pLFaces); | |
694 this->pLFaces = NULL; | |
695 | |
696 free(this->pSpawnPoints); | |
697 this->pSpawnPoints = NULL; | |
698 | |
699 this->uNumSectors = 0; | |
700 this->uNumFaces = 0; | |
701 this->uNumVertices = 0; | |
702 this->uNumNodes = 0; | |
703 this->uNumDoors = 0; | |
704 this->uNumLights = 0; | |
705 | |
706 free(this->pVertices); | |
707 this->pVertices = NULL; | |
708 | |
709 free(this->pFaces); | |
710 this->pFaces = NULL; | |
711 | |
712 free(this->pFaceExtras); | |
713 this->pFaceExtras = NULL; | |
714 | |
715 free(this->pSectors); | |
716 this->pSectors = NULL; | |
717 | |
718 free(this->pLights); | |
719 this->pLights = NULL; | |
720 | |
721 free(this->pDoors); | |
722 this->pDoors = NULL; | |
723 | |
724 free(this->pNodes); | |
725 this->pNodes = NULL; | |
726 | |
727 free(this->pMapOutlines); | |
728 this->pMapOutlines = NULL; | |
729 | |
730 this->bLoaded = 0; | |
731 } | |
732 | |
733 //----- (00498C45) -------------------------------------------------------- | |
734 bool IndoorLocation::Alloc() | |
735 { | |
736 pVertices = (Vec3_short_ *) malloc(15000 * sizeof(Vec3_short_));//0x15F90u | |
737 pFaces = (BLVFace *) malloc(10000 * sizeof(BLVFace));//0xEA600u | |
738 pFaceExtras = (BLVFaceExtra *) malloc(5000 * sizeof(BLVFaceExtra)); //0x2BF20u | |
739 pSectors = (BLVSector *) malloc(512 * sizeof(BLVSector));//0xE800u | |
740 pLights = (BLVLightMM7 *) malloc(400 * sizeof(BLVLightMM7));//0x1900u | |
741 pDoors = (BLVDoor *) malloc(200 * sizeof(BLVDoor));//0x3E80u | |
742 pNodes = (BSPNode *) malloc(5000 * sizeof(BSPNode));//0x9C40u | |
743 pMapOutlines =(BLVMapOutlines *)malloc(sizeof(BLVMapOutlines));//0x14824u | |
744 if (pVertices && pFaces && pFaceExtras && pSectors && pLights && pDoors && pNodes && pMapOutlines ) | |
745 { | |
746 memset(pVertices, 0, 15000*sizeof(Vec3_short_)); | |
747 memset(pFaces, 0, 10000*sizeof(BLVFace)); | |
748 memset(pFaceExtras,0, 5000*sizeof(BLVFaceExtra)); | |
749 memset(pSectors, 0, 512*sizeof(BLVSector)); | |
750 memset(pLights, 0, 400*sizeof(BLVLightMM7)); | |
751 memset(pDoors, 0, 200*sizeof(BLVDoor)); | |
752 memset(pNodes, 0, 5000*sizeof(BSPNode)); | |
753 memset(pMapOutlines,0, sizeof(BLVMapOutlines)); | |
754 return true; | |
755 } | |
756 else | |
757 return false; | |
758 } | |
759 | |
760 //----- (00444810) -------------------------------------------------------- | |
761 unsigned int IndoorLocation::GetLocationIndex(const char *Str1) | |
762 { | |
763 for (uint i = 0; i < 11; ++i) | |
764 if (!_stricmp(Str1, _4E6BDC_loc_names[i])) | |
765 return i + 1; | |
766 return 0; | |
767 } | |
768 | |
769 //----- (004488F7) -------------------------------------------------------- | |
770 void IndoorLocation::ToggleLight(signed int sLightID, unsigned int bToggle) | |
771 { | |
772 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor && (sLightID <= pIndoor->uNumLights - 1) && (sLightID >= 0) ) | |
773 { | |
774 if ( bToggle ) | |
775 pIndoor->pLights[sLightID].uAtributes &= 0xFFFFFFF7; | |
776 else | |
777 pIndoor->pLights[sLightID].uAtributes |= 8; | |
778 pParty->uFlags |= 2; | |
779 } | |
780 } | |
781 | |
782 //----- (00498E0A) -------------------------------------------------------- | |
783 bool IndoorLocation::Load(char *pFilename, int a3, size_t _i, char *pDest) | |
784 { | |
785 /*unsigned int v5; // ebx@1 | |
786 //IndoorLocation *v6; // esi@1 | |
787 FILE *v7; // edi@3 | |
788 bool result; // eax@3 | |
789 char *v9; // ecx@4 | |
790 void *v10; // eax@4 | |
791 //unsigned __int8 v11; // zf@4 | |
792 //unsigned __int8 v12; // sf@4 | |
793 int v13; // eax@5 | |
794 size_t v14; // ecx@6 | |
795 char *v15; // ecx@6 | |
796 int v16; // edx@6 | |
797 size_t v17; // ecx@6 | |
798 char *v18; // ecx@6 | |
799 int v19; // edx@6 | |
800 unsigned __int16 *v20; // edx@6 | |
801 unsigned __int16 *v21; // edx@6 | |
802 unsigned __int16 *v22; // edx@6 | |
803 __int16 v23; // ax@10 | |
804 char *v24; // ecx@10 | |
805 __int16 v25; // cx@10 | |
806 __int16 v26; // ax@11 | |
807 char *v27; // ecx@11 | |
808 unsigned __int16 v28; // ax@17 | |
809 BLVFaceExtra *v29; // ecx@17 | |
810 char *v30; // edx@17 | |
811 int v31; // ecx@20 | |
812 void *v32; // eax@25 | |
813 int v33; // eax@26 | |
814 unsigned __int16 *v34; // edx@27 | |
815 size_t v35; // ecx@27 | |
816 char *v36; // ecx@27 | |
817 int v37; // edx@27 | |
818 size_t v38; // ecx@27 | |
819 char *v39; // ecx@27 | |
820 int v40; // edx@27 | |
821 unsigned __int16 *v41; // edx@27 | |
822 unsigned __int16 *v42; // edx@27 | |
823 unsigned __int16 *v43; // edx@27 | |
824 unsigned __int16 *v44; // edx@27 | |
825 size_t v45; // ecx@27 | |
826 unsigned __int16 *v46; // edx@27 | |
827 void *v47; // eax@28 | |
828 BLVSector *v48; // eax@29 | |
829 size_t v49; // ecx@29 | |
830 unsigned __int16 *v50; // edx@31 | |
831 void *v51; // eax@32 | |
832 int v52; // eax@33 | |
833 unsigned __int16 *v53; // edx@34 | |
834 size_t v54; // ecx@34 | |
835 char *v55; // ecx@34 | |
836 int v56; // edx@34 | |
837 size_t v57; // ecx@34 | |
838 char *v58; // ecx@34 | |
839 int v59; // edx@34 | |
840 unsigned __int16 *v60; // edx@34 | |
841 unsigned __int16 *v61; // edx@34 | |
842 unsigned __int16 *v62; // edx@34 | |
843 unsigned __int16 *v63; // edx@34 | |
844 int v64; // ecx@34 | |
845 BLVDoor *v65; // ecx@36 | |
846 char *v66; // eax@37 | |
847 int v67; // edx@38 | |
848 int v68; // ecx@38 | |
849 BLVFace *v69; // edx@38 | |
850 int v70; // ecx@38 | |
851 int v71; // edx@38 | |
852 int v72; // eax@38 | |
853 unsigned __int16 v73; // ax@42 | |
854 char *v74; // ecx@42 | |
855 SpriteObject *v75; // ecx@44 | |
856 size_t v76; // eax@45 | |
857 int j; // edx@46 | |
858 unsigned __int16 v78; // ax@50 | |
859 void *v79; // eax@52 | |
860 void **v80; // esi@52 | |
861 unsigned int v145; // eax@103 | |
862 void *v146; // eax@103 | |
863 unsigned int v147; // ecx@103 | |
864 int v148; // ebx@103 | |
865 unsigned int *v149; // ecx@103*/ | |
866 //size_t v150; // eax@103 | |
867 //unsigned int v151; // ebx@109 | |
868 //unsigned int v152; // ecx@116 | |
869 //unsigned int v153; // eax@117 | |
870 //size_t v154; // ebx@126 | |
871 //unsigned int v155; // ebx@134 | |
872 //size_t v156; // eax@140 | |
873 //signed int v157; // ebx@142 | |
874 //int v158; // ebx@148 | |
875 //BLVFace *v159; // eax@149 | |
876 // BLVFaceExtra *v160; // ecx@149 | |
877 //BLVFaceExtra *v161; // ecx@149 | |
878 //signed int v162; // ebx@154 | |
879 //unsigned int outz; // ebx@157 | |
880 //unsigned int v164; // ebx@157 | |
881 //unsigned int v165; // edx@158 | |
882 //char *v166; // ecx@158 | |
883 //unsigned __int16 v167; // ax@161 | |
884 //__int16 v168; // ax@165 | |
885 //unsigned int v169; // ebx@168 | |
886 //void *v170; // eax@168 | |
887 //size_t v171; // ebx@168 | |
888 //int v172; // edx@168 | |
889 //BLVDoor *v173; // ecx@169 | |
890 //int k; // eax@169 | |
891 //BLVDoor *v175; // ecx@172 | |
892 //int v176; // edx@172 | |
893 //BLVDoor *v177; // ecx@172 | |
894 //int v178; // edx@172 | |
895 //BLVDoor *v179; // ecx@172 | |
896 //int v180; // edx@172 | |
897 //BLVDoor *v181; // ecx@172 | |
898 //int v182; // edx@172 | |
899 //BLVDoor *v183; // ecx@172 | |
900 //int v184; // edx@172 | |
901 //BLVDoor *v185; // ecx@172 | |
902 //int v186; // edx@172 | |
903 //BLVDoor *v187; // ecx@172 | |
904 //int v188; // edx@172 | |
905 //unsigned __int16 *v189; // ebx@172 | |
906 //char *v190; // edx@173 | |
907 //BLVDoor *v191; // ecx@174 | |
908 //BLVDoor *l; // eax@175 | |
909 //signed int v193; // ebx@176 | |
910 //int v194; // ecx@176 | |
911 //BLVFaceExtra *v195; // ecx@176 | |
912 //BLVFace *v196; // ebx@178 | |
913 //std::string v197; // [sp-18h] [bp-680h]@66 | |
914 //void *v198; // [sp-14h] [bp-67Ch]@72 | |
915 //size_t v199; // [sp-10h] [bp-678h]@72 | |
916 //size_t v200; // [sp-Ch] [bp-674h]@72 | |
917 //const char *v201; // [sp-8h] [bp-670h]@4 | |
918 //int v202; // [sp-4h] [bp-66Ch]@4 | |
919 char v203[875]; // [sp+Ch] [bp-65Ch]@130 | |
920 // char FileName[260]; // [sp+378h] [bp-2F0h]@1 | |
921 //char DstBuf; // [sp+47Ch] [bp-1ECh]@4 | |
922 // __int32 Offset; // [sp+480h] [bp-1E8h]@4 | |
923 // __int32 v207; // [sp+48Ch] [bp-1DCh]@4 | |
924 // __int32 v208; // [sp+498h] [bp-1D0h]@4 | |
925 // __int32 v209; // [sp+4A4h] [bp-1C4h]@4 | |
926 // __int32 v210; // [sp+4B0h] [bp-1B8h]@4 | |
927 // __int32 v211; // [sp+4BCh] [bp-1ACh]@15 | |
928 // __int32 v212; // [sp+4C8h] [bp-1A0h]@15 | |
929 // __int32 v213; // [sp+4D4h] [bp-194h]@25 | |
930 // __int32 v214; // [sp+4E0h] [bp-188h]@25 | |
931 // __int32 v215; // [sp+4ECh] [bp-17Ch]@32 | |
932 // __int32 v216; // [sp+4F8h] [bp-170h]@32 | |
933 // __int32 v217; // [sp+504h] [bp-164h]@40 | |
934 // __int32 v218; // [sp+510h] [bp-158h]@40 | |
935 // __int32 v219; // [sp+51Ch] [bp-14Ch]@43 | |
936 // __int32 v220; // [sp+528h] [bp-140h]@43 | |
937 // __int32 v221; // [sp+534h] [bp-134h]@52 | |
938 // __int32 v222; // [sp+540h] [bp-128h]@52 | |
939 // __int32 v223; // [sp+54Ch] [bp-11Ch]@52 | |
940 // __int32 v224; // [sp+558h] [bp-110h]@52 | |
941 // __int32 v225; // [sp+564h] [bp-104h]@52 | |
942 // __int32 v226; // [sp+570h] [bp-F8h]@52 | |
943 // __int32 v227; // [sp+57Ch] [bp-ECh]@52 | |
944 // __int32 v228; // [sp+588h] [bp-E0h]@52 | |
945 // __int32 v229; // [sp+594h] [bp-D4h]@52 | |
946 // __int32 v230; // [sp+5A0h] [bp-C8h]@52 | |
947 // __int32 v231; // [sp+5ACh] [bp-BCh]@52 | |
948 // __int32 v232; // [sp+5B8h] [bp-B0h]@52 | |
949 // __int32 v233; // [sp+5C4h] [bp-A4h]@52 | |
950 // __int32 v234; // [sp+5D0h] [bp-98h]@52 | |
951 //char pName[40]; // [sp+5FCh] [bp-6Ch]@42 | |
952 //size_t pSource; // [sp+624h] [bp-44h]@67 | |
953 //char Dst[12]; // [sp+628h] [bp-40h]@9 | |
954 //char *v238; // [sp+634h] [bp-34h]@38 | |
955 ODMHeader header; // [sp+638h] [bp-30h]@61 | |
956 //void *ptr; // [sp+648h] [bp-20h]@66 | |
957 //size_t Count; // [sp+64Ch] [bp-1Ch]@109 | |
958 //int uSourceLen; // [sp+653h] [bp-15h]@66 | |
959 FILE *File; // [sp+658h] [bp-10h]@56 | |
960 //BLVSector *v244; // [sp+65Ch] [bp-Ch]@72 | |
961 //int v245; // [sp+660h] [bp-8h]@72 | |
962 //BLVFace *Src; // [sp+664h] [bp-4h]@73 | |
963 // signed int Argsa; // [sp+670h] [bp+8h]@4 | |
964 // signed int Argsb; // [sp+670h] [bp+8h]@7 | |
965 // signed int Argsc; // [sp+670h] [bp+8h]@15 | |
966 // signed int Argsd; // [sp+670h] [bp+8h]@18 | |
967 // int Argse; // [sp+670h] [bp+8h]@25 | |
968 // int Argsf; // [sp+670h] [bp+8h]@28 | |
969 // int Argsg; // [sp+670h] [bp+8h]@32 | |
970 // int Argsh; // [sp+670h] [bp+8h]@35 | |
971 // signed int Argsi; // [sp+670h] [bp+8h]@40 | |
972 // signed int Argsj; // [sp+670h] [bp+8h]@45 | |
973 //int Argsk; // [sp+670h] [bp+8h]@143 | |
974 //void *Argsl; // [sp+670h] [bp+8h]@155 | |
975 //signed int Argsm; // [sp+670h] [bp+8h]@161 | |
976 //signed int Argsn; // [sp+670h] [bp+8h]@175 | |
977 | |
978 //v5 = 0; | |
979 //v6 = this; | |
980 _6807E0_num_decorations_with_sounds_6807B8 = 0; | |
981 | |
982 #pragma region "loading from txt" | |
983 /*sprintf(FileName, "levels\\%s", pFilename); | |
984 if ( GetFileAttributesA(FileName) != -1 ) | |
985 { | |
986 Release(); | |
987 if ( Alloc() ) | |
988 { | |
989 v7 = fopen(FileName, "rb"); | |
990 result = 1; | |
991 if ( !v7 ) | |
992 return result; | |
993 v9 = pDest; | |
994 bLoaded = 1; | |
995 v202 = (int)v7; | |
996 v201 = (const char *)1; | |
997 *(int *)v9 = 1; | |
998 fread(&DstBuf, 0x180u, (size_t)v201, (FILE *)v202); | |
999 fseek(v7, Offset, 0); | |
1000 fread(&blv, 0x88u, 1u, v7); | |
1001 fseek(v7, v207, 0); | |
1002 fread(&uNumVertices, 1u, 4u, v7); | |
1003 fseek(v7, v208, 0); | |
1004 fread(pVertices, 6u, uNumVertices, v7); | |
1005 fseek(v7, v209, 0); | |
1006 fread(&uNumFaces, 4u, 1u, v7); | |
1007 fseek(v7, v210, 0); | |
1008 fread(pFaces, 0x60u, uNumFaces, v7); | |
1009 v10 = malloc(ptr_2AC, blv.uFaces_fdata_Size, "L.FData"); | |
1010 v202 = (int)v7; | |
1011 ptr_2AC = (unsigned __int16 *)v10; | |
1012 fread(v10, 1u, blv.uFaces_fdata_Size, (FILE *)v202); | |
1013 v11 = uNumFaces == 0; | |
1014 v12 = (uNumFaces & 0x80000000u) != 0; | |
1015 pDest = 0; | |
1016 Argsa = 0; | |
1017 if ( !(v12 | v11) ) | |
1018 { | |
1019 v13 = 0; | |
1020 do | |
1021 { | |
1022 pFaces[v13].pVertexIDs = (unsigned __int16 *)&pDest[(unsigned int)ptr_2AC]; | |
1023 v14 = (size_t)&pFaces[v13]; | |
1024 i = v14; | |
1025 v15 = &pDest[2 * *(char *)(v14 + 93) + 2]; | |
1026 v16 = (int)&v15[(unsigned int)ptr_2AC]; | |
1027 pDest = v15; | |
1028 *(int *)(i + 52) = v16; | |
1029 v17 = (size_t)&pFaces[v13]; | |
1030 i = v17; | |
1031 v18 = &pDest[2 * *(char *)(v17 + 93) + 2]; | |
1032 v19 = (int)&v18[(unsigned int)ptr_2AC]; | |
1033 pDest = v18; | |
1034 *(int *)(i + 56) = v19; | |
1035 i = (size_t)&pFaces[v13]; | |
1036 v20 = ptr_2AC; | |
1037 pDest += 2 * *(char *)(i + 93) + 2; | |
1038 *(int *)(i + 60) = (int)(char *)v20 + (int)pDest; | |
1039 i = (size_t)&pFaces[v13]; | |
1040 v21 = ptr_2AC; | |
1041 pDest += 2 * *(char *)(i + 93) + 2; | |
1042 *(int *)(i + 64) = (int)(char *)v21 + (int)pDest; | |
1043 i = (size_t)&pFaces[v13]; | |
1044 ++v13; | |
1045 v22 = ptr_2AC; | |
1046 pDest += 2 * *(char *)(i + 93) + 2; | |
1047 ++Argsa; | |
1048 *(int *)(i + 68) = (int)(char *)v22 + (int)pDest; | |
1049 pDest += 2 * *((char *)&pFaces[v13] - 3) + 2; | |
1050 } | |
1051 while ( Argsa < (signed int)uNumFaces ); | |
1052 } | |
1053 Argsb = 0; | |
1054 if ( (signed int)uNumFaces > 0 ) | |
1055 { | |
1056 pDest = 0; | |
1057 do | |
1058 { | |
1059 fread(Dst, 1u, 0xAu, v7); | |
1060 if ( pDest[(unsigned int)pFaces + 45] & 0x40 ) | |
1061 { | |
1062 v23 = pTextureFrameTable->FindTextureByName(Dst); | |
1063 v24 = pDest; | |
1064 *(short *)&pDest[(unsigned int)pFaces + 74] = v23; | |
1065 v25 = *(short *)&v24[(unsigned int)pFaces + 74]; | |
1066 if ( v25 ) | |
1067 { | |
1068 pTextureFrameTable->LoadAnimationSequenceAndPalettes(v25); | |
1069 } | |
1070 else | |
1071 { | |
1072 v26 = pBitmaps_LOD->LoadTexture(Dst); | |
1073 v27 = pDest; | |
1074 *(short *)&pDest[(unsigned int)pFaces + 74] = v26; | |
1075 v27[(unsigned int)pFaces + 45] &= 0xBFu; | |
1076 } | |
1077 } | |
1078 else | |
1079 { | |
1080 *(short *)&pDest[(unsigned int)pFaces + 74] = pBitmaps_LOD->LoadTexture(Dst); | |
1081 } | |
1082 ++Argsb; | |
1083 pDest += 96; | |
1084 } | |
1085 while ( Argsb < (signed int)uNumFaces ); | |
1086 } | |
1087 fseek(v7, v211, 0); | |
1088 fread(&uNumFaceExtras, 4u, 1u, v7); | |
1089 fseek(v7, v212, 0); | |
1090 fread(pFaceExtras, 0x24u, uNumFaceExtras, v7); | |
1091 Argsc = 0; | |
1092 if ( (signed int)uNumFaceExtras > 0 ) | |
1093 { | |
1094 pDest = 0; | |
1095 do | |
1096 { | |
1097 fread(Dst, 1u, 0xAu, v7); | |
1098 v28 = pBitmaps_LOD->LoadTexture(Dst); | |
1099 v29 = pFaceExtras; | |
1100 v30 = pDest; | |
1101 ++Argsc; | |
1102 pDest += 36; | |
1103 *(unsigned __int16 *)((char *)&v29->uAdditionalBitmapID + (int)v30) = v28; | |
1104 } | |
1105 while ( Argsc < (signed int)uNumFaceExtras ); | |
1106 } | |
1107 Argsd = 0; | |
1108 if ( (signed int)uNumFaces > 0 ) | |
1109 { | |
1110 pDest = 0; | |
1111 do | |
1112 { | |
1113 v31 = (int)&pFaceExtras[*(short *)&pDest[(unsigned int)pFaces + 72]]; | |
1114 if ( *(short *)(v31 + 26) ) | |
1115 { | |
1116 if ( ((BLVFaceExtra *)v31)->HasEventint() ) | |
1117 pDest[(unsigned int)pFaces + 46] |= 0x10u; | |
1118 else | |
1119 pDest[(unsigned int)pFaces + 46] &= 0xEFu; | |
1120 } | |
1121 ++Argsd; | |
1122 pDest += 96; | |
1123 } | |
1124 while ( Argsd < (signed int)uNumFaces ); | |
1125 } | |
1126 fseek(v7, v213, 0); | |
1127 fread(&uNumSectors, 4u, 1u, v7); | |
1128 fseek(v7, v214, 0); | |
1129 fread(pSectors, 0x74u, uNumSectors, v7); | |
1130 v32 = malloc(ptr_0002B0_sector_rdata, blv.uSector_rdata_Size, "L.RData"); | |
1131 v202 = (int)v7; | |
1132 ptr_0002B0_sector_rdata = (unsigned __int16 *)v32; | |
1133 fread(v32, 1u, blv.uSector_rdata_Size, (FILE *)v202); | |
1134 v11 = uNumSectors == 0; | |
1135 v12 = uNumSectors < 0; | |
1136 pDest = 0; | |
1137 Argse = 0; | |
1138 if ( !(v12 | v11) ) | |
1139 { | |
1140 v33 = 0; | |
1141 do | |
1142 { | |
1143 pSectors[v33].pFloors = (unsigned __int16 *)&pDest[(unsigned int)ptr_0002B0_sector_rdata]; | |
1144 i = (size_t)&pSectors[v33]; | |
1145 v34 = ptr_0002B0_sector_rdata; | |
1146 pDest += 2 * *(short *)(i + 4); | |
1147 *(int *)(i + 16) = (int)(char *)v34 + (int)pDest; | |
1148 v35 = (size_t)&pSectors[v33]; | |
1149 i = v35; | |
1150 v36 = &pDest[2 * *(short *)(v35 + 12)]; | |
1151 v37 = (int)&v36[(unsigned int)ptr_0002B0_sector_rdata]; | |
1152 pDest = v36; | |
1153 *(int *)(i + 24) = v37; | |
1154 v38 = (size_t)&pSectors[v33]; | |
1155 i = v38; | |
1156 v39 = &pDest[2 * *(short *)(v38 + 20)]; | |
1157 v40 = (int)&v39[(unsigned int)ptr_0002B0_sector_rdata]; | |
1158 pDest = v39; | |
1159 *(int *)(i + 32) = v40; | |
1160 i = (size_t)&pSectors[v33]; | |
1161 v41 = ptr_0002B0_sector_rdata; | |
1162 pDest += 2 * *(short *)(i + 28); | |
1163 *(int *)(i + 40) = (int)(char *)v41 + (int)pDest; | |
1164 i = (size_t)&pSectors[v33]; | |
1165 v42 = ptr_0002B0_sector_rdata; | |
1166 pDest += 2 * *(short *)(i + 36); | |
1167 *(int *)(i + 48) = (int)(char *)v42 + (int)pDest; | |
1168 i = (size_t)&pSectors[v33]; | |
1169 v43 = ptr_0002B0_sector_rdata; | |
1170 pDest += 2 * *(short *)(i + 44); | |
1171 *(int *)(i + 64) = (int)(char *)v43 + (int)pDest; | |
1172 i = (size_t)&pSectors[v33]; | |
1173 v44 = ptr_0002B0_sector_rdata; | |
1174 pDest += 2 * *(short *)(i + 60); | |
1175 *(int *)(i + 72) = (int)(char *)v44 + (int)pDest; | |
1176 v45 = (size_t)&pSectors[v33]; | |
1177 ++v33; | |
1178 i = v45; | |
1179 v46 = ptr_0002B0_sector_rdata; | |
1180 pDest += 2 * *(short *)(v45 + 68); | |
1181 ++Argse; | |
1182 *(int *)(v45 + 80) = (int)(char *)v46 + (int)pDest; | |
1183 pDest += 2 * *((short *)&pSectors[v33] - 20); | |
1184 } | |
1185 while ( Argse < uNumSectors ); | |
1186 } | |
1187 v47 = malloc( | |
1188 ptr_0002B8_sector_lrdata, | |
1189 blv.uSector_lrdata_Size, | |
1190 "L.RLData"); | |
1191 v202 = (int)v7; | |
1192 ptr_0002B8_sector_lrdata = (unsigned __int16 *)v47; | |
1193 fread(v47, 1u, blv.uSector_lrdata_Size, (FILE *)v202); | |
1194 v11 = uNumSectors == 0; | |
1195 v12 = uNumSectors < 0; | |
1196 pDest = 0; | |
1197 Argsf = 0; | |
1198 if ( !(v12 | v11) ) | |
1199 { | |
1200 v48 = pSectors; | |
1201 v49 = 0; | |
1202 for ( i = 0; ; v49 = i ) | |
1203 { | |
1204 v50 = ptr_0002B8_sector_lrdata; | |
1205 i += 116; | |
1206 ++Argsf; | |
1207 *(BLVLightMM7 **)((char *)&v48->pLights + v49) = (BLVLightMM7 *)((char *)v50 + (int)pDest); | |
1208 v48 = pSectors; | |
1209 pDest += 2 * *(__int16 *)((char *)&v48->uNumLights + v49); | |
1210 if ( Argsf >= uNumSectors ) | |
1211 break; | |
1212 } | |
1213 } | |
1214 fseek(v7, v215, 0); | |
1215 fread(&uNumDoors, 4u, 1u, v7); | |
1216 fseek(v7, v216, 0); | |
1217 fread(pDoors, 0x50u, 0xC8u, v7); | |
1218 v51 = malloc(ptr_0002B4_doors_ddata, blv.uDoors_ddata_Size, "L.DData"); | |
1219 v202 = (int)v7; | |
1220 ptr_0002B4_doors_ddata = (unsigned __int16 *)v51; | |
1221 fread(v51, 1u, blv.uDoors_ddata_Size, (FILE *)v202); | |
1222 v11 = uNumDoors == 0; | |
1223 v12 = uNumDoors < 0; | |
1224 pDest = 0; | |
1225 Argsg = 0; | |
1226 if ( !(v12 | v11) ) | |
1227 { | |
1228 v52 = 0; | |
1229 do | |
1230 { | |
1231 pDoors[v52].pVertexIDs = (unsigned __int16 *)&pDest[(unsigned int)ptr_0002B4_doors_ddata]; | |
1232 i = (size_t)&pDoors[v52]; | |
1233 v53 = ptr_0002B4_doors_ddata; | |
1234 pDest += 2 * *(short *)(i + 68); | |
1235 *(int *)(i + 40) = (int)(char *)v53 + (int)pDest; | |
1236 v54 = (size_t)&pDoors[v52]; | |
1237 i = v54; | |
1238 v55 = &pDest[2 * *(short *)(v54 + 70)]; | |
1239 v56 = (int)&v55[(unsigned int)ptr_0002B4_doors_ddata]; | |
1240 pDest = v55; | |
1241 *(int *)(i + 44) = v56; | |
1242 v57 = (size_t)&pDoors[v52]; | |
1243 i = v57; | |
1244 v58 = &pDest[2 * *(short *)(v57 + 72)]; | |
1245 v59 = (int)&v58[(unsigned int)ptr_0002B4_doors_ddata]; | |
1246 pDest = v58; | |
1247 *(int *)(i + 48) = v59; | |
1248 i = (size_t)&pDoors[v52]; | |
1249 v60 = ptr_0002B4_doors_ddata; | |
1250 pDest += 2 * *(short *)(i + 70); | |
1251 *(int *)(i + 52) = (int)(char *)v60 + (int)pDest; | |
1252 i = (size_t)&pDoors[v52]; | |
1253 v61 = ptr_0002B4_doors_ddata; | |
1254 pDest += 2 * *(short *)(i + 70); | |
1255 *(int *)(i + 56) = (int)(char *)v61 + (int)pDest; | |
1256 i = (size_t)&pDoors[v52]; | |
1257 v62 = ptr_0002B4_doors_ddata; | |
1258 pDest += 2 * *(short *)(i + 74); | |
1259 *(int *)(i + 60) = (int)(char *)v62 + (int)pDest; | |
1260 i = (size_t)&pDoors[v52]; | |
1261 v63 = ptr_0002B4_doors_ddata; | |
1262 pDest += 2 * *(short *)(i + 74); | |
1263 *(int *)(i + 64) = (int)(char *)v63 + (int)pDest; | |
1264 ++Argsg; | |
1265 v64 = pDoors[v52].uNumOffsets; | |
1266 ++v52; | |
1267 pDest += 2 * v64; | |
1268 } | |
1269 while ( Argsg < uNumDoors ); | |
1270 } | |
1271 Argsh = 0; | |
1272 if ( uNumDoors > 0 ) | |
1273 { | |
1274 v65 = pDoors; | |
1275 pDest = 0; | |
1276 do | |
1277 { | |
1278 i = 0; | |
1279 v66 = &pDest[(int)v65]; | |
1280 if ( *(short *)&pDest[(int)v65 + 70] > 0 ) | |
1281 { | |
1282 do | |
1283 { | |
1284 v67 = *((int *)v66 + 10); | |
1285 a3 = 2 * i; | |
1286 v68 = *(short *)(v67 + 2 * i); | |
1287 v69 = pFaces; | |
1288 ++i; | |
1289 v70 = (int)&pFaceExtras[v69[v68].uFaceExtraID]; | |
1290 v71 = *((int *)v66 + 12); | |
1291 v72 = a3; | |
1292 v238 = (char *)v70; | |
1293 *(short *)(a3 + v71) = *(short *)(v70 + 20); | |
1294 *(__int16 *)(*(char **)((char *)&pDoors->pDeltaVs + (unsigned int)pDest) + v72) = *((short *)v238 + 11); | |
1295 v65 = pDoors; | |
1296 v66 = &pDest[(int)v65]; | |
1297 } | |
1298 while ( (signed int)i < *(short *)&pDest[(int)v65 + 70] ); | |
1299 } | |
1300 ++Argsh; | |
1301 pDest += 80; | |
1302 } | |
1303 while ( Argsh < uNumDoors ); | |
1304 } | |
1305 fseek(v7, v217, 0); | |
1306 fread(&uNumLevelDecorations, 4u, 1u, v7); | |
1307 fseek(v7, v218, 0); | |
1308 fread(pLevelDecorations, 0x20u, uNumLevelDecorations, v7); | |
1309 Argsi = 0; | |
1310 if ( (signed int)uNumLevelDecorations > 0 ) | |
1311 { | |
1312 pDest = (char *)pLevelDecorations; | |
1313 do | |
1314 { | |
1315 fread(pName, 1u, 0x20u, v7); | |
1316 v73 = pDecorationList->GetDecorIdByName(pName); | |
1317 v74 = pDest; | |
1318 ++Argsi; | |
1319 pDest += 32; | |
1320 *(short *)v74 = v73; | |
1321 } | |
1322 while ( Argsi < (signed int)uNumLevelDecorations ); | |
1323 } | |
1324 fseek(v7, v219, 0); | |
1325 fread(&uNumSpriteObjects, 4u, 1u, v7); | |
1326 fseek(v7, v220, 0); | |
1327 fread(pSpriteObjects, 0x70u, uNumSpriteObjects, v7); | |
1328 if ( (signed int)uNumSpriteObjects > 0 ) | |
1329 { | |
1330 v75 = pSpriteObjects; | |
1331 pDest = (char *)uNumSpriteObjects; | |
1332 do | |
1333 { | |
1334 Argsj = 0; | |
1335 v76 = 48 * v75->stru_24.uItemID; | |
1336 v11 = pObjectList->uNumObjects == 0; | |
1337 v12 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1338 LOWORD(v76) = *(unsigned __int16 *)((char *)&pItemsTable->pItems[0].uSpriteID + v76); | |
1339 i = v76; | |
1340 v75->uItemType = v76; | |
1341 if ( v12 | v11 ) | |
1342 { | |
1343 LABEL_50: | |
1344 v78 = 0; | |
1345 } | |
1346 else | |
1347 { | |
1348 for ( j = (int)&pObjectList->pObjects->uObjectID; (short)v76 != *(short *)j; j = a3 ) | |
1349 { | |
1350 ++Argsj; | |
1351 a3 = j + 56; | |
1352 if ( Argsj >= (signed int)pObjectList->uNumObjects ) | |
1353 goto LABEL_50; | |
1354 LOWORD(v76) = i; | |
1355 } | |
1356 v78 = Argsj; | |
1357 } | |
1358 v75->uObjectDescID = v78; | |
1359 ++v75; | |
1360 --pDest; | |
1361 } | |
1362 while ( pDest ); | |
1363 } | |
1364 fseek(v7, v221, 0); | |
1365 fread(&uNumActors, 4u, 1u, v7); | |
1366 fseek(v7, v222, 0); | |
1367 fread(pActors, 0x344u, uNumActors, v7); | |
1368 fseek(v7, v228, 0); | |
1369 fread(&uNumChests, 4u, 1u, v7); | |
1370 fseek(v7, v229, 0); | |
1371 fread(pChests, 0x14CCu, uNumChests, v7); | |
1372 fseek(v7, v224, 0); | |
1373 fread(&uNumLights, 4u, 1u, v7); | |
1374 fseek(v7, v225, 0); | |
1375 fread(pLights, 0x10u, uNumLights, v7); | |
1376 fseek(v7, v226, 0); | |
1377 fread(&uNumNodes, 4u, 1u, v7); | |
1378 fseek(v7, v227, 0); | |
1379 fread(pNodes, 8u, uNumNodes, v7); | |
1380 fseek(v7, v230, 0); | |
1381 fread(&uNumSpawnPoints, 4u, 1u, v7); | |
1382 v79 = malloc(pSpawnPoints, 24 * uNumSpawnPoints, "Spawn"); | |
1383 v202 = 0; | |
1384 pSpawnPoints = (SpawnPointMM7 *)v79; | |
1385 fseek(v7, v231, v202); | |
1386 fread(pSpawnPoints, 0x18u, uNumSpawnPoints, v7); | |
1387 fseek(v7, v232, 0); | |
1388 fread(&dlv, 0x28u, 1u, v7); | |
1389 fseek(v7, v233, 0); | |
1390 fread(&stru_5E4C90, 1u, 0xC8u, v7); | |
1391 fseek(v7, v234, 0); | |
1392 fread(&uLastVisitDay, 1u, 0x38u, v7); | |
1393 fseek(v7, v223, 0); | |
1394 v80 = (void **)&pMapOutlines; | |
1395 fread(*v80, 4u, 1u, v7); | |
1396 fread((char *)*v80 + 4, 0xCu, *(int *)*v80, v7); | |
1397 fclose(v7); | |
1398 goto LABEL_179; | |
1399 } | |
1400 return 4; | |
1401 }*/ | |
1402 #pragma endregion | |
1403 | |
1404 if (bLoaded) | |
1405 { | |
1406 Log::Warning(L"BLV is already loaded"); | |
1407 return 3; | |
1408 } | |
1409 | |
1410 if ( !pGames_LOD->DoesContainerExist(pFilename) ) | |
1411 Error("Unable to find %s in Games.LOD", pFilename); | |
1412 | |
1413 //v238 = pFilename - 4; | |
1414 //v81 = strlen(pFilename); | |
1415 strcpy(this->pFilename, pFilename); | |
1416 strcpy(&pFilename[strlen(pFilename) - 4], ".blv"); | |
1417 File = pGames_LOD->FindContainer(pFilename, 1); | |
1418 //File = v82; | |
1419 | |
1420 Release(); | |
1421 if ( !Alloc() ) | |
1422 return 4; | |
1423 | |
1424 header.uVersion = 91969; | |
1425 header.pMagic[0] = 'm'; | |
1426 header.pMagic[1] = 'v'; | |
1427 header.pMagic[2] = 'i'; | |
1428 header.pMagic[3] = 'i'; | |
1429 header.uCompressedSize = 0; | |
1430 header.uDecompressedSize = 0; | |
1431 fread(&header, sizeof(ODMHeader), 1, File); | |
1432 if (header.uVersion != 91969 || | |
1433 header.pMagic[0] != 'm' || | |
1434 header.pMagic[1] != 'v' || | |
1435 header.pMagic[2] != 'i' || | |
1436 header.pMagic[3] != 'i' ) | |
1437 { | |
1438 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:792", 0); | |
1439 } | |
1440 //v83 = header.uCompressedSize; | |
1441 //pSource = header.uDecompressedSize; | |
1442 //v84 = malloc(header.uDecompressedSize); | |
1443 //v85 = v84; | |
1444 //ptr = v84; | |
1445 void* pRawBLV = malloc(header.uDecompressedSize); | |
1446 memset(pRawBLV, 0, header.uDecompressedSize); | |
1447 | |
1448 if (header.uCompressedSize == header.uDecompressedSize) | |
1449 fread(pRawBLV, header.uDecompressedSize, 1, File); | |
1450 else if (header.uCompressedSize < header.uDecompressedSize) | |
1451 { | |
1452 void* pTmpMem = malloc(header.uCompressedSize); | |
1453 { | |
1454 fread(pTmpMem, header.uCompressedSize, 1, File); | |
1455 | |
1456 uint uDecompressedSize = header.uDecompressedSize; | |
1457 zlib::MemUnzip(pRawBLV, &uDecompressedSize, pTmpMem, header.uCompressedSize); | |
1458 | |
1459 if (uDecompressedSize != header.uDecompressedSize) | |
1460 Log::Warning(L"uDecompressedSize != header.uDecompressedSize in BLV"); | |
1461 } | |
1462 free(pTmpMem); | |
1463 } | |
1464 else | |
1465 { | |
1466 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:803", 0); | |
1467 return 0; | |
1468 } | |
1469 | |
1470 bLoaded = true; | |
1471 | |
1472 char* pData = (char *)pRawBLV; | |
1473 | |
1474 pGameLoadingUI_ProgressBar->Progress(); | |
1475 | |
1476 memcpy(&blv, pData, 136); | |
1477 memcpy(&uNumVertices, pData += 136, 4); | |
1478 memcpy(pVertices, pData += 4, uNumVertices * sizeof(Vec3_short_)); | |
1479 | |
1480 pGameLoadingUI_ProgressBar->Progress(); | |
1481 | |
1482 memcpy(&uNumFaces, pData += uNumVertices * sizeof(Vec3_short_), 4); | |
1483 | |
1484 pGameLoadingUI_ProgressBar->Progress(); | |
1485 | |
1486 memcpy(pFaces, pData += 4, uNumFaces * sizeof (BLVFace)); | |
1487 pLFaces = (unsigned __int16 *)malloc(blv.uFaces_fdata_Size); | |
1488 | |
1489 memcpy(pLFaces, pData += uNumFaces * sizeof (BLVFace), blv.uFaces_fdata_Size); | |
1490 | |
1491 for (uint i = 0, j = 0; i < uNumFaces; ++i) | |
1492 { | |
1493 BLVFace* pFace = &pFaces[i]; | |
1494 | |
1495 pFace->pVertexIDs = &pLFaces[j]; | |
1496 | |
1497 j += pFace->uNumVertices + 1; | |
1498 pFace->pXInterceptDisplacements = (short *)(&pLFaces[j]); | |
1499 | |
1500 j += pFace->uNumVertices + 1; | |
1501 pFace->pYInterceptDisplacements = (short *)(&pLFaces[j]); | |
1502 | |
1503 j += pFace->uNumVertices + 1; | |
1504 pFace->pZInterceptDisplacements = (short *)(&pLFaces[j]); | |
1505 | |
1506 j += pFace->uNumVertices + 1; | |
1507 pFace->pVertexUIDs = (__int16 *)(&pLFaces[j]); | |
1508 | |
1509 j += pFace->uNumVertices + 1; | |
1510 pFace->pVertexVIDs = (__int16 *)(&pLFaces[j]); | |
1511 | |
1512 j += pFace->uNumVertices + 1; | |
1513 /*v93 = &pFaces[v92]; | |
1514 Src = v93; | |
1515 v94 = (BLVSector *)((char *)v244 + 2 * v93->uNumVertices + 2); | |
1516 v95 = (unsigned __int16 *)((char *)v94 + (unsigned int)ptr_2AC); | |
1517 v244 = v94; | |
1518 Src->pXInterceptDisplacements = v95; | |
1519 v96 = (int)&pFaces[v92]; | |
1520 Src = (BLVFace *)v96; | |
1521 v97 = (BLVSector *)((char *)v244 + 2 * *(char *)(v96 + 93) + 2); | |
1522 v98 = (unsigned __int16 *)((char *)v97 + (unsigned int)ptr_2AC); | |
1523 v244 = v97; | |
1524 Src->pYInterceptDisplacements = v98; | |
1525 Src = &pFaces[v92]; | |
1526 v99 = ptr_2AC; | |
1527 v244 = (BLVSector *)((char *)v244 + 2 * Src->uNumVertices + 2); | |
1528 Src->pZInterceptDisplacements = (unsigned __int16 *)((char *)v99 + (int)v244); | |
1529 Src = &pFaces[v92]; | |
1530 v100 = ptr_2AC; | |
1531 v244 = (BLVSector *)((char *)v244 + 2 * Src->uNumVertices + 2); | |
1532 Src->pVertexUIDs = (unsigned __int16 *)((char *)v100 + (int)v244); | |
1533 Src = &pFaces[v92]; | |
1534 ++v92; | |
1535 v101 = ptr_2AC; | |
1536 v244 = (BLVSector *)((char *)v244 + 2 * Src->uNumVertices + 2); | |
1537 ++v245; | |
1538 Src->pVertexVIDs = (unsigned __int16 *)((char *)v101 + (int)v244); | |
1539 v244 = (BLVSector *)((char *)v244 + 2 * *((char *)&pFaces[v92] - 3) + 2);*/ | |
1540 } | |
1541 | |
1542 pGameLoadingUI_ProgressBar->Progress(); | |
1543 | |
1544 pData += blv.uFaces_fdata_Size; | |
1545 | |
1546 for (uint i = 0; i < uNumFaces; ++i) | |
1547 { | |
1548 BLVFace* pFace = &pFaces[i]; | |
1549 | |
1550 char pTexName[16]; | |
1551 strncpy(pTexName, pData, 10); | |
1552 pData += 10; | |
1553 | |
1554 if (pFace->uAttributes & FACE_TEXTURE_FRAME) | |
1555 { | |
1556 pFace->uBitmapID = pTextureFrameTable->FindTextureByName(pTexName); | |
1557 if (pFace->uBitmapID) | |
1558 pTextureFrameTable->LoadAnimationSequenceAndPalettes(pFace->uBitmapID); | |
1559 else | |
1560 { | |
1561 pFace->uBitmapID = pBitmaps_LOD->LoadTexture(pTexName); | |
1562 pFace->uAttributes &= ~FACE_TEXTURE_FRAME; | |
1563 } | |
1564 } | |
1565 else | |
1566 pFace->uBitmapID = pBitmaps_LOD->LoadTexture(pTexName); | |
1567 } | |
1568 | |
1569 pGameLoadingUI_ProgressBar->Progress(); | |
1570 | |
1571 memcpy(&uNumFaceExtras, pData, 4); | |
1572 memcpy(pFaceExtras, pData += 4, uNumFaceExtras * sizeof(BLVFaceExtra)); | |
1573 pData += uNumFaceExtras * sizeof(BLVFaceExtra); | |
1574 | |
1575 pGameLoadingUI_ProgressBar->Progress(); | |
1576 | |
1577 //v108 = (char *)v107 + 36 * uNumFaceExtras; | |
1578 //v245 = 0; | |
1579 //*(int *)((char *)&uSourceLen + 1) = 0; | |
1580 for (uint i = 0; i < uNumFaceExtras; ++i) | |
1581 { | |
1582 char pTexName[32]; | |
1583 strncpy(pTexName, pData, 10); | |
1584 pData += 10; | |
1585 | |
1586 if (!strcmp(pTexName, "")) | |
1587 pFaceExtras[i].uAdditionalBitmapID = -1; | |
1588 else | |
1589 pFaceExtras[i].uAdditionalBitmapID = pBitmaps_LOD->LoadTexture(pTexName); | |
1590 } | |
1591 | |
1592 | |
1593 for (uint i = 0; i < uNumFaces; ++i) | |
1594 { | |
1595 BLVFace* pFace = &pFaces[i]; | |
1596 BLVFaceExtra* pFaceExtra = &pFaceExtras[pFace->uFaceExtraID]; | |
1597 | |
1598 if (pFaceExtra->uEventID) | |
1599 { | |
1600 if (pFaceExtra->HasEventint()) | |
1601 pFace->uAttributes |= FACE_HAS_EVENT; | |
1602 else | |
1603 pFace->uAttributes &= ~FACE_HAS_EVENT; | |
1604 } | |
1605 } | |
1606 | |
1607 pGameLoadingUI_ProgressBar->Progress(); | |
1608 | |
1609 memcpy(&uNumSectors, pData, 4); | |
1610 memcpy(pSectors, pData + 4, uNumSectors * sizeof(BLVSector)); | |
1611 pData += 4 + uNumSectors * sizeof(BLVSector); | |
1612 | |
1613 pGameLoadingUI_ProgressBar->Progress(); | |
1614 | |
1615 ptr_0002B0_sector_rdata = (unsigned short *)malloc(blv.uSector_rdata_Size);//, "L.RData"); | |
1616 memcpy(ptr_0002B0_sector_rdata, pData, blv.uSector_rdata_Size); | |
1617 pData += blv.uSector_rdata_Size; | |
1618 | |
1619 for (uint i = 0, j = 0; i < uNumSectors; ++i) | |
1620 { | |
1621 BLVSector* pSector = &pSectors[i]; | |
1622 | |
1623 pSector->pFloors = &ptr_0002B0_sector_rdata[j]; | |
1624 j += pSector->uNumFloors; | |
1625 | |
1626 pSector->pWalls = &ptr_0002B0_sector_rdata[j]; | |
1627 j += pSector->uNumWalls; | |
1628 | |
1629 pSector->pCeilings = &ptr_0002B0_sector_rdata[j]; | |
1630 j += pSector->uNumCeilings; | |
1631 | |
1632 pSector->pFluids = &ptr_0002B0_sector_rdata[j]; | |
1633 j += pSector->uNumFluids; | |
1634 | |
1635 pSector->pPortals = &ptr_0002B0_sector_rdata[j]; | |
1636 j += pSector->uNumPortals; | |
1637 | |
1638 pSector->pFaceIDs = &ptr_0002B0_sector_rdata[j]; | |
1639 j += pSector->uNumFaces; | |
1640 | |
1641 pSector->pCogs = &ptr_0002B0_sector_rdata[j]; | |
1642 j += pSector->uNumCogs; | |
1643 | |
1644 pSector->pDecorationIDs = &ptr_0002B0_sector_rdata[j]; | |
1645 j += pSector->uNumDecorations; | |
1646 | |
1647 pSector->pMarkers = &ptr_0002B0_sector_rdata[j]; | |
1648 j += pSector->uNumMarkers; | |
1649 | |
1650 | |
1651 //do | |
1652 //{ | |
1653 /*pSectors[v118].pFloors = (unsigned __int16 *)((char *)Src + (unsigned int)ptr_0002B0_sector_rdata); | |
1654 v244 = &pSectors[v118]; | |
1655 v119 = ptr_0002B0_sector_rdata; | |
1656 Src = (BLVFace *)((char *)Src + 2 * v244->field_4); | |
1657 v244->pWalls = (unsigned __int16 *)((char *)v119 + (int)Src); | |
1658 v120 = (int)&pSectors[v118]; | |
1659 v244 = (BLVSector *)v120; | |
1660 v121 = (BLVFace *)((char *)Src + 2 * *(short *)(v120 + 12)); | |
1661 v122 = (unsigned __int16 *)((char *)v121 + (unsigned int)ptr_0002B0_sector_rdata); | |
1662 Src = v121; | |
1663 v244->pCeilings = v122; | |
1664 v123 = (int)&pSectors[v118]; | |
1665 v244 = (BLVSector *)v123; | |
1666 v124 = (BLVFace *)((char *)Src + 2 * *(short *)(v123 + 20)); | |
1667 v125 = (unsigned __int16 *)((char *)v124 + (unsigned int)ptr_0002B0_sector_rdata); | |
1668 Src = v124; | |
1669 v244->pFluids = v125; | |
1670 v244 = &pSectors[v118]; | |
1671 v126 = ptr_0002B0_sector_rdata; | |
1672 Src = (BLVFace *)((char *)Src + 2 * v244->field_1C); | |
1673 v244->pPortals = (unsigned __int16 *)((char *)v126 + (int)Src); | |
1674 v244 = &pSectors[v118]; | |
1675 v127 = ptr_0002B0_sector_rdata; | |
1676 Src = (BLVFace *)((char *)Src + 2 * v244->uNumPortals); | |
1677 v244->pFaceIDs = (unsigned __int16 *)((char *)v127 + (int)Src); | |
1678 v244 = &pSectors[v118]; | |
1679 v128 = ptr_0002B0_sector_rdata; | |
1680 Src = (BLVFace *)((char *)Src + 2 * v244->field_2C); | |
1681 v244->pCogs = (unsigned __int16 *)((char *)v128 + (int)Src); | |
1682 v244 = &pSectors[v118]; | |
1683 v129 = ptr_0002B0_sector_rdata; | |
1684 Src = (BLVFace *)((char *)Src + 2 * v244->field_3C); | |
1685 v244->pDecorationIDs = (unsigned __int16 *)((char *)v129 + (int)Src); | |
1686 v130 = (int)&pSectors[v118]; | |
1687 ++v118; | |
1688 v244 = (BLVSector *)v130; | |
1689 v131 = ptr_0002B0_sector_rdata; | |
1690 Src = (BLVFace *)((char *)Src + 2 * *(short *)(v130 + 68)); | |
1691 ++v245; | |
1692 *(int *)(v130 + 80) = (int)(char *)v131 + (int)Src; | |
1693 Src = (BLVFace *)((char *)Src + 2 * *((short *)&pSectors[v118] - 20));*/ | |
1694 //} | |
1695 //while ( v245 < uNumSectors ); | |
1696 } | |
1697 | |
1698 ptr_0002B8_sector_lrdata = (unsigned __int16 *)malloc(blv.uSector_lrdata_Size);//, "L.RLData"); | |
1699 memcpy(ptr_0002B8_sector_lrdata, pData, blv.uSector_lrdata_Size); | |
1700 pData += blv.uSector_lrdata_Size; | |
1701 | |
1702 pGameLoadingUI_ProgressBar->Progress(); | |
1703 | |
1704 for (uint i = 0, j = 0; i < uNumSectors; ++i) | |
1705 { | |
1706 pSectors[i].pLights = ptr_0002B8_sector_lrdata + j; | |
1707 j += pSectors[i].uNumLights; | |
1708 } | |
1709 | |
1710 pGameLoadingUI_ProgressBar->Progress(); | |
1711 | |
1712 memcpy(&uNumDoors, pData, 4); | |
1713 pData += 4; | |
1714 | |
1715 pGameLoadingUI_ProgressBar->Progress(); | |
1716 pGameLoadingUI_ProgressBar->Progress(); | |
1717 | |
1718 memcpy(&uNumLevelDecorations, pData, 4); | |
1719 memcpy(pLevelDecorations.data(), pData + 4, uNumLevelDecorations * sizeof(LevelDecoration)); | |
1720 pData += 4 + uNumLevelDecorations * sizeof(LevelDecoration); | |
1721 | |
1722 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
1723 { | |
1724 pLevelDecorations[i].uDecorationDescID = pDecorationList->GetDecorIdByName(pData); | |
1725 | |
1726 pData += 32; | |
1727 } | |
1728 | |
1729 pGameLoadingUI_ProgressBar->Progress(); | |
1730 | |
1731 memcpy(&uNumLights, pData, 4); | |
1732 memcpy(pLights, pData + 4, uNumLights * sizeof(BLVLightMM7)); | |
1733 pData += 4 + uNumLights * sizeof(BLVLightMM7); | |
1734 | |
1735 pGameLoadingUI_ProgressBar->Progress(); | |
1736 pGameLoadingUI_ProgressBar->Progress(); | |
1737 | |
1738 memcpy(&uNumNodes, pData, 4); | |
1739 memcpy(pNodes, pData + 4, uNumNodes * sizeof(BSPNode)); | |
1740 pData += 4 + uNumNodes * sizeof(BSPNode); | |
1741 | |
1742 pGameLoadingUI_ProgressBar->Progress(); | |
1743 pGameLoadingUI_ProgressBar->Progress(); | |
1744 | |
1745 memcpy(&uNumSpawnPoints, pData, 4); | |
1746 pSpawnPoints = (SpawnPointMM7 *)malloc(uNumSpawnPoints * sizeof(SpawnPointMM7)); | |
1747 memcpy(pSpawnPoints, pData + 4, uNumSpawnPoints * sizeof(SpawnPointMM7)); | |
1748 pData += 4 + uNumSpawnPoints * sizeof(SpawnPointMM7); | |
1749 | |
1750 pGameLoadingUI_ProgressBar->Progress(); | |
1751 pGameLoadingUI_ProgressBar->Progress(); | |
1752 | |
1753 //v201 = (const char *)v148; | |
1754 //v200 = (size_t)pMapOutlines; | |
1755 memcpy(&pMapOutlines->uNumOutlines, pData, 4); | |
1756 memcpy(pMapOutlines->pOutlines, pData + 4, pMapOutlines->uNumOutlines * sizeof(BLVMapOutline)); | |
1757 //v149 = pMapOutlines; | |
1758 //v199 = 12 * *v149; | |
1759 //memcpy(v149 + 1, (const void *)(v148 + 4), v199); | |
1760 free(pRawBLV); | |
1761 pRawBLV = nullptr; | |
1762 | |
1763 void *pRawDLV = nullptr; | |
1764 strcpy(&pFilename[strlen(pFilename) - 4], ".dlv"); | |
1765 File = pNew_LOD->FindContainer(pFilename, 1);//error on D28.dlv | |
1766 fread(&header, 0x10, 1, File);//(FILE *)v245); | |
1767 bool _v244 = false; | |
1768 if (header.uVersion != 91969 || | |
1769 header.pMagic[0] != 'm' || | |
1770 header.pMagic[1] != 'v' || | |
1771 header.pMagic[2] != 'i' || | |
1772 header.pMagic[3] != 'i' ) | |
1773 { | |
1774 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:1090", 0); | |
1775 _v244 = true; | |
1776 } | |
1777 else | |
1778 { | |
1779 pRawDLV = malloc(header.uDecompressedSize); | |
1780 if (header.uCompressedSize == header.uDecompressedSize) | |
1781 fread(pRawDLV, 1, header.uCompressedSize, File); | |
1782 else if (header.uCompressedSize < header.uDecompressedSize) | |
1783 { | |
1784 void* pTmpMem = malloc(header.uCompressedSize); | |
1785 { | |
1786 fread(pTmpMem, header.uCompressedSize, 1, File); | |
1787 | |
1788 uint uDecompressedSize = header.uDecompressedSize; | |
1789 zlib::MemUnzip(pRawDLV, &uDecompressedSize, pTmpMem, header.uCompressedSize); | |
1790 | |
1791 if (uDecompressedSize != header.uDecompressedSize) | |
1792 Log::Warning(L"uDecompressedSize != header.uDecompressedSize in DLV"); | |
1793 } | |
1794 free(pTmpMem); | |
1795 } | |
1796 else | |
1797 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:1108", 0); | |
1798 | |
1799 pData = (char *)pRawDLV; | |
1800 } | |
1801 | |
1802 memcpy(&dlv, pData, 40); | |
1803 pData += 40; | |
1804 | |
1805 //v152 = dlv.uNumFacesInBModels; | |
1806 if (dlv.uNumFacesInBModels) | |
1807 { | |
1808 //v153 = dlv.uNumDecorations; | |
1809 if (dlv.uNumDecorations) | |
1810 { | |
1811 if (dlv.uNumFacesInBModels != uNumFaces || | |
1812 dlv.uNumDecorations != uNumLevelDecorations) | |
1813 _v244 = true; | |
1814 } | |
1815 } | |
1816 | |
1817 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_2000 ) | |
1818 _i = 0x1BAF800; | |
1819 bool _a = false; | |
1820 if ( a3 - dlv.uLastRepawnDay >= _i && _stricmp(pCurrentMapName, "d29.dlv") ) | |
1821 _a = true; | |
1822 | |
1823 //v154 = 875; | |
1824 if (_v244 || (_a || !dlv.uLastRepawnDay)) | |
1825 { | |
1826 if (_v244) | |
1827 { | |
1828 memset(v203, 0, 0x36B); | |
1829 } | |
1830 else if (_a || !dlv.uLastRepawnDay) | |
1831 { | |
1832 memcpy(v203, pData, 0x36B); | |
1833 } | |
1834 | |
1835 free(pRawDLV); | |
1836 dlv.uLastRepawnDay = a3; | |
1837 if (_v244) | |
1838 ++dlv.uNumRespawns; | |
1839 //v201 = pFilename; | |
1840 *(int *)pDest = 1; | |
1841 File = pGames_LOD->FindContainer(pFilename, 0); | |
1842 fread(&header, 0x10u, 1, File); | |
1843 uint v155 = header.uCompressedSize; | |
1844 uint Count = header.uDecompressedSize; | |
1845 BLVFace* Src = (BLVFace *)malloc(header.uDecompressedSize); | |
1846 pRawDLV = Src; | |
1847 if (v155 <= Count) | |
1848 { | |
1849 if (v155 == Count) | |
1850 fread(Src, 1, Count, File); | |
1851 else | |
1852 { | |
1853 void* _uSourceLen = malloc(v155); | |
1854 fread(_uSourceLen, v155, 1, File); | |
1855 zlib::MemUnzip(Src, &Count, _uSourceLen, v155); | |
1856 free(_uSourceLen); | |
1857 } | |
1858 } | |
1859 else | |
1860 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Polydata.cpp:1195", 0); | |
1861 pData = ((char *)Src + 40); | |
1862 //v154 = 875; | |
1863 } | |
1864 else | |
1865 { | |
1866 *(int *)pDest = 0; | |
1867 } | |
1868 | |
1869 | |
1870 //LABEL_140: | |
1871 //v202 = (int)".blv"; | |
1872 //v156 = strlen(pFilename); | |
1873 strcpy(&pFilename[strlen(pFilename) - 4], ".blv"); | |
1874 memcpy(_visible_outlines, pData, 875); | |
1875 pData += 875; | |
1876 | |
1877 if ( *(int *)pDest ) | |
1878 memcpy(_visible_outlines, v203, 875); | |
1879 | |
1880 for (uint i = 0; i < pMapOutlines->uNumOutlines; ++i) | |
1881 { | |
1882 BLVMapOutline* pVertex = &pMapOutlines->pOutlines[i]; | |
1883 if ((unsigned __int8)(1 << (7 - i % 8)) & _visible_outlines[i / 8]) | |
1884 pVertex->uFlags |= 1; | |
1885 } | |
1886 | |
1887 | |
1888 for (uint i = 0; i < uNumFaces; ++i) | |
1889 { | |
1890 BLVFace* pFace = &pFaces[i]; | |
1891 BLVFaceExtra* pFaceExtra = &pFaceExtras[pFace->uFaceExtraID]; | |
1892 | |
1893 memcpy(&pFace->uAttributes, pData, 4); | |
1894 pData += 4; | |
1895 | |
1896 if (pFaceExtra->uEventID) | |
1897 { | |
1898 if (pFaceExtra->HasEventint()) | |
1899 pFace->uAttributes |= FACE_HAS_EVENT; | |
1900 else | |
1901 pFace->uAttributes &= ~FACE_HAS_EVENT; | |
1902 } | |
1903 } | |
1904 | |
1905 pGameLoadingUI_ProgressBar->Progress(); | |
1906 | |
1907 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
1908 { | |
1909 memcpy(&pLevelDecorations[i].uFlags, pData, 2); | |
1910 pData += 2; | |
1911 } | |
1912 | |
1913 pGameLoadingUI_ProgressBar->Progress(); | |
1914 | |
1915 memcpy(&uNumActors, pData, 4); | |
1916 memcpy(&pActors, pData + 4, uNumActors * sizeof(Actor)); | |
1917 pData += 4 + uNumActors * sizeof(Actor); | |
1918 | |
1919 pGameLoadingUI_ProgressBar->Progress(); | |
1920 pGameLoadingUI_ProgressBar->Progress(); | |
1921 | |
1922 memcpy(&uNumSpriteObjects, pData, 4); | |
1923 memcpy(pSpriteObjects.data(), pData + 4, uNumSpriteObjects * sizeof(SpriteObject)); | |
1924 pData += 4 + uNumSpriteObjects * sizeof(SpriteObject); | |
1925 | |
1926 pGameLoadingUI_ProgressBar->Progress(); | |
1927 | |
1928 for ( uint i = 0; i < uNumSpriteObjects; ++i ) | |
1929 { | |
2566 | 1930 if (pSpriteObjects[i].containing_item.uItemID && !(pSpriteObjects[i].uAttributes & 0x0100)) |
2496 | 1931 { |
2566 | 1932 pSpriteObjects[i].uType = (SPRITE_OBJECT_TYPE)pItemsTable->pItems[pSpriteObjects[i].containing_item.uItemID].uSpriteID; |
2496 | 1933 |
1934 //uint uObjectID = 0; | |
1935 for ( uint j = 0; j < pObjectList->uNumObjects; ++j ) | |
1936 if ( pSpriteObjects[i].uType == pObjectList->pObjects[j].uObjectID ) | |
1937 { | |
1938 pSpriteObjects[i].uObjectDescID = j; | |
1939 break; | |
1940 } | |
1941 } | |
1942 } | |
1943 | |
1944 pGameLoadingUI_ProgressBar->Progress(); | |
1945 | |
1946 memcpy(&uNumChests, pData, 4); | |
1947 memcpy(pChests.data(), pData + 4, uNumChests * sizeof(Chest)); | |
1948 pData += 4 + uNumChests * sizeof(Chest); | |
1949 | |
1950 pGameLoadingUI_ProgressBar->Progress(); | |
1951 pGameLoadingUI_ProgressBar->Progress(); | |
1952 | |
1953 memcpy(pDoors, pData, 0x3E80); | |
1954 pData += 0x3E80; | |
1955 | |
1956 //v201 = (const char *)blv.uDoors_ddata_Size; | |
1957 //v200 = (size_t)ptr_0002B4_doors_ddata; | |
1958 //v170 = malloc(ptr_0002B4_doors_ddata, blv.uDoors_ddata_Size, "L.DData"); | |
1959 //v171 = blv.uDoors_ddata_Size; | |
1960 ptr_0002B4_doors_ddata = (unsigned __int16 *)malloc(blv.uDoors_ddata_Size);//, "L.DData"); | |
1961 memcpy(ptr_0002B4_doors_ddata, pData, blv.uDoors_ddata_Size); | |
1962 pData += blv.uDoors_ddata_Size; | |
1963 | |
1964 //Src = (BLVFace *)((char *)Src + v171); | |
1965 //v172 = 0; | |
1966 //v245 = 0; | |
1967 //if (uNumDoors > 0) | |
1968 for (uint i = 0, j = 0; i < uNumDoors; ++i) | |
1969 { | |
1970 BLVDoor* pDoor = &pDoors[i]; | |
1971 | |
1972 pDoor->pVertexIDs = &ptr_0002B4_doors_ddata[j]; | |
1973 j += pDoor->uNumVertices; | |
1974 | |
1975 pDoor->pFaceIDs = &ptr_0002B4_doors_ddata[j]; | |
1976 j += pDoor->uNumFaces; | |
1977 | |
1978 pDoor->pSectorIDs = &ptr_0002B4_doors_ddata[j]; | |
1979 j += pDoor->field_48; | |
1980 | |
1981 pDoor->pDeltaUs = (short *)(&ptr_0002B4_doors_ddata[j]); | |
1982 j += pDoor->uNumFaces; | |
1983 | |
1984 pDoor->pDeltaVs = (short *)(&ptr_0002B4_doors_ddata[j]); | |
1985 j += pDoor->uNumFaces; | |
1986 | |
1987 pDoor->pXOffsets = &ptr_0002B4_doors_ddata[j]; | |
1988 j += pDoor->uNumOffsets; | |
1989 | |
1990 pDoor->pYOffsets = &ptr_0002B4_doors_ddata[j]; | |
1991 j += pDoor->uNumOffsets; | |
1992 | |
1993 pDoor->pZOffsets = &ptr_0002B4_doors_ddata[j]; | |
1994 j += pDoor->uNumOffsets; | |
1995 /*v173 = pDoors; | |
1996 for ( k = 0; ; v172 = v188 + 2 * *((short *)&v173[k] - 3) ) | |
1997 { | |
1998 v173[k].pVertexIDs = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v172); | |
1999 v175 = &pDoors[k]; | |
2000 v176 = v172 + 2 * v175->uNumVertices; | |
2001 v175->pFaceIDs = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v176); | |
2002 v177 = &pDoors[k]; | |
2003 v178 = v176 + 2 * v177->uNumFaces; | |
2004 v177->pSectorIDs = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v178); | |
2005 v179 = &pDoors[k]; | |
2006 v180 = v178 + 2 * v179->field_48; | |
2007 v179->pDeltaUs = (__int16 *)((char *)ptr_0002B4_doors_ddata + v180); | |
2008 v181 = &pDoors[k]; | |
2009 v182 = v180 + 2 * v181->uNumFaces; | |
2010 v181->pDeltaVs = (__int16 *)((char *)ptr_0002B4_doors_ddata + v182); | |
2011 v183 = &pDoors[k]; | |
2012 v184 = v182 + 2 * v183->uNumFaces; | |
2013 v183->pXOffsets = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v184); | |
2014 v185 = &pDoors[k]; | |
2015 v186 = v184 + 2 * v185->uNumOffsets; | |
2016 v185->pYOffsets = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v186); | |
2017 v187 = &pDoors[k]; | |
2018 ++k; | |
2019 v188 = v186 + 2 * v187->uNumOffsets; | |
2020 v189 = (unsigned __int16 *)((char *)ptr_0002B4_doors_ddata + v188); | |
2021 ++v245; | |
2022 v187->pZOffsets = v189; | |
2023 v173 = pDoors; | |
2024 if ( v245 >= uNumDoors ) | |
2025 break; | |
2026 }*/ | |
2027 } | |
2028 //v190 = 0; | |
2029 //v245 = 0; | |
2030 for (uint i = 0; i < uNumDoors; ++i) | |
2031 { | |
2032 BLVDoor* pDoor = &pDoors[i]; | |
2033 | |
2034 for (uint j = 0; j < pDoor->uNumFaces; ++j) | |
2035 { | |
2036 BLVFace* pFace = &pFaces[pDoor->pFaceIDs[j]]; | |
2037 BLVFaceExtra* pFaceExtra = &pFaceExtras[pFace->uFaceExtraID]; | |
2038 | |
2039 pDoor->pDeltaUs[j] = pFaceExtra->sTextureDeltaU; | |
2040 pDoor->pDeltaVs[j] = pFaceExtra->sTextureDeltaV; | |
2041 } | |
2042 //v191 = pDoors; | |
2043 //pDest = 0; | |
2044 //do | |
2045 // { | |
2046 /*Argsn = 0; | |
2047 for ( l = (BLVDoor *)&v190[(int)v191]; | |
2048 Argsn < *(short *)&v190[(int)v191 + 70]; | |
2049 l = (BLVDoor *)&v190[(int)v191] ) | |
2050 { | |
2051 v193 = Argsn; | |
2052 v194 = l->pFaceIDs[Argsn++]; | |
2053 v195 = &pFaceExtras[pFaces[v194].uFaceExtraID]; | |
2054 l->pDeltaUs[v193] = v195->sTextureDeltaU; | |
2055 v190 = pDest; | |
2056 *(short *)(v193 * 2 + *(int *)&pDest[(unsigned int)pDoors + 52]) = v195->sTextureDeltaV; | |
2057 v191 = pDoors; | |
2058 } | |
2059 ++v245; | |
2060 v190 += 80; | |
2061 pDest = v190;*/ | |
2062 //} | |
2063 //while ( v245 < uNumDoors ); | |
2064 } | |
2065 | |
2066 | |
2067 pGameLoadingUI_ProgressBar->Progress(); | |
2068 | |
2069 memcpy(&stru_5E4C90_MapPersistVars, pData, 0xC8); | |
2070 pData += 0xC8; | |
2071 | |
2072 pGameLoadingUI_ProgressBar->Progress(); | |
2073 | |
2074 memcpy(&stru1, pData, 0x38u); | |
2075 pData += 0x38; | |
2076 | |
2077 free(pRawDLV); | |
2078 //v5 = 0; | |
2079 | |
2080 pSoundList->LoadSound(64, 0); | |
2081 pSoundList->LoadSound(103, 0); | |
2082 pSoundList->LoadSound(63, 0); | |
2083 pSoundList->LoadSound(102, 0); | |
2084 pSoundList->LoadSound(50, 0); | |
2085 pSoundList->LoadSound(89, 0); | |
2086 | |
2087 return 0; | |
2088 } | |
2089 | |
2090 | |
2091 //----- (0049AC17) -------------------------------------------------------- | |
2092 int IndoorLocation::GetSector(int sX, int sY, int sZ) | |
2093 { | |
2094 int v4; // esi@1 | |
2095 signed int v25; // edx@21 | |
2096 int v26; // ebx@23 | |
2097 int v37; // edi@38 | |
2098 int pSectorID; // ebx@40 | |
2099 int v39; // eax@41 | |
2100 int v43[50]; // [sp+Ch] [bp-108h]@1 | |
2101 bool v50; // [sp+ECh] [bp-28h]@19 | |
2102 int v51; // [sp+F0h] [bp-24h]@9 | |
2103 int v53; // [sp+F8h] [bp-1Ch]@10 | |
2104 int v54; // [sp+FCh] [bp-18h]@16 | |
2105 int v55; // [sp+100h] [bp-14h]@1 | |
2106 int v59; // [sp+110h] [bp-4h]@16 | |
2107 | |
2108 v4 = 0; | |
2109 v43[0] = 0; | |
2110 | |
2111 v55 = 0; | |
2112 | |
2113 if (uNumSectors < 2) | |
2114 return 0; | |
2115 | |
2116 for (uint i = 1; i < uNumSectors; ++i) | |
2117 { | |
2118 BLVSector* pSector = &pSectors[i]; | |
2119 | |
2120 if (pSector->pBounding.x1 > sX || pSector->pBounding.x2 < sX || | |
2121 pSector->pBounding.y1 > sY || pSector->pBounding.y2 < sY || | |
2122 pSector->pBounding.z1 - 64 > sZ || pSector->pBounding.z2 + 64 < sZ) | |
2123 continue; | |
2124 | |
2125 //Log::Warning(L"Sector[%u]", i); | |
2126 v51 = pSector->uNumFloors + pSector->uNumPortals; | |
2127 if (!v51) | |
2128 continue; | |
2129 | |
2130 | |
2131 for (uint j = 0; j < v51; ++j) | |
2132 { | |
2133 uint uFaceID; | |
2134 if (j < pSector->uNumFloors) | |
2135 uFaceID = pSector->pFloors[j]; | |
2136 else | |
2137 uFaceID = pSector->pPortals[j - pSector->uNumFloors]; | |
2138 | |
2139 BLVFace* pFace = &pFaces[uFaceID]; | |
2140 if (pFace->uPolygonType != POLYGON_Floor && | |
2141 pFace->uPolygonType != POLYGON_InBetweenFloorAndWall) | |
2142 continue; | |
2143 | |
2144 v54 = 0; | |
2145 v50 = pVertices[pFace->pVertexIDs[0]].y >= sY; | |
2146 | |
2147 for (uint k = 1; k <= pFace->uNumVertices; k++) | |
2148 { | |
2149 v59 = v50; | |
2150 | |
2151 if (v54 >= 2) | |
2152 break; | |
2153 | |
2154 Vec3<int16_t>* v2 = &pVertices[pFace->pVertexIDs[k]]; | |
2155 v50 = v2->y >= sY; | |
2156 | |
2157 if (v59 == v50) | |
2158 continue; | |
2159 | |
2160 Vec3<int16_t>* v1 = &pVertices[pFace->pVertexIDs[k - 1]]; | |
2161 v25 = v2->x >= sX ? 0 : 2; | |
2162 v26 = v25 | (v1->x < sX); | |
2163 | |
2164 if (v26 == 3) | |
2165 continue; | |
2166 | |
2167 if (!v26) | |
2168 ++v54; | |
2169 else | |
2170 { | |
2171 if (v1->x >= v2->x) | |
2172 { | |
2173 /*int _a58; | |
2174 int _a59; | |
2175 | |
2176 v32 = v1->x - v2->x; | |
2177 LODWORD(v33) = v32 << 16; | |
2178 HIDWORD(v33) = v32 >> 16;*/ | |
2179 //fixpoint_div(v1->x - v2->x, v1->y - v2->y); | |
2180 //_a58 = v33 / (v1->y - v2->y); | |
2181 //_a59 = fixpoint_mul(_a58, sY - v2->y); | |
2182 long long x_div_y = fixpoint_div(v1->x - v2->x, v1->y - v2->y); | |
2183 long long res = fixpoint_mul(x_div_y, sY - v2->y); // a / b * c - looks like projection | |
2184 if (res + v2->x > sX) | |
2185 ++v54; | |
2186 } | |
2187 else | |
2188 { | |
2189 long long x_div_y = fixpoint_div(v2->x - v1->x, v2->y - v1->y); | |
2190 long long res = fixpoint_mul(x_div_y, sY - v1->y); | |
2191 | |
2192 if (res + v1->x > sX) | |
2193 ++v54; | |
2194 | |
2195 /*int _a58; | |
2196 int _a59; | |
2197 auto v32 = v2->x - v1->x; | |
2198 LODWORD(v33) = v32 << 16; | |
2199 HIDWORD(v33) = v32 >> 16; | |
2200 _a58 = v33 / (v2->y - v1->y); | |
2201 _a59 = fixpoint_mul(_a58, sY - v1->y); | |
2202 | |
2203 if (_a59 + pVertices[k].x > sX) | |
2204 ++v54;*/ | |
2205 } | |
2206 } | |
2207 } | |
2208 | |
2209 if (pFace->uNumVertices && v54 == 1) | |
2210 v43[v55++] = uFaceID; | |
2211 } | |
2212 } | |
2213 | |
2214 v4 = v43[0]; | |
2215 if ( v55 == 1 ) | |
2216 return this->pFaces[v4].uSectorID; | |
2217 if ( !v55 ) | |
2218 return 0; | |
2219 pSectorID = 0; | |
2220 v53 = 0xFFFFFFu; | |
2221 if ( v55 > 0 ) | |
2222 { | |
2223 v39 = sY; | |
2224 for ( v37 = 0; v37 < v55; ++v37 ) | |
2225 { | |
2226 if ( this->pFaces[v43[v37]].uPolygonType == POLYGON_Floor ) | |
2227 v39 = sZ - this->pVertices[*this->pFaces[v43[v37]].pVertexIDs].z; | |
2228 if ( this->pFaces[v43[v37]].uPolygonType == POLYGON_InBetweenFloorAndWall ) | |
2229 { | |
2230 v39 = sZ - ((fixpoint_mul(this->pFaces[v43[v37]].zCalc1, (sX << 16)) | |
2231 + fixpoint_mul(this->pFaces[v43[v37]].zCalc2, (sY << 16)) | |
2232 + this->pFaces[v43[v37]].zCalc3 | |
2233 + 0x8000) >> 16); | |
2234 } | |
2235 if ( v39 >= 0 ) | |
2236 { | |
2237 if ( v39 < v53 ) | |
2238 { | |
2239 pSectorID = this->pFaces[v43[v37]].uSectorID; | |
2240 v53 = v39; | |
2241 } | |
2242 } | |
2243 } | |
2244 } | |
2245 return pSectorID; | |
2246 } | |
2247 // 49AC17: using guessed type int var_108[50]; | |
2248 | |
2249 | |
2250 //----- (00498A41) -------------------------------------------------------- | |
2251 void BLVFace::_get_normals(Vec3_int_ *a2, Vec3_int_ *a3) | |
2252 { | |
2253 Vec3_float_ a1; // [sp+Ch] [bp-Ch]@8 | |
2254 | |
2255 if ( this->uPolygonType == POLYGON_VerticalWall ) | |
2256 { | |
2257 a2->x = -this->pFacePlane_old.vNormal.y; | |
2258 a2->y = this->pFacePlane_old.vNormal.x; | |
2259 a2->z = 0; | |
2260 | |
2261 a3->x = 0; | |
2262 a3->y = 0; | |
2263 a3->z = 0xFFFF0000u; | |
2264 | |
2265 } | |
2266 else if ( this->uPolygonType == POLYGON_Floor || this->uPolygonType == POLYGON_Ceiling ) | |
2267 { | |
2268 a2->x = 0x10000u; | |
2269 a2->y = 0; | |
2270 a2->z = 0; | |
2271 | |
2272 a3->x = 0; | |
2273 a3->y = 0xFFFF0000u; | |
2274 a3->z = 0; | |
2275 | |
2276 } | |
2277 else if ( this->uPolygonType == POLYGON_InBetweenFloorAndWall || this->uPolygonType == POLYGON_InBetweenCeilingAndWall ) | |
2278 { | |
2279 if ( abs(this->pFacePlane_old.vNormal.z) < 46441 ) | |
2280 { | |
2281 a1.x = (double)-this->pFacePlane_old.vNormal.y; | |
2282 a1.y = (double)this->pFacePlane_old.vNormal.x; | |
2283 a1.z = 0.0; | |
2284 a1.Normalize(); | |
2285 | |
2286 a2->x = (signed __int64)(a1.x * 65536.0); | |
2287 a2->y = (signed __int64)(a1.y * 65536.0); | |
2288 a2->z = 0; | |
2289 | |
2290 a3->y = 0; | |
2291 a3->z = 0xFFFF0000u; | |
2292 a3->x = 0; | |
2293 | |
2294 } | |
2295 else | |
2296 { | |
2297 a2->x = 0x10000u; | |
2298 a2->y = 0; | |
2299 a2->z = 0; | |
2300 | |
2301 a3->x = 0; | |
2302 a3->y = 0xFFFF0000u; | |
2303 a3->z = 0; | |
2304 } | |
2305 | |
2306 } | |
2307 //LABEL_12: | |
2308 if ( this->uAttributes & FACE_UNKNOW3 ) | |
2309 { | |
2310 a2->x = -a2->x; | |
2311 a2->y = -a2->y; | |
2312 a2->z = -a2->z; | |
2313 } | |
2314 if ( this->uAttributes & FACE_UNKNOW4 ) | |
2315 { | |
2316 a3->x = -a3->x; | |
2317 a3->y = -a3->y; | |
2318 a3->z = -a3->z; | |
2319 } | |
2320 return; | |
2321 } | |
2322 | |
2323 //----- (0044C23B) -------------------------------------------------------- | |
2324 bool BLVFaceExtra::HasEventint() | |
2325 { | |
2326 signed int event_index; // eax@1 | |
2327 _evt_raw* start_evt; | |
2328 _evt_raw* end_evt; | |
2329 | |
2330 event_index = 0; | |
2331 if ( (uLevelEVT_NumEvents - 1) <= 0 ) | |
2332 return false; | |
2333 while ( pLevelEVT_Index[event_index].uEventID != this->uEventID ) | |
2334 { | |
2335 ++event_index; | |
2336 if ( event_index >= (signed int)(uLevelEVT_NumEvents - 1) ) | |
2337 return false; | |
2338 } | |
2339 end_evt=(_evt_raw*)&pLevelEVT[pLevelEVT_Index[event_index+1].uEventOffsetInEVT]; | |
2340 start_evt=(_evt_raw*)&pLevelEVT[pLevelEVT_Index[event_index].uEventOffsetInEVT]; | |
2341 if ( (end_evt->_e_type != EVENT_Exit) || (start_evt->_e_type!= EVENT_MouseOver) ) | |
2342 return false; | |
2343 else | |
2344 return true; | |
2345 } | |
2346 | |
2347 //----- (0046F228) -------------------------------------------------------- | |
2348 void BLV_UpdateDoors() | |
2349 { | |
2350 BLVFace *face; // ebx@24 | |
2351 Vec3_short_ *v17; // esi@24 | |
2352 int v18; // eax@24 | |
2353 int v19; // edx@24 | |
2354 signed int v20; // eax@24 | |
2355 int v24; // esi@25 | |
2356 int v25; // eax@25 | |
2357 signed __int64 v27; // qtt@27 | |
2358 BLVFaceExtra *v28; // esi@32 | |
2359 int v32; // eax@34 | |
2360 Vec3_short_ *v34; // eax@35 | |
2361 int v35; // ecx@35 | |
2362 int v36; // edx@35 | |
2363 signed int v37; // eax@35 | |
2364 signed int v38; // edx@35 | |
2365 int v39; // eax@35 | |
2366 int v40; // edx@35 | |
2367 Vec3_short_ *v43; // edi@36 | |
2368 int v57; // eax@58 | |
2369 Vec3_int_ v67; | |
2370 Vec3_int_ v70; | |
2371 int v73; // [sp+20h] [bp-44h]@24 | |
2372 int v75; // [sp+28h] [bp-3Ch]@36 | |
2373 int v76; // [sp+2Ch] [bp-38h]@36 | |
2374 int v77; // [sp+30h] [bp-34h]@36 | |
2375 int v82; // [sp+44h] [bp-20h]@35 | |
2376 int v83; // [sp+48h] [bp-1Ch]@34 | |
2377 int v84; // [sp+4Ch] [bp-18h]@34 | |
2378 SoundID eDoorSoundID; // [sp+54h] [bp-10h]@1 | |
2379 int v88; // [sp+5Ch] [bp-8h]@18 | |
2380 int v89; // [sp+60h] [bp-4h]@6 | |
2381 | |
2382 eDoorSoundID = (SoundID)pDoorSoundIDsByLocationID[dword_6BE13C_uCurrentlyLoadedLocationID]; | |
2383 for (uint i = 0; i < pIndoor->uNumDoors; ++i) | |
2384 { | |
2385 BLVDoor* door = &pIndoor->pDoors[i]; | |
2386 if (door->uState == BLVDoor::Closed || door->uState == BLVDoor::Open) | |
2387 { | |
2388 door->uAttributes &= 0xFFFFFFFDu;//~0x2 | |
2389 continue; | |
2390 } | |
2391 door->uTimeSinceTriggered += pEventTimer->uTimeElapsed; | |
2392 if (door->uState == BLVDoor::Opening) | |
2393 { | |
2394 v89 = (signed int)(door->uTimeSinceTriggered * door->uCloseSpeed) / 128; | |
2395 if ( v89 >= door->uMoveLength ) | |
2396 { | |
2397 v89 = door->uMoveLength; | |
2398 door->uState = BLVDoor::Open; | |
2399 if ( !(door->uAttributes & FACE_UNKNOW5) && door->uNumVertices != 0) | |
2400 pAudioPlayer->PlaySound((SoundID)((int)eDoorSoundID + 1), PID(OBJECT_BLVDoor,i), 0, -1, 0, 0, 0, 0); | |
2401 //goto LABEL_18; | |
2402 } | |
2403 else if (!(door->uAttributes & FACE_UNKNOW5) && door->uNumVertices) | |
2404 pAudioPlayer->PlaySound(eDoorSoundID, PID(OBJECT_BLVDoor, i), 1, -1, 0, 0, 0, 0); | |
2405 } | |
2406 else | |
2407 { | |
2408 signed int v5 = (signed int)(door->uTimeSinceTriggered * door->uOpenSpeed) / 128; | |
2409 if ( v5 >= door->uMoveLength) | |
2410 { | |
2411 v89 = 0; | |
2412 door->uState = BLVDoor::Closed; | |
2413 if ( !(door->uAttributes & FACE_UNKNOW5) && door->uNumVertices != 0) | |
2414 pAudioPlayer->PlaySound((SoundID)((int)eDoorSoundID + 1), PID(OBJECT_BLVDoor,i), 0, -1, 0, 0, 0, 0); | |
2415 //goto LABEL_18; | |
2416 } | |
2417 else | |
2418 { | |
2419 v89 = door->uMoveLength - v5; | |
2420 if (!(door->uAttributes & FACE_UNKNOW5) && door->uNumVertices) | |
2421 pAudioPlayer->PlaySound(eDoorSoundID, PID(OBJECT_BLVDoor, i), 1, -1, 0, 0, 0, 0); | |
2422 } | |
2423 } | |
2424 | |
2425 //LABEL_18: | |
2426 for (uint j = 0; j < door->uNumVertices; ++j) | |
2427 { | |
2428 pIndoor->pVertices[door->pVertexIDs[j]].x = fixpoint_mul(door->vDirection.x, v89) + door->pXOffsets[j]; | |
2429 pIndoor->pVertices[door->pVertexIDs[j]].y = fixpoint_mul(door->vDirection.y, v89) + door->pYOffsets[j]; | |
2430 pIndoor->pVertices[door->pVertexIDs[j]].z = fixpoint_mul(door->vDirection.z, v89) + door->pZOffsets[j]; | |
2431 } | |
2432 for ( v88 = 0; v88 < door->uNumFaces; ++v88 ) | |
2433 { | |
2434 face = &pIndoor->pFaces[door->pFaceIDs[v88]]; | |
2435 v17 = &pIndoor->pVertices[face->pVertexIDs[0]]; | |
2436 v18 = face->pFacePlane_old.vNormal.y; | |
2437 v73 = *(int *)&v17->x; | |
2438 v19 = face->pFacePlane_old.vNormal.z; | |
2439 v20 = -(v19 * (int)v17->z + (signed __int16)v73 * face->pFacePlane_old.vNormal.x + SHIWORD(v73) * v18); | |
2440 face->pFacePlane_old.dist = v20; | |
2441 face->pFacePlane.dist = -((double)v17->z * face->pFacePlane.vNormal.z | |
2442 + (double)v17->y * face->pFacePlane.vNormal.y | |
2443 + (double)v17->x * face->pFacePlane.vNormal.x); | |
2444 if ( v19 ) | |
2445 { | |
2446 v24 = abs(v20 >> 15); | |
2447 v25 = abs(face->pFacePlane_old.vNormal.z); | |
2448 if ( v24 > v25 ) | |
2449 Error("Door Error\ndoor id: %i\nfacet no: %i\n\nOverflow dividing facet->d [%i] by facet->nz [%i]", | |
2450 door->uDoorID, door->pFaceIDs[v88], face->pFacePlane_old.dist, face->pFacePlane_old.vNormal.z); | |
2451 LODWORD(v27) = face->pFacePlane_old.dist << 16; | |
2452 HIDWORD(v27) = face->pFacePlane_old.dist >> 16; | |
2453 face->zCalc3 = -v27 / face->pFacePlane_old.vNormal.z; | |
2454 } | |
2455 //if ( face->uAttributes & FACE_TEXTURE_FLOW || pRenderer->pRenderD3D ) | |
2456 face->_get_normals(&v70, &v67); | |
2457 v28 = &pIndoor->pFaceExtras[face->uFaceExtraID]; | |
2458 /*if ( !pRenderer->pRenderD3D ) | |
2459 { | |
2460 if ( !(face->uAttributes & FACE_TEXTURE_FLOW) ) | |
2461 continue; | |
2462 v83 = (unsigned __int64)(door->vDirection.x * (signed __int64)v70.x) >> 16; | |
2463 v85 = (unsigned __int64)(door->vDirection.y * (signed __int64)v70.y) >> 16; | |
2464 v84 = (unsigned __int64)(door->vDirection.z * (signed __int64)v70.z) >> 16; | |
2465 v29 = v89; | |
2466 v28->sTextureDeltaU = -((v83 + v85 + v84) * (signed __int64)v89) >> 16; | |
2467 v85 = (unsigned __int64)(door->vDirection.x * (signed __int64)v67.x) >> 16; | |
2468 v83 = (unsigned __int64)(door->vDirection.y * (signed __int64)v67.y) >> 16; | |
2469 v84 = (unsigned __int64)(door->vDirection.z * (signed __int64)v67.z) >> 16; | |
2470 v31 = (v85 + v83 + v84) * (signed __int64)v29; | |
2471 v32 = v31 >> 16; | |
2472 v57 = -v32; | |
2473 v28->sTextureDeltaV = v57; | |
2474 v28->sTextureDeltaU += door->pDeltaUs[v88]; | |
2475 v28->sTextureDeltaV = v57 + door->pDeltaVs[v88]; | |
2476 continue; | |
2477 }*/ | |
2478 v28->sTextureDeltaU = 0; | |
2479 v28->sTextureDeltaV = 0; | |
2480 v34 = &pIndoor->pVertices[face->pVertexIDs[0]]; | |
2481 v35 = v34->z; | |
2482 v36 = v34->y; | |
2483 v82 = v34->x; | |
2484 v37 = v70.x * v82 + v70.y * v36 + v70.z * v35; | |
2485 v38 = v67.x * v82 + v67.y * v36 + v67.z * v35; | |
2486 v39 = v37 >> 16; | |
2487 *face->pVertexUIDs = v39; | |
2488 v40 = v38 >> 16; | |
2489 *face->pVertexVIDs = v40; | |
2490 v84 = v39; | |
2491 v82 = v40; | |
2492 for (uint j = 1; j < face->uNumVertices; ++j) | |
2493 { | |
2494 v43 = &pIndoor->pVertices[face->pVertexIDs[j]]; | |
2495 v76 = ((__int64)v70.z * v43->z + (__int64)v70.x * v43->x + (__int64)v70.y * v43->y) >> 16; | |
2496 v77 = ((__int64)v67.x * v43->x + (__int64)v67.y * v43->y + (__int64)v43->z * v67.z) >> 16; | |
2497 if ( v76 < v39 ) | |
2498 v39 = v76; | |
2499 if ( v77 < v40 ) | |
2500 v40 = v77; | |
2501 if ( v76 > v84 ) | |
2502 v84 = v76; | |
2503 if ( v77 > v82 ) | |
2504 v82 = v77; | |
2505 face->pVertexUIDs[j] = v76; | |
2506 face->pVertexVIDs[j] = v77; | |
2507 } | |
2508 if ( face->uAttributes & 0x00001000 ) | |
2509 v28->sTextureDeltaU -= v39; | |
2510 else | |
2511 { | |
2512 if ( SBYTE1(face->uAttributes) < 0 ) | |
2513 { | |
2514 if ( face->uBitmapID != -1 ) | |
2515 v28->sTextureDeltaU -= v84 + pBitmaps_LOD->pTextures[face->uBitmapID].uTextureWidth; | |
2516 } | |
2517 } | |
2518 if ( face->uAttributes & FACE_UNKNOW6 ) | |
2519 v28->sTextureDeltaV -= v40; | |
2520 else | |
2521 { | |
2522 if ( face->uAttributes & FACE_INDOOR_DOOR ) | |
2523 { | |
2524 if ( face->uBitmapID != -1 ) | |
2525 v28->sTextureDeltaV -= v82 + pBitmaps_LOD->GetTexture(face->uBitmapID)->uTextureHeight; | |
2526 } | |
2527 } | |
2528 if ( face->uAttributes & FACE_TEXTURE_FLOW ) | |
2529 { | |
2530 v84 = fixpoint_mul(door->vDirection.x, v70.x); | |
2531 v82 = fixpoint_mul(door->vDirection.y, v70.y); | |
2532 v83 = fixpoint_mul(door->vDirection.z, v70.z); | |
2533 v75 = v84 + v82 + v83; | |
2534 v82 = fixpoint_mul(v75, v89); | |
2535 v28->sTextureDeltaU = -v82; | |
2536 v84 = fixpoint_mul(door->vDirection.x, v67.x); | |
2537 v82 = fixpoint_mul(door->vDirection.y, v67.y); | |
2538 v83 = fixpoint_mul(door->vDirection.z, v67.z); | |
2539 v75 = v84 + v82 + v83; | |
2540 v32 = fixpoint_mul(v75, v89); | |
2541 v57 = -v32; | |
2542 v28->sTextureDeltaV = v57; | |
2543 v28->sTextureDeltaU += door->pDeltaUs[v88]; | |
2544 v28->sTextureDeltaV = v57 + door->pDeltaVs[v88]; | |
2545 } | |
2546 } | |
2547 } | |
2548 } | |
2549 // 6BE13C: using guessed type int dword_6BE13C_uCurrentlyLoadedLocationID; | |
2550 | |
2551 //----- (0046F90C) -------------------------------------------------------- | |
2552 void UpdateActors_BLV() | |
2553 { | |
2554 int v2; // edi@6 | |
2555 int v3; // eax@6 | |
2556 int v4; // eax@8 | |
2557 __int16 v5; // ax@11 | |
2558 signed int v6; // ebx@14 | |
2559 signed __int64 v10; // qax@18 | |
2560 int v22; // edi@46 | |
2561 unsigned int v24; // eax@51 | |
2562 int v27; // ST08_4@54 | |
2563 int v28; // edi@54 | |
2564 int v29; // eax@54 | |
2565 int v30; // ecx@62 | |
2566 int v31; // ebx@62 | |
2567 int v32; // eax@62 | |
2568 int v33; // eax@64 | |
2569 signed int v37; // ebx@85 | |
2570 int v44; // ecx@96 | |
2571 int v45; // edi@101 | |
2572 AIDirection v52; // [sp+0h] [bp-60h]@75 | |
2573 AIDirection v53; // [sp+1Ch] [bp-44h]@116 | |
2574 unsigned int uSectorID; // [sp+3Ch] [bp-24h]@6 | |
2575 int v56; // [sp+40h] [bp-20h]@6 | |
2576 unsigned int _this; // [sp+44h] [bp-1Ch]@51 | |
2577 int v58; // [sp+48h] [bp-18h]@51 | |
2578 int v59; // [sp+4Ch] [bp-14h]@8 | |
2579 unsigned int uFaceID; // [sp+50h] [bp-10h]@6 | |
2580 int v61; // [sp+54h] [bp-Ch]@14 | |
2581 int v62; // [sp+58h] [bp-8h]@6 | |
2582 unsigned int actor_id; // [sp+5Ch] [bp-4h]@1 | |
2583 | |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
2584 if(no_actors) |
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
2585 uNumActors = 0; |
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
2586 |
2496 | 2587 for ( actor_id = 0; actor_id < uNumActors; actor_id++ ) |
2588 { | |
2589 if ( pActors[actor_id].uAIState == Removed || pActors[actor_id].uAIState == Disabled | |
2590 || pActors[actor_id].uAIState == Summoned || !pActors[actor_id].uMovementSpeed ) | |
2591 continue; | |
2592 uSectorID = pActors[actor_id].uSectorID; | |
2593 v2 = collide_against_floor(pActors[actor_id].vPosition.x, pActors[actor_id].vPosition.y, pActors[actor_id].vPosition.z, &uSectorID, &uFaceID); | |
2594 pActors[actor_id].uSectorID = uSectorID; | |
2595 v3 = pActors[actor_id].pMonsterInfo.uFlying; | |
2596 v56 = v2; | |
2597 v62 = v3; | |
2598 if ( !pActors[actor_id].CanAct() ) | |
2599 v62 = 0; | |
2600 v4 = pActors[actor_id].vPosition.z; | |
2601 v59 = 0; | |
2602 if ( pActors[actor_id].vPosition.z > v2 + 1 ) | |
2603 v59 = 1; | |
2604 if ( v2 <= -30000 ) | |
2605 { | |
2606 v5 = pIndoor->GetSector(pActors[actor_id].vPosition.x, pActors[actor_id].vPosition.y, v4); | |
2607 pActors[actor_id].uSectorID = v5; | |
2608 v56 = BLV_GetFloorLevel(pActors[actor_id].vPosition.x, pActors[actor_id].vPosition.y, pActors[actor_id].vPosition.z, v5, &uFaceID); | |
2609 if ( !v5 || v56 == -30000 ) | |
2610 continue; | |
2611 } | |
2612 if ( pActors[actor_id].uCurrentActionAnimation == ANIM_Walking)//ìîíñòð äâèãàåòñÿ | |
2613 { | |
2614 v6 = pActors[actor_id].uMovementSpeed; | |
2615 if ( pActors[actor_id].pActorBuffs[ACTOR_BUFF_SLOWED].uExpireTime > 0 ) | |
2616 { | |
2617 if ( pActors[actor_id].pActorBuffs[ACTOR_BUFF_SLOWED].uPower ) | |
2618 LODWORD(v10) = pActors[actor_id].uMovementSpeed / (unsigned __int16)pActors[actor_id].pActorBuffs[ACTOR_BUFF_SLOWED].uPower; | |
2619 else | |
2620 v10 = (signed __int64)((double)pActors[actor_id].uMovementSpeed * 0.5); | |
2621 v6 = v10; | |
2622 } | |
2623 if ( pActors[actor_id].uAIState == Pursuing || pActors[actor_id].uAIState == Fleeing ) | |
2624 v6 *= 2; | |
2625 if ( pParty->bTurnBasedModeOn == true && pTurnEngine->turn_stage == TE_WAIT ) | |
2626 v6 = (signed __int64)((double)v6 * flt_6BE3AC_debug_recmod1_x_1_6); | |
2627 if ( v6 > 1000 ) | |
2628 v6 = 1000; | |
2629 pActors[actor_id].vVelocity.x = fixpoint_mul(stru_5C6E00->Cos(pActors[actor_id].uYawAngle), v6); | |
2630 pActors[actor_id].vVelocity.y = fixpoint_mul(stru_5C6E00->Sin(pActors[actor_id].uYawAngle), v6); | |
2631 if ( v62 ) | |
2632 pActors[actor_id].vVelocity.z = fixpoint_mul(stru_5C6E00->Sin(pActors[actor_id].uPitchAngle), v6); | |
2633 } | |
2634 else//actor is not moving(àêòîð íå äâèãàåòñÿ) | |
2635 { | |
2636 pActors[actor_id].vVelocity.x = fixpoint_mul(55000, pActors[actor_id].vVelocity.x); | |
2637 pActors[actor_id].vVelocity.y = fixpoint_mul(55000, pActors[actor_id].vVelocity.y); | |
2638 if ( v62 ) | |
2639 pActors[actor_id].vVelocity.z = fixpoint_mul(55000, pActors[actor_id].vVelocity.z); | |
2640 } | |
2641 if ( pActors[actor_id].vPosition.z <= v56 ) | |
2642 { | |
2643 pActors[actor_id].vPosition.z = v56 + 1; | |
2644 if ( pIndoor->pFaces[uFaceID].uPolygonType == 3 ) | |
2645 { | |
2646 if ( pActors[actor_id].vVelocity.z < 0 ) | |
2647 pActors[actor_id].vVelocity.z = 0; | |
2648 } | |
2649 else | |
2650 { | |
2651 if ( pIndoor->pFaces[uFaceID].pFacePlane_old.vNormal.z < 45000 ) | |
2652 pActors[actor_id].vVelocity.z -= LOWORD(pEventTimer->uTimeElapsed) * GetGravityStrength(); | |
2653 } | |
2654 } | |
2655 else | |
2656 { | |
2657 if ( v59 && !v62 ) | |
2658 pActors[actor_id].vVelocity.z += -8 * LOWORD(pEventTimer->uTimeElapsed) * GetGravityStrength(); | |
2659 } | |
2660 if ( pActors[actor_id].vVelocity.x * pActors[actor_id].vVelocity.x | |
2661 + pActors[actor_id].vVelocity.y * pActors[actor_id].vVelocity.y | |
2662 + pActors[actor_id].vVelocity.z * pActors[actor_id].vVelocity.z >= 400 ) | |
2663 { | |
2664 stru_721530.field_84 = -1; | |
2665 stru_721530.field_70 = 0; | |
2666 stru_721530.field_0 = 1; | |
2667 stru_721530.field_8_radius = pActors[actor_id].uActorRadius; | |
2668 stru_721530.prolly_normal_d = pActors[actor_id].uActorRadius; | |
2669 stru_721530.height = pActors[actor_id].uActorHeight; | |
2670 v22 = 0; | |
2671 for ( uSectorID = 0; uSectorID < 100; uSectorID++ ) | |
2672 { | |
2673 stru_721530.position.x = pActors[actor_id].vPosition.x; | |
2674 stru_721530.normal.x = stru_721530.position.x; | |
2675 stru_721530.position.y = pActors[actor_id].vPosition.y; | |
2676 stru_721530.normal.y = stru_721530.position.y; | |
2677 stru_721530.normal.z = pActors[actor_id].vPosition.z + pActors[actor_id].uActorRadius + 1; | |
2678 stru_721530.position.z = pActors[actor_id].vPosition.z - pActors[actor_id].uActorRadius + stru_721530.height - 1; | |
2679 if ( stru_721530.position.z < stru_721530.normal.z ) | |
2680 stru_721530.position.z = pActors[actor_id].vPosition.z + pActors[actor_id].uActorRadius + 1; | |
2681 stru_721530.velocity.x = pActors[actor_id].vVelocity.x; | |
2682 stru_721530.velocity.y = pActors[actor_id].vVelocity.y; | |
2683 stru_721530.velocity.z = pActors[actor_id].vVelocity.z; | |
2684 stru_721530.uSectorID = pActors[actor_id].uSectorID; | |
2685 if ( !stru_721530._47050A(v22) ) | |
2686 { | |
2687 v58 = 0; | |
2688 v24 = 8 * actor_id; | |
2689 LOBYTE(v24) = PID(OBJECT_Actor,actor_id); | |
2690 for ( v61 = 0; v61 < 100; ++v61 ) | |
2691 { | |
2692 _46E44E_collide_against_faces_and_portals(1); | |
2693 _46E0B2_collide_against_decorations(); | |
2694 _46EF01_collision_chech_player(0); | |
2695 _46ED8A_collide_against_sprite_objects(v24); | |
2696 for ( uint j = 0; j < ai_arrays_size; j++ ) | |
2697 { | |
2698 if ( ai_near_actors_ids[j] != actor_id ) | |
2699 { | |
2700 v27 = abs(pActors[ai_near_actors_ids[j]].vPosition.z - pActors[actor_id].vPosition.z); | |
2701 v28 = abs(pActors[ai_near_actors_ids[j]].vPosition.y - pActors[actor_id].vPosition.y); | |
2702 v29 = abs(pActors[ai_near_actors_ids[j]].vPosition.x - pActors[actor_id].vPosition.x); | |
2703 if ( int_get_vector_length(v29, v28, v27) >= pActors[actor_id].uActorRadius + (signed int)pActors[ai_near_actors_ids[j]].uActorRadius | |
2704 && Actor::_46DF1A_collide_against_actor(ai_near_actors_ids[j], 40) ) | |
2705 ++v58; | |
2706 } | |
2707 } | |
2708 if ( _46F04E_collide_against_portals() ) | |
2709 break; | |
2710 } | |
2711 v56 = v58 > 1; | |
2712 if ( stru_721530.field_7C >= stru_721530.field_6C ) | |
2713 { | |
2714 v30 = stru_721530.normal2.x; | |
2715 v31 = stru_721530.normal2.y; | |
2716 v32 = stru_721530.normal2.z - stru_721530.prolly_normal_d - 1; | |
2717 } | |
2718 else | |
2719 { | |
2720 v30 = pActors[actor_id].vPosition.x + fixpoint_mul(stru_721530.field_7C, stru_721530.direction.x); | |
2721 v31 = pActors[actor_id].vPosition.y + fixpoint_mul(stru_721530.field_7C, stru_721530.direction.y); | |
2722 v32 = pActors[actor_id].vPosition.z + fixpoint_mul(stru_721530.field_7C, stru_721530.direction.z); | |
2723 } | |
2724 v33 = collide_against_floor(v30, v31, v32, &stru_721530.uSectorID, &uFaceID); | |
2725 if (pIndoor->pFaces[uFaceID].uAttributes & FACE_INDOOR_SKY && pActors[actor_id].uAIState == Dead) | |
2726 { | |
2727 pActors[actor_id].uAIState = Removed; | |
2728 continue; | |
2729 } | |
2730 if ( v59 || v62 || !(pIndoor->pFaces[uFaceID].uAttributes & FACE_INDOOR_SKY) ) | |
2731 { | |
2732 if ( v33 == -30000 ) | |
2733 continue; | |
2734 if ( pActors[actor_id].uCurrentActionAnimation != 1 || v33 >= pActors[actor_id].vPosition.z - 100 || v59 || v62 ) | |
2735 { | |
2736 if ( stru_721530.field_7C < stru_721530.field_6C ) | |
2737 { | |
2738 pActors[actor_id].vPosition.x += fixpoint_mul(stru_721530.field_7C, stru_721530.direction.x); | |
2739 pActors[actor_id].vPosition.y += fixpoint_mul(stru_721530.field_7C, stru_721530.direction.y); | |
2740 pActors[actor_id].vPosition.z += fixpoint_mul(stru_721530.field_7C, stru_721530.direction.z); | |
2741 pActors[actor_id].uSectorID = LOWORD(stru_721530.uSectorID); | |
2742 stru_721530.field_70 += stru_721530.field_7C; | |
2743 v37 = PID_ID(stru_721530.uFaceID); | |
2744 if (PID_TYPE(stru_721530.uFaceID) == OBJECT_Actor) | |
2745 { | |
2746 if (pParty->bTurnBasedModeOn == 1 && (pTurnEngine->turn_stage == TE_ATTACK || pTurnEngine->turn_stage == TE_MOVEMENT)) | |
2747 { | |
2748 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2749 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2750 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2751 v22 = 0; | |
2752 continue; | |
2753 } | |
2754 if (pActors[actor_id].pMonsterInfo.uHostilityType) | |
2755 { | |
2756 if (!v56) | |
2757 { | |
2758 Actor::AI_Flee(actor_id, stru_721530.uFaceID, v22, (AIDirection *)v22); | |
2759 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2760 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2761 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2762 v22 = 0; | |
2763 continue; | |
2764 } | |
2765 } | |
2766 else | |
2767 { | |
2768 if (!v56) | |
2769 { | |
2770 if (!pActors[v37].pMonsterInfo.uHostilityType) | |
2771 { | |
2772 Actor::AI_FaceObject(actor_id, stru_721530.uFaceID, v22, (AIDirection *)v22); | |
2773 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2774 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2775 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2776 v22 = 0; | |
2777 continue; | |
2778 } | |
2779 Actor::AI_Flee(actor_id, stru_721530.uFaceID, v22, (AIDirection *)v22); | |
2780 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2781 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2782 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2783 v22 = 0; | |
2784 continue; | |
2785 } | |
2786 } | |
2787 Actor::AI_StandOrBored(actor_id, 4, v22, &v53); | |
2788 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2789 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2790 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2791 v22 = 0; | |
2792 continue; | |
2793 } | |
2794 if (PID_TYPE(stru_721530.uFaceID) == OBJECT_Player) | |
2795 { | |
2796 if (pActors[actor_id].GetActorsRelation(0)) | |
2797 { | |
2798 //v51 = __OFSUB__(HIDWORD(pParty->pPartyBuffs[PARTY_BUFF_INVISIBILITY].uExpireTime), v22); | |
2799 //v49 = HIDWORD(pParty->pPartyBuffs[PARTY_BUFF_INVISIBILITY].uExpireTime) == v22; | |
2800 //v50 = HIDWORD(pParty->pPartyBuffs[PARTY_BUFF_INVISIBILITY].uExpireTime) - v22 < 0; | |
2801 pActors[actor_id].vVelocity.y = v22; | |
2802 pActors[actor_id].vVelocity.x = v22; | |
2803 if (pParty->pPartyBuffs[PARTY_BUFF_INVISIBILITY].uExpireTime > v22) | |
2804 pParty->pPartyBuffs[PARTY_BUFF_INVISIBILITY].Reset(); | |
2805 viewparams->bRedrawGameUI = 1; | |
2806 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2807 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2808 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2809 v22 = 0; | |
2810 continue; | |
2811 } | |
2812 Actor::AI_FaceObject(actor_id, stru_721530.uFaceID, v22, (AIDirection *)v22); | |
2813 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2814 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2815 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2816 v22 = 0; | |
2817 continue; | |
2818 } | |
2819 if (PID_TYPE(stru_721530.uFaceID) == OBJECT_Decoration) | |
2820 { | |
2821 _this = integer_sqrt(pActors[actor_id].vVelocity.x * pActors[actor_id].vVelocity.x + pActors[actor_id].vVelocity.y * pActors[actor_id].vVelocity.y); | |
2822 v45 = stru_5C6E00->Atan2(pActors[actor_id].vPosition.x - pLevelDecorations[v37].vPosition.x, | |
2823 pActors[actor_id].vPosition.y - pLevelDecorations[v37].vPosition.y); | |
2824 pActors[actor_id].vVelocity.x = fixpoint_mul(stru_5C6E00->Cos(v45), _this); | |
2825 pActors[actor_id].vVelocity.y = fixpoint_mul(stru_5C6E00->Sin(v45), _this); | |
2826 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2827 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2828 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2829 v22 = 0; | |
2830 continue; | |
2831 } | |
2832 if (PID_TYPE(stru_721530.uFaceID) == OBJECT_BModel) | |
2833 { | |
2834 stru_721530.field_84 = stru_721530.uFaceID >> 3; | |
2835 if (pIndoor->pFaces[v37].uPolygonType == 3) | |
2836 { | |
2837 pActors[actor_id].vVelocity.z = 0; | |
2838 pActors[actor_id].vPosition.z = pIndoor->pVertices[*pIndoor->pFaces[v37].pVertexIDs].z + 1; | |
2839 if (pActors[actor_id].vVelocity.x * pActors[actor_id].vVelocity.x | |
2840 + pActors[actor_id].vVelocity.y * pActors[actor_id].vVelocity.y < 400) | |
2841 { | |
2842 pActors[actor_id].vVelocity.y = 0; | |
2843 pActors[actor_id].vVelocity.x = 0; | |
2844 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2845 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2846 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2847 v22 = 0; | |
2848 continue; | |
2849 } | |
2850 } | |
2851 else | |
2852 { | |
2853 v61 = abs(pIndoor->pFaces[v37].pFacePlane_old.vNormal.x * pActors[actor_id].vVelocity.x + pIndoor->pFaces[v37].pFacePlane_old.vNormal.y | |
2854 * pActors[actor_id].vVelocity.y | |
2855 + pIndoor->pFaces[v37].pFacePlane_old.vNormal.z | |
2856 * pActors[actor_id].vVelocity.z) >> 16; | |
2857 if ((stru_721530.speed >> 3) > v61) | |
2858 v61 = stru_721530.speed >> 3; | |
2859 pActors[actor_id].vVelocity.x += fixpoint_mul(v61, pIndoor->pFaces[v37].pFacePlane_old.vNormal.x); | |
2860 pActors[actor_id].vVelocity.y += fixpoint_mul(v61, pIndoor->pFaces[v37].pFacePlane_old.vNormal.y); | |
2861 pActors[actor_id].vVelocity.z += fixpoint_mul(v61, pIndoor->pFaces[v37].pFacePlane_old.vNormal.z); | |
2862 if (pIndoor->pFaces[v37].uPolygonType != 4 && pIndoor->pFaces[v37].uPolygonType != 3) | |
2863 { | |
2864 v44 = stru_721530.prolly_normal_d | |
2865 - ((pIndoor->pFaces[v37].pFacePlane_old.dist | |
2866 + pIndoor->pFaces[v37].pFacePlane_old.vNormal.z * pActors[actor_id].vPosition.z | |
2867 + pIndoor->pFaces[v37].pFacePlane_old.vNormal.y * pActors[actor_id].vPosition.y | |
2868 + pIndoor->pFaces[v37].pFacePlane_old.vNormal.x * pActors[actor_id].vPosition.x) >> 16); | |
2869 if (v44 > 0) | |
2870 { | |
2871 pActors[actor_id].vPosition.x += fixpoint_mul(v44, pIndoor->pFaces[v37].pFacePlane_old.vNormal.x); | |
2872 pActors[actor_id].vPosition.y += fixpoint_mul(v44, pIndoor->pFaces[v37].pFacePlane_old.vNormal.y); | |
2873 pActors[actor_id].vPosition.z += fixpoint_mul(v44, pIndoor->pFaces[v37].pFacePlane_old.vNormal.z); | |
2874 } | |
2875 pActors[actor_id].uYawAngle = stru_5C6E00->Atan2(pActors[actor_id].vVelocity.x, pActors[actor_id].vVelocity.y); | |
2876 } | |
2877 } | |
2878 if (pIndoor->pFaces[v37].uAttributes & FACE_UNKNOW1) | |
2879 EventProcessor(pIndoor->pFaceExtras[pIndoor->pFaces[v37].uFaceExtraID].uEventID, 0, 1); | |
2880 } | |
2881 pActors[actor_id].vVelocity.x = fixpoint_mul(58500, pActors[actor_id].vVelocity.x); | |
2882 pActors[actor_id].vVelocity.y = fixpoint_mul(58500, pActors[actor_id].vVelocity.y); | |
2883 pActors[actor_id].vVelocity.z = fixpoint_mul(58500, pActors[actor_id].vVelocity.z); | |
2884 v22 = 0; | |
2885 continue; | |
2886 } | |
2887 else | |
2888 { | |
2889 pActors[actor_id].vPosition.x = LOWORD(stru_721530.normal2.x); | |
2890 pActors[actor_id].vPosition.y = LOWORD(stru_721530.normal2.y); | |
2891 pActors[actor_id].vPosition.z = LOWORD(stru_721530.normal2.z) - LOWORD(stru_721530.prolly_normal_d) - 1; | |
2892 pActors[actor_id].uSectorID = LOWORD(stru_721530.uSectorID); | |
2893 //goto LABEL_123; | |
2894 break; | |
2895 } | |
2896 | |
2897 } | |
2898 else if ( pActors[actor_id].vPosition.x & 1 ) | |
2899 pActors[actor_id].uYawAngle += 100; | |
2900 else | |
2901 pActors[actor_id].uYawAngle -= 100; | |
2902 } | |
2903 else | |
2904 { | |
2905 if (pParty->bTurnBasedModeOn == 1 && (pTurnEngine->turn_stage == TE_ATTACK || pTurnEngine->turn_stage == TE_MOVEMENT)) | |
2906 continue; | |
2907 if ( !pActors[actor_id].pMonsterInfo.uHostilityType || v56 != v22 ) | |
2908 { | |
2909 Actor::AI_StandOrBored(actor_id, 4, v22, &v52); | |
2910 continue; | |
2911 } | |
2912 } | |
2913 } | |
2914 } | |
2915 } | |
2916 else | |
2917 { | |
2918 pActors[actor_id].vVelocity.z = 0; | |
2919 pActors[actor_id].vVelocity.y = 0; | |
2920 pActors[actor_id].vVelocity.x = 0; | |
2921 if ( pIndoor->pFaces[uFaceID].uAttributes & FACE_INDOOR_SKY ) | |
2922 { | |
2923 if (pActors[actor_id].uAIState == Dead) | |
2924 pActors[actor_id].uAIState = Removed; | |
2925 } | |
2926 } | |
2927 //LABEL_123: | |
2928 ; | |
2929 } | |
2930 } | |
2931 | |
2932 | |
2933 //----- (00460A78) -------------------------------------------------------- | |
2934 void PrepareToLoadBLV(unsigned int bLoading) | |
2935 { | |
2936 unsigned int respawn; // ebx@1 | |
2937 unsigned int map_id; // eax@8 | |
2938 MapInfo *map_info; // edi@9 | |
2939 int v4; // eax@11 | |
2940 DecorationDesc *decoration; // eax@54 | |
2941 char v28; // zf@81 | |
2942 signed int v30; // edi@94 | |
2943 int v34[4]; // [sp+3E8h] [bp-2Ch]@96 | |
2944 int v35; // [sp+3F8h] [bp-1Ch]@1 | |
2945 int v38; // [sp+404h] [bp-10h]@1 | |
2946 int pDest; // [sp+40Ch] [bp-8h]@1 | |
2947 | |
2948 respawn = 0; | |
2949 pGameLoadingUI_ProgressBar->Reset(0x20u); | |
2950 bUnderwater = false; | |
2951 bNoNPCHiring = false; | |
2952 pDest = 1; | |
2953 uCurrentlyLoadedLevelType = LEVEL_Indoor; | |
2541 | 2954 pEngine->uFlags2 &= 0xFFFFFFF7;//~0x00000008 |
2496 | 2955 if ( Is_out15odm_underwater() ) |
2956 { | |
2957 bUnderwater = true; | |
2541 | 2958 pEngine->uFlags2 |= 8; |
2496 | 2959 } |
2960 if ( !_stricmp(pCurrentMapName, "out15.odm") || !_stricmp(pCurrentMapName, "d23.blv") ) | |
2961 bNoNPCHiring = true; | |
2962 pPaletteManager->pPalette_tintColor[0] = 0; | |
2963 pPaletteManager->pPalette_tintColor[1] = 0; | |
2964 pPaletteManager->pPalette_tintColor[2] = 0; | |
2965 pPaletteManager->RecalculateAll(); | |
2966 if ( _A750D8_player_speech_timer ) | |
2967 _A750D8_player_speech_timer = 0i64; | |
2968 map_id = pMapStats->GetMapInfo(pCurrentMapName); | |
2969 if ( map_id ) | |
2970 { | |
2971 map_info = &pMapStats->pInfos[map_id]; | |
2972 respawn = pMapStats->pInfos[map_id].uRespawnIntervalDays; | |
2973 v38 = GetAlertStatus(); | |
2974 } | |
2975 else | |
2976 map_info = (MapInfo *)bLoading; | |
2977 dword_6BE13C_uCurrentlyLoadedLocationID = map_id; | |
2978 | |
2979 pStationaryLightsStack->uNumLightsActive = 0; | |
2980 v4 = pIndoor->Load(pCurrentMapName, (unsigned int)(signed __int64)((double)pParty->uTimePlayed * 0.234375) / 60 / 60 / 24 + 1, respawn, (char *)&pDest) - 1; | |
2981 if ( !v4 ) | |
2982 Error("Unable to open %s", pCurrentMapName); | |
2983 | |
2984 if ( v4 == 1 ) | |
2985 Error("File %s is not a BLV File", pCurrentMapName); | |
2986 | |
2987 if ( v4 == 2 ) | |
2988 Error("Attempt to open new level before clearing old"); | |
2989 if ( v4 == 3 ) | |
2990 Error("Out of memory loading indoor level"); | |
2991 if ( !(dword_6BE364_game_settings_1 & GAME_SETTINGS_2000) ) | |
2992 { | |
2993 Actor::InitializeActors(); | |
2994 SpriteObject::InitializeSpriteObjects(); | |
2995 } | |
2996 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_2000; | |
2997 if ( !map_id ) | |
2998 pDest = 0; | |
2999 if ( pDest == 1 ) | |
3000 { | |
3001 for (uint i = 0; i < pIndoor->uNumSpawnPoints; ++i ) | |
3002 { | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2567
diff
changeset
|
3003 auto spawn = pIndoor->pSpawnPoints + i; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2567
diff
changeset
|
3004 if (spawn->IsMonsterSpawn()) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2567
diff
changeset
|
3005 SpawnEncounter(map_info, spawn, 0, 0, 0); |
2496 | 3006 else |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2567
diff
changeset
|
3007 map_info->SpawnRandomTreasure(spawn); |
2496 | 3008 } |
3009 RespawnGlobalDecorations(); | |
3010 } | |
3011 | |
3012 pSoundList->LoadSound(pDoorSoundIDsByLocationID[map_id], 0); | |
3013 pSoundList->LoadSound(pDoorSoundIDsByLocationID[map_id] + 1, 0); | |
3014 | |
3015 for (uint i = 0; i < pIndoor->uNumDoors; ++i) | |
3016 { | |
3017 if (pIndoor->pDoors[i].uAttributes & 0x01) | |
3018 { | |
3019 pIndoor->pDoors[i].uState = BLVDoor::Opening; | |
3020 pIndoor->pDoors[i].uTimeSinceTriggered = 15360; | |
3021 pIndoor->pDoors[i].uAttributes = 2; | |
3022 } | |
3023 | |
3024 if (pIndoor->pDoors[i].uState == BLVDoor::Closed) | |
3025 { | |
3026 pIndoor->pDoors[i].uState = BLVDoor::Closing; | |
3027 pIndoor->pDoors[i].uTimeSinceTriggered = 15360; | |
3028 pIndoor->pDoors[i].uAttributes = 2; | |
3029 } | |
3030 else if (pIndoor->pDoors[i].uState == BLVDoor::Open) | |
3031 { | |
3032 pIndoor->pDoors[i].uState = BLVDoor::Opening; | |
3033 pIndoor->pDoors[i].uTimeSinceTriggered = 15360; | |
3034 pIndoor->pDoors[i].uAttributes = 2; | |
3035 } | |
3036 } | |
3037 | |
3038 for (uint i = 0; i < pIndoor->uNumFaces; ++i) | |
3039 { | |
3040 if (pIndoor->pFaces[i].uBitmapID != -1) | |
3041 pBitmaps_LOD->pTextures[pIndoor->pFaces[i].uBitmapID].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[pIndoor->pFaces[i].uBitmapID].palette_id1); | |
3042 } | |
3043 | |
3044 pGameLoadingUI_ProgressBar->Progress(); | |
3045 | |
3046 v35 = 0; | |
3047 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
3048 { | |
3049 pDecorationList->InitializeDecorationSprite(pLevelDecorations[i].uDecorationDescID); | |
3050 | |
3051 if (pDecorationList->pDecorations[pLevelDecorations[i].uDecorationDescID].uSoundID && _6807E0_num_decorations_with_sounds_6807B8 < 9) | |
3052 { | |
3053 pSoundList->LoadSound(pDecorationList->pDecorations[pLevelDecorations[i].uDecorationDescID].uSoundID, 0); | |
3054 _6807B8_level_decorations_ids[_6807E0_num_decorations_with_sounds_6807B8++] = i; | |
3055 } | |
3056 | |
3057 if (!(pLevelDecorations[i].uFlags & LEVEL_DECORATION_INVISIBLE)) | |
3058 { | |
3059 decoration = &pDecorationList->pDecorations[pLevelDecorations[i].uDecorationDescID]; | |
3060 if (!decoration->DontDraw()) | |
3061 { | |
3062 if ( decoration->uLightRadius ) | |
3063 { | |
3064 unsigned char r = 255, | |
3065 g = 255, | |
3066 b = 255; | |
3067 if (/*pRenderer->pRenderD3D*/true && pRenderer->bUseColoredLights) | |
3068 { | |
3069 r = decoration->uColoredLightRed; | |
3070 g = decoration->uColoredLightGreen; | |
3071 b = decoration->uColoredLightBlue; | |
3072 } | |
3073 pStationaryLightsStack->AddLight(pLevelDecorations[i].vPosition.x, | |
3074 pLevelDecorations[i].vPosition.y, | |
2532 | 3075 pLevelDecorations[i].vPosition.z + decoration->uDecorationHeight, |
3076 decoration->uLightRadius, r, g, b, _4E94D0_light_type); | |
2496 | 3077 } |
3078 } | |
3079 } | |
3080 | |
3081 if (!pLevelDecorations[i].uEventID) | |
3082 { | |
3083 if (pLevelDecorations[i].IsInteractive()) | |
3084 { | |
3085 if ( v35 < 124 ) | |
3086 { | |
3087 pLevelDecorations[i]._idx_in_stru123 = v35 + 75; | |
3088 if ( !stru_5E4C90_MapPersistVars._decor_events[v35] ) | |
3089 pLevelDecorations[i].uFlags |= LEVEL_DECORATION_INVISIBLE; | |
3090 v35++; | |
3091 } | |
3092 } | |
3093 } | |
3094 } | |
3095 | |
3096 pGameLoadingUI_ProgressBar->Progress(); | |
3097 | |
3098 for (uint i = 0; i < uNumSpriteObjects; ++i) | |
3099 { | |
3100 if (pSpriteObjects[i].uObjectDescID) | |
3101 { | |
2566 | 3102 if (pSpriteObjects[i].containing_item.uItemID) |
2496 | 3103 { |
2566 | 3104 if (pSpriteObjects[i].containing_item.uItemID != 220 && pItemsTable->pItems[pSpriteObjects[i].containing_item.uItemID].uEquipType == EQUIP_POTION && |
3105 !pSpriteObjects[i].containing_item.uEnchantmentType) | |
3106 pSpriteObjects[i].containing_item.uEnchantmentType = rand() % 15 + 5; | |
3107 pItemsTable->SetSpecialBonus(&pSpriteObjects[i].containing_item); | |
2496 | 3108 } |
3109 } | |
3110 } | |
3111 | |
3112 // INDOOR initialize actors | |
3113 v38 = 0; | |
2562
b8a56afc6ba1
new var no_actors, lights_flag, debug_lights, StationaryLights and MobileLights
Ritor1
parents:
2543
diff
changeset
|
3114 |
2496 | 3115 for (uint i = 0; i < uNumActors; ++i) |
3116 { | |
3117 if (pActors[i].uAttributes & ACTOR_UNKNOW7) | |
3118 { | |
3119 if ( !map_id ) | |
3120 { | |
3121 pActors[i].pMonsterInfo.field_3E = 19; | |
3122 pActors[i].uAttributes |= ACTOR_UNKNOW11; | |
3123 continue; | |
3124 } | |
3125 v28 = v38 == 0; | |
3126 } | |
3127 else | |
3128 v28 = v38 == 1; | |
3129 | |
3130 if ( !v28 ) | |
3131 { | |
3132 pActors[i].PrepareSprites(0); | |
3133 pActors[i].pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
3134 if ( pActors[i].pMonsterInfo.field_3E != 11 && pActors[i].pMonsterInfo.field_3E != 19 && (!pActors[i].sCurrentHP || !pActors[i].pMonsterInfo.uHP) ) | |
3135 { | |
3136 pActors[i].pMonsterInfo.field_3E = 5; | |
3137 pActors[i].UpdateAnimation(); | |
3138 } | |
3139 } | |
3140 else | |
3141 { | |
3142 pActors[i].pMonsterInfo.field_3E = 19; | |
3143 pActors[i].uAttributes |= ACTOR_UNKNOW11; | |
3144 } | |
3145 } | |
3146 | |
3147 pGameLoadingUI_ProgressBar->Progress(); | |
3148 | |
3149 //Party to start position | |
3150 Actor this_; | |
3151 this_.pMonsterInfo.uID = 45; | |
3152 this_.PrepareSprites(0); | |
3153 if ( !bLoading ) | |
3154 { | |
3155 pParty->sRotationX = 0; | |
3156 pParty->sRotationY = 0; | |
3157 pParty->vPosition.z = 0; | |
3158 pParty->vPosition.y = 0; | |
3159 pParty->vPosition.x = 0; | |
3160 pParty->uFallStartY = 0; | |
3161 pParty->uFallSpeed = 0; | |
3162 TeleportToStartingPoint(uLevel_StartingPointType); | |
3163 } | |
3164 viewparams->_443365(); | |
3165 PlayLevelMusic(); | |
3166 if ( !bLoading ) | |
3167 { | |
3168 v30 = 0; | |
3169 for ( uint pl_id = 1; pl_id <= 4; ++pl_id ) | |
3170 { | |
3171 if ( pPlayers[pl_id]->CanAct() ) | |
3172 v34[v30++] = pl_id; | |
3173 } | |
3174 if ( v30 ) | |
3175 { | |
3176 if ( pDest ) | |
3177 { | |
3178 _A750D8_player_speech_timer = 256i64; | |
3179 PlayerSpeechID = SPEECH_46; | |
3180 uSpeakingCharacter = v34[rand() % v30]; | |
3181 } | |
3182 } | |
3183 } | |
3184 } | |
3185 //----- (0046CEC3) -------------------------------------------------------- | |
3186 int BLV_GetFloorLevel(int x, int y, int z, unsigned int uSectorID, unsigned int *pFaceID) | |
3187 { | |
3188 int v13; // ecx@13 | |
3189 signed int v14; // ebx@14 | |
3190 int v15; // eax@16 | |
3191 int v21; // eax@27 | |
3192 signed int v28; // eax@45 | |
3193 int v29; // ebx@47 | |
3194 int v38; // edx@62 | |
3195 bool v47; // [sp+24h] [bp-1Ch]@43 | |
3196 bool current_vertices_Y; // [sp+28h] [bp-18h]@10 | |
3197 bool v49; // [sp+28h] [bp-18h]@41 | |
3198 bool next_vertices_Y; // [sp+2Ch] [bp-14h]@12 | |
3199 signed int number_hits; // [sp+30h] [bp-10h]@10 | |
3200 signed int v54; // [sp+30h] [bp-10h]@41 | |
3201 signed int v55; // [sp+34h] [bp-Ch]@1 | |
3202 | |
3203 //LOG_DECOMPILATION_WARNING(); | |
3204 | |
3205 static int blv_floor_id[50]; // 00721200 | |
3206 static int blv_floor_level[50]; // 007212C8 | |
3207 | |
3208 static __int16 blv_floor_face_vert_coord_Y[104]; // word_721390_ys | |
3209 static __int16 blv_floor_face_vert_coord_X[104]; // word_721460_xs | |
3210 | |
3211 BLVSector* pSector = &pIndoor->pSectors[uSectorID]; | |
3212 v55 = 0; | |
3213 for (uint i = 0; i < pSector->uNumFloors; ++i) | |
3214 { | |
3215 BLVFace* pFloor = &pIndoor->pFaces[pSector->pFloors[i]]; | |
3216 if (pFloor->Ethereal()) | |
3217 continue; | |
3218 | |
3219 assert(pFloor->uNumVertices); | |
3220 if (x <= pFloor->pBounding.x2 && x >= pFloor->pBounding.x1 && | |
3221 y <= pFloor->pBounding.y2 && y >= pFloor->pBounding.y1) | |
3222 { | |
3223 for (uint j = 0; j < pFloor->uNumVertices; ++j) | |
3224 { | |
3225 blv_floor_face_vert_coord_X[2 * j] = pFloor->pXInterceptDisplacements[j] + pIndoor->pVertices[pFloor->pVertexIDs[j]].x; | |
3226 blv_floor_face_vert_coord_X[2 * j + 1] = pFloor->pXInterceptDisplacements[j] + pIndoor->pVertices[pFloor->pVertexIDs[j + 1]].x; | |
3227 blv_floor_face_vert_coord_Y[2 * j] = pFloor->pYInterceptDisplacements[j] + pIndoor->pVertices[pFloor->pVertexIDs[j]].y; | |
3228 blv_floor_face_vert_coord_Y[2 * j + 1] = pFloor->pYInterceptDisplacements[j] + pIndoor->pVertices[pFloor->pVertexIDs[j + 1]].y; | |
3229 } | |
3230 blv_floor_face_vert_coord_X[2 * pFloor->uNumVertices] = blv_floor_face_vert_coord_X[0]; | |
3231 blv_floor_face_vert_coord_Y[2 * pFloor->uNumVertices] = blv_floor_face_vert_coord_Y[0]; | |
3232 | |
3233 next_vertices_Y = blv_floor_face_vert_coord_Y[0] >= y; | |
3234 number_hits = 0; | |
3235 | |
3236 for (uint j = 0; j < 2 * pFloor->uNumVertices; ++j) | |
3237 { | |
3238 if (number_hits >= 2) | |
3239 break; | |
3240 | |
3241 current_vertices_Y = next_vertices_Y; | |
3242 next_vertices_Y = blv_floor_face_vert_coord_Y[j + 1] >= y; | |
3243 | |
3244 v13 = i; | |
3245 if (current_vertices_Y == next_vertices_Y) | |
3246 continue; | |
3247 | |
3248 v14 = blv_floor_face_vert_coord_X[j + 1] >= x ? 0 : 2; | |
3249 v15 = v14 | (blv_floor_face_vert_coord_X[j] < x); | |
3250 | |
3251 if (v15 == 3) | |
3252 continue; | |
3253 else if (!v15) | |
3254 ++number_hits; | |
3255 else | |
3256 { | |
3257 long long a_div_b = fixpoint_div(y - blv_floor_face_vert_coord_Y[j], blv_floor_face_vert_coord_Y[j + 1] - blv_floor_face_vert_coord_Y[j]); | |
3258 long long res = fixpoint_mul((signed int)blv_floor_face_vert_coord_X[j + 1] - (signed int)blv_floor_face_vert_coord_X[j], a_div_b); | |
3259 | |
3260 if (res + blv_floor_face_vert_coord_X[j] >= x) | |
3261 ++number_hits; | |
3262 } | |
3263 } | |
3264 | |
3265 | |
3266 if ( number_hits == 1 ) | |
3267 { | |
3268 if ( v55 >= 50 ) | |
3269 break; | |
3270 if ( pFloor->uPolygonType == POLYGON_Floor || pFloor->uPolygonType == POLYGON_Ceiling ) | |
3271 v21 = pIndoor->pVertices[pFloor->pVertexIDs[0]].z; | |
3272 else | |
3273 v21 = fixpoint_mul(pFloor->zCalc1, x) + fixpoint_mul(pFloor->zCalc2, y) + (short)(pFloor->zCalc3 >> 16); | |
3274 blv_floor_level[v55] = v21; | |
3275 blv_floor_id[v55] = pSector->pFloors[i]; | |
3276 v55++; | |
3277 } | |
3278 } | |
3279 } | |
3280 | |
3281 if ( pSector->field_0 & 8 ) | |
3282 { | |
3283 for (uint i = 0; i < pSector->uNumPortals; ++i) | |
3284 { | |
3285 BLVFace* portal = &pIndoor->pFaces[pSector->pPortals[i]]; | |
3286 if (portal->uPolygonType != POLYGON_Floor) | |
3287 continue; | |
3288 | |
3289 if (!portal->uNumVertices) | |
3290 continue; | |
3291 | |
3292 if (x <= portal->pBounding.x2 && x >= portal->pBounding.x1 && | |
3293 y <= portal->pBounding.y2 && y >= portal->pBounding.y1 ) | |
3294 { | |
3295 for (uint j = 0; j < portal->uNumVertices; ++j) | |
3296 { | |
3297 blv_floor_face_vert_coord_X[2 * j] = portal->pXInterceptDisplacements[j] + pIndoor->pVertices[portal->pVertexIDs[j]].x; | |
3298 blv_floor_face_vert_coord_X[2 * j + 1] = portal->pXInterceptDisplacements[j + 1] + pIndoor->pVertices[portal->pVertexIDs[j + 1]].x; | |
3299 blv_floor_face_vert_coord_Y[2 * j] = portal->pYInterceptDisplacements[j] + pIndoor->pVertices[portal->pVertexIDs[j]].y; | |
3300 blv_floor_face_vert_coord_Y[2 * j + 1] = portal->pYInterceptDisplacements[j + 1] + pIndoor->pVertices[portal->pVertexIDs[j + 1]].y; | |
3301 } | |
3302 blv_floor_face_vert_coord_X[2 * portal->uNumVertices] = blv_floor_face_vert_coord_X[0]; | |
3303 blv_floor_face_vert_coord_Y[2 * portal->uNumVertices] = blv_floor_face_vert_coord_Y[0]; | |
3304 v54 = 0; | |
3305 v47 = blv_floor_face_vert_coord_Y[0] >= y; | |
3306 | |
3307 for (uint j = 0; j < 2 * portal->uNumVertices; ++j) | |
3308 { | |
3309 v49 = v47; | |
3310 if ( v54 >= 2 ) | |
3311 break; | |
3312 v47 = blv_floor_face_vert_coord_Y[j + 1] >= y; | |
3313 if ( v49 != v47 ) | |
3314 { | |
3315 v28 = blv_floor_face_vert_coord_X[j + 1] >= x ? 0 : 2; | |
3316 v29 = v28 | (blv_floor_face_vert_coord_X[j] < x); | |
3317 if ( v29 != 3 ) | |
3318 { | |
3319 if ( !v29 ) | |
3320 ++v54; | |
3321 else | |
3322 { | |
3323 long long a_div_b = fixpoint_div(y - blv_floor_face_vert_coord_Y[j], blv_floor_face_vert_coord_Y[j + 1] - blv_floor_face_vert_coord_Y[j]); | |
3324 long long res = fixpoint_mul(blv_floor_face_vert_coord_X[j + 1] - blv_floor_face_vert_coord_X[j], a_div_b); | |
3325 if (res + blv_floor_face_vert_coord_X[j] >= x) | |
3326 ++v54; | |
3327 } | |
3328 } | |
3329 } | |
3330 } | |
3331 if ( v54 == 1 ) | |
3332 { | |
3333 if ( v55 >= 50 ) | |
3334 break; | |
3335 blv_floor_level[v55] = -29000; | |
3336 blv_floor_id[v55] = pSector->pPortals[i]; | |
3337 v55++; | |
3338 } | |
3339 } | |
3340 } | |
3341 } | |
3342 if ( v55 == 1 ) | |
3343 { | |
3344 *pFaceID = blv_floor_id[0]; | |
3345 if ( blv_floor_level[0] <= -29000 ) | |
3346 __debugbreak(); | |
3347 return blv_floor_level[0]; | |
3348 } | |
3349 if ( !v55 ) | |
3350 return -30000; | |
3351 *pFaceID = blv_floor_id[0]; | |
3352 //result = blv_floor_level[0]; | |
3353 | |
3354 /*for ( v35 = 1; v35 < v55; ++v35 ) | |
3355 { | |
3356 if ( blv_floor_level[0] <= z + 5 ) | |
3357 { | |
3358 if ( blv_floor_level[v35] >= blv_floor_level[0] || blv_floor_level[v35] > z + 5 ) | |
3359 continue; | |
3360 blv_floor_level[0] = blv_floor_level[v35]; | |
3361 *pFaceID = blv_floor_id[v35]; | |
3362 continue; | |
3363 } | |
3364 if ( blv_floor_level[v35] < blv_floor_level[0] ) | |
3365 { | |
3366 blv_floor_level[0] = blv_floor_level[v35]; | |
3367 *pFaceID = blv_floor_id[v35]; | |
3368 } | |
3369 }*/ | |
3370 | |
3371 | |
3372 int result = blv_floor_level[0]; | |
3373 for (uint i = 1; i < v55; ++i) | |
3374 { | |
3375 v38 = blv_floor_level[i]; | |
3376 if ( result <= z + 5 ) | |
3377 { | |
3378 if ( v38 > result && v38 <= z + 5 ) | |
3379 { | |
3380 result = blv_floor_level[i]; | |
3381 if ( blv_floor_level[i] <= -29000 ) | |
3382 __debugbreak(); | |
3383 *pFaceID = blv_floor_id[i]; | |
3384 } | |
3385 } | |
3386 else if ( v38 < result ) | |
3387 { | |
3388 result = blv_floor_level[i]; | |
3389 if ( blv_floor_level[i] <= -29000 ) | |
3390 __debugbreak(); | |
3391 *pFaceID = blv_floor_id[i]; | |
3392 } | |
3393 } | |
3394 | |
3395 return result; | |
3396 } | |
3397 //----- (0043FDED) -------------------------------------------------------- | |
3398 void PrepareActorRenderList_BLV() | |
3399 { | |
3400 unsigned int v4; // eax@5 | |
3401 int v6; // esi@5 | |
3402 int v8; // eax@10 | |
3403 SpriteFrame *v9; // eax@16 | |
3404 int v12; // ecx@28 | |
3405 signed __int64 v18; // qtt@36 | |
3406 int v25; // edx@44 | |
3407 __int16 v26; // ax@44 | |
3408 int a5a; // [sp+2Ch] [bp-28h]@36 | |
3409 __int16 v41; // [sp+3Ch] [bp-18h]@18 | |
3410 int a6; // [sp+40h] [bp-14h]@34 | |
3411 int v43; // [sp+44h] [bp-10h]@34 | |
3412 int z; // [sp+48h] [bp-Ch]@32 | |
3413 signed int y; // [sp+4Ch] [bp-8h]@32 | |
3414 int x; // [sp+50h] [bp-4h]@32 | |
3415 | |
3416 for (uint i = 0; i < uNumActors; ++i) | |
3417 { | |
3418 if (pActors[i].uAIState == Removed || pActors[i].uAIState == Disabled) | |
3419 continue; | |
3420 | |
2543 | 3421 v4 = stru_5C6E00->Atan2(pActors[i].vPosition.x - pIndoorCameraD3D->vPartyPos.x, pActors[i].vPosition.y - pIndoorCameraD3D->vPartyPos.y); |
2496 | 3422 v6 = ((signed int)(pActors[i].uYawAngle + ((signed int)stru_5C6E00->uIntegerPi >> 3) - v4 + stru_5C6E00->uIntegerPi) >> 8) & 7; |
3423 v8 = pActors[i].uCurrentActionTime; | |
3424 if ( pParty->bTurnBasedModeOn ) | |
3425 { | |
3426 if ( pActors[i].uCurrentActionAnimation == 1 ) | |
3427 v8 = i * 32 + pMiscTimer->uTotalGameTimeElapsed; | |
3428 } | |
3429 else | |
3430 { | |
3431 if ( pActors[i].uCurrentActionAnimation == 1 ) | |
3432 v8 = i * 32 + pBLVRenderParams->field_0_timer_; | |
3433 } | |
3434 if (pActors[i].pActorBuffs[ACTOR_BUFF_STONED].uExpireTime > 0 || pActors[i].pActorBuffs[ACTOR_BUFF_PARALYZED].uExpireTime > 0 ) | |
3435 v8 = 0; | |
3436 | |
3437 if (pActors[i].uAIState == Resurrected) | |
3438 v9 = pSpriteFrameTable->GetFrameBy_x(pActors[i].pSpriteIDs[pActors[i].uCurrentActionAnimation], v8); | |
3439 else | |
3440 v9 = pSpriteFrameTable->GetFrame(pActors[i].pSpriteIDs[pActors[i].uCurrentActionAnimation], v8); | |
3441 | |
3442 v41 = 0; | |
3443 if (v9->uFlags & 2) | |
3444 v41 = 2; | |
3445 if (v9->uFlags & 0x40000) | |
3446 v41 |= 0x40u; | |
3447 if (v9->uFlags & 0x20000) | |
3448 LOBYTE(v41) = v41 | 0x80; | |
3449 if ( (256 << v6) & v9->uFlags) | |
3450 v41 |= 4; | |
3451 if ( v9->uGlowRadius ) | |
3452 { | |
3453 //LOBYTE(v11) = _4E94D3_light_type; | |
3454 pMobileLightsStack->AddLight(pActors[i].vPosition.x, pActors[i].vPosition.y, pActors[i].vPosition.z, pActors[i].uSectorID, v9->uGlowRadius, 0xFFu, 0xFFu, 0xFFu, _4E94D3_light_type); | |
3455 } | |
3456 for ( v12 = 0; v12 < pBspRenderer->uNumVisibleNotEmptySectors; ++v12 ) | |
3457 { | |
3458 if ( pBspRenderer->pVisibleSectorIDs_toDrawDecorsActorsEtcFrom[v12] == pActors[i].uSectorID ) | |
3459 { | |
2543 | 3460 if ( !pIndoorCameraD3D->ApplyViewTransform_TrueIfStillVisible_BLV(pActors[i].vPosition.x, pActors[i].vPosition.y, pActors[i].vPosition.z, &x, &y, &z, 1) |
2496 | 3461 || abs(x) < abs(y) ) |
3462 continue; | |
2543 | 3463 pIndoorCameraD3D->Project(x, y, z, &v43, &a6); |
2496 | 3464 if (uNumBillboardsToDraw >= 500) |
3465 break; | |
3466 ++uNumBillboardsToDraw; | |
3467 ++uNumSpritesDrawnThisFrame; | |
3468 pActors[i].uAttributes |= ACTOR_UNKNOW2; | |
3469 pBillboardRenderList[uNumBillboardsToDraw - 1].HwSpriteID = v9->pHwSpriteIDs[v6]; | |
3470 pBillboardRenderList[uNumBillboardsToDraw - 1].uPalette = v9->uPaletteIndex; | |
3471 pBillboardRenderList[uNumBillboardsToDraw - 1].uIndoorSectorID = pActors[i].uSectorID; | |
3472 /*if ( !pRenderer->pRenderD3D ) | |
3473 { | |
3474 LODWORD(v20) = pBLVRenderParams->fov_rad_fixpoint << 16; | |
3475 HIDWORD(v20) = pBLVRenderParams->fov_rad_fixpoint >> 16; | |
3476 v0->_screenspace_x_scaler_packedfloat = fixpoint_mul(v10->scale, v20 / x); | |
3477 a5a = fixpoint_mul(v10->scale, v20 / x); | |
3478 } | |
3479 else | |
3480 {*/ | |
2543 | 3481 pBillboardRenderList[uNumBillboardsToDraw - 1].fov_x = pIndoorCameraD3D->fov_x; |
3482 pBillboardRenderList[uNumBillboardsToDraw - 1].fov_y = pIndoorCameraD3D->fov_y; | |
2496 | 3483 LODWORD(v18) = 0; |
3484 HIDWORD(v18) = floorf(pBillboardRenderList[uNumBillboardsToDraw - 1].fov_x + 0.5f); | |
3485 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_x_scaler_packedfloat = fixpoint_mul(v9->scale, v18 / x); | |
3486 a5a = fixpoint_mul(v9->scale, v18 / x); | |
3487 //} | |
3488 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_y_scaler_packedfloat = a5a; | |
3489 if ( pActors[i].pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime <= 0 ) | |
3490 { | |
3491 if ( pActors[i].pActorBuffs[ACTOR_BUFF_MASS_DISTORTION].uExpireTime > 0 ) | |
2541 | 3492 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_y_scaler_packedfloat = fixpoint_mul(pEngine->pStru6Instance->_4A806F(&pActors[i]), |
2496 | 3493 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_y_scaler_packedfloat); |
3494 } | |
3495 else | |
3496 { | |
3497 if ( pActors[i].pActorBuffs[ACTOR_BUFF_SHRINK].uPower > 0 ) | |
3498 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_x_scaler_packedfloat = fixpoint_mul(65536 / pActors[i].pActorBuffs[ACTOR_BUFF_SHRINK].uPower, pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_x_scaler_packedfloat); | |
3499 } | |
3500 HIWORD(v25) = HIWORD(x); | |
3501 pBillboardRenderList[uNumBillboardsToDraw - 1].world_x = pActors[i].vPosition.x; | |
3502 pBillboardRenderList[uNumBillboardsToDraw - 1].world_y = pActors[i].vPosition.y; | |
3503 pBillboardRenderList[uNumBillboardsToDraw - 1].world_z = pActors[i].vPosition.z; | |
3504 pBillboardRenderList[uNumBillboardsToDraw - 1].uScreenSpaceX = v43; | |
3505 pBillboardRenderList[uNumBillboardsToDraw - 1].uScreenSpaceY = a6; | |
3506 LOWORD(v25) = 0; | |
3507 LOBYTE(v26) = v41; | |
3508 | |
3509 //v0->sZValue = v25 + (PID(OBJECT_Actor,i)); | |
3510 pBillboardRenderList[uNumBillboardsToDraw - 1].actual_z = HIWORD(x); | |
3511 pBillboardRenderList[uNumBillboardsToDraw - 1].object_pid = PID(OBJECT_Actor,i); | |
3512 | |
3513 //v29 = HIDWORD(p->pActorBuffs[ACTOR_BUFF_STONED].uExpireTime) == 0; | |
3514 //v30 = HIDWORD(p->pActorBuffs[ACTOR_BUFF_STONED].uExpireTime) < 0; | |
3515 pBillboardRenderList[uNumBillboardsToDraw - 1].field_1E = v41; | |
3516 pBillboardRenderList[uNumBillboardsToDraw - 1].pSpriteFrame = v9; | |
3517 pBillboardRenderList[uNumBillboardsToDraw - 1].sTintColor = pMonsterList->pMonsters[pActors[i].pMonsterInfo.uID - 1].sTintColor; | |
3518 if ( pActors[i].pActorBuffs[ACTOR_BUFF_STONED].uExpireTime > 0 ) | |
3519 { | |
3520 HIBYTE(v26) = HIBYTE(v41) | 1; | |
3521 pBillboardRenderList[uNumBillboardsToDraw - 1].field_1E = v26; | |
3522 } | |
3523 } | |
3524 } | |
3525 } | |
3526 } | |
3527 //----- (0044028F) -------------------------------------------------------- | |
3528 void PrepareItemsRenderList_BLV() | |
3529 { | |
3530 SpriteFrame *v4; // eax@12 | |
3531 unsigned int v6; // eax@12 | |
3532 int v7; // ecx@12 | |
3533 int v9; // ecx@12 | |
3534 __int64 v18; // ST5C_4@27 | |
3535 int a6; // [sp+2Ch] [bp-30h]@12 | |
3536 int v31; // [sp+38h] [bp-24h]@27 | |
3537 signed __int16 v34; // [sp+44h] [bp-18h]@14 | |
3538 int v35; // [sp+48h] [bp-14h]@25 | |
3539 int v36; // [sp+4Ch] [bp-10h]@25 | |
3540 signed int z; // [sp+50h] [bp-Ch]@24 | |
3541 signed int y; // [sp+54h] [bp-8h]@24 | |
3542 signed int x; // [sp+58h] [bp-4h]@24 | |
3543 | |
3544 for (uint i = 0; i < uNumSpriteObjects; ++i) | |
3545 { | |
3546 if (pSpriteObjects[i].uObjectDescID) | |
3547 { | |
3548 if ( !(pObjectList->pObjects[pSpriteObjects[i].uObjectDescID].uFlags & 1) ) | |
3549 { | |
3550 if ( ( pSpriteObjects[i].uType < 1000 || pSpriteObjects[i].uType >= 10000) | |
3551 && (pSpriteObjects[i].uType < 500 || pSpriteObjects[i].uType >= 600) | |
3552 && (pSpriteObjects[i].uType < 811 || pSpriteObjects[i].uType >= 815) | |
2566 | 3553 || pEngine->pStru6Instance->RenderAsSprite(&pSpriteObjects[i])) |
2496 | 3554 { |
3555 v4 = pSpriteFrameTable->GetFrame(pObjectList->pObjects[pSpriteObjects[i].uObjectDescID].uSpriteID, pSpriteObjects[i].uSpriteFrameID); | |
3556 a6 = v4->uGlowRadius * pSpriteObjects[i].field_22_glow_radius_multiplier; | |
2543 | 3557 v6 = stru_5C6E00->Atan2(pSpriteObjects[i].vPosition.x - pIndoorCameraD3D->vPartyPos.x, |
3558 pSpriteObjects[i].vPosition.y - pIndoorCameraD3D->vPartyPos.y); | |
2496 | 3559 LOWORD(v7) = pSpriteObjects[i].uFacing; |
3560 v9 = ((signed int)(stru_5C6E00->uIntegerPi + ((signed int)stru_5C6E00->uIntegerPi >> 3) + v7 - v6) >> 8) & 7; | |
3561 pBillboardRenderList[uNumBillboardsToDraw].HwSpriteID = v4->pHwSpriteIDs[v9]; | |
3562 if ( v4->uFlags & 0x20 ) | |
3563 pSpriteObjects[i].vPosition.z -= (signed int)(fixpoint_mul(v4->scale, pSprites_LOD->pSpriteHeaders[pBillboardRenderList[uNumBillboardsToDraw].HwSpriteID].uHeight) / 2); | |
3564 | |
3565 v34 = 0; | |
3566 if ( v4->uFlags & 2 ) | |
3567 v34 = 2; | |
3568 if ( v4->uFlags & 0x40000 ) | |
3569 v34 |= 0x40u; | |
3570 if ( v4->uFlags & 0x20000 ) | |
3571 LOBYTE(v34) = v34 | 0x80; | |
3572 //v11 = (int *)(256 << v9); | |
3573 if ( (256 << v9) & v4->uFlags ) | |
3574 v34 |= 4; | |
3575 if ( a6 ) | |
3576 { | |
3577 //LOBYTE(v11) = _4E94D3_light_type; | |
3578 pMobileLightsStack->AddLight(pSpriteObjects[i].vPosition.x, pSpriteObjects[i].vPosition.y, pSpriteObjects[i].vPosition.z, | |
3579 pSpriteObjects[i].uSectorID, a6, pObjectList->pObjects[pSpriteObjects[i].uObjectDescID].uParticleTrailColorR, | |
3580 pObjectList->pObjects[pSpriteObjects[i].uObjectDescID].uParticleTrailColorG, | |
3581 pObjectList->pObjects[pSpriteObjects[i].uObjectDescID].uParticleTrailColorB, _4E94D3_light_type); | |
3582 } | |
2543 | 3583 if ( pIndoorCameraD3D->ApplyViewTransform_TrueIfStillVisible_BLV(pSpriteObjects[i].vPosition.x, pSpriteObjects[i].vPosition.y, |
2496 | 3584 pSpriteObjects[i].vPosition.z, &x, &y, &z, 1) ) |
3585 { | |
2543 | 3586 pIndoorCameraD3D->Project(x, y, z, &v36, &v35); |
2496 | 3587 |
3588 assert(uNumBillboardsToDraw < 500); | |
3589 //if ( (signed int)uNumBillboardsToDraw >= 500 ) | |
3590 // return; | |
3591 ++uNumBillboardsToDraw; | |
3592 ++uNumSpritesDrawnThisFrame; | |
3593 pSpriteObjects[i].uAttributes |= 1; | |
3594 pBillboardRenderList[uNumBillboardsToDraw - 1].uPalette = v4->uPaletteIndex; | |
3595 pBillboardRenderList[uNumBillboardsToDraw - 1].uIndoorSectorID = pSpriteObjects[i].uSectorID; | |
3596 //if ( pRenderer->pRenderD3D ) | |
3597 { | |
2543 | 3598 pBillboardRenderList[uNumBillboardsToDraw - 1].fov_x = pIndoorCameraD3D->fov_x; |
3599 pBillboardRenderList[uNumBillboardsToDraw - 1].fov_y = pIndoorCameraD3D->fov_y; | |
2496 | 3600 LODWORD(v18) = 0; |
3601 HIDWORD(v18) = (int)floorf(pBillboardRenderList[uNumBillboardsToDraw - 1].fov_x + 0.5f); | |
3602 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_x_scaler_packedfloat = fixpoint_mul(v4->scale, v18 / x); | |
3603 v31 = fixpoint_mul(v4->scale, v18 / x); | |
3604 } | |
3605 /*else | |
3606 { | |
3607 __debugbreak(); // sw rendering | |
3608 LODWORD(v19) = pBLVRenderParams->field_40 << 16; | |
3609 HIDWORD(v19) = pBLVRenderParams->field_40 >> 16; | |
3610 v20 = v19 / x; | |
3611 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_x_scaler_packedfloat = fixpoint_mul(v24->scale, v19 / x); | |
3612 v31 = fixpoint_mul(v24->scale, v20); | |
3613 }*/ | |
3614 //HIWORD(v21) = HIWORD(x); | |
3615 //LOWORD(v21) = 0; | |
3616 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_y_scaler_packedfloat = v31; | |
3617 pBillboardRenderList[uNumBillboardsToDraw - 1].field_1E = v34; | |
3618 pBillboardRenderList[uNumBillboardsToDraw - 1].world_x = pSpriteObjects[i].vPosition.x; | |
3619 pBillboardRenderList[uNumBillboardsToDraw - 1].world_y = pSpriteObjects[i].vPosition.y; | |
3620 pBillboardRenderList[uNumBillboardsToDraw - 1].world_z = pSpriteObjects[i].vPosition.z; | |
3621 pBillboardRenderList[uNumBillboardsToDraw - 1].uScreenSpaceX = v36; | |
3622 pBillboardRenderList[uNumBillboardsToDraw - 1].sTintColor = 0; | |
3623 pBillboardRenderList[uNumBillboardsToDraw - 1].uScreenSpaceY = v35; | |
3624 //v23 = 8 * i; | |
3625 //LOBYTE(v23) = PID(OBJECT_Item,i); | |
3626 pBillboardRenderList[uNumBillboardsToDraw - 1].pSpriteFrame = v4; | |
3627 //v12 = (p->uAttributes & 0x20) == 0; | |
3628 //pBillboardRenderList[uNumBillboardsToDraw - 1].sZValue = v21 + v23; | |
3629 pBillboardRenderList[uNumBillboardsToDraw - 1].actual_z = HIWORD(x); | |
3630 pBillboardRenderList[uNumBillboardsToDraw - 1].object_pid = PID(OBJECT_Item,i); | |
3631 /*if (pSpriteObjects[i].uAttributes & 0x20) | |
3632 { | |
3633 if ( !pRenderer->pRenderD3D ) | |
3634 pBillboardRenderList[uNumBillboardsToDraw - 1].sZValue = 0; | |
3635 }*/ | |
3636 } | |
3637 } | |
3638 } | |
3639 } | |
3640 } | |
3641 } | |
3642 | |
3643 //----- (00440639) -------------------------------------------------------- | |
3644 void AddBspNodeToRenderList(unsigned int node_id) | |
3645 { | |
3646 BLVSector *pSector; // esi@1 | |
3647 | |
3648 pSector = &pIndoor->pSectors[pBspRenderer->nodes[node_id].uSectorID]; | |
3649 //if ( pRenderer->pRenderD3D ) | |
3650 { | |
3651 for (uint i = 0; i < pSector->uNumNonBSPFaces; ++i) | |
3652 //Log::Warning(L"Non-BSP face: %X", v3->pFaceIDs[v2]); | |
3653 pBspRenderer->AddFaceToRenderList_d3d(node_id, pSector->pFaceIDs[i]);//ðåêóðñèÿ\recursion | |
3654 } | |
3655 /*else | |
3656 { | |
3657 for (uint i = 0; i < pSector->uNumNonBSPFaces; ++i) | |
3658 pBspRenderer->AddFaceToRenderList_sw(node_id, pSector->pFaceIDs[i]); | |
3659 }*/ | |
3660 if ( pSector->field_0 & 0x10 ) | |
3661 sub_4406BC(node_id, pSector->uFirstBSPNode); | |
3662 } | |
3663 | |
3664 //----- (004406BC) -------------------------------------------------------- | |
3665 void __fastcall sub_4406BC(unsigned int node_id, unsigned int uFirstNode) | |
3666 { | |
3667 BLVSector *pSector; // esi@2 | |
3668 BSPNode *pNode; // edi@2 | |
3669 BLVFace *pFace; // eax@2 | |
3670 int v5; // ecx@2 | |
3671 __int16 v6; // ax@6 | |
3672 int v7; // ebp@10 | |
3673 int v8; // ebx@10 | |
3674 __int16 v9; // di@18 | |
3675 BspRenderer_stru0 *node; // [sp+18h] [bp-4h]@1 | |
3676 | |
3677 //Log::Warning(L"sub_4406BC(%u, %u)", a1, uFirstNode); | |
3678 | |
3679 //v10 = a1; | |
3680 node = &pBspRenderer->nodes[node_id]; | |
3681 while ( 1 ) | |
3682 { | |
3683 pSector = &pIndoor->pSectors[node->uSectorID]; | |
3684 pNode = &pIndoor->pNodes[uFirstNode]; | |
3685 pFace = &pIndoor->pFaces[pSector->pFaceIDs[pNode->uCoplanarOffset]]; | |
3686 v5 = pFace->pFacePlane_old.dist + | |
2543 | 3687 pIndoorCameraD3D->vPartyPos.x * pFace->pFacePlane_old.vNormal.x + |
3688 pIndoorCameraD3D->vPartyPos.y * pFace->pFacePlane_old.vNormal.y + | |
3689 pIndoorCameraD3D->vPartyPos.z * pFace->pFacePlane_old.vNormal.z;//plane equation | |
2496 | 3690 if (pFace->Portal() && pFace->uSectorID != node->uSectorID ) |
3691 v5 = -v5; | |
3692 //v11 = v5 > 0; | |
3693 if ( v5 <= 0 ) | |
3694 v6 = pNode->uFront; | |
3695 else | |
3696 v6 = pNode->uBack; | |
3697 if ( v6 != -1 ) | |
3698 sub_4406BC(node_id, v6); | |
3699 v7 = pNode->uCoplanarOffset; | |
3700 v8 = v7 + pNode->uCoplanarSize; | |
3701 | |
3702 //Log::Warning(L"Node %u: %X to %X (%hX)", uFirstNode, v7, v8, v2->pFaceIDs[v7]); | |
3703 | |
3704 //if ( pRenderer->pRenderD3D ) | |
3705 { | |
3706 while ( v7 < v8 ) | |
3707 pBspRenderer->AddFaceToRenderList_d3d(node_id, pSector->pFaceIDs[v7++]); | |
3708 } | |
3709 /*else | |
3710 { | |
3711 while ( v7 < v8 ) | |
3712 pBspRenderer->AddFaceToRenderList_sw(node_id, pSector->pFaceIDs[v7++]); | |
3713 }*/ | |
3714 v9 = v5 > 0 ? pNode->uFront : pNode->uBack; | |
3715 if ( v9 == -1 ) | |
3716 break; | |
3717 uFirstNode = v9; | |
3718 } | |
3719 } | |
3720 //----- (0043FA33) -------------------------------------------------------- | |
3721 void PrepareDecorationsRenderList_BLV(unsigned int uDecorationID, unsigned int uSectorID) | |
3722 { | |
3723 unsigned int v8; // edi@5 | |
3724 int v9; // edi@5 | |
3725 int v10; // eax@7 | |
3726 SpriteFrame *v11; // eax@7 | |
3727 signed __int64 v20; // qtt@19 | |
3728 Particle_sw particle; // [sp+Ch] [bp-A0h]@3 | |
3729 int v30; // [sp+8Ch] [bp-20h]@7 | |
3730 int a5; // [sp+94h] [bp-18h]@17 | |
3731 int z; // [sp+98h] [bp-14h]@15 | |
3732 int a6; // [sp+9Ch] [bp-10h]@17 | |
3733 int y; // [sp+A0h] [bp-Ch]@15 | |
3734 int x; // [sp+A4h] [bp-8h]@15 | |
3735 int v37; // [sp+A8h] [bp-4h]@5 | |
3736 | |
3737 if (pLevelDecorations[uDecorationID].uFlags & LEVEL_DECORATION_INVISIBLE) | |
3738 return; | |
3739 | |
3740 if (pDecorationList->pDecorations[pLevelDecorations[uDecorationID].uDecorationDescID].uFlags & DECORATION_DESC_EMITS_FIRE) | |
3741 { | |
3742 memset(&particle, 0, sizeof(particle)); // fire, like at the Pit's tavern | |
3743 particle.type = ParticleType_Bitmap | ParticleType_Rotating | ParticleType_8; | |
3744 particle.uDiffuse = 0xFF3C1E; | |
3745 particle.x = (double)pLevelDecorations[uDecorationID].vPosition.x; | |
3746 particle.y = (double)pLevelDecorations[uDecorationID].vPosition.y; | |
3747 particle.z = (double)pLevelDecorations[uDecorationID].vPosition.z; | |
3748 particle.r = 0.0; | |
3749 particle.g = 0.0; | |
3750 particle.b = 0.0; | |
3751 particle.flt_28 = 1.0; | |
3752 particle.timeToLive = (rand() & 0x80) + 128; | |
3753 particle.uTextureID = pBitmaps_LOD->LoadTexture("effpar01"); | |
2541 | 3754 pEngine->pParticleEngine->AddParticle(&particle); |
2496 | 3755 return; |
3756 } | |
3757 | |
3758 if (pDecorationList->pDecorations[pLevelDecorations[uDecorationID].uDecorationDescID].uFlags & DECORATION_DESC_DONT_DRAW) | |
3759 return; | |
3760 | |
3761 v8 = pLevelDecorations[uDecorationID].field_10_y_rot + ((signed int)stru_5C6E00->uIntegerPi >> 3) | |
2543 | 3762 - stru_5C6E00->Atan2(pLevelDecorations[uDecorationID].vPosition.x - pIndoorCameraD3D->vPartyPos.x, |
3763 pLevelDecorations[uDecorationID].vPosition.y - pIndoorCameraD3D->vPartyPos.y); | |
2496 | 3764 v9 = ((signed int)(stru_5C6E00->uIntegerPi + v8) >> 8) & 7; |
3765 v37 = pBLVRenderParams->field_0_timer_; | |
3766 if (pParty->bTurnBasedModeOn) | |
3767 v37 = pMiscTimer->uTotalGameTimeElapsed; | |
3768 v10 = abs(pLevelDecorations[uDecorationID].vPosition.x + pLevelDecorations[uDecorationID].vPosition.y); | |
3769 v11 = pSpriteFrameTable->GetFrame(pDecorationList->pDecorations[pLevelDecorations[uDecorationID].uDecorationDescID].uSpriteID, v37 + v10); | |
3770 v30 = 0; | |
3771 if ( v11->uFlags & 2 ) | |
3772 v30 = 2; | |
3773 if ( v11->uFlags & 0x40000 ) | |
3774 v30 |= 0x40u; | |
3775 if ( v11->uFlags & 0x20000 ) | |
3776 LOBYTE(v30) = v30 | 0x80; | |
3777 if ( (256 << v9) & v11->uFlags ) | |
3778 v30 |= 4; | |
2543 | 3779 if ( pIndoorCameraD3D->ApplyViewTransform_TrueIfStillVisible_BLV(pLevelDecorations[uDecorationID].vPosition.x, |
2496 | 3780 pLevelDecorations[uDecorationID].vPosition.y, |
3781 pLevelDecorations[uDecorationID].vPosition.z, &x, &y, &z, 1) ) | |
3782 { | |
3783 if ( abs(x) >= abs(y) ) | |
3784 { | |
2543 | 3785 pIndoorCameraD3D->Project(x, y, z, &a5, &a6); |
2496 | 3786 |
3787 assert(uNumBillboardsToDraw < 500); | |
3788 | |
3789 ++uNumBillboardsToDraw; | |
3790 ++uNumDecorationsDrawnThisFrame; | |
3791 pBillboardRenderList[uNumBillboardsToDraw - 1].HwSpriteID = v11->pHwSpriteIDs[v9]; | |
3792 pBillboardRenderList[uNumBillboardsToDraw - 1].uPalette = v11->uPaletteIndex; | |
3793 pBillboardRenderList[uNumBillboardsToDraw - 1].uIndoorSectorID = uSectorID; | |
3794 /*if ( !pRenderer->pRenderD3D ) | |
3795 { | |
3796 LODWORD(v21) = pBLVRenderParams->fov_rad_fixpoint << 16; | |
3797 HIDWORD(v21) = pBLVRenderParams->fov_rad_fixpoint >> 16; | |
3798 //LODWORD(v31) = v12->scale; | |
3799 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_x_scaler_packedfloat = fixpoint_mul(v12->scale, v21 / x); | |
3800 v37 = fixpoint_mul(v12->scale, v21 / x); | |
3801 } | |
3802 else | |
3803 {*/ | |
2543 | 3804 pBillboardRenderList[uNumBillboardsToDraw - 1].fov_x = pIndoorCameraD3D->fov_x; |
3805 pBillboardRenderList[uNumBillboardsToDraw - 1].fov_y = pIndoorCameraD3D->fov_y; | |
2496 | 3806 LODWORD(v20) = 0; |
3807 HIDWORD(v20) = floorf(pBillboardRenderList[uNumBillboardsToDraw - 1].fov_x + 0.5f); | |
3808 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_x_scaler_packedfloat = fixpoint_mul(v11->scale, v20 / x); | |
3809 LODWORD(v20) = 0; | |
3810 HIDWORD(v20) = floorf(pBillboardRenderList[uNumBillboardsToDraw - 1].fov_y + 0.5f); | |
3811 v37 = fixpoint_mul(v11->scale, v20 / x); | |
3812 //} | |
3813 //HIWORD(v22) = HIWORD(x); | |
3814 //LOWORD(v22) = 0; | |
3815 pBillboardRenderList[uNumBillboardsToDraw - 1]._screenspace_y_scaler_packedfloat = v37; | |
3816 pBillboardRenderList[uNumBillboardsToDraw - 1].field_1E = v30; | |
3817 pBillboardRenderList[uNumBillboardsToDraw - 1].world_x = pLevelDecorations[uDecorationID].vPosition.x; | |
3818 pBillboardRenderList[uNumBillboardsToDraw - 1].world_y = pLevelDecorations[uDecorationID].vPosition.y; | |
3819 pBillboardRenderList[uNumBillboardsToDraw - 1].world_z = pLevelDecorations[uDecorationID].vPosition.z; | |
3820 pBillboardRenderList[uNumBillboardsToDraw - 1].uScreenSpaceX = a5; | |
3821 pBillboardRenderList[uNumBillboardsToDraw - 1].uScreenSpaceY = a6; | |
3822 //v23 = 8 * uDecorationID; | |
3823 //LOBYTE(v23) = PID(OBJECT_Decoration,uDecorationID); | |
3824 | |
3825 //pBillboardRenderList[uNumBillboardsToDraw - 1].sZValue = v22 + v23; | |
3826 pBillboardRenderList[uNumBillboardsToDraw - 1].actual_z = HIWORD(x); | |
3827 pBillboardRenderList[uNumBillboardsToDraw - 1].object_pid = PID(OBJECT_Decoration,uDecorationID); | |
3828 | |
3829 pBillboardRenderList[uNumBillboardsToDraw - 1].sTintColor = 0; | |
3830 pBillboardRenderList[uNumBillboardsToDraw - 1].pSpriteFrame = v11; | |
3831 } | |
3832 } | |
3833 } | |
3834 //----- (0043F953) -------------------------------------------------------- | |
3835 void PrepareBspRenderList_BLV() | |
3836 { | |
3837 pBspRenderer->num_faces = 0; | |
3838 | |
3839 if (pBLVRenderParams->uPartySectorID) | |
3840 { | |
3841 pBspRenderer->nodes[0].uSectorID = pBLVRenderParams->uPartySectorID; | |
2508 | 3842 pBspRenderer->nodes[0].uViewportX = pBLVRenderParams->uViewportX; |
3843 pBspRenderer->nodes[0].uViewportY = pBLVRenderParams->uViewportY; | |
2496 | 3844 pBspRenderer->nodes[0].uViewportZ = pBLVRenderParams->uViewportZ; |
2508 | 3845 pBspRenderer->nodes[0].uViewportW = pBLVRenderParams->uViewportW; |
2496 | 3846 pBspRenderer->nodes[0].PortalScreenData.GetViewportData(pBLVRenderParams->uViewportX, pBLVRenderParams->uViewportY, |
3847 pBLVRenderParams->uViewportZ, pBLVRenderParams->uViewportW); | |
3848 pBspRenderer->nodes[0].uFaceID = -1; | |
3849 pBspRenderer->nodes[0].viewing_portal_id = -1; | |
3850 pBspRenderer->num_nodes = 1; | |
3851 AddBspNodeToRenderList(0); | |
3852 } | |
3853 | |
3854 pBspRenderer->MakeVisibleSectorList(); | |
3855 } | |
3856 | |
3857 //----- (0043F9E1) -------------------------------------------------------- | |
3858 void BspRenderer_PortalViewportData::GetViewportData(__int16 x, int y, __int16 z, int w) | |
3859 { | |
3860 _viewport_space_y = y; | |
3861 _viewport_space_w = w; | |
3862 | |
3863 for (uint i = 0; i < window->GetHeight(); ++i) | |
3864 { | |
3865 if ( i < y || i > w ) | |
3866 { | |
3867 viewport_left_side[i] = window->GetWidth(); | |
3868 viewport_right_side[i] = -1; | |
3869 } | |
3870 else | |
3871 { | |
3872 viewport_left_side[i] = x; | |
3873 viewport_right_side[i] = z; | |
3874 } | |
3875 } | |
3876 } | |
3877 //----- (0048653D) -------------------------------------------------------- | |
3878 void stru149::_48653D_frustum_blv(int a2, int a3, int a4, int a5, int a6, int a7)//portal frustum culling | |
3879 { | |
3880 int v8; // edi@1 | |
3881 int v9; // eax@1 | |
3882 int v16; // ST14_4@3 | |
3883 int v17; // ST10_4@3 | |
3884 int v19; // ST10_4@6 | |
3885 int v21; // ST10_4@9 | |
3886 int v28; // [sp+1Ch] [bp-Ch]@1 | |
3887 int v29; // [sp+24h] [bp-4h]@1 | |
3888 | |
2543 | 3889 v8 = stru_5C6E00->Cos(pIndoorCameraD3D->sRotationY); |
3890 v29 = stru_5C6E00->Sin(pIndoorCameraD3D->sRotationY); | |
3891 v28 = stru_5C6E00->Cos(pIndoorCameraD3D->sRotationX); | |
3892 v9 = stru_5C6E00->Sin(pIndoorCameraD3D->sRotationX); | |
2496 | 3893 //v11 = -pBLVRenderParams->vPartyPos.y; |
3894 //v26 = -pBLVRenderParams->vPartyPos.x; | |
3895 //v27 = v9; | |
3896 //v12 = -pBLVRenderParams->vPartyPos.z; | |
2543 | 3897 if (pIndoorCameraD3D->sRotationX) |
2496 | 3898 { |
2543 | 3899 v16 = v8 * -pIndoorCameraD3D->vPartyPos.x + v29 * -pIndoorCameraD3D->vPartyPos.y; |
3900 v17 = -65536 * pIndoorCameraD3D->vPartyPos.z; | |
3901 this->field_0_party_dir_x = fixpoint_mul(v16, v28) + fixpoint_mul((-pIndoorCameraD3D->vPartyPos.z) << 16, v9); | |
3902 this->field_4_party_dir_y = v8 * -pIndoorCameraD3D->vPartyPos.y - v29 * -pIndoorCameraD3D->vPartyPos.x; | |
2496 | 3903 this->field_8_party_dir_z = fixpoint_mul(v17, v28) - fixpoint_mul(v16, v9); |
3904 } | |
3905 else | |
3906 { | |
2543 | 3907 this->field_0_party_dir_x = v8 * -pIndoorCameraD3D->vPartyPos.x + v29 * -pIndoorCameraD3D->vPartyPos.y; |
3908 this->field_4_party_dir_y = v8 * -pIndoorCameraD3D->vPartyPos.y - v29 * -pIndoorCameraD3D->vPartyPos.x; | |
3909 this->field_8_party_dir_z = (-pIndoorCameraD3D->vPartyPos.z) << 16; | |
2496 | 3910 } |
3911 | |
2543 | 3912 if (pIndoorCameraD3D->sRotationX) |
2496 | 3913 { |
3914 v19 = fixpoint_mul(a2, v8) + fixpoint_mul(a3, v29); | |
3915 | |
3916 this->angle_from_north = fixpoint_mul(v19, v28) + fixpoint_mul(a4, v9); | |
3917 this->angle_from_west = fixpoint_mul(a3, v8) - fixpoint_mul(a2, v29); | |
3918 this->viewing_angle_from_west_east = fixpoint_mul(a4, v28) - fixpoint_mul(v19, v9); | |
3919 } | |
3920 else | |
3921 { | |
3922 this->angle_from_north = fixpoint_mul(a2, v8) + fixpoint_mul(a3, v29); | |
3923 this->angle_from_west = fixpoint_mul(a3, v8) - fixpoint_mul(a2, v29); | |
3924 this->viewing_angle_from_west_east = a4; | |
3925 } | |
3926 | |
2543 | 3927 if (pIndoorCameraD3D->sRotationX) |
2496 | 3928 { |
3929 v21 = fixpoint_mul(a5, v8) + fixpoint_mul(a6, v29); | |
3930 | |
3931 this->angle_from_east = fixpoint_mul(v21, v28) + fixpoint_mul(a7, v9); | |
3932 this->angle_from_south = fixpoint_mul(a6, v8) - fixpoint_mul(a5, v29); | |
3933 this->viewing_angle_from_north_south = fixpoint_mul(a7, v28) - fixpoint_mul(v21, v9); | |
3934 } | |
3935 else | |
3936 { | |
3937 this->angle_from_east = fixpoint_mul(a5, v8) + fixpoint_mul(a6, v29); | |
3938 this->angle_from_south = fixpoint_mul(a6, v8) - fixpoint_mul(a5, v29); | |
3939 this->viewing_angle_from_north_south = a7; | |
3940 } | |
3941 | |
3942 this->angle_from_east = -this->angle_from_east; | |
3943 this->angle_from_south = -this->angle_from_south; | |
3944 this->viewing_angle_from_north_south = -this->viewing_angle_from_north_south; | |
3945 | |
3946 this->field_24 = fixpoint_dot(this->angle_from_north, this->field_0_party_dir_x, | |
3947 this->angle_from_west, this->field_4_party_dir_y, | |
3948 this->viewing_angle_from_west_east, this->field_8_party_dir_z); | |
3949 this->field_28 = fixpoint_dot(this->angle_from_east, this->field_0_party_dir_x, | |
3950 this->angle_from_south, this->field_4_party_dir_y, | |
3951 this->viewing_angle_from_north_south, this->field_8_party_dir_z); | |
3952 } | |
3953 //----- (00407A1C) -------------------------------------------------------- | |
3954 bool __fastcall sub_407A1C(int x, int y, int z, Vec3_int_ v) | |
3955 { | |
3956 unsigned int v4; // esi@1 | |
3957 int dist_y; // edi@2 | |
3958 int dist_z; // ebx@2 | |
3959 int dist_x; // esi@2 | |
3960 signed int v9; // ecx@2 | |
3961 int v10; // eax@2 | |
3962 int v12; // eax@4 | |
3963 int v17; // ST34_4@25 | |
3964 int v18; // ST38_4@25 | |
3965 int v19; // eax@25 | |
3966 char v20; // zf@25 | |
3967 signed int v21; // ebx@25 | |
3968 signed int v23; // edi@26 | |
3969 int v24; // ST34_4@30 | |
3970 signed int v32; // ecx@37 | |
3971 int v33; // eax@37 | |
3972 int v35; // eax@39 | |
3973 ODMFace *odm_face; // esi@54 | |
3974 signed int v40; // ebx@60 | |
3975 signed int v42; // edi@61 | |
3976 signed int v49; // ecx@73 | |
3977 int v50; // eax@73 | |
3978 int v51; // edx@75 | |
3979 int v52; // ecx@75 | |
3980 int v53; // eax@75 | |
3981 int v59; // eax@90 | |
3982 BLVFace *face; // esi@91 | |
3983 int v63; // ST34_4@98 | |
3984 int v64; // ST30_4@98 | |
3985 int v65; // eax@98 | |
3986 signed int v66; // ebx@98 | |
3987 signed int v68; // edi@99 | |
3988 int v69; // ST2C_4@103 | |
3989 signed int v77; // ecx@111 | |
3990 int v78; // eax@111 | |
3991 int v79; // edx@113 | |
3992 int v80; // ecx@113 | |
3993 int v81; // eax@113 | |
3994 int v87; // ecx@128 | |
3995 signed int v91; // ebx@136 | |
3996 signed int v93; // edi@137 | |
3997 Vec3_int_ v97; // [sp-18h] [bp-94h]@1 | |
3998 int v107; // [sp+10h] [bp-6Ch]@98 | |
3999 int v108; // [sp+10h] [bp-6Ch]@104 | |
4000 int v109; // [sp+18h] [bp-64h]@25 | |
4001 int v110; // [sp+18h] [bp-64h]@31 | |
4002 signed int v113; // [sp+20h] [bp-5Ch]@1 | |
4003 signed int v114; // [sp+24h] [bp-58h]@1 | |
4004 int v119; // [sp+34h] [bp-48h]@75 | |
4005 int v120; // [sp+34h] [bp-48h]@113 | |
4006 int v121; // [sp+38h] [bp-44h]@4 | |
4007 int v122; // [sp+38h] [bp-44h]@39 | |
4008 int v123; // [sp+38h] [bp-44h]@76 | |
4009 int v124; // [sp+38h] [bp-44h]@114 | |
4010 int v125; // [sp+3Ch] [bp-40h]@4 | |
4011 int v126; // [sp+3Ch] [bp-40h]@39 | |
4012 int v127; // [sp+3Ch] [bp-40h]@77 | |
4013 int v128; // [sp+3Ch] [bp-40h]@115 | |
4014 int v129; // [sp+40h] [bp-3Ch]@11 | |
4015 int v130; // [sp+40h] [bp-3Ch]@46 | |
4016 int v131; // [sp+40h] [bp-3Ch]@78 | |
4017 int v132; // [sp+40h] [bp-3Ch]@116 | |
4018 int v133; // [sp+44h] [bp-38h]@10 | |
4019 int v134; // [sp+44h] [bp-38h]@45 | |
4020 int v135; // [sp+44h] [bp-38h]@81 | |
4021 int v136; // [sp+44h] [bp-38h]@119 | |
4022 int v137; // [sp+48h] [bp-34h]@7 | |
4023 int v138; // [sp+48h] [bp-34h]@42 | |
4024 int v139; // [sp+48h] [bp-34h]@82 | |
4025 int v140; // [sp+48h] [bp-34h]@120 | |
4026 int v141; // [sp+4Ch] [bp-30h]@6 | |
4027 int v142; // [sp+4Ch] [bp-30h]@41 | |
4028 int v143; // [sp+4Ch] [bp-30h]@75 | |
4029 int v144; // [sp+4Ch] [bp-30h]@113 | |
4030 int v145; // [sp+50h] [bp-2Ch]@5 | |
4031 int v146; // [sp+50h] [bp-2Ch]@40 | |
4032 int v149; // [sp+54h] [bp-28h]@4 | |
4033 int v150; // [sp+54h] [bp-28h]@39 | |
4034 int sDepthb; // [sp+58h] [bp-24h]@90 | |
4035 signed int a5b; // [sp+5Ch] [bp-20h]@83 | |
4036 signed int a5c; // [sp+5Ch] [bp-20h]@121 | |
4037 int v162; // [sp+60h] [bp-1Ch]@128 | |
4038 int outz; // [sp+64h] [bp-18h]@2 | |
4039 int outx; // [sp+68h] [bp-14h]@2 | |
4040 int outy; // [sp+6Ch] [bp-10h]@2 | |
4041 int sZ; // [sp+70h] [bp-Ch]@2 | |
4042 int sX; // [sp+74h] [bp-8h]@2 | |
4043 int sY; // [sp+78h] [bp-4h]@2 | |
4044 //8bytes unused | |
4045 int ya; // [sp+84h] [bp+8h]@60 | |
4046 int yb; // [sp+84h] [bp+8h]@136 | |
4047 int ve; // [sp+88h] [bp+Ch]@60 | |
4048 int va; // [sp+88h] [bp+Ch]@60 | |
4049 int vb; // [sp+88h] [bp+Ch]@66 | |
4050 int vf; // [sp+88h] [bp+Ch]@136 | |
4051 int vc; // [sp+88h] [bp+Ch]@136 | |
4052 int vd; // [sp+88h] [bp+Ch]@142 | |
4053 int v_4; // [sp+8Ch] [bp+10h]@60 | |
4054 int v_4a; // [sp+8Ch] [bp+10h]@65 | |
4055 int v_4b; // [sp+8Ch] [bp+10h]@136 | |
4056 int v_4c; // [sp+8Ch] [bp+10h]@141 | |
4057 | |
4058 //__debugbreak();ñðàáàòûâàåò ïðè ñòðåëüáå îãíåííûì øàðîì | |
4059 | |
4060 v4 = stru_5C6E00->Atan2(v.x - x, v.y - y); | |
4061 | |
4062 v113 = 0; | |
4063 v114 = 0; | |
4064 | |
4065 v97.z = z; | |
4066 v97.x = x; | |
4067 v97.y = y; | |
4068 | |
4069 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
4070 { | |
4071 Vec3_int_::Rotate(32, stru_5C6E00->uIntegerHalfPi + v4, 0, v97, &sX, &sY, &sZ); | |
4072 Vec3_int_::Rotate(32, stru_5C6E00->uIntegerHalfPi + v4, 0, v, &outx, &outy, &outz); | |
4073 dist_y = outy - sY; | |
4074 dist_z = outz - sZ; | |
4075 dist_x = outx - sX; | |
4076 v49 = integer_sqrt(dist_x * dist_x + dist_y * dist_y + dist_z * dist_z); | |
4077 v50 = 65536; | |
4078 if ( v49 ) | |
4079 v50 = 65536 / v49; | |
4080 v51 = outx; | |
4081 v143 = dist_x * v50; | |
4082 v52 = dist_y * v50; | |
4083 v53 = dist_z * v50; | |
4084 | |
4085 v123 = max(outx, sX); | |
4086 v119 = min(outx, sX); | |
4087 | |
4088 v131 = max(outy, sY); | |
4089 v127 = min(outy, sY); | |
4090 | |
4091 v139 = max(outz, sZ); | |
4092 v135 = min(outz, sZ); | |
4093 | |
4094 for ( a5b = 0; a5b < 2; a5b++ ) | |
4095 { | |
4096 if ( a5b ) | |
4097 v59 = pIndoor->GetSector(sX, sY, sZ); | |
4098 else | |
4099 v59 = pIndoor->GetSector(outx, outy, outz); | |
4100 //v60 = pIndoor->pSectors; | |
4101 //v61 = 116 * v59; | |
4102 //i = 116 * v59; | |
4103 //for (sDepthb = 0; *(__int16 *)((char *)&pIndoor->pSectors->uNumWalls + v61) | |
4104 //+ 2 * *(__int16 *)((char *)&pIndoor->pSectors->uNumFloors + v61); ++sDepthb) | |
4105 for ( sDepthb = 0; sDepthb < pIndoor->pSectors[v59].uNumFaces; ++sDepthb ) | |
4106 { | |
4107 face = &pIndoor->pFaces[pIndoor->pSectors[v59].pFaceIDs[sDepthb]];// face = &pIndoor->pFaces[*(__int16 *)((char *)&pIndoor->pSectors->pWalls + v61)[sDepthb]] | |
4108 v63 = fixpoint_mul(v143, face->pFacePlane_old.vNormal.x); | |
4109 v64 = fixpoint_mul(v53, face->pFacePlane_old.vNormal.z); | |
4110 v65 = fixpoint_mul(v52, face->pFacePlane_old.vNormal.y); | |
4111 v20 = v63 + v64 + v65 == 0; | |
4112 v66 = v63 + v64 + v65; | |
4113 v107 = v63 + v64 + v65; | |
4114 if ( face->Portal() | |
4115 || v119 > face->pBounding.x2 || v123 < face->pBounding.x1 | |
4116 || v127 > face->pBounding.y2 || v131 < face->pBounding.y1 | |
4117 || v135 > face->pBounding.z2 || v139 < face->pBounding.z1 | |
4118 || v20 ) | |
4119 continue; | |
4120 v68 = -(face->pFacePlane_old.dist + sX * face->pFacePlane_old.vNormal.x | |
4121 + sY * face->pFacePlane_old.vNormal.y | |
4122 + sZ * face->pFacePlane_old.vNormal.z); | |
4123 if ( v66 <= 0 ) | |
4124 { | |
4125 if ( face->pFacePlane_old.dist + sX * face->pFacePlane_old.vNormal.x | |
4126 + sY * face->pFacePlane_old.vNormal.y | |
4127 + sZ * face->pFacePlane_old.vNormal.z < 0 ) | |
4128 continue; | |
4129 } | |
4130 else | |
4131 { | |
4132 if ( face->pFacePlane_old.dist + sX * face->pFacePlane_old.vNormal.x | |
4133 + sY * face->pFacePlane_old.vNormal.y | |
4134 + sZ * face->pFacePlane_old.vNormal.z > 0 ) | |
4135 continue; | |
4136 } | |
4137 v69 = abs(-(face->pFacePlane_old.dist + sX * face->pFacePlane_old.vNormal.x | |
4138 + sY * face->pFacePlane_old.vNormal.y | |
4139 + sZ * face->pFacePlane_old.vNormal.z )) >> 14; | |
4140 if ( v69 <= abs(v66) ) | |
4141 { | |
4142 //LODWORD(v70) = v68 << 16; | |
4143 //HIDWORD(v70) = v68 >> 16; | |
4144 //v71 = v70 / v107; | |
4145 //v108 = v70 / v107; | |
4146 v108 = fixpoint_div(v68, v107); | |
4147 if ( v108 >= 0 ) | |
4148 { | |
4149 if ( sub_4075DB(sX + ((signed int)(fixpoint_mul(v108, v143) + 0x8000) >> 16), | |
4150 sY + ((signed int)(fixpoint_mul(v108, v52) + 0x8000) >> 16), | |
4151 sZ + ((signed int)(fixpoint_mul(v108, v53) + 0x8000) >> 16), | |
4152 face) ) | |
4153 { | |
4154 v114 = 1; | |
4155 break; | |
4156 } | |
4157 } | |
4158 } | |
4159 } | |
4160 } | |
4161 | |
4162 Vec3_int_::Rotate(32, v4 - stru_5C6E00->uIntegerHalfPi, 0, v97, &sX, &sY, &sZ); | |
4163 Vec3_int_::Rotate(32, v4 - stru_5C6E00->uIntegerHalfPi, 0, v, &outx, &outy, &outz); | |
4164 dist_y = outy - sY; | |
4165 dist_z = outz - sZ; | |
4166 dist_x = outx - sX; | |
4167 v77 = integer_sqrt(dist_x * dist_x + dist_y * dist_y + dist_z * dist_z); | |
4168 v78 = 65536; | |
4169 if ( v77 ) | |
4170 v78 = 65536 / v77; | |
4171 v79 = outx; | |
4172 v144 = dist_x * v78; | |
4173 v80 = dist_y * v78; | |
4174 v81 = dist_z * v78; | |
4175 | |
4176 v120 = max(outx, sX); | |
4177 v124 = min(outx, sX); | |
4178 | |
4179 v132 = max(outy, sY); | |
4180 v128 = min(outy, sY); | |
4181 | |
4182 v140 = max(outz, sZ); | |
4183 v136 = min(outz, sZ); | |
4184 | |
4185 for ( a5c = 0; a5c < 2; a5c++ ) | |
4186 { | |
4187 if ( v113 ) | |
4188 return !v114 || !v113; | |
4189 if ( a5c ) | |
4190 { | |
4191 v87 = pIndoor->GetSector(sX, sY, sZ); | |
4192 } | |
4193 else | |
4194 { | |
4195 v87 = pIndoor->GetSector(outx, outy, outz); | |
4196 } | |
4197 for ( v162 = 0; v162 < pIndoor->pSectors[v87].uNumFaces; v162++) | |
4198 { | |
4199 face = &pIndoor->pFaces[pIndoor->pSectors[v87].pFaceIDs[v162]]; | |
4200 yb = fixpoint_mul(v144, face->pFacePlane_old.vNormal.x); | |
4201 v_4b = fixpoint_mul(v80, face->pFacePlane_old.vNormal.y); | |
4202 vf = fixpoint_mul(v81, face->pFacePlane_old.vNormal.z); | |
4203 v20 = yb + vf + v_4b == 0; | |
4204 v91 = yb + vf + v_4b; | |
4205 vc = yb + vf + v_4b; | |
4206 if ( face->Portal() | |
4207 || v120 > face->pBounding.x2 || v124 < face->pBounding.x1 | |
4208 || v128 > face->pBounding.y2 || v132 < face->pBounding.y1 | |
4209 || v136 > face->pBounding.z2 || v140 < face->pBounding.z1 | |
4210 || v20 ) | |
4211 continue; | |
4212 v93 = -(face->pFacePlane_old.dist + sX * face->pFacePlane_old.vNormal.x | |
4213 + sY * face->pFacePlane_old.vNormal.y | |
4214 + sZ * face->pFacePlane_old.vNormal.z); | |
4215 if ( v91 <= 0 ) | |
4216 { | |
4217 if ( face->pFacePlane_old.dist + sX * face->pFacePlane_old.vNormal.x | |
4218 + sY * face->pFacePlane_old.vNormal.y | |
4219 + sZ * face->pFacePlane_old.vNormal.z < 0 ) | |
4220 continue; | |
4221 } | |
4222 else | |
4223 { | |
4224 if ( face->pFacePlane_old.dist + sX * face->pFacePlane_old.vNormal.x | |
4225 + sY * face->pFacePlane_old.vNormal.y | |
4226 + sZ * face->pFacePlane_old.vNormal.z > 0 ) | |
4227 continue; | |
4228 } | |
4229 v_4c = abs(-(face->pFacePlane_old.dist + sX * face->pFacePlane_old.vNormal.x | |
4230 + sY * face->pFacePlane_old.vNormal.y | |
4231 + sZ * face->pFacePlane_old.vNormal.z)) >> 14; | |
4232 if ( v_4c <= abs(v91) ) | |
4233 { | |
4234 vd = fixpoint_div(v93, vc); | |
4235 if ( vd >= 0 ) | |
4236 { | |
4237 if ( sub_4075DB(sX + ((signed int)(fixpoint_mul(vd, v144) + 0x8000) >> 16), | |
4238 sY + ((signed int)(fixpoint_mul(vd, v80) + 0x8000) >> 16), | |
4239 sZ + ((signed int)(fixpoint_mul(vd, v81) + 0x8000) >> 16), | |
4240 face) ) | |
4241 { | |
4242 v113 = 1; | |
4243 break; | |
4244 } | |
4245 } | |
4246 } | |
4247 } | |
4248 } | |
4249 } | |
4250 else if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
4251 { | |
4252 Vec3_int_::Rotate(32, stru_5C6E00->uIntegerHalfPi + v4, 0, v97, &sX, &sY, &sZ); | |
4253 Vec3_int_::Rotate(32, stru_5C6E00->uIntegerHalfPi + v4, 0, v, &outx, &outy, &outz); | |
4254 dist_y = outy - sY; | |
4255 dist_z = outz - sZ; | |
4256 dist_x = outx - sX; | |
4257 v9 = integer_sqrt(dist_x* dist_x+ dist_y* dist_y+ dist_z* dist_z); | |
4258 v10 = 65536; | |
4259 if ( v9 ) | |
4260 v10 = 65536 / v9; | |
4261 v125 = dist_x* v10; | |
4262 v12 = dist_z* v10; | |
4263 v121 = dist_y* v10; | |
4264 | |
4265 v145 = max(outx, sX); | |
4266 v149 = min(outx, sX); | |
4267 | |
4268 v137 = max(outy, sY); | |
4269 v141 = min(outy, sY); | |
4270 | |
4271 v129 = max(outz, sZ); | |
4272 v133 = min(outz, sZ); | |
4273 | |
4274 for ( uint model_id = 0; model_id < pOutdoor->uNumBModels; model_id++) | |
4275 { | |
4276 if ( sub_4088E9(sX, sY, outx, outy, pOutdoor->pBModels[model_id].vPosition.x, pOutdoor->pBModels[model_id].vPosition.y) | |
4277 <= pOutdoor->pBModels[model_id].sBoundingRadius + 128 ) | |
4278 { | |
4279 for ( uint face_id = 0; face_id < pOutdoor->pBModels[model_id].uNumFaces; ++face_id ) | |
4280 { | |
4281 odm_face = &pOutdoor->pBModels[model_id].pFaces[face_id]; | |
4282 v17 = fixpoint_mul(v125, odm_face->pFacePlane.vNormal.x); | |
4283 v18 = fixpoint_mul(v121, odm_face->pFacePlane.vNormal.y); | |
4284 v19 = fixpoint_mul(v12, odm_face->pFacePlane.vNormal.z); | |
4285 v20 = v17 + v18 + v19 == 0; | |
4286 v21 = v17 + v18 + v19; | |
4287 v109 = v17 + v18 + v19; | |
4288 if ( v149 > odm_face->pBoundingBox.x2 || v145 < odm_face->pBoundingBox.x1 | |
4289 || v141 > odm_face->pBoundingBox.y2 || v137 < odm_face->pBoundingBox.y1 | |
4290 || v133 > odm_face->pBoundingBox.z2 || v129 < odm_face->pBoundingBox.z1 | |
4291 || v20 ) | |
4292 continue; | |
4293 v23 = -(odm_face->pFacePlane.dist + sX * odm_face->pFacePlane.vNormal.x | |
4294 + sY * odm_face->pFacePlane.vNormal.y | |
4295 + sZ * odm_face->pFacePlane.vNormal.z); | |
4296 if ( v21 <= 0 ) | |
4297 { | |
4298 if ( odm_face->pFacePlane.dist + sX * odm_face->pFacePlane.vNormal.x | |
4299 + sY * odm_face->pFacePlane.vNormal.y | |
4300 + sZ * odm_face->pFacePlane.vNormal.z < 0 ) | |
4301 continue; | |
4302 } | |
4303 else | |
4304 { | |
4305 if ( odm_face->pFacePlane.dist + sX * odm_face->pFacePlane.vNormal.x | |
4306 + sY * odm_face->pFacePlane.vNormal.y | |
4307 + sZ * odm_face->pFacePlane.vNormal.z > 0 ) | |
4308 continue; | |
4309 } | |
4310 v24 = abs(-(odm_face->pFacePlane.dist + sX * odm_face->pFacePlane.vNormal.x | |
4311 + sY * odm_face->pFacePlane.vNormal.y | |
4312 + sZ * odm_face->pFacePlane.vNormal.z)) >> 14; | |
4313 if ( v24 <= abs(v21) ) | |
4314 { | |
4315 v110 = fixpoint_div(v23, v109); | |
4316 if ( v110 >= 0 ) | |
4317 { | |
4318 if ( sub_4077F1(sX + ((signed int)(fixpoint_mul(v110, v125) + 0x8000) >> 16), | |
4319 sY + ((signed int)(fixpoint_mul(v110, v121) + 0x8000) >> 16), | |
4320 sZ + ((signed int)(fixpoint_mul(v110, v12) + 0x8000) >> 16), | |
4321 odm_face, | |
4322 &pOutdoor->pBModels[model_id].pVertices) ) | |
4323 { | |
4324 v114 = 1; | |
4325 break; | |
4326 } | |
4327 } | |
4328 } | |
4329 } | |
4330 } | |
4331 } | |
4332 | |
4333 Vec3_int_::Rotate(32, v4 - stru_5C6E00->uIntegerHalfPi, 0, v97, &sX, &sY, &sZ); | |
4334 Vec3_int_::Rotate(32, v4 - stru_5C6E00->uIntegerHalfPi, 0, v, &outx, &outy, &outz); | |
4335 dist_y = outy - sY; | |
4336 dist_z = outz - sZ; | |
4337 dist_x = outx - sX; | |
4338 v32 = integer_sqrt(dist_x * dist_x + dist_y * dist_y + dist_z * dist_z); | |
4339 v33 = 65536; | |
4340 if ( v32 ) | |
4341 v33 = 65536 / v32; | |
4342 v126 = dist_x * v33; | |
4343 v35 = dist_z * v33; | |
4344 v122 = dist_y * v33; | |
4345 | |
4346 v146 = max(outx, sX); | |
4347 v150 = min(outx, sX); | |
4348 | |
4349 v138 = max(outy, sY); | |
4350 v142 = min(outy, sY); | |
4351 | |
4352 v130 = max(outz, sZ); | |
4353 v134 = min(outz, sZ); | |
4354 | |
4355 for ( uint model_id = 0; model_id < (signed int)pOutdoor->uNumBModels; ++model_id ) | |
4356 { | |
4357 if ( sub_4088E9(sX, sY, outx, outy, pOutdoor->pBModels[model_id].vPosition.x, pOutdoor->pBModels[model_id].vPosition.y) | |
4358 <= pOutdoor->pBModels[model_id].sBoundingRadius + 128 ) | |
4359 { | |
4360 for ( uint face_id = 0; face_id < pOutdoor->pBModels[model_id].uNumFaces; ++face_id ) | |
4361 { | |
4362 odm_face = &pOutdoor->pBModels[model_id].pFaces[face_id]; | |
4363 ya = fixpoint_mul(v126, odm_face->pFacePlane.vNormal.x); | |
4364 ve = fixpoint_mul(v122, odm_face->pFacePlane.vNormal.y); | |
4365 v_4 = fixpoint_mul(v35, odm_face->pFacePlane.vNormal.z); | |
4366 v20 = ya + ve + v_4 == 0; | |
4367 v40 = ya + ve + v_4; | |
4368 va = ya + ve + v_4; | |
4369 if ( v150 > odm_face->pBoundingBox.x2 || v146 < odm_face->pBoundingBox.x1 | |
4370 || v142 > odm_face->pBoundingBox.y2 || v138 < odm_face->pBoundingBox.y1 | |
4371 || v134 > odm_face->pBoundingBox.z2 || v130 < odm_face->pBoundingBox.z1 | |
4372 || v20 ) | |
4373 continue; | |
4374 v42 = -(odm_face->pFacePlane.dist + sX * odm_face->pFacePlane.vNormal.x | |
4375 + sY * odm_face->pFacePlane.vNormal.y | |
4376 + sZ * odm_face->pFacePlane.vNormal.z); | |
4377 if ( v40 <= 0 ) | |
4378 { | |
4379 if ( odm_face->pFacePlane.dist + sX * odm_face->pFacePlane.vNormal.x | |
4380 + sY * odm_face->pFacePlane.vNormal.y | |
4381 + sZ * odm_face->pFacePlane.vNormal.z < 0 ) | |
4382 continue; | |
4383 } | |
4384 else | |
4385 { | |
4386 if ( odm_face->pFacePlane.dist + sX * odm_face->pFacePlane.vNormal.x | |
4387 + sY * odm_face->pFacePlane.vNormal.y | |
4388 + sZ * odm_face->pFacePlane.vNormal.z > 0 ) | |
4389 continue; | |
4390 } | |
4391 v_4a = abs(-(odm_face->pFacePlane.dist + sX * odm_face->pFacePlane.vNormal.x | |
4392 + sY * odm_face->pFacePlane.vNormal.y | |
4393 + sZ * odm_face->pFacePlane.vNormal.z )) >> 14; | |
4394 if ( v_4a <= abs(v40) ) | |
4395 { | |
4396 //LODWORD(v43) = v42 << 16; | |
4397 //HIDWORD(v43) = v42 >> 16; | |
4398 //vb = v43 / va; | |
4399 vb = fixpoint_div(v42, va); | |
4400 if ( vb >= 0 ) | |
4401 { | |
4402 if ( sub_4077F1(sX + ((signed int)(fixpoint_mul(vb, v126) + 0x8000) >> 16), | |
4403 sY + ((signed int)(fixpoint_mul(vb, v122) + 0x8000) >> 16), | |
4404 sZ + ((signed int)(fixpoint_mul(vb, v35) + 0x8000) >> 16), | |
4405 odm_face, | |
4406 &pOutdoor->pBModels[model_id].pVertices) ) | |
4407 { | |
4408 v113 = 1; | |
4409 break; | |
4410 } | |
4411 } | |
4412 } | |
4413 } | |
4414 } | |
4415 } | |
4416 | |
4417 } | |
4418 return !v114 || !v113; | |
4419 } | |
4420 //----- (0043F333) -------------------------------------------------------- | |
4421 void BspRenderer::MakeVisibleSectorList() | |
4422 { | |
4423 // int v6; // ebx@3 | |
4424 | |
4425 uNumVisibleNotEmptySectors = 0; | |
4426 for (uint i = 0; i < num_nodes; ++i) | |
4427 { | |
4428 //if (!uNumVisibleNotEmptySectors) | |
4429 //{ | |
4430 //pVisibleSectorIDs_toDrawDecorsActorsEtcFrom[uNumVisibleNotEmptySectors++] = nodes[i].uSectorID; | |
4431 //continue; | |
4432 //} | |
4433 //v6 = 0; | |
4434 //while (pVisibleSectorIDs_toDrawDecorsActorsEtcFrom[v6] != nodes[i].uSectorID ) | |
4435 for ( uint j = 0; j < uNumVisibleNotEmptySectors; j++ ) | |
4436 { | |
4437 //++v6; | |
4438 if ( pVisibleSectorIDs_toDrawDecorsActorsEtcFrom[j] == nodes[i].uSectorID) | |
4439 break; | |
4440 } | |
4441 pVisibleSectorIDs_toDrawDecorsActorsEtcFrom[uNumVisibleNotEmptySectors++] = nodes[i].uSectorID; | |
4442 } | |
4443 } | |
4444 //----- (0046A334) -------------------------------------------------------- | |
4445 char __fastcall DoInteractionWithTopmostZObject(int a1, int a2) | |
4446 { | |
4447 int v17; // edi@36 | |
4448 | |
2567 | 4449 v17 = PID_ID(a1); |
4450 switch ( PID_TYPE(a1) ) | |
4451 { | |
4452 case OBJECT_Item: // take the item | |
4453 { | |
4454 if (pObjectList->pObjects[pSpriteObjects[v17].uObjectDescID].uFlags & 0x10 | |
4455 || v17 >= 1000 | |
4456 || !pSpriteObjects[v17].uObjectDescID) | |
4457 return 1; | |
4458 | |
4459 extern void ItemInteraction(unsigned int item_id); | |
4460 ItemInteraction(v17); | |
4461 break; | |
4462 } | |
2496 | 4463 |
4464 case OBJECT_Actor: | |
4465 if ( pActors[v17].uAIState == Dying || pActors[v17].uAIState == Summoned ) | |
4466 return 1; | |
2567 | 4467 if (pActors[v17].uAIState == Dead) |
4468 pActors[v17].LootActor(); | |
2496 | 4469 else |
4470 { | |
2567 | 4471 extern bool ActorInteraction(unsigned int id); |
4472 ActorInteraction(v17); | |
2496 | 4473 } |
4474 break; | |
4475 | |
4476 case OBJECT_Decoration: | |
2567 | 4477 extern void DecorationInteraction(unsigned int id, unsigned int pid); |
4478 DecorationInteraction(v17, a1); | |
2496 | 4479 break; |
4480 | |
4481 default: | |
4482 MessageBoxW(nullptr, L"Warning: Invalid ID reached!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Mouse.cpp:2020", 0); | |
4483 return 1; | |
4484 | |
4485 case OBJECT_BModel: | |
4486 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
4487 { | |
4488 int bmodel_id = a1 >> 9, | |
4489 face_id = v17 & 0x3F; | |
4490 if (bmodel_id >= pOutdoor->uNumBModels) | |
4491 return 1; | |
4492 if (pOutdoor->pBModels[bmodel_id].pFaces[face_id].uAttributes & FACE_HAS_EVENT | |
4493 || pOutdoor->pBModels[bmodel_id].pFaces[face_id].sCogTriggeredID == 0 ) | |
4494 return 1; | |
4495 EventProcessor((signed __int16)pOutdoor->pBModels[bmodel_id].pFaces[face_id].sCogTriggeredID, a1, 1); | |
4496 } | |
4497 else | |
4498 { | |
4499 if ( !(pIndoor->pFaces[v17].uAttributes & FACE_CLICKABLE) ) | |
4500 { | |
4501 ShowNothingHereStatus(); | |
4502 return 1; | |
4503 } | |
4504 if ( pIndoor->pFaces[v17].uAttributes & FACE_HAS_EVENT || !pIndoor->pFaceExtras[pIndoor->pFaces[v17].uFaceExtraID].uEventID ) | |
4505 return 1; | |
2541 | 4506 if ( current_screen_type != SCREEN_BRANCHLESS_NPC_DIALOG ) |
2496 | 4507 EventProcessor((signed __int16)pIndoor->pFaceExtras[pIndoor->pFaces[v17].uFaceExtraID].uEventID, a1, 1); |
4508 } | |
4509 return 0; | |
4510 break; | |
4511 } | |
4512 return 0; | |
4513 } | |
4514 //----- (0046BDF1) -------------------------------------------------------- | |
4515 void BLV_UpdateUserInputAndOther() | |
4516 { | |
4517 UpdateObjects(); | |
4518 BLV_ProcessPartyActions(); | |
4519 UpdateActors_BLV(); | |
4520 BLV_UpdateDoors(); | |
4521 check_event_triggers(); | |
4522 } | |
4523 //----- (00424829) -------------------------------------------------------- | |
4524 // Finds out if current portal can be seen through the previous portal | |
4525 bool PortalFrustrum(int pNumVertices, BspRenderer_PortalViewportData *far_portal, BspRenderer_PortalViewportData *near_portal, int uFaceID) | |
4526 { | |
4527 int min_y; // esi@5 | |
4528 int max_y; // edx@5 | |
4529 int current_ID; // eax@12 | |
4530 int v13; // eax@22 | |
4531 int v15; // ecx@29 | |
4532 int v18; // eax@39 | |
4533 int v19; // eax@44 | |
4534 int v20; // ecx@44 | |
4535 int v22; // edi@46 | |
4536 int v24; // edx@48 | |
4537 int v26; // eax@55 | |
4538 int v29; // edx@57 | |
4539 int v31; // eax@64 | |
4540 __int16 v36; // dx@67 | |
4541 __int16 v38; // dx@67 | |
4542 int v46; // edx@87 | |
4543 int v49; // esi@93 | |
4544 int v53; // [sp+Ch] [bp-34h]@44 | |
4545 int v54; // [sp+10h] [bp-30h]@0 | |
4546 int min_y_ID2; // [sp+14h] [bp-2Ch]@12 | |
4547 int v59; // [sp+14h] [bp-2Ch]@87 | |
4548 int v61; // [sp+1Ch] [bp-24h]@29 | |
4549 int v62; // [sp+20h] [bp-20h]@0 | |
4550 signed int direction1; // [sp+24h] [bp-1Ch]@3 | |
4551 signed int direction2; // [sp+28h] [bp-18h]@3 | |
4552 int min_y_ID; // [sp+2Ch] [bp-14h]@5 | |
4553 int v69; // [sp+34h] [bp-Ch]@29 | |
4554 int v70; // [sp+34h] [bp-Ch]@46 | |
4555 | |
4556 if ( pNumVertices <= 1 ) | |
4557 return false; | |
4558 min_y = PortalFace._screen_space_y[0]; | |
4559 min_y_ID = 0; | |
4560 max_y = PortalFace._screen_space_y[0]; | |
4561 //face direction(íàïðàâëåíèå ôåéñà) | |
4562 if ( !PortalFace.direction ) | |
4563 { | |
4564 direction1 = 1; | |
4565 direction2 = -1; | |
4566 } | |
4567 else | |
4568 { | |
4569 direction1 = -1; | |
4570 direction2 = 1; | |
4571 } | |
4572 | |
4573 //get min and max y for portal(äàòü ìèíèìàëüíîå è ìàêñèìàëüíîå çíà÷åíèå y äëÿ ïîðòàëà) | |
4574 for ( uint i = 1; i < pNumVertices; ++i ) | |
4575 { | |
4576 if (PortalFace._screen_space_y[i] < min_y) | |
4577 { | |
4578 min_y_ID = i; | |
4579 min_y = PortalFace._screen_space_y[i]; | |
4580 } | |
4581 else if (PortalFace._screen_space_y[i] > max_y) | |
4582 { | |
4583 max_y = PortalFace._screen_space_y[i]; | |
4584 } | |
4585 } | |
4586 if ( max_y == min_y ) | |
4587 return false; | |
4588 | |
4589 //***************************************************************************************************************************** | |
4590 far_portal->_viewport_space_y = min_y; | |
4591 far_portal->_viewport_space_w = max_y; | |
4592 current_ID = min_y_ID; | |
4593 min_y_ID2 = min_y_ID; | |
4594 | |
4595 for ( uint i = 0; i < pNumVertices; ++i ) | |
4596 { | |
4597 current_ID += direction2; | |
4598 if ( current_ID < pNumVertices ) | |
4599 { | |
4600 if ( current_ID < 0 ) | |
4601 current_ID += pNumVertices; | |
4602 } | |
4603 else | |
4604 current_ID -= pNumVertices; | |
4605 if ( PortalFace._screen_space_y[current_ID] <= PortalFace._screen_space_y[min_y_ID] )//îïðåäåëåíèå ìèíèìàëüíîé ó | |
4606 { | |
4607 min_y_ID2 = current_ID; | |
4608 min_y_ID = current_ID; | |
4609 } | |
4610 if ( PortalFace._screen_space_y[current_ID] == max_y ) | |
4611 break; | |
4612 } | |
4613 | |
4614 v13 = min_y_ID2 + direction2; | |
4615 if ( v13 < pNumVertices ) | |
4616 { | |
4617 if ( v13 < 0 ) | |
4618 v13 += pNumVertices; | |
4619 } | |
4620 else | |
4621 v13 -= pNumVertices; | |
4622 if ( PortalFace._screen_space_y[v13] != PortalFace._screen_space_y[min_y_ID2] ) | |
4623 { | |
4624 v62 = PortalFace._screen_space_x[min_y_ID2] << 16; | |
4625 v54 = ((PortalFace._screen_space_x[v13] - PortalFace._screen_space_x[min_y_ID2]) << 16) / | |
4626 (PortalFace._screen_space_y[v13] - PortalFace._screen_space_y[min_y_ID2]); | |
4627 far_portal->viewport_left_side[min_y] = (short)PortalFace._screen_space_x[min_y_ID2]; | |
4628 } | |
4629 //**************************************************************************************************************************************** | |
4630 // | |
4631 v15 = min_y_ID; | |
4632 v61 = min_y_ID; | |
4633 for ( v69 = 0; v69 < pNumVertices; ++v69 ) | |
4634 { | |
4635 v15 += direction1; | |
4636 if ( v15 < pNumVertices ) | |
4637 { | |
4638 if ( v15 < 0 ) | |
4639 v15 += pNumVertices; | |
4640 } | |
4641 else | |
4642 v15 -= pNumVertices; | |
4643 if ( PortalFace._screen_space_y[v15] <= PortalFace._screen_space_y[min_y_ID] ) | |
4644 { | |
4645 v61 = v15; | |
4646 min_y_ID = v15; | |
4647 } | |
4648 if ( PortalFace._screen_space_y[v15] == max_y ) | |
4649 break; | |
4650 } | |
4651 v18 = direction1 + v61; | |
4652 if ( v18 < pNumVertices ) | |
4653 { | |
4654 if ( v18 < 0 ) | |
4655 v18 += pNumVertices; | |
4656 } | |
4657 else | |
4658 v18 -= pNumVertices; | |
4659 v19 = v18; | |
4660 v20 = v61; | |
4661 if ( PortalFace._screen_space_y[v19] != PortalFace._screen_space_y[v61] ) | |
4662 { | |
4663 v61 = PortalFace._screen_space_x[v20] << 16; | |
4664 v53 = ((PortalFace._screen_space_x[v19] - PortalFace._screen_space_x[v20]) << 16) / | |
4665 (PortalFace._screen_space_y[v19] - PortalFace._screen_space_y[v20]); | |
4666 far_portal->viewport_right_side[max_y] = (short)PortalFace._screen_space_x[v20]; | |
4667 } | |
4668 //**************************************************************************************************************************************** | |
4669 v22 = min_y; | |
4670 if ( min_y <= max_y ) | |
4671 { | |
4672 for ( v70 = min_y; v70 <= max_y; ++v70 ) | |
4673 { | |
4674 v24 = v13; | |
4675 if ( v22 >= PortalFace._screen_space_y[v13] && v22 != max_y ) | |
4676 { | |
4677 v13 = direction2 + v13; | |
4678 if ( v13 < pNumVertices ) | |
4679 { | |
4680 if ( v13 < 0 ) | |
4681 v13 += pNumVertices; | |
4682 } | |
4683 else | |
4684 v13 -= pNumVertices; | |
4685 v26 = v13; | |
4686 if ( PortalFace._screen_space_y[v26] - PortalFace._screen_space_y[v24] > 0 ) | |
4687 { | |
4688 v54 = ((PortalFace._screen_space_x[v26] - PortalFace._screen_space_x[v24]) << 16) / (PortalFace._screen_space_y[v26] - PortalFace._screen_space_y[v24]); | |
4689 v62 = PortalFace._screen_space_x[v24] << 16; | |
4690 } | |
4691 } | |
4692 v29 = v18; | |
4693 if ( v70 >= PortalFace._screen_space_y[v18] && v70 != max_y ) | |
4694 { | |
4695 v18 += direction1; | |
4696 if ( v18 < pNumVertices ) | |
4697 { | |
4698 if ( v18 < 0 ) | |
4699 v18 += pNumVertices; | |
4700 } | |
4701 else | |
4702 v18 -= pNumVertices; | |
4703 v31 = v18; | |
4704 if ( PortalFace._screen_space_y[v31] - PortalFace._screen_space_y[v29] > 0 ) | |
4705 { | |
4706 v53 = ((PortalFace._screen_space_x[v31] - PortalFace._screen_space_x[v29]) << 16) / (PortalFace._screen_space_y[v31] - PortalFace._screen_space_y[v29]); | |
4707 v61 = PortalFace._screen_space_x[v29] << 16; | |
4708 } | |
4709 } | |
4710 far_portal->viewport_left_side[v70] = HIWORD(v62); | |
4711 far_portal->viewport_right_side[v70] = HIWORD(v61); | |
4712 if ( far_portal->viewport_left_side[v70] > far_portal->viewport_right_side[v70] ) | |
4713 { | |
4714 v36 = far_portal->viewport_left_side[v70] ^ far_portal->viewport_right_side[v70]; | |
4715 //v37 = far_portal->viewport_right_side[v70]; | |
4716 far_portal->viewport_left_side[v70] = v36; | |
4717 v38 = far_portal->viewport_right_side[v70] ^ v36; | |
4718 far_portal->viewport_left_side[v70] ^= v38; | |
4719 far_portal->viewport_right_side[v70] = v38; | |
4720 } | |
4721 v62 += v54; | |
4722 v22 = v70 + 1; | |
4723 v61 += v53; | |
4724 } | |
4725 } | |
4726 //***************************************************************************************************************************** | |
4727 // check portals coordinates and determine max, min(ïðîâåðêà êîîðäèíàò ïîðòàëîâ è îïðåäåëåíèå ìàêñ, ìèí-îé ó) | |
4728 if ( max_y < near_portal->_viewport_space_y ) | |
4729 return false; | |
4730 if ( min_y > near_portal->_viewport_space_w ) | |
4731 return false; | |
4732 if ( min_y < near_portal->_viewport_space_y ) | |
4733 min_y = near_portal->_viewport_space_y; | |
4734 if ( max_y > near_portal->_viewport_space_w ) | |
4735 max_y = near_portal->_viewport_space_w; | |
4736 if ( min_y <= max_y ) | |
4737 { | |
4738 for ( min_y; min_y <= max_y; ++min_y ) | |
4739 { | |
4740 if ( far_portal->viewport_right_side[min_y] >= near_portal->viewport_left_side[min_y] | |
4741 && far_portal->viewport_left_side[min_y] <= near_portal->viewport_right_side[min_y] ) | |
4742 break; | |
4743 } | |
4744 } | |
4745 if ( max_y < min_y ) | |
4746 return false; | |
4747 for ( max_y; max_y >= min_y; --max_y ) | |
4748 { | |
4749 if ( far_portal->viewport_right_side[max_y] >= near_portal->viewport_left_side[max_y] | |
4750 && far_portal->viewport_left_side[max_y] <= near_portal->viewport_right_side[max_y] ) | |
4751 break; | |
4752 } | |
4753 if ( min_y >= max_y ) | |
4754 return false; | |
4755 //************************************************************************************************************************************* | |
4756 v59 = min_y; | |
4757 for ( v46 = max_y - min_y + 1; v46; --v46 ) | |
4758 { | |
4759 if ( far_portal->viewport_left_side[v59] < near_portal->viewport_left_side[v59] ) | |
4760 far_portal->viewport_left_side[v59] = near_portal->viewport_left_side[v59]; | |
4761 if ( far_portal->viewport_right_side[v59] > near_portal->viewport_right_side[v59] ) | |
4762 far_portal->viewport_right_side[v59] = near_portal->viewport_right_side[v59]; | |
4763 ++v59; | |
4764 } | |
4765 far_portal->_viewport_space_y = min_y; | |
4766 far_portal->_viewport_space_w = max_y; | |
4767 far_portal->_viewport_space_x = far_portal->viewport_left_side[min_y]; | |
4768 far_portal->_viewport_space_z = far_portal->viewport_right_side[min_y]; | |
4769 far_portal->_viewport_x_minID = min_y; | |
4770 far_portal->_viewport_z_maxID = min_y; | |
4771 v49 = min_y + 1; | |
4772 if ( v49 <= max_y ) | |
4773 { | |
4774 for ( v49; v49 <= max_y; ++v49 ) | |
4775 { | |
4776 if ( far_portal->viewport_left_side[v49] < far_portal->_viewport_space_x ) | |
4777 { | |
4778 far_portal->_viewport_space_x = far_portal->viewport_left_side[v49]; | |
4779 far_portal->_viewport_x_minID = v49; | |
4780 } | |
4781 if ( far_portal->viewport_right_side[v49] > far_portal->_viewport_space_z ) | |
4782 { | |
4783 far_portal->_viewport_space_z = far_portal->viewport_right_side[v49]; | |
4784 far_portal->_viewport_z_maxID = v49; | |
4785 } | |
4786 } | |
4787 } | |
4788 return true; | |
4789 } | |
4790 //----- (00423B5D) -------------------------------------------------------- | |
4791 int __fastcall GetPortalScreenCoord(unsigned int uFaceID) | |
4792 { | |
4793 BLVFace *pFace; // ebx@1 | |
4794 int pNextVertices; // edx@11 | |
4795 int t; // ST28_4@12 | |
4796 int pScreenX; // eax@22 | |
4797 int pScreenY; // eax@27 | |
4798 signed int left_num_vertices; // edi@31 | |
4799 signed int right_num_vertices; // ebx@41 | |
4800 signed int top_num_vertices; // edi@51 | |
4801 int bottom_num_vertices; // ebx@61 | |
4802 bool current_vertices_flag; // [sp+18h] [bp-10h]@9 | |
4803 signed int depth_num_vertices; // [sp+1Ch] [bp-Ch]@9 | |
4804 bool next_vertices_flag; // [sp+20h] [bp-8h]@10 | |
4805 | |
4806 //Äîï èíôî "Ïðîãðàììèðîâàíèå òð¸õìåðíûõ èãð äëÿ windows" Ëàìîò ñòð 910 | |
4807 | |
4808 pFace = &pIndoor->pFaces[uFaceID]; | |
4809 memset(&PortalFace, 0, sizeof(stru367)); | |
4810 | |
4811 //get direction the face(îïðåäåëåíèå íàïðàâëåííîñòè ôåéñà)********************************************************************************* | |
2543 | 4812 if ( pFace->pFacePlane_old.vNormal.x * (pIndoor->pVertices[pIndoor->pFaces[uFaceID].pVertexIDs[0]].x - pIndoorCameraD3D->vPartyPos.x) |
4813 + pFace->pFacePlane_old.vNormal.y * (pIndoor->pVertices[pIndoor->pFaces[uFaceID].pVertexIDs[0]].y - pIndoorCameraD3D->vPartyPos.y) | |
4814 + pFace->pFacePlane_old.vNormal.z * (pIndoor->pVertices[pIndoor->pFaces[uFaceID].pVertexIDs[0]].z - pIndoorCameraD3D->vPartyPos.z) < 0 ) | |
2496 | 4815 { |
4816 PortalFace.direction = true; | |
4817 } | |
4818 else | |
4819 { | |
4820 PortalFace.direction = false; | |
4821 if ( !(pFace->Portal()) ) | |
4822 return 0; | |
4823 } | |
4824 //***************************************************************************************************************************************** | |
4825 //generate/cinvertetion in camera location coordinates(ãåíåðàöèÿ/êîíâåðòèðîâàíèå â êîîðäèíàòû ïðîñòðàíñòâà êàìåðû) | |
4826 | |
4827 //for new coordinates: | |
4828 //int x = 0x AAAA BBBB; | |
4829 //AAAA - integer(öåëàÿ ÷àñòü), BBBB - fractional(äðîáíàÿ) | |
4830 //float v = HIWORD(x) + LOWORD(x) / 65535.0f; | |
4831 //0x0351A281 ýòî 849(351 â øåñòíàäöàòèðè÷íîé) â öåëîé ÷àñòè è A281 â äðîáíîé(õîòÿ êàê òî÷íî BBBB ñ÷èòàëàñü íå ïîìíþ) | |
4832 //if in HIWORD: FFFF = -1 | |
4833 //FFFE = -2 | |
4834 //FFFD = -3 | |
4835 //.... | |
4836 //8000 = -32767 | |
4837 //7FFF = 32767 | |
4838 //7FFE = 32766 | |
4839 //åñëè â LOWORD íàïðèìåð ëåæèò FFFF òî íå ñîâñåì ïîíÿòíî, ÷òî ýòî | |
4840 //ïîòîìó ÷òî åñëè è hiword è loword ðàâíû FFFF FFFF òî äâîéíîå îòðèöàíèå êàê áû, íóæíî òåñòèðîâàòü ÷òî êîíêðåòíî ïîëó÷àåòñÿ ÷òîáû ïîíÿòü ÷òî ýòî çíà÷èò | |
4841 //âñ¸ ÷òî áîëüøå 7FFF äëÿ âåðõíåãî ñëîâà ýòî èä¸ò óæå ñ ìèíóñîì/Nomad/ | |
4842 | |
4843 if ( (signed int)pFace->uNumVertices > 0 ) | |
4844 { | |
4845 for (uint i = 0; i < pFace->uNumVertices; ++i) | |
4846 { | |
2543 | 4847 pIndoorCameraD3D->ApplyViewTransform_TrueIfStillVisible_BLV(pIndoor->pVertices[pFace->pVertexIDs[i]].x, |
2496 | 4848 pIndoor->pVertices[pFace->pVertexIDs[i]].y, |
4849 pIndoor->pVertices[pFace->pVertexIDs[i]].z, | |
4850 &PortalFace._view_transformed_z[i + 3], &PortalFace._view_transformed_x[i + 3], &PortalFace._view_transformed_y[i + 3], 0); | |
4851 } | |
4852 } | |
4853 //***************************************************************************************************************************************** | |
4854 //check vertices for the nearest plane(ïðîâåðêà âåðøèí åñòü ëè â îáëàñòè çà áëèæàéøåé ïëîñêîñòüþ) | |
4855 if ( pFace->uNumVertices <= 0 ) | |
4856 return 0; | |
4857 bool bFound = false; | |
4858 for (uint i = 0; i < pFace->uNumVertices; ++i) | |
4859 { | |
2508 | 4860 if ( PortalFace._view_transformed_z[i + 3] >= 524288 )// 8.0(0x80000) 0x196A9FF >=0x80000 |
2496 | 4861 { |
4862 bFound = true; | |
4863 break; | |
4864 } | |
4865 } | |
4866 if ( !bFound ) | |
4867 return 0; | |
4868 //***************************************************************************************************************************************** | |
4869 //check for near clip plane(ïðîâåðêà ïî áëèæíåé ãðàíèöå) | |
4870 // | |
4871 // v0 v1 | |
4872 // ._________________. | |
4873 // / \ | |
4874 // / \ | |
4875 // v5. . v2 | |
4876 // | | | |
4877 // | | | |
4878 // | | | |
4879 // ---------------------------- 8.0(near_clip) | |
4880 // | | | |
4881 // ._______________________. | |
4882 // v4 v3 | |
4883 depth_num_vertices = 0; | |
4884 PortalFace._view_transformed_z[pFace->uNumVertices + 3] = PortalFace._view_transformed_z[3]; | |
4885 PortalFace._view_transformed_x[pFace->uNumVertices + 3] = PortalFace._view_transformed_x[3]; | |
4886 PortalFace._view_transformed_y[pFace->uNumVertices + 3] = PortalFace._view_transformed_y[3]; | |
4887 current_vertices_flag = PortalFace._view_transformed_z[3] >= 0x80000; //524288 | |
4888 if ( pFace->uNumVertices >= 1 ) | |
4889 { | |
4890 for ( uint i = 1; i <= pFace->uNumVertices; ++i) | |
4891 { | |
4892 next_vertices_flag = PortalFace._view_transformed_z[i + 3] >= 0x80000; //524288;// 8.0 | |
4893 if ( current_vertices_flag ^ next_vertices_flag )//èëè òåêóùàÿ èëè ñëåäóþùàÿ âåðøèíà çà áëèæíåé ãðàíèöåé - v5 | |
4894 { | |
4895 if ( next_vertices_flag )//ñëåäóþùàÿ âåðøèíà çà áëèæíåé ãðàíèöåé | |
4896 { | |
4897 //t = near_clip - v4.z / v5.z - v4.z | |
4898 t = fixpoint_div(0x80000 - PortalFace._view_transformed_z[i + 2], PortalFace._view_transformed_z[i + 3] - PortalFace._view_transformed_z[i + 2]); | |
4899 //New_x = (v5.x - v4.x)*t + v4.x | |
4900 PortalFace._view_transformed_x[depth_num_vertices] = fixpoint_mul((PortalFace._view_transformed_x[i + 3] - PortalFace._view_transformed_x[i + 2]), t) | |
4901 + PortalFace._view_transformed_x[i + 2]; | |
4902 //New_y = (v5.y - v4.y)*t + v4.y | |
4903 PortalFace._view_transformed_y[depth_num_vertices] = fixpoint_mul((PortalFace._view_transformed_y[i + 3] - PortalFace._view_transformed_y[i + 2]), t) | |
4904 + PortalFace._view_transformed_y[i + 2]; | |
4905 //New_z = 8.0(0x80000) | |
4906 PortalFace._view_transformed_z[depth_num_vertices] = 0x80000; //524288 | |
4907 } | |
4908 else// òåêóùàÿ âåðøèíà çà áëèæíåé ãðàíèöåé | |
4909 { | |
4910 //t = near_clip - v1.z / v0.z - v1.z | |
4911 t = fixpoint_div(524288 - PortalFace._view_transformed_z[i + 3], PortalFace._view_transformed_z[i + 2] - PortalFace._view_transformed_z[i + 3]); | |
4912 //New_x = (v0.x - v1.x)*t + v1.x | |
4913 PortalFace._view_transformed_x[depth_num_vertices] = fixpoint_mul((PortalFace._view_transformed_x[i + 2] - PortalFace._view_transformed_x[i + 3]), t) | |
4914 + PortalFace._view_transformed_x[i + 3]; | |
4915 //New_y = (v0.x - v1.y)*t + v1.y | |
4916 PortalFace._view_transformed_y[depth_num_vertices] = fixpoint_mul((PortalFace._view_transformed_y[i + 2] - PortalFace._view_transformed_y[i + 3]), t) | |
4917 + PortalFace._view_transformed_y[i + 3]; | |
4918 //New_z = 8.0(0x80000) | |
4919 PortalFace._view_transformed_z[depth_num_vertices] = 0x80000; //524288 | |
4920 } | |
4921 depth_num_vertices++; | |
4922 } | |
4923 if ( next_vertices_flag )//åñëè ñëåäóþùàÿ âåðøèíà çà áëèæíåé ãðàíèöåé | |
4924 { | |
4925 pNextVertices = depth_num_vertices++; | |
4926 PortalFace._view_transformed_z[pNextVertices] = PortalFace._view_transformed_z[i + 3]; | |
4927 PortalFace._view_transformed_x[pNextVertices] = PortalFace._view_transformed_x[i + 3]; | |
4928 PortalFace._view_transformed_y[pNextVertices] = PortalFace._view_transformed_y[i + 3]; | |
4929 } | |
4930 current_vertices_flag = next_vertices_flag; | |
4931 } | |
4932 } | |
4933 //ðåçóëüòàò: íåò ìîðãàíèÿ íà ãðàíèöå ïîðòàëà(êîãäà ïðîõîäèì ñêâîçü ïîðòàë) | |
4934 //************************************************************************************************************************************ | |
4935 //convertion in screen coordinates(êîíâåðòèðîâàíèå â êîîðäèíàòû ýêðàíà) | |
4936 PortalFace._view_transformed_z[depth_num_vertices] = PortalFace._view_transformed_z[0]; | |
4937 PortalFace._view_transformed_x[depth_num_vertices] = PortalFace._view_transformed_x[0]; | |
4938 PortalFace._view_transformed_y[depth_num_vertices] = PortalFace._view_transformed_y[0]; | |
4939 for ( uint i = 0; i < depth_num_vertices; ++i ) | |
4940 { | |
4941 if ( (abs(PortalFace._view_transformed_x[i]) >> 13) <= abs(PortalFace._view_transformed_z[i]) ) | |
4942 pScreenX = fixpoint_div(PortalFace._view_transformed_x[i], PortalFace._view_transformed_z[i]); | |
4943 else | |
4944 { | |
4945 if ( PortalFace._view_transformed_x[i] >= 0 ) | |
4946 { | |
4947 if (PortalFace._view_transformed_z[i] >= 0) | |
4948 pScreenX = 0x400000; // 64.0 | |
4949 else | |
4950 pScreenX = 0xFFC00000; // -63.0 | |
4951 } | |
4952 else | |
4953 { | |
4954 if (PortalFace._view_transformed_z[i] >= 0) | |
4955 pScreenX = 0xFFC00000; // -63.0 | |
4956 else | |
4957 pScreenX = 0x400000; // 64.0 | |
4958 } | |
4959 } | |
4960 | |
4961 if ( (abs(PortalFace._view_transformed_y[i]) >> 13) <= abs(PortalFace._view_transformed_z[i]) ) | |
4962 pScreenY = fixpoint_div(PortalFace._view_transformed_y[i], PortalFace._view_transformed_z[i]); | |
4963 else | |
4964 { | |
4965 if ( PortalFace._view_transformed_y[i] >= 0 ) | |
4966 { | |
4967 if (PortalFace._view_transformed_z[i] >= 0) | |
4968 pScreenY = 0x400000; // 64.0 | |
4969 else | |
4970 pScreenY = 0xFFC00000; // -63.0 | |
4971 } | |
4972 else | |
4973 { | |
4974 if (PortalFace._view_transformed_z[i] >= 0) | |
4975 pScreenY = 0xFFC00000; // -63.0 | |
4976 else | |
4977 pScreenY = 0x400000; // 64.0 | |
4978 } | |
4979 } | |
4980 PortalFace._screen_space_x[i + 12] = pBLVRenderParams->uViewportCenterX - fixpoint_mul(SHIWORD(pBLVRenderParams->fov_rad_fixpoint), pScreenX); | |
4981 PortalFace._screen_space_y[i + 12] = pBLVRenderParams->uViewportCenterY - fixpoint_mul(SHIWORD(pBLVRenderParams->fov_rad_fixpoint), pScreenY); | |
4982 } | |
4983 // ðåçóëüòàò: ïðè ïîâîðîòå êàìåðû, êîãäà ãðàíèöà ïîðòàëà ñäâèãàåòñÿ ê êðàþ ýêðàíà, ïîðòàë îñòàåòñÿ ïðîçðà÷íûì(âèäèìûì) | |
4984 //****************************************************************************************************************************************** | |
4985 //êîîðäèíàòû êàê â Èäà-áàçå èãðû òàê è â äàííîì ïðîåêòå ïåðåâ¸ðíóòûå,ò.å. ïîðòàë êîòîðûé â ïðàâîé ÷àñòè ýêðàíà èìååò ýêðàííûå êîîðäèíàòû | |
4986 //êîòîðûå äëÿ ëåâîé ÷àñòè ýêðàíà. Íàïðèìåð, x(îðèãèíàë) = 8, ó íàñ õ = 468(ïðîòèâîïîëîæíûé êðàé ýêðàíà), òî÷íî òàêæå è ñ ó. | |
4987 // | |
4988 //check for left_clip plane(ïîðâåðêà ïî ëåâîé ãðàíèöå) | |
4989 left_num_vertices = 0; | |
4990 PortalFace._screen_space_x[depth_num_vertices + 12] = PortalFace._screen_space_x[12]; | |
4991 PortalFace._screen_space_y[depth_num_vertices + 12] = PortalFace._screen_space_y[12]; | |
4992 current_vertices_flag = PortalFace._screen_space_x[12] >= (signed int)pBLVRenderParams->uViewportX;//8.0 | |
4993 if ( depth_num_vertices < 1 ) | |
4994 return 0; | |
4995 for ( uint i = 1; i <= depth_num_vertices; ++i ) | |
4996 { | |
4997 next_vertices_flag = PortalFace._screen_space_x[i + 12] >= (signed int)pBLVRenderParams->uViewportX; | |
4998 if ( current_vertices_flag ^ next_vertices_flag ) | |
4999 { | |
5000 if ( next_vertices_flag ) | |
5001 { | |
5002 //t = left_clip - v0.x / v1.x - v0.x | |
5003 t = fixpoint_div(pBLVRenderParams->uViewportX - PortalFace._screen_space_x[i + 11], PortalFace._screen_space_x[i + 12] - PortalFace._screen_space_x[i + 11]); | |
5004 //New_y = (v1.y - v0.y)*t + v0.y | |
5005 PortalFace._screen_space_y[left_num_vertices + 9] = fixpoint_mul((PortalFace._screen_space_y[i + 12]- PortalFace._screen_space_y[i + 11]), t) | |
5006 + PortalFace._screen_space_y[i + 11]; | |
5007 //New_x = left_clip | |
5008 PortalFace._screen_space_x[left_num_vertices + 9] = pBLVRenderParams->uViewportX; | |
5009 } | |
5010 else | |
5011 { | |
5012 //t = left_clip - v1.x / v0.x - v1.x | |
5013 t = fixpoint_div(pBLVRenderParams->uViewportX - PortalFace._screen_space_x[i + 12], PortalFace._screen_space_x[i + 11] - PortalFace._screen_space_x[i + 12]); | |
5014 //New_y = (v0.y - v1.y)*t + v1.y | |
5015 PortalFace._screen_space_y[left_num_vertices + 9] = fixpoint_mul((PortalFace._screen_space_y[i + 11] - PortalFace._screen_space_y[i + 12]), t) | |
5016 + PortalFace._screen_space_y[i + 12]; | |
5017 //New_x = left_clip | |
5018 PortalFace._screen_space_x[left_num_vertices + 9] = pBLVRenderParams->uViewportX; | |
5019 } | |
5020 left_num_vertices++; | |
5021 } | |
5022 if ( next_vertices_flag ) | |
5023 { | |
5024 pNextVertices = left_num_vertices++; | |
5025 PortalFace._screen_space_x[pNextVertices + 9] = PortalFace._screen_space_x[i + 12]; | |
5026 PortalFace._screen_space_y[pNextVertices + 9] = PortalFace._screen_space_y[i + 12]; | |
5027 } | |
5028 current_vertices_flag = next_vertices_flag; | |
5029 } | |
5030 //********************************************************************************************************************************* | |
5031 //for right_clip plane(ïðîâåðêà ïî ïðàâîé ïëîñêîñòè) | |
5032 right_num_vertices = 0; | |
5033 PortalFace._screen_space_x[left_num_vertices + 9] = PortalFace._screen_space_x[9]; | |
5034 PortalFace._screen_space_y[left_num_vertices + 9] = PortalFace._screen_space_y[9]; | |
5035 current_vertices_flag = PortalFace._screen_space_x[9] <= (signed int)pBLVRenderParams->uViewportZ;//468.0 | |
5036 if (left_num_vertices < 1) | |
5037 return 0; | |
5038 for ( uint i = 1; i <= left_num_vertices; ++i ) | |
5039 { | |
5040 next_vertices_flag = PortalFace._screen_space_x[i + 9] <= (signed int)pBLVRenderParams->uViewportZ; | |
5041 if ( current_vertices_flag ^ next_vertices_flag ) | |
5042 { | |
5043 if ( next_vertices_flag ) | |
5044 { | |
5045 //t = right_clip - v1.x / v0.x - v1.x | |
5046 t = fixpoint_div(pBLVRenderParams->uViewportZ - PortalFace._screen_space_x[i + 8], PortalFace._screen_space_x[i + 9] - PortalFace._screen_space_x[i + 8]); | |
5047 //New_y = (v0.y - v1.y)*t + v1.y | |
5048 PortalFace._screen_space_y[right_num_vertices + 6] = fixpoint_mul((PortalFace._screen_space_y[i + 9] - PortalFace._screen_space_y[i + 8]), t) | |
5049 + PortalFace._screen_space_y[i + 8]; | |
5050 //New_x = right_clip | |
5051 PortalFace._screen_space_x[right_num_vertices + 6] = pBLVRenderParams->uViewportZ; | |
5052 } | |
5053 else | |
5054 { | |
5055 //t = right_clip - v0.x / v1.x - v0.x | |
5056 t = fixpoint_div(pBLVRenderParams->uViewportZ - PortalFace._screen_space_x[i + 9], PortalFace._screen_space_x[i + 8] - PortalFace._screen_space_x[i + 9]); | |
5057 //New_y = (v1.y - v0.y)*t + v0.y | |
5058 PortalFace._screen_space_y[right_num_vertices + 6] = fixpoint_mul((PortalFace._screen_space_y[i + 8] - PortalFace._screen_space_y[i + 9]), t) | |
5059 + PortalFace._screen_space_y[i + 9]; | |
5060 //New_x = right_clip | |
5061 PortalFace._screen_space_x[right_num_vertices + 6] = pBLVRenderParams->uViewportZ; | |
5062 } | |
5063 right_num_vertices++; | |
5064 } | |
5065 if ( next_vertices_flag ) | |
5066 { | |
5067 pNextVertices = right_num_vertices++; | |
5068 PortalFace._screen_space_x[pNextVertices + 6] = PortalFace._screen_space_x[i + 9]; | |
5069 PortalFace._screen_space_y[pNextVertices + 6] = PortalFace._screen_space_y[i + 9]; | |
5070 } | |
5071 current_vertices_flag = next_vertices_flag; | |
5072 } | |
5073 //************************************************************************************************************************************ | |
5074 // for top clip plane | |
5075 top_num_vertices = 0; | |
5076 PortalFace._screen_space_x[right_num_vertices + 6] = PortalFace._screen_space_x[6]; | |
5077 PortalFace._screen_space_y[right_num_vertices + 6] = PortalFace._screen_space_y[6]; | |
5078 | |
5079 current_vertices_flag = PortalFace._screen_space_y[6] >= (signed int)pBLVRenderParams->uViewportY;//8.0 | |
5080 if ( right_num_vertices < 1 ) | |
5081 return 0; | |
5082 for ( uint i = 1; i <= right_num_vertices; ++i ) | |
5083 { | |
5084 next_vertices_flag = PortalFace._screen_space_y[i + 6] >= (signed int)pBLVRenderParams->uViewportY; | |
5085 if ( current_vertices_flag ^ next_vertices_flag ) | |
5086 { | |
5087 if ( next_vertices_flag ) | |
5088 { | |
5089 t = fixpoint_div(pBLVRenderParams->uViewportY - PortalFace._screen_space_y[i + 5], PortalFace._screen_space_y[i + 6] - PortalFace._screen_space_y[i + 5]); | |
5090 PortalFace._screen_space_x[top_num_vertices + 3] = ((signed int)((PortalFace._screen_space_x[i + 6] - PortalFace._screen_space_x[i + 5]) | |
5091 * t) >> 16) + PortalFace._screen_space_x[i + 5]; | |
5092 PortalFace._screen_space_y[top_num_vertices + 3] = pBLVRenderParams->uViewportY; | |
5093 } | |
5094 else | |
5095 { | |
5096 t = fixpoint_div(pBLVRenderParams->uViewportY - PortalFace._screen_space_y[i + 6], PortalFace._screen_space_y[i + 5] - PortalFace._screen_space_y[i + 6]); | |
5097 PortalFace._screen_space_x[top_num_vertices + 3] = fixpoint_mul((PortalFace._screen_space_x[i + 5]- PortalFace._screen_space_x[i + 6]), t) | |
5098 + PortalFace._screen_space_x[i + 6]; | |
5099 PortalFace._screen_space_y[top_num_vertices + 3] = pBLVRenderParams->uViewportY; | |
5100 } | |
5101 top_num_vertices++; | |
5102 } | |
5103 current_vertices_flag = next_vertices_flag; | |
5104 if ( next_vertices_flag ) | |
5105 { | |
5106 pNextVertices = top_num_vertices++; | |
5107 PortalFace._screen_space_x[pNextVertices + 3] = PortalFace._screen_space_x[i + 6]; | |
5108 PortalFace._screen_space_y[pNextVertices + 3] = PortalFace._screen_space_y[i + 6]; | |
5109 } | |
5110 } | |
5111 //********************************************************************************************************************************** | |
5112 //for bottom_clip plane(ïðîâåðêà ïî íèæíåé ïëîñêîñòè) | |
5113 bottom_num_vertices = 0; | |
5114 PortalFace._screen_space_x[top_num_vertices + 3] = PortalFace._screen_space_x[3]; | |
5115 PortalFace._screen_space_y[top_num_vertices + 3] = PortalFace._screen_space_y[3]; | |
5116 current_vertices_flag = PortalFace._screen_space_y[3] <= (signed int)pBLVRenderParams->uViewportW;//351.0 | |
5117 if ( top_num_vertices < 1 ) | |
5118 return 0; | |
5119 for ( uint i =1; i <= top_num_vertices; ++i ) | |
5120 { | |
5121 next_vertices_flag = PortalFace._screen_space_y[i + 3] <= (signed int)pBLVRenderParams->uViewportW; | |
5122 if ( current_vertices_flag ^ next_vertices_flag ) | |
5123 { | |
5124 if ( next_vertices_flag ) | |
5125 { | |
5126 t = fixpoint_div(pBLVRenderParams->uViewportW - PortalFace._screen_space_y[i + 2], PortalFace._screen_space_y[i + 3] - PortalFace._screen_space_y[i + 2]); | |
5127 PortalFace._screen_space_x[bottom_num_vertices] = fixpoint_mul((PortalFace._screen_space_x[i + 3] - PortalFace._screen_space_x[i + 2]), t) | |
5128 + PortalFace._screen_space_x[i + 2]; | |
5129 PortalFace._screen_space_y[bottom_num_vertices] = pBLVRenderParams->uViewportW; | |
5130 } | |
5131 else | |
5132 { | |
5133 t = fixpoint_div(pBLVRenderParams->uViewportW - PortalFace._screen_space_y[i + 3], PortalFace._screen_space_y[i + 2] - PortalFace._screen_space_y[i + 3]); | |
5134 PortalFace._screen_space_x[bottom_num_vertices] = fixpoint_mul((PortalFace._screen_space_x[i + 2] - PortalFace._screen_space_x[i + 3]), t) | |
5135 + PortalFace._screen_space_x[i + 3]; | |
5136 PortalFace._screen_space_y[bottom_num_vertices] = pBLVRenderParams->uViewportW; | |
5137 } | |
5138 bottom_num_vertices++; | |
5139 } | |
5140 if ( next_vertices_flag ) | |
5141 { | |
5142 pNextVertices = bottom_num_vertices++; | |
5143 PortalFace._screen_space_x[pNextVertices] = PortalFace._screen_space_x[i + 3]; | |
5144 PortalFace._screen_space_y[pNextVertices] = PortalFace._screen_space_y[i + 3]; | |
5145 } | |
5146 current_vertices_flag = next_vertices_flag; | |
5147 } | |
5148 //*************************************************************************************************************************************** | |
5149 | |
5150 if ( !bottom_num_vertices ) | |
5151 return 0; | |
5152 PortalFace._screen_space_x[bottom_num_vertices] = PortalFace._screen_space_x[0]; | |
5153 PortalFace._screen_space_y[bottom_num_vertices] = PortalFace._screen_space_y[0]; | |
5154 //check for software(ïðîâåðêà äëÿ ñîôòâàð) | |
5155 /*if ( !pRenderer->pRenderD3D && bottom_num_vertices > 3 ) | |
5156 { | |
5157 PortalFace._screen_space_x[bottom_num_vertices + 1] = PortalFace._screen_space_x[1]; | |
5158 PortalFace._screen_space_y[bottom_num_vertices + 1] = PortalFace._screen_space_y[1]; | |
5159 thisf = PortalFace.direction == true ? 1 : - 1; | |
5160 if ( bottom_num_vertices > 0 ) | |
5161 { | |
5162 v62 = 1; | |
5163 v71 = 1; | |
5164 do | |
5165 { | |
5166 v63 = v62 - 1; | |
5167 v64 = v62 + 1; | |
5168 v80 = v62 + 1; | |
5169 if ( v62 - 1 >= bottom_num_vertices ) | |
5170 v63 -= bottom_num_vertices; | |
5171 if ( v62 >= bottom_num_vertices ) | |
5172 v62 -= bottom_num_vertices; | |
5173 if ( v64 >= bottom_num_vertices ) | |
5174 v64 -= bottom_num_vertices; | |
5175 if ( thisf * ((PortalFace._screen_space_y[v64] - PortalFace._screen_space_y[v63]) | |
5176 * (PortalFace._screen_space_x[v62] - PortalFace._screen_space_x[v63]) | |
5177 - (PortalFace._screen_space_y[v62] - PortalFace._screen_space_y[v63]) | |
5178 * (PortalFace._screen_space_x[v64] - PortalFace._screen_space_x[v63])) < 0 ) | |
5179 { | |
5180 v62 = v80; | |
5181 v71 = v80; | |
5182 } | |
5183 else | |
5184 { | |
5185 v62 = v71; | |
5186 v65 = v71; | |
5187 if ( v71 < bottom_num_vertices || (v65 = v71 - bottom_num_vertices, v71 - bottom_num_vertices < bottom_num_vertices) ) | |
5188 { | |
5189 memcpy(&PortalFace._screen_space_y[v65], &PortalFace._screen_space_y[v65 + 1], | |
5190 4 * ((unsigned int)(4 * (bottom_num_vertices - v65)) >> 2)); | |
5191 memcpy(&PortalFace._screen_space_x[v65], &PortalFace._screen_space_x[v65 + 1], | |
5192 4 * ((unsigned int)(4 * (bottom_num_vertices - v65)) >> 2)); | |
5193 } | |
5194 --bottom_num_vertices; | |
5195 } | |
5196 } | |
5197 while ( v62 - 1 < bottom_num_vertices ); | |
5198 } | |
5199 PortalFace._screen_space_x[bottom_num_vertices] = PortalFace._screen_space_x[0]; | |
5200 PortalFace._screen_space_y[bottom_num_vertices] = PortalFace._screen_space_y[0]; | |
5201 }*/ | |
5202 return bottom_num_vertices; | |
5203 } | |
5204 | |
5205 //----- (004AAEA6) -------------------------------------------------------- | |
5206 int __fastcall sub_4AAEA6_transform(RenderVertexSoft *a1) | |
5207 { | |
5208 double v4; // st5@2 | |
5209 double v5; // st4@3 | |
5210 float v11; // [sp+8h] [bp-8h]@2 | |
5211 float v12; // [sp+8h] [bp-8h]@6 | |
5212 float v13; // [sp+Ch] [bp-4h]@2 | |
5213 float v14; // [sp+Ch] [bp-4h]@6 | |
5214 | |
2543 | 5215 if (pIndoorCameraD3D->sRotationX) |
2496 | 5216 { |
5217 v13 = a1->vWorldPosition.x - (double)pParty->vPosition.x; | |
5218 v11 = a1->vWorldPosition.y - (double)pParty->vPosition.y; | |
5219 v4 = a1->vWorldPosition.z - (double)pParty->vPosition.z; | |
5220 //if ( pRenderer->pRenderD3D ) | |
5221 //{ | |
2543 | 5222 v5 = v11 * pIndoorCameraD3D->fRotationYSine + v13 * pIndoorCameraD3D->fRotationYCosine; |
5223 a1->vWorldViewPosition.y = v13 * pIndoorCameraD3D->fRotationYSine - v11 * pIndoorCameraD3D->fRotationYCosine; | |
2496 | 5224 /*} |
5225 else | |
5226 { | |
5227 v5 = v13 * pBLVRenderParams->fCosineY - v11 * pBLVRenderParams->fSineY; | |
5228 a1->vWorldViewPosition.y = v13 * pBLVRenderParams->fSineY + v11 * pBLVRenderParams->fCosineY; | |
5229 }*/ | |
2543 | 5230 a1->vWorldViewPosition.x = v5 * pIndoorCameraD3D->fRotationXCosine - v4 * pIndoorCameraD3D->fRotationXSine; |
5231 a1->vWorldViewPosition.z = v5 * pIndoorCameraD3D->fRotationXSine + v4 * pIndoorCameraD3D->fRotationXCosine; | |
2496 | 5232 } |
5233 else | |
5234 { | |
5235 v14 = a1->vWorldPosition.x - (double)pParty->vPosition.x; | |
5236 v12 = a1->vWorldPosition.y - (double)pParty->vPosition.y; | |
5237 a1->vWorldViewPosition.z = a1->vWorldPosition.z - (double)pParty->vPosition.z; | |
5238 //if ( pRenderer->pRenderD3D ) | |
5239 //{ | |
2543 | 5240 a1->vWorldViewPosition.x = v12 * pIndoorCameraD3D->fRotationYSine + v14 * pIndoorCameraD3D->fRotationYCosine; |
5241 a1->vWorldViewPosition.y = v14 * pIndoorCameraD3D->fRotationYSine - v12 * pIndoorCameraD3D->fRotationYCosine; | |
2496 | 5242 /*} |
5243 else | |
5244 { | |
5245 a1->vWorldViewPosition.x = v14 * pBLVRenderParams->fCosineY - v12 * pBLVRenderParams->fSineY; | |
5246 a1->vWorldViewPosition.y = v14 * pBLVRenderParams->fSineY + v12 * pBLVRenderParams->fCosineY; | |
5247 }*/ | |
5248 } | |
5249 return 0; | |
5250 } | |
5251 //----- (00472866) -------------------------------------------------------- | |
5252 void BLV_ProcessPartyActions() | |
5253 { | |
5254 int v1; // ebx@1 | |
5255 int v2; // edi@1 | |
5256 double v10; // st7@27 | |
5257 int new_party_z; // esi@96 | |
5258 int v38; // eax@96 | |
5259 int v39; // ecx@106 | |
5260 int v40; // eax@106 | |
5261 int v42; // eax@120 | |
5262 BLVFace *pFace; // esi@126 | |
5263 int v46; // ecx@133 | |
5264 int v52; // eax@140 | |
5265 int v54; // ebx@146 | |
5266 unsigned int uFaceEvent; // [sp+14h] [bp-4Ch]@1 | |
5267 bool party_running_flag; // [sp+1Ch] [bp-44h]@1 | |
5268 bool bFeatherFall; // [sp+24h] [bp-3Ch]@15 | |
5269 unsigned int uSectorID; // [sp+28h] [bp-38h]@1 | |
5270 bool party_walking_flag; // [sp+2Ch] [bp-34h]@1 | |
5271 unsigned int uFaceID; // [sp+30h] [bp-30h]@1 | |
5272 int v80; // [sp+34h] [bp-2Ch]@1 | |
5273 int v82; // [sp+3Ch] [bp-24h]@47 | |
5274 int _view_angle; // [sp+40h] [bp-20h]@47 | |
5275 bool hovering; // [sp+44h] [bp-1Ch]@1 | |
5276 int new_party_y; // [sp+48h] [bp-18h]@1 | |
5277 int new_party_x; // [sp+4Ch] [bp-14h]@1 | |
5278 int party_z; // [sp+50h] [bp-10h]@1 | |
5279 int angle; // [sp+5Ch] [bp-4h]@47 | |
5280 | |
5281 uFaceEvent = 0; | |
5282 //v89 = pParty->uFallSpeed; | |
5283 v1 = 0; | |
5284 v2 = 0; | |
5285 new_party_x = pParty->vPosition.x; | |
5286 new_party_y = pParty->vPosition.y; | |
5287 party_z = pParty->vPosition.z; | |
5288 uSectorID = pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); | |
5289 party_running_flag = false; | |
5290 party_walking_flag = false; | |
5291 hovering = false; | |
5292 | |
5293 uFaceID = -1; | |
5294 int floor_level = collide_against_floor(new_party_x, new_party_y, party_z + 40, &uSectorID, &uFaceID);//ïîëó÷èòü âûñîòó ïîëà | |
5295 | |
5296 if ( pParty->bFlying )//îòêëþ÷èòü ïîë¸ò | |
5297 { | |
5298 pParty->bFlying = false; | |
5299 if (pParty->FlyActive()) | |
5300 pOtherOverlayList->pOverlays[pParty->pPartyBuffs[PARTY_BUFF_FLY].uOverlayID - 1].field_E |= 1; | |
5301 } | |
5302 | |
5303 if ( floor_level == -30000 || uFaceID == -1) | |
5304 { | |
5305 floor_level = collide_against_floor_approximate(new_party_x, new_party_y, party_z + 40, &uSectorID, &uFaceID); | |
5306 if ( floor_level == -30000 || uFaceID == -1) | |
5307 { | |
5308 __debugbreak(); // level built with errors | |
5309 pParty->vPosition.x = blv_prev_party_x; | |
5310 pParty->vPosition.y = blv_prev_party_z; | |
5311 pParty->vPosition.z = blv_prev_party_y; | |
5312 pParty->uFallStartY = blv_prev_party_y; | |
5313 return; | |
5314 } | |
5315 } | |
5316 | |
5317 blv_prev_party_x = pParty->vPosition.x; | |
5318 blv_prev_party_z = pParty->vPosition.y; | |
5319 blv_prev_party_y = pParty->vPosition.z; | |
5320 if (!pParty->bTurnBasedModeOn) | |
5321 { | |
5322 static int dword_720CDC = 0; | |
5323 | |
5324 int v67 = GetTickCount() / 500; | |
5325 if (dword_720CDC != v67 ) | |
5326 { | |
5327 dword_4F8580[3 * dword_4F8580[1]] = pParty->vPosition.x; | |
5328 dword_4F8580[3 * dword_4F8580[2]] = pParty->vPosition.y; | |
5329 dword_4F8580[3 * dword_4F8580[3]] = pParty->vPosition.z; | |
5330 if ( dword_4F8580[0] > 60 ) | |
5331 dword_4F8580[0] = 1; | |
5332 | |
5333 dword_720CDC = v67; | |
5334 } | |
5335 } | |
5336 | |
5337 int fall_start; | |
5338 /* | |
5339 if (!pParty->FeatherFallActive())// íå àêòèâíî ïàäåíèå ïåðà | |
5340 { | |
5341 bFeatherFall = false; | |
5342 if (!pParty->pPlayers[0].WearsItemAnyWhere(ITEM_ARTIFACT_LADYS_ESCORT) && // grants feather fall | |
5343 !pParty->pPlayers[1].WearsItemAnyWhere(ITEM_ARTIFACT_LADYS_ESCORT) && | |
5344 !pParty->pPlayers[2].WearsItemAnyWhere(ITEM_ARTIFACT_LADYS_ESCORT) && | |
5345 !pParty->pPlayers[3].WearsItemAnyWhere(ITEM_ARTIFACT_LADYS_ESCORT)) | |
5346 { | |
5347 fall_start = pParty->uFallStartY; | |
5348 } | |
5349 else// was missing | |
5350 { | |
5351 fall_start = floor_level; | |
5352 bFeatherFall = true; | |
5353 pParty->uFallStartY = floor_level; | |
5354 } | |
5355 } | |
5356 else// àêòèâíî ïàäåíèå ïåðà | |
5357 { | |
5358 fall_start = floor_level; | |
5359 bFeatherFall = true; | |
5360 pParty->uFallStartY = floor_level; | |
5361 } | |
5362 | |
5363 Reworked condition below | |
5364 */ | |
5365 if (pParty->FeatherFallActive() | |
5366 || pParty->pPlayers[0].WearsItemAnyWhere(ITEM_ARTIFACT_LADYS_ESCORT) | |
5367 || pParty->pPlayers[1].WearsItemAnyWhere(ITEM_ARTIFACT_LADYS_ESCORT) | |
5368 || pParty->pPlayers[2].WearsItemAnyWhere(ITEM_ARTIFACT_LADYS_ESCORT) | |
5369 || pParty->pPlayers[3].WearsItemAnyWhere(ITEM_ARTIFACT_LADYS_ESCORT)) | |
5370 { | |
5371 fall_start = floor_level; | |
5372 bFeatherFall = true; | |
5373 pParty->uFallStartY = floor_level; | |
5374 } | |
5375 else | |
5376 { | |
5377 bFeatherFall = false; | |
5378 fall_start = pParty->uFallStartY; | |
5379 } | |
5380 | |
5381 if (fall_start - party_z > 512 && !bFeatherFall && party_z <= floor_level + 1)//ïîâðåæäåíèå îò ïàäåíèÿ ñ âûñîòû | |
5382 { | |
5383 assert(~pParty->uFlags & PARTY_FLAGS_1_LANDING); // why land in indoor? | |
5384 if (pParty->uFlags & PARTY_FLAGS_1_LANDING) | |
5385 pParty->uFlags &= ~PARTY_FLAGS_1_LANDING; | |
5386 else for (uint i = 0; i < 4; ++i) | |
5387 { // receive falling damage | |
5388 if (!pParty->pPlayers[i].HasEnchantedItemEquipped(72) && !pParty->pPlayers[i].WearsItem(ITEM_ARTIFACT_HERMES_SANDALS, EQUIP_BOOTS)) | |
5389 { | |
5390 pParty->pPlayers[i].ReceiveDamage((pParty->uFallStartY - party_z) * (0.1f * pParty->pPlayers[i].GetMaxHealth()) / 256, DMGT_PHISYCAL); | |
5391 v10 = (double)(20 - pParty->pPlayers[i].GetParameterBonus(pParty->pPlayers[i].GetActualEndurance())) * flt_6BE3A4_debug_recmod1 * 2.133333333333333; | |
5392 pParty->pPlayers[i].SetRecoveryTime((signed __int64)v10); | |
5393 } | |
5394 } | |
5395 } | |
5396 | |
5397 if ( party_z > floor_level + 1 ) | |
5398 hovering = true; | |
5399 | |
5400 bool not_high_fall = false; | |
5401 | |
5402 if ( party_z - floor_level <= 32 ) | |
5403 { | |
5404 pParty->uFallStartY = party_z; | |
5405 not_high_fall = true; | |
5406 } | |
5407 | |
5408 if (bWalkSound && pParty->walk_sound_timer)//òàéìåðû äëÿ çâóêîâ ïåðåäâèæåíèÿ | |
5409 { | |
5410 if (pParty->walk_sound_timer > pEventTimer->uTimeElapsed) | |
5411 pParty->walk_sound_timer -= pEventTimer->uTimeElapsed; | |
5412 else pParty->walk_sound_timer = 0; | |
5413 } | |
5414 | |
5415 if (party_z <= floor_level + 1)// ãðóïïà íèæå óðîâíÿ ïîëà | |
5416 { | |
5417 party_z = floor_level + 1; | |
5418 pParty->uFallStartY = floor_level + 1; | |
5419 | |
5420 if (!hovering && pParty->floor_face_pid != uFaceID)// íå ïàðÿùèå è | |
5421 { | |
5422 if (pIndoor->pFaces[uFaceID].uAttributes & FACE_PRESSURE_PLATE) | |
5423 uFaceEvent = pIndoor->pFaceExtras[pIndoor->pFaces[uFaceID].uFaceExtraID].uEventID; | |
5424 } | |
5425 } | |
5426 if (!hovering) | |
5427 pParty->floor_face_pid = uFaceID; | |
5428 | |
5429 bool on_water = false; | |
5430 if ( pIndoor->pFaces[uFaceID].Fluid())// íà âîäå | |
5431 on_water = true; | |
5432 | |
5433 //v81 = pParty->uWalkSpeed; | |
5434 angle = pParty->sRotationY; | |
5435 _view_angle = pParty->sRotationX; | |
5436 v82 = (unsigned __int64)(pEventTimer->dt_in_some_format * (signed __int64)((signed int)(pParty->y_rotation_speed * stru_5C6E00->uIntegerPi) | |
5437 / 180)) >> 16; | |
5438 while ( pPartyActionQueue->uNumActions ) | |
5439 { | |
5440 switch ( pPartyActionQueue->Next() ) | |
5441 { | |
5442 case PARTY_TurnLeft: | |
5443 if (uTurnSpeed) | |
5444 angle = stru_5C6E00->uDoublePiMask & (angle + uTurnSpeed); | |
5445 else | |
5446 angle = stru_5C6E00->uDoublePiMask & (angle + (int)(v82 * fTurnSpeedMultiplier)); | |
5447 break; | |
5448 case PARTY_TurnRight: | |
5449 if (uTurnSpeed) | |
5450 angle = stru_5C6E00->uDoublePiMask & (angle - uTurnSpeed); | |
5451 else | |
5452 angle = stru_5C6E00->uDoublePiMask & (angle - (int)(v82 * fTurnSpeedMultiplier)); | |
5453 break; | |
5454 | |
5455 case PARTY_FastTurnLeft: | |
5456 if (uTurnSpeed) | |
5457 angle = stru_5C6E00->uDoublePiMask & (angle + uTurnSpeed); | |
5458 else | |
5459 angle = stru_5C6E00->uDoublePiMask & (angle + (int)(2.0f * fTurnSpeedMultiplier * (double)v82)); | |
5460 break; | |
5461 | |
5462 case PARTY_FastTurnRight: | |
5463 if (uTurnSpeed) | |
5464 angle = stru_5C6E00->uDoublePiMask & (angle - uTurnSpeed); | |
5465 else | |
5466 angle = stru_5C6E00->uDoublePiMask & (angle - (int)(2.0f * fTurnSpeedMultiplier * (double)v82)); | |
5467 break; | |
5468 | |
5469 case PARTY_StrafeLeft: | |
5470 v2 -= fixpoint_mul(stru_5C6E00->Sin(angle), pParty->uWalkSpeed * fWalkSpeedMultiplier / 2); | |
5471 v1 += fixpoint_mul(stru_5C6E00->Cos(angle), pParty->uWalkSpeed * fWalkSpeedMultiplier / 2); | |
5472 party_walking_flag = true; | |
5473 break; | |
5474 case PARTY_StrafeRight: | |
5475 v2 += fixpoint_mul(stru_5C6E00->Sin(angle), pParty->uWalkSpeed * fWalkSpeedMultiplier / 2); | |
5476 v1 -= fixpoint_mul(stru_5C6E00->Cos(angle), pParty->uWalkSpeed * fWalkSpeedMultiplier / 2); | |
5477 party_walking_flag = true; | |
5478 break; | |
5479 case PARTY_WalkForward: | |
5480 v2 += fixpoint_mul(stru_5C6E00->Cos(angle), 5 * pParty->uWalkSpeed * fWalkSpeedMultiplier); | |
5481 v1 += fixpoint_mul(stru_5C6E00->Sin(angle), 5 * pParty->uWalkSpeed * fWalkSpeedMultiplier); | |
5482 party_walking_flag = true; | |
5483 break; | |
5484 case PARTY_WalkBackward: | |
5485 v2 -= fixpoint_mul(stru_5C6E00->Cos(angle), pParty->uWalkSpeed * fBackwardWalkSpeedMultiplier); | |
5486 v1 -= fixpoint_mul(stru_5C6E00->Sin(angle), pParty->uWalkSpeed * fBackwardWalkSpeedMultiplier); | |
5487 party_walking_flag = true; | |
5488 break; | |
5489 case PARTY_RunForward://Áåã âïåð¸ä | |
5490 v2 += fixpoint_mul(stru_5C6E00->Cos(angle), 2 * pParty->uWalkSpeed * fWalkSpeedMultiplier); | |
5491 v1 += fixpoint_mul(stru_5C6E00->Sin(angle), 2 * pParty->uWalkSpeed * fWalkSpeedMultiplier); | |
5492 party_running_flag = true; | |
5493 break; | |
5494 case PARTY_RunBackward: | |
5495 //v32 = stru_5C6E00->SinCos(angle); | |
5496 //v33 = (double)v81; | |
5497 //v88 = (double)v81; | |
5498 v2 -= fixpoint_mul(stru_5C6E00->Cos(angle), pParty->uWalkSpeed * fBackwardWalkSpeedMultiplier); | |
5499 //v34 = stru_5C6E00->SinCos(angle - stru_5C6E00->uIntegerHalfPi); | |
5500 v1 -= fixpoint_mul(stru_5C6E00->Sin(angle), pParty->uWalkSpeed * fBackwardWalkSpeedMultiplier); | |
5501 party_running_flag = true; | |
5502 break; | |
5503 case PARTY_LookUp: | |
5504 _view_angle += (signed __int64)(flt_6BE150_look_up_down_dangle * 25.0); | |
5505 if ( _view_angle > 128 ) | |
5506 _view_angle = 128; | |
5507 if ( uActiveCharacter ) | |
5508 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)SPEECH_63, 0); | |
5509 break; | |
5510 case PARTY_LookDown: | |
5511 _view_angle += (signed __int64)(flt_6BE150_look_up_down_dangle * -25.0); | |
5512 if ( _view_angle < -128 ) | |
5513 _view_angle = -128; | |
5514 if ( uActiveCharacter ) | |
5515 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)SPEECH_64, 0); | |
5516 break; | |
5517 case PARTY_CenterView: | |
5518 _view_angle = 0; | |
5519 break; | |
5520 case PARTY_Jump: | |
5521 if ( (!hovering || party_z <= floor_level + 6 && pParty->uFallSpeed <= 0) && pParty->field_24 ) | |
5522 { | |
5523 hovering = true; | |
5524 pParty->uFallSpeed = (signed __int64)((double)(pParty->field_24 << 6) * 1.5 + (double)pParty->uFallSpeed); | |
5525 } | |
5526 break; | |
5527 default: | |
5528 break; | |
5529 } | |
5530 } | |
5531 pParty->sRotationY = angle; | |
5532 pParty->sRotationX = _view_angle; | |
5533 if ( hovering )//ïàðÿùèå | |
5534 { | |
5535 pParty->uFallSpeed += -2 * pEventTimer->uTimeElapsed * GetGravityStrength();// ðàñ÷¸ò ñêîðîñòè ïàäåíèÿ | |
5536 if ( hovering && pParty->uFallSpeed <= 0 ) | |
5537 { | |
5538 if ( pParty->uFallSpeed < -500 && !pParty->bFlying ) | |
5539 { | |
5540 for ( uint pl = 1; pl <= 4; pl++ ) | |
5541 { | |
5542 if ( !pPlayers[pl]->HasEnchantedItemEquipped(72) && !pPlayers[pl]->WearsItem(ITEM_ARTIFACT_HERMES_SANDALS, EQUIP_BOOTS) ) //was 8 | |
5543 pPlayers[pl]->PlayEmotion(CHARACTER_EXPRESSION_SCARED, 0); | |
5544 } | |
5545 } | |
5546 } | |
5547 else | |
5548 pParty->uFallStartY = party_z; | |
5549 } | |
5550 else// íå ïàðÿùèå | |
5551 { | |
5552 if ( pIndoor->pFaces[uFaceID].pFacePlane_old.vNormal.z < 0x8000 ) | |
5553 { | |
5554 pParty->uFallSpeed -= pEventTimer->uTimeElapsed * GetGravityStrength(); | |
5555 pParty->uFallStartY = party_z; | |
5556 } | |
5557 else | |
5558 { | |
5559 if (! (pParty->uFlags & PARTY_FLAGS_1_LANDING) ) | |
5560 pParty->uFallSpeed = 0; | |
5561 pParty->uFallStartY = party_z; | |
5562 } | |
5563 } | |
5564 if ( v2 * v2 + v1 * v1 < 400 ) | |
5565 { | |
5566 v1 = 0; | |
5567 v2 = 0; | |
5568 } | |
5569 | |
5570 stru_721530.field_84 = -1; | |
5571 stru_721530.field_70 = 0; | |
5572 stru_721530.prolly_normal_d = pParty->field_14_radius; | |
5573 stru_721530.field_8_radius = pParty->field_14_radius / 2; | |
5574 stru_721530.field_0 = 1; | |
5575 stru_721530.height = pParty->uPartyHeight - 32; | |
5576 for ( uint i = 0; i < 100; i++ ) | |
5577 { | |
5578 new_party_z = party_z; | |
5579 stru_721530.position.x = new_party_x; | |
5580 stru_721530.position.y = new_party_y; | |
5581 stru_721530.position.z = stru_721530.height + party_z + 1; | |
5582 | |
5583 stru_721530.normal.x = new_party_x; | |
5584 stru_721530.normal.y = new_party_y; | |
5585 stru_721530.normal.z = stru_721530.prolly_normal_d + party_z + 1; | |
5586 | |
5587 stru_721530.velocity.x = v2; | |
5588 stru_721530.velocity.y = v1; | |
5589 stru_721530.velocity.z = pParty->uFallSpeed; | |
5590 | |
5591 stru_721530.uSectorID = uSectorID; | |
5592 v38 = 0; | |
5593 if ( pParty->bTurnBasedModeOn == true && pTurnEngine->turn_stage == TE_MOVEMENT ) | |
5594 v38 = 13312; | |
5595 if ( stru_721530._47050A(v38) ) | |
5596 break; | |
5597 for ( uint j = 0; j < 100; ++j ) | |
5598 { | |
5599 _46E44E_collide_against_faces_and_portals(1); | |
5600 _46E0B2_collide_against_decorations();//ñòîëêíîâåíèÿ ñ äåêîðîì | |
5601 for ( v80 = 0; v80 < (signed int)uNumActors; ++v80 ) | |
5602 Actor::_46DF1A_collide_against_actor(v80, 0);//ñòîëêíîâåíèÿ ñ ìîíñòðàìè | |
5603 if ( _46F04E_collide_against_portals() )//ñòîëêíîâåíèÿ ñ ïîðòàëàìè | |
5604 break; | |
5605 } | |
5606 if ( stru_721530.field_7C >= stru_721530.field_6C ) | |
5607 { | |
5608 v39 = stru_721530.normal2.x; | |
5609 uSectorID = stru_721530.normal2.y; | |
5610 v40 = stru_721530.normal2.z - stru_721530.prolly_normal_d - 1; | |
5611 } | |
5612 else | |
5613 { | |
5614 v39 = new_party_x + fixpoint_mul(stru_721530.field_7C, stru_721530.direction.x); | |
5615 uSectorID = new_party_y + fixpoint_mul(stru_721530.field_7C, stru_721530.direction.y); | |
5616 v40 = new_party_z + fixpoint_mul(stru_721530.field_7C, stru_721530.direction.z); | |
5617 } | |
5618 v42 = collide_against_floor(v39, uSectorID, v40 + 40, &stru_721530.uSectorID, &uFaceID); | |
5619 if ( v42 == -30000 || v42 - new_party_z > 128 ) | |
5620 return; | |
5621 if ( stru_721530.field_7C >= stru_721530.field_6C )//??? | |
5622 { | |
5623 new_party_x = stru_721530.normal2.x; | |
5624 new_party_y = stru_721530.normal2.y; | |
5625 new_party_z = stru_721530.normal2.z - stru_721530.prolly_normal_d - 1; | |
5626 break; | |
5627 } | |
5628 new_party_x += fixpoint_mul(stru_721530.field_7C, stru_721530.direction.x); | |
5629 new_party_y += fixpoint_mul(stru_721530.field_7C, stru_721530.direction.y); | |
5630 uSectorID = stru_721530.uSectorID; | |
5631 stru_721530.field_70 += stru_721530.field_7C; | |
5632 unsigned long long v87 = new_party_z + fixpoint_mul(stru_721530.field_7C, stru_721530.direction.z); | |
5633 if ( PID_TYPE(stru_721530.uFaceID) == OBJECT_Actor)//ïðè ñòîëêíîâåíèè ñ ìîíñòðîì | |
5634 { | |
5635 if ( pParty->pPartyBuffs[PARTY_BUFF_INVISIBILITY].uExpireTime > 0 ) | |
5636 pParty->pPartyBuffs[PARTY_BUFF_INVISIBILITY].Reset(); | |
5637 viewparams->bRedrawGameUI = true; | |
5638 } | |
5639 else if ( PID_TYPE(stru_721530.uFaceID) == OBJECT_Decoration)//ïðè ñòîëêíîâåíèè ñ äåêîðàöèåé | |
5640 { | |
5641 v54 = stru_5C6E00->Atan2(new_party_x - pLevelDecorations[stru_721530.uFaceID >> 3].vPosition.x, | |
5642 new_party_y - pLevelDecorations[stru_721530.uFaceID >> 3].vPosition.y); | |
5643 v2 = fixpoint_mul(stru_5C6E00->Cos(v54), integer_sqrt(v2 * v2 + v1 * v1)); | |
5644 v1 = fixpoint_mul(stru_5C6E00->Sin(v54), integer_sqrt(v2 * v2 + v1 * v1)); | |
5645 } | |
5646 else if ( PID_TYPE(stru_721530.uFaceID) == OBJECT_BModel)//ïðè ñòîëêíîâåíèè ñ bmodel | |
5647 { | |
5648 pFace = &pIndoor->pFaces[(signed int)stru_721530.uFaceID >> 3]; | |
5649 if ( pFace->uPolygonType == POLYGON_Floor )// åñëè bmodel - ïîë | |
5650 { | |
5651 if ( pParty->uFallSpeed < 0 ) | |
5652 pParty->uFallSpeed = 0; | |
5653 v87 = pIndoor->pVertices[*pFace->pVertexIDs].z + 1; | |
5654 if ( pParty->uFallStartY - v87 < 512 ) | |
5655 pParty->uFallStartY = v87; | |
5656 if ( v2 * v2 + v1 * v1 < 400 ) | |
5657 { | |
5658 v1 = 0; | |
5659 v2 = 0; | |
5660 } | |
5661 if ( pParty->floor_face_pid != PID_ID(stru_721530.uFaceID) && pFace->Pressure_Plate() ) | |
5662 uFaceEvent = pIndoor->pFaceExtras[pFace->uFaceExtraID].uEventID; | |
5663 } | |
5664 else// åñëè íå ïîë | |
5665 { | |
5666 v46 = pParty->uFallSpeed * pFace->pFacePlane_old.vNormal.z; | |
5667 if ( pFace->uPolygonType != POLYGON_InBetweenFloorAndWall )//ïîëåç íà õîëì | |
5668 { | |
5669 v80 = abs(v1 * pFace->pFacePlane_old.vNormal.y + v46 + v2 * pFace->pFacePlane_old.vNormal.x) >> 16; | |
5670 if ((stru_721530.speed >> 3) > v80 ) | |
5671 v80 = stru_721530.speed >> 3; | |
5672 v2 += fixpoint_mul(v80, pFace->pFacePlane_old.vNormal.x); | |
5673 v1 += fixpoint_mul(v80, pFace->pFacePlane_old.vNormal.y); | |
5674 pParty->uFallSpeed += fixpoint_mul(v80, pFace->pFacePlane_old.vNormal.z); | |
5675 //v80 = pFace->pFacePlane_old.vNormal.y; | |
5676 v52 = stru_721530.prolly_normal_d - ((pFace->pFacePlane_old.dist | |
5677 + v87 * pFace->pFacePlane_old.vNormal.z | |
5678 + new_party_y * pFace->pFacePlane_old.vNormal.y | |
5679 + new_party_x * pFace->pFacePlane_old.vNormal.x) >> 16); | |
5680 if ( v52 > 0 ) | |
5681 { | |
5682 new_party_x += fixpoint_mul(v52, pFace->pFacePlane_old.vNormal.x); | |
5683 new_party_y += fixpoint_mul(v52, pFace->pFacePlane_old.vNormal.y); | |
5684 v87 += fixpoint_mul(v52, pFace->pFacePlane_old.vNormal.z); | |
5685 } | |
5686 if ( pParty->floor_face_pid != PID_ID(stru_721530.uFaceID) && pFace->Pressure_Plate() ) | |
5687 uFaceEvent = pIndoor->pFaceExtras[pFace->uFaceExtraID].uEventID; | |
5688 } | |
5689 if ( pFace->uPolygonType == POLYGON_InBetweenFloorAndWall ) | |
5690 { | |
5691 v80 = abs(v1 * pFace->pFacePlane_old.vNormal.y + v46 + v2 * pFace->pFacePlane_old.vNormal.x) >> 16; | |
5692 if ((stru_721530.speed >> 3) > v80 ) | |
5693 v80 = stru_721530.speed >> 3; | |
5694 v2 += fixpoint_mul(v80, pFace->pFacePlane_old.vNormal.x); | |
5695 v1 += fixpoint_mul(v80, pFace->pFacePlane_old.vNormal.y); | |
5696 pParty->uFallSpeed += fixpoint_mul(v80, pFace->pFacePlane_old.vNormal.z); | |
5697 if ( v2 * v2 + v1 * v1 >= 400 ) | |
5698 { | |
5699 if ( pParty->floor_face_pid != PID_ID(stru_721530.uFaceID) && pFace->Pressure_Plate() ) | |
5700 uFaceEvent = pIndoor->pFaceExtras[pFace->uFaceExtraID].uEventID; | |
5701 } | |
5702 else | |
5703 { | |
5704 v2 = 0; | |
5705 v1 = 0; | |
5706 pParty->uFallSpeed = 0; | |
5707 } | |
5708 } | |
5709 } | |
5710 } | |
5711 v2 = fixpoint_mul(58500, v2); | |
5712 v1 = fixpoint_mul(58500, v1); | |
5713 pParty->uFallSpeed = fixpoint_mul(58500, pParty->uFallSpeed); | |
5714 } | |
5715 | |
5716 // //Âîñïðîèçâåäåíèå çâóêîâ õîäüáû/áåãà------------------------- | |
5717 uint pX_ = abs(pParty->vPosition.x - new_party_x); | |
5718 uint pY_ = abs(pParty->vPosition.y - new_party_y); | |
5719 uint pZ_ = abs(pParty->vPosition.z - new_party_z); | |
5720 if ( bWalkSound && pParty->walk_sound_timer <= 0 ) | |
5721 { | |
5722 pAudioPlayer->_4AA258(804);//stop sound | |
5723 if ( party_running_flag && (!hovering || not_high_fall) ) //Áåã è (íå ïðûæîê èëè íå âûñîêîå ïàäåíèå ) | |
5724 { | |
5725 if ( integer_sqrt(pX_ * pX_ + pY_ * pY_ + pZ_ * pZ_) >= 16 ) | |
5726 { | |
5727 if ( on_water ) | |
2534 | 5728 pAudioPlayer->PlaySound(SOUND_RunWaterIndoor, 804, 1, -1, 0, 0, 0, 0); |
2496 | 5729 else if ( pIndoor->pFaces[uFaceID].uAttributes & FACE_INDOOR_CARPET )//ïî êîâðó |
2534 | 5730 pAudioPlayer->PlaySound(SOUND_RunCarpet, 804, 1, -1, 0, 0, 0, 0); |
2496 | 5731 else |
2534 | 5732 pAudioPlayer->PlaySound(SOUND_RunWood, 804, 1, -1, 0, 0, 0, 0); |
2496 | 5733 pParty->walk_sound_timer = 96;//64 |
5734 } | |
5735 } | |
5736 else if ( party_walking_flag && (!hovering || not_high_fall) )//Õîäüáà è (íå ïðûæîê èëè íå âûñîêîå ïàäåíèå) | |
5737 { | |
5738 if ( integer_sqrt(pX_ * pX_ + pY_ * pY_ + pZ_ * pZ_) >= 8 ) | |
5739 { | |
5740 if ( on_water ) | |
2534 | 5741 pAudioPlayer->PlaySound(SOUND_WalkWaterIndoor, 804, 1, -1, 0, 0, 0, 0); |
2496 | 5742 else if ( pIndoor->pFaces[uFaceID].uAttributes & FACE_INDOOR_CARPET )//ïî êîâðó |
2534 | 5743 pAudioPlayer->PlaySound(SOUND_WalkCarpet, 804, 1, -1, 0, 0, 0, 0); |
2496 | 5744 else |
2534 | 5745 pAudioPlayer->PlaySound(SOUND_WalkWood, 804, 1, -1, 0, 0, 0, 0); |
2496 | 5746 pParty->walk_sound_timer = 144;//64 |
5747 } | |
5748 } | |
5749 } | |
5750 if ( integer_sqrt(pX_ * pX_ + pY_ * pY_ + pZ_ * pZ_) < 8 )//îòêëþ÷èòü çâóê õîäüáû ïðè îñòàíîâêå | |
5751 pAudioPlayer->_4AA258(804); | |
5752 //------------------------------------------------------------- | |
5753 if ( !hovering || !not_high_fall ) | |
5754 pParty->uFlags &= ~PARTY_FLAGS_1_FALLING; | |
5755 else | |
5756 pParty->uFlags |= PARTY_FLAGS_1_FALLING; | |
5757 pParty->uFlags &= ~PARTY_FLAGS_1_BURNING; | |
5758 pParty->vPosition.x = new_party_x; | |
5759 pParty->vPosition.z = new_party_z; | |
5760 pParty->vPosition.y = new_party_y; | |
5761 //pParty->uFallSpeed = v89; | |
5762 if ( !hovering && pIndoor->pFaces[uFaceID].uAttributes & FACE_INDOOR_LAVA ) | |
5763 pParty->uFlags |= PARTY_FLAGS_1_BURNING;//0x200 | |
5764 if (uFaceEvent) | |
5765 EventProcessor(uFaceEvent, 0, 1); | |
5766 } | |
5767 | |
5768 //----- (00449A49) -------------------------------------------------------- | |
5769 void Door_switch_animation(unsigned int uDoorID, int a2) | |
5770 { | |
5771 int old_state; // eax@1 | |
5772 signed int door_id; // esi@2 | |
5773 | |
5774 if ( !pIndoor->pDoors ) | |
5775 return; | |
5776 for ( door_id = 0; door_id < 200; ++door_id ) | |
5777 { | |
5778 if ( pIndoor->pDoors[door_id].uDoorID == uDoorID ) | |
5779 break; | |
5780 } | |
5781 if ( door_id >= 200 ) | |
5782 { | |
5783 Error("Unable to find Door ID: %i!", uDoorID); | |
5784 } | |
5785 old_state = pIndoor->pDoors[door_id].uState; | |
5786 //old_state: 0 - â íèæíåì ïîëîæåíèè/çàêðûòî | |
5787 // 2 - â âåðõíåì ïîëîæåíèè/îòêðûòî, | |
5788 //a2: 1 - îòêðûòü | |
5789 // 2 - îïóñòèòü/ïîäíÿòü | |
5790 if ( a2 == 2 ) | |
5791 { | |
5792 if ( pIndoor->pDoors[door_id].uState == BLVDoor::Closing || pIndoor->pDoors[door_id].uState == BLVDoor::Opening ) | |
5793 return; | |
5794 if ( pIndoor->pDoors[door_id].uState ) | |
5795 { | |
5796 if ( pIndoor->pDoors[door_id].uState != BLVDoor::Closed && pIndoor->pDoors[door_id].uState != BLVDoor::Closing ) | |
5797 { | |
5798 pIndoor->pDoors[door_id].uState = BLVDoor::Closing; | |
5799 if ( old_state == BLVDoor::Open ) | |
5800 { | |
5801 pIndoor->pDoors[door_id].uTimeSinceTriggered = 0; | |
5802 return; | |
5803 } | |
5804 if ( pIndoor->pDoors[door_id].uTimeSinceTriggered != 15360 ) | |
5805 { | |
5806 pIndoor->pDoors[door_id].uTimeSinceTriggered = (pIndoor->pDoors[door_id].uMoveLength << 7) / pIndoor->pDoors[door_id].uOpenSpeed | |
5807 - ((signed int)(pIndoor->pDoors[door_id].uTimeSinceTriggered * pIndoor->pDoors[door_id].uCloseSpeed) | |
5808 / 128 << 7) / pIndoor->pDoors[door_id].uOpenSpeed; | |
5809 return; | |
5810 } | |
5811 pIndoor->pDoors[door_id].uTimeSinceTriggered = 15360; | |
5812 } | |
5813 return; | |
5814 } | |
5815 } | |
5816 else | |
5817 { | |
5818 if ( a2 == 0 ) | |
5819 { | |
5820 if ( pIndoor->pDoors[door_id].uState != BLVDoor::Closed && pIndoor->pDoors[door_id].uState != BLVDoor::Closing ) | |
5821 { | |
5822 pIndoor->pDoors[door_id].uState = BLVDoor::Closing; | |
5823 if ( old_state == BLVDoor::Open ) | |
5824 { | |
5825 pIndoor->pDoors[door_id].uTimeSinceTriggered = 0; | |
5826 return; | |
5827 } | |
5828 if ( pIndoor->pDoors[door_id].uTimeSinceTriggered != 15360 ) | |
5829 { | |
5830 pIndoor->pDoors[door_id].uTimeSinceTriggered = (pIndoor->pDoors[door_id].uMoveLength << 7) / pIndoor->pDoors[door_id].uOpenSpeed | |
5831 - ((signed int)(pIndoor->pDoors[door_id].uTimeSinceTriggered * pIndoor->pDoors[door_id].uCloseSpeed) | |
5832 / 128 << 7) / pIndoor->pDoors[door_id].uOpenSpeed; | |
5833 return; | |
5834 } | |
5835 pIndoor->pDoors[door_id].uTimeSinceTriggered = 15360; | |
5836 } | |
5837 return; | |
5838 } | |
5839 if ( a2 != 1 ) | |
5840 return; | |
5841 } | |
5842 if ( old_state != BLVDoor::Open && old_state != BLVDoor::Opening ) | |
5843 { | |
5844 pIndoor->pDoors[door_id].uState = BLVDoor::Opening; | |
5845 if ( old_state == BLVDoor::Closed ) | |
5846 { | |
5847 pIndoor->pDoors[door_id].uTimeSinceTriggered = 0; | |
5848 return; | |
5849 } | |
5850 if ( pIndoor->pDoors[door_id].uTimeSinceTriggered != 15360 ) | |
5851 { | |
5852 pIndoor->pDoors[door_id].uTimeSinceTriggered = (pIndoor->pDoors[door_id].uMoveLength << 7) / pIndoor->pDoors[door_id].uCloseSpeed | |
5853 - ((signed int)(pIndoor->pDoors[door_id].uTimeSinceTriggered * pIndoor->pDoors[door_id].uOpenSpeed) | |
5854 / 128 << 7) / pIndoor->pDoors[door_id].uCloseSpeed; | |
5855 return; | |
5856 } | |
5857 pIndoor->pDoors[door_id].uTimeSinceTriggered = 15360; | |
5858 } | |
5859 return; | |
5860 } | |
5861 | |
5862 | |
5863 //----- (004088E9) -------------------------------------------------------- | |
5864 int __fastcall sub_4088E9(int x1, int y1, int x2, int y2, int x3, int y3) | |
5865 { | |
5866 signed int result; // eax@1 | |
5867 | |
5868 result = integer_sqrt(abs(x2 - x1) * abs(x2 - x1) + abs(y2 - y1) * abs(y2 - y1)); | |
5869 if ( result ) | |
5870 result = abs(((x2 - x1) * (y1 - y3) - (y2 - y1) * (x1 - x3)) / result); | |
5871 return result; | |
5872 } | |
5873 | |
5874 //----- (00450DA3) -------------------------------------------------------- | |
5875 int GetAlertStatus() | |
5876 { | |
5877 int result; // eax@2 | |
5878 | |
5879 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
5880 result = pOutdoor->ddm.field_C_alert; | |
5881 else | |
5882 result = uCurrentlyLoadedLevelType == LEVEL_Outdoor ? pIndoor->dlv.field_C_alert : 0; | |
5883 return result; | |
5884 } | |
5885 | |
5886 | |
5887 //----- (0045063B) -------------------------------------------------------- | |
5888 int __fastcall _45063B_spawn_some_monster(MapInfo *a1, int a2) | |
5889 { | |
5890 int result; // eax@8 | |
5891 int v6; // edi@11 | |
5892 int v7; // ebx@11 | |
5893 int v8; // edi@11 | |
5894 int v9; // ebx@12 | |
5895 int v10; // eax@12 | |
5896 char v11; // zf@16 | |
5897 int v12; // edi@20 | |
5898 int v13; // eax@20 | |
5899 int v14; // ebx@20 | |
5900 int v15; // eax@20 | |
5901 int v16; // eax@20 | |
5902 int v17; // eax@20 | |
5903 int v18; // eax@21 | |
5904 SpawnPointMM7 v19; // [sp+Ch] [bp-38h]@1 | |
5905 int v22; // [sp+2Ch] [bp-18h]@3 | |
5906 unsigned int uFaceID; // [sp+38h] [bp-Ch]@10 | |
5907 int v26; // [sp+3Ch] [bp-8h]@11 | |
5908 int v27; // [sp+40h] [bp-4h]@11 | |
5909 | |
5910 if (!uNumActors) | |
5911 return 0; | |
5912 | |
5913 for ( uint mon_id = 0; mon_id < uNumActors; ++mon_id ) | |
5914 { | |
5915 if ((pActors[mon_id].pMonsterInfo.uID < 121 || pActors[mon_id].pMonsterInfo.uID > 123) && // Dwarf FemaleC A-C | |
5916 (pActors[mon_id].pMonsterInfo.uID < 124 || pActors[mon_id].pMonsterInfo.uID > 126) && // Dwarf MaleA A-C | |
5917 (pActors[mon_id].pMonsterInfo.uID < 133 || pActors[mon_id].pMonsterInfo.uID > 135) && // Peasant Elf FemaleA A-C | |
5918 pActors[mon_id].CanAct()) | |
5919 { | |
5920 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
5921 { | |
5922 v22 = 0; | |
5923 uint face_id = 0; | |
5924 for ( face_id; face_id < 100; ++face_id ) | |
5925 { | |
5926 v6 = rand() % 1024 + 512; | |
5927 v7 = rand() % (signed int)stru_5C6E00->uIntegerDoublePi; | |
5928 v19.vPosition.x = pParty->vPosition.x + fixpoint_mul(stru_5C6E00->Cos(v7), v6); | |
5929 v8 = 0; | |
5930 v19.uIndex = a2; | |
5931 v19.vPosition.y = fixpoint_mul(stru_5C6E00->Sin(v7), v6) + pParty->vPosition.y; | |
5932 v19.vPosition.z = pParty->vPosition.z; | |
5933 v26 = 0; | |
5934 v27 = 0; | |
5935 v19.vPosition.z = ODM_GetFloorLevel(v19.vPosition.x, v19.vPosition.y, pParty->vPosition.z, 0, &v26, &v27, 0); | |
5936 for( int i = 0; i < pOutdoor->uNumBModels; i++ ) | |
5937 { | |
5938 v9 = abs(v19.vPosition.y - pOutdoor->pBModels[i].vBoundingCenter.y); | |
5939 v10 = abs(v19.vPosition.x - pOutdoor->pBModels[i].vBoundingCenter.x); | |
5940 if ( int_get_vector_length(v10, v9, 0) < pOutdoor->pBModels[i].sBoundingRadius + 256 ) | |
5941 { | |
5942 v22 = 1; | |
5943 break; | |
5944 } | |
5945 } | |
5946 if ( v22 ) | |
5947 { | |
5948 v11 = face_id == 100; | |
5949 break; | |
5950 } | |
5951 } | |
5952 v11 = face_id == 100; | |
5953 } | |
5954 else if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
5955 { | |
5956 v22 = pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); | |
5957 for ( uint i = 0; i < 100; ++i ) | |
5958 { | |
5959 v12 = rand() % 512 + 256; | |
5960 v13 = rand(); | |
5961 v14 = v13 % (signed int)stru_5C6E00->uIntegerDoublePi; | |
5962 v15 = stru_5C6E00->Cos(v13 % (signed int)stru_5C6E00->uIntegerDoublePi); | |
5963 v19.vPosition.x = pParty->vPosition.x + fixpoint_mul(v15, v12); | |
5964 v16 = stru_5C6E00->Sin(v13 % (signed int)stru_5C6E00->uIntegerDoublePi); | |
5965 v19.vPosition.y = fixpoint_mul(v16, v12) + pParty->vPosition.y; | |
5966 v19.vPosition.z = pParty->vPosition.z; | |
5967 v19.uIndex = a2; | |
5968 v17 = pIndoor->GetSector(v19.vPosition.x, v19.vPosition.y, pParty->vPosition.z); | |
5969 if ( v17 == v22 ) | |
5970 { | |
5971 v18 = BLV_GetFloorLevel(v19.vPosition.x, v19.vPosition.y, v19.vPosition.z, v17, &uFaceID); | |
5972 v19.vPosition.z = v18; | |
5973 if ( v18 != -30000 ) | |
5974 { | |
5975 if ( abs(v18 - pParty->vPosition.z) <= 1024 ) | |
5976 break; | |
5977 } | |
5978 } | |
5979 } | |
5980 v11 = v26 == 100; | |
5981 } | |
5982 if ( v11 ) | |
5983 result = 0; | |
5984 else | |
5985 { | |
5986 SpawnEncounter(a1, &v19, 0, 0, 1); | |
5987 result = a2; | |
5988 } | |
5989 } | |
5990 | |
5991 //break; | |
5992 //v22 = v3->pMonsterInfo.uID - 1; | |
5993 //v4 = (signed __int64)((double)v22 * 0.3333333333333333); | |
5994 //if ( (int)v4 != 40 ) | |
5995 //{ | |
5996 // if ( (int)v4 != 41 && (int)v4 != 44 && v3->CanAct() ) | |
5997 // break; | |
5998 //} | |
5999 //++v2; | |
6000 //++v3; | |
6001 //if ( v2 >= (signed int)uNumActors ) | |
6002 // goto LABEL_8; | |
6003 } | |
6004 return result; | |
6005 } | |
6006 | |
6007 //----- (00450521) -------------------------------------------------------- | |
6008 int __fastcall sub_450521_ProllyDropItemAt(int ecx0, signed int a2, int a3, int a4, int a5, unsigned __int16 a6) | |
6009 { | |
6010 int v6; // edi@1 | |
6011 int v7; // esi@1 | |
6012 signed int v8; // edi@1 | |
6013 unsigned __int16 v9; // cx@1 | |
6014 // char *v10; // edx@2 | |
6015 unsigned __int16 v11; // ax@5 | |
6016 SpriteObject a1; // [sp+8h] [bp-70h]@1 | |
6017 | |
6018 v6 = ecx0; | |
6019 v7 = a2; | |
2566 | 6020 pItemsTable->GenerateItem(v6, v7, &a1.containing_item); |
2496 | 6021 v8 = 0; |
2566 | 6022 v9 = pItemsTable->pItems[a1.containing_item.uItemID].uSpriteID; |
6023 a1.uType = (SPRITE_OBJECT_TYPE)pItemsTable->pItems[a1.containing_item.uItemID].uSpriteID; | |
2496 | 6024 v11 = 0; |
6025 for( int i = 0; i < pObjectList->uNumObjects; i++ ) | |
6026 { | |
6027 if( v9 == pObjectList->pObjects[i].uObjectID ) | |
6028 { | |
6029 v11 = i; | |
6030 break; | |
6031 } | |
6032 } | |
6033 a1.uObjectDescID = v11; | |
6034 a1.vPosition.y = a4; | |
6035 a1.vPosition.x = a3; | |
6036 a1.vPosition.z = a5; | |
6037 a1.uFacing = a6; | |
6038 a1.uAttributes = 0; | |
6039 a1.uSectorID = pIndoor->GetSector(a3, a4, a5); | |
6040 a1.uSpriteFrameID = 0; | |
6041 return a1.Create(0, 0, 0, 0); | |
6042 } | |
6043 | |
6044 //----- (004075DB) -------------------------------------------------------- | |
6045 bool __fastcall sub_4075DB(int x, int y, int z, BLVFace *face) | |
6046 { | |
6047 int v8; // edi@2 | |
6048 signed int v25; // eax@22 | |
6049 bool result; // eax@25 | |
6050 signed int a3a; // [sp+24h] [bp+8h]@14 | |
6051 int a4a; // [sp+28h] [bp+Ch]@2 | |
6052 | |
6053 std::array<int, 52> dword_4F5CC8_ys; // idb | |
6054 std::array<int, 52> dword_4F5D98_xs; // idb | |
6055 | |
6056 //__debugbreak(); | |
6057 | |
6058 if (face->uAttributes & FACE_XY_PLANE) | |
6059 { | |
6060 a4a = x; | |
6061 v8 = y; | |
6062 for (int i = 0; i < face->uNumVertices; i++) | |
6063 { | |
6064 dword_4F5D98_xs[i] = pIndoor->pVertices[face->pVertexIDs[i]].x; | |
6065 dword_4F5CC8_ys[i] = pIndoor->pVertices[face->pVertexIDs[i]].y; | |
6066 } | |
6067 } | |
6068 else | |
6069 { | |
6070 v8 = z; | |
6071 if (face->uAttributes & FACE_XZ_PLANE) | |
6072 { | |
6073 a4a = x; | |
6074 for (int i = 0; i < face->uNumVertices; i++) | |
6075 { | |
6076 dword_4F5D98_xs[i] = pIndoor->pVertices[face->pVertexIDs[i]].x; | |
6077 dword_4F5CC8_ys[i] = pIndoor->pVertices[face->pVertexIDs[i]].z; | |
6078 } | |
6079 } | |
6080 else | |
6081 { | |
6082 a4a = y; | |
6083 for (int i = 0; i < face->uNumVertices; i++) | |
6084 { | |
6085 dword_4F5D98_xs[i] = pIndoor->pVertices[face->pVertexIDs[i]].y; | |
6086 dword_4F5CC8_ys[i] = pIndoor->pVertices[face->pVertexIDs[i]].z; | |
6087 } | |
6088 } | |
6089 } | |
6090 a3a = 0; | |
6091 dword_4F5D98_xs[face->uNumVertices] = dword_4F5D98_xs[0]; | |
6092 dword_4F5CC8_ys[face->uNumVertices] = dword_4F5CC8_ys[0]; | |
6093 for (int i = 0; i < face->uNumVertices && a3a < 2; i++) | |
6094 { | |
6095 if (dword_4F5CC8_ys[i] >= v8 ^ (dword_4F5CC8_ys[i + 1] >= v8)) | |
6096 { | |
6097 //if( dword_4F5D98_xs[i + 1] >= a4a || dword_4F5D98_xs[i] >= a4a) | |
6098 if (!(dword_4F5D98_xs[i + 1] >= a4a && dword_4F5D98_xs[i] < a4a)) | |
6099 { | |
6100 if ((dword_4F5D98_xs[i + 1] < a4a && dword_4F5D98_xs[i] >= a4a)) | |
6101 ++a3a; | |
6102 //|| (v25 = dword_4F5D98_xs[i + 1] - dword_4F5D98_xs[i],LODWORD(v26) = v25 << 16, HIDWORD(v26) = v25 >> 16, | |
6103 //dword_4F5D98_xs[i] + ((signed int)(((unsigned __int64)(v26 / (dword_4F5CC4_ys[i + 2] - dword_4F5CC4_ys[i + 1])* ((v8 - dword_4F5CC4_ys[i + 1]) << 16)) >> 16) | |
6104 // + 32768) >> 16) >= a4a) ) | |
6105 else | |
6106 { | |
6107 v25 = fixpoint_div(dword_4F5D98_xs[i + 1] - dword_4F5D98_xs[i], dword_4F5CC8_ys[i + 1] - dword_4F5CC8_ys[i]); | |
6108 if (dword_4F5D98_xs[i] + (fixpoint_mul(v25, (v8 - dword_4F5CC8_ys[i]) << 16) + 0x8000 >> 16) >= a4a) | |
6109 ++a3a; | |
6110 } | |
6111 } | |
6112 } | |
6113 } | |
6114 result = 1; | |
6115 if (a3a != 1) | |
6116 result = 0; | |
6117 return result; | |
6118 } | |
6119 | |
6120 //----- (004077F1) -------------------------------------------------------- | |
6121 bool __fastcall sub_4077F1(int a1, int a2, int a3, ODMFace *face, BSPVertexBuffer *a5) | |
6122 { | |
6123 int a4a; // [sp+28h] [bp+Ch]@2 | |
6124 signed int a5a; // [sp+2Ch] [bp+10h]@14 | |
6125 | |
6126 std::array<int, 52> dword_4F5B24_ys; // idb | |
6127 std::array<int, 52> dword_4F5BF4_xs; // idb | |
6128 | |
6129 //__debugbreak(); //ñðàáàòûâàåò ïðè íàïàäåíèè ñòðåêîçàâðîâ ñ îãí¸ì | |
6130 | |
6131 if (face->uAttributes & FACE_XY_PLANE) | |
6132 { | |
6133 a4a = a1; | |
6134 a3 = a2; | |
6135 for (int i = 0; i < face->uNumVertices; i++) | |
6136 { | |
6137 dword_4F5BF4_xs[i + 1] = a5->pVertices[face->pVertexIDs[i]].x; | |
6138 dword_4F5B24_ys[i + 1] = a5->pVertices[face->pVertexIDs[i]].y; | |
6139 } | |
6140 } | |
6141 else | |
6142 { | |
6143 if (face->uAttributes & FACE_XY_PLANE) | |
6144 { | |
6145 a4a = a1; | |
6146 for (int i = 0; i < face->uNumVertices; i++) | |
6147 { | |
6148 dword_4F5BF4_xs[i + 1] = a5->pVertices[face->pVertexIDs[i]].x; | |
6149 dword_4F5B24_ys[i + 1] = a5->pVertices[face->pVertexIDs[i]].z; | |
6150 } | |
6151 } | |
6152 else | |
6153 { | |
6154 a4a = a2; | |
6155 for (int i = 0; i < face->uNumVertices; i++) | |
6156 { | |
6157 dword_4F5BF4_xs[i + 1] = a5->pVertices[face->pVertexIDs[i]].y; | |
6158 dword_4F5B24_ys[i + 1] = a5->pVertices[face->pVertexIDs[i]].z; | |
6159 } | |
6160 } | |
6161 } | |
6162 a5a = 0; | |
6163 dword_4F5BF4_xs[face->uNumVertices + 1] = dword_4F5BF4_xs[1]; | |
6164 dword_4F5B24_ys[face->uNumVertices + 1] = dword_4F5B24_ys[1]; | |
6165 for (int i = 0; i < face->uNumVertices; i++) | |
6166 { | |
6167 if (a5a >= 2) | |
6168 break; | |
6169 if (dword_4F5B24_ys[i + 1] >= a3 ^ (dword_4F5B24_ys[i + 2] >= a3)) | |
6170 { | |
6171 if (dword_4F5BF4_xs[i + 2] >= a4a || dword_4F5BF4_xs[i] >= a4a) | |
6172 { | |
6173 if (dword_4F5BF4_xs[i + 2] >= a4a && dword_4F5BF4_xs[i + 1] >= a4a) | |
6174 ++a5a; | |
6175 else | |
6176 { | |
6177 //v23 = (__int64)(dword_4F5BF4_xs[i + 2] - dword_4F5BF4_xs[i + 1]) << 16; | |
6178 __int64 _a = dword_4F5B24_ys[i + 2] - dword_4F5B24_ys[i + 1]; | |
6179 __int64 _b = (__int64)(a3 - dword_4F5B24_ys[i + 1]) << 16; | |
6180 | |
6181 if (dword_4F5BF4_xs[i + 1] + ((((((__int64)(dword_4F5BF4_xs[i + 2] - dword_4F5BF4_xs[i + 1]) << 16) / _a * _b) >> 16) + 0x8000) >> 16) >= a4a) | |
6182 ++a5a; | |
6183 } | |
6184 } | |
6185 } | |
6186 } | |
6187 | |
6188 if (a5a != 1) | |
6189 return false; | |
6190 return true; | |
6191 | |
6192 } | |
6193 | |
6194 //----- (0049B04D) -------------------------------------------------------- | |
6195 void stru154::GetFacePlaneAndClassify(ODMFace *a2, BSPVertexBuffer *a3) | |
6196 { | |
6197 Vec3_float_ v; // [sp+4h] [bp-Ch]@1 | |
6198 float v7; | |
6199 | |
6200 v.x = 0.0; | |
6201 v.y = 0.0; | |
6202 v.z = 0.0; | |
6203 GetFacePlane(a2, a3, &v, &v7); | |
6204 | |
6205 if (fabsf(a2->pFacePlane.vNormal.z) < 1e-6f) | |
6206 polygonType = POLYGON_VerticalWall; | |
6207 else if (fabsf(a2->pFacePlane.vNormal.x) < 1e-6f && | |
6208 fabsf(a2->pFacePlane.vNormal.y) < 1e-6f) | |
6209 polygonType = POLYGON_Floor; | |
6210 else | |
6211 polygonType = POLYGON_InBetweenFloorAndWall; | |
6212 | |
6213 face_plane.vNormal.x = v.x; | |
6214 face_plane.vNormal.y = v.y; | |
6215 face_plane.vNormal.z = v.z; | |
6216 face_plane.dist = v7; | |
6217 } | |
6218 | |
6219 //----- (0049B0C9) -------------------------------------------------------- | |
6220 void stru154::ClassifyPolygon(Vec3_float_ *pNormal, float dist) | |
6221 { | |
6222 if (fabsf(pNormal->z) < 1e-6f) | |
6223 polygonType = POLYGON_VerticalWall; | |
6224 else if (fabsf(pNormal->x) < 1e-6f && | |
6225 fabsf(pNormal->y) < 1e-6f) | |
6226 polygonType = POLYGON_Floor; | |
6227 else | |
6228 polygonType = POLYGON_InBetweenFloorAndWall; | |
6229 | |
6230 face_plane.vNormal.x = pNormal->x; | |
6231 face_plane.dist = dist; | |
6232 face_plane.vNormal.y = pNormal->y; | |
6233 face_plane.vNormal.z = pNormal->z; | |
6234 } | |
6235 | |
6236 //----- (0049B13D) -------------------------------------------------------- | |
6237 void stru154::GetFacePlane(ODMFace *pFace, BSPVertexBuffer *pVertices, Vec3_float_ *pOutNormal, float *pOutDist) | |
6238 { | |
6239 Vec3_float_ *v19; // eax@3 | |
6240 Vec3_float_ v2; // [sp+4h] [bp-64h]@3 | |
6241 float v26; // [sp+1Ch] [bp-4Ch]@3 | |
6242 float v27; // [sp+20h] [bp-48h]@3 | |
6243 float v28; // [sp+24h] [bp-44h]@3 | |
6244 Vec3_float_ v1; // [sp+40h] [bp-28h]@1 | |
6245 Vec3_float_ v38; // [sp+58h] [bp-10h]@3 | |
6246 | |
6247 v1.x = 0.0; | |
6248 v1.y = 0.0; | |
6249 v1.z = 0.0; | |
6250 | |
6251 if (pFace->uNumVertices >= 2) | |
6252 { | |
6253 for (int i = 0; i < pFace->uNumVertices - 2; i++) | |
6254 { | |
6255 v1.x = pVertices->pVertices[pFace->pVertexIDs[i + 1]].x - pVertices->pVertices[pFace->pVertexIDs[i]].x; | |
6256 v1.y = pVertices->pVertices[pFace->pVertexIDs[i + 1]].y - pVertices->pVertices[pFace->pVertexIDs[i]].y; | |
6257 v1.z = pVertices->pVertices[pFace->pVertexIDs[i + 1]].z - pVertices->pVertices[pFace->pVertexIDs[i]].z; | |
6258 | |
6259 v26 = pVertices->pVertices[pFace->pVertexIDs[i + 2]].x - pVertices->pVertices[pFace->pVertexIDs[i + 1]].x; | |
6260 v27 = pVertices->pVertices[pFace->pVertexIDs[i + 2]].y - pVertices->pVertices[pFace->pVertexIDs[i + 1]].y; | |
6261 v28 = pVertices->pVertices[pFace->pVertexIDs[i + 2]].z - pVertices->pVertices[pFace->pVertexIDs[i + 1]].z; | |
6262 | |
6263 v19 = Vec3_float_::Cross(&v1, &v2, v26, v27, v28); | |
6264 v38.x = v19->x; | |
6265 v38.y = v19->y; | |
6266 v38.z = v19->z; | |
6267 if (v38.x != 0.0 || v38.y != 0.0 || v38.z != 0.0) | |
6268 { | |
6269 v38.Normalize(); | |
6270 | |
6271 pOutNormal->x = v38.x; | |
6272 pOutNormal->y = v38.y; | |
6273 pOutNormal->z = v38.z; | |
6274 | |
6275 *pOutDist = -(pVertices->pVertices[pFace->pVertexIDs[i]].x * v38.x | |
6276 + pVertices->pVertices[pFace->pVertexIDs[i]].y * v38.y | |
6277 + pVertices->pVertices[pFace->pVertexIDs[i]].z * v38.z); | |
6278 return; | |
6279 } | |
6280 } | |
6281 } | |
6282 | |
6283 pOutNormal->x = (double)(pFace->pFacePlane.vNormal.x & 0xFFFF) / 65535.0f + (double)(pFace->pFacePlane.vNormal.x >> 16); | |
6284 pOutNormal->y = (double)(pFace->pFacePlane.vNormal.y & 0xFFFF) / 65535.0f + (double)(pFace->pFacePlane.vNormal.y >> 16); | |
6285 pOutNormal->z = (double)(pFace->pFacePlane.vNormal.z & 0xFFFF) / 65535.0f + (double)(pFace->pFacePlane.vNormal.z >> 16); | |
6286 *pOutDist = (double)(pFace->pFacePlane.dist & 0xFFFF) / 65535.0f + (double)(pFace->pFacePlane.dist >> 16); | |
6287 } | |
6288 | |
6289 //----- (0043F515) -------------------------------------------------------- | |
6290 void FindBillboardsLightLevels_BLV() | |
6291 { | |
6292 for (uint i = 0; i < uNumBillboardsToDraw; ++i) | |
6293 { | |
6294 if (pBillboardRenderList[i].field_1E & 2 || uCurrentlyLoadedLevelType == LEVEL_Indoor && !pBillboardRenderList[i].uIndoorSectorID) | |
6295 pBillboardRenderList[i].dimming_level = 0; | |
6296 else | |
6297 pBillboardRenderList[i].dimming_level = _43F55F_get_billboard_light_level(&pBillboardRenderList[i], -1); | |
6298 } | |
6299 } | |
6300 | |
6301 //----- (0047272C) -------------------------------------------------------- | |
6302 int collide_against_floor_approximate(int x, int y, int z, unsigned int *pSectorID, unsigned int *pFaceID) | |
6303 { | |
6304 int result; // eax@1 | |
6305 | |
6306 *pSectorID = pIndoor->GetSector(x - 2, y, z + 40); | |
6307 result = collide_against_floor(x - 2, y, z + 40, pSectorID, pFaceID); | |
6308 if (result == -30000 || !*pSectorID) | |
6309 { | |
6310 *pSectorID = pIndoor->GetSector(x + 2, y, z + 40); | |
6311 result = collide_against_floor(x + 2, y, z + 40, pSectorID, pFaceID); | |
6312 if (result == -30000 || !*pSectorID) | |
6313 { | |
6314 *pSectorID = pIndoor->GetSector(x, y - 2, z + 40); | |
6315 result = collide_against_floor(x, y - 2, z + 40, pSectorID, pFaceID); | |
6316 if (result == -30000 || !*pSectorID) | |
6317 { | |
6318 *pSectorID = pIndoor->GetSector(x, y + 2, z + 40); | |
6319 result = collide_against_floor(x, y + 2, z + 40, pSectorID, pFaceID); | |
6320 if (result == -30000 || !*pSectorID) | |
6321 { | |
6322 *pSectorID = pIndoor->GetSector(x, y, z + 140); | |
6323 result = collide_against_floor(x, y, z + 140, pSectorID, pFaceID); | |
6324 } | |
6325 } | |
6326 } | |
6327 } | |
6328 return result; | |
6329 } | |
6330 | |
6331 //----- (0047050A) -------------------------------------------------------- | |
6332 int stru141_actor_collision_object::_47050A(int dt) | |
6333 { | |
6334 int v7; // eax@1 | |
6335 signed int result; // eax@4 | |
6336 int v17; // eax@5 | |
6337 int v18; // eax@7 | |
6338 int v21; // eax@9 | |
6339 int v22; // eax@11 | |
6340 | |
6341 int speed = 1 | integer_sqrt(this->velocity.z * this->velocity.z + this->velocity.y * this->velocity.y + this->velocity.x * this->velocity.x); | |
6342 | |
6343 this->direction.x = 65536 / speed * this->velocity.x; | |
6344 this->direction.y = 65536 / speed * this->velocity.y; | |
6345 this->direction.z = 65536 / speed * this->velocity.z; | |
6346 | |
6347 this->speed = speed; | |
6348 this->inv_speed = 65536 / speed; | |
6349 | |
6350 if (dt) | |
6351 v7 = dt; | |
6352 else | |
6353 v7 = pEventTimer->dt_in_some_format; | |
6354 | |
6355 //v8 = fixpoint_mul(v7, speed) - this->field_70; // speed * dt - something | |
6356 this->field_6C = fixpoint_mul(v7, speed) - this->field_70; | |
6357 if (this->field_6C > 0) | |
6358 { | |
6359 //v10 = fixpoint_mul(v8, this->direction.x) + this->normal.x; | |
6360 this->field_4C = fixpoint_mul(this->field_6C, this->direction.x) + this->normal.x; | |
6361 this->normal2.x = fixpoint_mul(this->field_6C, this->direction.x) + this->normal.x; | |
6362 //v11 = fixpoint_mul(this->field_6C, this->direction.y) + this->normal.y; | |
6363 this->field_50 = fixpoint_mul(this->field_6C, this->direction.y) + this->normal.y; | |
6364 this->normal2.y = fixpoint_mul(this->field_6C, this->direction.y) + this->normal.y; | |
6365 this->normal2.z = fixpoint_mul(this->field_6C, this->direction.z) + this->normal.z; | |
6366 //v12 = this->position.z; | |
6367 //v13 = this->normal.x; | |
6368 //v14 = this->normal2.x; | |
6369 //v15 = this->prolly_normal_d; | |
6370 //v16 = this->position.z + fixpoint_mul(this->field_6C, this->direction.z); | |
6371 //v28 = this->position.z + fixpoint_mul(this->field_6C, this->direction.z); | |
6372 this->field_54 = this->position.z + fixpoint_mul(this->field_6C, this->direction.z); | |
6373 v17 = this->normal.x; | |
6374 if (v17 >= this->normal2.x) | |
6375 v17 = this->normal2.x; | |
6376 this->sMaxX = v17 - this->prolly_normal_d; | |
6377 v18 = this->prolly_normal_d + this->normal.x; | |
6378 if (this->normal.x <= this->normal2.x) | |
6379 v18 = this->prolly_normal_d + this->normal2.x; | |
6380 //v19 = this->normal.y; | |
6381 //v20 = this->normal2.y; | |
6382 this->sMinX = v18; | |
6383 v21 = this->normal.y; | |
6384 if (v21 >= this->normal2.y) | |
6385 v21 = this->normal2.y; | |
6386 this->sMaxY = v21 - this->prolly_normal_d; | |
6387 v22 = this->prolly_normal_d + this->normal.y; | |
6388 if (this->normal.y <= this->normal2.y) | |
6389 v22 = this->normal2.y + this->prolly_normal_d; | |
6390 //v23 = this->normal2.z; | |
6391 this->sMinY = v22; | |
6392 //v24 = this->normal.z; | |
6393 if (this->normal.z >= this->normal2.z) | |
6394 this->sMaxZ = this->normal2.z - this->prolly_normal_d; | |
6395 else | |
6396 this->sMaxZ = this->normal.z - this->prolly_normal_d; | |
6397 //this->sMaxZ = v25; | |
6398 //v26 = this->field_8_radius; | |
6399 if (this->position.z <= this->position.z + fixpoint_mul(this->field_6C, this->direction.z)) | |
6400 this->sMinZ = (this->position.z + fixpoint_mul(this->field_6C, this->direction.z)) + this->field_8_radius; | |
6401 else | |
6402 this->sMinZ = this->position.z + this->field_8_radius; | |
6403 this->uFaceID = 0; | |
6404 this->field_80 = -1; | |
6405 this->field_88 = -1; | |
6406 //this->sMinZ = v27; | |
6407 this->field_7C = 0xFFFFFFu; | |
6408 result = 0; | |
6409 } | |
6410 else | |
6411 result = 1; | |
6412 return result; | |
6413 } |