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