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