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