Mercurial > mm7
annotate Outdoor.cpp @ 2078:66cbc97b31fa
fix transparent fonts
author | Gloval |
---|---|
date | Wed, 04 Dec 2013 23:35:44 +0400 |
parents | 24033aa2e1f8 |
children | c15871e2d743 6c0dbff26f5d |
rev | line source |
---|---|
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1141
diff
changeset
|
1 #ifdef _MSC_VER |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1141
diff
changeset
|
2 #define _CRT_SECURE_NO_WARNINGS |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1141
diff
changeset
|
3 #endif |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1141
diff
changeset
|
4 |
1016 | 5 #include "stru6.h" |
1323 | 6 #include "Weather.h" |
1016 | 7 #include "Sprites.h" |
8 #include "LightmapBuilder.h" | |
0 | 9 #include "Outdoor.h" |
1277 | 10 #include "Outdoor_stuff.h" |
0 | 11 #include "Party.h" |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
12 #include "SpriteObject.h" |
0 | 13 #include "LOD.h" |
14 #include "PaletteManager.h" | |
15 #include "GUIProgressBar.h" | |
16 #include "AudioPlayer.h" | |
17 #include "DecorationList.h" | |
2037
7a9477135943
Renamed Math.h -> OurMath.h (file resolution was sometimes ambiguous)
Nomad
parents:
2006
diff
changeset
|
18 #include "OurMath.h" |
0 | 19 #include "ObjectList.h" |
20 #include "Game.h" | |
21 #include "Actor.h" | |
22 #include "Chest.h" | |
23 #include "stru123.h" | |
2044 | 24 #include "Timer.h" |
0 | 25 #include "Viewport.h" |
26 #include "Events.h" | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1391
diff
changeset
|
27 #include "ParticleEngine.h" |
2043
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
28 #include "TurnEngine.h" |
0 | 29 |
30 #include "mm7_data.h" | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
813
diff
changeset
|
31 #include "MM7.h" |
1262 | 32 #include "Lights.h" |
0 | 33 |
34 | |
1016 | 35 #include "MapInfo.h" |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
36 #include "Outdoor_stuff.h" |
1016 | 37 #include "BSPModel.h" |
1297 | 38 #include "GUIWindow.h" |
1828
35c1e4ff6ba7
party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents:
1736
diff
changeset
|
39 #include "Level/Decoration.h" |
0 | 40 |
783 | 41 MapStartPoint uLevel_StartingPointType; // weak |
42 | |
0 | 43 OutdoorLocation *pOutdoor = new OutdoorLocation; |
1637 | 44 ODMRenderParams *pODMRenderParams; |
0 | 45 |
46 | |
47 stru149 stru_8019C8; | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
48 std::array<struct Polygon, 2000 + 18000> array_77EC08; |
0 | 49 |
767 | 50 |
51 struct FogProbabilityTableEntry | |
52 { | |
53 unsigned char small_fog_chance; | |
54 unsigned char average_fog_chance; | |
55 unsigned char dense_fog_chance; | |
56 unsigned char __unused; | |
57 } fog_probability_table[15] = | |
58 { | |
59 { 20, 10, 5, 0}, // MAP_EMERALD_ISLE | |
60 { 20, 10, 5, 0}, // MAP_HARMONDALE | |
61 { 20, 10, 5, 0}, // MAP_STEADWICK | |
62 { 20, 10, 5, 0}, // MAP_PIERPONT | |
63 { 20, 10, 5, 0}, // MAP_DEYJA | |
64 { 10, 5, 0, 0}, // MAP_BRAKADA_DESERT | |
65 { 0, 0, 0, 0}, // MAP_CELESTIA | |
66 { 0, 0, 0, 0}, // MAP_THE_PIT | |
67 { 20, 30, 50, 0}, // MAP_EVENMORN_ISLE | |
68 { 30, 20, 10, 0}, // MAP_MOUNT_NIGHON | |
69 { 10, 5, 0, 0}, // MAP_BARROW_DOWNS | |
70 { 20, 10, 5, 0}, // MAP_LAND_OF_GIANTS | |
71 { 20, 10, 5, 0}, // MAP_TATALIA | |
72 { 20, 10, 5, 0}, // MAP_AVLEE | |
73 { 0, 100, 0, 0} // MAP_SHOALS | |
74 }; | |
75 | |
760 | 76 //for future sky textures? |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
77 std::array<int, 9> dword_4EC268={{3,3,3,3,3,3,3,3,3}}; // weak |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
78 std::array<int, 7> dword_4EC28C={{3,3,3,3,3,3,3}}; // weak |
760 | 79 int dword_4EC2A8=9; // weak |
80 int dword_4EC2AC=7; // weak | |
630 | 81 |
82 | |
83 | |
0 | 84 //----- (0047A59E) -------------------------------------------------------- |
85 void OutdoorLocation::ExecDraw(unsigned int bRedraw) | |
86 { | |
121 | 87 //unsigned int v2; // ebx@1 |
0 | 88 int v3; // ST18_4@3 |
89 int v4; // ST04_4@19 | |
90 int v5; // eax@19 | |
91 | |
1642 | 92 pGame->pIndoorCameraD3D->debug_flags = 0; |
186 | 93 if (viewparams->draw_d3d_outlines) |
1642 | 94 pGame->pIndoorCameraD3D->debug_flags |= ODM_RENDER_DRAW_D3D_OUTLINES; |
186 | 95 |
121 | 96 if (bRedraw || pRenderer->pRenderD3D) |
0 | 97 { |
1642 | 98 //pODMRenderParams->RotationToInts(); |
1637 | 99 sub_481ED9_MessWithODMRenderParams(); |
0 | 100 } |
762 | 101 |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
102 pODMRenderParams->uMapGridCellX = WorldPosToGridCellX(pParty->vPosition.x); |
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
103 pODMRenderParams->uMapGridCellZ = WorldPosToGridCellZ(pParty->vPosition.y); |
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
104 assert(pODMRenderParams->uMapGridCellX <= 127 && pODMRenderParams->uMapGridCellZ <= 127); |
762 | 105 |
121 | 106 if (bRedraw) |
0 | 107 { |
108 sub_487DA9(); | |
109 } | |
110 if ( pParty->uCurrentMinute != pOutdoor->uLastSunlightUpdateMinute ) | |
111 pOutdoor->UpdateSunlightVectors(); | |
112 pOutdoor->UpdateFog(); | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
113 //pGame->pIndoorCameraD3D->sr_Reset_list_0037C(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
114 |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
115 if (pRenderer->pRenderD3D) // d3d - redraw always |
0 | 116 { |
1923 | 117 pRenderer->DrawOutdoorSkyD3D(); |
0 | 118 pRenderer->DrawBuildingsD3D(); |
985 | 119 pRenderer->RenderTerrainD3D(); |
0 | 120 } |
83 | 121 else |
122 { | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
123 __debugbreak(); // no SW Rendering |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
124 /*if (!bRedraw) |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
125 pRenderer->OnOutdoorRedrawSW(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
126 else |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
127 { |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
128 pRenderer->DrawBuildingsSW(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
129 pRenderer->DrawBezierTerrain(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
130 sr_sub_486F92_MessWithEdgesAndSpans(); |
1637 | 131 pODMRenderParams->ApplyLightmapsSW(); |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
132 }*/ |
83 | 133 } |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
134 |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
135 |
0 | 136 pMobileLightsStack->uNumLightsActive = 0; |
137 pStationaryLightsStack->uNumLightsActive = 0; | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
138 /*if ( !pRenderer->pRenderD3D ) |
0 | 139 { |
140 pRenderer->ExecOutdoorDrawSW(); | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
141 pGame->pIndoorCameraD3D->sr_438240_draw_lits(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
142 }*/ |
0 | 143 pGame->PushStationaryLights(-1); |
144 pGame->PrepareBloodsplats(); | |
121 | 145 if (bRedraw) |
0 | 146 { |
147 v4 = WorldPosToGridCellZ(pParty->vPosition.y); | |
148 v5 = WorldPosToGridCellX(pParty->vPosition.x); | |
752 | 149 pOutdoor->UpdateDiscoveredArea(v5, v4, 1); |
0 | 150 } |
151 pGame->uFlags2 &= 0xFFFFFFFEu; | |
142 | 152 if (pRenderer->pRenderD3D && pRenderer->bUsingSpecular) |
0 | 153 pGame->pLightmapBuilder->uFlags |= 1u; |
154 else | |
155 pGame->pLightmapBuilder->uFlags &= 0xFFFFFFFEu; | |
142 | 156 |
0 | 157 uNumDecorationsDrawnThisFrame = 0; |
158 uNumSpritesDrawnThisFrame = 0; | |
159 uNumBillboardsToDraw = 0; | |
142 | 160 |
432 | 161 PrepareActorsDrawList(); |
1637 | 162 if (!pODMRenderParams->bDoNotRenderDecorations) |
432 | 163 pRenderer->PrepareDecorationsRenderList_ODM(); |
142 | 164 |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
165 pRenderer->DrawSpriteObjects_ODM(); |
161 | 166 pRenderer->TransformBillboardsAndSetPalettesODM(); |
0 | 167 } |
168 | |
169 | |
170 //----- (00441CFF) -------------------------------------------------------- | |
171 void OutdoorLocation::Draw() | |
172 { | |
121 | 173 bool redrawWorld = true; |
174 if ( !(pParty->uFlags & 2) && !(pGame->uFlags2 & 1) ) | |
175 redrawWorld = false; | |
176 pOutdoor->ExecDraw(redrawWorld); | |
0 | 177 |
178 pGame->DrawParticles(); | |
179 pWeather->Draw(); | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1391
diff
changeset
|
180 trail_particle_generator.UpdateParticles(); |
0 | 181 } |
182 | |
183 //----- (00488E23) -------------------------------------------------------- | |
184 double OutdoorLocation::GetFogDensityByTime() | |
185 { | |
186 int v1; // eax@3 | |
187 double v2; // st7@3 | |
188 | |
189 if ( pParty->uCurrentHour < 5 ) | |
190 goto LABEL_9; | |
191 if ( pParty->uCurrentHour >= 6 ) | |
192 { | |
193 if ( pParty->uCurrentHour < 0x14 ) | |
194 { | |
750 | 195 pWeather->bNight = 0; |
0 | 196 v2 = 0.0; |
197 return v2 * 0.016666668; | |
198 } | |
199 if ( pParty->uCurrentHour < 0x15 ) | |
200 { | |
201 v1 = 0; | |
202 v2 = (double)(pParty->uCurrentHour - 20) * 60.0 + (double)(signed int)pParty->uCurrentMinute; | |
203 goto LABEL_4; | |
204 } | |
205 LABEL_9: | |
206 v2 = 60.0; | |
750 | 207 pWeather->bNight = 1; |
0 | 208 return v2 * 0.016666668; |
209 } | |
210 v1 = 0; | |
211 v2 = 60.0 - (double)(60 * pParty->uCurrentHour + pParty->uCurrentMinute - 300); | |
212 LABEL_4: | |
750 | 213 pWeather->bNight = v1; |
0 | 214 return v2 * 0.016666668; |
215 } | |
216 | |
217 //----- (00488EB1) -------------------------------------------------------- | |
218 int OutdoorLocation::GetSomeOtherTileInfo(int sX, int sY) | |
219 { | |
67 | 220 //OutdoorLocation *v3; // esi@1 |
0 | 221 unsigned int v4; // edi@1 |
222 unsigned int v5; // eax@1 | |
223 int result; // eax@5 | |
224 | |
67 | 225 /* v3 = this; |
0 | 226 v4 = WorldPosToGridCellZ(sY); |
227 v5 = WorldPosToGridCellX(sX); | |
228 if ( (v5 & 0x80000000u) != 0 || (signed int)v5 > 127 || (v4 & 0x80000000u) != 0 || (signed int)v4 > 127 ) | |
229 result = 0; | |
230 else | |
231 result = ActuallyGetSomeOtherTileInfo(v5, v4); | |
67 | 232 return result;*/ |
233 v4 = WorldPosToGridCellZ(sY); | |
234 v5 = WorldPosToGridCellX(sX); | |
235 if ( v5 < 0 || v5 > 127 || v4 < 0 || v4 > 127 ) | |
236 return 0; | |
237 return ActuallyGetSomeOtherTileInfo(v5, v4); | |
0 | 238 } |
239 // 47F44B: using guessed type int __stdcall WorldPosToGridCellX(int); | |
240 // 47F458: using guessed type int __stdcall WorldPosToGridCellZ(int); | |
241 | |
242 //----- (00488EEF) -------------------------------------------------------- | |
2003 | 243 unsigned int OutdoorLocation::GetTileTexture(signed int sX, signed int sY) |
0 | 244 { |
67 | 245 //OutdoorLocation *v3; // esi@1 |
2003 | 246 signed int v4; // edi@1 |
247 signed int v5; // eax@1 | |
67 | 248 // unsigned int result; // eax@5 |
0 | 249 |
67 | 250 /*v3 = this; |
0 | 251 v4 = WorldPosToGridCellZ(sZ); |
252 v5 = WorldPosToGridCellX(sX); | |
67 | 253 if ( v5< 0 || (signed int)v5 > 127 || v4 < 0 || (signed int)v4 > 127 )//if ( (v5 & 0x80000000u) != 0 || (signed int)v5 > 127 || (v4 & 0x80000000u) != 0 || (signed int)v4 > 127 ) |
0 | 254 result = -1; |
255 else | |
256 result = DoGetTileTexture(v5, v4); | |
67 | 257 return result;*/ |
258 v4 = WorldPosToGridCellZ(sY); | |
259 v5 = WorldPosToGridCellX(sX); | |
260 if ( v5 < 0 || v5 > 127 || v4 < 0 || v4 > 127 ) | |
261 return -1; | |
262 return DoGetTileTexture(v5, v4); | |
0 | 263 } |
264 // 47F44B: using guessed type int __stdcall WorldPosToGridCellX(int); | |
265 // 47F458: using guessed type int __stdcall WorldPosToGridCellZ(int); | |
266 | |
267 //----- (00488F2E) -------------------------------------------------------- | |
268 int OutdoorLocation::GetHeightOnTerrain(int sX, int sZ) | |
49 | 269 /* Функция предоставляет возможность перемещать камеру таким образом, чтобы она имитировала ходьбу по ландшафту. |
270 То есть нам надо менять высоту камеры (координату Y) в зависимости от того, в каком месте ландшафта мы находимся. | |
271 Для этого мы сначала должны определить по координатам X и Z камеры квадрат ландшафта в котором мы находимся. | |
272 Все это делает функция Terrain::getHeight; в своих параметрах она получает координаты X и Z камеры и возвращает высоту, | |
273 на которой должна быть расположена камера, чтобы она оказалась над ландшафтом.*/ | |
0 | 274 { |
275 int result; // eax@5 | |
276 | |
277 if ( sX < 0 || sX > 127 || sZ < 0 || sZ > 127 ) | |
278 result = 0; | |
279 else | |
280 result = DoGetHeightOnTerrain(sX, sZ); | |
281 return result; | |
282 } | |
283 | |
284 //----- (00488F5C) -------------------------------------------------------- | |
285 bool OutdoorLocation::Initialize(const char *pFilename, int File, size_t uRespawnInterval, int thisa) | |
286 { | |
287 OutdoorLocation *v5; // esi@1 | |
288 bool result; // eax@2 | |
289 | |
290 v5 = this; | |
291 if ( pFilename ) | |
292 { | |
293 Release(); | |
294 pBitmaps_LOD->ReleaseAll2(); | |
295 pSprites_LOD->DeleteSomeOtherSprites(); | |
296 pSpriteFrameTable->ResetSomeSpriteFlags(); | |
297 pIcons_LOD->ReleaseAll2(); | |
298 sub_46080D(); | |
299 TryLoadLevelFromLOD(); | |
119 | 300 if ( !Load(pFilename, (ODMFace *)File, uRespawnInterval, thisa) ) |
0 | 301 { |
302 MessageBoxA(0, "Error!", "Couldn't Load Map!", 0); | |
303 CreateDebugLocation(); | |
304 } | |
810 | 305 ::day_attrib = v5->loc_time.day_attrib; |
306 ::day_fogrange_1 = v5->loc_time.day_fogrange_1; | |
307 ::day_fogrange_2 = v5->loc_time.day_fogrange_2; | |
0 | 308 if ( Is_out15odm_underwater() ) |
309 SetUnderwaterFog(); | |
630 | 310 _6BE134_odm_main_tile_group = v5->pTileTypes[0].tileset; |
0 | 311 result = 1; |
312 } | |
313 else | |
314 { | |
315 result = 0; | |
316 } | |
317 return result; | |
318 } | |
319 | |
783 | 320 |
321 | |
322 char foot_travel_destinations[15][4] = | |
323 { | |
324 // north south east west from | |
325 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_EMERALD_ISLE | |
326 {MAP_PIERPONT, MAP_BARROW_DOWNS, MAP_PIERPONT, MAP_STEADWICK}, // MAP_HARMONDALE | |
327 {MAP_DEYJA, MAP_BRAKADA_DESERT, MAP_HARMONDALE, MAP_TATALIA}, // MAP_STEADWICK | |
328 {MAP_AVLEE, MAP_HARMONDALE, MAP_INVALID, MAP_DEYJA}, // MAP_PIERPONT | |
329 {MAP_PIERPONT, MAP_STEADWICK, MAP_PIERPONT, MAP_STEADWICK}, // MAP_DEYJA | |
330 {MAP_STEADWICK, MAP_INVALID, MAP_BARROW_DOWNS, MAP_INVALID}, // MAP_BRAKADA_DESERT | |
331 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_CELESTIA | |
332 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_THE_PIT | |
333 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_EVENMORN_ISLE | |
334 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_MOUNT_NIGHON | |
335 {MAP_HARMONDALE, MAP_BRAKADA_DESERT, MAP_HARMONDALE, MAP_BRAKADA_DESERT}, // MAP_BARROW_DOWNS | |
336 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_LAND_OF_GIANTS | |
337 {MAP_INVALID, MAP_INVALID, MAP_STEADWICK, MAP_INVALID}, // MAP_TATALIA | |
338 {MAP_INVALID, MAP_PIERPONT, MAP_PIERPONT, MAP_INVALID}, // MAP_AVLEE | |
339 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID} // MAP_SHOALS | |
340 }; | |
341 unsigned char foot_travel_times[15][4] = | |
342 { | |
343 // north south east west from | |
344 {0, 0, 0, 0}, // MAP_EMERALD_ISLE | |
345 {5, 5, 7, 5}, // MAP_HARMONDALE | |
346 {5, 5, 5, 5}, // MAP_STEADWICK | |
347 {5, 5, 0, 5}, // MAP_PIERPONT | |
348 {7, 5, 5, 4}, // MAP_DEYJA | |
349 {5, 0, 5, 0}, // MAP_BRAKADA_DESERT | |
350 {0, 0, 0, 0}, // MAP_CELESTIA | |
351 {0, 0, 0, 0}, // MAP_THE_PIT | |
352 {0, 0, 0, 0}, // MAP_EVENMORN_ISLE | |
353 {0, 0, 0, 0}, // MAP_MOUNT_NIGHON | |
354 {5, 7, 7, 5}, // MAP_BARROW_DOWNS | |
355 {0, 0, 0, 0}, // MAP_LAND_OF_GIANTS | |
356 {0, 0, 5, 0}, // MAP_TATALIA | |
357 {0, 7, 5, 0}, // MAP_AVLEE | |
358 {0, 0, 0, 0}, // MAP_SHOALS | |
359 }; | |
360 | |
361 | |
362 MapStartPoint foot_travel_arrival_points[15][4] = | |
363 { | |
364 // north south east west from | |
365 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_EMERALD_ISLE | |
366 {MapStartPoint_South, MapStartPoint_North, MapStartPoint_South, MapStartPoint_East}, // MAP_HARMONDALE | |
367 {MapStartPoint_South, MapStartPoint_North, MapStartPoint_West, MapStartPoint_East}, // MAP_STEADWICK | |
368 {MapStartPoint_East, MapStartPoint_North, MapStartPoint_Party, MapStartPoint_East}, // MAP_PIERPONT | |
369 {MapStartPoint_West, MapStartPoint_North, MapStartPoint_West, MapStartPoint_North}, // MAP_DEYJA | |
370 {MapStartPoint_South, MapStartPoint_Party, MapStartPoint_West, MapStartPoint_Party}, // MAP_BRAKADA_DESERT | |
371 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_CELESTIA | |
372 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_THE_PIT | |
373 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_EVENMORN_ISLE | |
374 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_MOUNT_NIGHON | |
375 {MapStartPoint_South, MapStartPoint_East, MapStartPoint_South, MapStartPoint_East}, // MAP_BARROW_DOWNS | |
376 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_LAND_OF_GIANTS | |
377 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_West, MapStartPoint_Party}, // MAP_TATALIA | |
378 {MapStartPoint_Party, MapStartPoint_North, MapStartPoint_North, MapStartPoint_Party}, // MAP_AVLEE | |
379 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_SHOALS | |
380 }; | |
381 | |
382 | |
0 | 383 //----- (0048902E) -------------------------------------------------------- |
384 bool OutdoorLocation::GetTravelDestination(signed int sPartyX, signed int sPartyZ, char *pOut, signed int a5) | |
385 { | |
386 OutdoorLocation *v5; // esi@1 | |
387 char *v6; // eax@3 | |
388 int v7; // eax@3 | |
783 | 389 //int v8; // edx@3 |
0 | 390 signed int v9; // esi@7 |
783 | 391 //int v10; // esi@23 |
0 | 392 signed int v11; // eax@23 |
783 | 393 //int v12; // ST14_4@25 |
0 | 394 signed int v14; // [sp-4h] [bp-84h]@6 |
138 | 395 char Str[140]; // [sp+8h] [bp-78h]@3 |
783 | 396 //int a5a; // [sp+94h] [bp+14h]@3 |
0 | 397 |
1980 | 398 OutdoorLocation* Source = this; |
0 | 399 |
400 v5 = Source; | |
401 if ( a5 < 10 | |
402 || strlen(Source->pLevelFilename) != 9 | |
138 | 403 || (strcpy(Str, v5->pLevelFilename), |
404 _strlwr(Str), | |
405 v6 = strtok(Str, "out"), | |
0 | 406 v6[2] = 0, |
407 v7 = atoi(v6), | |
783 | 408 //v8 = v7, |
409 //a5a = v7, | |
0 | 410 v7 < 1) |
411 || v7 > 15 ) | |
412 return 0; | |
413 if ( sPartyX < -22528 ) | |
414 { | |
415 v14 = 4; | |
416 LABEL_7: | |
417 v9 = v14; | |
418 goto LABEL_14; | |
419 } | |
420 if ( sPartyX > 22528 ) | |
421 { | |
422 v14 = 3; | |
423 goto LABEL_7; | |
424 } | |
425 if ( sPartyZ < -22528 ) | |
426 { | |
427 v14 = 2; | |
428 goto LABEL_7; | |
429 } | |
430 if ( sPartyZ <= 22528 ) | |
431 return 0; | |
432 v9 = 1; | |
433 LABEL_14: | |
434 if ( v7 == 14 ) | |
435 { | |
783 | 436 if ( v9 == 4 ) // to & from Shoals |
0 | 437 { |
1620
61ea994a1812
sub_43EE77_ProbablyIfUnderwaterSuitIsEquipped to Player::HasUnderwaterSuitEquipped, sub_43EDB9_get_some_race_sex_relation_2 to ShouldLoadTexturesForRaceAndGender, Player_has_item to Player::HasItem
Grumpy7
parents:
1583
diff
changeset
|
438 if ( pPlayers[1]->HasUnderwaterSuitEquipped() && |
61ea994a1812
sub_43EE77_ProbablyIfUnderwaterSuitIsEquipped to Player::HasUnderwaterSuitEquipped, sub_43EDB9_get_some_race_sex_relation_2 to ShouldLoadTexturesForRaceAndGender, Player_has_item to Player::HasItem
Grumpy7
parents:
1583
diff
changeset
|
439 pPlayers[2]->HasUnderwaterSuitEquipped() && |
61ea994a1812
sub_43EE77_ProbablyIfUnderwaterSuitIsEquipped to Player::HasUnderwaterSuitEquipped, sub_43EDB9_get_some_race_sex_relation_2 to ShouldLoadTexturesForRaceAndGender, Player_has_item to Player::HasItem
Grumpy7
parents:
1583
diff
changeset
|
440 pPlayers[3]->HasUnderwaterSuitEquipped() && |
61ea994a1812
sub_43EE77_ProbablyIfUnderwaterSuitIsEquipped to Player::HasUnderwaterSuitEquipped, sub_43EDB9_get_some_race_sex_relation_2 to ShouldLoadTexturesForRaceAndGender, Player_has_item to Player::HasItem
Grumpy7
parents:
1583
diff
changeset
|
441 pPlayers[4]->HasUnderwaterSuitEquipped()) |
0 | 442 { |
443 uDefaultTravelTime_ByFoot = 1; | |
444 strcpy(pOut, "out15.odm"); | |
783 | 445 uLevel_StartingPointType = MapStartPoint_East; |
0 | 446 LABEL_18: |
447 LOWORD(pParty->uFlags) &= 0xFD7Bu; | |
448 return 1; | |
449 } | |
783 | 450 //v8 = v7; |
0 | 451 } |
452 } | |
453 else | |
454 { | |
455 if ( v7 == 15 && v9 == 3 ) | |
456 { | |
457 uDefaultTravelTime_ByFoot = 1; | |
458 strcpy(pOut, "out14.odm"); | |
783 | 459 uLevel_StartingPointType = MapStartPoint_West; |
0 | 460 goto LABEL_18; |
461 } | |
462 } | |
783 | 463 //v10 = v9 + 4 * v7; |
464 //v11 = (unsigned __int8)aTiletableLoadU[v10 + 39]; | |
465 v11 = foot_travel_destinations[v7 - 1][v9 - 1]; | |
466 if (v11 == MAP_INVALID) | |
467 return false; | |
468 | |
469 assert(v11 <= MAP_SHOALS); | |
470 | |
471 uDefaultTravelTime_ByFoot = foot_travel_times[v7 - 1][v9 - 1]; | |
472 uLevel_StartingPointType = foot_travel_arrival_points[v7 - 1][v9 - 1]; | |
473 sprintf(pOut, "out%02d.odm", v11); | |
474 return 1; | |
475 //} | |
476 //return 0; | |
0 | 477 } |
478 // 6BD07C: using guessed type int uDefaultTravelTime_ByFoot; | |
479 // 6BE35C: using guessed type int uLevel_StartingPointType; | |
480 | |
481 //----- (0048917E) -------------------------------------------------------- | |
482 void OutdoorLocation::MessWithLUN() | |
483 { | |
484 OutdoorLocation *v1; // esi@1 | |
485 unsigned int *v2; // ebp@1 | |
486 unsigned int v3; // eax@1 | |
487 unsigned __int16 v4; // ax@1 | |
488 signed int v5; // ebx@1 | |
489 | |
490 v1 = this; | |
491 v2 = this->pSpriteIDs_LUN; | |
492 this->pSpriteIDs_LUN[0] = -1; | |
493 this->pSpriteIDs_LUN[2] = pSpriteFrameTable->FastFindSprite("LUN1-4"); | |
494 v1->pSpriteIDs_LUN[4] = pSpriteFrameTable->FastFindSprite("LUN1-2"); | |
495 v1->pSpriteIDs_LUN[6] = pSpriteFrameTable->FastFindSprite("LUN3-4"); | |
496 v1->uSpriteID_LUNFULL = pSpriteFrameTable->FastFindSprite("LUNFULL"); | |
497 v1->uSpriteID_LUN3_4_cp = pSpriteFrameTable->FastFindSprite("LUN3-4"); | |
498 v1->uSpriteID_LUN1_2_cp = pSpriteFrameTable->FastFindSprite("LUN1-2"); | |
499 v3 = pSpriteFrameTable->FastFindSprite("LUN1-4"); | |
500 v1->field_D60 = -1; | |
501 v1->uSpriteID_LUN1_4_cp = v3; | |
502 v1->field_CF0 = 4; | |
503 v1->field_CF8 = 4; | |
504 v1->field_D00 = 4; | |
505 LOWORD(v3) = *(short *)v2; | |
506 v1->pSpriteIDs_LUN[1] = 0; | |
507 v1->pSpriteIDs_LUN[3] = 0; | |
508 v1->pSpriteIDs_LUN[5] = 0; | |
509 v1->pSpriteIDs_LUN[7] = 0; | |
510 v1->field_CE8 = 0; | |
511 LOWORD(v1->field_D3C) = v3; | |
512 v1->field_D40 = 0; | |
513 v1->field_D44 = 0; | |
514 v1->field_D48 = 0; | |
515 v1->field_D4C = 131072; | |
516 v1->field_D5C = 0; | |
517 v1->field_D64 = 0; | |
518 v4 = pSpriteFrameTable->FastFindSprite("LUN-SUN"); | |
519 v1->field_D28 = -1; | |
520 v1->field_D08 = 0; | |
521 v1->field_D0C = 0; | |
522 v1->field_D10 = 0; | |
523 v1->field_D24 = 0; | |
524 v1->field_D2C = 0; | |
525 v1->uSpriteID_LUN_SUN = v4; | |
526 v1->field_D14 = -131072; | |
527 v5 = 8; | |
528 do | |
529 { | |
530 pSpriteFrameTable->InitializeSprite(*v2); | |
531 v2 += 2; | |
532 --v5; | |
533 } | |
534 while ( v5 ); | |
535 pSpriteFrameTable->InitializeSprite(v1->uSpriteID_LUN_SUN); | |
536 } | |
537 | |
538 //----- (004892E6) -------------------------------------------------------- | |
762 | 539 void OutdoorLocation::UpdateSunlightVectors() |
0 | 540 { |
762 | 541 //unsigned int result; // eax@1 |
0 | 542 OutdoorLocation *v2; // esi@1 |
543 unsigned int v3; // edi@3 | |
638 | 544 //int v4; // ebx@3 |
0 | 545 int v5; // eax@3 |
638 | 546 //int v6; // eax@3 |
547 //int v7; // ecx@3 | |
0 | 548 double v8; // st7@4 |
549 | |
550 v2 = this; | |
638 | 551 if ( pParty->uCurrentHour >= 5 && pParty->uCurrentHour < 21 ) |
0 | 552 { |
553 v3 = pParty->uCurrentMinute + 60 * (pParty->uCurrentHour - 5); | |
638 | 554 //v4 = (signed int)(v3 * stru_5C6E00->uIntegerPi) / 960; |
323 | 555 v5 = stru_5C6E00->Cos((signed int)(v3 * stru_5C6E00->uIntegerPi) / 960); |
638 | 556 v2->inv_sunlight_y = 0; |
557 v2->inv_sunlight_x = v5; | |
558 //v6 = stru_5C6E00->Sin(v4); | |
559 //v7 = v2->field_D18; | |
560 v2->inv_sunlight_z = stru_5C6E00->Sin((signed int)(v3 * stru_5C6E00->uIntegerPi) / 960); | |
561 v2->vSunlight.x = -v2->inv_sunlight_x; | |
562 v2->vSunlight.y = -v2->inv_sunlight_y; | |
563 v2->vSunlight.z = -v2->inv_sunlight_z; | |
0 | 564 if ( (signed int)v3 >= 480 ) |
565 v8 = (double)(signed int)(960 - v3); | |
566 else | |
567 v8 = (double)(signed int)v3; | |
638 | 568 v2->max_terrain_dimming_level = (signed __int64)(20.0 - v8 / 480.0 * 20.0); |
0 | 569 v2->uLastSunlightUpdateMinute = pParty->uCurrentMinute; |
570 } | |
571 } | |
572 | |
573 //----- (004893C1) -------------------------------------------------------- | |
574 void OutdoorLocation::UpdateFog() | |
575 { | |
576 fFogDensity = GetFogDensityByTime(); | |
577 } | |
578 | |
579 //----- (004893CF) -------------------------------------------------------- | |
580 int OutdoorLocation::GetNumFoodRequiredToRestInCurrentPos(int x, signed int y, int z) | |
581 { | |
582 OutdoorLocation *v4; // ebx@1 | |
583 signed int v5; // edi@4 | |
584 int v6; // eax@4 | |
585 int v7; // eax@4 | |
586 int v8; // eax@4 | |
587 int v9; // eax@5 | |
588 int v10; // eax@6 | |
589 int v11; // eax@7 | |
590 int v12; // eax@8 | |
591 int v15; // [sp+8h] [bp-8h]@2 | |
592 int v16; // [sp+Ch] [bp-4h]@2 | |
593 | |
594 v4 = this; | |
595 if ( pParty->uFlags & 8 | |
596 || (v15 = 0, | |
597 v16 = 0, | |
723 | 598 ODM_GetFloorLevel(x, y, z, pParty->uDefaultPartyHeight, &v15, &v16, 0), |
0 | 599 v16) |
600 || v15 ) | |
601 return 2; | |
602 v5 = WorldPosToGridCellX(pParty->vPosition.x); | |
603 v6 = WorldPosToGridCellZ(pParty->vPosition.y); | |
604 v7 = _47ED83(v5, v6 - 1); | |
764 | 605 v8 = pTileTable->pTiles[GetTileIdByTileMapId(v7)].tileset; |
0 | 606 if ( v8 ) |
607 { | |
608 v9 = v8 - 1; | |
609 if ( !v9 ) | |
610 return 3; | |
611 v10 = v9 - 1; | |
612 if ( !v10 ) | |
613 return 5; | |
614 v11 = v10 - 1; | |
615 if ( !v11 || (v12 = v11 - 3) == 0 ) | |
616 return 4; | |
617 if ( v12 == 1 ) | |
618 return 3; | |
619 return 2; | |
620 } | |
621 return 1; | |
622 } | |
767 | 623 |
0 | 624 |
625 //----- (00489487) -------------------------------------------------------- | |
767 | 626 void OutdoorLocation::SetFog() |
0 | 627 { |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
628 strcpy(pOutdoor->pLevelFilename, pCurrentMapName); |
0 | 629 |
1980 | 630 MAP_TYPE map_id = pMapStats->GetMapInfo(pCurrentMapName); |
767 | 631 if (map_id == MAP_INVALID || map_id == MAP_CELESTIA || map_id == MAP_THE_PIT || map_id > MAP_SHOALS) |
632 return; | |
633 | |
634 uint chance = rand() % 100; | |
635 | |
636 if (chance < fog_probability_table[map_id - 1].small_fog_chance) | |
0 | 637 { |
767 | 638 ::day_fogrange_1 = 4096; |
639 ::day_fogrange_2 = 8192; | |
640 ::day_attrib |= DAY_ATTRIB_FOG; | |
0 | 641 } |
767 | 642 else if (chance < fog_probability_table[map_id - 1].small_fog_chance + |
643 fog_probability_table[map_id - 1].average_fog_chance) | |
0 | 644 { |
767 | 645 ::day_fogrange_2 = 4096; |
646 ::day_fogrange_1 = 0; | |
647 ::day_attrib |= DAY_ATTRIB_FOG; | |
0 | 648 } |
767 | 649 else if (fog_probability_table[map_id - 1].dense_fog_chance && |
650 chance < fog_probability_table[map_id - 1].small_fog_chance + | |
651 fog_probability_table[map_id - 1].average_fog_chance + | |
652 fog_probability_table[map_id - 1].dense_fog_chance) | |
0 | 653 { |
767 | 654 ::day_fogrange_2 = 2048; |
655 ::day_fogrange_1 = 0; | |
656 ::day_attrib |= DAY_ATTRIB_FOG; | |
0 | 657 } |
767 | 658 else |
659 ::day_attrib &= ~DAY_ATTRIB_FOG; | |
660 | |
0 | 661 if ( Is_out15odm_underwater() ) |
662 SetUnderwaterFog(); | |
810 | 663 pOutdoor->loc_time.day_fogrange_1 = ::day_fogrange_1; |
664 pOutdoor->loc_time.day_fogrange_2 = ::day_fogrange_2; | |
665 pOutdoor->loc_time.day_attrib = ::day_attrib; | |
0 | 666 } |
667 | |
668 //----- (00482170) -------------------------------------------------------- | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
669 bool ODMFace::IsBackfaceCulled(ODMFace *a1, RenderVertexSoft *a2, struct Polygon *a3) |
0 | 670 { |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
671 struct Polygon *v3; // edi@1 |
0 | 672 RenderVertexSoft *v4; // esi@1 |
673 unsigned int v5; // edx@1 | |
674 RenderVertexSoft *v6; // ecx@2 | |
675 double v7; // st7@5 | |
676 double v8; // st6@5 | |
677 double v9; // st5@5 | |
678 double v10; // st6@9 | |
679 double v11; // st5@9 | |
680 double v12; // st4@9 | |
681 bool result; // eax@16 | |
682 double v14; // ST2C_8@17 | |
683 double v15; // ST20_8@17 | |
684 double v16; // ST0C_8@17 | |
685 double v17; // ST0C_8@17 | |
686 float v18; // [sp+8h] [bp-38h]@5 | |
687 float v19; // [sp+10h] [bp-30h]@5 | |
688 float v20; // [sp+14h] [bp-2Ch]@5 | |
689 float v21; // [sp+18h] [bp-28h]@5 | |
690 float v22; // [sp+1Ch] [bp-24h]@5 | |
691 float v23; // [sp+24h] [bp-1Ch]@5 | |
692 float v24; // [sp+28h] [bp-18h]@5 | |
693 float v25; // [sp+30h] [bp-10h]@5 | |
694 float v26; // [sp+34h] [bp-Ch]@5 | |
695 float v27; // [sp+38h] [bp-8h]@5 | |
696 float v28; // [sp+3Ch] [bp-4h]@5 | |
697 float a3a; // [sp+48h] [bp+8h]@5 | |
698 float a3b; // [sp+48h] [bp+8h]@17 | |
699 float a3c; // [sp+48h] [bp+8h]@17 | |
700 float a3d; // [sp+48h] [bp+8h]@17 | |
701 float a3e; // [sp+48h] [bp+8h]@17 | |
702 | |
703 v3 = a3; | |
704 v4 = a2; | |
705 v5 = a3->uNumVertices; | |
706 if ( (signed int)v5 < 3 ) | |
707 goto LABEL_20; | |
708 v6 = &v4[v5 - 1]; | |
709 if ( v4->vWorldPosition.z == v4[1].vWorldPosition.z && v4[1].vWorldPosition.z == v6->vWorldPosition.z ) | |
710 *(int *)&a3->flags |= 0x10u; | |
711 v19 = v4[1].vWorldViewPosition.x - v4->vWorldViewPosition.x; | |
712 v18 = v4[1].vWorldViewPosition.y - v4->vWorldViewPosition.y; | |
713 v20 = v4[1].vWorldViewPosition.z - v4->vWorldViewPosition.z; | |
714 v21 = v6->vWorldViewPosition.x - v4->vWorldViewPosition.x; | |
715 v22 = v6->vWorldViewPosition.y - v4->vWorldViewPosition.y; | |
716 v23 = v6->vWorldViewPosition.z - v4->vWorldViewPosition.z; | |
717 v28 = v4[1].vWorldPosition.x - v4->vWorldPosition.x; | |
718 v27 = v4[1].vWorldPosition.y - v4->vWorldPosition.y; | |
719 a3a = v4[1].vWorldPosition.z - v4->vWorldPosition.z; | |
720 v7 = v6->vWorldPosition.x - v4->vWorldPosition.x; | |
721 v8 = v6->vWorldPosition.y - v4->vWorldPosition.y; | |
722 v9 = v6->vWorldPosition.z - v4->vWorldPosition.z; | |
723 v26 = v27 * v9 - v8 * a3a; | |
724 v24 = v7 * a3a - v9 * v28; | |
725 v25 = v8 * v28 - v7 * v27; | |
726 if ( v26 == 0.0 && v24 == 0.0 && v25 == 0.0 ) | |
727 { | |
728 while ( 1 ) | |
729 { | |
730 --v5; | |
731 if ( (signed int)v5 < 2 ) | |
732 break; | |
733 v10 = v6->vWorldPosition.x - v4->vWorldPosition.x; | |
734 v11 = v6->vWorldPosition.y - v4->vWorldPosition.y; | |
735 v12 = v6->vWorldPosition.z - v4->vWorldPosition.z; | |
736 v26 = v27 * v12 - v11 * a3a; | |
737 v24 = v10 * a3a - v12 * v28; | |
738 v25 = v11 * v28 - v10 * v27; | |
739 if ( v26 != 0.0 ) | |
740 break; | |
741 if ( v24 != 0.0 || v25 != 0.0 ) | |
742 break; | |
743 --v6; | |
744 } | |
745 v21 = v6->vWorldViewPosition.x - v4->vWorldViewPosition.x; | |
746 v22 = v6->vWorldViewPosition.y - v4->vWorldViewPosition.y; | |
747 v23 = v6->vWorldViewPosition.z - v4->vWorldViewPosition.z; | |
748 } | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
749 if ( ((double)pGame->pIndoorCameraD3D->vPartyPos.x - v4->vWorldPosition.x) * v26 |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
750 + ((double)pGame->pIndoorCameraD3D->vPartyPos.z - v4->vWorldPosition.z) * v25 |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
751 + ((double)pGame->pIndoorCameraD3D->vPartyPos.y - v4->vWorldPosition.y) * v24 > 0.0 ) |
0 | 752 { |
753 a3b = v23 * v18 - v22 * v20; | |
754 v14 = a3b + 6.7553994e15; | |
755 v3->v_18.x = LODWORD(v14); | |
756 a3c = v21 * v20 - v23 * v19; | |
757 v15 = a3c + 6.7553994e15; | |
758 v3->v_18.y = LODWORD(v15); | |
759 a3d = v22 * v19 - v21 * v18; | |
760 v16 = a3d + 6.7553994e15; | |
761 v3->v_18.z = LODWORD(v16); | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1391
diff
changeset
|
762 v3->_normalize_v_18(); |
0 | 763 a3e = -((double)v3->v_18.x * v4->vWorldViewPosition.x) |
764 - (double)v3->v_18.y * v4->vWorldViewPosition.y | |
765 - (double)v3->v_18.z * v4->vWorldViewPosition.z; | |
766 v17 = a3e + 6.7553994e15; | |
767 v3->field_24 = LODWORD(v17); | |
768 result = 1; | |
769 } | |
770 else | |
771 { | |
772 LABEL_20: | |
773 result = 0; | |
774 } | |
775 return result; | |
776 } | |
777 | |
778 | |
779 //----- (0047C7A9) -------------------------------------------------------- | |
780 void OutdoorLocationTerrain::_47C7A9() | |
781 { | |
782 this->field_10 = 0; | |
783 this->field_12 = 0; | |
784 this->field_16 = 0; | |
785 this->field_14 = 0; | |
786 this->field_1C = 0; | |
787 this->field_18 = 0; | |
788 } | |
789 | |
790 //----- (0047C7C2) -------------------------------------------------------- | |
49 | 791 void OutdoorLocationTerrain::Release()//очистить локацию |
0 | 792 { |
793 if (pHeightmap) | |
794 { | |
1583 | 795 free(this->pHeightmap); |
0 | 796 pHeightmap = nullptr; |
797 } | |
798 if (pTilemap) | |
799 { | |
1583 | 800 free(pTilemap); |
0 | 801 pTilemap = nullptr; |
802 } | |
803 if (pAttributemap) | |
804 { | |
1583 | 805 free(pAttributemap); |
0 | 806 pAttributemap = nullptr; |
807 } | |
760 | 808 if (pDmap) |
0 | 809 { |
1583 | 810 free(pDmap); |
760 | 811 pDmap = nullptr; |
0 | 812 } |
813 | |
814 _47C7A9(); | |
815 } | |
816 | |
817 //----- (0047C80A) -------------------------------------------------------- | |
760 | 818 void OutdoorLocationTerrain::FillDMap( int X, int Y, int W, int Z ) |
819 { | |
49 | 820 OutdoorLocationTerrain *pOutLocTerrain; // ebx@1 |
0 | 821 double v6; // st7@1 |
822 double v7; // st7@2 | |
823 double v8; // st7@2 | |
824 int result; // eax@3 | |
825 int v10; // eax@4 | |
826 int v11; // ecx@5 | |
827 int v12; // ecx@6 | |
828 int v13; // edi@7 | |
829 int v14; // edx@9 | |
830 int v15; // eax@15 | |
49 | 831 unsigned __int8 *pMapHeight; // ebx@15 |
0 | 832 int v17; // eax@15 |
833 int v18; // ecx@15 | |
834 int v19; // esi@15 | |
835 int v20; // edi@15 | |
836 int v21; // edx@15 | |
837 int v22; // ecx@15 | |
838 int v23; // ebx@15 | |
839 int v24; // ecx@15 | |
840 int v25; // ST28_4@15 | |
841 double v26; // st7@15 | |
842 double v27; // st6@15 | |
843 double v28; // st5@15 | |
844 double v29; // st7@15 | |
845 double v30; // st7@16 | |
846 double v31; // st7@17 | |
847 int v32; // eax@21 | |
848 double v33; // st7@21 | |
849 double v34; // st6@21 | |
850 double v35; // st5@21 | |
851 double v36; // st7@21 | |
852 double v37; // st7@22 | |
853 double v38; // st7@23 | |
854 int v39; // [sp+14h] [bp-34h]@8 | |
855 int v40; // [sp+18h] [bp-30h]@15 | |
856 int v41; // [sp+1Ch] [bp-2Ch]@15 | |
857 int v42; // [sp+20h] [bp-28h]@15 | |
49 | 858 OutdoorLocationTerrain *pOutLocTerrain2; // [sp+24h] [bp-24h]@1 |
0 | 859 int v44; // [sp+28h] [bp-20h]@21 |
860 float v45; // [sp+2Ch] [bp-1Ch]@1 | |
861 float v46; // [sp+30h] [bp-18h]@1 | |
862 float v47; // [sp+34h] [bp-14h]@1 | |
863 int v48; // [sp+38h] [bp-10h]@7 | |
864 int v49; // [sp+3Ch] [bp-Ch]@10 | |
865 int v50; // [sp+40h] [bp-8h]@9 | |
866 float v51; // [sp+44h] [bp-4h]@15 | |
867 float v52; // [sp+44h] [bp-4h]@21 | |
868 float v53; // [sp+50h] [bp+8h]@15 | |
869 float v54; // [sp+50h] [bp+8h]@21 | |
870 int v55; // [sp+54h] [bp+Ch]@15 | |
871 float v56; // [sp+54h] [bp+Ch]@15 | |
872 float v57; // [sp+54h] [bp+Ch]@21 | |
873 | |
874 v46 = -64.0; | |
875 v47 = -64.0; | |
49 | 876 pOutLocTerrain = this; |
0 | 877 v45 = 64.0; |
49 | 878 pOutLocTerrain2 = this; |
0 | 879 v6 = sqrt(12288.0); |
880 if ( v6 != 0.0 ) | |
881 { | |
882 v7 = 1.0 / v6; | |
883 v45 = 64.0 * v7; | |
884 v8 = v7 * -64.0; | |
885 v46 = v8; | |
886 v47 = v8; | |
887 } | |
760 | 888 result = Y; |
889 if ( Y > Z ) | |
0 | 890 { |
760 | 891 v10 = Z ^ Y; |
892 Z ^= Y ^ Z; | |
893 result = Z ^ v10; | |
0 | 894 } |
760 | 895 v11 = X; |
896 if ( X > W ) | |
0 | 897 { |
760 | 898 v12 = W ^ X; |
899 W ^= X ^ W; | |
900 v11 = W ^ v12; | |
0 | 901 } |
902 v13 = result - 1; | |
903 v48 = result - 1; | |
760 | 904 if ( result - 1 <= Z ) |
0 | 905 { |
906 v39 = v11 - 1; | |
907 do | |
908 { | |
909 v14 = v39; | |
910 v50 = v39; | |
760 | 911 if ( v39 <= W ) |
0 | 912 { |
913 result = (v39 - 63) << 9; | |
914 v49 = (v39 - 63) << 9; | |
915 do | |
916 { | |
917 if ( v13 >= 0 && result >= -32256 && v13 <= 127 && result <= 32768 ) | |
918 { | |
49 | 919 v15 = pOutLocTerrain->field_10; |
0 | 920 v55 = v15; |
49 | 921 pMapHeight = pOutLocTerrain->pHeightmap; |
922 v17 = (int)(&pMapHeight[v13 * v15] + v14); | |
0 | 923 v18 = -v13; |
924 v19 = (64 - v13) << 9; | |
925 v20 = 32 * *(char *)v17; | |
926 v21 = 32 * *(char *)(v17 + 1); | |
927 v22 = (v18 + 63) << 9; | |
928 v41 = v22; | |
49 | 929 v23 = (int)(&pMapHeight[v55 * (v48 + 1)] + v50); |
0 | 930 v24 = v22 - v19; |
931 v40 = 32 * *(char *)v23; | |
932 v42 = 32 * *(char *)(v23 + 1); | |
760 | 933 |
934 | |
0 | 935 v25 = v49 - 512 - v49; |
936 v26 = (double)-((v20 - v21) * v24); | |
937 v51 = v26; | |
938 v27 = (double)-(v25 * (v42 - v21)); | |
939 v53 = v27; | |
940 v28 = (double)(v25 * v24); | |
941 v56 = v28; | |
942 v29 = sqrt(v28 * v28 + v27 * v27 + v26 * v26); | |
943 if ( v29 != 0.0 ) | |
944 { | |
945 v30 = 1.0 / v29; | |
946 v51 = v51 * v30; | |
947 v53 = v53 * v30; | |
948 v56 = v30 * v56; | |
949 } | |
950 v31 = (v56 * v47 + v53 * v46 + v51 * v45) * 31.0; | |
951 if ( v31 < 0.0 ) | |
952 v31 = 0.0; | |
953 if ( v31 > 31.0 ) | |
954 v31 = 31.0; | |
49 | 955 v44 = 2 * (v50 + v48 * pOutLocTerrain2->field_10); |
956 pOutLocTerrain = pOutLocTerrain2; | |
760 | 957 *((char *)pOutLocTerrain2->pDmap + v44 + 1) = (signed __int64)v31; |
958 | |
0 | 959 v32 = v49 - (v49 - 512); |
960 v33 = (double)-((v42 - v40) * (v19 - v41)); | |
961 v52 = v33; | |
962 v34 = (double)-(v32 * (v20 - v40)); | |
963 v54 = v34; | |
964 v35 = (double)(v32 * (v19 - v41)); | |
965 v57 = v35; | |
966 v36 = sqrt(v35 * v35 + v34 * v34 + v33 * v33); | |
967 if ( v36 != 0.0 ) | |
968 { | |
969 v37 = 1.0 / v36; | |
970 v52 = v52 * v37; | |
971 v54 = v54 * v37; | |
972 v57 = v37 * v57; | |
973 } | |
974 v38 = (v57 * v47 + v54 * v46 + v52 * v45) * 31.0; | |
975 if ( v38 < 0.0 ) | |
976 v38 = 0.0; | |
977 if ( v38 > 31.0 ) | |
978 v38 = 31.0; | |
979 v13 = v48; | |
760 | 980 *((char *)pOutLocTerrain2->pDmap + v44) = (signed __int64)v38; |
0 | 981 v14 = v50; |
982 result = v49; | |
983 } | |
984 ++v14; | |
985 result += 512; | |
986 v50 = v14; | |
987 v49 = result; | |
988 } | |
760 | 989 while ( v14 <= W ); |
0 | 990 } |
991 ++v13; | |
992 v48 = v13; | |
993 } | |
760 | 994 while ( v13 <= Z ); |
0 | 995 } |
996 } | |
997 | |
998 //----- (0047CB57) -------------------------------------------------------- | |
999 int OutdoorLocationTerrain::_47CB57(int a1, int a2, int a3) | |
1000 { | |
1001 signed int result; // eax@2 | |
1002 unsigned __int16 *v5; // edx@3 | |
1003 double v6; // st7@3 | |
1004 char v7; // bl@3 | |
1005 int v8; // eax@3 | |
1006 int v9; // eax@4 | |
1007 int v10; // eax@5 | |
1008 double v11; // st6@7 | |
1009 signed int v12; // edi@7 | |
1010 int v13; // esi@9 | |
1011 char *v14; // esi@10 | |
1012 signed int v15; // ecx@10 | |
1013 char v16[256]; // [sp+4h] [bp-124h]@9 | |
1014 unsigned __int16 *v17; // [sp+104h] [bp-24h]@3 | |
1015 unsigned int v18; // [sp+108h] [bp-20h]@3 | |
1016 unsigned int v19; // [sp+10Ch] [bp-1Ch]@3 | |
1017 unsigned int v20; // [sp+110h] [bp-18h]@3 | |
1018 unsigned int v21; // [sp+114h] [bp-14h]@3 | |
1019 float v22; // [sp+118h] [bp-10h]@3 | |
1020 float v23; // [sp+11Ch] [bp-Ch]@3 | |
1021 int i; // [sp+120h] [bp-8h]@3 | |
1022 unsigned int v25; // [sp+124h] [bp-4h]@5 | |
1023 signed int a2a; // [sp+134h] [bp+Ch]@3 | |
1024 unsigned int a2b; // [sp+134h] [bp+Ch]@7 | |
1025 float a3a; // [sp+138h] [bp+10h]@7 | |
1026 int a3b; // [sp+138h] [bp+10h]@9 | |
1027 | |
1028 if ( pRenderer->pRenderD3D ) | |
1029 { | |
1030 result = 0; | |
1031 } | |
1032 else | |
1033 { | |
1034 v5 = PaletteManager::Get_Dark_or_Red_LUT(a2, 0, 1); | |
1035 v6 = 0.0; | |
1036 v7 = LOBYTE(pRenderer->uTargetBBits); | |
1037 v19 = pRenderer->uTargetRMask; | |
1038 v21 = pRenderer->uTargetGMask; | |
1039 v22 = 0.0; | |
1040 v20 = pRenderer->uTargetBMask; | |
1041 v8 = 0; | |
1042 v17 = v5; | |
1043 v23 = 0.0; | |
1044 v18 = pRenderer->uTargetBBits; | |
1045 a2a = 0; | |
1046 for ( i = 0; i < a3; ++i ) | |
1047 { | |
1048 v9 = *(char *)(v8 + a1); | |
1049 if ( v9 ) | |
1050 { | |
1051 v10 = v5[v9]; | |
1052 v6 = v6 + (double)((signed int)(v19 & v10) >> (LOBYTE(pRenderer->uTargetBBits) + LOBYTE(pRenderer->uTargetGBits))); | |
1053 ++a2a; | |
1054 v25 = v20 & v10; | |
1055 v22 = (double)((signed int)(v21 & v10) >> SLOBYTE(pRenderer->uTargetBBits)) + v22; | |
1056 v23 = (double)(signed int)(v20 & v10) + v23; | |
1057 } | |
1058 v8 = i + 1; | |
1059 } | |
1060 v11 = 1.0 / (double)a2a; | |
1061 a3a = v11; | |
1062 v25 = (signed __int64)(a3a * v22); | |
1063 i = (signed __int64)(a3a * v23); | |
1064 v12 = 0; | |
1065 a2b = pRenderer->uTargetBBits + pRenderer->uTargetGBits; | |
1066 while ( 1 ) | |
1067 { | |
1068 v13 = v17[v12]; | |
1069 a3b = abs((__int64)(signed __int64)(v11 * v6) - ((signed int)(v19 & v17[v12]) >> a2b)); | |
1070 BYTE3(a3b) = abs((signed)v25 - ((signed int)(v21 & v13) >> v7)) + a3b; | |
1071 v16[v12++] = abs((signed)i - (signed)(v20 & v13)) + BYTE3(a3b); | |
1072 if ( v12 >= 256 ) | |
1073 break; | |
1074 v7 = v18; | |
1075 } | |
1076 result = 0; | |
1077 v14 = (char *)&pPaletteManager->field_D1600[42][23][116]; | |
1078 v15 = 0; | |
1079 do | |
1080 { | |
1081 if ( (unsigned __int8)v16[v15] < (signed int)v14 ) | |
1082 { | |
1083 v14 = (char *)(unsigned __int8)v16[v15]; | |
1084 result = v15; | |
1085 } | |
1086 ++v15; | |
1087 } | |
1088 while ( v15 < 256 ); | |
1089 } | |
1090 return result; | |
1091 } | |
1092 // 47CB57: using guessed type char var_124[256]; | |
1093 | |
1094 //----- (0047CCE2) -------------------------------------------------------- | |
1095 bool OutdoorLocationTerrain::ZeroLandscape() | |
1096 { | |
1097 OutdoorLocationTerrain *v1; // esi@1 | |
1098 | |
1099 v1 = this; | |
1100 memset(this->pHeightmap, 0, 0x4000u); | |
1101 memset(v1->pTilemap, 90, 0x4000u); | |
1102 memset(v1->pAttributemap, 0, 0x4000u); | |
760 | 1103 memset(v1->pDmap, 0, 0x8000u); |
0 | 1104 v1->field_12 = 128; |
1105 v1->field_10 = 128; | |
1106 v1->field_16 = 7; | |
1107 v1->field_14 = 7; | |
1108 v1->field_1C = 127; | |
1109 v1->field_18 = 127; | |
1110 return 1; | |
1111 } | |
1112 | |
1113 //----- (0047CD44) -------------------------------------------------------- | |
1114 bool OutdoorLocationTerrain::Initialize() | |
1115 { | |
1583 | 1116 pHeightmap = (unsigned __int8 *)malloc(0x4000u);//height map |
1117 pTilemap = (unsigned __int8 *)malloc(0x4000u);//tile map | |
1118 pAttributemap = (unsigned __int8 *)malloc(0x4000u);//карта атрибутов | |
1119 pDmap = (struct DMap *)malloc(0x8000u); | |
1120 if (pHeightmap && pTilemap && pAttributemap && pDmap ) | |
760 | 1121 return true; |
0 | 1122 else |
760 | 1123 return false; |
0 | 1124 } |
1125 | |
1126 //----- (0047CDE2) -------------------------------------------------------- | |
1127 void OutdoorLocation::CreateDebugLocation() | |
1128 { | |
1129 OutdoorLocation *v1; // esi@1 | |
1130 void *v2; // eax@1 | |
1131 void *v3; // ST14_4@1 | |
1132 void *v4; // eax@1 | |
1133 void *v5; // ST14_4@1 | |
1134 void *v6; // eax@1 | |
1135 unsigned int v7; // eax@1 | |
1545 | 1136 //char v8; // zf@1 |
0 | 1137 |
1138 v1 = this; | |
1139 strcpy(this->pLevelFilename, "blank"); | |
1140 strcpy(v1->pLocationFileName, "i6.odm"); | |
1141 strcpy(v1->pLocationFileDescription, "MM6 Outdoor v1.00"); | |
1142 v1->uNumBModels = 0; | |
630 | 1143 v1->pTileTypes[0].tileset = Tileset_Grass; |
1144 v1->pTileTypes[1].tileset = Tileset_Water; | |
1145 v1->pTileTypes[2].tileset = Tileset_6; | |
1146 v1->pTileTypes[3].tileset = Tileset_RoadGrassCobble; | |
0 | 1147 v1->LoadTileGroupIds(); |
630 | 1148 v1->LoadRoadTileset(); |
1583 | 1149 free(v1->pBModels); |
1150 free(v1->pSpawnPoints); | |
0 | 1151 v1->pBModels = 0; |
1152 v1->pSpawnPoints = 0; | |
1153 v1->pTerrain.Initialize(); | |
1154 v1->pTerrain.ZeroLandscape(); | |
760 | 1155 v1->pTerrain.FillDMap(0, 0, 128, 128); |
1583 | 1156 free(v1->pCmap); |
760 | 1157 v1->pCmap = 0; |
1583 | 1158 v2 = malloc(0x8000u); |
0 | 1159 v3 = v1->pOMAP; |
760 | 1160 v1->pCmap = v2; |
1583 | 1161 free(v3); |
0 | 1162 v1->pOMAP = 0; |
1583 | 1163 v4 = malloc(0x10000u); |
0 | 1164 v1->pOMAP = (unsigned int *)v4; |
1165 memset(v4, 0, 0x10000u); | |
1166 v5 = v1->pFaceIDLIST; | |
1167 v1->numFaceIDListElems = 0; | |
1583 | 1168 free(v5); |
0 | 1169 v1->pFaceIDLIST = 0; |
1583 | 1170 v6 = malloc(2); |
0 | 1171 v1->pFaceIDLIST = (unsigned __int16 *)v6; |
1172 *(short *)v6 = 0; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1173 strcpy(v1->pSkyTextureName, pDefaultSkyTexture.data()); |
2006 | 1174 v1->sSky_TextureID = pBitmaps_LOD->LoadTexture(v1->pSkyTextureName); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1175 strcpy(v1->pGroundTileset, byte_6BE124_cfg_textures_DefaultGroundTexture.data()); |
0 | 1176 v7 = pBitmaps_LOD->LoadTexture(v1->pGroundTileset); |
2006 | 1177 v1->sMainTile_BitmapID = v7; |
1545 | 1178 |
2006 | 1179 if ( v1->sSky_TextureID == -1 ) |
1545 | 1180 Error("Invalid Sky Tex Handle"); |
1181 | |
2006 | 1182 if ( v1->sMainTile_BitmapID == -1 ) |
1545 | 1183 Error("Invalid Ground Tex Handle"); |
0 | 1184 } |
1185 | |
1186 | |
1187 | |
1188 //----- (0047CF9C) -------------------------------------------------------- | |
1189 void OutdoorLocation::Release() | |
1190 { | |
1191 //OutdoorLocation *v1; // esi@1 | |
1192 //signed int v2; // edi@1 | |
1193 //int v3; // ebx@2 | |
1194 //void *v4; // ST24_4@4 | |
1195 //char *v5; // ebx@4 | |
1196 //void **v6; // esi@4 | |
1197 | |
1198 //v1 = this; | |
1199 strcpy(pLevelFilename, "blank"); | |
1200 strcpy(pLocationFileName, "default.odm"); | |
1201 strcpy(pLocationFileDescription, "MM6 Outdoor v1.00"); | |
1202 strcpy(pSkyTextureName, "sky043"); | |
1203 strcpy(pGroundTileset, "hm005"); | |
1204 | |
1205 if (pBModels) | |
1206 { | |
1207 for (uint i = 0; i < uNumBModels; ++i) | |
1208 pBModels[i].Release(); | |
1209 | |
1583 | 1210 free(pBModels); |
0 | 1211 pBModels = nullptr; |
1212 uNumBModels = 0; | |
1213 } | |
1214 | |
1215 if (pSpawnPoints) | |
1216 { | |
1583 | 1217 free(pSpawnPoints); |
0 | 1218 pSpawnPoints = nullptr; |
1219 } | |
1220 uNumSpawnPoints = 0; | |
1221 | |
1222 pTerrain.Release(); | |
1223 | |
760 | 1224 if (pCmap) |
0 | 1225 { |
1583 | 1226 free(pCmap); |
760 | 1227 pCmap = nullptr; |
0 | 1228 } |
1229 if (pOMAP) | |
1230 { | |
1583 | 1231 free(pOMAP); |
0 | 1232 pOMAP = nullptr; |
1233 } | |
1234 if (pFaceIDLIST) | |
1235 { | |
1583 | 1236 free(pFaceIDLIST); |
0 | 1237 pFaceIDLIST = nullptr; |
1238 } | |
1239 if (pTerrainNormals) | |
1240 { | |
1583 | 1241 free(pTerrainNormals); |
0 | 1242 pTerrainNormals = nullptr; |
1243 } | |
1244 } | |
1245 | |
1246 //----- (0047D0A6) -------------------------------------------------------- | |
119 | 1247 bool OutdoorLocation::Load(const char *pFilename, ODMFace *File, size_t pNumItems, int thisa)//загрузка локации |
0 | 1248 { |
1249 //OutdoorLocation *pOutdoorLocation; // esi@1 | |
1250 /*bool result; // eax@9 | |
1251 bool v7; // ebx@9 | |
1252 size_t v8; // eax@10 | |
1253 void *v9; // eax@10 | |
1254 void *v10; // eax@10 | |
1255 void *v11; // eax@10 | |
1256 int v12; // ebx@11 | |
1257 BSPModel *v13; // eax@12 | |
1258 void *v14; // eax@12 | |
1259 BSPModel *v15; // ecx@12 | |
1260 void *v16; // eax@12 | |
1261 BSPModel *v17; // ecx@12 | |
1262 BSPModel *v18; // eax@12 | |
1263 __int16 v19; // ax@15 | |
1264 __int16 v20; // ax@16 | |
1265 int v21; // ecx@16 | |
1266 ODMFace *v22; // ebx@26 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1267 SpriteObject *pItems; // ecx@27 |
0 | 1268 unsigned int v24; // eax@28 |
1269 //unsigned __int8 v25; // zf@28 | |
1270 //unsigned __int8 v26; // sf@28 | |
1271 ODMFace *v27; // eax@28 | |
1272 const char *i; // edx@29 | |
1273 unsigned __int16 v29; // ax@33 | |
1274 unsigned __int16 v30; // ax@37 | |
1275 int v31; // ecx@37 | |
1276 int v32; // eax@38 | |
1277 void *v33; // eax@38 | |
1278 TileDesc *v34; // eax@43 | |
1279 unsigned int v35; // eax@43 | |
1280 unsigned int v36; // edi@43 | |
1281 unsigned int v37; // edi@45*/ | |
1282 //size_t v38; // eax@50 | |
1283 FILE *v39; // eax@50 | |
1284 //unsigned int v40; // edi@56 | |
1285 //void *v41; // eax@56 | |
1286 //void *v42; // ebx@56 | |
1287 //const void *v43; // ebx@59 | |
1288 //const void *v44; // ebx@59 | |
1289 //unsigned int v45; // eax@59 | |
1290 //BSPModel *v46; // eax@59 | |
1291 //unsigned int v47; // ecx@59 | |
1292 //int v48; // ebx@60 | |
1293 //BSPModel *v49; // eax@61 | |
1294 //BSPModel *v50; // eax@61 | |
1295 //BSPModel *v51; // eax@61 | |
1296 //BSPModel *v52; // eax@61 | |
1297 //BSPModel *v53; // eax@61 | |
1298 //BSPModel *v54; // ecx@61 | |
1299 //BSPModel *v55; // ecx@61 | |
1300 //BSPModel *v56; // ecx@61 | |
1301 //void *v57; // ST24_4@61 | |
1302 //BSPModel *v58; // ecx@61 | |
1303 //void *v59; // ST18_4@61 | |
1304 //BSPModel *v60; // eax@61 | |
1305 //__int16 v61; // ax@64 | |
1306 unsigned __int16 v62; // ax@65 | |
1307 //ODMFace *v63; // ecx@65 | |
1308 //unsigned __int16 v64; // ax@80 | |
1309 //const char *v65; // ecx@80 | |
1310 //int v66; // eax@81 | |
1311 //void *v67; // eax@81 | |
1312 //int v68; // ecx@81 | |
1313 //void *v69; // eax@81 | |
1314 //unsigned int v70; // eax@81 | |
1315 //SpawnPointMM7 *v71; // eax@81 | |
1316 //unsigned int v72; // ecx@81 | |
1317 //size_t v73; // eax@81 | |
1318 //int v74; // edi@87 | |
1319 //void *v75; // edi@88 | |
1320 //unsigned int v76; // edx@94 | |
1321 //int v77; // ecx@94 | |
1322 //char *v78; // eax@95 | |
1323 //unsigned int v79; // edx@97 | |
1324 //unsigned int v80; // eax@99 | |
1325 //int v81; // eax@107 | |
1326 //void *v82; // edi@114 | |
1327 //size_t v83; // eax@120 | |
1328 //const void *v84; // edi@120 | |
1329 //const void *v85; // edi@120 | |
1330 //BSPModel *v86; // eax@124 | |
1331 //unsigned int v87; // eax@124 | |
1332 //BSPModel *v88; // eax@126 | |
1333 //BSPModel *v89; // eax@127 | |
1334 //ODMFace *v90; // eax@129 | |
1335 //const void *v91; // edi@138 | |
1336 //const void *v92; // edi@141 | |
1337 //const void *v93; // edi@141 | |
1338 //const void *v94; // edi@144 | |
1339 //const void *v95; // edi@144 | |
1340 //const char *v96; // edi@147 | |
1341 //unsigned int v97; // eax@147 | |
1342 //TileDesc *v98; // eax@147 | |
1343 //unsigned int v99; // eax@147 | |
1344 //int v100; // ecx@150 | |
1345 //unsigned int v101; // eax@157 | |
1346 int v102; // edi@159 | |
1347 //void *v103; // [sp-14h] [bp-B94h]@55 | |
1348 //void *v104; // [sp-10h] [bp-B90h]@59 | |
1349 //size_t v105; // [sp-Ch] [bp-B8Ch]@59 | |
1350 //char *v106; // [sp-8h] [bp-B88h]@59 | |
1351 int v107; // [sp-4h] [bp-B84h]@12 | |
1352 int v108; // [sp+0h] [bp-B80h]@10 | |
1353 char Src[968]; // [sp+10h] [bp-B70h]@110 | |
1354 char Dst[968]; // [sp+3D8h] [bp-7A8h]@50 | |
1355 char Str[256]; // [sp+7A0h] [bp-3E0h]@50 | |
1356 /*char DstBuf; // [sp+8A0h] [bp-2E0h]@10 | |
1357 __int32 Offset; // [sp+8A4h] [bp-2DCh]@10 | |
1358 __int32 v114; // [sp+8B0h] [bp-2D0h]@10 | |
1359 __int32 v115; // [sp+8BCh] [bp-2C4h]@10 | |
1360 __int32 v116; // [sp+8C8h] [bp-2B8h]@10 | |
1361 __int32 v117; // [sp+8D4h] [bp-2ACh]@10 | |
1362 __int32 v118; // [sp+8E0h] [bp-2A0h]@10 | |
1363 __int32 v119; // [sp+8ECh] [bp-294h]@10 | |
1364 __int32 v120; // [sp+8F8h] [bp-288h]@10 | |
1365 __int32 v121; // [sp+904h] [bp-27Ch]@10 | |
1366 __int32 v122; // [sp+910h] [bp-270h]@10 | |
1367 __int32 v123; // [sp+91Ch] [bp-264h]@10 | |
1368 __int32 v124; // [sp+928h] [bp-258h]@26 | |
1369 __int32 v125; // [sp+934h] [bp-24Ch]@35 | |
1370 __int32 v126; // [sp+940h] [bp-240h]@38 | |
1371 __int32 v127; // [sp+94Ch] [bp-234h]@38 | |
1372 __int32 v128; // [sp+958h] [bp-228h]@38 | |
1373 __int32 v129; // [sp+964h] [bp-21Ch]@38 | |
1374 __int32 v130; // [sp+970h] [bp-210h]@38 | |
1375 __int32 v131; // [sp+97Ch] [bp-204h]@38 | |
1376 __int32 v132; // [sp+988h] [bp-1F8h]@38 | |
1377 __int32 v133; // [sp+994h] [bp-1ECh]@38 | |
1378 __int32 v134; // [sp+9A0h] [bp-1E0h]@38 | |
1379 __int32 v135; // [sp+9ACh] [bp-1D4h]@38 | |
1380 __int32 v136; // [sp+9D0h] [bp-1B0h]@10*/ | |
1381 //char FileName[8]; // [sp+A20h] [bp-160h]@8 | |
1382 //char v138; // [sp+A28h] [bp-158h]@12 | |
1383 //int v139; // [sp+B1Ch] [bp-64h]@10 | |
1384 //char pContainer[32]; // [sp+B20h] [bp-60h]@1 | |
1385 //int *v141; // [sp+B40h] [bp-40h]@50 | |
1386 //__int64 v142; // [sp+B44h] [bp-3Ch]@55 | |
1387 //size_t pSource; // [sp+B4Ch] [bp-34h]@56 | |
1388 //int v144; // [sp+B50h] [bp-30h]@61 | |
1389 //int v145; // [sp+B54h] [bp-2Ch]@68 | |
1390 ODMHeader header; // [sp+B58h] [bp-28h]@50 | |
1391 //unsigned int pDestLen; // [sp+B68h] [bp-18h]@13 | |
1392 //FILE *ptr; // [sp+B6Ch] [bp-14h]@12 | |
1393 //void *v149; // [sp+B70h] [bp-10h]@19 | |
1394 char *Str2; // [sp+B74h] [bp-Ch]@12 | |
1395 //int v151; // [sp+B78h] [bp-8h]@59 | |
1396 //void *uSourceLen; // [sp+B7Ch] [bp-4h]@59 | |
1397 | |
1398 //pOutdoorLocation = this; | |
1399 //strcpy(pContainer, pFilename); | |
1400 | |
1401 if (bUnderwater) | |
1402 { | |
1403 pPaletteManager->pPalette_tintColor[0] = 0x10; | |
1404 pPaletteManager->pPalette_tintColor[1] = 0xC2; | |
1405 pPaletteManager->pPalette_tintColor[2] = 0x99; | |
762 | 1406 pPaletteManager->SetMistColor(37, 143, 92); |
0 | 1407 } |
1408 else | |
1409 { | |
1410 pPaletteManager->pPalette_tintColor[0] = 0; | |
1411 pPaletteManager->pPalette_tintColor[1] = 0; | |
1412 pPaletteManager->pPalette_tintColor[2] = 0; | |
1413 if (pPaletteManager->pPalette_mistColor[0] != 0x80 || | |
1414 pPaletteManager->pPalette_mistColor[1] != 0x80 || | |
1415 pPaletteManager->pPalette_mistColor[2] != 0x80) | |
1416 { | |
762 | 1417 pPaletteManager->SetMistColor(128, 128, 128); |
0 | 1418 pPaletteManager->RecalculateAll(); |
1419 } | |
1420 } | |
1421 | |
1422 _6807E0_num_decorations_with_sounds_6807B8 = 0; | |
1423 /*sprintf(FileName, "levels\\%s", pContainer); | |
1424 if ( GetFileAttributesA(FileName) != -1 ) | |
1425 { | |
1426 result = (bool)fopen(FileName, "rb"); | |
1427 v7 = result; | |
1428 File = (ODMFace *)result; | |
1429 if ( !result ) | |
1430 return result; | |
1431 *(int *)thisa = 1; | |
1432 v8 = strlen(pContainer); | |
1433 v108 = 2; | |
1434 *((char *)&v139 + v8) = 0; | |
1435 viewparams->uTextureID_LocationMap = pIcons_LOD->LoadTexture(pContainer, (enum TEXTURE_TYPE)v108); | |
1436 fread(&DstBuf, 0x180u, 1u, (FILE *)v7); | |
1437 fseek((FILE *)v7, Offset, 0); | |
1438 fread(this, 0xB0u, 1u, (FILE *)v7); | |
1439 LoadTileGroupIds(); | |
630 | 1440 LoadRoadTileset(); |
0 | 1441 strcpy(pGroundTileset, "grastyl"); |
1442 fseek((FILE *)v7, v114, 0); | |
1443 fread(&uNumBModels, 4u, 1u, (FILE *)v7); | |
1444 fseek((FILE *)v7, v115, 0); | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1445 fread(&uNumSpriteObjects, 4u, 1u, (FILE *)v7); |
0 | 1446 fseek((FILE *)v7, v116, 0); |
1447 fread(&uNumLevelDecorations, 4u, 1u, (FILE *)v7); | |
1448 fseek((FILE *)v7, v117, 0); | |
1449 fread(&uNumActors, 4u, 1u, (FILE *)v7); | |
1450 fseek((FILE *)v7, v118, 0); | |
1451 fread(&uNumChests, 4u, 1u, (FILE *)v7); | |
1452 pTerrain.Initialize(); | |
1453 fseek((FILE *)v7, v119, 0); | |
1454 fread(pTerrain.pHeightmap, 1u, 0x4000u, (FILE *)v7); | |
1455 fseek((FILE *)v7, v120, 0); | |
1456 fread(pTerrain.pTilemap, 1u, 0x4000u, (FILE *)v7); | |
1457 fseek((FILE *)v7, v121, 0); | |
1458 fread(pTerrain.pAttributemap, 1u, 0x4000u, (FILE *)v7); | |
1459 pTerrain._47C80A(0, 0, 128, 128); | |
1583 | 1460 free(ptr_D4); |
0 | 1461 ptr_D4 = 0; |
1583 | 1462 v9 = malloc(0, 0x8000u, "CMAP"); |
0 | 1463 v108 = (int)pOMAP; |
1464 ptr_D4 = v9; | |
1583 | 1465 free((void *)v108); |
0 | 1466 pOMAP = 0; |
1583 | 1467 v10 = malloc(0, 0x10000u, "OMAP"); |
0 | 1468 v108 = 0; |
1469 pOMAP = (unsigned int *)v10; | |
1470 fseek((FILE *)v7, v136, v108); | |
1471 fread(&uNumTerrainNormals, 4u, 1u, (FILE *)v7); | |
1472 fread(pTerrainSomeOtherData, 1u, 0x20000u, (FILE *)v7); | |
1473 fread(pTerrainNormalIndices, 1u, 0x10000u, (FILE *)v7); | |
1583 | 1474 pTerrainNormals = (Vec3_float_ *)malloc(pTerrainNormals, 12 * uNumTerrainNormals, "TerNorm"); |
0 | 1475 fread(pTerrainNormals, 1u, 12 * uNumTerrainNormals, (FILE *)v7); |
1583 | 1476 v11 = malloc(pBModels, 188 * uNumBModels, "BDdata"); |
0 | 1477 v108 = 0; |
1478 pBModels = (BSPModel *)v11; | |
1479 fseek((FILE *)v7, v122, v108); | |
1480 fread(pBModels, 0xBCu, uNumBModels, (FILE *)v7); | |
1481 fseek((FILE *)v7, v123, 0); | |
1482 pNumItems = 0; | |
1483 if ( (signed int)uNumBModels > 0 ) | |
1484 { | |
1485 v12 = 0; | |
1486 while ( 1 ) | |
1487 { | |
1488 pBModels[v12].pVertices.pVertices = 0; | |
1489 pBModels[v12].pFaces = 0; | |
1490 pBModels[v12].pFacesOrdering = 0; | |
1491 pBModels[v12].pNodes = 0; | |
1492 FileName[0] = 0; | |
1493 v108 = (int)&pBModels[v12]; | |
1494 sprintfex(FileName, "%s", v108); | |
1495 v13 = pBModels; | |
1496 v138 = 0; | |
1583 | 1497 pBModels[v12].pVertices.pVertices = (Vec3_int_ *)malloc(v13[v12].pVertices.pVertices, 12 * v13[v12].pVertices.uNumVertices, |
0 | 1498 FileName); |
1583 | 1499 pBModels[v12].pFaces = (ODMFace *)malloc(pBModels[v12].pFaces, 308 * pBModels[v12].uNumFaces, |
0 | 1500 FileName); |
1583 | 1501 pBModels[v12].pFacesOrdering = (unsigned __int16 *)malloc(pBModels[v12].pFacesOrdering, |
0 | 1502 2 * pBModels[v12].uNumFaces, FileName); |
1583 | 1503 v14 = malloc(pBModels[v12].pNodes, 8 * pBModels[v12].uNumNodes, FileName); |
0 | 1504 v15 = pBModels; |
1505 v108 = (int)File; | |
1506 v15[v12].pNodes = (BSPNode *)v14; | |
1507 fread(pBModels[v12].pVertices.pVertices, 0xCu, pBModels[v12].pVertices.uNumVertices, (FILE *)v108); | |
1508 fread(pBModels[v12].pFaces, 0x134u, pBModels[v12].uNumFaces, (FILE *)File); | |
1509 fread(pBModels[v12].pFacesOrdering, 2u, pBModels[v12].uNumFaces, (FILE *)File); | |
1510 fread(pBModels[v12].pNodes, 8u, pBModels[v12].uNumNodes, (FILE *)File); | |
1511 v16 = malloc(10 * pBModels[v12].uNumFaces); | |
1512 v107 = (int)File; | |
1513 v17 = pBModels; | |
1514 ptr = (FILE *)v16; | |
1515 fread(v16, 0xAu, v17[v12].uNumFaces, (FILE *)File); | |
1516 v18 = pBModels; | |
1517 Str2 = 0; | |
1518 if ( (signed int)v18[v12].uNumFaces > 0 ) | |
1519 break; | |
1520 LABEL_25: | |
1521 free(ptr); | |
1522 ++pNumItems; | |
1523 ++v12; | |
1524 if ( (signed int)pNumItems >= (signed int)uNumBModels ) | |
1525 goto LABEL_26; | |
1526 } | |
1527 pDestLen = 0; | |
1528 pFilename = (char *)ptr; | |
1529 while ( 1 ) | |
1530 { | |
1531 thisa = (int)((char *)v18[v12].pFaces + pDestLen); | |
1532 if ( !(*(char *)(thisa + 29) & 0x40) ) | |
1533 break; | |
1534 v19 = pTextureFrameTable->FindTextureByName(pFilename); | |
1535 *(short *)(thisa + 272) = v19; | |
1536 if ( !v19 ) | |
1537 { | |
1538 v20 = pBitmaps_LOD->LoadTexture(pFilename); | |
1539 v21 = thisa; | |
1540 *(char *)(v21 + 29) &= 0xBFu; | |
1541 LABEL_19: | |
1542 *(short *)(v21 + 272) = v20; | |
1543 v149 = (void *)(v20 != -1 ? &pBitmaps_LOD->pTextures[v20] : 0); | |
1544 auto pTex = (Texture *)v149; | |
1545 if (pTex) | |
1546 pTex->palette_id2 = pPaletteManager->LoadPalette(pTex->palette_id1); | |
1547 goto LABEL_20; | |
1548 } | |
1549 pTextureFrameTable->LoadAnimationSequenceAndPalettes(*(unsigned __int16 *)((char *)&pBModels[v12].pFaces->uTextureID + pDestLen)); | |
1550 LABEL_20: | |
1551 if ( *(short *)(thisa + 292) ) | |
1552 { | |
1553 if ( ((ODMFace *)thisa)->HasEventHint() ) | |
1554 *(char *)(thisa + 30) |= 0x10u; | |
1555 else | |
1556 *(char *)(thisa + 30) &= 0xEFu; | |
1557 } | |
1558 ++Str2; | |
1559 v18 = pBModels; | |
1560 pDestLen += 308; | |
1561 pFilename += 10; | |
1562 if ( (signed int)Str2 >= (signed int)v18[v12].uNumFaces ) | |
1563 goto LABEL_25; | |
1564 } | |
1565 v20 = pBitmaps_LOD->LoadTexture(pFilename); | |
1566 v21 = thisa; | |
1567 goto LABEL_19; | |
1568 } | |
1569 LABEL_26: | |
1570 v22 = File; | |
1571 fseek((FILE *)File, v124, 0); | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1572 fread(pSpriteObjects, 0x70u, uNumSpriteObjects, (FILE *)v22); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1573 if ( (signed int)uNumSpriteObjects > 0 ) |
0 | 1574 { |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1575 pItems = pSpriteObjects; |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1576 pNumItems = uNumSpriteObjects; |
0 | 1577 do |
1578 { | |
1579 v24 = pItems->stru_24.uItemID; | |
1580 thisa = 0; | |
1581 v27 = (ODMFace *)(48 * v24); | |
1582 v25 = pObjectList->uNumObjects == 0; | |
1583 v26 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1584 LOWORD(v27) = *(short *)((char *)&v27->pFacePlane.vNormal.x + (int)((char *)&pItemsTable + 24)); | |
1585 File = v27; | |
1586 pItems->uItemType = (unsigned __int16)v27; | |
1587 if ( v26 | v25 ) | |
1588 { | |
1589 LABEL_33: | |
1590 v29 = 0; | |
1591 } | |
1592 else | |
1593 { | |
1594 for ( i = (const char *)&pObjectList->pObjects->uObjectID; (short)v27 != *(short *)i; i = pFilename ) | |
1595 { | |
1596 ++thisa; | |
1597 pFilename = (char *)i + 56; | |
1598 if ( thisa >= (signed int)pObjectList->uNumObjects ) | |
1599 goto LABEL_33; | |
1600 LOWORD(v27) = (short)File; | |
1601 } | |
1602 v29 = thisa; | |
1603 } | |
1604 pItems->uObjectDescID = v29; | |
1605 ++pItems; | |
1606 --pNumItems; | |
1607 } | |
1608 while ( pNumItems ); | |
1609 } | |
1610 fseek((FILE *)v22, v125, 0); | |
1611 fread(pLevelDecorations, 0x20u, uNumLevelDecorations, (FILE *)v22); | |
1612 pNumItems = 0; | |
1613 if ( (signed int)uNumLevelDecorations > 0 ) | |
1614 { | |
1615 thisa = (int)pLevelDecorations; | |
1616 do | |
1617 { | |
1618 fread(FileName, 1u, 0x20u, (FILE *)v22); | |
1619 v30 = pDecorationList->GetDecorIdByName(FileName); | |
1620 v31 = thisa; | |
1621 ++pNumItems; | |
1622 thisa += 32; | |
1623 *(short *)v31 = v30; | |
1624 } | |
1625 while ( (signed int)pNumItems < (signed int)uNumLevelDecorations ); | |
1626 } | |
1627 fseek((FILE *)v22, v126, 0); | |
1628 fread(pActors, 0x344u, uNumActors, (FILE *)v22); | |
1629 fseek((FILE *)v22, v127, 0); | |
1630 fread(pChests, 0x14CCu, uNumChests, (FILE *)v22); | |
1631 fseek((FILE *)v22, v128, 0); | |
1632 fread(&field_DC, 4u, 1u, (FILE *)v22); | |
1583 | 1633 free(pFaceIDLIST); |
0 | 1634 v32 = field_DC; |
1635 pFaceIDLIST = 0; | |
1583 | 1636 v33 = malloc(0, 2 * v32, "IDLIST"); |
0 | 1637 v108 = (int)v22; |
1638 pFaceIDLIST = (unsigned __int16 *)v33; | |
1639 fread(v33, 2u, field_DC, (FILE *)v108); | |
1640 fseek((FILE *)v22, v129, 0); | |
1641 fread(pOMAP, 4u, 0x4000u, (FILE *)v22); | |
1642 fseek((FILE *)v22, v130, 0); | |
1643 fread(&uNumSpawnPoints, 4u, 1u, (FILE *)v22); | |
1583 | 1644 pSpawnPoints = (SpawnPointMM7 *)malloc(pSpawnPoints, 24 * uNumSpawnPoints, "Spawn"); |
0 | 1645 fseek((FILE *)v22, v131, 0); |
1646 fread(pSpawnPoints, 0x18u, uNumSpawnPoints, (FILE *)v22); | |
1647 fseek((FILE *)v22, v132, 0); | |
1648 fread(&ddm, 0x28u, 1u, (FILE *)v22); | |
1649 fseek((FILE *)v22, v133, 0); | |
1650 fread(&stru_5E4C90, 1u, 0xC8u, (FILE *)v22); | |
1651 fseek((FILE *)v22, v134, 0); | |
1652 fread(&uLastVisitDay, 1u, 0x38u, (FILE *)v22); | |
1653 fseek((FILE *)v22, v135, 0); | |
1654 fread(&uLastVisitDay, 1u, 4u, (FILE *)v22); | |
1655 thisa = (int)pTileTypes; | |
1656 pTileTable->InitializeTileset(4); | |
1657 pTileTable->InitializeTileset(pTileTypes[0].uTileGroup); | |
1658 pTileTable->InitializeTileset(pTileTypes[1].uTileGroup); | |
1659 pTileTable->InitializeTileset(pTileTypes[2].uTileGroup); | |
1660 pTileTable->InitializeTileset(pTileTypes[3].uTileGroup); | |
1661 if ( this != (OutdoorLocation *)-96 && pSkyTextureName[0] ) | |
1662 { | |
1663 v108 = 0; | |
1664 v107 = (int)pSkyTextureName; | |
1665 } | |
1666 else | |
1667 { | |
1668 v108 = 0; | |
1669 v107 = (int)pDefaultSkyTexture; | |
1670 } | |
2006 | 1671 sSky_TextureID = pBitmaps_LOD->LoadTexture((const char *)v107, (enum TEXTURE_TYPE)v108); |
0 | 1672 strcpy(pGroundTileset, byte_6BE124_cfg_textures_DefaultGroundTexture); |
1673 v34 = pTileTable->GetTileById(pTileTypes[0].uTileID); | |
1674 v35 = pBitmaps_LOD->LoadTexture(v34->pTileName); | |
2006 | 1675 v36 = sSky_TextureID; |
1676 sMainTile_BitmapID = v35; | |
0 | 1677 if ( v36 != -1 ) |
1678 pBitmaps_LOD->pTextures[v36].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[v36].palette_id1); | |
1679 | |
2006 | 1680 v37 = sMainTile_BitmapID; |
0 | 1681 if ( v37 != -1 ) |
1682 pBitmaps_LOD->pTextures[v37].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[v37].palette_id1); | |
1683 | |
1684 _47F0E2(); | |
1685 pGameLoadingUI_ProgressBar->Progress(); | |
1686 fclose((FILE *)v22); | |
1687 goto LABEL_150; | |
1688 }*/ | |
1689 | |
1690 assert(sizeof(BSPModel) == 188); | |
1691 | |
1692 if (!pGames_LOD->DoesContainerExist(pFilename)) | |
1545 | 1693 Error("Unable to find %s in Games.LOD", pFilename); |
0 | 1694 |
119 | 1695 |
1696 char pMinimapTextureFilename[1024]; | |
1697 strcpy(pMinimapTextureFilename, pFilename); | |
1698 pMinimapTextureFilename[strlen(pMinimapTextureFilename) - 4] = 0; | |
1699 viewparams->uTextureID_LocationMap = pIcons_LOD->LoadTexture(pMinimapTextureFilename, TEXTURE_16BIT_PALETTE); | |
1700 | |
0 | 1701 //strcpy(FileName, pContainer); |
1702 strcpy(Str, pFilename); | |
1703 strcpy(Str + strlen(Str) - 4, ".odm"); | |
1704 //v141 = &v139; | |
1705 //v38 = strlen(pFilename); | |
1706 //strcpy((char *)&v139 + v38, ".odm"); | |
1707 v39 = pGames_LOD->FindContainer(Str, 1); | |
1708 //Str[strlen(Str) - 4] = 0; | |
1709 | |
1710 header.uCompressedSize = 0; | |
1711 header.uDecompressedSize = 0; | |
1712 //ptr = v39; | |
1713 header.uVersion = 91969; | |
1714 header.pMagic[0] = 'm'; | |
1715 header.pMagic[1] = 'v'; | |
1716 header.pMagic[2] = 'i'; | |
1717 header.pMagic[3] = 'i'; | |
1718 fread(&header, 0x10u, 1u, v39); | |
1719 if (header.uVersion != 91969 || | |
1720 header.pMagic[0] != 'm' || | |
1721 header.pMagic[1] != 'v' || | |
1722 header.pMagic[2] != 'i' || | |
1723 header.pMagic[3] != 'i') | |
1724 { | |
1725 MessageBoxW(nullptr, L"Can't load file!", | |
1726 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:507", 0); | |
1727 } | |
1728 //v40 = header.uCompressedSize; | |
1729 //pSource = header.uDecompressedSize; | |
1730 //v41 = malloc(header.uDecompressedSize); | |
1980 | 1731 uchar* pSrcMem = (unsigned char *)malloc(header.uDecompressedSize); |
1732 uchar* pSrc = pSrcMem; | |
0 | 1733 //v42 = v41; |
1734 //HIDWORD(v142) = (uint32)pSrc; | |
1735 if (header.uCompressedSize < header.uDecompressedSize) | |
1736 { | |
1980 | 1737 char* pComressedSrc = (char *)malloc(header.uCompressedSize); |
0 | 1738 fread(pComressedSrc, header.uCompressedSize, 1, v39); |
1739 | |
1740 uint actualDecompressedSize = header.uDecompressedSize; | |
1741 zlib::MemUnzip(pSrc, &actualDecompressedSize, pComressedSrc, header.uCompressedSize); | |
1742 free(pComressedSrc); | |
1743 } | |
1744 else | |
1745 { | |
1746 fread(pSrc, header.uDecompressedSize, 1, v39); | |
1747 } | |
1748 | |
1749 memcpy(pLevelFilename, pSrc, 0x20); | |
1750 memcpy(pLocationFileName, pSrc + 0x20, 0x20); | |
1751 memcpy(pLocationFileDescription, pSrc + 0x40, 0x20); | |
67 | 1752 memcpy(pSkyTextureName, pSrc + 3 * 32, 32); |
0 | 1753 memcpy(pGroundTileset, pSrc + 0x80, 0x20); |
1754 memcpy(pTileTypes, pSrc + 0xA0, 0x10); | |
1755 pSrc += 0xB0; | |
1756 | |
1757 //v43 = (char *)pSrc + 176; | |
1758 LoadTileGroupIds(); | |
630 | 1759 LoadRoadTileset(); |
0 | 1760 strcpy(pGroundTileset, "grastyl"); |
1761 pGameLoadingUI_ProgressBar->Progress(); | |
1762 pTerrain.Initialize(); | |
1763 //v108 = 16384; | |
1764 //v107 = (int)v43; | |
1765 //v106 = (char *)pTerrain.pHeightmap; | |
1766 memcpy(pTerrain.pHeightmap, pSrc, 0x4000); | |
1767 pSrc += 0x4000; | |
1768 | |
1769 //v43 = (char *)v43 + 16384; | |
1770 //v105 = 16384; | |
1771 //v104 = (void *)v43; | |
1772 //v103 = pTerrain.pTilemap; | |
1773 memcpy(pTerrain.pTilemap, pSrc, 0x4000); | |
1774 pSrc += 0x4000; | |
1775 | |
1776 //v43 = (char *)v43 + 16384; | |
1777 memcpy(pTerrain.pAttributemap, pSrc, 0x4000); | |
1778 pSrc += 0x4000; | |
1779 | |
1780 //v43 = (char *)v43 + 16384; | |
1781 //v108 = (int)ptr_D4; | |
760 | 1782 if (pCmap) |
0 | 1783 { |
1583 | 1784 free(pCmap); |
760 | 1785 pCmap = nullptr; |
0 | 1786 } |
1583 | 1787 pCmap = malloc(0x8000); |
760 | 1788 pTerrain.FillDMap(0, 0, 128, 128); |
0 | 1789 |
1790 pGameLoadingUI_ProgressBar->Progress(); | |
1791 memcpy(&uNumTerrainNormals, pSrc, 4); | |
1792 //v43 = (char *)v43 + 4; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1793 memcpy(pTerrainSomeOtherData.data(), pSrc + 4, 0x20000); |
0 | 1794 pSrc += 4 + 0x20000; |
1795 //v43 = (char *)v43 + 131072; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1796 memcpy(pTerrainNormalIndices.data(), pSrc, 0x10000); |
0 | 1797 pSrc += 0x10000; |
1798 //v43 = (char *)v43 + 65536; | |
1799 | |
1800 //pFilename = (char *)(12 * uNumTerrainNormals); | |
1583 | 1801 pTerrainNormals = (Vec3_float_ *)malloc(sizeof(Vec3_float_) * uNumTerrainNormals); |
0 | 1802 memcpy(pTerrainNormals, pSrc, 12 * uNumTerrainNormals); |
1803 pSrc += 12 * uNumTerrainNormals; | |
1804 //v44 = (char *)v43 + (int)pFilename; | |
1805 //v44 = (char *)v44 + 4; | |
1806 //v45 = uNumBModels; | |
1807 //v108 = (int)"BDdata"; | |
1808 | |
1809 pGameLoadingUI_ProgressBar->Progress(); | |
1810 | |
1811 //v107 = 188 * v45; | |
1812 //v106 = (char *)pBModels; | |
1583 | 1813 //v46 = (BSPModel *)malloc(v106, 188 * v45, "BDdata"); |
0 | 1814 //v47 = uNumBModels; |
1815 memcpy(&uNumBModels, pSrc, 4); | |
1583 | 1816 pBModels = (BSPModel *)malloc(188 * uNumBModels); |
0 | 1817 //pFilename = (char *)(188 * v47); |
1818 memcpy(pBModels, pSrc + 4, 188 * uNumBModels); | |
1819 pSrc += 4 + 188 * uNumBModels; | |
1820 | |
1821 pGameLoadingUI_ProgressBar->Progress(); | |
1822 | |
1823 //uSourceLen = (char *)v44 + (int)pFilename; | |
1824 //v151 = 0; | |
1825 for (uint i = 0; i < uNumBModels; ++i) | |
1826 { | |
1827 //v48 = 0; | |
1980 | 1828 BSPModel* model = &pBModels[i]; |
0 | 1829 |
1830 model->pVertices.pVertices = nullptr; | |
1831 model->pFaces = nullptr; | |
1832 model->pFacesOrdering = nullptr; | |
1833 model->pNodes = nullptr; | |
1834 //FileName[0] = 0; | |
1835 //v108 = (int)&pBModels[i]; | |
1836 //sprintf(FileName, "%s", v108); | |
1837 //v49 = pBModels; | |
1838 //v138 = 0; | |
1839 //v50 = &pBModels[v48]; | |
1840 //v108 = (int)FileName; | |
1841 //v107 = 12 * v50->pVertices.uNumVertices; | |
1842 //v106 = (char *)v50->pVertices.pVertices; | |
1843 assert(sizeof(Vec3_int_) == 12); | |
1844 uint verticesSize = model->pVertices.uNumVertices * sizeof(Vec3_int_); | |
1583 | 1845 model->pVertices.pVertices = (Vec3_int_ *)malloc(verticesSize); |
0 | 1846 memcpy(model->pVertices.pVertices, pSrc, verticesSize); |
1847 pSrc += verticesSize; | |
1848 //v51 = &pBModels[v48]; | |
1849 //v108 = (int)FileName; | |
1850 //v107 = 308 * v51->uNumFaces; | |
1851 //v106 = (char *)v51->pFaces; | |
1852 assert(sizeof(ODMFace) == 308); | |
1853 uint facesSize = model->uNumFaces * sizeof(ODMFace); | |
1583 | 1854 model->pFaces = (ODMFace *)malloc(facesSize); |
0 | 1855 memcpy(model->pFaces, pSrc, facesSize); |
1856 pSrc += facesSize; | |
1857 //v52 = &pBModels[v48]; | |
1858 //v108 = (int)FileName; | |
1859 //v107 = 2 * v52->uNumFaces; | |
1860 //v106 = (char *)v52->pFacesOrdering; | |
1861 uint facesOrderingSize = model->uNumFaces * sizeof(short); | |
1583 | 1862 model->pFacesOrdering = (unsigned __int16 *)malloc(facesOrderingSize); |
0 | 1863 memcpy(model->pFacesOrdering, pSrc, facesOrderingSize); |
1864 pSrc += facesOrderingSize; | |
1865 //v53 = &pBModels[v48]; | |
1866 //v108 = (int)FileName; | |
1867 //v107 = 8 * v53->uNumNodes; | |
1868 //v106 = (char *)v53->pNodes; | |
1869 assert(sizeof(BSPNode) == 8); | |
1870 uint nodesSize = model->uNumNodes * sizeof(BSPNode); | |
1583 | 1871 model->pNodes = (BSPNode *)malloc(nodesSize); |
0 | 1872 memcpy(model->pNodes, pSrc, nodesSize); |
1873 pSrc += nodesSize; | |
1874 //v54 = &pBModels[v48]; | |
1875 //v108 = 12 * v54->pVertices.uNumVertices; | |
1876 //pFilename = (char *)v108; | |
1877 //v107 = (int)uSourceLen; | |
1878 //v106 = (char *)v54->pVertices.pVertices; | |
1879 //memcpy(v106, uSourceLen, v108); | |
1880 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1881 //v55 = &pBModels[v48]; | |
1882 //v105 = 308 * v55->uNumFaces; | |
1883 //v104 = uSourceLen; | |
1884 //v103 = v55->pFaces; | |
1885 //pFilename = (char *)v105; | |
1886 //memcpy(v103, uSourceLen, v105); | |
1887 //v56 = &pBModels[v48]; | |
1888 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1889 //v57 = v56->pFacesOrdering; | |
1890 //pFilename = (char *)(2 * v56->uNumFaces); | |
1891 //memcpy(v57, uSourceLen, (size_t)pFilename); | |
1892 //v58 = &pBModels[v48]; | |
1893 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1894 //v59 = v58->pNodes; | |
1895 //pFilename = (char *)(8 * v58->uNumNodes); | |
1896 //memcpy(v59, uSourceLen, (size_t)pFilename); | |
1897 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1898 //ptr = (FILE *)malloc(10 * model->uNumFaces); | |
1980 | 1899 const char* textureFilenames = (const char *)malloc(10 * model->uNumFaces); |
0 | 1900 //pFilename = (char *)(10 * pBModels[v48].uNumFaces); |
1901 memcpy((char *)textureFilenames, pSrc, 10 * model->uNumFaces); | |
1902 pSrc += 10 * model->uNumFaces; | |
1903 //v144 = 0; | |
1904 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1905 //v60 = pBModels; | |
1906 for (uint j = 0; j < model->uNumFaces; ++j) | |
1907 { | |
1980 | 1908 const char* texFilename = &textureFilenames[j * 10]; |
0 | 1909 //v149 = 0; |
1910 //Str2 = (char *)ptr; | |
1911 | |
1980 | 1912 ODMFace* face = &model->pFaces[j]; |
0 | 1913 //pFilename = (char *)v149 + (unsigned int)v60[v48].pFaces; |
1030 | 1914 if (~face->uAttributes & FACE_DONT_CACHE_TEXTURE) |
0 | 1915 { |
1916 v62 = pBitmaps_LOD->LoadTexture(texFilename); | |
1917 // v63 = (ODMFace *)pFilename; | |
1918 goto LABEL_68; | |
1919 } | |
1920 //v61 = pTextureFrameTable->FindTextureByName(texFilename); | |
1921 face->uTextureID = pTextureFrameTable->FindTextureByName(texFilename); | |
1922 if (!face->uTextureID) | |
1923 { | |
1924 v62 = pBitmaps_LOD->LoadTexture(texFilename); | |
1925 //v63 = (ODMFace *)pFilename; | |
1030 | 1926 face->uAttributes &= ~FACE_DONT_CACHE_TEXTURE; |
0 | 1927 LABEL_68: |
1928 face->uTextureID = v62; | |
1929 //v145 = (signed __int16)v62 != -1 ? &pBitmaps_LOD->pTextures[(signed __int16)v62] : 0; | |
1930 //v108 = ((signed __int16)v62 != -1 ? pBitmaps_LOD->pTextures[(signed __int16)v62].palette_id1 : 36); | |
1931 if ((signed __int16)v62 != -1) | |
1932 pBitmaps_LOD->pTextures[v62].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[v62].palette_id1); | |
1933 goto LABEL_69; | |
1934 } | |
1935 pTextureFrameTable->LoadAnimationSequenceAndPalettes(face->uTextureID); | |
1936 LABEL_69: | |
1937 if (face->sCogTriggeredID) | |
1938 { | |
1939 if (face->HasEventHint()) | |
1030 | 1940 face->uAttributes |= 0x1000; |
0 | 1941 else |
1030 | 1942 face->uAttributes &= ~0x1000; |
0 | 1943 } |
1944 //++v144; | |
1945 //v60 = pBModels; | |
1946 //v149 = (char *)v149 + 308; | |
1947 //Str2 += 10; | |
1948 //if ( v144 >= (signed int)v60[v48].uNumFaces ) | |
1949 //goto LABEL_74; | |
1950 } | |
1951 | |
1952 //LABEL_74: | |
1953 free((void *)textureFilenames); | |
1954 // ++v151; | |
1955 // ++v48; | |
1956 // if ( v151 >= (signed int)uNumBModels ) | |
1957 // goto LABEL_75; | |
1958 } | |
1959 //LABEL_75: | |
1960 pGameLoadingUI_ProgressBar->Progress(); | |
1961 | |
1962 memcpy(&uNumLevelDecorations, pSrc, 4u); | |
1963 //uSourceLen = (char *)uSourceLen + 4; | |
1964 if (uNumLevelDecorations > 3000) | |
1965 MessageBoxW(nullptr, L"Can't load file!", | |
1966 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:678", 0); | |
1967 | |
1968 assert(sizeof(LevelDecoration) == 32); | |
1969 //pFilename = (char *)(32 * uNumLevelDecorations); | |
1202 | 1970 memcpy(pLevelDecorations.data(), pSrc + 4, uNumLevelDecorations * sizeof(LevelDecoration)); |
760 | 1971 pSrc += 4 + sizeof(LevelDecoration) * uNumLevelDecorations; |
0 | 1972 |
1973 pGameLoadingUI_ProgressBar->Progress(); | |
1974 | |
1975 //v151 = 0; | |
1976 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1977 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
1978 { | |
1979 char name[256]; | |
760 | 1980 memcpy(name, pSrc, sizeof(LevelDecoration)); |
1981 pSrc += sizeof(LevelDecoration); | |
0 | 1982 |
1983 pLevelDecorations[i].uDecorationDescID = pDecorationList->GetDecorIdByName(name); | |
1984 } | |
1985 | |
1986 pGameLoadingUI_ProgressBar->Progress(); | |
1987 | |
1988 memcpy(&numFaceIDListElems, pSrc, 4); | |
1989 | |
1990 //uSourceLen = (char *)uSourceLen + 4; | |
1991 //v108 = (int)pFaceIDLIST; | |
1992 if (pFaceIDLIST) | |
1993 { | |
1583 | 1994 free(pFaceIDLIST); |
0 | 1995 pFaceIDLIST = nullptr; |
1996 } | |
1997 //v66 = field_DC; | |
1998 //pFaceIDLIST = 0; | |
1583 | 1999 //v67 = malloc(0, 2 * v66, "IDLIST"); |
0 | 2000 uint faceIDListSize = 2 * numFaceIDListElems; |
1583 | 2001 pFaceIDLIST = (unsigned short *)malloc(faceIDListSize); |
0 | 2002 //v68 = field_DC; |
2003 //pFaceIDLIST = (unsigned __int16 *)v67; | |
2004 //pFilename = (char *)(2 * v68); | |
2005 memcpy(pFaceIDLIST, pSrc + 4, faceIDListSize); | |
2006 pSrc += 4 + faceIDListSize; | |
2007 | |
2008 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
2009 pGameLoadingUI_ProgressBar->Progress(); | |
2010 | |
2011 //v108 = (int)pOMAP; | |
1583 | 2012 //free((void *)v108); |
0 | 2013 //pOMAP = 0; |
2014 if (pOMAP) | |
2015 { | |
1583 | 2016 free(pOMAP); |
0 | 2017 pOMAP = nullptr; |
2018 } | |
1583 | 2019 //v69 = malloc(0, 0x10000u, "OMAP"); |
2020 pOMAP = (unsigned int *)malloc(0x10000); | |
0 | 2021 //v108 = 65536; |
2022 //pOMAP = (unsigned int *)v69; | |
2023 memcpy(pOMAP, pSrc, 65536); | |
2024 pSrc += 65536; | |
2025 | |
2026 //uSourceLen = (char *)uSourceLen + 65536; | |
2027 pGameLoadingUI_ProgressBar->Progress(); | |
2028 | |
2029 memcpy(&uNumSpawnPoints, pSrc, 4); | |
2030 //uSourceLen = (char *)uSourceLen + 4; | |
2031 pGameLoadingUI_ProgressBar->Progress(); | |
2032 //v70 = uNumSpawnPoints; | |
2033 //v108 = (int)"Spawn"; | |
2034 //v107 = 24 * v70; | |
2035 //v106 = (char *)pSpawnPoints; | |
2036 assert(sizeof(SpawnPointMM7) == 24); | |
2037 uint spawnPointsSize = uNumSpawnPoints * sizeof(SpawnPointMM7); | |
1583 | 2038 pSpawnPoints = (SpawnPointMM7 *)malloc(spawnPointsSize); |
0 | 2039 //v72 = uNumSpawnPoints; |
2040 //pSpawnPoints = v71; | |
2041 memcpy(pSpawnPoints, pSrc + 4, spawnPointsSize); | |
2042 pSrc += 4 + spawnPointsSize; | |
2043 | |
2044 pGameLoadingUI_ProgressBar->Progress(); | |
2045 | |
2046 free(pSrcMem); | |
2047 | |
2048 //v108 = (int)".ddm"; | |
2049 //v73 = strlen(pContainer); | |
2050 strcpy(Str + strlen(Str) - 4, ".ddm"); | |
2051 //strcpy((char *)v141 + v73, (const char *)v108); | |
2052 v39 = pNew_LOD->FindContainer(Str, 1);// | |
2053 fread(&header, 0x10u, 1u, v39); | |
2054 Str2 = 0; | |
2055 if (header.uVersion != 91969 || | |
2056 header.pMagic[0] != 'm' || | |
2057 header.pMagic[1] != 'v' || | |
2058 header.pMagic[2] != 'i' || | |
2059 header.pMagic[3] != 'i' ) | |
2060 { | |
187 | 2061 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:746", 0); |
0 | 2062 Str2 = (char *)1; |
2063 } | |
2064 //v74 = 0; | |
2065 //pFilename = (char *)header.uCompressedSize; | |
2066 //v149 = 0; | |
2067 //pDestLen = header.uDecompressedSize; | |
2068 if ( !Str2 ) | |
2069 { | |
2070 pSrcMem = (unsigned char *)malloc(header.uDecompressedSize); | |
2071 pSrc = pSrcMem; | |
2072 //v149 = v75; | |
2073 if (header.uCompressedSize == header.uDecompressedSize) | |
2074 fread(pSrc, header.uDecompressedSize, 1u, v39); | |
2075 else if (header.uCompressedSize < header.uDecompressedSize) | |
2076 { | |
1980 | 2077 void* compressedMem = malloc(header.uCompressedSize); |
0 | 2078 fread(compressedMem, header.uCompressedSize, 1, v39); |
2079 | |
2080 uint actualDecompressedSize = header.uDecompressedSize; | |
2081 zlib::MemUnzip(pSrc, &actualDecompressedSize, compressedMem, header.uCompressedSize); | |
2082 free(compressedMem); | |
2083 } | |
2084 else | |
2085 MessageBoxW(nullptr, L"Can't load file!", | |
2086 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:765", 0); | |
2087 | |
2088 assert(sizeof(DDM_DLV_Header) == 0x28); | |
2089 memcpy(&ddm, pSrc, sizeof(DDM_DLV_Header)); | |
2090 pSrc += sizeof(DDM_DLV_Header); | |
2091 //v74 = (int)((char *)v75 + 40); | |
2092 } | |
2093 //v76 = uNumBModels; | |
2094 //v77 = actualNumFacesInLevel = 0; | |
2095 uint actualNumFacesInLevel = 0; | |
2096 for (uint i = 0; i < uNumBModels; ++i) | |
80 | 2097 actualNumFacesInLevel += pBModels[i].uNumFaces; |
0 | 2098 |
2099 //v79 = ddm.uNumFacesInBModels; | |
2100 if (ddm.uNumFacesInBModels) | |
2101 { | |
2102 if ( ddm.uNumBModels ) | |
2103 { | |
2104 //v80 = ddm.uNumDecorations; | |
2105 if (ddm.uNumDecorations) | |
2106 { | |
2107 if (ddm.uNumFacesInBModels != actualNumFacesInLevel || | |
2108 ddm.uNumBModels != uNumBModels || | |
2109 ddm.uNumDecorations != uNumLevelDecorations ) | |
2110 Str2 = (char *)1; | |
2111 } | |
2112 } | |
2113 } | |
2114 | |
2061 | 2115 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_2000) |
2116 pNumItems = 0x1BAF800; | |
0 | 2117 if ( Str2 ) |
2118 { | |
2119 memset(Dst, 0, 0x3C8u); | |
2120 memset(Src, 0, 0x3C8u); | |
2121 goto LABEL_112; | |
2122 } | |
2123 //v81 = ddm.uLastRepawnDay; | |
2124 if ((unsigned int)((char *)File - ddm.uLastRepawnDay) >= pNumItems || !ddm.uLastRepawnDay) | |
2125 { | |
2126 memcpy(Dst, pSrc, 0x3C8u); | |
2127 memcpy(Src, pSrc + 968, 0x3C8u); | |
2128 LABEL_112: | |
2129 free(pSrcMem); | |
2130 | |
2131 ddm.uLastRepawnDay = (int)File; | |
2132 if (Str2 == 0) | |
2133 ++ddm.uNumRespawns; | |
2134 v108 = 0; | |
2135 *(int *)thisa = 1; | |
2136 v39 = pGames_LOD->FindContainer(Str, 0); | |
2137 fread(&header, 0x10, 1u, v39); | |
2138 //pFilename = (char *)header.uCompressedSize; | |
2139 //pDestLen = header.uDecompressedSize; | |
2140 //v82 = malloc(header.uDecompressedSize); | |
2141 pSrcMem = (unsigned char *)malloc(header.uDecompressedSize); | |
2142 //v149 = v82; | |
2143 if (header.uCompressedSize == header.uDecompressedSize) | |
2144 fread(pSrcMem, header.uDecompressedSize, 1, v39); | |
2145 else if (header.uCompressedSize < header.uDecompressedSize) | |
2146 { | |
1980 | 2147 void* compressedMem = malloc(header.uCompressedSize); |
0 | 2148 fread(compressedMem, header.uCompressedSize, 1u, v39); |
2149 | |
2150 uint actualDecompressedSize = header.uDecompressedSize; | |
2151 zlib::MemUnzip(pSrcMem, &actualDecompressedSize, compressedMem, header.uCompressedSize); | |
2152 free(compressedMem); | |
2153 } | |
2154 else | |
2155 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:857", 0); | |
2156 | |
2157 pSrc = pSrcMem + 40; | |
2158 goto LABEL_120; | |
2159 | |
2160 } | |
2161 *(int *)thisa = 0; | |
2162 LABEL_120: | |
2163 //v108 = (int)".odm"; | |
2164 //v83 = strlen(pContainer); | |
2165 //strcpy((char *)v141 + v83, (const char *)v108); | |
752 | 2166 memcpy(uUndiscoveredArea, pSrc, 0x3C8); |
0 | 2167 //v84 = (const void *)(v74 + 968); |
752 | 2168 memcpy(uDicovered_area, pSrc + 0x3C8, 0x3C8); |
0 | 2169 pSrc += 2 * 0x3C8; |
2170 //v85 = (char *)v84 + 968; | |
2171 | |
2172 pGameLoadingUI_ProgressBar->Progress(); | |
2173 | |
2174 if ( *(int *)thisa ) | |
2175 { | |
752 | 2176 memcpy(uUndiscoveredArea, Dst, 0x3C8u); |
2177 memcpy(uDicovered_area, Src, 0x3C8u); | |
0 | 2178 } |
2179 | |
2180 //v25 = uNumBModels == 0; | |
2181 //v26 = (uNumBModels & 0x80000000u) != 0; | |
2182 //v151 = 0; | |
2183 for (uint i = 0; i < uNumBModels; ++i) | |
2184 { | |
1980 | 2185 BSPModel model = pBModels[i]; |
0 | 2186 //pNumItems = 0; |
2187 //do | |
2188 //{ | |
2189 //v86 = pBModels; | |
2190 //thisa = 0; | |
2191 //v87 = (unsigned int)((char *)v86 + pNumItems); | |
79 | 2192 for (uint j = 0; j < model.uNumFaces; ++j) |
0 | 2193 { |
1980 | 2194 ODMFace face = model.pFaces[j]; |
0 | 2195 |
2196 //if ( *(int *)(v87 + 76) > 0 ) | |
2197 //{ | |
2198 //File = 0; | |
2199 //do | |
2200 //{ | |
2201 //v106 = (char *)&File->uAttributes + *(int *)(v87 + 84); | |
79 | 2202 memcpy(&face.uAttributes, pSrc, 4); |
0 | 2203 pSrc += 4; |
2204 //v88 = pBModels; | |
2205 //++File; | |
2206 //v85 = (char *)v85 + 4; | |
2207 //++thisa; | |
2208 //v87 = (unsigned int)((char *)v88 + pNumItems); | |
2209 //} | |
2210 //while ( thisa < *(int *)(v87 + 76) ); | |
2211 } | |
2212 | |
2213 //v89 = pBModels; | |
2214 //thisa = 0; | |
79 | 2215 for (uint j = 0; j < model.uNumFaces; ++j) |
0 | 2216 { |
1980 | 2217 ODMFace face = model.pFaces[j]; |
0 | 2218 //pFilename = 0; |
2219 //do | |
2220 //{ | |
2221 //v90 = (ODMFace *)&pFilename[*(unsigned int *)((char *)&v89->pFaces + pNumItems)]; | |
2222 //File = v90; | |
79 | 2223 if (face.sCogTriggeredID) |
0 | 2224 { |
79 | 2225 if (face.HasEventHint()) |
760 | 2226 face.uAttributes |= 0x1000u; |
0 | 2227 else |
1062 | 2228 face.uAttributes &= 0xFFFFEFFFu; |
0 | 2229 } |
2230 //++thisa; | |
2231 //v89 = pBModels; | |
2232 //pFilename += 308; | |
2233 //} | |
2234 //while ( thisa < *(signed int *)((char *)&v89->uNumFaces + pNumItems) ); | |
2235 } | |
2236 //++v151; | |
2237 //pNumItems += 188; | |
2238 //} | |
2239 //while ( v151 < (signed int)uNumBModels ); | |
2240 } | |
2241 | |
2242 pGameLoadingUI_ProgressBar->Progress(); | |
2243 | |
2244 //v151 = 0; | |
2245 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
2246 { | |
2247 //thisa = (int)&pLevelDecorations[0].field_2; | |
2248 //do | |
2249 //{ | |
1489 | 2250 memcpy(&pLevelDecorations[i].uFlags, pSrc, 2); |
0 | 2251 pSrc += 2; |
2252 //thisa += 32; | |
2253 //v85 = (char *)v85 + 2; | |
2254 //++v151; | |
2255 //} | |
2256 //while ( v151 < (signed int)uNumLevelDecorations ); | |
2257 } | |
2258 | |
2259 pGameLoadingUI_ProgressBar->Progress(); | |
2260 | |
2261 memcpy(&uNumActors, pSrc, 4); | |
2262 //v91 = (char *)v85 + 4; | |
2263 if (uNumActors > 500) | |
2264 MessageBoxW(nullptr, L"Can't load file!", | |
2265 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:939", 0); | |
2266 | |
2267 pGameLoadingUI_ProgressBar->Progress(); | |
2268 | |
2269 assert(sizeof(Actor) == 836); | |
2270 //pFilename = (char *)(836 * uNumActors); | |
1202 | 2271 memcpy(pActors.data(), pSrc + 4, uNumActors * sizeof(Actor)); |
0 | 2272 pSrc += 4 + uNumActors * sizeof(Actor); |
2273 //v92 = (char *)v91 + (int)pFilename; | |
2274 pGameLoadingUI_ProgressBar->Progress(); | |
2275 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2276 memcpy(&uNumSpriteObjects, pSrc, 4); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2277 assert(uNumSpriteObjects <= 1000 && "Too many objects"); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2278 assert(sizeof(SpriteObject) == 112); |
0 | 2279 |
2280 pGameLoadingUI_ProgressBar->Progress(); | |
2281 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2282 //pFilename = (char *)(112 * uNumSpriteObjects); |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
2283 memcpy(pSpriteObjects.data(), pSrc + 4, uNumSpriteObjects * sizeof(SpriteObject)); |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2284 pSrc += 4 + uNumSpriteObjects * sizeof(SpriteObject); |
0 | 2285 |
2286 //v94 = (char *)v93 + (int)pFilename; | |
2287 pGameLoadingUI_ProgressBar->Progress(); | |
2288 | |
2289 memcpy(&uNumChests, pSrc, 4); | |
2290 //v95 = (char *)v94 + 4; | |
2291 if (uNumChests > 20) | |
2292 MessageBoxW(nullptr, L"Can't load file!", | |
2293 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:968", 0); | |
2294 | |
2295 pGameLoadingUI_ProgressBar->Progress(); | |
2296 | |
2297 assert(sizeof(Chest) == 5324); | |
2298 //pFilename = (char *)(5324 * uNumChests); | |
1202 | 2299 memcpy(pChests.data(), pSrc + 4 , uNumChests * sizeof(Chest)); |
0 | 2300 pSrc += 4 + uNumChests * sizeof(Chest); |
2301 //v96 = (char *)v95 + (int)pFilename; | |
2302 pGameLoadingUI_ProgressBar->Progress(); | |
2303 | |
1736
c6fe09a06712
Player::CompareVariable finished, renamed stru_5E4C90 to stru_5E4C90_MapPersistVars, party::field_4A0 to party::CounterEventValues
Grumpy7
parents:
1642
diff
changeset
|
2304 memcpy(&stru_5E4C90_MapPersistVars, pSrc, 0xC8); |
0 | 2305 pSrc += 0xC8; |
2306 | |
2307 pGameLoadingUI_ProgressBar->Progress(); | |
810 | 2308 memcpy(&loc_time, pSrc, 0x38u); |
0 | 2309 |
2310 free(pSrcMem); | |
2311 | |
630 | 2312 pTileTable->InitializeTileset(Tileset_Dirt); |
2313 pTileTable->InitializeTileset(Tileset_Snow); | |
0 | 2314 //v108 = pTileTypes[0].uTileGroup; |
630 | 2315 pTileTable->InitializeTileset(pTileTypes[0].tileset); |
0 | 2316 //v108 = pTileTypes[1].uTileGroup; |
630 | 2317 pTileTable->InitializeTileset(pTileTypes[1].tileset); |
0 | 2318 //v108 = pTileTypes[2].uTileGroup; |
630 | 2319 pTileTable->InitializeTileset(pTileTypes[2].tileset); |
0 | 2320 //v108 = pTileTypes[3].uTileGroup; |
630 | 2321 pTileTable->InitializeTileset(pTileTypes[3].tileset); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
2322 strcpy(pGroundTileset, byte_6BE124_cfg_textures_DefaultGroundTexture.data()); |
0 | 2323 //v97 = pTileTypes[0].uTileID; |
2324 //v108 = 0; | |
1980 | 2325 TileDesc* v98 = pTileTable->GetTileById(pTileTypes[0].uTileID); |
0 | 2326 //v99 = pBitmaps_LOD->LoadTexture(v98->pTileName, TEXTURE_DEFAULT); |
2006 | 2327 sMainTile_BitmapID = pBitmaps_LOD->LoadTexture(v98->pTileName, TEXTURE_DEFAULT); |
2328 if (sMainTile_BitmapID != -1) | |
2329 pBitmaps_LOD->pTextures[sMainTile_BitmapID].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[sMainTile_BitmapID].palette_id1); | |
0 | 2330 |
2331 _47F0E2(); | |
2332 | |
2333 LABEL_150: | |
2334 //v100 = HIDWORD(uLastVisitDay); | |
2335 //LODWORD(v142) = LODWORD(uLastVisitDay); | |
2336 //HIDWORD(v142) = v100; | |
810 | 2337 if (loc_time.uLastVisitDay) |
0 | 2338 { |
810 | 2339 if ( (signed int)((signed int)(signed __int64)((double)loc_time.uLastVisitDay * 0.234375) / 60 / 60 / 24) % 28 != pParty->uDaysPlayed ) |
0 | 2340 { |
2341 if ( rand() % 100 >= 20 ) | |
2342 v108 = dword_4EC268[rand() % dword_4EC2A8]; | |
2343 else | |
2344 v108 = dword_4EC28C[rand() % dword_4EC2AC]; | |
810 | 2345 sprintf(loc_time.sky_texture_name, "plansky%d", v108); |
0 | 2346 } |
2347 } | |
2348 else | |
2349 { | |
810 | 2350 strcpy(loc_time.sky_texture_name, "plansky3"); |
0 | 2351 } |
2352 //v101 = pBitmaps_LOD->LoadTexture(field_4F8); | |
2006 | 2353 sSky_TextureID = pBitmaps_LOD->LoadTexture(loc_time.sky_texture_name); |
2354 if (sSky_TextureID != -1) | |
2355 pBitmaps_LOD->pTextures[sSky_TextureID].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[sSky_TextureID].palette_id1); | |
0 | 2356 |
2357 pPaletteManager->RecalculateAll(); | |
2358 pSoundList->LoadSound(53, 0); | |
2359 pSoundList->LoadSound(92, 0); | |
2360 pSoundList->LoadSound(57, 0); | |
2361 pSoundList->LoadSound(96, 0); | |
2362 pSoundList->LoadSound(64, 0); | |
2363 pSoundList->LoadSound(103, 0); | |
760 | 2364 for (int i=0; i<3;++i) |
0 | 2365 { |
760 | 2366 |
2367 switch ( pTileTypes[i].tileset ) | |
0 | 2368 { |
760 | 2369 case Tileset_Grass: |
2370 pSoundList->LoadSound(54, 0); | |
2371 pSoundList->LoadSound(93, 0); | |
2372 break; | |
2373 case Tileset_Snow: | |
0 | 2374 pSoundList->LoadSound(58, 0); |
760 | 2375 pSoundList->LoadSound(97, 0); |
0 | 2376 break; |
760 | 2377 case Tileset_2: |
0 | 2378 pSoundList->LoadSound(52, 0); |
760 | 2379 pSoundList->LoadSound(91, 0); |
0 | 2380 break; |
760 | 2381 case Tileset_3: |
0 | 2382 pSoundList->LoadSound(51, 0); |
760 | 2383 pSoundList->LoadSound(90, 0); |
0 | 2384 break; |
760 | 2385 case Tileset_Water: |
0 | 2386 pSoundList->LoadSound(62, 0); |
760 | 2387 pSoundList->LoadSound(101, 0); |
0 | 2388 break; |
760 | 2389 case Tileset_6: |
0 | 2390 pSoundList->LoadSound(49, 0); |
760 | 2391 pSoundList->LoadSound(88, 0); |
0 | 2392 break; |
760 | 2393 case Tileset_Swamp: |
2394 pSoundList->LoadSound(61, 0); | |
2395 pSoundList->LoadSound(100, 0); | |
2396 break; | |
2397 } | |
0 | 2398 } |
2399 return true; | |
2400 } | |
2401 | |
2402 //----- (0047ECC1) -------------------------------------------------------- | |
764 | 2403 int OutdoorLocation::GetTileIdByTileMapId(signed int a2) |
0 | 2404 { |
2405 signed int result; // eax@2 | |
2406 int v3; // eax@3 | |
2407 | |
2408 if ( a2 >= 90 ) | |
2409 { | |
2410 v3 = (a2 - 90) / 36; | |
2411 if ( v3 && v3 != 1 && v3 != 2 ) | |
2412 { | |
2413 if ( v3 == 3 ) | |
2414 result = this->pTileTypes[3].uTileID; | |
2415 else | |
2416 result = a2; | |
2417 } | |
2418 else | |
2419 { | |
2420 result = this->pTileTypes[v3].uTileID; | |
2421 } | |
2422 } | |
2423 else | |
2424 { | |
2425 result = 0; | |
2426 } | |
2427 return result; | |
2428 } | |
2429 | |
2430 //----- (0047ED08) -------------------------------------------------------- | |
2006 | 2431 unsigned int OutdoorLocation::DoGetTileTexture(signed int sX, signed int sY) |
0 | 2432 { |
2433 int v3; // esi@5 | |
2434 unsigned int result; // eax@9 | |
2435 | |
2006 | 2436 assert(sX < 128 && sY < 128); |
67 | 2437 |
2006 | 2438 v3 = this->pTerrain.pTilemap[sY * 128 + sX]; |
630 | 2439 if (v3 < 198) // < Tileset_3 |
67 | 2440 { |
2441 if (v3 >= 90) | |
185 | 2442 v3 = v3 + this->pTileTypes[(v3 - 90) / 36].uTileID - 36 * ((v3 - 90) / 36) - 90; |
67 | 2443 } |
2444 else | |
2445 v3 = v3 + this->pTileTypes[3].uTileID - 198; | |
2446 | |
635 | 2447 #pragma region "New: seasons change" |
2448 extern bool change_seasons; | |
2449 if (change_seasons) | |
2450 switch (pParty->uCurrentMonth) | |
2451 { | |
2452 case 11: case 0: case 1: // winter | |
2453 if (v3 >= 90) // Tileset_Grass begins at TileID = 90 | |
2454 { | |
2455 if (v3 <= 95) // some grastyl entries | |
2456 v3 = 348; | |
2457 else if (v3 <= 113) // rest of grastyl & all grdrt* | |
2458 v3 = 348 + (v3 - 96); | |
2459 } | |
630 | 2460 /*switch (v3) |
2461 { | |
2462 case 102: v3 = 354; break; // grdrtNE -> SNdrtne | |
2463 case 104: v3 = 356; break; // grdrtNW -> SNdrtnw | |
2464 case 108: v3 = 360; break; // grdrtN -> SNdrtn | |
2465 }*/ | |
635 | 2466 break; |
2467 | |
2468 case 2: case 3: case 4: // spring | |
2469 case 8: case 9: case 10: // autumn | |
2470 if (v3 >= 90 && v3 <= 113) // just convert all Tileset_Grass to dirt | |
2471 v3 = 1; | |
2472 break; | |
630 | 2473 |
635 | 2474 case 5: case 6: case 7: // summer |
2475 //all tiles are green grass by default | |
2476 break; | |
630 | 2477 |
635 | 2478 default: assert(pParty->uCurrentMonth >= 0 && pParty->uCurrentMonth < 12); |
2479 } | |
2480 #pragma endregion | |
630 | 2481 |
67 | 2482 return pTileTable->pTiles[v3].uBitmapID; |
0 | 2483 } |
2484 | |
2485 //----- (0047ED83) -------------------------------------------------------- | |
2486 int OutdoorLocation::_47ED83(signed int a2, signed int a3) | |
2487 { | |
812 | 2488 assert(a2 < 128 && a3 < 128); |
0 | 2489 |
812 | 2490 return *(&this->pTerrain.pTilemap[128 * a3] + a2); |
0 | 2491 } |
2492 | |
2493 //----- (0047EDB3) -------------------------------------------------------- | |
2006 | 2494 int OutdoorLocation::ActuallyGetSomeOtherTileInfo(signed int sX, signed int sY) |
0 | 2495 { |
2006 | 2496 assert(sX < 128 && sY < 128); |
0 | 2497 int v3; // esi@5 |
2498 | |
2006 | 2499 v3 = this->pTerrain.pTilemap[sY * 128 + sX]; |
812 | 2500 if ( v3 >= 90 ) |
2501 v3 = v3 + this->pTileTypes[(v3 - 90) / 36].uTileID - 36 * ((v3 - 90) / 36) - 90; | |
67 | 2502 return pTileTable->pTiles[v3].uAttributes; |
0 | 2503 } |
2504 | |
2505 //----- (0047EE16) -------------------------------------------------------- | |
2003 | 2506 int OutdoorLocation::DoGetHeightOnTerrain(signed int sX, signed int sZ) |
0 | 2507 { |
2003 | 2508 assert(sX < 128 && sZ < 128); |
0 | 2509 |
2003 | 2510 return 32 * pTerrain.pHeightmap[sZ * 128 + sX]; |
0 | 2511 } |
2512 | |
2513 //----- (0047EE49) -------------------------------------------------------- | |
764 | 2514 int OutdoorLocation::GetSoundIdByPosition( signed int X_pos, signed int Y_pos, int running ) |
2515 { | |
0 | 2516 signed int v4; // eax@5 |
2517 signed int v5; // eax@7 | |
2518 int v6; // eax@8 | |
2519 signed int v8; // eax@9 | |
764 | 2520 int modif=0; |
0 | 2521 |
764 | 2522 if ( X_pos < 0 || X_pos > 127 || Y_pos < 0 || Y_pos > 127 ) |
0 | 2523 v4 = 0; |
2524 else | |
764 | 2525 v4 = this->pTerrain.pTilemap[128 * Y_pos + X_pos]; |
2526 v5 = GetTileIdByTileMapId(v4); | |
2527 if (running) | |
2528 modif=-39; | |
0 | 2529 if ( !v5 ) |
764 | 2530 return 92+modif; |
2531 | |
2532 switch (pTileTable->pTiles[v5].tileset) | |
0 | 2533 { |
764 | 2534 case 0: return 93+ modif; |
2535 case 1: return 97+ modif; | |
2536 case 2: return 91+ modif; | |
2537 case 3: return 90+ modif; | |
2538 case 4: return 101+ modif; | |
2539 case 5: return 95+ modif; | |
2540 case 6: return 88+ modif; | |
2541 case 7: return 100+ modif; | |
2542 case 8: return 93+ modif; | |
2543 default: | |
2544 v8=pTileTable->pTiles[v5].tileset; | |
2545 if ( (v8 > 9 && v8 <= 17) || (v8 > 21 && v8 <= 27) ) | |
2546 return 96+ modif; | |
2547 else | |
2548 return 95+ modif; | |
0 | 2549 } |
764 | 2550 |
0 | 2551 } |
2552 | |
2553 //----- (0047EF60) -------------------------------------------------------- | |
752 | 2554 int OutdoorLocation::UpdateDiscoveredArea(int X_grid_pos, int Y_grid_poa, int a4) |
0 | 2555 { |
2556 int v4; // ecx@1 | |
2557 int v5; // edx@2 | |
2558 int v6; // edi@2 | |
2559 int v7; // esi@2 | |
2560 int v8; // eax@4 | |
2561 int v9; // ebx@4 | |
2562 int v10; // eax@5 | |
2563 int v11; // eax@7 | |
2564 int v12; // esi@12 | |
2565 char v13; // al@12 | |
2566 int v15; // [sp+4h] [bp-14h]@7 | |
2567 int v16; // [sp+8h] [bp-10h]@5 | |
2568 int v17; // [sp+Ch] [bp-Ch]@2 | |
2569 OutdoorLocation *v18; // [sp+10h] [bp-8h]@1 | |
2570 int v19; // [sp+14h] [bp-4h]@2 | |
2571 int i; // [sp+24h] [bp+Ch]@5 | |
2572 | |
2573 v18 = this; | |
752 | 2574 v4 = Y_grid_poa - 10; |
2575 if ( Y_grid_poa - 10 < Y_grid_poa + 10 ) | |
0 | 2576 { |
752 | 2577 v5 = v4 - Y_grid_poa; |
2578 v6 = (Y_grid_poa - 30); | |
2579 v7 = X_grid_pos; | |
2580 v19 = v4 - Y_grid_poa; | |
2581 v17 = Y_grid_poa + 10 - v4; | |
0 | 2582 while ( 1 ) |
2583 { | |
2584 v8 = abs(v5); | |
2585 v9 = v7 - 10; | |
2586 if ( v7 - 10 < v7 + 10 ) | |
2587 { | |
2588 v16 = v8 * v8; | |
2589 v10 = v9 - v7; | |
2590 for ( i = v9 - v7; ; v10 = i ) | |
2591 { | |
2592 v11 = abs(v10); | |
2593 v15 = v11 * v11 + v16; | |
752 | 2594 if ( v15 <= 100 && v9 >= 20 && v9 <= 107 && v6 >= 0 && v6 <= 87 ) |
0 | 2595 { |
752 | 2596 v13 = 1 << (7 - (v9 - 20) % 8); |
2597 v18->uDicovered_area[v6][(v9 - 20)/8] |= v13; | |
0 | 2598 if ( v15 <= 49 ) |
752 | 2599 v18->uUndiscoveredArea[v6][(v9 - 20)/8] |= v13; |
2600 v7 = X_grid_pos; | |
0 | 2601 } |
2602 ++v9; | |
2603 ++i; | |
2604 if ( v9 >= v7 + 10 ) | |
2605 break; | |
2606 } | |
2607 } | |
752 | 2608 ++v6 ; |
0 | 2609 ++v19; |
2610 --v17; | |
2611 if ( !v17 ) | |
2612 break; | |
2613 v5 = v19; | |
2614 } | |
2615 } | |
2616 return 1; | |
2617 } | |
2618 | |
2619 //----- (0047F04C) -------------------------------------------------------- | |
752 | 2620 bool OutdoorLocation::_47F04C(signed int x_pos, signed int y_pos) |
0 | 2621 { |
2622 bool result; // eax@5 | |
2623 | |
752 | 2624 if ( x_pos < 0 || x_pos >= 88 || y_pos < 0 || y_pos >= 88 ) |
0 | 2625 result = 0; |
2626 else | |
752 | 2627 result = (uUndiscoveredArea[y_pos][x_pos/8] & (unsigned __int8)(1 << (7 - (x_pos) % 8))) != 0; |
0 | 2628 return result; |
2629 } | |
2630 | |
2631 //----- (0047F097) -------------------------------------------------------- | |
752 | 2632 bool OutdoorLocation::_47F097(signed int x_pos, signed int y_pos) |
0 | 2633 { |
2634 bool result; // eax@5 | |
2635 | |
752 | 2636 if ( x_pos < 0 || x_pos >= 88 || y_pos < 0 || y_pos >= 88 ) |
0 | 2637 result = 0; |
2638 else | |
752 | 2639 result = (uDicovered_area[y_pos][x_pos/8] & (unsigned __int8)(1 << (7 - (x_pos) % 8))) != 0; |
0 | 2640 return result; |
2641 } | |
2642 | |
2643 //----- (0047F0E2) -------------------------------------------------------- | |
2644 bool OutdoorLocation::_47F0E2() | |
2645 { | |
2646 signed int v1; // edi@1 | |
2647 OutdoorLocation *v2; // ebx@1 | |
2648 Texture *v3; // ebp@2 | |
2649 | |
2650 v1 = 0; | |
2651 v2 = this; | |
2652 if ( (signed int)pBitmaps_LOD->uNumLoadedFiles > 0 ) | |
2653 { | |
2654 v3 = pBitmaps_LOD->pTextures; | |
2655 do | |
2656 { | |
2657 if ( v1 != -1 ? (int)v3 : 0 ) | |
710 | 2658 v3->uDecompressedSize = v2->pTerrain._47CB57((int)v3->pLevelOfDetail0_prolly_alpha_mask, |
0 | 2659 v3->palette_id2, |
2660 v3->uTextureWidth * v3->uTextureHeight); | |
2661 ++v1; | |
2662 ++v3; | |
2663 } | |
2664 while ( v1 < (signed int)pBitmaps_LOD->uNumLoadedFiles ); | |
2665 } | |
2666 return 1; | |
2667 } | |
2668 | |
2669 //----- (0047F138) -------------------------------------------------------- | |
2670 bool OutdoorLocation::PrepareDecorations() | |
2671 { | |
2672 signed int v1; // ebx@1 | |
2673 __int16 v4; // ax@5 | |
2674 int v5; // eax@7 | |
2675 __int16 v6; // ax@14 | |
2676 signed int v8; // [sp+Ch] [bp-4h]@1 | |
2677 | |
2678 v1 = 0; | |
2679 v8 = 0; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
2680 if ( !_stricmp(pCurrentMapName, "out09.odm") ) |
0 | 2681 v8 = 1; |
2682 | |
2683 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
2684 { | |
1980 | 2685 LevelDecoration* decor = &pLevelDecorations[i]; |
0 | 2686 |
2687 pDecorationList->InitializeDecorationSprite(decor->uDecorationDescID); | |
2688 v4 = pDecorationList->pDecorations[decor->uDecorationDescID].uSoundID; | |
2689 if ( v4 && _6807E0_num_decorations_with_sounds_6807B8 < 9 ) | |
2690 { | |
2691 pSoundList->LoadSound(v4, 0); | |
2692 v5 = _6807E0_num_decorations_with_sounds_6807B8++; | |
2693 _6807B8_level_decorations_ids[v5] = i; | |
2694 } | |
2695 if ( v8 && decor->uCog == 20 ) | |
1489 | 2696 decor->uFlags |= LEVEL_DECORATION_OBELISK_CHEST; |
1514
965af46e8793
Rename LevelDecoration::field_16_event_id to LevelDecoration::uEventID.
yoctozepto
parents:
1489
diff
changeset
|
2697 if ( !decor->uEventID ) |
0 | 2698 { |
2699 if ( decor->IsInteractive() ) | |
2700 { | |
2701 if ( v1 < 124 ) | |
2702 { | |
2703 v6 = v1 + 75; | |
2704 decor->_idx_in_stru123 = v6; | |
1736
c6fe09a06712
Player::CompareVariable finished, renamed stru_5E4C90 to stru_5E4C90_MapPersistVars, party::field_4A0 to party::CounterEventValues
Grumpy7
parents:
1642
diff
changeset
|
2705 if ( !stru_5E4C90_MapPersistVars._decor_events[v1++] ) |
1489 | 2706 decor->uFlags |= LEVEL_DECORATION_INVISIBLE; |
0 | 2707 } |
2708 } | |
2709 } | |
2710 } | |
2711 | |
2712 pGameLoadingUI_ProgressBar->Progress(); | |
2713 return true; | |
2714 } | |
2715 // 6807E0: using guessed type int _6807E0_num_decorations_6807B8; | |
2716 | |
2717 //----- (0047F223) -------------------------------------------------------- | |
2065
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2718 void OutdoorLocation::ArrangeSpriteObjects() |
0 | 2719 { |
2720 char *v2; // esi@2 | |
2721 OutdoorLocation *v5; // [sp+0h] [bp-4h]@1 | |
2722 | |
2723 v5 = this; | |
2065
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2724 |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2725 if ( (signed int)uNumSpriteObjects > 0 ) |
0 | 2726 { |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2727 v2 = (char *)&pSpriteObjects[0].uObjectDescID; |
2065
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2728 for ( int i = 0; i < (signed int)uNumSpriteObjects; ++i ) |
0 | 2729 { |
2065
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2730 if ( pSpriteObjects[i].uObjectDescID ) |
0 | 2731 { |
2065
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2732 if ( !(v2[24] & 8) && !(pObjectList->pObjects[pSpriteObjects[i].uObjectDescID].uFlags & 0x10) ) |
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2733 pSpriteObjects[i].vPosition.z = GetTerrainHeightsAroundParty2(pSpriteObjects[i].vPosition.x, |
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2734 pSpriteObjects[i].vPosition.y, (int *)&v5, 0); |
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2735 if ( pSpriteObjects[i].stru_24.uItemID ) |
0 | 2736 { |
2065
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2737 if ( pSpriteObjects[i].stru_24.uItemID != 220 |
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2738 && pItemsTable->pItems[pSpriteObjects[i].stru_24.uItemID].uEquipType == EQUIP_POTION |
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2739 && !pSpriteObjects[i].stru_24.uEnchantmentType ) |
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2740 pSpriteObjects[i].stru_24.uEnchantmentType = rand() % 15 + 5; |
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2061
diff
changeset
|
2741 pItemsTable->SetSpecialBonus(&pSpriteObjects[i].stru_24); |
0 | 2742 } |
2743 } | |
2744 v2 += 112; | |
2745 } | |
2746 } | |
2747 pGameLoadingUI_ProgressBar->Progress(); | |
2748 } | |
2749 | |
2750 //----- (0047F2D3) -------------------------------------------------------- | |
2751 bool OutdoorLocation::InitalizeActors(int a1) | |
2752 { | |
82 | 2753 Actor *v3; // esi@2 |
0 | 2754 int v4; // eax@3 |
2755 __int16 v5; // ax@11 | |
760 | 2756 int alert_status; // [sp+348h] [bp-8h]@1 |
0 | 2757 int v9; // [sp+34Ch] [bp-4h]@1 |
2758 | |
760 | 2759 alert_status = 0; |
2760 for(int i=0; i<uNumActors; ++i) | |
2761 { | |
2762 v4 = pActors[i].uAttributes; | |
82 | 2763 if ( !(v4 & 0x100000) ) |
760 | 2764 { |
2765 if ( alert_status != 1 ) | |
2766 { | |
2767 pActors[i].uCurrentActionTime = 0; | |
2768 pActors[i].uCurrentActionLength = 0; | |
2769 if ( v4 & 0x10000 ) | |
2770 pActors[i].uAIState = AIState::Disabled; | |
2771 if ( pActors[i].uAIState != AIState::Removed && pActors[i].uAIState != AIState::Disabled && | |
2772 (pActors[i].sCurrentHP == 0 || pActors[i].pMonsterInfo.uHP == 0) ) | |
2773 pActors[i].uAIState = AIState::Dead; | |
2774 pActors[i].vVelocity.x = 0; | |
2775 pActors[i].vVelocity.y = 0; | |
2776 pActors[i].vVelocity.z = 0; | |
2777 pActors[i].UpdateAnimation(); | |
864 | 2778 pActors[i].pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; |
760 | 2779 pActors[i].PrepareSprites(0); |
2780 } | |
2781 else | |
2782 { | |
2783 pActors[i].uAIState = AIState::Disabled; | |
2784 pActors[i].uAttributes = v4 | 0x10000; | |
2785 } | |
2786 } | |
2787 else if ( a1 == 0 ) | |
2788 { | |
2789 pActors[i].uAIState = AIState::Disabled; | |
2790 pActors[i].uAttributes = v4 | 0x10000; | |
2791 } | |
2792 else if ( alert_status != 0 ) | |
2793 { | |
2794 pActors[i].uCurrentActionTime = 0; | |
2795 pActors[i].uCurrentActionLength = 0; | |
2796 if ( v4 & 0x10000 ) | |
2797 pActors[i].uAIState = AIState::Disabled; | |
2798 v5 = pActors[i].uAIState; | |
2799 if ( pActors[i].uAIState != AIState::Removed && pActors[i].uAIState != AIState::Disabled && | |
2800 (pActors[i].sCurrentHP == 0 || pActors[i].pMonsterInfo.uHP == 0) ) | |
2801 pActors[i].uAIState = AIState::Dead; | |
2802 pActors[i].vVelocity.x = 0; | |
2803 pActors[i].vVelocity.y = 0; | |
2804 pActors[i].vVelocity.z = 0; | |
2805 pActors[i].UpdateAnimation(); | |
864 | 2806 pActors[i].pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; |
760 | 2807 pActors[i].PrepareSprites(0); |
2808 } | |
2809 else | |
2810 { | |
2811 pActors[i].uAIState = AIState::Disabled; | |
2812 pActors[i].uAttributes = v4 | 0x10000; | |
2813 alert_status = GetAlertStatus(); | |
2814 } | |
2815 } | |
2816 | |
0 | 2817 pGameLoadingUI_ProgressBar->Progress(); |
760 | 2818 //no use for this |
2819 // Actor thisa; | |
2820 // thisa.pMonsterInfo.uID = 45; | |
2821 // thisa.PrepareSprites(0); | |
0 | 2822 return 1; |
2823 } | |
2824 | |
2825 //----- (0047F3EA) -------------------------------------------------------- | |
630 | 2826 bool OutdoorLocation::LoadRoadTileset() |
0 | 2827 { |
760 | 2828 pTileTypes[3].uTileID = pTileTable->GetTileForTerrainType(pTileTypes[3].tileset, 1); |
2829 pTileTable->InitializeTileset(pTileTypes[3].tileset); | |
0 | 2830 return 1; |
2831 } | |
2832 | |
2833 //----- (0047F420) -------------------------------------------------------- | |
2834 bool OutdoorLocation::LoadTileGroupIds() | |
2835 { | |
2836 for (uint i = 0; i < 3; ++i) | |
760 | 2837 pTileTypes[i].uTileID = pTileTable->GetTileForTerrainType(pTileTypes[i].tileset, 1); |
0 | 2838 |
2839 return true; | |
2840 } | |
2841 | |
2842 //----- (0047B42C) -------------------------------------------------------- | |
142 | 2843 void OutdoorLocation::PrepareActorsDrawList() |
0 | 2844 { |
2845 unsigned int result; // eax@1 | |
142 | 2846 //Actor *v1; // edi@2 |
2847 //__int16 v2; // ax@3 | |
2848 int z; // esi@5 | |
0 | 2849 float v4; // ST48_4@8 |
142 | 2850 //double v5; // ST38_8@8 |
2851 //float v6; // ST48_4@10 | |
2852 //double v7; // ST30_8@10 | |
0 | 2853 unsigned int v8; // eax@11 |
2854 int v9; // edx@11 | |
2855 __int16 v10; // dx@11 | |
2856 unsigned int v11; // eax@13 | |
2857 signed int v12; // eax@16 | |
2858 __int16 v13; // cx@21 | |
2859 SpriteFrame *v14; // eax@24 | |
2860 SpriteFrame *v15; // ebx@25 | |
2861 //int *v16; // eax@25 | |
2862 int v17; // eax@35 | |
2863 int v18; // ST78_4@36 | |
2864 int v19; // eax@36 | |
2865 int v20; // ecx@38 | |
2866 int v21; // eax@38 | |
2867 int v22; // ecx@41 | |
2868 int v23; // ST5C_4@43 | |
2869 int v24; // esi@44 | |
2870 signed __int64 v25; // qtt@45 | |
2871 int v26; // ST54_4@45 | |
2872 int v27; // ecx@45 | |
2873 RenderBillboard *v28; // esi@45 | |
142 | 2874 //__int16 v29; // ax@46 |
0 | 2875 unsigned __int8 v30; // zf@46 |
2876 unsigned __int8 v31; // sf@46 | |
2877 signed __int16 v32; // ax@49 | |
2878 signed int v33; // ecx@50 | |
2879 int v34; // ecx@54 | |
2880 MonsterDesc *v35; // edx@54 | |
2881 int v36; // ecx@54 | |
142 | 2882 //unsigned __int8 v37; // zf@54 |
2883 //unsigned __int8 v38; // sf@54 | |
0 | 2884 unsigned int v39; // [sp-8h] [bp-68h]@23 |
2885 unsigned int v40; // [sp-4h] [bp-64h]@23 | |
2886 int v41; // [sp+24h] [bp-3Ch]@11 | |
2887 int v42; // [sp+28h] [bp-38h]@38 | |
2888 int v43; // [sp+28h] [bp-38h]@45 | |
2889 int v44; // [sp+2Ch] [bp-34h]@36 | |
2890 int v45; // [sp+2Ch] [bp-34h]@44 | |
2891 int v46; // [sp+2Ch] [bp-34h]@45 | |
2892 int v47; // [sp+30h] [bp-30h]@36 | |
2893 int v48; // [sp+30h] [bp-30h]@41 | |
2894 signed int v49; // [sp+34h] [bp-2Ch]@5 | |
2895 int v50; // [sp+34h] [bp-2Ch]@36 | |
2896 int v51; // [sp+34h] [bp-2Ch]@41 | |
2897 int v52; // [sp+34h] [bp-2Ch]@50 | |
2898 int v53; // [sp+38h] [bp-28h]@36 | |
142 | 2899 //int v54; // [sp+3Ch] [bp-24h]@2 |
0 | 2900 int y; // [sp+40h] [bp-20h]@5 |
2901 int x; // [sp+44h] [bp-1Ch]@5 | |
2902 int v57; // [sp+48h] [bp-18h]@45 | |
2903 int v58; // [sp+4Ch] [bp-14h]@45 | |
142 | 2904 //signed int v59; // [sp+50h] [bp-10h]@1 |
0 | 2905 int X; // [sp+54h] [bp-Ch]@36 |
142 | 2906 //__int16 v61; // [sp+58h] [bp-8h]@5 |
0 | 2907 signed __int16 v62; // [sp+5Ch] [bp-4h]@25 |
2908 | |
142 | 2909 //result = 0; |
2910 //v59 = 0; | |
2911 for (int i = 0; i < uNumActors; ++i) | |
0 | 2912 { |
142 | 2913 //v54 = 0; |
2914 //v1 = pActors;//[0].vPosition.z; | |
2915 //do | |
2916 //{ | |
1980 | 2917 Actor* actor = &pActors[i]; |
142 | 2918 //v2 = actor->uAIState; |
2919 | |
2920 actor->uAttributes &= 0xFFFFFFF7u; | |
2921 if (actor->uAIState == Removed || actor->uAIState == Disabled) | |
2922 continue; | |
2923 | |
2924 z = actor->vPosition.z; | |
0 | 2925 v49 = 0; |
142 | 2926 x = actor->vPosition.x; |
2927 y = actor->vPosition.y; | |
2928 if (actor->uAIState == Summoned) | |
0 | 2929 { |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
813
diff
changeset
|
2930 if (PID_TYPE(actor->uSummonerID) != OBJECT_Actor || |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
813
diff
changeset
|
2931 pActors[PID_ID(actor->uSummonerID)].pMonsterInfo.uSpecialAbilityDamageDiceSides != 1 ) |
0 | 2932 { |
142 | 2933 z += floorf(actor->uActorHeight * 0.5f + 0.5f); |
0 | 2934 } |
2935 else | |
2936 { | |
2937 v49 = 1; | |
142 | 2938 pGame->pStru6Instance->_4A7F74(actor->vPosition.x, actor->vPosition.y, z); |
2939 v4 = (1.0 - (double)actor->uCurrentActionTime / (double)actor->uCurrentActionLength) * | |
2940 (double)(2 * actor->uActorHeight); | |
2941 z -= floorf(v4 + 0.5f); | |
2942 if ( z > actor->vPosition.z ) | |
2943 z = actor->vPosition.z; | |
0 | 2944 } |
2945 } | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2946 v8 = stru_5C6E00->Atan2(actor->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x, |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2947 actor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y); |
142 | 2948 LOWORD(v9) = actor->uYawAngle; |
0 | 2949 v41 = ((signed int)(stru_5C6E00->uIntegerPi + ((signed int)stru_5C6E00->uIntegerPi >> 3) + v9 - v8) >> 8) & 7; |
142 | 2950 v10 = actor->uCurrentActionAnimation; |
0 | 2951 if ( pParty->bTurnBasedModeOn ) |
2952 { | |
2953 if ( v10 != 1 ) | |
2954 { | |
2955 LABEL_17: | |
142 | 2956 v12 = actor->uCurrentActionTime; |
0 | 2957 goto LABEL_18; |
2958 } | |
2959 v11 = pMiscTimer->uTotalGameTimeElapsed; | |
2960 } | |
2961 else | |
2962 { | |
2963 if ( v10 != 1 ) | |
2964 goto LABEL_17; | |
2965 v11 = pEventTimer->uTotalGameTimeElapsed; | |
2966 } | |
142 | 2967 v12 = 32 * i + v11; |
0 | 2968 LABEL_18: |
1946
aa3ca49a10f5
pActorBuffs[6] to pActorBuffs[ACTOR_BUFF_PARALYZED]
Grumpy7
parents:
1945
diff
changeset
|
2969 if ( (signed __int64)actor->pActorBuffs[ACTOR_BUFF_STONED].uExpireTime > 0 || (signed __int64)actor->pActorBuffs[ACTOR_BUFF_PARALYZED].uExpireTime > 0 ) |
0 | 2970 v12 = 0; |
142 | 2971 v13 = actor->uAIState; |
0 | 2972 if ( v13 == 17 && !v49 ) |
2973 { | |
2974 v40 = v12; | |
2975 v39 = uSpriteID_Spell11; | |
2976 LABEL_24: | |
2977 v14 = pSpriteFrameTable->GetFrame(v39, v40); | |
2978 goto LABEL_25; | |
2979 } | |
2980 v40 = v12; | |
142 | 2981 v39 = actor->pSpriteIDs[v10]; |
0 | 2982 if ( v13 != 16 ) |
2983 goto LABEL_24; | |
2984 v14 = pSpriteFrameTable->GetFrameBy_x(v39, v12); | |
2985 LABEL_25: | |
2986 v62 = 0; | |
2987 v15 = v14; | |
2988 //v16 = (int *)v14->uFlags; | |
2989 if (v14->uFlags & 2) | |
2990 v62 = 2; | |
2991 if (v14->uFlags & 0x40000) | |
2992 v62 |= 0x40u; | |
2993 if (v14->uFlags & 0x20000) | |
2994 LOBYTE(v62) = v62 | 0x80; | |
2995 if ((256 << v41) & v14->uFlags) | |
2996 v62 |= 4u; | |
2997 if ( v15->uGlowRadius ) | |
2998 { | |
2999 //LOBYTE(v16) = byte_4E94D3; | |
142 | 3000 pMobileLightsStack->AddLight(x, y, z, 0, v15->uGlowRadius, 0xFFu, 0xFFu, 0xFFu, byte_4E94D3); |
0 | 3001 } |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3002 v17 = (x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3003 if (pGame->pIndoorCameraD3D->sRotationX) |
0 | 3004 { |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3005 v18 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 3006 v47 = ((unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) |
3007 + ((unsigned __int64)(v18 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
3008 v50 = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
3009 v53 = (unsigned __int64)(v18 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3010 v44 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1642 | 3011 v19 = ((unsigned __int64)(v44 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16) |
3012 + ((unsigned __int64)(v47 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16); | |
3013 X = ((unsigned __int64)(v44 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16) | |
3014 + ((unsigned __int64)(v47 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16); | |
1637 | 3015 if ( v19 < 262144 || v19 > pODMRenderParams->shading_dist_mist << 16 ) |
142 | 3016 continue; |
0 | 3017 v20 = v53 - v50; |
3018 v42 = v53 - v50; | |
1642 | 3019 v21 = ((unsigned __int64)(v44 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) |
3020 - ((unsigned __int64)(v47 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
0 | 3021 } |
3022 else | |
3023 { | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3024 v48 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 3025 v51 = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; |
3026 v22 = (unsigned __int64)(v48 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
0 | 3027 X = v22 + v51; |
1637 | 3028 if ( v22 + v51 < 262144 || v22 + v51 > pODMRenderParams->shading_dist_mist << 16 ) |
142 | 3029 continue; |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3030 v23 = (unsigned __int64)(((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16) |
1642 | 3031 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
3032 v20 = ((unsigned __int64)(v48 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v23; | |
3033 v42 = ((unsigned __int64)(v48 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v23; | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3034 v21 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
0 | 3035 } |
3036 v45 = v21; | |
3037 v24 = abs(v20); | |
3038 if ( abs(X) >= v24 ) | |
3039 { | |
3040 LODWORD(v25) = 0; | |
1637 | 3041 HIDWORD(v25) = SLOWORD(pODMRenderParams->int_fov_rad); |
0 | 3042 v58 = v25 / X; |
3043 v26 = v25 / X; | |
3044 LODWORD(v25) = 0; | |
1637 | 3045 HIDWORD(v25) = SLOWORD(pODMRenderParams->int_fov_rad); |
0 | 3046 v57 = v25 / X; |
3047 v27 = pViewport->uScreenCenterX | |
3048 - ((signed int)(((unsigned __int64)(v26 * (signed __int64)v42) >> 16) + 32768) >> 16); | |
3049 v43 = pViewport->uScreenCenterX | |
3050 - ((signed int)(((unsigned __int64)(v26 * (signed __int64)v42) >> 16) + 32768) >> 16); | |
3051 v46 = pViewport->uScreenCenterY - ((signed int)(((unsigned __int64)(v25 / X * v45) >> 16) + 32768) >> 16); | |
3052 result = uNumBillboardsToDraw; | |
3053 v28 = &pBillboardRenderList[uNumBillboardsToDraw]; | |
142 | 3054 if (uNumBillboardsToDraw >= 500) |
3055 return; | |
0 | 3056 ++uNumBillboardsToDraw; |
3057 ++uNumSpritesDrawnThisFrame; | |
142 | 3058 actor->uAttributes |= 8u; |
0 | 3059 v28->uHwSpriteID = v15->pHwSpriteIDs[v41]; |
3060 v28->uIndoorSectorID = 0; | |
142 | 3061 v28->uPalette = v15->uPaletteIndex; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3062 v28->_screenspace_x_scaler_packedfloat = (unsigned __int64)(v15->scale * (signed __int64)v58) >> 16; |
1949 | 3063 v30 = HIDWORD(actor->pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime) == 0; |
3064 v31 = SHIDWORD(actor->pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime) < 0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3065 v28->_screenspace_y_scaler_packedfloat = (unsigned __int64)(v15->scale * (signed __int64)v57) >> 16; |
1949 | 3066 if ( v31 || v31 | v30 && LODWORD(actor->pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime) <= 0u ) |
0 | 3067 { |
1954
730166317ed0
pActorBuffs[10] to pActorBuffs[ACTOR_BUFF_MASS_DISTORTION]
Grumpy7
parents:
1949
diff
changeset
|
3068 if ( (signed __int64)actor->pActorBuffs[ACTOR_BUFF_MASS_DISTORTION].uExpireTime > 0i64 ) |
0 | 3069 { |
142 | 3070 v52 = (unsigned __int64)(pGame->pStru6Instance->_4A806F(actor) |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3071 * (signed __int64)v28->_screenspace_y_scaler_packedfloat) >> 16; |
0 | 3072 LABEL_53: |
3073 LOWORD(v27) = v43; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3074 v28->_screenspace_y_scaler_packedfloat = v52; |
0 | 3075 } |
3076 } | |
3077 else | |
3078 { | |
1949 | 3079 v32 = actor->pActorBuffs[ACTOR_BUFF_SHRINK].uPower; |
0 | 3080 if ( v32 ) |
3081 { | |
1949 | 3082 v33 = actor->pActorBuffs[ACTOR_BUFF_SHRINK].uPower; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3083 v28->_screenspace_x_scaler_packedfloat = (unsigned __int64)(65536 / (unsigned __int16)v32 * (signed __int64)v28->_screenspace_x_scaler_packedfloat) >> 16; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3084 v52 = (unsigned __int64)(65536 / v33 * (signed __int64)v28->_screenspace_y_scaler_packedfloat) >> 16; |
0 | 3085 goto LABEL_53; |
3086 } | |
3087 } | |
3088 v28->uScreenSpaceX = v27; | |
142 | 3089 v28->uScreenSpaceY = v46; |
430 | 3090 v28->world_x = x; |
3091 v28->world_y = y; | |
3092 v28->world_z = z; | |
0 | 3093 HIWORD(v34) = HIWORD(X); |
3094 LOWORD(v34) = 0; | |
657 | 3095 v28->dimming_level = 0; |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
813
diff
changeset
|
3096 v28->sZValue = v34 + PID(OBJECT_Actor, i); |
142 | 3097 v28->field_14_actor_id = i; |
0 | 3098 v35 = pMonsterList->pMonsters; |
142 | 3099 v36 = actor->pMonsterInfo.uID; |
0 | 3100 v28->field_1E = v62 | 0x200; |
3101 v28->pSpriteFrame = v15; | |
2006 | 3102 v28->sTintColor = pMonsterList->pMonsters[actor->pMonsterInfo.uID-1].sTintColor;//*((int *)&v35[v36] - 36); |
657 | 3103 if (actor->pActorBuffs[ACTOR_BUFF_STONED].uExpireTime) |
0 | 3104 v28->field_1E = v62 | 0x200; |
3105 } | |
142 | 3106 //LABEL_58: |
3107 //++v59; | |
3108 //v54 += 32; | |
3109 //result = v59; | |
3110 //++v1; | |
3111 //} | |
3112 //while ( v59 < (signed int)uNumActors ); | |
0 | 3113 } |
142 | 3114 //return result; |
0 | 3115 } |
3116 | |
3117 //----- (0044C1E8) -------------------------------------------------------- | |
3118 bool ODMFace::HasEventHint() | |
3119 { | |
428 | 3120 signed int event_index; // eax@1 |
3121 _evt_raw* start_evt; | |
3122 _evt_raw* end_evt; | |
0 | 3123 |
428 | 3124 event_index = 0; |
3125 if ( (uLevelEVT_NumEvents - 1) <= 0 ) | |
3126 return false; | |
3127 while ( pLevelEVT_Index[event_index].uEventID != this->sCogTriggeredID ) | |
0 | 3128 { |
428 | 3129 ++event_index; |
3130 if ( event_index >= (signed int)(uLevelEVT_NumEvents - 1) ) | |
3131 return false; | |
0 | 3132 } |
428 | 3133 end_evt=(_evt_raw*)&pLevelEVT[pLevelEVT_Index[event_index+1].uEventOffsetInEVT]; |
3134 start_evt=(_evt_raw*)&pLevelEVT[pLevelEVT_Index[event_index].uEventOffsetInEVT]; | |
3135 if ( (end_evt->_e_type != EVENT_Exit) || (start_evt->_e_type!= EVENT_MouseOver) ) | |
3136 return false; | |
0 | 3137 else |
428 | 3138 return true; |
1295 | 3139 } |
3140 //----- (0046D49E) -------------------------------------------------------- | |
1413 | 3141 int ODM_GetFloorLevel(int X, signed int Y, int Z, int __unused, int *pIsOnWater, int *bmodel_pid, int bWaterWalk) |
1295 | 3142 { |
3143 BSPModel *pBModel; // esi@4 | |
3144 ODMFace *pFace; // ecx@11 | |
3145 int v14; // edx@20 | |
3146 signed int v18; // edx@26 | |
3147 int v19; // eax@28 | |
3148 int v20; // edx@30 | |
3149 int v21; // ST1C_4@30 | |
3150 signed int v22; // edx@30 | |
3151 signed __int64 v23; // qtt@30 | |
3152 int v24; // eax@36 | |
3153 signed int v25; // ecx@38 | |
3154 int result; // eax@42 | |
2075 | 3155 signed int current_floor_level; // ecx@43 |
1295 | 3156 int v28; // edi@44 |
3157 signed int v29; // edx@44 | |
3158 int v30; // esi@45 | |
3159 int v31; // eax@45 | |
3160 int v33; // ecx@59 | |
3161 int v36; // [sp+14h] [bp-2Ch]@24 | |
3162 int v38; // [sp+1Ch] [bp-24h]@2 | |
3163 int v39; // [sp+20h] [bp-20h]@9 | |
3164 signed int pBModelNum; // [sp+28h] [bp-18h]@1 | |
3165 int pFaceNum; // [sp+2Ch] [bp-14h]@8 | |
2068 | 3166 bool current_vertices_Y; // [sp+30h] [bp-10h]@22 |
3167 bool next_vertices_Y; // [sp+34h] [bp-Ch]@24 | |
1295 | 3168 signed int v46; // [sp+3Ch] [bp-4h]@1 |
2068 | 3169 signed int number_hits; // [sp+58h] [bp+18h]@22 |
2075 | 3170 signed int next_floor_level; // [sp+58h] [bp+18h]@43 |
1295 | 3171 |
3172 v46 = 1; | |
3173 dword_721160[0] = -1; | |
3174 dword_721110[0] = -1; | |
3175 odm_floor_level[0] = GetTerrainHeightsAroundParty2(X, Y, pIsOnWater, bWaterWalk); | |
3176 | |
3177 for ( pBModelNum = 0; pBModelNum < pOutdoor->uNumBModels; ++pBModelNum ) | |
3178 { | |
3179 pBModel = &pOutdoor->pBModels[pBModelNum]; | |
3180 if ( X <= pBModel->sMaxX && X >= pBModel->sMinX && | |
3181 Y <= pBModel->sMaxY && Y >= pBModel->sMinY ) | |
3182 { | |
3183 if ( pBModel->uNumFaces > 0 ) | |
3184 { | |
3185 v39 = 0; | |
3186 for ( pFaceNum = 0; pFaceNum < pBModel->uNumFaces; ++pFaceNum ) | |
3187 { | |
3188 pFace = &pBModel->pFaces[pFaceNum]; | |
2075 | 3189 if ( pFace->Ethereal() ) |
3190 continue; | |
1295 | 3191 if ( (pFace->uPolygonType == POLYGON_Floor || pFace->uPolygonType == POLYGON_InBetweenFloorAndWall) |
3192 && X <= pFace->pBoundingBox.x2 && X >= pFace->pBoundingBox.x1 | |
3193 && Y <= pFace->pBoundingBox.y2 && Y >= pFace->pBoundingBox.y1 ) | |
3194 { | |
3195 | |
3196 for ( uint i = 0; i < pFace->uNumVertices; ++i) | |
3197 { | |
2075 | 3198 odm_floor_face_vert_coord_X[2 * i] = pFace->pXInterceptDisplacements[i] + pBModel->pVertices.pVertices[pFace->pVertexIDs[i]].x; |
3199 odm_floor_face_vert_coord_Y[2 * i] = pFace->pXInterceptDisplacements[i] + pBModel->pVertices.pVertices[pFace->pVertexIDs[i]].y; | |
3200 odm_floor_face_vert_coord_X[2 * i + 1] = pFace->pXInterceptDisplacements[i + 1] + pBModel->pVertices.pVertices[pFace->pVertexIDs[i + 1]].x; | |
3201 odm_floor_face_vert_coord_Y[2 * i + 1] = pFace->pXInterceptDisplacements[i + 1] + pBModel->pVertices.pVertices[pFace->pVertexIDs[i + 1]].y; | |
1295 | 3202 } |
2075 | 3203 odm_floor_face_vert_coord_X[2 * pFace->uNumVertices] = odm_floor_face_vert_coord_X[0]; |
3204 odm_floor_face_vert_coord_Y[2 * pFace->uNumVertices] = odm_floor_face_vert_coord_Y[0]; | |
3205 | |
3206 current_vertices_Y = odm_floor_face_vert_coord_Y[0] >= Y; | |
2068 | 3207 number_hits = 0; |
1295 | 3208 if ( 2 * pFace->uNumVertices > 0 ) |
3209 { | |
3210 for ( int i = 0; i < 2 * pFace->uNumVertices; ++i ) | |
3211 { | |
2068 | 3212 if ( number_hits >= 2 ) |
1295 | 3213 break; |
2075 | 3214 //v36 = odm_floor_face_vert_coord_Y[i + 1]; |
3215 next_vertices_Y = odm_floor_face_vert_coord_Y[i + 1] >= Y; | |
2068 | 3216 if ( current_vertices_Y != next_vertices_Y )//проверка по Y |
1295 | 3217 { |
2075 | 3218 v18 = odm_floor_face_vert_coord_X[i + 1] >= X ? 0 : 2; |
3219 v19 = v18 | (odm_floor_face_vert_coord_X[i] < X); | |
1295 | 3220 if ( v19 != 3 ) |
3221 { | |
3222 if ( !v19 ) | |
2068 | 3223 ++number_hits; |
1295 | 3224 else |
3225 { | |
2075 | 3226 LODWORD(v23) = (Y - odm_floor_face_vert_coord_Y[i]) << 16; |
3227 HIDWORD(v23) = (Y - odm_floor_face_vert_coord_Y[i]) >> 16; | |
3228 v22 = ((((odm_floor_face_vert_coord_X[i + 1] - odm_floor_face_vert_coord_X[i]) * v23 / (odm_floor_face_vert_coord_Y[i + 1] | |
3229 - odm_floor_face_vert_coord_Y[i])) >> 16) + odm_floor_face_vert_coord_X[i]); | |
1295 | 3230 if ( v22 >= X) |
2068 | 3231 ++number_hits; |
1295 | 3232 } |
3233 } | |
3234 } | |
2068 | 3235 current_vertices_Y = next_vertices_Y; |
1295 | 3236 } |
2068 | 3237 if ( number_hits == 1 ) |
1295 | 3238 { |
3239 if ( v46 >= 20 ) | |
3240 break; | |
3241 if ( pFace->uPolygonType == POLYGON_Floor ) | |
3242 v24 = pBModel->pVertices.pVertices[pFace->pVertexIDs[0]].z; | |
3243 else | |
3244 v24 = ((unsigned __int64)(pFace->zCalc1 * (signed __int64)X) >> 16) + ((unsigned __int64)(pFace->zCalc2 * (signed __int64)Y) >> 16) | |
3245 + HIWORD(pFace->zCalc3); | |
3246 v25 = v46++; | |
3247 odm_floor_level[v25] = v24; | |
3248 dword_721160[v25] = pBModelNum; | |
3249 dword_721110[v25] = pFaceNum; | |
3250 } | |
3251 } | |
3252 } | |
3253 | |
3254 } | |
3255 } | |
3256 } | |
3257 } | |
3258 if ( v46 == 1 ) | |
3259 { | |
1413 | 3260 *bmodel_pid = 0; |
1295 | 3261 return odm_floor_level[0]; |
3262 } | |
2075 | 3263 current_floor_level = 0; |
3264 v29 = 0; | |
1295 | 3265 if ( v46 <= 1 ) |
1413 | 3266 *bmodel_pid = 0; |
1295 | 3267 else |
3268 { | |
2075 | 3269 current_floor_level = odm_floor_level[0]; |
3270 for ( uint i = 1; i < v46; ++i ) | |
1295 | 3271 { |
2075 | 3272 next_floor_level = odm_floor_level[i]; |
3273 if ( current_floor_level <= Z + 5 ) | |
1295 | 3274 { |
2075 | 3275 if ( next_floor_level > current_floor_level && next_floor_level <= Z + 5 ) |
1295 | 3276 { |
2075 | 3277 current_floor_level = next_floor_level; |
3278 v29 = i; | |
1295 | 3279 } |
3280 } | |
2075 | 3281 else if ( next_floor_level < current_floor_level ) |
1295 | 3282 { |
2075 | 3283 current_floor_level = next_floor_level; |
3284 v29 = i; | |
1295 | 3285 } |
3286 } | |
2075 | 3287 if ( !v29 ) |
1413 | 3288 *bmodel_pid = 0; |
1295 | 3289 else |
2075 | 3290 *bmodel_pid = dword_721110[v29] | (dword_721160[v29] << 6); |
1295 | 3291 } |
2075 | 3292 if ( v29 ) |
1295 | 3293 { |
3294 *pIsOnWater = false; | |
2075 | 3295 if ( pOutdoor->pBModels[dword_721160[v29]].pFaces[dword_721110[v29]].Fluid()) |
1295 | 3296 *pIsOnWater = true; |
3297 } | |
2075 | 3298 if ( odm_floor_level[v29] >= odm_floor_level[0] ) |
3299 odm_floor_level[0] = odm_floor_level[v29]; | |
1295 | 3300 return odm_floor_level[0]; |
3301 } | |
1412 | 3302 |
1295 | 3303 //not sure if right- or left-handed coordinate space assumed, so this could be normal of inverse normal |
3304 // for a right-handed system, that would be an inverse normal | |
3305 //----- (0046DCC8) -------------------------------------------------------- | |
3306 void ODM_GetTerrainNormalAt(int pos_x, int pos_z, Vec3_int_ *out) | |
3307 { | |
1980 | 3308 uint grid_x = WorldPosToGridCellX(pos_x); |
3309 uint grid_z = WorldPosToGridCellZ(pos_z) - 1; | |
1295 | 3310 |
1980 | 3311 int grid_pos_x1 = GridCellToWorldPosX(grid_x); |
3312 int grid_pos_x2 = GridCellToWorldPosX(grid_x + 1); | |
3313 int grid_pos_z1 = GridCellToWorldPosZ(grid_z); | |
3314 int grid_pos_z2 = GridCellToWorldPosZ(grid_z + 1); | |
1295 | 3315 |
1980 | 3316 int x1z1_y = pOutdoor->DoGetHeightOnTerrain(grid_x, grid_z); |
3317 int x2z1_y = pOutdoor->DoGetHeightOnTerrain(grid_x + 1, grid_z); | |
3318 int x2z2_y = pOutdoor->DoGetHeightOnTerrain(grid_x + 1, grid_z + 1); | |
3319 int x1z2_y = pOutdoor->DoGetHeightOnTerrain(grid_x, grid_z + 1); | |
1295 | 3320 |
3321 float side1_dx, side1_dy, side1_dz, | |
3322 side2_dx, side2_dy, side2_dz; | |
3323 | |
1980 | 3324 int dx = abs(pos_x - grid_pos_x1), |
1295 | 3325 dz = abs(grid_pos_z1 - pos_z); |
3326 if (dz >= dx) | |
3327 { | |
3328 side1_dy = (double)(x1z1_y - x1z2_y); | |
3329 side2_dy = (double)(x2z2_y - x1z2_y); | |
3330 side2_dx = (double)(grid_pos_x2 - grid_pos_x1); | |
3331 side1_dx = (double)(grid_pos_x1 - grid_pos_x2); | |
3332 side2_dz = 0.0;//(double)(grid_pos_z2 - grid_pos_z2); // bug? z2 - z2 | |
3333 side1_dz = (double)(grid_pos_z1 - grid_pos_z2); // z1 - z2 yes | |
3334 //Log::Warning(L"%S %S %u\n", __FILE__, __FUNCTION__, __LINE__); | |
3335 /* |\ | |
3336 side1 | \ | |
3337 |____\ | |
3338 side 2 */ | |
3339 } | |
3340 else | |
3341 { | |
3342 side1_dy = (double)(x2z2_y - x2z1_y); | |
3343 side2_dy = (double)(x1z1_y - x2z1_y); | |
3344 side2_dx = (double)(grid_pos_x1 - grid_pos_x2); | |
3345 side1_dx = (double)(grid_pos_x2 - grid_pos_x1); | |
3346 side2_dz = 0.0;//(double)(grid_pos_z1 - grid_pos_z1); | |
3347 side1_dz = (double)(grid_pos_z2 - grid_pos_z1); | |
3348 | |
3349 /* side 2 | |
3350 _____ | |
3351 \ | | |
3352 \ | side 1 | |
3353 \| */ | |
3354 } | |
3355 | |
3356 float nx = side1_dy * side2_dz - side1_dz * side2_dy; | |
3357 float ny = side1_dx * side2_dy - side1_dy * side2_dx; | |
3358 float nz = side1_dz * side2_dx - side1_dx * side2_dz; | |
3359 | |
3360 float mag = sqrt(nx * nx + ny * ny + nz * nz); | |
3361 if (fabsf(mag) < 1e-6f) | |
3362 { | |
3363 out->y = 0; | |
3364 out->x = 0; | |
3365 out->z = 65536; | |
3366 } | |
3367 else | |
3368 { | |
3369 float invmag = 1.0 / mag; | |
3370 out->x = invmag * nx * 65536.0; | |
3371 out->y = invmag * ny * 65536.0; | |
3372 out->z = invmag * nz * 65536.0; | |
3373 } | |
3374 } | |
3375 //----- (004014E6) -------------------------------------------------------- | |
3376 void MakeActorAIList_ODM() | |
3377 { | |
3378 int v1; // eax@4 | |
3379 int v2; // ebx@4 | |
3380 unsigned int v3; // ecx@4 | |
3381 int v4; // edx@5 | |
3382 int v5; // edx@7 | |
3383 unsigned int v6; // edx@9 | |
3384 unsigned int v7; // ST20_4@10 | |
3385 int v9; // edi@10 | |
3386 int v10; // ebx@14 | |
3387 int v21; // [sp+Ch] [bp-14h]@4 | |
3388 int v22; // [sp+10h] [bp-10h]@4 | |
3389 | |
3390 pParty->uFlags &= 0xFFFFFFCFu; | |
3391 | |
3392 ai_arrays_size = 0; | |
3393 for (uint i = 0; i < uNumActors; ++i) | |
3394 { | |
1980 | 3395 Actor* actor = &pActors[i]; |
1295 | 3396 |
3397 actor->uAttributes &= 0xFFFFFBFF; | |
3398 if (!actor->CanAct()) | |
3399 { | |
3400 actor->uAttributes &= 0xFFFFBFFF; | |
3401 continue; | |
3402 } | |
3403 | |
3404 v22 = abs(pParty->vPosition.z - actor->vPosition.z); | |
3405 v21 = abs(pParty->vPosition.y - actor->vPosition.y); | |
3406 v1 = abs(pParty->vPosition.x - actor->vPosition.x); | |
3407 v2 = v21; | |
3408 v3 = v22; | |
3409 if ( v1 < v21 ) | |
3410 { | |
3411 v4 = v1; | |
3412 v1 = v21; | |
3413 v2 = v4; | |
3414 } | |
3415 if ( v1 < v22 ) | |
3416 { | |
3417 v5 = v1; | |
3418 v1 = v22; | |
3419 v3 = v5; | |
3420 } | |
3421 if ( v2 < (signed int)v3 ) | |
3422 { | |
3423 v6 = v3; | |
3424 v3 = v2; | |
3425 v2 = v6; | |
3426 } | |
3427 v7 = ((unsigned int)(11 * v2) >> 5) + (v3 >> 2) + v1; | |
3428 //v8 = actor->uActorRadius; | |
3429 v9 = v7 - actor->uActorRadius; | |
3430 //v23 = v7 - v8; | |
3431 if ( v9 < 0 ) | |
3432 { | |
3433 v9 = 0; | |
3434 //v23 = 0; | |
3435 } | |
3436 | |
3437 if (v9 < 5632) | |
3438 { | |
3439 v10 = actor->uAttributes & 0xFEFFFFFF; | |
3440 actor->uAttributes = v10; | |
3441 if ( v10 & 0x80000 || actor->GetActorsRelation(0) ) | |
3442 { | |
3443 //v11 = (pParty->uFlags & 0x10) == 0; | |
3444 actor->uAttributes = v10 | 0x1000000; | |
3445 if (v9 < 5120 ) | |
3446 pParty->SetYellowAlert(); | |
3447 if (v9 < 307) | |
3448 pParty->SetRedAlert(); | |
3449 } | |
3450 actor->uAttributes |= 0x00004000; | |
3451 ai_near_actors_distances[ai_arrays_size] = v9; | |
3452 ai_near_actors_ids[ai_arrays_size++] = i; | |
3453 } | |
3454 else | |
3455 actor->uAttributes &= 0xFFFFBFFF; | |
3456 } | |
3457 | |
3458 /* | |
3459 result = v27; | |
3460 if ( v27 > 0 ) | |
3461 { | |
3462 v14 = 0; | |
3463 v15 = 1; | |
3464 v26 = 1; | |
3465 do | |
3466 { | |
3467 while ( 1 ) | |
3468 { | |
3469 v24 = v15; | |
3470 if ( v15 >= result ) | |
3471 break; | |
3472 v16 = ai_near_actors_distances[v14]; | |
3473 if ( v16 > ai_near_actors_distances[v15] ) | |
3474 { | |
3475 v17 = &ai_near_actors_ids[v15]; | |
3476 v18 = ai_near_actors_ids[v14]; | |
3477 ai_near_actors_ids[v14] = *v17; | |
3478 *v17 = v18; | |
3479 v15 = v24; | |
3480 ai_near_actors_distances[v14] = ai_near_actors_distances[v24]; | |
3481 ai_near_actors_distances[v24] = v16; | |
3482 } | |
3483 result = v27; | |
3484 ++v15; | |
3485 } | |
3486 ++v14; | |
3487 v15 = v26 + 1; | |
3488 v26 = v15; | |
3489 } | |
3490 while ( v15 - 1 < result ); | |
3491 }*/ | |
3492 | |
3493 for (uint i = 0; i < ai_arrays_size; ++i) | |
3494 for (uint j = 0; j < i; ++j) | |
3495 if (ai_near_actors_distances[j] > ai_near_actors_distances[i]) | |
3496 { | |
3497 int tmp = ai_near_actors_distances[j]; | |
3498 ai_near_actors_distances[j] = ai_near_actors_distances[i]; | |
3499 ai_near_actors_distances[i] = tmp; | |
3500 | |
3501 tmp = ai_near_actors_ids[j]; | |
3502 ai_near_actors_ids[j] = ai_near_actors_ids[i]; | |
3503 ai_near_actors_ids[i] = tmp; | |
3504 } | |
3505 | |
3506 | |
3507 if (ai_arrays_size > 30) | |
3508 ai_arrays_size = 30; | |
3509 | |
3510 for (uint i = 0; i < ai_arrays_size; ++i) | |
3511 pActors[ai_near_actors_ids[i]].uAttributes |= 0x0400; | |
1297 | 3512 } |
3513 //----- (0046BE0A) -------------------------------------------------------- | |
1642 | 3514 void ODM_UpdateUserInputAndOther() |
1297 | 3515 { |
3516 bool v0; // eax@5 | |
3517 char pOut[32]; // [sp+8h] [bp-20h]@5 | |
3518 | |
3519 UpdateObjects(); | |
3520 ODM_ProcessPartyActions(); | |
3521 if ( pParty->vPosition.x < -22528 | |
3522 || pParty->vPosition.x > 22528 | |
3523 || pParty->vPosition.y < -22528 | |
3524 || pParty->vPosition.y > 22528 ) | |
3525 { | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
3526 strcpy(pOutdoor->pLevelFilename, pCurrentMapName); |
1297 | 3527 v0 = pOutdoor->GetTravelDestination(pParty->vPosition.x, pParty->vPosition.y, pOut, 32); |
3528 if ( !bUnderwater && (pParty->uFlags & (PARTY_FLAGS_1_STANDING_ON_WATER | PARTY_FLAGS_1_FALLING | 0x04) || pParty->uFlags & 0x0200 || pParty->bFlying) || !v0 ) | |
3529 { | |
3530 if ( pParty->vPosition.x < -22528 ) | |
3531 pParty->vPosition.x = -22528; | |
3532 if ( pParty->vPosition.x > 22528 ) | |
3533 pParty->vPosition.x = 22528; | |
3534 if ( pParty->vPosition.y < -22528 ) | |
3535 pParty->vPosition.y = -22528; | |
3536 if ( pParty->vPosition.y > 22528 ) | |
3537 pParty->vPosition.y = 22528; | |
3538 } | |
3539 else | |
3540 { | |
3541 pAudioPlayer->StopChannels(-1, -1); | |
3542 TravelUI_Load(); | |
3543 } | |
3544 } | |
3545 UpdateActors_ODM(); | |
3546 check_event_triggers(); | |
3547 } | |
3548 //----- (0041F54A) -------------------------------------------------------- | |
1642 | 3549 void LoadActualSkyFrame() |
1297 | 3550 { |
3551 if ( pTexture_RestUI_CurrentSkyFrame ) | |
3552 pTexture_RestUI_CurrentSkyFrame->Release(); | |
3553 if ( pTexture_RestUI_CurrentHourglassFrame ) | |
3554 pTexture_RestUI_CurrentHourglassFrame->Release(); | |
3555 pIcons_LOD->SyncLoadedFilesCount(); | |
3556 sprintf(pTmpBuf.data(), "TERRA%03d", pParty->uCurrentMinute / 6 + 10 * pParty->uCurrentHour); | |
3557 pTexture_RestUI_CurrentSkyFrame = pIcons_LOD->LoadTexturePtr(pTmpBuf.data(), TEXTURE_16BIT_PALETTE); | |
1323 | 3558 } |
3559 | |
3560 | |
3561 //----- (004626BA) -------------------------------------------------------- | |
3562 OutdoorLocation::OutdoorLocation() | |
3563 { | |
3564 subconstuctor(); | |
3565 uLastSunlightUpdateMinute = 0; | |
3566 | |
3567 uNumBModels = 0; | |
3568 pBModels = nullptr; | |
3569 } | |
3570 | |
3571 //----- (004626CD) -------------------------------------------------------- | |
3572 void OutdoorLocation::subconstuctor() | |
3573 { | |
3574 //OutdoorLocationTerrain::OutdoorLocationTerrain(&this->pTerrain); | |
3575 field_F0 = 0; | |
3576 field_F4 = 0x40000000u; | |
3577 //DLVHeader::DLVHeader(&v1->ddm); | |
3578 pSpawnPoints = 0; | |
3579 pBModels = 0; | |
3580 pCmap = 0; | |
3581 pFaceIDLIST = 0; | |
3582 pOMAP = 0; | |
3583 } | |
3584 | |
1637 | 3585 |
3586 | |
3587 | |
3588 //----- (00481E55) -------------------------------------------------------- | |
3589 void ODM_Project(unsigned int uNumVertices) | |
3590 { | |
3591 double v1; // st7@2 | |
3592 double v2; // st6@2 | |
3593 double v3; // st5@2 | |
3594 int v4; // eax@2 | |
3595 unsigned int v5; // edx@2 | |
3596 double v6; // st4@3 | |
3597 double v7; // st3@3 | |
3598 | |
3599 if ( (signed int)uNumVertices > 0 ) | |
3600 { | |
3601 v1 = (double)pODMRenderParams->int_fov_rad; | |
3602 v2 = (double)pViewport->uScreenCenterX; | |
3603 v3 = (double)pViewport->uScreenCenterY; | |
3604 v4 = 0; | |
3605 v5 = uNumVertices; | |
3606 do | |
3607 { | |
3608 v6 = v1 * array_507D30[v4]._rhw; | |
3609 v7 = v6 * array_507D30[v4].vWorldViewPosition.y; | |
3610 memcpy(&array_50AC10[v4], &array_507D30[v4], sizeof(array_50AC10[v4])); | |
3611 array_50AC10[v4].vWorldViewProjX = v2 - v7; | |
3612 array_50AC10[v4].vWorldViewProjY = v3 - v6 * array_507D30[v4].vWorldViewPosition.z; | |
3613 ++v4; | |
3614 --v5; | |
3615 } | |
3616 while ( v5 ); | |
3617 } | |
3618 } | |
3619 //----- (00485F64) -------------------------------------------------------- | |
3620 void ODMRenderParams::Initialize() | |
3621 { | |
3622 int v1; // eax@1 | |
3623 int v2; // eax@2 | |
3624 signed __int64 v3; // qtt@4 | |
3625 int v4; // eax@4 | |
3626 | |
3627 this->uCameraFovInDegrees = 75; | |
3628 v1 = stru_5C6E00->uPiMask & 0xD5; | |
3629 if ( v1 >= (signed int)stru_5C6E00->uIntegerHalfPi ) | |
3630 v2 = -stru_5C6E00->pTanTable[stru_5C6E00->uIntegerPi - v1]; | |
3631 else | |
3632 v2 = stru_5C6E00->pTanTable[v1]; | |
3633 LODWORD(v3) = (viewparams->uSomeZ - viewparams->uSomeX) << 31; | |
3634 HIDWORD(v3) = (viewparams->uSomeZ - viewparams->uSomeX) << 15 >> 16; | |
3635 v4 = (signed int)(v3 / v2) >> 16; | |
3636 this->int_fov_rad = v4; | |
3637 this->field_4C = 360000; | |
3638 this->int_fov_rad_inv = 65536 / v4; | |
3639 this->field_50 = 115; | |
3640 //sr_6BE060[1] = 1; | |
1642 | 3641 //RotationToInts(); |
1637 | 3642 } |
2043
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3643 //----- (00473893) -------------------------------------------------------- |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3644 void ODM_ProcessPartyActions() |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3645 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3646 int v1; // edi@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3647 int v2; // ebx@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3648 int v3; // eax@14 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3649 int v6; // esi@45 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3650 ODMFace *face; // ecx@45 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3651 signed int v33; // eax@143 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3652 int v34; // esi@143 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3653 int v35; // esi@147 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3654 int v36; // eax@155 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3655 signed int v37; // esi@159 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3656 signed int v38; // eax@159 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3657 signed int i; // esi@159 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3658 int v40; // esi@162 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3659 bool v42; // eax@180 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3660 signed int v43; // ecx@184 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3661 signed int v44; // edx@184 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3662 int v45; // ecx@200 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3663 BSPModel *pModel; // eax@203 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3664 ODMFace *pODMFace; // esi@203 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3665 int v48; // eax@203 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3666 char v49; // zf@203 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3667 char v50; // sf@203 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3668 unsigned __int8 v51; // of@203 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3669 int v52; // eax@203 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3670 BSPModel *v54; // eax@215 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3671 int v55; // eax@217 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3672 signed int v56; // ebx@228 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3673 int v57; // eax@228 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3674 BSPModel *v58; // eax@228 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3675 unsigned __int64 v59; // qax@228 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3676 BSPModel *v60; // eax@228 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3677 unsigned __int64 v61; // qax@228 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3678 int v62; // eax@241 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3679 unsigned int v65; // ebx@263 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3680 unsigned int v66; // esi@263 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3681 int v67; // eax@263 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3682 signed int v68; // ecx@263 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3683 int v69; // eax@263 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3684 int v70; // ebx@271 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3685 int v71; // esi@271 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3686 int v72; // edi@271 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3687 int v73; // eax@271 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3688 unsigned int v76; // edi@293 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3689 bool v77; // edx@297 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3690 bool v78; // ecx@303 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3691 int v79; // ecx@314 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3692 __int16 v80; // dx@317 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3693 int v81; // ebx@318 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3694 int v82; // ecx@318 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3695 int pTerrainHeight; // eax@321 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3696 int v86; // [sp-20h] [bp-B4h]@246 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3697 int v87; // [sp-20h] [bp-B4h]@248 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3698 signed int v88; // [sp-1Ch] [bp-B0h]@246 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3699 unsigned int v89; // [sp-18h] [bp-ACh]@246 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3700 signed int v90; // [sp-14h] [bp-A8h]@246 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3701 signed int v91; // [sp-10h] [bp-A4h]@246 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3702 int v92; // [sp-Ch] [bp-A0h]@246 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3703 unsigned int v94; // [sp-8h] [bp-9Ch]@246 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3704 int v96; // [sp-4h] [bp-98h]@246 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3705 int v97; // [sp+Ch] [bp-88h]@180 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3706 Vec3_int_ v98; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3707 bool high_fall_flag; // [sp+1Ch] [bp-78h]@33 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3708 int v102; // [sp+20h] [bp-74h]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3709 int v103; // [sp+24h] [bp-70h]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3710 bool bFeatherFall; // [sp+28h] [bp-6Ch]@4 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3711 int v105; // [sp+2Ch] [bp-68h]@24 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3712 bool bWaterWalk; // [sp+30h] [bp-64h]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3713 int v109; // [sp+3Ch] [bp-58h]@28 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3714 int v110; // [sp+40h] [bp-54h]@180 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3715 int v111; // [sp+44h] [bp-50h]@14 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3716 bool hovering; // [sp+48h] [bp-4Ch]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3717 int v113; // [sp+4Ch] [bp-48h]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3718 bool party_running_flag; // [sp+50h] [bp-44h]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3719 int _walk_speed; // [sp+54h] [bp-40h]@48 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3720 int pX; // [sp+58h] [bp-3Ch]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3721 int pY; // [sp+5Ch] [bp-38h]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3722 int v118; // [sp+60h] [bp-34h]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3723 int _angle_x; // [sp+68h] [bp-2Ch]@48 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3724 unsigned int v122; // [sp+70h] [bp-24h]@180 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3725 int pZ; // [sp+74h] [bp-20h]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3726 bool party_walking_flag; // [sp+78h] [bp-1Ch]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3727 int _angle_y; // [sp+7Ch] [bp-18h]@48 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3728 int v126; // [sp+80h] [bp-14h]@48 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3729 int v128; // [sp+88h] [bp-Ch]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3730 int v129; // [sp+8Ch] [bp-8h]@92 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3731 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3732 v1 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3733 v103 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3734 v2 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3735 //*(float *)&v128 = 0.0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3736 v128 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3737 v129 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3738 pX = pParty->vPosition.x; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3739 pY = pParty->vPosition.y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3740 pZ = pParty->vPosition.z; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3741 v113 = pParty->field_6F0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3742 hovering = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3743 bool partyAtHighSlope = IsTerrainSlopeTooHigh(pParty->vPosition.x, pParty->vPosition.y); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3744 party_running_flag = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3745 party_walking_flag = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3746 v102 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3747 pModel = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3748 bWaterWalk = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3749 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3750 if (!pParty->FeatherFallActive())//Проверка падение пера |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3751 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3752 bFeatherFall = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3753 for (int i = 0; i < 4; ++i) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3754 if (pParty->pPlayers[i].WearsItemAnyWhere(ITEM_ARTIFACT_LADYS_ESCORT)) // seems like flying boots |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3755 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3756 bFeatherFall = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3757 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3758 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3759 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3760 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3761 bFeatherFall = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3762 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3763 pParty->uFlags &= ~PARTY_FLAGS_1_STANDING_ON_WATER; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3764 if (pParty->WaterWalkActive())//Проверка хождения по воде |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3765 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3766 //LOBYTE(pParty->uFlags) &= 0x7Fu; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3767 bWaterWalk = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3768 *(short *)&stru_5E4C90_MapPersistVars._decor_events[20 * pParty->pPartyBuffs[PARTY_BUFF_WATER_WALK].uOverlayID + 119] |= 1u; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3769 if (!(pParty->pPartyBuffs[PARTY_BUFF_WATER_WALK].uFlags & 1) && |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3770 pParty->pPlayers[pParty->pPartyBuffs[PARTY_BUFF_WATER_WALK].uCaster - 1].sMana <= 0 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3771 bWaterWalk = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3772 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3773 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3774 int bmodel_standing_on_pid; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3775 int is_on_water = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3776 v3 = ODM_GetFloorLevel(pX, pY, pZ, pParty->uPartyHeight, &is_on_water, &bmodel_standing_on_pid, bWaterWalk); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3777 int is_not_on_bmodel = bmodel_standing_on_pid == 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3778 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3779 v111 = v3; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3780 if ( bFeatherFall ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3781 pParty->uFallStartY = v3; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3782 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3783 v3 = pParty->uFallStartY; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3784 if ( v3 - pZ > 512 && !bFeatherFall && pZ <= v111 + 1 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3785 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3786 if (pParty->uFlags & PARTY_FLAGS_1_LANDING) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3787 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3788 pParty->uFlags &= ~PARTY_FLAGS_1_LANDING; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3789 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3790 else for (int i = 0; i < 4; ++i) // receive falling damage |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3791 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3792 if ( !pParty->pPlayers[i].HasEnchantedItemEquipped(72) && !pParty->pPlayers[i].WearsItem(ITEM_ARTIFACT_HERMES_SANDALS, EQUIP_BOOTS) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3793 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3794 pParty->pPlayers[i].ReceiveDamage( |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3795 (signed int)((pParty->uFallStartY - pZ) * (unsigned __int64)(pParty->pPlayers[i].GetMaxHealth() / 10)) / 256, DMGT_PHISYCAL); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3796 v105 = 20 - pParty->pPlayers[i].GetParameterBonus(pParty->pPlayers[i].GetActualEndurance()); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3797 pParty->pPlayers[i].SetRecoveryTime((signed __int64)((double)v105 * flt_6BE3A4_debug_recmod1 * 2.133333333333333)); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3798 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3799 //} |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3800 //while ( (signed int)v4 <= (signed int)&pPlayers[4] ); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3801 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3802 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3803 v109 = -1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3804 if ( pParty->bFlying ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3805 v109 = GetCeilingHeight(pX, pY, pZ + pParty->uPartyHeight, (int)&v102); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3806 //v107 = bmodel_standing_on_pid == 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3807 v105 = v111 + 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3808 if ( pZ <= v111 + 1 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3809 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3810 v109 = -1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3811 pParty->bFlying = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3812 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3813 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3814 hovering = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3815 high_fall_flag = pZ - v111 <= 32; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3816 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3817 if ( bWalkSound && pParty->walk_sound_timer)//timer update |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3818 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3819 if (pParty->walk_sound_timer >= pEventTimer->uTimeElapsed) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3820 pParty->walk_sound_timer -= pEventTimer->uTimeElapsed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3821 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3822 pParty->walk_sound_timer = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3823 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3824 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3825 if (!bUnderwater && pParty->pPartyBuffs[PARTY_BUFF_FLY].uExpireTime <= 0) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3826 pParty->bFlying = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3827 if (!hovering) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3828 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3829 if ( pParty->floor_face_pid != PID(OBJECT_BModel, bmodel_standing_on_pid) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3830 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3831 if (bmodel_standing_on_pid) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3832 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3833 if ( (bmodel_standing_on_pid >> 6) < pOutdoor->uNumBModels ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3834 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3835 face = pOutdoor->pBModels[bmodel_standing_on_pid >> 6].pFaces; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3836 v6 = bmodel_standing_on_pid & 0x3F; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3837 /*if ( *(char *)(v7->pFacePlane.vNormal.x + 308 * v6 + 31) & 4 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3838 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3839 pParty->field_6F4_packedid = PID(OBJECT_BModel,v108); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3840 v103 = *(short *)(v7->pFacePlane.vNormal.x + 308 * v6 + 292); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3841 }*/ |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3842 if ( BYTE3(face[v6].uAttributes) & 4 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3843 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3844 pParty->floor_face_pid = PID(OBJECT_BModel, bmodel_standing_on_pid); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3845 v103 = face[v6].sCogTriggeredID; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3846 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3847 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3848 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3849 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3850 pParty->floor_face_pid = PID(OBJECT_BModel, bmodel_standing_on_pid); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3851 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3852 _walk_speed = pParty->uWalkSpeed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3853 _angle_y = pParty->sRotationY; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3854 _angle_x = pParty->sRotationX; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3855 v126 = pEventTimer->dt_in_some_format; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3856 /*v119 = (Player **)((unsigned __int64)(pEventTimer->dt_in_some_format |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3857 * (signed __int64)((signed int)(pParty->field_20_prolly_turn_speed |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3858 * stru_5C6E00->uIntegerPi) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3859 / 180)) >> 16);*/ |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3860 __int64 dturn = (unsigned __int64)(pEventTimer->dt_in_some_format * (signed __int64)((signed int)(pParty->y_rotation_speed * stru_5C6E00->uIntegerPi) / 180)) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3861 while (pPartyActionQueue->uNumActions) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3862 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3863 switch (pPartyActionQueue->Next()) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3864 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3865 case PARTY_FlyUp: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3866 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3867 if (!pParty->FlyActive() && !bUnderwater) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3868 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3869 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3870 pParty->bFlying = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3871 if (bUnderwater || |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3872 pParty->pPartyBuffs[PARTY_BUFF_FLY].uFlags & 1 || |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3873 pParty->pPlayers[pParty->pPartyBuffs[PARTY_BUFF_FLY].uCaster - 1].sMana > 0 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3874 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3875 extern int max_flight_height; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3876 if ( pParty->vPosition.z < max_flight_height || hovering ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3877 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3878 pZ += 30; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3879 v113 += 30; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3880 pParty->bFlying = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3881 if ( pZ > max_flight_height ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3882 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3883 pZ = max_flight_height; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3884 v113 = max_flight_height; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3885 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3886 v1 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3887 v2 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3888 pParty->uFallSpeed = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3889 *(float *)&v128 = 0.0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3890 if ( v102 && pZ < v109 && (signed int)(pParty->uPartyHeight + pZ) >= v109 )//сверить с ида(ошибка) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3891 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3892 pParty->field_6E0 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3893 pParty->field_6E4 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3894 pPartyActionQueue->uNumActions = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3895 pParty->uFlags |= PARTY_FLAGS_1_LANDING; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3896 pParty->vPosition.z = v109 - pParty->uPartyHeight - 31; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3897 pParty->field_6F0 = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3898 pParty->bFlying = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3899 pZ = v109 - pParty->uPartyHeight - 31; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3900 v113 = pParty->field_6F0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3901 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3902 pParty->uFallSpeed = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3903 pModel = (BSPModel *)1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3904 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3905 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3906 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3907 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3908 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3909 case PARTY_FlyDown: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3910 if (pParty->FlyActive() || bUnderwater) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3911 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3912 pParty->bFlying = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3913 if ( bUnderwater |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3914 || pParty->pPartyBuffs[PARTY_BUFF_FLY].uFlags & 1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3915 || pParty->pPlayers[pParty->pPartyBuffs[PARTY_BUFF_FLY].uCaster - 1].sMana > 0 )//*(int *)&pParty->pArtifactsFound[6972 * pParty->pPartyBuffs[PARTY_BUFF_FLY].uCaster + 10] > 0 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3916 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3917 pZ -= 30; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3918 v113 -= 30; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3919 pParty->uFallSpeed = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3920 pParty->bFlying = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3921 pModel = (BSPModel *)1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3922 if ( pZ <= v111 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3923 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3924 pParty->bFlying = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3925 pPartyActionQueue->uNumActions = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3926 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3927 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3928 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3929 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3930 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3931 case PARTY_TurnLeft: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3932 if (uTurnSpeed) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3933 _angle_y += uTurnSpeed; //descrete turn |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3934 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3935 _angle_y += dturn * fTurnSpeedMultiplier; // time-based smooth turn |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3936 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3937 _angle_y &= stru_5C6E00->uDoublePiMask; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3938 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3939 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3940 case PARTY_TurnRight: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3941 if (uTurnSpeed) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3942 _angle_y -= uTurnSpeed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3943 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3944 _angle_y -= dturn * fTurnSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3945 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3946 _angle_y &= stru_5C6E00->uDoublePiMask; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3947 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3948 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3949 case PARTY_FastTurnLeft: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3950 if (uTurnSpeed) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3951 _angle_y += uTurnSpeed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3952 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3953 _angle_y += 2.0f * fTurnSpeedMultiplier * (double)dturn; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3954 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3955 _angle_y &= stru_5C6E00->uDoublePiMask; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3956 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3957 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3958 case PARTY_FastTurnRight: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3959 if (!uTurnSpeed) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3960 _angle_y -= 2.0f * fTurnSpeedMultiplier * (double)dturn; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3961 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3962 _angle_y -= uTurnSpeed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3963 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3964 _angle_y &= stru_5C6E00->uDoublePiMask; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3965 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3966 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3967 case PARTY_StrafeLeft: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3968 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3969 *(float *)&v128 = pParty->uWalkSpeed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3970 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3971 float sin_y = sinf(2 * 3.141592653589 * _angle_y / 2048.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3972 int dx = sin_y * pParty->uWalkSpeed * fWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3973 v2 -= 3 * dx / 4; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3974 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3975 float cos_y = cosf(2 * 3.141592653589 * _angle_y / 2048.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3976 int dy = cos_y * pParty->uWalkSpeed * fWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3977 v1 += 3 * dy / 4; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3978 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3979 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3980 party_walking_flag = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3981 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3982 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3983 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3984 case PARTY_StrafeRight: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3985 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3986 *(float *)&v128 = pParty->uWalkSpeed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3987 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3988 float sin_y = sinf(2 * 3.141592653589 * _angle_y / 2048.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3989 int dx = sin_y * pParty->uWalkSpeed * fWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3990 v2 += 3 * dx / 4; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3991 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3992 float cos_y = cosf(2 * 3.141592653589 * _angle_y / 2048.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3993 int dy = cos_y * pParty->uWalkSpeed * fWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3994 v1 -= 3 * dy / 4; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3995 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3996 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3997 party_walking_flag = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3998 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
3999 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4000 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4001 case PARTY_WalkForward: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4002 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4003 *(float *)&v128 = _walk_speed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4004 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4005 float sin_y = sinf(2 * 3.141592653589 * _angle_y / 2048.0), |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4006 cos_y = cosf(2 * 3.141592653589 * _angle_y / 2048.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4007 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4008 int dx = cos_y * pParty->uWalkSpeed * fWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4009 int dy = sin_y * pParty->uWalkSpeed * fWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4010 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4011 extern bool new_speed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4012 if ( new_speed ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4013 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4014 v2 += dx * 12; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4015 v1 += dy * 12; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4016 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4017 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4018 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4019 v2 += dx; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4020 v1 += dy; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4021 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4022 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4023 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4024 party_walking_flag = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4025 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4026 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4027 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4028 case PARTY_RunForward: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4029 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4030 *(float *)&v128 = _walk_speed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4031 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4032 float sin_y = sinf(2 * 3.141592653589 * _angle_y / 2048.0), |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4033 cos_y = cosf(2 * 3.141592653589 * _angle_y / 2048.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4034 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4035 int dx = cos_y * pParty->uWalkSpeed * fWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4036 int dy = sin_y * pParty->uWalkSpeed * fWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4037 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4038 if (pParty->bFlying) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4039 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4040 v2 += 4 * dx; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4041 v1 += 4 * dy; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4042 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4043 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4044 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4045 else if (partyAtHighSlope && !bmodel_standing_on_pid) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4046 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4047 v2 += dx; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4048 v1 += dy; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4049 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4050 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4051 party_walking_flag = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4052 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4053 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4054 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4055 v2 += 2 * dx; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4056 v1 += 2 * dy; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4057 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4058 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4059 party_running_flag = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4060 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4061 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4062 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4063 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4064 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4065 case PARTY_WalkBackward: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4066 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4067 *(float *)&v128 = _walk_speed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4068 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4069 float sin_y = sinf(2 * 3.141592653589 * _angle_y / 2048.0), |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4070 cos_y = cosf(2 * 3.141592653589 * _angle_y / 2048.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4071 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4072 int dx = cos_y * pParty->uWalkSpeed * fBackwardWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4073 v2 -= dx; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4074 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4075 int dy = sin_y * pParty->uWalkSpeed * fBackwardWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4076 v1 -= dy; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4077 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4078 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4079 party_walking_flag = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4080 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4081 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4082 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4083 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4084 case PARTY_RunBackward: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4085 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4086 float sin_y = sinf(2 * 3.141592653589 * _angle_y / 2048.0), |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4087 cos_y = cosf(2 * 3.141592653589 * _angle_y / 2048.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4088 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4089 int dx = cos_y * pParty->uWalkSpeed * fBackwardWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4090 int dy = sin_y * pParty->uWalkSpeed * fBackwardWalkSpeedMultiplier; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4091 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4092 if (pParty->bFlying) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4093 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4094 v2 -= 4 * dx; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4095 v1 -= 4 * dy; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4096 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4097 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4098 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4099 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4100 v2 -= dx; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4101 v1 -= dy; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4102 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4103 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4104 party_walking_flag = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4105 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4106 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4107 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4108 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4109 case PARTY_CenterView: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4110 _angle_x = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4111 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4112 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4113 case PARTY_LookUp: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4114 _angle_x += (signed __int64)(flt_6BE150_look_up_down_dangle * 25.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4115 if ( _angle_x > 128 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4116 _angle_x = 128; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4117 if (uActiveCharacter) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4118 pPlayers[uActiveCharacter]->PlaySound(SPEECH_63, 0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4119 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4120 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4121 case PARTY_LookDown: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4122 _angle_x += (signed __int64)(flt_6BE150_look_up_down_dangle * -25.0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4123 if ( _angle_x < -128 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4124 _angle_x = -128; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4125 if (uActiveCharacter) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4126 pPlayers[uActiveCharacter]->PlaySound(SPEECH_64, 0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4127 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4128 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4129 case PARTY_Jump: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4130 if ( (!partyAtHighSlope || bmodel_standing_on_pid) && !hovering && pParty->field_24 && !(pParty->uFlags & 4) && !(BYTE1(pParty->uFlags) & 2) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4131 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4132 v126 = pParty->field_24 << 6; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4133 hovering = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4134 pParty->uFallSpeed = (signed __int64)((double)(pParty->field_24 << 6) * 1.5 + (double)pParty->uFallSpeed); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4135 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4136 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4137 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4138 case PARTY_Land: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4139 if (pParty->bFlying) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4140 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4141 pParty->uFlags |= PARTY_FLAGS_1_LANDING; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4142 pParty->uFallSpeed = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4143 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4144 pParty->bFlying = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4145 pPartyActionQueue->uNumActions = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4146 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4147 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4148 default: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4149 assert(false); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4150 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4151 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4152 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4153 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4154 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4155 //LABEL_123: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4156 pParty->sRotationY = _angle_y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4157 pParty->sRotationX = _angle_x; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4158 if ( pZ < v111 || pParty->bFlying) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4159 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4160 if ( pParty->bFlying ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4161 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4162 v126 = stru_5C6E00->Cos(GetTickCount()); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4163 v129 = (unsigned __int64)(4i64 * v126) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4164 pZ = v113 + v129; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4165 if ( pModel ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4166 pZ = v113; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4167 if (pParty->FlyActive()) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4168 stru_5E4C90_MapPersistVars._decor_events[20 * pParty->pPartyBuffs[PARTY_BUFF_FLY].uOverlayID + 119] &= 0xFEu; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4169 pParty->uFallStartY = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4170 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4171 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4172 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4173 if ( is_on_water && pParty->uFallSpeed ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4174 sub_42F960_create_object(pX, pY, v111); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4175 pParty->uFallSpeed = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4176 pZ = v111; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4177 pParty->uFallStartY = v111; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4178 v113 = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4179 if (pParty->FlyActive()) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4180 stru_5E4C90_MapPersistVars._decor_events[20 * pParty->pPartyBuffs[PARTY_BUFF_FLY].uOverlayID + 119] |= 1u; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4181 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4182 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4183 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4184 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4185 v113 = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4186 if (pParty->FlyActive()) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4187 stru_5E4C90_MapPersistVars._decor_events[20 * pParty->pPartyBuffs[PARTY_BUFF_FLY].uOverlayID + 119] |= 1u; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4188 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4189 //LABEL_141: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4190 if (hovering && !pParty->bFlying)//расчёт скорости падения |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4191 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4192 v33 = -(pEventTimer->uTimeElapsed * GetGravityStrength()); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4193 v34 = pParty->uFallSpeed + 2 * v33; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4194 pParty->uFallSpeed += 2 * v33; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4195 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4196 else if (!partyAtHighSlope) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4197 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4198 v34 = pParty->uFallSpeed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4199 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4200 else if (!hovering) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4201 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4202 if ( !bmodel_standing_on_pid ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4203 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4204 // rolling down the hill |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4205 // how it's done: you get a little bit pushed in the air along terrain normal, getting in the air |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4206 // and falling to the gravity, gradually sliding downwards. nice trick |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4207 pZ = v111; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4208 ODM_GetTerrainNormalAt(pX, pY, &v98); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4209 v35 = pParty->uFallSpeed + -8 * pEventTimer->uTimeElapsed * GetGravityStrength(); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4210 v129 = abs((signed __int64)v2 * v98.x + (signed __int64)v1 * v98.y + (signed __int64)v35 * v98.z) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4211 v2 += (unsigned __int64)(v129 * (signed __int64)v98.x) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4212 v1 += (unsigned __int64)(v129 * (signed __int64)v98.y) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4213 v34 = v35 + ((unsigned __int64)(v129 * (signed __int64)v98.z) >> 16); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4214 v128 = v1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4215 pParty->uFallSpeed = v34; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4216 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4217 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4218 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4219 v34 = pParty->uFallSpeed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4220 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4221 //LABEL_164: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4222 if ( hovering ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4223 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4224 if ( !bUnderwater && v34 <= 0) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4225 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4226 if ( v34 < -500 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4227 && !pParty->bFlying |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4228 && pParty->vPosition.z - v111 > 1000 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4229 && !pParty->FeatherFallActive()) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4230 { // falling scream |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4231 for (int i = 0; i < 4; ++i) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4232 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4233 if (!pParty->pPlayers[i].HasEnchantedItemEquipped(72) && !pParty->pPlayers[i].WearsItem(ITEM_ARTIFACT_HERMES_SANDALS, EQUIP_BOOTS) && pParty->pPlayers[i].CanAct()) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4234 pParty->pPlayers[i].PlaySound(SPEECH_Falling_scream, 0);//крик падения |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4235 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4236 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4237 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4238 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4239 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4240 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4241 //LABEL_150: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4242 pParty->uFallStartY = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4243 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4244 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4245 if ( v2 * v2 + v1 * v1 < 400 && !partyAtHighSlope ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4246 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4247 *(float *)&v128 = 0.0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4248 v2 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4249 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4250 stru_721530.field_84 = -1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4251 stru_721530.field_70 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4252 stru_721530.prolly_normal_d = pParty->field_14_radius; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4253 stru_721530.field_8_radius = pParty->field_14_radius >> 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4254 v126 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4255 stru_721530.field_0 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4256 stru_721530.height = pParty->uPartyHeight - 32; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4257 do |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4258 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4259 stru_721530.position.x = pX; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4260 stru_721530.normal.x = pX; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4261 stru_721530.velocity.x = v2; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4262 stru_721530.position.y = pY; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4263 stru_721530.normal.y = pY; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4264 stru_721530.normal.z = stru_721530.prolly_normal_d + pZ + 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4265 stru_721530.position.z = stru_721530.height + pZ + 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4266 stru_721530.velocity.y = v128; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4267 stru_721530.velocity.z = pParty->uFallSpeed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4268 v36 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4269 stru_721530.uSectorID = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4270 if ( pParty->bTurnBasedModeOn == 1 && pTurnEngine->turn_stage == 3 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4271 v36 = 13312; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4272 if ( stru_721530._47050A(v36) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4273 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4274 _46E889_collide_against_bmodels(1u); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4275 v37 = WorldPosToGridCellZ(pParty->vPosition.y); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4276 v38 = WorldPosToGridCellX(pParty->vPosition.x); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4277 _46E26D_collide_against_sprites(v38, v37); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4278 _46ED8A_collide_against_sprite_objects(4u); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4279 for ( i = 0; i < (signed int)uNumActors; ++i ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4280 Actor::_46DF1A_collide_against_actor(i, 0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4281 if ( stru_721530.field_7C >= stru_721530.field_6C ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4282 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4283 _angle_x = stru_721530.normal2.x; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4284 _angle_y = stru_721530.normal2.y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4285 v40 = stru_721530.normal2.z - stru_721530.prolly_normal_d - 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4286 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4287 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4288 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4289 _angle_x = pX + fixpoint_mul(stru_721530.field_7C, stru_721530.direction.x); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4290 _angle_y = pY + fixpoint_mul(stru_721530.field_7C, stru_721530.direction.y); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4291 pModel = (BSPModel *)fixpoint_mul(stru_721530.field_7C, stru_721530.direction.z); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4292 v40 = fixpoint_mul(stru_721530.field_7C, stru_721530.direction.z) + pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4293 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4294 v122 = v40; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4295 ODM_GetFloorLevel(_angle_x, _angle_y, v40, pParty->uPartyHeight, &is_on_water, &bmodel_standing_on_pid, 0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4296 v129 = ODM_GetFloorLevel(_angle_x, pY, v40, pParty->uPartyHeight, &is_on_water, &v97, 0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4297 int v119 = ODM_GetFloorLevel(pX, _angle_y, v40, pParty->uPartyHeight, &is_on_water, &v110, 0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4298 pModel = (BSPModel *)IsTerrainSlopeTooHigh(_angle_x, pY); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4299 v42 = IsTerrainSlopeTooHigh(pX, _angle_y); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4300 is_not_on_bmodel = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4301 v118 = v42; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4302 if ( !v97 && !v110 && !bmodel_standing_on_pid ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4303 is_not_on_bmodel = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4304 v43 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4305 v44 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4306 if ( bUnderwater || !is_not_on_bmodel ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4307 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4308 pX = _angle_x; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4309 if ( v43 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4310 pY = _angle_y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4311 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4312 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4313 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4314 if ( pModel && v129 > pZ ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4315 v44 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4316 if ( v118 && v119 > pZ ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4317 v43 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4318 if ( v44 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4319 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4320 pX = _angle_x; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4321 if ( v43 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4322 pY = _angle_y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4323 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4324 else if ( v43 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4325 pY = _angle_y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4326 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4327 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4328 pModel = (BSPModel *)ODM_GetFloorLevel(_angle_x, _angle_y, v40, pParty->uPartyHeight, &is_on_water, &bmodel_standing_on_pid, 0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4329 if ( IsTerrainSlopeTooHigh(_angle_x, _angle_y) && (signed int)pModel <= pZ ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4330 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4331 v43 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4332 pX = _angle_x; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4333 if ( v43 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4334 pY = _angle_y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4335 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4336 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4337 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4338 if ( stru_721530.field_7C >= stru_721530.field_6C ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4339 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4340 if ( !is_not_on_bmodel ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4341 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4342 pX = stru_721530.normal2.x; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4343 pY = stru_721530.normal2.y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4344 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4345 pZ = stru_721530.normal2.z - stru_721530.prolly_normal_d - 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4346 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4347 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4348 stru_721530.field_70 += stru_721530.field_7C; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4349 pX = _angle_x; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4350 pY = _angle_y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4351 v45 = stru_721530.uFaceID; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4352 pZ = v40; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4353 if ( PID_TYPE(stru_721530.uFaceID) == OBJECT_Actor) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4354 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4355 if (pParty->Invisible()) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4356 pParty->pPartyBuffs[PARTY_BUFF_INVISIBILITY].Reset(); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4357 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4358 viewparams->bRedrawGameUI = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4359 v2 = (unsigned __int64)(58500i64 * v2) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4360 pModel = (BSPModel *)58500; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4361 v128 = (unsigned __int64)(58500i64 * v128) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4362 v122 = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4363 ++v126; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4364 pParty->uFallSpeed = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4365 continue; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4366 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4367 if ( PID_TYPE(stru_721530.uFaceID) == OBJECT_Decoration) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4368 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4369 v56 = integer_sqrt(v2 * v2 + v128 * v128); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4370 v118 = v56; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4371 v57 = stru_5C6E00->Atan2(_angle_x - pLevelDecorations[(signed int)stru_721530.uFaceID >> 3].vPosition.x, |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4372 _angle_y - pLevelDecorations[(signed int)stru_721530.uFaceID >> 3].vPosition.y); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4373 v129 = v57; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4374 v58 = (BSPModel *)stru_5C6E00->Cos(v57); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4375 pModel = v58; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4376 v59 = (signed int)v58 * (signed __int64)v56; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4377 v122 = v59 >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4378 v2 = v59 >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4379 v60 = (BSPModel *)stru_5C6E00->Sin(v129); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4380 pModel = v60; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4381 v61 = (signed int)v60 * (signed __int64)v118; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4382 v122 = v61 >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4383 v128 = v61 >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4384 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4385 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4386 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4387 if ( PID_TYPE(stru_721530.uFaceID) == OBJECT_BModel) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4388 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4389 pParty->bFlying = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4390 pModel = &pOutdoor->pBModels[(signed int)stru_721530.uFaceID >> 9]; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4391 //v127 = v46; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4392 pODMFace = &pModel->pFaces[((signed int)stru_721530.uFaceID >> 3) & 0x3F]; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4393 v48 = pODMFace->pBoundingBox.z2 - pODMFace->pBoundingBox.z1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4394 v51 = __OFSUB__(v48, 32); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4395 v49 = v48 == 32; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4396 v50 = v48 - 32 < 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4397 v52 = pODMFace->pFacePlane.vNormal.z; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4398 v129 = (unsigned __int8)(v50 ^ v51 | v49); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4399 v119 = v52 < 46378; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4400 if ( bUnderwater == 1 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4401 v119 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4402 if ( pODMFace->uPolygonType == POLYGON_Floor ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4403 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4404 if ( pParty->uFallSpeed < 0 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4405 pParty->uFallSpeed = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4406 pZ = pModel->pVertices.pVertices[pODMFace->pVertexIDs[0]].z + 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4407 if ( v2 * v2 + v128 * v128 < 400 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4408 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4409 v2 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4410 *(float *)&v128 = 0.0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4411 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4412 if ( pParty->floor_face_pid != v45 && (pODMFace->uAttributes & FACE_PRESSURE_PLATE)) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4413 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4414 pParty->floor_face_pid = v45; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4415 v103 = pODMFace->sCogTriggeredID; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4416 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4417 v2 = (unsigned __int64)(58500i64 * v2) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4418 pModel = (BSPModel *)58500; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4419 v128 = (unsigned __int64)(58500i64 * v128) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4420 v122 = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4421 ++v126; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4422 pParty->uFallSpeed = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4423 continue; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4424 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4425 if ( !v129 && (pODMFace->uPolygonType != POLYGON_InBetweenFloorAndWall || v119) )// упёрся в столб |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4426 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4427 v118 = abs(v128 * pODMFace->pFacePlane.vNormal.y + pParty->uFallSpeed * v52 + v2 * pODMFace->pFacePlane.vNormal.x) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4428 if ((stru_721530.speed >> 3) > v118 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4429 v118 = stru_721530.speed >> 3; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4430 v129 = (unsigned __int64)(v118 * (signed __int64)pODMFace->pFacePlane.vNormal.x) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4431 _walk_speed = (unsigned __int64)(v118 * (signed __int64)pODMFace->pFacePlane.vNormal.y) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4432 v54 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4433 if ( !v119 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4434 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4435 pModel = (BSPModel *)pODMFace->pFacePlane.vNormal.z; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4436 pModel = (BSPModel *)((unsigned __int64)(v118 * (signed __int64)(signed int)pModel) >> 16); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4437 v54 = pModel; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4438 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4439 pParty->uFallSpeed += (int)v54; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4440 v128 += _walk_speed; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4441 v2 += v129; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4442 v55 = stru_721530.prolly_normal_d |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4443 - ((signed int)(pODMFace->pFacePlane.dist |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4444 + v122 * pODMFace->pFacePlane.vNormal.z |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4445 + _angle_y * pODMFace->pFacePlane.vNormal.y |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4446 + _angle_x * pODMFace->pFacePlane.vNormal.x) >> 16); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4447 if ( v55 > 0 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4448 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4449 pX = _angle_x + (pODMFace->pFacePlane.vNormal.x * v55 >> 16); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4450 pY = _angle_y + (pODMFace->pFacePlane.vNormal.y * v55 >> 16); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4451 if ( !v119 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4452 pZ = v122 + (pODMFace->pFacePlane.vNormal.z * v55 >> 16); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4453 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4454 //LABEL_220: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4455 v45 = stru_721530.uFaceID; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4456 if ( pParty->floor_face_pid != v45 && BYTE3(pODMFace->uAttributes) & 4 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4457 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4458 pParty->floor_face_pid = v45; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4459 v103 = pODMFace->sCogTriggeredID; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4460 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4461 v2 = (unsigned __int64)(58500i64 * v2) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4462 pModel = (BSPModel *)58500; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4463 v128 = (unsigned __int64)(58500i64 * v128) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4464 v122 = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4465 ++v126; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4466 pParty->uFallSpeed = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4467 continue; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4468 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4469 v118 = abs(v128 * pODMFace->pFacePlane.vNormal.y + pParty->uFallSpeed * v52 + v2 * pODMFace->pFacePlane.vNormal.x) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4470 if ((stru_721530.speed >> 3) > v118 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4471 v118 = stru_721530.speed >> 3; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4472 v122 = pODMFace->pFacePlane.vNormal.x; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4473 v122 = (unsigned __int64)(v118 * (signed __int64)(signed int)v122) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4474 pModel = (BSPModel *)pODMFace->pFacePlane.vNormal.y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4475 pModel = (BSPModel *)((unsigned __int64)(v118 * (signed __int64)(signed int)pModel) >> 16); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4476 v129 = pODMFace->pFacePlane.vNormal.z; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4477 v129 = (unsigned __int64)(v118 * (signed __int64)v129) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4478 pParty->uFallSpeed += v129; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4479 v2 += v122; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4480 v128 += (int)pModel; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4481 if ( v2 * v2 + v128 * v128 >= 400 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4482 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4483 v45 = stru_721530.uFaceID; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4484 if ( pParty->floor_face_pid != v45 && BYTE3(pODMFace->uAttributes) & 4 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4485 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4486 pParty->floor_face_pid = v45; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4487 v103 = pODMFace->sCogTriggeredID; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4488 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4489 v2 = (unsigned __int64)(58500i64 * v2) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4490 pModel = (BSPModel *)58500; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4491 v128 = (unsigned __int64)(58500i64 * v128) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4492 v122 = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4493 ++v126; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4494 pParty->uFallSpeed = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4495 continue; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4496 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4497 v2 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4498 pParty->uFallSpeed = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4499 *(float *)&v128 = 0.0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4500 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4501 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4502 //LABEL_234: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4503 v2 = (unsigned __int64)(58500i64 * v2) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4504 pModel = (BSPModel *)58500; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4505 v128 = (unsigned __int64)(58500i64 * v128) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4506 v122 = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4507 ++v126; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4508 pParty->uFallSpeed = (unsigned __int64)(58500i64 * pParty->uFallSpeed) >> 16; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4509 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4510 while ( v126 < 100 ); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4511 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4512 if ( bWalkSound && pParty->walk_sound_timer <= 0 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4513 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4514 v122 = abs(pParty->vPosition.x - pX); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4515 v126 = abs(pParty->vPosition.y - pY); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4516 v62 = abs(pParty->vPosition.z - pZ); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4517 if ( integer_sqrt(v122 * v122 + v126 * v126 + v62 * v62) >= 8 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4518 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4519 if ( party_running_flag && (!hovering || !high_fall_flag) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4520 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4521 if ( !is_not_on_bmodel |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4522 && !(BYTE1(pOutdoor->pBModels[pParty->floor_face_pid >> 9].pFaces[(pParty->floor_face_pid >> 3) & 0x3F].uAttributes) & 0x20) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4523 pAudioPlayer->PlaySound(SOUND_RunAlong3DModel, 804, 1, -1, 0, 0, 0, 0);//бег на 3D Modelи |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4524 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4525 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4526 v87 = pOutdoor->GetSoundIdByPosition(WorldPosToGridCellX(pParty->vPosition.x), WorldPosToGridCellZ(pParty->vPosition.y) - 1, 1); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4527 pAudioPlayer->PlaySound((SoundID)v87, 804, 1, -1, 0, 0, 0, 0);//бег по земле |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4528 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4529 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4530 else if ( party_walking_flag && (!hovering || !high_fall_flag) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4531 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4532 if ( is_not_on_bmodel |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4533 || BYTE1(pOutdoor->pBModels[pParty->floor_face_pid >> 9].pFaces[(pParty->floor_face_pid >> 3) & 0x3F].uAttributes) & 0x20 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4534 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4535 v87 = pOutdoor->GetSoundIdByPosition(WorldPosToGridCellX(pParty->vPosition.x), WorldPosToGridCellZ(pParty->vPosition.y) - 1, 0); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4536 pAudioPlayer->PlaySound((SoundID)v87, 804, 1, -1, 0, 0, 0, 0);// хождение по земле |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4537 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4538 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4539 pAudioPlayer->PlaySound(SOUND_WalkAlong3DModel, 804, 1, -1, 0, 0, 0, 0);// хождение на 3D Modelи |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4540 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4541 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4542 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4543 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4544 pAudioPlayer->_4AA258(804); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4545 pParty->walk_sound_timer = 64; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4546 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4547 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4548 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4549 if ( !hovering || !high_fall_flag ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4550 pParty->uFlags &= ~PARTY_FLAGS_1_FALLING; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4551 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4552 pParty->uFlags |= PARTY_FLAGS_1_FALLING; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4553 v126 = WorldPosToGridCellX(pParty->vPosition.x); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4554 v65 = WorldPosToGridCellZ(pParty->vPosition.y) - 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4555 unsigned int v114_a = WorldPosToGridCellX(pX); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4556 v66 = WorldPosToGridCellZ(pY) - 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4557 pModel = (BSPModel *)((~(unsigned int)pOutdoor->ActuallyGetSomeOtherTileInfo(v126, v65) >> 1) & 1); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4558 v122 = (~(unsigned int)pOutdoor->ActuallyGetSomeOtherTileInfo(v114_a, v65) >> 1) & 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4559 v67 = pOutdoor->ActuallyGetSomeOtherTileInfo(v126, v66); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4560 v68 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4561 v69 = (~(unsigned int)v67 >> 1) & 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4562 if ( v114_a == v126 && v66 == v65 && v122 && v69 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4563 v68 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4564 if ( !is_not_on_bmodel ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4565 v68 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4566 if ( v68 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4567 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4568 v70 = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4569 v71 = pX; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4570 v72 = pY; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4571 //pParty->uFallSpeed = v121; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4572 v73 = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4573 pParty->vPosition.x = pX; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4574 pParty->vPosition.y = pY; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4575 pParty->vPosition.z = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4576 pParty->field_6F0 = v113; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4577 if ( pZ > 8160 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4578 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4579 v73 = 8160; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4580 pParty->uFallStartY = 8160; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4581 pParty->vPosition.z = 8160; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4582 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4583 if ( !v103 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4584 || (EventProcessor(v103, 0, 1), pParty->vPosition.x == v71) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4585 && pParty->vPosition.y == v72 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4586 && (v73 = pParty->vPosition.z, pParty->vPosition.z == v70) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4587 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4588 if ( v73 < v111 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4589 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4590 pParty->uFallSpeed = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4591 v73 = v105; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4592 pParty->vPosition.z = v105; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4593 if ( pParty->uFallStartY - v70 > 512 && !bFeatherFall && v70 <= v105 && !bUnderwater )//Fall to the ground(падение на землю с высоты) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4594 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4595 if ( pParty->uFlags & PARTY_FLAGS_1_LANDING ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4596 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4597 pParty->uFlags &= ~PARTY_FLAGS_1_LANDING; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4598 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4599 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4600 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4601 for ( uint i = 1; i <= 4; ++i ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4602 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4603 v110 = pPlayers[i]->GetMaxHealth(); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4604 pPlayers[i]->ReceiveDamage((signed int)((pParty->uFallStartY - v70) * (unsigned __int64)(signed __int64)((double)v110 * 0.1)) / 256, |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4605 DMGT_PHISYCAL); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4606 v110 = 20 - pPlayers[i]->GetParameterBonus(pPlayers[i]->GetActualEndurance()); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4607 pPlayers[i]->SetRecoveryTime((signed __int64)((double)v110 * flt_6BE3A4_debug_recmod1 * 2.133333333333333)); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4608 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4609 v73 = pParty->vPosition.z; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4610 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4611 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4612 pParty->uFallStartY = v70; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4613 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4614 if ( v102 && v73 < v109 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4615 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4616 if ( (signed int)(pParty->uPartyHeight + v73) >= v109 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4617 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4618 pParty->vPosition.z = v109 - pParty->uPartyHeight - 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4619 pParty->field_6F0 = v109 - pParty->uPartyHeight - 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4620 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4621 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4622 pParty->uFlags &= ~0x204; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4623 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4624 return; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4625 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4626 //v76 = pParty->bFlying; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4627 if ( pParty->bFlying || !high_fall_flag || bWaterWalk || !pModel ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4628 v77 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4629 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4630 v77 = v122 != 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4631 bool party_drowning_flag = false; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4632 if ( !pParty->bFlying && high_fall_flag && !bWaterWalk ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4633 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4634 if ( pModel ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4635 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4636 v78 = v69 != 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4637 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4638 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4639 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4640 party_drowning_flag = true; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4641 v78 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4642 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4643 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4644 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4645 v78 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4646 //LABEL_306: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4647 if ( v77 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4648 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4649 pParty->vPosition.x = pX; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4650 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4651 if ( v78 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4652 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4653 pParty->vPosition.y = pY; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4654 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4655 if ( v78 || v77) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4656 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4657 if ( bWaterWalk ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4658 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4659 pParty->uFlags &= ~PARTY_FLAGS_1_STANDING_ON_WATER; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4660 //v79 = 20 * pParty->pPartyBuffs[PARTY_BUFF_WATER_WALK].uOverlayID + 6180178; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4661 //*(short *)&stru_5E4C90._decor_events[20 * pParty->pPartyBuffs[PARTY_BUFF_WATER_WALK].uOverlayID + 119] |= 1u; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4662 v79 = (int)&stru_5E4C90_MapPersistVars._decor_events[20 * pParty->pPartyBuffs[PARTY_BUFF_WATER_WALK].uOverlayID + 119]; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4663 *(short *)v79 |= 1u; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4664 if ( !v122 || !v69 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4665 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4666 if ( !pParty->bFlying ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4667 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4668 v80 = *(short *)v79; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4669 pParty->uFlags |= PARTY_FLAGS_1_STANDING_ON_WATER; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4670 *(short *)v79 = v80 & 0xFFFE; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4671 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4672 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4673 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4674 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4675 else if ( bWalkSound && pParty->walk_sound_timer <= 0 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4676 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4677 pAudioPlayer->_4AA258(804); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4678 pParty->walk_sound_timer = 64; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4679 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4680 //LABEL_318: |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4681 v81 = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4682 v82 = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4683 pParty->vPosition.z = pZ; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4684 if ( pZ > 8160 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4685 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4686 v82 = 8160; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4687 pParty->uFallStartY = 8160; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4688 pParty->vPosition.z = 8160; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4689 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4690 LOWORD(pParty->uFlags) &= 0xFDFBu; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4691 //pParty->uFallSpeed = v121; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4692 pParty->field_6F0 = v113; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4693 if ( party_drowning_flag ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4694 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4695 pTerrainHeight = GetTerrainHeightsAroundParty2(pParty->vPosition.x, pParty->vPosition.y, &v110, 1); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4696 if ( pParty->vPosition.z <= pTerrainHeight + 1 )//положение группы всегда +1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4697 pParty->uFlags |= PARTY_FLAGS_1_WATER_DAMAGE; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4698 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4699 if ( !v103 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4700 || (EventProcessor(v103, 0, 1), pParty->vPosition.x == pX) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4701 && pParty->vPosition.y == pY |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4702 && (v82 = pParty->vPosition.z, pParty->vPosition.z == v81) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4703 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4704 if ( v82 < v111 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4705 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4706 v82 = v105; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4707 pParty->uFallSpeed = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4708 pParty->vPosition.z = v105; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4709 if ( pParty->uFallStartY - v81 > 512 && !bFeatherFall && v81 <= v105 && !bUnderwater )//Fall to the water(падение на воду с высоты) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4710 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4711 if ( pParty->uFlags & PARTY_FLAGS_1_LANDING ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4712 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4713 pParty->uFlags &= ~PARTY_FLAGS_1_LANDING; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4714 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4715 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4716 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4717 for ( uint i = 1; i <= 4; ++i ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4718 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4719 v110 = pPlayers[i]->GetMaxHealth(); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4720 pPlayers[i]->ReceiveDamage((signed int)((pParty->uFallStartY - v81) * (unsigned __int64)(signed __int64)((double)v110 * 0.1)) / 256, |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4721 DMGT_PHISYCAL); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4722 v110 = 20 - pPlayers[i]->GetParameterBonus(pPlayers[i]->GetActualEndurance()); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4723 pPlayers[i]->SetRecoveryTime((signed __int64)((double)v110 * flt_6BE3A4_debug_recmod1 * 2.133333333333333)); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4724 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4725 v82 = pParty->vPosition.z; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4726 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4727 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4728 pParty->uFallStartY = v81; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4729 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4730 if ( v102 && v82 < v109 && (signed int)(pParty->uPartyHeight + v82) >= v109 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4731 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4732 pParty->vPosition.z = v82 + pParty->uPartyHeight - v109 + 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4733 pParty->field_6F0 = v82 + pParty->uPartyHeight - v109 + 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4734 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4735 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4736 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4737 //----- (0046D8E3) -------------------------------------------------------- |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4738 int GetCeilingHeight(int Party_X, signed int Party_Y, int Party_ZHeight, int pFaceID) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4739 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4740 signed int v13; // eax@25 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4741 int v14; // edx@27 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4742 int v16; // ST18_4@29 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4743 signed int v17; // edx@29 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4744 signed __int64 v18; // qtt@29 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4745 int v19; // eax@35 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4746 signed int v20; // ecx@37 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4747 signed int v22; // ebx@42 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4748 int v24; // edx@44 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4749 int v25; // eax@44 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4750 int v27; // [sp+10h] [bp-34h]@21 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4751 bool v34; // [sp+30h] [bp-14h]@21 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4752 bool v35; // [sp+34h] [bp-10h]@23 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4753 signed int v37; // [sp+38h] [bp-Ch]@21 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4754 signed int v38; // [sp+38h] [bp-Ch]@42 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4755 signed int v39; // [sp+3Ch] [bp-8h]@1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4756 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4757 dword_720ED0[0] = -1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4758 dword_720E80[0] = -1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4759 v39 = 1; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4760 ceiling_height_level[0] = 10000;//нет потолка |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4761 for ( uint i = 0; i < (signed int)pOutdoor->uNumBModels; ++i ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4762 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4763 if ( Party_X <= pOutdoor->pBModels[i].sMaxX && Party_X >= pOutdoor->pBModels[i].sMinX |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4764 && Party_Y <= pOutdoor->pBModels[i].sMaxY && Party_Y >= pOutdoor->pBModels[i].sMinY ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4765 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4766 for ( uint j = 0; j < pOutdoor->pBModels[i].uNumFaces; ++j ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4767 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4768 if ( (pOutdoor->pBModels[i].pFaces[j].uPolygonType == POLYGON_Ceiling |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4769 || pOutdoor->pBModels[i].pFaces[j].uPolygonType == POLYGON_InBetweenCeilingAndWall) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4770 && !(BYTE3(pOutdoor->pBModels[i].pFaces[j].uAttributes) & 0x20) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4771 && Party_X <= pOutdoor->pBModels[i].pFaces[j].pBoundingBox.x2 && Party_X >= pOutdoor->pBModels[i].pFaces[j].pBoundingBox.x1 |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4772 && Party_Y <= pOutdoor->pBModels[i].pFaces[j].pBoundingBox.y2 && Party_Y >= pOutdoor->pBModels[i].pFaces[j].pBoundingBox.y1 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4773 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4774 for ( uint v = 0; v < pOutdoor->pBModels[i].pFaces[j].uNumVertices; v++ ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4775 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4776 word_720DB0_xs[2 * v] = pOutdoor->pBModels[i].pFaces[j].pXInterceptDisplacements[v] + LOWORD(pOutdoor->pBModels[i].pVertices.pVertices[pOutdoor->pBModels[i].pFaces[j].pVertexIDs[v]].x); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4777 word_720CE0_ys[2 * v] = pOutdoor->pBModels[i].pFaces[j].pXInterceptDisplacements[v] + LOWORD(pOutdoor->pBModels[i].pVertices.pVertices[pOutdoor->pBModels[i].pFaces[j].pVertexIDs[v]].y); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4778 word_720DB0_xs[2 * v + 1] = pOutdoor->pBModels[i].pFaces[j].pXInterceptDisplacements[v] + LOWORD(pOutdoor->pBModels[i].pVertices.pVertices[pOutdoor->pBModels[i].pFaces[j].pVertexIDs[v + 1]].x); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4779 word_720CE0_ys[2 * v + 1] = pOutdoor->pBModels[i].pFaces[j].pXInterceptDisplacements[v] + LOWORD(pOutdoor->pBModels[i].pVertices.pVertices[pOutdoor->pBModels[i].pFaces[j].pVertexIDs[v + 1]].y); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4780 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4781 v27 = 2 * pOutdoor->pBModels[i].pFaces[j].uNumVertices; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4782 word_720DB0_xs[2 * pOutdoor->pBModels[i].pFaces[j].uNumVertices] = word_720DB0_xs[0]; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4783 word_720CE0_ys[2 * pOutdoor->pBModels[i].pFaces[j].uNumVertices] = word_720CE0_ys[0]; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4784 v34 = word_720CE0_ys[0] >= Party_Y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4785 v37 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4786 for ( uint v = 0; v < v27; ++v ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4787 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4788 if ( v37 >= 2 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4789 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4790 v35 = word_720CE0_ys[v + 1] >= Party_Y; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4791 if ( v34 != v35 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4792 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4793 v13 = word_720DB0_xs[v + 1] >= Party_X ? 0 : 2; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4794 v14 = v13 | (word_720DB0_xs[v] < Party_X); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4795 if ( v14 != 3 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4796 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4797 if ( !v14 || ( v16 = word_720CE0_ys[v + 1] - word_720CE0_ys[v], |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4798 v17 = Party_Y - word_720CE0_ys[v], |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4799 LODWORD(v18) = v17 << 16, |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4800 HIDWORD(v18) = v17 >> 16, |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4801 (signed int)(((unsigned __int64)(((signed int)word_720DB0_xs[v + 1] |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4802 - (signed int)word_720DB0_xs[v]) * v18 / v16) >> 16) + word_720DB0_xs[v]) >= Party_X) ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4803 ++v37; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4804 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4805 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4806 v34 = v35; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4807 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4808 if ( v37 == 1 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4809 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4810 if ( v39 >= 20 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4811 break; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4812 if ( pOutdoor->pBModels[i].pFaces[j].uPolygonType == POLYGON_Ceiling ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4813 v19 = pOutdoor->pBModels[i].pVertices.pVertices[pOutdoor->pBModels[i].pFaces[j].pVertexIDs[0]].z; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4814 else |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4815 v19 = ((unsigned __int64)(pOutdoor->pBModels[i].pFaces[j].zCalc1 * (signed __int64)Party_X) >> 16) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4816 + ((unsigned __int64)(pOutdoor->pBModels[i].pFaces[j].zCalc2 * (signed __int64)Party_Y) >> 16) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4817 + HIWORD(pOutdoor->pBModels[i].pFaces[j].zCalc3); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4818 v20 = v39++; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4819 ceiling_height_level[v20] = v19; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4820 dword_720ED0[v20] = i; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4821 dword_720E80[v20] = j; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4822 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4823 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4824 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4825 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4826 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4827 if ( !v39 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4828 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4829 pFaceID = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4830 return ceiling_height_level[0]; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4831 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4832 v22 = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4833 for ( v38 = 0; v38 < v39; ++v38 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4834 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4835 if ( ceiling_height_level[v38] == ceiling_height_level[0] ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4836 v22 = v38; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4837 else if ( ceiling_height_level[v38] < ceiling_height_level[0] && ceiling_height_level[0] > Party_ZHeight + 15 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4838 v22 = v38; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4839 else if ( ceiling_height_level[v38] > ceiling_height_level[0] && ceiling_height_level[v38] <= Party_ZHeight + 15 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4840 v22 = v38; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4841 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4842 if ( v22 ) |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4843 { |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4844 *(int *)pFaceID = dword_720E80[v22] | (dword_720ED0[v22] << 6); |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4845 return ceiling_height_level[v22];//если есть преграда |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4846 } |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4847 pFaceID = 0; |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4848 return ceiling_height_level[v22];// нет никакой преграды |
2ccf638342d6
int max_flight_height and GetCeilingHeight function
Ritor1
parents:
2037
diff
changeset
|
4849 } |