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