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