Mercurial > mm7
annotate Outdoor.cpp @ 1680:33171f1f3daf
Merge
author | Nomad |
---|---|
date | Fri, 20 Sep 2013 14:55:53 +0200 |
parents | 8971dc85b8fb |
children | c6fe09a06712 |
rev | line source |
---|---|
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1141
diff
changeset
|
1 #ifdef _MSC_VER |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1141
diff
changeset
|
2 #define _CRT_SECURE_NO_WARNINGS |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1141
diff
changeset
|
3 #endif |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1141
diff
changeset
|
4 |
1016 | 5 #include "stru6.h" |
1323 | 6 #include "Weather.h" |
1016 | 7 #include "Sprites.h" |
8 #include "LightmapBuilder.h" | |
0 | 9 #include "Outdoor.h" |
1277 | 10 #include "Outdoor_stuff.h" |
0 | 11 #include "Party.h" |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
12 #include "SpriteObject.h" |
0 | 13 #include "LOD.h" |
14 #include "PaletteManager.h" | |
15 #include "GUIProgressBar.h" | |
16 #include "AudioPlayer.h" | |
17 #include "DecorationList.h" | |
18 #include "Math.h" | |
19 #include "ObjectList.h" | |
20 #include "Game.h" | |
21 #include "Actor.h" | |
22 #include "Chest.h" | |
23 #include "stru123.h" | |
24 #include "Time.h" | |
25 #include "Viewport.h" | |
26 #include "Events.h" | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1391
diff
changeset
|
27 #include "ParticleEngine.h" |
0 | 28 |
29 #include "mm7_data.h" | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
813
diff
changeset
|
30 #include "MM7.h" |
1262 | 31 #include "Lights.h" |
0 | 32 |
33 | |
1016 | 34 #include "MapInfo.h" |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
35 #include "Outdoor_stuff.h" |
1016 | 36 #include "BSPModel.h" |
1297 | 37 #include "GUIWindow.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 { | |
121 | 85 //unsigned int v2; // ebx@1 |
0 | 86 int v3; // ST18_4@3 |
87 int v4; // ST04_4@19 | |
88 int v5; // eax@19 | |
89 | |
1642 | 90 pGame->pIndoorCameraD3D->debug_flags = 0; |
186 | 91 if (viewparams->draw_d3d_outlines) |
1642 | 92 pGame->pIndoorCameraD3D->debug_flags |= ODM_RENDER_DRAW_D3D_OUTLINES; |
186 | 93 |
121 | 94 if (bRedraw || pRenderer->pRenderD3D) |
0 | 95 { |
1642 | 96 //pODMRenderParams->RotationToInts(); |
1637 | 97 sub_481ED9_MessWithODMRenderParams(); |
0 | 98 } |
762 | 99 |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
100 pODMRenderParams->uMapGridCellX = WorldPosToGridCellX(pParty->vPosition.x); |
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
101 pODMRenderParams->uMapGridCellZ = WorldPosToGridCellZ(pParty->vPosition.y); |
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
102 assert(pODMRenderParams->uMapGridCellX <= 127 && pODMRenderParams->uMapGridCellZ <= 127); |
762 | 103 |
121 | 104 if (bRedraw) |
0 | 105 { |
106 sub_487DA9(); | |
107 } | |
108 if ( pParty->uCurrentMinute != pOutdoor->uLastSunlightUpdateMinute ) | |
109 pOutdoor->UpdateSunlightVectors(); | |
110 pOutdoor->UpdateFog(); | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
111 //pGame->pIndoorCameraD3D->sr_Reset_list_0037C(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
112 |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
113 if (pRenderer->pRenderD3D) // d3d - redraw always |
0 | 114 { |
115 pRenderer->DrawSkyD3D(); | |
116 pRenderer->DrawBuildingsD3D(); | |
985 | 117 pRenderer->RenderTerrainD3D(); |
0 | 118 } |
83 | 119 else |
120 { | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
121 __debugbreak(); // no SW Rendering |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
122 /*if (!bRedraw) |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
123 pRenderer->OnOutdoorRedrawSW(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
124 else |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
125 { |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
126 pRenderer->DrawBuildingsSW(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
127 pRenderer->DrawBezierTerrain(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
128 sr_sub_486F92_MessWithEdgesAndSpans(); |
1637 | 129 pODMRenderParams->ApplyLightmapsSW(); |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
130 }*/ |
83 | 131 } |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
132 |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
133 |
0 | 134 pMobileLightsStack->uNumLightsActive = 0; |
135 pStationaryLightsStack->uNumLightsActive = 0; | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
136 /*if ( !pRenderer->pRenderD3D ) |
0 | 137 { |
138 pRenderer->ExecOutdoorDrawSW(); | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
139 pGame->pIndoorCameraD3D->sr_438240_draw_lits(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
140 }*/ |
0 | 141 pGame->PushStationaryLights(-1); |
142 pGame->PrepareBloodsplats(); | |
121 | 143 if (bRedraw) |
0 | 144 { |
145 v4 = WorldPosToGridCellZ(pParty->vPosition.y); | |
146 v5 = WorldPosToGridCellX(pParty->vPosition.x); | |
752 | 147 pOutdoor->UpdateDiscoveredArea(v5, v4, 1); |
0 | 148 } |
149 pGame->uFlags2 &= 0xFFFFFFFEu; | |
142 | 150 if (pRenderer->pRenderD3D && pRenderer->bUsingSpecular) |
0 | 151 pGame->pLightmapBuilder->uFlags |= 1u; |
152 else | |
153 pGame->pLightmapBuilder->uFlags &= 0xFFFFFFFEu; | |
142 | 154 |
0 | 155 uNumDecorationsDrawnThisFrame = 0; |
156 uNumSpritesDrawnThisFrame = 0; | |
157 uNumBillboardsToDraw = 0; | |
142 | 158 |
432 | 159 PrepareActorsDrawList(); |
1637 | 160 if (!pODMRenderParams->bDoNotRenderDecorations) |
432 | 161 pRenderer->PrepareDecorationsRenderList_ODM(); |
142 | 162 |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
163 pRenderer->DrawSpriteObjects_ODM(); |
161 | 164 pRenderer->TransformBillboardsAndSetPalettesODM(); |
0 | 165 } |
166 | |
167 | |
168 //----- (00441CFF) -------------------------------------------------------- | |
169 void OutdoorLocation::Draw() | |
170 { | |
121 | 171 bool redrawWorld = true; |
172 if ( !(pParty->uFlags & 2) && !(pGame->uFlags2 & 1) ) | |
173 redrawWorld = false; | |
174 pOutdoor->ExecDraw(redrawWorld); | |
0 | 175 |
176 pGame->DrawParticles(); | |
177 pWeather->Draw(); | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1391
diff
changeset
|
178 trail_particle_generator.UpdateParticles(); |
0 | 179 } |
180 | |
181 //----- (00488E23) -------------------------------------------------------- | |
182 double OutdoorLocation::GetFogDensityByTime() | |
183 { | |
184 int v1; // eax@3 | |
185 double v2; // st7@3 | |
186 | |
187 if ( pParty->uCurrentHour < 5 ) | |
188 goto LABEL_9; | |
189 if ( pParty->uCurrentHour >= 6 ) | |
190 { | |
191 if ( pParty->uCurrentHour < 0x14 ) | |
192 { | |
750 | 193 pWeather->bNight = 0; |
0 | 194 v2 = 0.0; |
195 return v2 * 0.016666668; | |
196 } | |
197 if ( pParty->uCurrentHour < 0x15 ) | |
198 { | |
199 v1 = 0; | |
200 v2 = (double)(pParty->uCurrentHour - 20) * 60.0 + (double)(signed int)pParty->uCurrentMinute; | |
201 goto LABEL_4; | |
202 } | |
203 LABEL_9: | |
204 v2 = 60.0; | |
750 | 205 pWeather->bNight = 1; |
0 | 206 return v2 * 0.016666668; |
207 } | |
208 v1 = 0; | |
209 v2 = 60.0 - (double)(60 * pParty->uCurrentHour + pParty->uCurrentMinute - 300); | |
210 LABEL_4: | |
750 | 211 pWeather->bNight = v1; |
0 | 212 return v2 * 0.016666668; |
213 } | |
214 | |
215 //----- (00488EB1) -------------------------------------------------------- | |
216 int OutdoorLocation::GetSomeOtherTileInfo(int sX, int sY) | |
217 { | |
67 | 218 //OutdoorLocation *v3; // esi@1 |
0 | 219 unsigned int v4; // edi@1 |
220 unsigned int v5; // eax@1 | |
221 int result; // eax@5 | |
222 | |
67 | 223 /* v3 = this; |
0 | 224 v4 = WorldPosToGridCellZ(sY); |
225 v5 = WorldPosToGridCellX(sX); | |
226 if ( (v5 & 0x80000000u) != 0 || (signed int)v5 > 127 || (v4 & 0x80000000u) != 0 || (signed int)v4 > 127 ) | |
227 result = 0; | |
228 else | |
229 result = ActuallyGetSomeOtherTileInfo(v5, v4); | |
67 | 230 return result;*/ |
231 v4 = WorldPosToGridCellZ(sY); | |
232 v5 = WorldPosToGridCellX(sX); | |
233 if ( v5 < 0 || v5 > 127 || v4 < 0 || v4 > 127 ) | |
234 return 0; | |
235 return ActuallyGetSomeOtherTileInfo(v5, v4); | |
0 | 236 } |
237 // 47F44B: using guessed type int __stdcall WorldPosToGridCellX(int); | |
238 // 47F458: using guessed type int __stdcall WorldPosToGridCellZ(int); | |
239 | |
240 //----- (00488EEF) -------------------------------------------------------- | |
67 | 241 unsigned int OutdoorLocation::GetTileTexture(int sX, int sY) |
0 | 242 { |
67 | 243 //OutdoorLocation *v3; // esi@1 |
0 | 244 unsigned int v4; // edi@1 |
245 unsigned int v5; // eax@1 | |
67 | 246 // unsigned int result; // eax@5 |
0 | 247 |
67 | 248 /*v3 = this; |
0 | 249 v4 = WorldPosToGridCellZ(sZ); |
250 v5 = WorldPosToGridCellX(sX); | |
67 | 251 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 | 252 result = -1; |
253 else | |
254 result = DoGetTileTexture(v5, v4); | |
67 | 255 return result;*/ |
256 v4 = WorldPosToGridCellZ(sY); | |
257 v5 = WorldPosToGridCellX(sX); | |
258 if ( v5 < 0 || v5 > 127 || v4 < 0 || v4 > 127 ) | |
259 return -1; | |
260 return DoGetTileTexture(v5, v4); | |
0 | 261 } |
262 // 47F44B: using guessed type int __stdcall WorldPosToGridCellX(int); | |
263 // 47F458: using guessed type int __stdcall WorldPosToGridCellZ(int); | |
264 | |
265 //----- (00488F2E) -------------------------------------------------------- | |
266 int OutdoorLocation::GetHeightOnTerrain(int sX, int sZ) | |
49 | 267 /* Ôóíêöèÿ ïðåäîñòàâëÿåò âîçìîæíîñòü ïåðåìåùàòü êàìåðó òàêèì îáðàçîì, ÷òîáû îíà èìèòèðîâàëà õîäüáó ïî ëàíäøàôòó. |
268 Òî åñòü íàì íàäî ìåíÿòü âûñîòó êàìåðû (êîîðäèíàòó Y) â çàâèñèìîñòè îò òîãî, â êàêîì ìåñòå ëàíäøàôòà ìû íàõîäèìñÿ. | |
269 Äëÿ ýòîãî ìû ñíà÷àëà äîëæíû îïðåäåëèòü ïî êîîðäèíàòàì X è Z êàìåðû êâàäðàò ëàíäøàôòà â êîòîðîì ìû íàõîäèìñÿ. | |
270 Âñå ýòî äåëàåò ôóíêöèÿ Terrain::getHeight; â ñâîèõ ïàðàìåòðàõ îíà ïîëó÷àåò êîîðäèíàòû X è Z êàìåðû è âîçâðàùàåò âûñîòó, | |
271 íà êîòîðîé äîëæíà áûòü ðàñïîëîæåíà êàìåðà, ÷òîáû îíà îêàçàëàñü íàä ëàíäøàôòîì.*/ | |
0 | 272 { |
273 int result; // eax@5 | |
274 | |
275 if ( sX < 0 || sX > 127 || sZ < 0 || sZ > 127 ) | |
276 result = 0; | |
277 else | |
278 result = DoGetHeightOnTerrain(sX, sZ); | |
279 return result; | |
280 } | |
281 | |
282 //----- (00488F5C) -------------------------------------------------------- | |
283 bool OutdoorLocation::Initialize(const char *pFilename, int File, size_t uRespawnInterval, int thisa) | |
284 { | |
285 OutdoorLocation *v5; // esi@1 | |
286 bool result; // eax@2 | |
287 | |
288 v5 = this; | |
289 if ( pFilename ) | |
290 { | |
291 Release(); | |
292 pBitmaps_LOD->ReleaseAll2(); | |
293 pSprites_LOD->DeleteSomeOtherSprites(); | |
294 pSpriteFrameTable->ResetSomeSpriteFlags(); | |
295 pIcons_LOD->ReleaseAll2(); | |
296 sub_46080D(); | |
297 TryLoadLevelFromLOD(); | |
119 | 298 if ( !Load(pFilename, (ODMFace *)File, uRespawnInterval, thisa) ) |
0 | 299 { |
300 MessageBoxA(0, "Error!", "Couldn't Load Map!", 0); | |
301 CreateDebugLocation(); | |
302 } | |
810 | 303 ::day_attrib = v5->loc_time.day_attrib; |
304 ::day_fogrange_1 = v5->loc_time.day_fogrange_1; | |
305 ::day_fogrange_2 = v5->loc_time.day_fogrange_2; | |
0 | 306 if ( Is_out15odm_underwater() ) |
307 SetUnderwaterFog(); | |
630 | 308 _6BE134_odm_main_tile_group = v5->pTileTypes[0].tileset; |
0 | 309 result = 1; |
310 } | |
311 else | |
312 { | |
313 result = 0; | |
314 } | |
315 return result; | |
316 } | |
317 | |
783 | 318 |
319 | |
320 char foot_travel_destinations[15][4] = | |
321 { | |
322 // north south east west from | |
323 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_EMERALD_ISLE | |
324 {MAP_PIERPONT, MAP_BARROW_DOWNS, MAP_PIERPONT, MAP_STEADWICK}, // MAP_HARMONDALE | |
325 {MAP_DEYJA, MAP_BRAKADA_DESERT, MAP_HARMONDALE, MAP_TATALIA}, // MAP_STEADWICK | |
326 {MAP_AVLEE, MAP_HARMONDALE, MAP_INVALID, MAP_DEYJA}, // MAP_PIERPONT | |
327 {MAP_PIERPONT, MAP_STEADWICK, MAP_PIERPONT, MAP_STEADWICK}, // MAP_DEYJA | |
328 {MAP_STEADWICK, MAP_INVALID, MAP_BARROW_DOWNS, MAP_INVALID}, // MAP_BRAKADA_DESERT | |
329 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_CELESTIA | |
330 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_THE_PIT | |
331 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_EVENMORN_ISLE | |
332 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_MOUNT_NIGHON | |
333 {MAP_HARMONDALE, MAP_BRAKADA_DESERT, MAP_HARMONDALE, MAP_BRAKADA_DESERT}, // MAP_BARROW_DOWNS | |
334 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID}, // MAP_LAND_OF_GIANTS | |
335 {MAP_INVALID, MAP_INVALID, MAP_STEADWICK, MAP_INVALID}, // MAP_TATALIA | |
336 {MAP_INVALID, MAP_PIERPONT, MAP_PIERPONT, MAP_INVALID}, // MAP_AVLEE | |
337 {MAP_INVALID, MAP_INVALID, MAP_INVALID, MAP_INVALID} // MAP_SHOALS | |
338 }; | |
339 unsigned char foot_travel_times[15][4] = | |
340 { | |
341 // north south east west from | |
342 {0, 0, 0, 0}, // MAP_EMERALD_ISLE | |
343 {5, 5, 7, 5}, // MAP_HARMONDALE | |
344 {5, 5, 5, 5}, // MAP_STEADWICK | |
345 {5, 5, 0, 5}, // MAP_PIERPONT | |
346 {7, 5, 5, 4}, // MAP_DEYJA | |
347 {5, 0, 5, 0}, // MAP_BRAKADA_DESERT | |
348 {0, 0, 0, 0}, // MAP_CELESTIA | |
349 {0, 0, 0, 0}, // MAP_THE_PIT | |
350 {0, 0, 0, 0}, // MAP_EVENMORN_ISLE | |
351 {0, 0, 0, 0}, // MAP_MOUNT_NIGHON | |
352 {5, 7, 7, 5}, // MAP_BARROW_DOWNS | |
353 {0, 0, 0, 0}, // MAP_LAND_OF_GIANTS | |
354 {0, 0, 5, 0}, // MAP_TATALIA | |
355 {0, 7, 5, 0}, // MAP_AVLEE | |
356 {0, 0, 0, 0}, // MAP_SHOALS | |
357 }; | |
358 | |
359 | |
360 MapStartPoint foot_travel_arrival_points[15][4] = | |
361 { | |
362 // north south east west from | |
363 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_EMERALD_ISLE | |
364 {MapStartPoint_South, MapStartPoint_North, MapStartPoint_South, MapStartPoint_East}, // MAP_HARMONDALE | |
365 {MapStartPoint_South, MapStartPoint_North, MapStartPoint_West, MapStartPoint_East}, // MAP_STEADWICK | |
366 {MapStartPoint_East, MapStartPoint_North, MapStartPoint_Party, MapStartPoint_East}, // MAP_PIERPONT | |
367 {MapStartPoint_West, MapStartPoint_North, MapStartPoint_West, MapStartPoint_North}, // MAP_DEYJA | |
368 {MapStartPoint_South, MapStartPoint_Party, MapStartPoint_West, MapStartPoint_Party}, // MAP_BRAKADA_DESERT | |
369 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_CELESTIA | |
370 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_THE_PIT | |
371 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_EVENMORN_ISLE | |
372 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_MOUNT_NIGHON | |
373 {MapStartPoint_South, MapStartPoint_East, MapStartPoint_South, MapStartPoint_East}, // MAP_BARROW_DOWNS | |
374 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_LAND_OF_GIANTS | |
375 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_West, MapStartPoint_Party}, // MAP_TATALIA | |
376 {MapStartPoint_Party, MapStartPoint_North, MapStartPoint_North, MapStartPoint_Party}, // MAP_AVLEE | |
377 {MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party, MapStartPoint_Party}, // MAP_SHOALS | |
378 }; | |
379 | |
380 | |
0 | 381 //----- (0048902E) -------------------------------------------------------- |
382 bool OutdoorLocation::GetTravelDestination(signed int sPartyX, signed int sPartyZ, char *pOut, signed int a5) | |
383 { | |
384 OutdoorLocation *v5; // esi@1 | |
385 char *v6; // eax@3 | |
386 int v7; // eax@3 | |
783 | 387 //int v8; // edx@3 |
0 | 388 signed int v9; // esi@7 |
783 | 389 //int v10; // esi@23 |
0 | 390 signed int v11; // eax@23 |
783 | 391 //int v12; // ST14_4@25 |
0 | 392 signed int v14; // [sp-4h] [bp-84h]@6 |
138 | 393 char Str[140]; // [sp+8h] [bp-78h]@3 |
783 | 394 //int a5a; // [sp+94h] [bp+14h]@3 |
0 | 395 |
396 auto Source = this; | |
397 | |
398 v5 = Source; | |
399 if ( a5 < 10 | |
400 || strlen(Source->pLevelFilename) != 9 | |
138 | 401 || (strcpy(Str, v5->pLevelFilename), |
402 _strlwr(Str), | |
403 v6 = strtok(Str, "out"), | |
0 | 404 v6[2] = 0, |
405 v7 = atoi(v6), | |
783 | 406 //v8 = v7, |
407 //a5a = v7, | |
0 | 408 v7 < 1) |
409 || v7 > 15 ) | |
410 return 0; | |
411 if ( sPartyX < -22528 ) | |
412 { | |
413 v14 = 4; | |
414 LABEL_7: | |
415 v9 = v14; | |
416 goto LABEL_14; | |
417 } | |
418 if ( sPartyX > 22528 ) | |
419 { | |
420 v14 = 3; | |
421 goto LABEL_7; | |
422 } | |
423 if ( sPartyZ < -22528 ) | |
424 { | |
425 v14 = 2; | |
426 goto LABEL_7; | |
427 } | |
428 if ( sPartyZ <= 22528 ) | |
429 return 0; | |
430 v9 = 1; | |
431 LABEL_14: | |
432 if ( v7 == 14 ) | |
433 { | |
783 | 434 if ( v9 == 4 ) // to & from Shoals |
0 | 435 { |
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
|
436 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
|
437 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
|
438 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
|
439 pPlayers[4]->HasUnderwaterSuitEquipped()) |
0 | 440 { |
441 uDefaultTravelTime_ByFoot = 1; | |
442 strcpy(pOut, "out15.odm"); | |
783 | 443 uLevel_StartingPointType = MapStartPoint_East; |
0 | 444 LABEL_18: |
445 LOWORD(pParty->uFlags) &= 0xFD7Bu; | |
446 return 1; | |
447 } | |
783 | 448 //v8 = v7; |
0 | 449 } |
450 } | |
451 else | |
452 { | |
453 if ( v7 == 15 && v9 == 3 ) | |
454 { | |
455 uDefaultTravelTime_ByFoot = 1; | |
456 strcpy(pOut, "out14.odm"); | |
783 | 457 uLevel_StartingPointType = MapStartPoint_West; |
0 | 458 goto LABEL_18; |
459 } | |
460 } | |
783 | 461 //v10 = v9 + 4 * v7; |
462 //v11 = (unsigned __int8)aTiletableLoadU[v10 + 39]; | |
463 v11 = foot_travel_destinations[v7 - 1][v9 - 1]; | |
464 if (v11 == MAP_INVALID) | |
465 return false; | |
466 | |
467 assert(v11 <= MAP_SHOALS); | |
468 | |
469 uDefaultTravelTime_ByFoot = foot_travel_times[v7 - 1][v9 - 1]; | |
470 uLevel_StartingPointType = foot_travel_arrival_points[v7 - 1][v9 - 1]; | |
471 sprintf(pOut, "out%02d.odm", v11); | |
472 return 1; | |
473 //} | |
474 //return 0; | |
0 | 475 } |
476 // 6BD07C: using guessed type int uDefaultTravelTime_ByFoot; | |
477 // 6BE35C: using guessed type int uLevel_StartingPointType; | |
478 | |
479 //----- (0048917E) -------------------------------------------------------- | |
480 void OutdoorLocation::MessWithLUN() | |
481 { | |
482 OutdoorLocation *v1; // esi@1 | |
483 unsigned int *v2; // ebp@1 | |
484 unsigned int v3; // eax@1 | |
485 unsigned __int16 v4; // ax@1 | |
486 signed int v5; // ebx@1 | |
487 | |
488 v1 = this; | |
489 v2 = this->pSpriteIDs_LUN; | |
490 this->pSpriteIDs_LUN[0] = -1; | |
491 this->pSpriteIDs_LUN[2] = pSpriteFrameTable->FastFindSprite("LUN1-4"); | |
492 v1->pSpriteIDs_LUN[4] = pSpriteFrameTable->FastFindSprite("LUN1-2"); | |
493 v1->pSpriteIDs_LUN[6] = pSpriteFrameTable->FastFindSprite("LUN3-4"); | |
494 v1->uSpriteID_LUNFULL = pSpriteFrameTable->FastFindSprite("LUNFULL"); | |
495 v1->uSpriteID_LUN3_4_cp = pSpriteFrameTable->FastFindSprite("LUN3-4"); | |
496 v1->uSpriteID_LUN1_2_cp = pSpriteFrameTable->FastFindSprite("LUN1-2"); | |
497 v3 = pSpriteFrameTable->FastFindSprite("LUN1-4"); | |
498 v1->field_D60 = -1; | |
499 v1->uSpriteID_LUN1_4_cp = v3; | |
500 v1->field_CF0 = 4; | |
501 v1->field_CF8 = 4; | |
502 v1->field_D00 = 4; | |
503 LOWORD(v3) = *(short *)v2; | |
504 v1->pSpriteIDs_LUN[1] = 0; | |
505 v1->pSpriteIDs_LUN[3] = 0; | |
506 v1->pSpriteIDs_LUN[5] = 0; | |
507 v1->pSpriteIDs_LUN[7] = 0; | |
508 v1->field_CE8 = 0; | |
509 LOWORD(v1->field_D3C) = v3; | |
510 v1->field_D40 = 0; | |
511 v1->field_D44 = 0; | |
512 v1->field_D48 = 0; | |
513 v1->field_D4C = 131072; | |
514 v1->field_D5C = 0; | |
515 v1->field_D64 = 0; | |
516 v4 = pSpriteFrameTable->FastFindSprite("LUN-SUN"); | |
517 v1->field_D28 = -1; | |
518 v1->field_D08 = 0; | |
519 v1->field_D0C = 0; | |
520 v1->field_D10 = 0; | |
521 v1->field_D24 = 0; | |
522 v1->field_D2C = 0; | |
523 v1->uSpriteID_LUN_SUN = v4; | |
524 v1->field_D14 = -131072; | |
525 v5 = 8; | |
526 do | |
527 { | |
528 pSpriteFrameTable->InitializeSprite(*v2); | |
529 v2 += 2; | |
530 --v5; | |
531 } | |
532 while ( v5 ); | |
533 pSpriteFrameTable->InitializeSprite(v1->uSpriteID_LUN_SUN); | |
534 } | |
535 | |
536 //----- (004892E6) -------------------------------------------------------- | |
762 | 537 void OutdoorLocation::UpdateSunlightVectors() |
0 | 538 { |
762 | 539 //unsigned int result; // eax@1 |
0 | 540 OutdoorLocation *v2; // esi@1 |
541 unsigned int v3; // edi@3 | |
638 | 542 //int v4; // ebx@3 |
0 | 543 int v5; // eax@3 |
638 | 544 //int v6; // eax@3 |
545 //int v7; // ecx@3 | |
0 | 546 double v8; // st7@4 |
547 | |
548 v2 = this; | |
638 | 549 if ( pParty->uCurrentHour >= 5 && pParty->uCurrentHour < 21 ) |
0 | 550 { |
551 v3 = pParty->uCurrentMinute + 60 * (pParty->uCurrentHour - 5); | |
638 | 552 //v4 = (signed int)(v3 * stru_5C6E00->uIntegerPi) / 960; |
323 | 553 v5 = stru_5C6E00->Cos((signed int)(v3 * stru_5C6E00->uIntegerPi) / 960); |
638 | 554 v2->inv_sunlight_y = 0; |
555 v2->inv_sunlight_x = v5; | |
556 //v6 = stru_5C6E00->Sin(v4); | |
557 //v7 = v2->field_D18; | |
558 v2->inv_sunlight_z = stru_5C6E00->Sin((signed int)(v3 * stru_5C6E00->uIntegerPi) / 960); | |
559 v2->vSunlight.x = -v2->inv_sunlight_x; | |
560 v2->vSunlight.y = -v2->inv_sunlight_y; | |
561 v2->vSunlight.z = -v2->inv_sunlight_z; | |
0 | 562 if ( (signed int)v3 >= 480 ) |
563 v8 = (double)(signed int)(960 - v3); | |
564 else | |
565 v8 = (double)(signed int)v3; | |
638 | 566 v2->max_terrain_dimming_level = (signed __int64)(20.0 - v8 / 480.0 * 20.0); |
0 | 567 v2->uLastSunlightUpdateMinute = pParty->uCurrentMinute; |
568 } | |
569 } | |
570 | |
571 //----- (004893C1) -------------------------------------------------------- | |
572 void OutdoorLocation::UpdateFog() | |
573 { | |
574 fFogDensity = GetFogDensityByTime(); | |
575 } | |
576 | |
577 //----- (004893CF) -------------------------------------------------------- | |
578 int OutdoorLocation::GetNumFoodRequiredToRestInCurrentPos(int x, signed int y, int z) | |
579 { | |
580 OutdoorLocation *v4; // ebx@1 | |
581 signed int v5; // edi@4 | |
582 int v6; // eax@4 | |
583 int v7; // eax@4 | |
584 int v8; // eax@4 | |
585 int v9; // eax@5 | |
586 int v10; // eax@6 | |
587 int v11; // eax@7 | |
588 int v12; // eax@8 | |
589 int v15; // [sp+8h] [bp-8h]@2 | |
590 int v16; // [sp+Ch] [bp-4h]@2 | |
591 | |
592 v4 = this; | |
593 if ( pParty->uFlags & 8 | |
594 || (v15 = 0, | |
595 v16 = 0, | |
723 | 596 ODM_GetFloorLevel(x, y, z, pParty->uDefaultPartyHeight, &v15, &v16, 0), |
0 | 597 v16) |
598 || v15 ) | |
599 return 2; | |
600 v5 = WorldPosToGridCellX(pParty->vPosition.x); | |
601 v6 = WorldPosToGridCellZ(pParty->vPosition.y); | |
602 v7 = _47ED83(v5, v6 - 1); | |
764 | 603 v8 = pTileTable->pTiles[GetTileIdByTileMapId(v7)].tileset; |
0 | 604 if ( v8 ) |
605 { | |
606 v9 = v8 - 1; | |
607 if ( !v9 ) | |
608 return 3; | |
609 v10 = v9 - 1; | |
610 if ( !v10 ) | |
611 return 5; | |
612 v11 = v10 - 1; | |
613 if ( !v11 || (v12 = v11 - 3) == 0 ) | |
614 return 4; | |
615 if ( v12 == 1 ) | |
616 return 3; | |
617 return 2; | |
618 } | |
619 return 1; | |
620 } | |
767 | 621 |
0 | 622 |
623 //----- (00489487) -------------------------------------------------------- | |
767 | 624 void OutdoorLocation::SetFog() |
0 | 625 { |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
626 strcpy(pOutdoor->pLevelFilename, pCurrentMapName); |
0 | 627 |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
628 auto map_id = pMapStats->GetMapInfo(pCurrentMapName); |
767 | 629 if (map_id == MAP_INVALID || map_id == MAP_CELESTIA || map_id == MAP_THE_PIT || map_id > MAP_SHOALS) |
630 return; | |
631 | |
632 uint chance = rand() % 100; | |
633 | |
634 if (chance < fog_probability_table[map_id - 1].small_fog_chance) | |
0 | 635 { |
767 | 636 ::day_fogrange_1 = 4096; |
637 ::day_fogrange_2 = 8192; | |
638 ::day_attrib |= DAY_ATTRIB_FOG; | |
0 | 639 } |
767 | 640 else if (chance < fog_probability_table[map_id - 1].small_fog_chance + |
641 fog_probability_table[map_id - 1].average_fog_chance) | |
0 | 642 { |
767 | 643 ::day_fogrange_2 = 4096; |
644 ::day_fogrange_1 = 0; | |
645 ::day_attrib |= DAY_ATTRIB_FOG; | |
0 | 646 } |
767 | 647 else if (fog_probability_table[map_id - 1].dense_fog_chance && |
648 chance < fog_probability_table[map_id - 1].small_fog_chance + | |
649 fog_probability_table[map_id - 1].average_fog_chance + | |
650 fog_probability_table[map_id - 1].dense_fog_chance) | |
0 | 651 { |
767 | 652 ::day_fogrange_2 = 2048; |
653 ::day_fogrange_1 = 0; | |
654 ::day_attrib |= DAY_ATTRIB_FOG; | |
0 | 655 } |
767 | 656 else |
657 ::day_attrib &= ~DAY_ATTRIB_FOG; | |
658 | |
0 | 659 if ( Is_out15odm_underwater() ) |
660 SetUnderwaterFog(); | |
810 | 661 pOutdoor->loc_time.day_fogrange_1 = ::day_fogrange_1; |
662 pOutdoor->loc_time.day_fogrange_2 = ::day_fogrange_2; | |
663 pOutdoor->loc_time.day_attrib = ::day_attrib; | |
0 | 664 } |
665 | |
666 //----- (00482170) -------------------------------------------------------- | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
667 bool ODMFace::IsBackfaceCulled(ODMFace *a1, RenderVertexSoft *a2, struct Polygon *a3) |
0 | 668 { |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1338
diff
changeset
|
669 struct Polygon *v3; // edi@1 |
0 | 670 RenderVertexSoft *v4; // esi@1 |
671 unsigned int v5; // edx@1 | |
672 RenderVertexSoft *v6; // ecx@2 | |
673 double v7; // st7@5 | |
674 double v8; // st6@5 | |
675 double v9; // st5@5 | |
676 double v10; // st6@9 | |
677 double v11; // st5@9 | |
678 double v12; // st4@9 | |
679 bool result; // eax@16 | |
680 double v14; // ST2C_8@17 | |
681 double v15; // ST20_8@17 | |
682 double v16; // ST0C_8@17 | |
683 double v17; // ST0C_8@17 | |
684 float v18; // [sp+8h] [bp-38h]@5 | |
685 float v19; // [sp+10h] [bp-30h]@5 | |
686 float v20; // [sp+14h] [bp-2Ch]@5 | |
687 float v21; // [sp+18h] [bp-28h]@5 | |
688 float v22; // [sp+1Ch] [bp-24h]@5 | |
689 float v23; // [sp+24h] [bp-1Ch]@5 | |
690 float v24; // [sp+28h] [bp-18h]@5 | |
691 float v25; // [sp+30h] [bp-10h]@5 | |
692 float v26; // [sp+34h] [bp-Ch]@5 | |
693 float v27; // [sp+38h] [bp-8h]@5 | |
694 float v28; // [sp+3Ch] [bp-4h]@5 | |
695 float a3a; // [sp+48h] [bp+8h]@5 | |
696 float a3b; // [sp+48h] [bp+8h]@17 | |
697 float a3c; // [sp+48h] [bp+8h]@17 | |
698 float a3d; // [sp+48h] [bp+8h]@17 | |
699 float a3e; // [sp+48h] [bp+8h]@17 | |
700 | |
701 v3 = a3; | |
702 v4 = a2; | |
703 v5 = a3->uNumVertices; | |
704 if ( (signed int)v5 < 3 ) | |
705 goto LABEL_20; | |
706 v6 = &v4[v5 - 1]; | |
707 if ( v4->vWorldPosition.z == v4[1].vWorldPosition.z && v4[1].vWorldPosition.z == v6->vWorldPosition.z ) | |
708 *(int *)&a3->flags |= 0x10u; | |
709 v19 = v4[1].vWorldViewPosition.x - v4->vWorldViewPosition.x; | |
710 v18 = v4[1].vWorldViewPosition.y - v4->vWorldViewPosition.y; | |
711 v20 = v4[1].vWorldViewPosition.z - v4->vWorldViewPosition.z; | |
712 v21 = v6->vWorldViewPosition.x - v4->vWorldViewPosition.x; | |
713 v22 = v6->vWorldViewPosition.y - v4->vWorldViewPosition.y; | |
714 v23 = v6->vWorldViewPosition.z - v4->vWorldViewPosition.z; | |
715 v28 = v4[1].vWorldPosition.x - v4->vWorldPosition.x; | |
716 v27 = v4[1].vWorldPosition.y - v4->vWorldPosition.y; | |
717 a3a = v4[1].vWorldPosition.z - v4->vWorldPosition.z; | |
718 v7 = v6->vWorldPosition.x - v4->vWorldPosition.x; | |
719 v8 = v6->vWorldPosition.y - v4->vWorldPosition.y; | |
720 v9 = v6->vWorldPosition.z - v4->vWorldPosition.z; | |
721 v26 = v27 * v9 - v8 * a3a; | |
722 v24 = v7 * a3a - v9 * v28; | |
723 v25 = v8 * v28 - v7 * v27; | |
724 if ( v26 == 0.0 && v24 == 0.0 && v25 == 0.0 ) | |
725 { | |
726 while ( 1 ) | |
727 { | |
728 --v5; | |
729 if ( (signed int)v5 < 2 ) | |
730 break; | |
731 v10 = v6->vWorldPosition.x - v4->vWorldPosition.x; | |
732 v11 = v6->vWorldPosition.y - v4->vWorldPosition.y; | |
733 v12 = v6->vWorldPosition.z - v4->vWorldPosition.z; | |
734 v26 = v27 * v12 - v11 * a3a; | |
735 v24 = v10 * a3a - v12 * v28; | |
736 v25 = v11 * v28 - v10 * v27; | |
737 if ( v26 != 0.0 ) | |
738 break; | |
739 if ( v24 != 0.0 || v25 != 0.0 ) | |
740 break; | |
741 --v6; | |
742 } | |
743 v21 = v6->vWorldViewPosition.x - v4->vWorldViewPosition.x; | |
744 v22 = v6->vWorldViewPosition.y - v4->vWorldViewPosition.y; | |
745 v23 = v6->vWorldViewPosition.z - v4->vWorldViewPosition.z; | |
746 } | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
747 if ( ((double)pGame->pIndoorCameraD3D->vPartyPos.x - v4->vWorldPosition.x) * v26 |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
748 + ((double)pGame->pIndoorCameraD3D->vPartyPos.z - v4->vWorldPosition.z) * v25 |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
749 + ((double)pGame->pIndoorCameraD3D->vPartyPos.y - v4->vWorldPosition.y) * v24 > 0.0 ) |
0 | 750 { |
751 a3b = v23 * v18 - v22 * v20; | |
752 v14 = a3b + 6.7553994e15; | |
753 v3->v_18.x = LODWORD(v14); | |
754 a3c = v21 * v20 - v23 * v19; | |
755 v15 = a3c + 6.7553994e15; | |
756 v3->v_18.y = LODWORD(v15); | |
757 a3d = v22 * v19 - v21 * v18; | |
758 v16 = a3d + 6.7553994e15; | |
759 v3->v_18.z = LODWORD(v16); | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1391
diff
changeset
|
760 v3->_normalize_v_18(); |
0 | 761 a3e = -((double)v3->v_18.x * v4->vWorldViewPosition.x) |
762 - (double)v3->v_18.y * v4->vWorldViewPosition.y | |
763 - (double)v3->v_18.z * v4->vWorldViewPosition.z; | |
764 v17 = a3e + 6.7553994e15; | |
765 v3->field_24 = LODWORD(v17); | |
766 result = 1; | |
767 } | |
768 else | |
769 { | |
770 LABEL_20: | |
771 result = 0; | |
772 } | |
773 return result; | |
774 } | |
775 | |
776 | |
777 //----- (0047C7A9) -------------------------------------------------------- | |
778 void OutdoorLocationTerrain::_47C7A9() | |
779 { | |
780 this->field_10 = 0; | |
781 this->field_12 = 0; | |
782 this->field_16 = 0; | |
783 this->field_14 = 0; | |
784 this->field_1C = 0; | |
785 this->field_18 = 0; | |
786 } | |
787 | |
788 //----- (0047C7C2) -------------------------------------------------------- | |
49 | 789 void OutdoorLocationTerrain::Release()//î÷èñòèòü ëîêàöèþ |
0 | 790 { |
791 if (pHeightmap) | |
792 { | |
1583 | 793 free(this->pHeightmap); |
0 | 794 pHeightmap = nullptr; |
795 } | |
796 if (pTilemap) | |
797 { | |
1583 | 798 free(pTilemap); |
0 | 799 pTilemap = nullptr; |
800 } | |
801 if (pAttributemap) | |
802 { | |
1583 | 803 free(pAttributemap); |
0 | 804 pAttributemap = nullptr; |
805 } | |
760 | 806 if (pDmap) |
0 | 807 { |
1583 | 808 free(pDmap); |
760 | 809 pDmap = nullptr; |
0 | 810 } |
811 | |
812 _47C7A9(); | |
813 } | |
814 | |
815 //----- (0047C80A) -------------------------------------------------------- | |
760 | 816 void OutdoorLocationTerrain::FillDMap( int X, int Y, int W, int Z ) |
817 { | |
49 | 818 OutdoorLocationTerrain *pOutLocTerrain; // ebx@1 |
0 | 819 double v6; // st7@1 |
820 double v7; // st7@2 | |
821 double v8; // st7@2 | |
822 int result; // eax@3 | |
823 int v10; // eax@4 | |
824 int v11; // ecx@5 | |
825 int v12; // ecx@6 | |
826 int v13; // edi@7 | |
827 int v14; // edx@9 | |
828 int v15; // eax@15 | |
49 | 829 unsigned __int8 *pMapHeight; // ebx@15 |
0 | 830 int v17; // eax@15 |
831 int v18; // ecx@15 | |
832 int v19; // esi@15 | |
833 int v20; // edi@15 | |
834 int v21; // edx@15 | |
835 int v22; // ecx@15 | |
836 int v23; // ebx@15 | |
837 int v24; // ecx@15 | |
838 int v25; // ST28_4@15 | |
839 double v26; // st7@15 | |
840 double v27; // st6@15 | |
841 double v28; // st5@15 | |
842 double v29; // st7@15 | |
843 double v30; // st7@16 | |
844 double v31; // st7@17 | |
845 int v32; // eax@21 | |
846 double v33; // st7@21 | |
847 double v34; // st6@21 | |
848 double v35; // st5@21 | |
849 double v36; // st7@21 | |
850 double v37; // st7@22 | |
851 double v38; // st7@23 | |
852 int v39; // [sp+14h] [bp-34h]@8 | |
853 int v40; // [sp+18h] [bp-30h]@15 | |
854 int v41; // [sp+1Ch] [bp-2Ch]@15 | |
855 int v42; // [sp+20h] [bp-28h]@15 | |
49 | 856 OutdoorLocationTerrain *pOutLocTerrain2; // [sp+24h] [bp-24h]@1 |
0 | 857 int v44; // [sp+28h] [bp-20h]@21 |
858 float v45; // [sp+2Ch] [bp-1Ch]@1 | |
859 float v46; // [sp+30h] [bp-18h]@1 | |
860 float v47; // [sp+34h] [bp-14h]@1 | |
861 int v48; // [sp+38h] [bp-10h]@7 | |
862 int v49; // [sp+3Ch] [bp-Ch]@10 | |
863 int v50; // [sp+40h] [bp-8h]@9 | |
864 float v51; // [sp+44h] [bp-4h]@15 | |
865 float v52; // [sp+44h] [bp-4h]@21 | |
866 float v53; // [sp+50h] [bp+8h]@15 | |
867 float v54; // [sp+50h] [bp+8h]@21 | |
868 int v55; // [sp+54h] [bp+Ch]@15 | |
869 float v56; // [sp+54h] [bp+Ch]@15 | |
870 float v57; // [sp+54h] [bp+Ch]@21 | |
871 | |
872 v46 = -64.0; | |
873 v47 = -64.0; | |
49 | 874 pOutLocTerrain = this; |
0 | 875 v45 = 64.0; |
49 | 876 pOutLocTerrain2 = this; |
0 | 877 v6 = sqrt(12288.0); |
878 if ( v6 != 0.0 ) | |
879 { | |
880 v7 = 1.0 / v6; | |
881 v45 = 64.0 * v7; | |
882 v8 = v7 * -64.0; | |
883 v46 = v8; | |
884 v47 = v8; | |
885 } | |
760 | 886 result = Y; |
887 if ( Y > Z ) | |
0 | 888 { |
760 | 889 v10 = Z ^ Y; |
890 Z ^= Y ^ Z; | |
891 result = Z ^ v10; | |
0 | 892 } |
760 | 893 v11 = X; |
894 if ( X > W ) | |
0 | 895 { |
760 | 896 v12 = W ^ X; |
897 W ^= X ^ W; | |
898 v11 = W ^ v12; | |
0 | 899 } |
900 v13 = result - 1; | |
901 v48 = result - 1; | |
760 | 902 if ( result - 1 <= Z ) |
0 | 903 { |
904 v39 = v11 - 1; | |
905 do | |
906 { | |
907 v14 = v39; | |
908 v50 = v39; | |
760 | 909 if ( v39 <= W ) |
0 | 910 { |
911 result = (v39 - 63) << 9; | |
912 v49 = (v39 - 63) << 9; | |
913 do | |
914 { | |
915 if ( v13 >= 0 && result >= -32256 && v13 <= 127 && result <= 32768 ) | |
916 { | |
49 | 917 v15 = pOutLocTerrain->field_10; |
0 | 918 v55 = v15; |
49 | 919 pMapHeight = pOutLocTerrain->pHeightmap; |
920 v17 = (int)(&pMapHeight[v13 * v15] + v14); | |
0 | 921 v18 = -v13; |
922 v19 = (64 - v13) << 9; | |
923 v20 = 32 * *(char *)v17; | |
924 v21 = 32 * *(char *)(v17 + 1); | |
925 v22 = (v18 + 63) << 9; | |
926 v41 = v22; | |
49 | 927 v23 = (int)(&pMapHeight[v55 * (v48 + 1)] + v50); |
0 | 928 v24 = v22 - v19; |
929 v40 = 32 * *(char *)v23; | |
930 v42 = 32 * *(char *)(v23 + 1); | |
760 | 931 |
932 | |
0 | 933 v25 = v49 - 512 - v49; |
934 v26 = (double)-((v20 - v21) * v24); | |
935 v51 = v26; | |
936 v27 = (double)-(v25 * (v42 - v21)); | |
937 v53 = v27; | |
938 v28 = (double)(v25 * v24); | |
939 v56 = v28; | |
940 v29 = sqrt(v28 * v28 + v27 * v27 + v26 * v26); | |
941 if ( v29 != 0.0 ) | |
942 { | |
943 v30 = 1.0 / v29; | |
944 v51 = v51 * v30; | |
945 v53 = v53 * v30; | |
946 v56 = v30 * v56; | |
947 } | |
948 v31 = (v56 * v47 + v53 * v46 + v51 * v45) * 31.0; | |
949 if ( v31 < 0.0 ) | |
950 v31 = 0.0; | |
951 if ( v31 > 31.0 ) | |
952 v31 = 31.0; | |
49 | 953 v44 = 2 * (v50 + v48 * pOutLocTerrain2->field_10); |
954 pOutLocTerrain = pOutLocTerrain2; | |
760 | 955 *((char *)pOutLocTerrain2->pDmap + v44 + 1) = (signed __int64)v31; |
956 | |
0 | 957 v32 = v49 - (v49 - 512); |
958 v33 = (double)-((v42 - v40) * (v19 - v41)); | |
959 v52 = v33; | |
960 v34 = (double)-(v32 * (v20 - v40)); | |
961 v54 = v34; | |
962 v35 = (double)(v32 * (v19 - v41)); | |
963 v57 = v35; | |
964 v36 = sqrt(v35 * v35 + v34 * v34 + v33 * v33); | |
965 if ( v36 != 0.0 ) | |
966 { | |
967 v37 = 1.0 / v36; | |
968 v52 = v52 * v37; | |
969 v54 = v54 * v37; | |
970 v57 = v37 * v57; | |
971 } | |
972 v38 = (v57 * v47 + v54 * v46 + v52 * v45) * 31.0; | |
973 if ( v38 < 0.0 ) | |
974 v38 = 0.0; | |
975 if ( v38 > 31.0 ) | |
976 v38 = 31.0; | |
977 v13 = v48; | |
760 | 978 *((char *)pOutLocTerrain2->pDmap + v44) = (signed __int64)v38; |
0 | 979 v14 = v50; |
980 result = v49; | |
981 } | |
982 ++v14; | |
983 result += 512; | |
984 v50 = v14; | |
985 v49 = result; | |
986 } | |
760 | 987 while ( v14 <= W ); |
0 | 988 } |
989 ++v13; | |
990 v48 = v13; | |
991 } | |
760 | 992 while ( v13 <= Z ); |
0 | 993 } |
994 } | |
995 | |
996 //----- (0047CB57) -------------------------------------------------------- | |
997 int OutdoorLocationTerrain::_47CB57(int a1, int a2, int a3) | |
998 { | |
999 signed int result; // eax@2 | |
1000 unsigned __int16 *v5; // edx@3 | |
1001 double v6; // st7@3 | |
1002 char v7; // bl@3 | |
1003 int v8; // eax@3 | |
1004 int v9; // eax@4 | |
1005 int v10; // eax@5 | |
1006 double v11; // st6@7 | |
1007 signed int v12; // edi@7 | |
1008 int v13; // esi@9 | |
1009 char *v14; // esi@10 | |
1010 signed int v15; // ecx@10 | |
1011 char v16[256]; // [sp+4h] [bp-124h]@9 | |
1012 unsigned __int16 *v17; // [sp+104h] [bp-24h]@3 | |
1013 unsigned int v18; // [sp+108h] [bp-20h]@3 | |
1014 unsigned int v19; // [sp+10Ch] [bp-1Ch]@3 | |
1015 unsigned int v20; // [sp+110h] [bp-18h]@3 | |
1016 unsigned int v21; // [sp+114h] [bp-14h]@3 | |
1017 float v22; // [sp+118h] [bp-10h]@3 | |
1018 float v23; // [sp+11Ch] [bp-Ch]@3 | |
1019 int i; // [sp+120h] [bp-8h]@3 | |
1020 unsigned int v25; // [sp+124h] [bp-4h]@5 | |
1021 signed int a2a; // [sp+134h] [bp+Ch]@3 | |
1022 unsigned int a2b; // [sp+134h] [bp+Ch]@7 | |
1023 float a3a; // [sp+138h] [bp+10h]@7 | |
1024 int a3b; // [sp+138h] [bp+10h]@9 | |
1025 | |
1026 if ( pRenderer->pRenderD3D ) | |
1027 { | |
1028 result = 0; | |
1029 } | |
1030 else | |
1031 { | |
1032 v5 = PaletteManager::Get_Dark_or_Red_LUT(a2, 0, 1); | |
1033 v6 = 0.0; | |
1034 v7 = LOBYTE(pRenderer->uTargetBBits); | |
1035 v19 = pRenderer->uTargetRMask; | |
1036 v21 = pRenderer->uTargetGMask; | |
1037 v22 = 0.0; | |
1038 v20 = pRenderer->uTargetBMask; | |
1039 v8 = 0; | |
1040 v17 = v5; | |
1041 v23 = 0.0; | |
1042 v18 = pRenderer->uTargetBBits; | |
1043 a2a = 0; | |
1044 for ( i = 0; i < a3; ++i ) | |
1045 { | |
1046 v9 = *(char *)(v8 + a1); | |
1047 if ( v9 ) | |
1048 { | |
1049 v10 = v5[v9]; | |
1050 v6 = v6 + (double)((signed int)(v19 & v10) >> (LOBYTE(pRenderer->uTargetBBits) + LOBYTE(pRenderer->uTargetGBits))); | |
1051 ++a2a; | |
1052 v25 = v20 & v10; | |
1053 v22 = (double)((signed int)(v21 & v10) >> SLOBYTE(pRenderer->uTargetBBits)) + v22; | |
1054 v23 = (double)(signed int)(v20 & v10) + v23; | |
1055 } | |
1056 v8 = i + 1; | |
1057 } | |
1058 v11 = 1.0 / (double)a2a; | |
1059 a3a = v11; | |
1060 v25 = (signed __int64)(a3a * v22); | |
1061 i = (signed __int64)(a3a * v23); | |
1062 v12 = 0; | |
1063 a2b = pRenderer->uTargetBBits + pRenderer->uTargetGBits; | |
1064 while ( 1 ) | |
1065 { | |
1066 v13 = v17[v12]; | |
1067 a3b = abs((__int64)(signed __int64)(v11 * v6) - ((signed int)(v19 & v17[v12]) >> a2b)); | |
1068 BYTE3(a3b) = abs((signed)v25 - ((signed int)(v21 & v13) >> v7)) + a3b; | |
1069 v16[v12++] = abs((signed)i - (signed)(v20 & v13)) + BYTE3(a3b); | |
1070 if ( v12 >= 256 ) | |
1071 break; | |
1072 v7 = v18; | |
1073 } | |
1074 result = 0; | |
1075 v14 = (char *)&pPaletteManager->field_D1600[42][23][116]; | |
1076 v15 = 0; | |
1077 do | |
1078 { | |
1079 if ( (unsigned __int8)v16[v15] < (signed int)v14 ) | |
1080 { | |
1081 v14 = (char *)(unsigned __int8)v16[v15]; | |
1082 result = v15; | |
1083 } | |
1084 ++v15; | |
1085 } | |
1086 while ( v15 < 256 ); | |
1087 } | |
1088 return result; | |
1089 } | |
1090 // 47CB57: using guessed type char var_124[256]; | |
1091 | |
1092 //----- (0047CCE2) -------------------------------------------------------- | |
1093 bool OutdoorLocationTerrain::ZeroLandscape() | |
1094 { | |
1095 OutdoorLocationTerrain *v1; // esi@1 | |
1096 | |
1097 v1 = this; | |
1098 memset(this->pHeightmap, 0, 0x4000u); | |
1099 memset(v1->pTilemap, 90, 0x4000u); | |
1100 memset(v1->pAttributemap, 0, 0x4000u); | |
760 | 1101 memset(v1->pDmap, 0, 0x8000u); |
0 | 1102 v1->field_12 = 128; |
1103 v1->field_10 = 128; | |
1104 v1->field_16 = 7; | |
1105 v1->field_14 = 7; | |
1106 v1->field_1C = 127; | |
1107 v1->field_18 = 127; | |
1108 return 1; | |
1109 } | |
1110 | |
1111 //----- (0047CD44) -------------------------------------------------------- | |
1112 bool OutdoorLocationTerrain::Initialize() | |
1113 { | |
1583 | 1114 pHeightmap = (unsigned __int8 *)malloc(0x4000u);//height map |
1115 pTilemap = (unsigned __int8 *)malloc(0x4000u);//tile map | |
1116 pAttributemap = (unsigned __int8 *)malloc(0x4000u);//êàðòà àòðèáóòîâ | |
1117 pDmap = (struct DMap *)malloc(0x8000u); | |
1118 if (pHeightmap && pTilemap && pAttributemap && pDmap ) | |
760 | 1119 return true; |
0 | 1120 else |
760 | 1121 return false; |
0 | 1122 } |
1123 | |
1124 //----- (0047CDE2) -------------------------------------------------------- | |
1125 void OutdoorLocation::CreateDebugLocation() | |
1126 { | |
1127 OutdoorLocation *v1; // esi@1 | |
1128 void *v2; // eax@1 | |
1129 void *v3; // ST14_4@1 | |
1130 void *v4; // eax@1 | |
1131 void *v5; // ST14_4@1 | |
1132 void *v6; // eax@1 | |
1133 unsigned int v7; // eax@1 | |
1545 | 1134 //char v8; // zf@1 |
0 | 1135 |
1136 v1 = this; | |
1137 strcpy(this->pLevelFilename, "blank"); | |
1138 strcpy(v1->pLocationFileName, "i6.odm"); | |
1139 strcpy(v1->pLocationFileDescription, "MM6 Outdoor v1.00"); | |
1140 v1->uNumBModels = 0; | |
630 | 1141 v1->pTileTypes[0].tileset = Tileset_Grass; |
1142 v1->pTileTypes[1].tileset = Tileset_Water; | |
1143 v1->pTileTypes[2].tileset = Tileset_6; | |
1144 v1->pTileTypes[3].tileset = Tileset_RoadGrassCobble; | |
0 | 1145 v1->LoadTileGroupIds(); |
630 | 1146 v1->LoadRoadTileset(); |
1583 | 1147 free(v1->pBModels); |
1148 free(v1->pSpawnPoints); | |
0 | 1149 v1->pBModels = 0; |
1150 v1->pSpawnPoints = 0; | |
1151 v1->pTerrain.Initialize(); | |
1152 v1->pTerrain.ZeroLandscape(); | |
760 | 1153 v1->pTerrain.FillDMap(0, 0, 128, 128); |
1583 | 1154 free(v1->pCmap); |
760 | 1155 v1->pCmap = 0; |
1583 | 1156 v2 = malloc(0x8000u); |
0 | 1157 v3 = v1->pOMAP; |
760 | 1158 v1->pCmap = v2; |
1583 | 1159 free(v3); |
0 | 1160 v1->pOMAP = 0; |
1583 | 1161 v4 = malloc(0x10000u); |
0 | 1162 v1->pOMAP = (unsigned int *)v4; |
1163 memset(v4, 0, 0x10000u); | |
1164 v5 = v1->pFaceIDLIST; | |
1165 v1->numFaceIDListElems = 0; | |
1583 | 1166 free(v5); |
0 | 1167 v1->pFaceIDLIST = 0; |
1583 | 1168 v6 = malloc(2); |
0 | 1169 v1->pFaceIDLIST = (unsigned __int16 *)v6; |
1170 *(short *)v6 = 0; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1171 strcpy(v1->pSkyTextureName, pDefaultSkyTexture.data()); |
0 | 1172 v1->uSky_TextureID = pBitmaps_LOD->LoadTexture(v1->pSkyTextureName); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1173 strcpy(v1->pGroundTileset, byte_6BE124_cfg_textures_DefaultGroundTexture.data()); |
0 | 1174 v7 = pBitmaps_LOD->LoadTexture(v1->pGroundTileset); |
1175 v1->uMainTile_BitmapID = v7; | |
1545 | 1176 |
1177 if ( v1->uSky_TextureID == -1 ) | |
1178 Error("Invalid Sky Tex Handle"); | |
1179 | |
0 | 1180 if ( v1->uMainTile_BitmapID == -1 ) |
1545 | 1181 Error("Invalid Ground Tex Handle"); |
0 | 1182 } |
1183 | |
1184 | |
1185 | |
1186 //----- (0047CF9C) -------------------------------------------------------- | |
1187 void OutdoorLocation::Release() | |
1188 { | |
1189 //OutdoorLocation *v1; // esi@1 | |
1190 //signed int v2; // edi@1 | |
1191 //int v3; // ebx@2 | |
1192 //void *v4; // ST24_4@4 | |
1193 //char *v5; // ebx@4 | |
1194 //void **v6; // esi@4 | |
1195 | |
1196 //v1 = this; | |
1197 strcpy(pLevelFilename, "blank"); | |
1198 strcpy(pLocationFileName, "default.odm"); | |
1199 strcpy(pLocationFileDescription, "MM6 Outdoor v1.00"); | |
1200 strcpy(pSkyTextureName, "sky043"); | |
1201 strcpy(pGroundTileset, "hm005"); | |
1202 | |
1203 if (pBModels) | |
1204 { | |
1205 for (uint i = 0; i < uNumBModels; ++i) | |
1206 pBModels[i].Release(); | |
1207 | |
1583 | 1208 free(pBModels); |
0 | 1209 pBModels = nullptr; |
1210 uNumBModels = 0; | |
1211 } | |
1212 | |
1213 if (pSpawnPoints) | |
1214 { | |
1583 | 1215 free(pSpawnPoints); |
0 | 1216 pSpawnPoints = nullptr; |
1217 } | |
1218 uNumSpawnPoints = 0; | |
1219 | |
1220 pTerrain.Release(); | |
1221 | |
760 | 1222 if (pCmap) |
0 | 1223 { |
1583 | 1224 free(pCmap); |
760 | 1225 pCmap = nullptr; |
0 | 1226 } |
1227 if (pOMAP) | |
1228 { | |
1583 | 1229 free(pOMAP); |
0 | 1230 pOMAP = nullptr; |
1231 } | |
1232 if (pFaceIDLIST) | |
1233 { | |
1583 | 1234 free(pFaceIDLIST); |
0 | 1235 pFaceIDLIST = nullptr; |
1236 } | |
1237 if (pTerrainNormals) | |
1238 { | |
1583 | 1239 free(pTerrainNormals); |
0 | 1240 pTerrainNormals = nullptr; |
1241 } | |
1242 } | |
1243 | |
1244 //----- (0047D0A6) -------------------------------------------------------- | |
119 | 1245 bool OutdoorLocation::Load(const char *pFilename, ODMFace *File, size_t pNumItems, int thisa)//çàãðóçêà ëîêàöèè |
0 | 1246 { |
1247 //OutdoorLocation *pOutdoorLocation; // esi@1 | |
1248 /*bool result; // eax@9 | |
1249 bool v7; // ebx@9 | |
1250 size_t v8; // eax@10 | |
1251 void *v9; // eax@10 | |
1252 void *v10; // eax@10 | |
1253 void *v11; // eax@10 | |
1254 int v12; // ebx@11 | |
1255 BSPModel *v13; // eax@12 | |
1256 void *v14; // eax@12 | |
1257 BSPModel *v15; // ecx@12 | |
1258 void *v16; // eax@12 | |
1259 BSPModel *v17; // ecx@12 | |
1260 BSPModel *v18; // eax@12 | |
1261 __int16 v19; // ax@15 | |
1262 __int16 v20; // ax@16 | |
1263 int v21; // ecx@16 | |
1264 ODMFace *v22; // ebx@26 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1265 SpriteObject *pItems; // ecx@27 |
0 | 1266 unsigned int v24; // eax@28 |
1267 //unsigned __int8 v25; // zf@28 | |
1268 //unsigned __int8 v26; // sf@28 | |
1269 ODMFace *v27; // eax@28 | |
1270 const char *i; // edx@29 | |
1271 unsigned __int16 v29; // ax@33 | |
1272 unsigned __int16 v30; // ax@37 | |
1273 int v31; // ecx@37 | |
1274 int v32; // eax@38 | |
1275 void *v33; // eax@38 | |
1276 TileDesc *v34; // eax@43 | |
1277 unsigned int v35; // eax@43 | |
1278 unsigned int v36; // edi@43 | |
1279 unsigned int v37; // edi@45*/ | |
1280 //size_t v38; // eax@50 | |
1281 FILE *v39; // eax@50 | |
1282 //unsigned int v40; // edi@56 | |
1283 //void *v41; // eax@56 | |
1284 //void *v42; // ebx@56 | |
1285 //const void *v43; // ebx@59 | |
1286 //const void *v44; // ebx@59 | |
1287 //unsigned int v45; // eax@59 | |
1288 //BSPModel *v46; // eax@59 | |
1289 //unsigned int v47; // ecx@59 | |
1290 //int v48; // ebx@60 | |
1291 //BSPModel *v49; // eax@61 | |
1292 //BSPModel *v50; // eax@61 | |
1293 //BSPModel *v51; // eax@61 | |
1294 //BSPModel *v52; // eax@61 | |
1295 //BSPModel *v53; // eax@61 | |
1296 //BSPModel *v54; // ecx@61 | |
1297 //BSPModel *v55; // ecx@61 | |
1298 //BSPModel *v56; // ecx@61 | |
1299 //void *v57; // ST24_4@61 | |
1300 //BSPModel *v58; // ecx@61 | |
1301 //void *v59; // ST18_4@61 | |
1302 //BSPModel *v60; // eax@61 | |
1303 //__int16 v61; // ax@64 | |
1304 unsigned __int16 v62; // ax@65 | |
1305 //ODMFace *v63; // ecx@65 | |
1306 //unsigned __int16 v64; // ax@80 | |
1307 //const char *v65; // ecx@80 | |
1308 //int v66; // eax@81 | |
1309 //void *v67; // eax@81 | |
1310 //int v68; // ecx@81 | |
1311 //void *v69; // eax@81 | |
1312 //unsigned int v70; // eax@81 | |
1313 //SpawnPointMM7 *v71; // eax@81 | |
1314 //unsigned int v72; // ecx@81 | |
1315 //size_t v73; // eax@81 | |
1316 //int v74; // edi@87 | |
1317 //void *v75; // edi@88 | |
1318 //unsigned int v76; // edx@94 | |
1319 //int v77; // ecx@94 | |
1320 //char *v78; // eax@95 | |
1321 //unsigned int v79; // edx@97 | |
1322 //unsigned int v80; // eax@99 | |
1323 //int v81; // eax@107 | |
1324 //void *v82; // edi@114 | |
1325 //size_t v83; // eax@120 | |
1326 //const void *v84; // edi@120 | |
1327 //const void *v85; // edi@120 | |
1328 //BSPModel *v86; // eax@124 | |
1329 //unsigned int v87; // eax@124 | |
1330 //BSPModel *v88; // eax@126 | |
1331 //BSPModel *v89; // eax@127 | |
1332 //ODMFace *v90; // eax@129 | |
1333 //const void *v91; // edi@138 | |
1334 //const void *v92; // edi@141 | |
1335 //const void *v93; // edi@141 | |
1336 //const void *v94; // edi@144 | |
1337 //const void *v95; // edi@144 | |
1338 //const char *v96; // edi@147 | |
1339 //unsigned int v97; // eax@147 | |
1340 //TileDesc *v98; // eax@147 | |
1341 //unsigned int v99; // eax@147 | |
1342 //int v100; // ecx@150 | |
1343 //unsigned int v101; // eax@157 | |
1344 int v102; // edi@159 | |
1345 //void *v103; // [sp-14h] [bp-B94h]@55 | |
1346 //void *v104; // [sp-10h] [bp-B90h]@59 | |
1347 //size_t v105; // [sp-Ch] [bp-B8Ch]@59 | |
1348 //char *v106; // [sp-8h] [bp-B88h]@59 | |
1349 int v107; // [sp-4h] [bp-B84h]@12 | |
1350 int v108; // [sp+0h] [bp-B80h]@10 | |
1351 char Src[968]; // [sp+10h] [bp-B70h]@110 | |
1352 char Dst[968]; // [sp+3D8h] [bp-7A8h]@50 | |
1353 char Str[256]; // [sp+7A0h] [bp-3E0h]@50 | |
1354 /*char DstBuf; // [sp+8A0h] [bp-2E0h]@10 | |
1355 __int32 Offset; // [sp+8A4h] [bp-2DCh]@10 | |
1356 __int32 v114; // [sp+8B0h] [bp-2D0h]@10 | |
1357 __int32 v115; // [sp+8BCh] [bp-2C4h]@10 | |
1358 __int32 v116; // [sp+8C8h] [bp-2B8h]@10 | |
1359 __int32 v117; // [sp+8D4h] [bp-2ACh]@10 | |
1360 __int32 v118; // [sp+8E0h] [bp-2A0h]@10 | |
1361 __int32 v119; // [sp+8ECh] [bp-294h]@10 | |
1362 __int32 v120; // [sp+8F8h] [bp-288h]@10 | |
1363 __int32 v121; // [sp+904h] [bp-27Ch]@10 | |
1364 __int32 v122; // [sp+910h] [bp-270h]@10 | |
1365 __int32 v123; // [sp+91Ch] [bp-264h]@10 | |
1366 __int32 v124; // [sp+928h] [bp-258h]@26 | |
1367 __int32 v125; // [sp+934h] [bp-24Ch]@35 | |
1368 __int32 v126; // [sp+940h] [bp-240h]@38 | |
1369 __int32 v127; // [sp+94Ch] [bp-234h]@38 | |
1370 __int32 v128; // [sp+958h] [bp-228h]@38 | |
1371 __int32 v129; // [sp+964h] [bp-21Ch]@38 | |
1372 __int32 v130; // [sp+970h] [bp-210h]@38 | |
1373 __int32 v131; // [sp+97Ch] [bp-204h]@38 | |
1374 __int32 v132; // [sp+988h] [bp-1F8h]@38 | |
1375 __int32 v133; // [sp+994h] [bp-1ECh]@38 | |
1376 __int32 v134; // [sp+9A0h] [bp-1E0h]@38 | |
1377 __int32 v135; // [sp+9ACh] [bp-1D4h]@38 | |
1378 __int32 v136; // [sp+9D0h] [bp-1B0h]@10*/ | |
1379 //char FileName[8]; // [sp+A20h] [bp-160h]@8 | |
1380 //char v138; // [sp+A28h] [bp-158h]@12 | |
1381 //int v139; // [sp+B1Ch] [bp-64h]@10 | |
1382 //char pContainer[32]; // [sp+B20h] [bp-60h]@1 | |
1383 //int *v141; // [sp+B40h] [bp-40h]@50 | |
1384 //__int64 v142; // [sp+B44h] [bp-3Ch]@55 | |
1385 //size_t pSource; // [sp+B4Ch] [bp-34h]@56 | |
1386 //int v144; // [sp+B50h] [bp-30h]@61 | |
1387 //int v145; // [sp+B54h] [bp-2Ch]@68 | |
1388 ODMHeader header; // [sp+B58h] [bp-28h]@50 | |
1389 //unsigned int pDestLen; // [sp+B68h] [bp-18h]@13 | |
1390 //FILE *ptr; // [sp+B6Ch] [bp-14h]@12 | |
1391 //void *v149; // [sp+B70h] [bp-10h]@19 | |
1392 char *Str2; // [sp+B74h] [bp-Ch]@12 | |
1393 //int v151; // [sp+B78h] [bp-8h]@59 | |
1394 //void *uSourceLen; // [sp+B7Ch] [bp-4h]@59 | |
1395 | |
1396 //pOutdoorLocation = this; | |
1397 //strcpy(pContainer, pFilename); | |
1398 | |
1399 if (bUnderwater) | |
1400 { | |
1401 pPaletteManager->pPalette_tintColor[0] = 0x10; | |
1402 pPaletteManager->pPalette_tintColor[1] = 0xC2; | |
1403 pPaletteManager->pPalette_tintColor[2] = 0x99; | |
762 | 1404 pPaletteManager->SetMistColor(37, 143, 92); |
0 | 1405 } |
1406 else | |
1407 { | |
1408 pPaletteManager->pPalette_tintColor[0] = 0; | |
1409 pPaletteManager->pPalette_tintColor[1] = 0; | |
1410 pPaletteManager->pPalette_tintColor[2] = 0; | |
1411 if (pPaletteManager->pPalette_mistColor[0] != 0x80 || | |
1412 pPaletteManager->pPalette_mistColor[1] != 0x80 || | |
1413 pPaletteManager->pPalette_mistColor[2] != 0x80) | |
1414 { | |
762 | 1415 pPaletteManager->SetMistColor(128, 128, 128); |
0 | 1416 pPaletteManager->RecalculateAll(); |
1417 } | |
1418 } | |
1419 | |
1420 _6807E0_num_decorations_with_sounds_6807B8 = 0; | |
1421 /*sprintf(FileName, "levels\\%s", pContainer); | |
1422 if ( GetFileAttributesA(FileName) != -1 ) | |
1423 { | |
1424 result = (bool)fopen(FileName, "rb"); | |
1425 v7 = result; | |
1426 File = (ODMFace *)result; | |
1427 if ( !result ) | |
1428 return result; | |
1429 *(int *)thisa = 1; | |
1430 v8 = strlen(pContainer); | |
1431 v108 = 2; | |
1432 *((char *)&v139 + v8) = 0; | |
1433 viewparams->uTextureID_LocationMap = pIcons_LOD->LoadTexture(pContainer, (enum TEXTURE_TYPE)v108); | |
1434 fread(&DstBuf, 0x180u, 1u, (FILE *)v7); | |
1435 fseek((FILE *)v7, Offset, 0); | |
1436 fread(this, 0xB0u, 1u, (FILE *)v7); | |
1437 LoadTileGroupIds(); | |
630 | 1438 LoadRoadTileset(); |
0 | 1439 strcpy(pGroundTileset, "grastyl"); |
1440 fseek((FILE *)v7, v114, 0); | |
1441 fread(&uNumBModels, 4u, 1u, (FILE *)v7); | |
1442 fseek((FILE *)v7, v115, 0); | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1443 fread(&uNumSpriteObjects, 4u, 1u, (FILE *)v7); |
0 | 1444 fseek((FILE *)v7, v116, 0); |
1445 fread(&uNumLevelDecorations, 4u, 1u, (FILE *)v7); | |
1446 fseek((FILE *)v7, v117, 0); | |
1447 fread(&uNumActors, 4u, 1u, (FILE *)v7); | |
1448 fseek((FILE *)v7, v118, 0); | |
1449 fread(&uNumChests, 4u, 1u, (FILE *)v7); | |
1450 pTerrain.Initialize(); | |
1451 fseek((FILE *)v7, v119, 0); | |
1452 fread(pTerrain.pHeightmap, 1u, 0x4000u, (FILE *)v7); | |
1453 fseek((FILE *)v7, v120, 0); | |
1454 fread(pTerrain.pTilemap, 1u, 0x4000u, (FILE *)v7); | |
1455 fseek((FILE *)v7, v121, 0); | |
1456 fread(pTerrain.pAttributemap, 1u, 0x4000u, (FILE *)v7); | |
1457 pTerrain._47C80A(0, 0, 128, 128); | |
1583 | 1458 free(ptr_D4); |
0 | 1459 ptr_D4 = 0; |
1583 | 1460 v9 = malloc(0, 0x8000u, "CMAP"); |
0 | 1461 v108 = (int)pOMAP; |
1462 ptr_D4 = v9; | |
1583 | 1463 free((void *)v108); |
0 | 1464 pOMAP = 0; |
1583 | 1465 v10 = malloc(0, 0x10000u, "OMAP"); |
0 | 1466 v108 = 0; |
1467 pOMAP = (unsigned int *)v10; | |
1468 fseek((FILE *)v7, v136, v108); | |
1469 fread(&uNumTerrainNormals, 4u, 1u, (FILE *)v7); | |
1470 fread(pTerrainSomeOtherData, 1u, 0x20000u, (FILE *)v7); | |
1471 fread(pTerrainNormalIndices, 1u, 0x10000u, (FILE *)v7); | |
1583 | 1472 pTerrainNormals = (Vec3_float_ *)malloc(pTerrainNormals, 12 * uNumTerrainNormals, "TerNorm"); |
0 | 1473 fread(pTerrainNormals, 1u, 12 * uNumTerrainNormals, (FILE *)v7); |
1583 | 1474 v11 = malloc(pBModels, 188 * uNumBModels, "BDdata"); |
0 | 1475 v108 = 0; |
1476 pBModels = (BSPModel *)v11; | |
1477 fseek((FILE *)v7, v122, v108); | |
1478 fread(pBModels, 0xBCu, uNumBModels, (FILE *)v7); | |
1479 fseek((FILE *)v7, v123, 0); | |
1480 pNumItems = 0; | |
1481 if ( (signed int)uNumBModels > 0 ) | |
1482 { | |
1483 v12 = 0; | |
1484 while ( 1 ) | |
1485 { | |
1486 pBModels[v12].pVertices.pVertices = 0; | |
1487 pBModels[v12].pFaces = 0; | |
1488 pBModels[v12].pFacesOrdering = 0; | |
1489 pBModels[v12].pNodes = 0; | |
1490 FileName[0] = 0; | |
1491 v108 = (int)&pBModels[v12]; | |
1492 sprintfex(FileName, "%s", v108); | |
1493 v13 = pBModels; | |
1494 v138 = 0; | |
1583 | 1495 pBModels[v12].pVertices.pVertices = (Vec3_int_ *)malloc(v13[v12].pVertices.pVertices, 12 * v13[v12].pVertices.uNumVertices, |
0 | 1496 FileName); |
1583 | 1497 pBModels[v12].pFaces = (ODMFace *)malloc(pBModels[v12].pFaces, 308 * pBModels[v12].uNumFaces, |
0 | 1498 FileName); |
1583 | 1499 pBModels[v12].pFacesOrdering = (unsigned __int16 *)malloc(pBModels[v12].pFacesOrdering, |
0 | 1500 2 * pBModels[v12].uNumFaces, FileName); |
1583 | 1501 v14 = malloc(pBModels[v12].pNodes, 8 * pBModels[v12].uNumNodes, FileName); |
0 | 1502 v15 = pBModels; |
1503 v108 = (int)File; | |
1504 v15[v12].pNodes = (BSPNode *)v14; | |
1505 fread(pBModels[v12].pVertices.pVertices, 0xCu, pBModels[v12].pVertices.uNumVertices, (FILE *)v108); | |
1506 fread(pBModels[v12].pFaces, 0x134u, pBModels[v12].uNumFaces, (FILE *)File); | |
1507 fread(pBModels[v12].pFacesOrdering, 2u, pBModels[v12].uNumFaces, (FILE *)File); | |
1508 fread(pBModels[v12].pNodes, 8u, pBModels[v12].uNumNodes, (FILE *)File); | |
1509 v16 = malloc(10 * pBModels[v12].uNumFaces); | |
1510 v107 = (int)File; | |
1511 v17 = pBModels; | |
1512 ptr = (FILE *)v16; | |
1513 fread(v16, 0xAu, v17[v12].uNumFaces, (FILE *)File); | |
1514 v18 = pBModels; | |
1515 Str2 = 0; | |
1516 if ( (signed int)v18[v12].uNumFaces > 0 ) | |
1517 break; | |
1518 LABEL_25: | |
1519 free(ptr); | |
1520 ++pNumItems; | |
1521 ++v12; | |
1522 if ( (signed int)pNumItems >= (signed int)uNumBModels ) | |
1523 goto LABEL_26; | |
1524 } | |
1525 pDestLen = 0; | |
1526 pFilename = (char *)ptr; | |
1527 while ( 1 ) | |
1528 { | |
1529 thisa = (int)((char *)v18[v12].pFaces + pDestLen); | |
1530 if ( !(*(char *)(thisa + 29) & 0x40) ) | |
1531 break; | |
1532 v19 = pTextureFrameTable->FindTextureByName(pFilename); | |
1533 *(short *)(thisa + 272) = v19; | |
1534 if ( !v19 ) | |
1535 { | |
1536 v20 = pBitmaps_LOD->LoadTexture(pFilename); | |
1537 v21 = thisa; | |
1538 *(char *)(v21 + 29) &= 0xBFu; | |
1539 LABEL_19: | |
1540 *(short *)(v21 + 272) = v20; | |
1541 v149 = (void *)(v20 != -1 ? &pBitmaps_LOD->pTextures[v20] : 0); | |
1542 auto pTex = (Texture *)v149; | |
1543 if (pTex) | |
1544 pTex->palette_id2 = pPaletteManager->LoadPalette(pTex->palette_id1); | |
1545 goto LABEL_20; | |
1546 } | |
1547 pTextureFrameTable->LoadAnimationSequenceAndPalettes(*(unsigned __int16 *)((char *)&pBModels[v12].pFaces->uTextureID + pDestLen)); | |
1548 LABEL_20: | |
1549 if ( *(short *)(thisa + 292) ) | |
1550 { | |
1551 if ( ((ODMFace *)thisa)->HasEventHint() ) | |
1552 *(char *)(thisa + 30) |= 0x10u; | |
1553 else | |
1554 *(char *)(thisa + 30) &= 0xEFu; | |
1555 } | |
1556 ++Str2; | |
1557 v18 = pBModels; | |
1558 pDestLen += 308; | |
1559 pFilename += 10; | |
1560 if ( (signed int)Str2 >= (signed int)v18[v12].uNumFaces ) | |
1561 goto LABEL_25; | |
1562 } | |
1563 v20 = pBitmaps_LOD->LoadTexture(pFilename); | |
1564 v21 = thisa; | |
1565 goto LABEL_19; | |
1566 } | |
1567 LABEL_26: | |
1568 v22 = File; | |
1569 fseek((FILE *)File, v124, 0); | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1570 fread(pSpriteObjects, 0x70u, uNumSpriteObjects, (FILE *)v22); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1571 if ( (signed int)uNumSpriteObjects > 0 ) |
0 | 1572 { |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1573 pItems = pSpriteObjects; |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
1574 pNumItems = uNumSpriteObjects; |
0 | 1575 do |
1576 { | |
1577 v24 = pItems->stru_24.uItemID; | |
1578 thisa = 0; | |
1579 v27 = (ODMFace *)(48 * v24); | |
1580 v25 = pObjectList->uNumObjects == 0; | |
1581 v26 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1582 LOWORD(v27) = *(short *)((char *)&v27->pFacePlane.vNormal.x + (int)((char *)&pItemsTable + 24)); | |
1583 File = v27; | |
1584 pItems->uItemType = (unsigned __int16)v27; | |
1585 if ( v26 | v25 ) | |
1586 { | |
1587 LABEL_33: | |
1588 v29 = 0; | |
1589 } | |
1590 else | |
1591 { | |
1592 for ( i = (const char *)&pObjectList->pObjects->uObjectID; (short)v27 != *(short *)i; i = pFilename ) | |
1593 { | |
1594 ++thisa; | |
1595 pFilename = (char *)i + 56; | |
1596 if ( thisa >= (signed int)pObjectList->uNumObjects ) | |
1597 goto LABEL_33; | |
1598 LOWORD(v27) = (short)File; | |
1599 } | |
1600 v29 = thisa; | |
1601 } | |
1602 pItems->uObjectDescID = v29; | |
1603 ++pItems; | |
1604 --pNumItems; | |
1605 } | |
1606 while ( pNumItems ); | |
1607 } | |
1608 fseek((FILE *)v22, v125, 0); | |
1609 fread(pLevelDecorations, 0x20u, uNumLevelDecorations, (FILE *)v22); | |
1610 pNumItems = 0; | |
1611 if ( (signed int)uNumLevelDecorations > 0 ) | |
1612 { | |
1613 thisa = (int)pLevelDecorations; | |
1614 do | |
1615 { | |
1616 fread(FileName, 1u, 0x20u, (FILE *)v22); | |
1617 v30 = pDecorationList->GetDecorIdByName(FileName); | |
1618 v31 = thisa; | |
1619 ++pNumItems; | |
1620 thisa += 32; | |
1621 *(short *)v31 = v30; | |
1622 } | |
1623 while ( (signed int)pNumItems < (signed int)uNumLevelDecorations ); | |
1624 } | |
1625 fseek((FILE *)v22, v126, 0); | |
1626 fread(pActors, 0x344u, uNumActors, (FILE *)v22); | |
1627 fseek((FILE *)v22, v127, 0); | |
1628 fread(pChests, 0x14CCu, uNumChests, (FILE *)v22); | |
1629 fseek((FILE *)v22, v128, 0); | |
1630 fread(&field_DC, 4u, 1u, (FILE *)v22); | |
1583 | 1631 free(pFaceIDLIST); |
0 | 1632 v32 = field_DC; |
1633 pFaceIDLIST = 0; | |
1583 | 1634 v33 = malloc(0, 2 * v32, "IDLIST"); |
0 | 1635 v108 = (int)v22; |
1636 pFaceIDLIST = (unsigned __int16 *)v33; | |
1637 fread(v33, 2u, field_DC, (FILE *)v108); | |
1638 fseek((FILE *)v22, v129, 0); | |
1639 fread(pOMAP, 4u, 0x4000u, (FILE *)v22); | |
1640 fseek((FILE *)v22, v130, 0); | |
1641 fread(&uNumSpawnPoints, 4u, 1u, (FILE *)v22); | |
1583 | 1642 pSpawnPoints = (SpawnPointMM7 *)malloc(pSpawnPoints, 24 * uNumSpawnPoints, "Spawn"); |
0 | 1643 fseek((FILE *)v22, v131, 0); |
1644 fread(pSpawnPoints, 0x18u, uNumSpawnPoints, (FILE *)v22); | |
1645 fseek((FILE *)v22, v132, 0); | |
1646 fread(&ddm, 0x28u, 1u, (FILE *)v22); | |
1647 fseek((FILE *)v22, v133, 0); | |
1648 fread(&stru_5E4C90, 1u, 0xC8u, (FILE *)v22); | |
1649 fseek((FILE *)v22, v134, 0); | |
1650 fread(&uLastVisitDay, 1u, 0x38u, (FILE *)v22); | |
1651 fseek((FILE *)v22, v135, 0); | |
1652 fread(&uLastVisitDay, 1u, 4u, (FILE *)v22); | |
1653 thisa = (int)pTileTypes; | |
1654 pTileTable->InitializeTileset(4); | |
1655 pTileTable->InitializeTileset(pTileTypes[0].uTileGroup); | |
1656 pTileTable->InitializeTileset(pTileTypes[1].uTileGroup); | |
1657 pTileTable->InitializeTileset(pTileTypes[2].uTileGroup); | |
1658 pTileTable->InitializeTileset(pTileTypes[3].uTileGroup); | |
1659 if ( this != (OutdoorLocation *)-96 && pSkyTextureName[0] ) | |
1660 { | |
1661 v108 = 0; | |
1662 v107 = (int)pSkyTextureName; | |
1663 } | |
1664 else | |
1665 { | |
1666 v108 = 0; | |
1667 v107 = (int)pDefaultSkyTexture; | |
1668 } | |
1669 uSky_TextureID = pBitmaps_LOD->LoadTexture((const char *)v107, (enum TEXTURE_TYPE)v108); | |
1670 strcpy(pGroundTileset, byte_6BE124_cfg_textures_DefaultGroundTexture); | |
1671 v34 = pTileTable->GetTileById(pTileTypes[0].uTileID); | |
1672 v35 = pBitmaps_LOD->LoadTexture(v34->pTileName); | |
1673 v36 = uSky_TextureID; | |
1674 uMainTile_BitmapID = v35; | |
1675 if ( v36 != -1 ) | |
1676 pBitmaps_LOD->pTextures[v36].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[v36].palette_id1); | |
1677 | |
1678 v37 = uMainTile_BitmapID; | |
1679 if ( v37 != -1 ) | |
1680 pBitmaps_LOD->pTextures[v37].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[v37].palette_id1); | |
1681 | |
1682 _47F0E2(); | |
1683 pGameLoadingUI_ProgressBar->Progress(); | |
1684 fclose((FILE *)v22); | |
1685 goto LABEL_150; | |
1686 }*/ | |
1687 | |
1688 assert(sizeof(BSPModel) == 188); | |
1689 | |
1690 if (!pGames_LOD->DoesContainerExist(pFilename)) | |
1545 | 1691 Error("Unable to find %s in Games.LOD", pFilename); |
0 | 1692 |
119 | 1693 |
1694 char pMinimapTextureFilename[1024]; | |
1695 strcpy(pMinimapTextureFilename, pFilename); | |
1696 pMinimapTextureFilename[strlen(pMinimapTextureFilename) - 4] = 0; | |
1697 viewparams->uTextureID_LocationMap = pIcons_LOD->LoadTexture(pMinimapTextureFilename, TEXTURE_16BIT_PALETTE); | |
1698 | |
0 | 1699 //strcpy(FileName, pContainer); |
1700 strcpy(Str, pFilename); | |
1701 strcpy(Str + strlen(Str) - 4, ".odm"); | |
1702 //v141 = &v139; | |
1703 //v38 = strlen(pFilename); | |
1704 //strcpy((char *)&v139 + v38, ".odm"); | |
1705 v39 = pGames_LOD->FindContainer(Str, 1); | |
1706 //Str[strlen(Str) - 4] = 0; | |
1707 | |
1708 header.uCompressedSize = 0; | |
1709 header.uDecompressedSize = 0; | |
1710 //ptr = v39; | |
1711 header.uVersion = 91969; | |
1712 header.pMagic[0] = 'm'; | |
1713 header.pMagic[1] = 'v'; | |
1714 header.pMagic[2] = 'i'; | |
1715 header.pMagic[3] = 'i'; | |
1716 fread(&header, 0x10u, 1u, v39); | |
1717 if (header.uVersion != 91969 || | |
1718 header.pMagic[0] != 'm' || | |
1719 header.pMagic[1] != 'v' || | |
1720 header.pMagic[2] != 'i' || | |
1721 header.pMagic[3] != 'i') | |
1722 { | |
1723 MessageBoxW(nullptr, L"Can't load file!", | |
1724 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:507", 0); | |
1725 } | |
1726 //v40 = header.uCompressedSize; | |
1727 //pSource = header.uDecompressedSize; | |
1728 //v41 = malloc(header.uDecompressedSize); | |
1729 auto pSrcMem = (unsigned char *)malloc(header.uDecompressedSize); | |
1730 auto pSrc = pSrcMem; | |
1731 //v42 = v41; | |
1732 //HIDWORD(v142) = (uint32)pSrc; | |
1733 if (header.uCompressedSize < header.uDecompressedSize) | |
1734 { | |
1735 auto pComressedSrc = (char *)malloc(header.uCompressedSize); | |
1736 fread(pComressedSrc, header.uCompressedSize, 1, v39); | |
1737 | |
1738 uint actualDecompressedSize = header.uDecompressedSize; | |
1739 zlib::MemUnzip(pSrc, &actualDecompressedSize, pComressedSrc, header.uCompressedSize); | |
1740 free(pComressedSrc); | |
1741 } | |
1742 else | |
1743 { | |
1744 fread(pSrc, header.uDecompressedSize, 1, v39); | |
1745 } | |
1746 | |
1747 memcpy(pLevelFilename, pSrc, 0x20); | |
1748 memcpy(pLocationFileName, pSrc + 0x20, 0x20); | |
1749 memcpy(pLocationFileDescription, pSrc + 0x40, 0x20); | |
67 | 1750 memcpy(pSkyTextureName, pSrc + 3 * 32, 32); |
0 | 1751 memcpy(pGroundTileset, pSrc + 0x80, 0x20); |
1752 memcpy(pTileTypes, pSrc + 0xA0, 0x10); | |
1753 pSrc += 0xB0; | |
1754 | |
1755 //v43 = (char *)pSrc + 176; | |
1756 LoadTileGroupIds(); | |
630 | 1757 LoadRoadTileset(); |
0 | 1758 strcpy(pGroundTileset, "grastyl"); |
1759 pGameLoadingUI_ProgressBar->Progress(); | |
1760 pTerrain.Initialize(); | |
1761 //v108 = 16384; | |
1762 //v107 = (int)v43; | |
1763 //v106 = (char *)pTerrain.pHeightmap; | |
1764 memcpy(pTerrain.pHeightmap, pSrc, 0x4000); | |
1765 pSrc += 0x4000; | |
1766 | |
1767 //v43 = (char *)v43 + 16384; | |
1768 //v105 = 16384; | |
1769 //v104 = (void *)v43; | |
1770 //v103 = pTerrain.pTilemap; | |
1771 memcpy(pTerrain.pTilemap, pSrc, 0x4000); | |
1772 pSrc += 0x4000; | |
1773 | |
1774 //v43 = (char *)v43 + 16384; | |
1775 memcpy(pTerrain.pAttributemap, pSrc, 0x4000); | |
1776 pSrc += 0x4000; | |
1777 | |
1778 //v43 = (char *)v43 + 16384; | |
1779 //v108 = (int)ptr_D4; | |
760 | 1780 if (pCmap) |
0 | 1781 { |
1583 | 1782 free(pCmap); |
760 | 1783 pCmap = nullptr; |
0 | 1784 } |
1583 | 1785 pCmap = malloc(0x8000); |
760 | 1786 pTerrain.FillDMap(0, 0, 128, 128); |
0 | 1787 |
1788 pGameLoadingUI_ProgressBar->Progress(); | |
1789 memcpy(&uNumTerrainNormals, pSrc, 4); | |
1790 //v43 = (char *)v43 + 4; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1791 memcpy(pTerrainSomeOtherData.data(), pSrc + 4, 0x20000); |
0 | 1792 pSrc += 4 + 0x20000; |
1793 //v43 = (char *)v43 + 131072; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1794 memcpy(pTerrainNormalIndices.data(), pSrc, 0x10000); |
0 | 1795 pSrc += 0x10000; |
1796 //v43 = (char *)v43 + 65536; | |
1797 | |
1798 //pFilename = (char *)(12 * uNumTerrainNormals); | |
1583 | 1799 pTerrainNormals = (Vec3_float_ *)malloc(sizeof(Vec3_float_) * uNumTerrainNormals); |
0 | 1800 memcpy(pTerrainNormals, pSrc, 12 * uNumTerrainNormals); |
1801 pSrc += 12 * uNumTerrainNormals; | |
1802 //v44 = (char *)v43 + (int)pFilename; | |
1803 //v44 = (char *)v44 + 4; | |
1804 //v45 = uNumBModels; | |
1805 //v108 = (int)"BDdata"; | |
1806 | |
1807 pGameLoadingUI_ProgressBar->Progress(); | |
1808 | |
1809 //v107 = 188 * v45; | |
1810 //v106 = (char *)pBModels; | |
1583 | 1811 //v46 = (BSPModel *)malloc(v106, 188 * v45, "BDdata"); |
0 | 1812 //v47 = uNumBModels; |
1813 memcpy(&uNumBModels, pSrc, 4); | |
1583 | 1814 pBModels = (BSPModel *)malloc(188 * uNumBModels); |
0 | 1815 //pFilename = (char *)(188 * v47); |
1816 memcpy(pBModels, pSrc + 4, 188 * uNumBModels); | |
1817 pSrc += 4 + 188 * uNumBModels; | |
1818 | |
1819 pGameLoadingUI_ProgressBar->Progress(); | |
1820 | |
1821 //uSourceLen = (char *)v44 + (int)pFilename; | |
1822 //v151 = 0; | |
1823 for (uint i = 0; i < uNumBModels; ++i) | |
1824 { | |
1825 //v48 = 0; | |
80 | 1826 auto model = &pBModels[i]; |
0 | 1827 |
1828 model->pVertices.pVertices = nullptr; | |
1829 model->pFaces = nullptr; | |
1830 model->pFacesOrdering = nullptr; | |
1831 model->pNodes = nullptr; | |
1832 //FileName[0] = 0; | |
1833 //v108 = (int)&pBModels[i]; | |
1834 //sprintf(FileName, "%s", v108); | |
1835 //v49 = pBModels; | |
1836 //v138 = 0; | |
1837 //v50 = &pBModels[v48]; | |
1838 //v108 = (int)FileName; | |
1839 //v107 = 12 * v50->pVertices.uNumVertices; | |
1840 //v106 = (char *)v50->pVertices.pVertices; | |
1841 assert(sizeof(Vec3_int_) == 12); | |
1842 uint verticesSize = model->pVertices.uNumVertices * sizeof(Vec3_int_); | |
1583 | 1843 model->pVertices.pVertices = (Vec3_int_ *)malloc(verticesSize); |
0 | 1844 memcpy(model->pVertices.pVertices, pSrc, verticesSize); |
1845 pSrc += verticesSize; | |
1846 //v51 = &pBModels[v48]; | |
1847 //v108 = (int)FileName; | |
1848 //v107 = 308 * v51->uNumFaces; | |
1849 //v106 = (char *)v51->pFaces; | |
1850 assert(sizeof(ODMFace) == 308); | |
1851 uint facesSize = model->uNumFaces * sizeof(ODMFace); | |
1583 | 1852 model->pFaces = (ODMFace *)malloc(facesSize); |
0 | 1853 memcpy(model->pFaces, pSrc, facesSize); |
1854 pSrc += facesSize; | |
1855 //v52 = &pBModels[v48]; | |
1856 //v108 = (int)FileName; | |
1857 //v107 = 2 * v52->uNumFaces; | |
1858 //v106 = (char *)v52->pFacesOrdering; | |
1859 uint facesOrderingSize = model->uNumFaces * sizeof(short); | |
1583 | 1860 model->pFacesOrdering = (unsigned __int16 *)malloc(facesOrderingSize); |
0 | 1861 memcpy(model->pFacesOrdering, pSrc, facesOrderingSize); |
1862 pSrc += facesOrderingSize; | |
1863 //v53 = &pBModels[v48]; | |
1864 //v108 = (int)FileName; | |
1865 //v107 = 8 * v53->uNumNodes; | |
1866 //v106 = (char *)v53->pNodes; | |
1867 assert(sizeof(BSPNode) == 8); | |
1868 uint nodesSize = model->uNumNodes * sizeof(BSPNode); | |
1583 | 1869 model->pNodes = (BSPNode *)malloc(nodesSize); |
0 | 1870 memcpy(model->pNodes, pSrc, nodesSize); |
1871 pSrc += nodesSize; | |
1872 //v54 = &pBModels[v48]; | |
1873 //v108 = 12 * v54->pVertices.uNumVertices; | |
1874 //pFilename = (char *)v108; | |
1875 //v107 = (int)uSourceLen; | |
1876 //v106 = (char *)v54->pVertices.pVertices; | |
1877 //memcpy(v106, uSourceLen, v108); | |
1878 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1879 //v55 = &pBModels[v48]; | |
1880 //v105 = 308 * v55->uNumFaces; | |
1881 //v104 = uSourceLen; | |
1882 //v103 = v55->pFaces; | |
1883 //pFilename = (char *)v105; | |
1884 //memcpy(v103, uSourceLen, v105); | |
1885 //v56 = &pBModels[v48]; | |
1886 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1887 //v57 = v56->pFacesOrdering; | |
1888 //pFilename = (char *)(2 * v56->uNumFaces); | |
1889 //memcpy(v57, uSourceLen, (size_t)pFilename); | |
1890 //v58 = &pBModels[v48]; | |
1891 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1892 //v59 = v58->pNodes; | |
1893 //pFilename = (char *)(8 * v58->uNumNodes); | |
1894 //memcpy(v59, uSourceLen, (size_t)pFilename); | |
1895 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1896 //ptr = (FILE *)malloc(10 * model->uNumFaces); | |
1897 auto textureFilenames = (const char *)malloc(10 * model->uNumFaces); | |
1898 //pFilename = (char *)(10 * pBModels[v48].uNumFaces); | |
1899 memcpy((char *)textureFilenames, pSrc, 10 * model->uNumFaces); | |
1900 pSrc += 10 * model->uNumFaces; | |
1901 //v144 = 0; | |
1902 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1903 //v60 = pBModels; | |
1904 for (uint j = 0; j < model->uNumFaces; ++j) | |
1905 { | |
1906 auto texFilename = textureFilenames + j * 10; | |
1907 //v149 = 0; | |
1908 //Str2 = (char *)ptr; | |
1909 | |
80 | 1910 auto *face = &model->pFaces[j]; |
0 | 1911 //pFilename = (char *)v149 + (unsigned int)v60[v48].pFaces; |
1030 | 1912 if (~face->uAttributes & FACE_DONT_CACHE_TEXTURE) |
0 | 1913 { |
1914 v62 = pBitmaps_LOD->LoadTexture(texFilename); | |
1915 // v63 = (ODMFace *)pFilename; | |
1916 goto LABEL_68; | |
1917 } | |
1918 //v61 = pTextureFrameTable->FindTextureByName(texFilename); | |
1919 face->uTextureID = pTextureFrameTable->FindTextureByName(texFilename); | |
1920 if (!face->uTextureID) | |
1921 { | |
1922 v62 = pBitmaps_LOD->LoadTexture(texFilename); | |
1923 //v63 = (ODMFace *)pFilename; | |
1030 | 1924 face->uAttributes &= ~FACE_DONT_CACHE_TEXTURE; |
0 | 1925 LABEL_68: |
1926 face->uTextureID = v62; | |
1927 //v145 = (signed __int16)v62 != -1 ? &pBitmaps_LOD->pTextures[(signed __int16)v62] : 0; | |
1928 //v108 = ((signed __int16)v62 != -1 ? pBitmaps_LOD->pTextures[(signed __int16)v62].palette_id1 : 36); | |
1929 if ((signed __int16)v62 != -1) | |
1930 pBitmaps_LOD->pTextures[v62].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[v62].palette_id1); | |
1931 goto LABEL_69; | |
1932 } | |
1933 pTextureFrameTable->LoadAnimationSequenceAndPalettes(face->uTextureID); | |
1934 LABEL_69: | |
1935 if (face->sCogTriggeredID) | |
1936 { | |
1937 if (face->HasEventHint()) | |
1030 | 1938 face->uAttributes |= 0x1000; |
0 | 1939 else |
1030 | 1940 face->uAttributes &= ~0x1000; |
0 | 1941 } |
1942 //++v144; | |
1943 //v60 = pBModels; | |
1944 //v149 = (char *)v149 + 308; | |
1945 //Str2 += 10; | |
1946 //if ( v144 >= (signed int)v60[v48].uNumFaces ) | |
1947 //goto LABEL_74; | |
1948 } | |
1949 | |
1950 //LABEL_74: | |
1951 free((void *)textureFilenames); | |
1952 // ++v151; | |
1953 // ++v48; | |
1954 // if ( v151 >= (signed int)uNumBModels ) | |
1955 // goto LABEL_75; | |
1956 } | |
1957 //LABEL_75: | |
1958 pGameLoadingUI_ProgressBar->Progress(); | |
1959 | |
1960 memcpy(&uNumLevelDecorations, pSrc, 4u); | |
1961 //uSourceLen = (char *)uSourceLen + 4; | |
1962 if (uNumLevelDecorations > 3000) | |
1963 MessageBoxW(nullptr, L"Can't load file!", | |
1964 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:678", 0); | |
1965 | |
1966 assert(sizeof(LevelDecoration) == 32); | |
1967 //pFilename = (char *)(32 * uNumLevelDecorations); | |
1202 | 1968 memcpy(pLevelDecorations.data(), pSrc + 4, uNumLevelDecorations * sizeof(LevelDecoration)); |
760 | 1969 pSrc += 4 + sizeof(LevelDecoration) * uNumLevelDecorations; |
0 | 1970 |
1971 pGameLoadingUI_ProgressBar->Progress(); | |
1972 | |
1973 //v151 = 0; | |
1974 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
1975 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
1976 { | |
1977 char name[256]; | |
760 | 1978 memcpy(name, pSrc, sizeof(LevelDecoration)); |
1979 pSrc += sizeof(LevelDecoration); | |
0 | 1980 |
1981 pLevelDecorations[i].uDecorationDescID = pDecorationList->GetDecorIdByName(name); | |
1982 } | |
1983 | |
1984 pGameLoadingUI_ProgressBar->Progress(); | |
1985 | |
1986 memcpy(&numFaceIDListElems, pSrc, 4); | |
1987 | |
1988 //uSourceLen = (char *)uSourceLen + 4; | |
1989 //v108 = (int)pFaceIDLIST; | |
1990 if (pFaceIDLIST) | |
1991 { | |
1583 | 1992 free(pFaceIDLIST); |
0 | 1993 pFaceIDLIST = nullptr; |
1994 } | |
1995 //v66 = field_DC; | |
1996 //pFaceIDLIST = 0; | |
1583 | 1997 //v67 = malloc(0, 2 * v66, "IDLIST"); |
0 | 1998 uint faceIDListSize = 2 * numFaceIDListElems; |
1583 | 1999 pFaceIDLIST = (unsigned short *)malloc(faceIDListSize); |
0 | 2000 //v68 = field_DC; |
2001 //pFaceIDLIST = (unsigned __int16 *)v67; | |
2002 //pFilename = (char *)(2 * v68); | |
2003 memcpy(pFaceIDLIST, pSrc + 4, faceIDListSize); | |
2004 pSrc += 4 + faceIDListSize; | |
2005 | |
2006 //uSourceLen = (char *)uSourceLen + (int)pFilename; | |
2007 pGameLoadingUI_ProgressBar->Progress(); | |
2008 | |
2009 //v108 = (int)pOMAP; | |
1583 | 2010 //free((void *)v108); |
0 | 2011 //pOMAP = 0; |
2012 if (pOMAP) | |
2013 { | |
1583 | 2014 free(pOMAP); |
0 | 2015 pOMAP = nullptr; |
2016 } | |
1583 | 2017 //v69 = malloc(0, 0x10000u, "OMAP"); |
2018 pOMAP = (unsigned int *)malloc(0x10000); | |
0 | 2019 //v108 = 65536; |
2020 //pOMAP = (unsigned int *)v69; | |
2021 memcpy(pOMAP, pSrc, 65536); | |
2022 pSrc += 65536; | |
2023 | |
2024 //uSourceLen = (char *)uSourceLen + 65536; | |
2025 pGameLoadingUI_ProgressBar->Progress(); | |
2026 | |
2027 memcpy(&uNumSpawnPoints, pSrc, 4); | |
2028 //uSourceLen = (char *)uSourceLen + 4; | |
2029 pGameLoadingUI_ProgressBar->Progress(); | |
2030 //v70 = uNumSpawnPoints; | |
2031 //v108 = (int)"Spawn"; | |
2032 //v107 = 24 * v70; | |
2033 //v106 = (char *)pSpawnPoints; | |
2034 assert(sizeof(SpawnPointMM7) == 24); | |
2035 uint spawnPointsSize = uNumSpawnPoints * sizeof(SpawnPointMM7); | |
1583 | 2036 pSpawnPoints = (SpawnPointMM7 *)malloc(spawnPointsSize); |
0 | 2037 //v72 = uNumSpawnPoints; |
2038 //pSpawnPoints = v71; | |
2039 memcpy(pSpawnPoints, pSrc + 4, spawnPointsSize); | |
2040 pSrc += 4 + spawnPointsSize; | |
2041 | |
2042 pGameLoadingUI_ProgressBar->Progress(); | |
2043 | |
2044 free(pSrcMem); | |
2045 | |
2046 //v108 = (int)".ddm"; | |
2047 //v73 = strlen(pContainer); | |
2048 strcpy(Str + strlen(Str) - 4, ".ddm"); | |
2049 //strcpy((char *)v141 + v73, (const char *)v108); | |
2050 v39 = pNew_LOD->FindContainer(Str, 1);// | |
2051 fread(&header, 0x10u, 1u, v39); | |
2052 Str2 = 0; | |
2053 if (header.uVersion != 91969 || | |
2054 header.pMagic[0] != 'm' || | |
2055 header.pMagic[1] != 'v' || | |
2056 header.pMagic[2] != 'i' || | |
2057 header.pMagic[3] != 'i' ) | |
2058 { | |
187 | 2059 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:746", 0); |
0 | 2060 Str2 = (char *)1; |
2061 } | |
2062 //v74 = 0; | |
2063 //pFilename = (char *)header.uCompressedSize; | |
2064 //v149 = 0; | |
2065 //pDestLen = header.uDecompressedSize; | |
2066 if ( !Str2 ) | |
2067 { | |
2068 pSrcMem = (unsigned char *)malloc(header.uDecompressedSize); | |
2069 pSrc = pSrcMem; | |
2070 //v149 = v75; | |
2071 if (header.uCompressedSize == header.uDecompressedSize) | |
2072 fread(pSrc, header.uDecompressedSize, 1u, v39); | |
2073 else if (header.uCompressedSize < header.uDecompressedSize) | |
2074 { | |
2075 auto compressedMem = malloc(header.uCompressedSize); | |
2076 fread(compressedMem, header.uCompressedSize, 1, v39); | |
2077 | |
2078 uint actualDecompressedSize = header.uDecompressedSize; | |
2079 zlib::MemUnzip(pSrc, &actualDecompressedSize, compressedMem, header.uCompressedSize); | |
2080 free(compressedMem); | |
2081 } | |
2082 else | |
2083 MessageBoxW(nullptr, L"Can't load file!", | |
2084 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:765", 0); | |
2085 | |
2086 assert(sizeof(DDM_DLV_Header) == 0x28); | |
2087 memcpy(&ddm, pSrc, sizeof(DDM_DLV_Header)); | |
2088 pSrc += sizeof(DDM_DLV_Header); | |
2089 //v74 = (int)((char *)v75 + 40); | |
2090 } | |
2091 //v76 = uNumBModels; | |
2092 //v77 = actualNumFacesInLevel = 0; | |
2093 uint actualNumFacesInLevel = 0; | |
2094 for (uint i = 0; i < uNumBModels; ++i) | |
80 | 2095 actualNumFacesInLevel += pBModels[i].uNumFaces; |
0 | 2096 |
2097 //v79 = ddm.uNumFacesInBModels; | |
2098 if (ddm.uNumFacesInBModels) | |
2099 { | |
2100 if ( ddm.uNumBModels ) | |
2101 { | |
2102 //v80 = ddm.uNumDecorations; | |
2103 if (ddm.uNumDecorations) | |
2104 { | |
2105 if (ddm.uNumFacesInBModels != actualNumFacesInLevel || | |
2106 ddm.uNumBModels != uNumBModels || | |
2107 ddm.uNumDecorations != uNumLevelDecorations ) | |
2108 Str2 = (char *)1; | |
2109 } | |
2110 } | |
2111 } | |
2112 | |
2113 if ( BYTE1(dword_6BE364_game_settings_1) & 0x20 ) | |
2114 pNumItems = 29030400; | |
2115 if ( Str2 ) | |
2116 { | |
2117 memset(Dst, 0, 0x3C8u); | |
2118 memset(Src, 0, 0x3C8u); | |
2119 goto LABEL_112; | |
2120 } | |
2121 //v81 = ddm.uLastRepawnDay; | |
2122 if ((unsigned int)((char *)File - ddm.uLastRepawnDay) >= pNumItems || !ddm.uLastRepawnDay) | |
2123 { | |
2124 memcpy(Dst, pSrc, 0x3C8u); | |
2125 memcpy(Src, pSrc + 968, 0x3C8u); | |
2126 LABEL_112: | |
2127 free(pSrcMem); | |
2128 | |
2129 ddm.uLastRepawnDay = (int)File; | |
2130 if (Str2 == 0) | |
2131 ++ddm.uNumRespawns; | |
2132 v108 = 0; | |
2133 *(int *)thisa = 1; | |
2134 v39 = pGames_LOD->FindContainer(Str, 0); | |
2135 fread(&header, 0x10, 1u, v39); | |
2136 //pFilename = (char *)header.uCompressedSize; | |
2137 //pDestLen = header.uDecompressedSize; | |
2138 //v82 = malloc(header.uDecompressedSize); | |
2139 pSrcMem = (unsigned char *)malloc(header.uDecompressedSize); | |
2140 //v149 = v82; | |
2141 if (header.uCompressedSize == header.uDecompressedSize) | |
2142 fread(pSrcMem, header.uDecompressedSize, 1, v39); | |
2143 else if (header.uCompressedSize < header.uDecompressedSize) | |
2144 { | |
2145 auto compressedMem = malloc(header.uCompressedSize); | |
2146 fread(compressedMem, header.uCompressedSize, 1u, v39); | |
2147 | |
2148 uint actualDecompressedSize = header.uDecompressedSize; | |
2149 zlib::MemUnzip(pSrcMem, &actualDecompressedSize, compressedMem, header.uCompressedSize); | |
2150 free(compressedMem); | |
2151 } | |
2152 else | |
2153 MessageBoxW(nullptr, L"Can't load file!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:857", 0); | |
2154 | |
2155 pSrc = pSrcMem + 40; | |
2156 goto LABEL_120; | |
2157 | |
2158 } | |
2159 *(int *)thisa = 0; | |
2160 LABEL_120: | |
2161 //v108 = (int)".odm"; | |
2162 //v83 = strlen(pContainer); | |
2163 //strcpy((char *)v141 + v83, (const char *)v108); | |
752 | 2164 memcpy(uUndiscoveredArea, pSrc, 0x3C8); |
0 | 2165 //v84 = (const void *)(v74 + 968); |
752 | 2166 memcpy(uDicovered_area, pSrc + 0x3C8, 0x3C8); |
0 | 2167 pSrc += 2 * 0x3C8; |
2168 //v85 = (char *)v84 + 968; | |
2169 | |
2170 pGameLoadingUI_ProgressBar->Progress(); | |
2171 | |
2172 if ( *(int *)thisa ) | |
2173 { | |
752 | 2174 memcpy(uUndiscoveredArea, Dst, 0x3C8u); |
2175 memcpy(uDicovered_area, Src, 0x3C8u); | |
0 | 2176 } |
2177 | |
2178 //v25 = uNumBModels == 0; | |
2179 //v26 = (uNumBModels & 0x80000000u) != 0; | |
2180 //v151 = 0; | |
2181 for (uint i = 0; i < uNumBModels; ++i) | |
2182 { | |
79 | 2183 auto model = pBModels[i]; |
0 | 2184 //pNumItems = 0; |
2185 //do | |
2186 //{ | |
2187 //v86 = pBModels; | |
2188 //thisa = 0; | |
2189 //v87 = (unsigned int)((char *)v86 + pNumItems); | |
79 | 2190 for (uint j = 0; j < model.uNumFaces; ++j) |
0 | 2191 { |
79 | 2192 auto face = model.pFaces[j]; |
0 | 2193 |
2194 //if ( *(int *)(v87 + 76) > 0 ) | |
2195 //{ | |
2196 //File = 0; | |
2197 //do | |
2198 //{ | |
2199 //v106 = (char *)&File->uAttributes + *(int *)(v87 + 84); | |
79 | 2200 memcpy(&face.uAttributes, pSrc, 4); |
0 | 2201 pSrc += 4; |
2202 //v88 = pBModels; | |
2203 //++File; | |
2204 //v85 = (char *)v85 + 4; | |
2205 //++thisa; | |
2206 //v87 = (unsigned int)((char *)v88 + pNumItems); | |
2207 //} | |
2208 //while ( thisa < *(int *)(v87 + 76) ); | |
2209 } | |
2210 | |
2211 //v89 = pBModels; | |
2212 //thisa = 0; | |
79 | 2213 for (uint j = 0; j < model.uNumFaces; ++j) |
0 | 2214 { |
79 | 2215 auto face = model.pFaces[j]; |
0 | 2216 //pFilename = 0; |
2217 //do | |
2218 //{ | |
2219 //v90 = (ODMFace *)&pFilename[*(unsigned int *)((char *)&v89->pFaces + pNumItems)]; | |
2220 //File = v90; | |
79 | 2221 if (face.sCogTriggeredID) |
0 | 2222 { |
79 | 2223 if (face.HasEventHint()) |
760 | 2224 face.uAttributes |= 0x1000u; |
0 | 2225 else |
1062 | 2226 face.uAttributes &= 0xFFFFEFFFu; |
0 | 2227 } |
2228 //++thisa; | |
2229 //v89 = pBModels; | |
2230 //pFilename += 308; | |
2231 //} | |
2232 //while ( thisa < *(signed int *)((char *)&v89->uNumFaces + pNumItems) ); | |
2233 } | |
2234 //++v151; | |
2235 //pNumItems += 188; | |
2236 //} | |
2237 //while ( v151 < (signed int)uNumBModels ); | |
2238 } | |
2239 | |
2240 pGameLoadingUI_ProgressBar->Progress(); | |
2241 | |
2242 //v151 = 0; | |
2243 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
2244 { | |
2245 //thisa = (int)&pLevelDecorations[0].field_2; | |
2246 //do | |
2247 //{ | |
1489 | 2248 memcpy(&pLevelDecorations[i].uFlags, pSrc, 2); |
0 | 2249 pSrc += 2; |
2250 //thisa += 32; | |
2251 //v85 = (char *)v85 + 2; | |
2252 //++v151; | |
2253 //} | |
2254 //while ( v151 < (signed int)uNumLevelDecorations ); | |
2255 } | |
2256 | |
2257 pGameLoadingUI_ProgressBar->Progress(); | |
2258 | |
2259 memcpy(&uNumActors, pSrc, 4); | |
2260 //v91 = (char *)v85 + 4; | |
2261 if (uNumActors > 500) | |
2262 MessageBoxW(nullptr, L"Can't load file!", | |
2263 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:939", 0); | |
2264 | |
2265 pGameLoadingUI_ProgressBar->Progress(); | |
2266 | |
2267 assert(sizeof(Actor) == 836); | |
2268 //pFilename = (char *)(836 * uNumActors); | |
1202 | 2269 memcpy(pActors.data(), pSrc + 4, uNumActors * sizeof(Actor)); |
0 | 2270 pSrc += 4 + uNumActors * sizeof(Actor); |
2271 //v92 = (char *)v91 + (int)pFilename; | |
2272 pGameLoadingUI_ProgressBar->Progress(); | |
2273 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2274 memcpy(&uNumSpriteObjects, pSrc, 4); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2275 assert(uNumSpriteObjects <= 1000 && "Too many objects"); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2276 assert(sizeof(SpriteObject) == 112); |
0 | 2277 |
2278 pGameLoadingUI_ProgressBar->Progress(); | |
2279 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2280 //pFilename = (char *)(112 * uNumSpriteObjects); |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
2281 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
|
2282 pSrc += 4 + uNumSpriteObjects * sizeof(SpriteObject); |
0 | 2283 |
2284 //v94 = (char *)v93 + (int)pFilename; | |
2285 pGameLoadingUI_ProgressBar->Progress(); | |
2286 | |
2287 memcpy(&uNumChests, pSrc, 4); | |
2288 //v95 = (char *)v94 + 4; | |
2289 if (uNumChests > 20) | |
2290 MessageBoxW(nullptr, L"Can't load file!", | |
2291 L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odmap.cpp:968", 0); | |
2292 | |
2293 pGameLoadingUI_ProgressBar->Progress(); | |
2294 | |
2295 assert(sizeof(Chest) == 5324); | |
2296 //pFilename = (char *)(5324 * uNumChests); | |
1202 | 2297 memcpy(pChests.data(), pSrc + 4 , uNumChests * sizeof(Chest)); |
0 | 2298 pSrc += 4 + uNumChests * sizeof(Chest); |
2299 //v96 = (char *)v95 + (int)pFilename; | |
2300 pGameLoadingUI_ProgressBar->Progress(); | |
2301 | |
2302 memcpy(&stru_5E4C90, pSrc, 0xC8); | |
2303 pSrc += 0xC8; | |
2304 | |
2305 pGameLoadingUI_ProgressBar->Progress(); | |
810 | 2306 memcpy(&loc_time, pSrc, 0x38u); |
0 | 2307 |
2308 free(pSrcMem); | |
2309 | |
630 | 2310 pTileTable->InitializeTileset(Tileset_Dirt); |
2311 pTileTable->InitializeTileset(Tileset_Snow); | |
0 | 2312 //v108 = pTileTypes[0].uTileGroup; |
630 | 2313 pTileTable->InitializeTileset(pTileTypes[0].tileset); |
0 | 2314 //v108 = pTileTypes[1].uTileGroup; |
630 | 2315 pTileTable->InitializeTileset(pTileTypes[1].tileset); |
0 | 2316 //v108 = pTileTypes[2].uTileGroup; |
630 | 2317 pTileTable->InitializeTileset(pTileTypes[2].tileset); |
0 | 2318 //v108 = pTileTypes[3].uTileGroup; |
630 | 2319 pTileTable->InitializeTileset(pTileTypes[3].tileset); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
2320 strcpy(pGroundTileset, byte_6BE124_cfg_textures_DefaultGroundTexture.data()); |
0 | 2321 //v97 = pTileTypes[0].uTileID; |
2322 //v108 = 0; | |
2323 auto v98 = pTileTable->GetTileById(pTileTypes[0].uTileID); | |
2324 //v99 = pBitmaps_LOD->LoadTexture(v98->pTileName, TEXTURE_DEFAULT); | |
2325 uMainTile_BitmapID = pBitmaps_LOD->LoadTexture(v98->pTileName, TEXTURE_DEFAULT); | |
2326 if (uMainTile_BitmapID != -1) | |
2327 pBitmaps_LOD->pTextures[uMainTile_BitmapID].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[uMainTile_BitmapID].palette_id1); | |
2328 | |
2329 _47F0E2(); | |
2330 | |
2331 LABEL_150: | |
2332 //v100 = HIDWORD(uLastVisitDay); | |
2333 //LODWORD(v142) = LODWORD(uLastVisitDay); | |
2334 //HIDWORD(v142) = v100; | |
810 | 2335 if (loc_time.uLastVisitDay) |
0 | 2336 { |
810 | 2337 if ( (signed int)((signed int)(signed __int64)((double)loc_time.uLastVisitDay * 0.234375) / 60 / 60 / 24) % 28 != pParty->uDaysPlayed ) |
0 | 2338 { |
2339 if ( rand() % 100 >= 20 ) | |
2340 v108 = dword_4EC268[rand() % dword_4EC2A8]; | |
2341 else | |
2342 v108 = dword_4EC28C[rand() % dword_4EC2AC]; | |
810 | 2343 sprintf(loc_time.sky_texture_name, "plansky%d", v108); |
0 | 2344 } |
2345 } | |
2346 else | |
2347 { | |
810 | 2348 strcpy(loc_time.sky_texture_name, "plansky3"); |
0 | 2349 } |
2350 //v101 = pBitmaps_LOD->LoadTexture(field_4F8); | |
810 | 2351 uSky_TextureID = pBitmaps_LOD->LoadTexture(loc_time.sky_texture_name); |
0 | 2352 if (uSky_TextureID != -1) |
2353 pBitmaps_LOD->pTextures[uSky_TextureID].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[uSky_TextureID].palette_id1); | |
2354 | |
2355 pPaletteManager->RecalculateAll(); | |
2356 pSoundList->LoadSound(53, 0); | |
2357 pSoundList->LoadSound(92, 0); | |
2358 pSoundList->LoadSound(57, 0); | |
2359 pSoundList->LoadSound(96, 0); | |
2360 pSoundList->LoadSound(64, 0); | |
2361 pSoundList->LoadSound(103, 0); | |
760 | 2362 for (int i=0; i<3;++i) |
0 | 2363 { |
760 | 2364 |
2365 switch ( pTileTypes[i].tileset ) | |
0 | 2366 { |
760 | 2367 case Tileset_Grass: |
2368 pSoundList->LoadSound(54, 0); | |
2369 pSoundList->LoadSound(93, 0); | |
2370 break; | |
2371 case Tileset_Snow: | |
0 | 2372 pSoundList->LoadSound(58, 0); |
760 | 2373 pSoundList->LoadSound(97, 0); |
0 | 2374 break; |
760 | 2375 case Tileset_2: |
0 | 2376 pSoundList->LoadSound(52, 0); |
760 | 2377 pSoundList->LoadSound(91, 0); |
0 | 2378 break; |
760 | 2379 case Tileset_3: |
0 | 2380 pSoundList->LoadSound(51, 0); |
760 | 2381 pSoundList->LoadSound(90, 0); |
0 | 2382 break; |
760 | 2383 case Tileset_Water: |
0 | 2384 pSoundList->LoadSound(62, 0); |
760 | 2385 pSoundList->LoadSound(101, 0); |
0 | 2386 break; |
760 | 2387 case Tileset_6: |
0 | 2388 pSoundList->LoadSound(49, 0); |
760 | 2389 pSoundList->LoadSound(88, 0); |
0 | 2390 break; |
760 | 2391 case Tileset_Swamp: |
2392 pSoundList->LoadSound(61, 0); | |
2393 pSoundList->LoadSound(100, 0); | |
2394 break; | |
2395 } | |
0 | 2396 } |
2397 return true; | |
2398 } | |
2399 | |
2400 //----- (0047ECC1) -------------------------------------------------------- | |
764 | 2401 int OutdoorLocation::GetTileIdByTileMapId(signed int a2) |
0 | 2402 { |
2403 signed int result; // eax@2 | |
2404 int v3; // eax@3 | |
2405 | |
2406 if ( a2 >= 90 ) | |
2407 { | |
2408 v3 = (a2 - 90) / 36; | |
2409 if ( v3 && v3 != 1 && v3 != 2 ) | |
2410 { | |
2411 if ( v3 == 3 ) | |
2412 result = this->pTileTypes[3].uTileID; | |
2413 else | |
2414 result = a2; | |
2415 } | |
2416 else | |
2417 { | |
2418 result = this->pTileTypes[v3].uTileID; | |
2419 } | |
2420 } | |
2421 else | |
2422 { | |
2423 result = 0; | |
2424 } | |
2425 return result; | |
2426 } | |
2427 | |
2428 //----- (0047ED08) -------------------------------------------------------- | |
67 | 2429 unsigned int OutdoorLocation::DoGetTileTexture(unsigned int uX, unsigned int uY) |
0 | 2430 { |
2431 int v3; // esi@5 | |
2432 unsigned int result; // eax@9 | |
2433 | |
630 | 2434 assert(uX < 128 && uY < 128); |
67 | 2435 |
2436 v3 = this->pTerrain.pTilemap[uY * 128 + uX]; | |
630 | 2437 if (v3 < 198) // < Tileset_3 |
67 | 2438 { |
2439 if (v3 >= 90) | |
185 | 2440 v3 = v3 + this->pTileTypes[(v3 - 90) / 36].uTileID - 36 * ((v3 - 90) / 36) - 90; |
67 | 2441 } |
2442 else | |
2443 v3 = v3 + this->pTileTypes[3].uTileID - 198; | |
2444 | |
635 | 2445 #pragma region "New: seasons change" |
2446 extern bool change_seasons; | |
2447 if (change_seasons) | |
2448 switch (pParty->uCurrentMonth) | |
2449 { | |
2450 case 11: case 0: case 1: // winter | |
2451 if (v3 >= 90) // Tileset_Grass begins at TileID = 90 | |
2452 { | |
2453 if (v3 <= 95) // some grastyl entries | |
2454 v3 = 348; | |
2455 else if (v3 <= 113) // rest of grastyl & all grdrt* | |
2456 v3 = 348 + (v3 - 96); | |
2457 } | |
630 | 2458 /*switch (v3) |
2459 { | |
2460 case 102: v3 = 354; break; // grdrtNE -> SNdrtne | |
2461 case 104: v3 = 356; break; // grdrtNW -> SNdrtnw | |
2462 case 108: v3 = 360; break; // grdrtN -> SNdrtn | |
2463 }*/ | |
635 | 2464 break; |
2465 | |
2466 case 2: case 3: case 4: // spring | |
2467 case 8: case 9: case 10: // autumn | |
2468 if (v3 >= 90 && v3 <= 113) // just convert all Tileset_Grass to dirt | |
2469 v3 = 1; | |
2470 break; | |
630 | 2471 |
635 | 2472 case 5: case 6: case 7: // summer |
2473 //all tiles are green grass by default | |
2474 break; | |
630 | 2475 |
635 | 2476 default: assert(pParty->uCurrentMonth >= 0 && pParty->uCurrentMonth < 12); |
2477 } | |
2478 #pragma endregion | |
630 | 2479 |
67 | 2480 return pTileTable->pTiles[v3].uBitmapID; |
0 | 2481 } |
2482 | |
2483 //----- (0047ED83) -------------------------------------------------------- | |
2484 int OutdoorLocation::_47ED83(signed int a2, signed int a3) | |
2485 { | |
812 | 2486 assert(a2 < 128 && a3 < 128); |
0 | 2487 |
812 | 2488 return *(&this->pTerrain.pTilemap[128 * a3] + a2); |
0 | 2489 } |
2490 | |
2491 //----- (0047EDB3) -------------------------------------------------------- | |
2492 int OutdoorLocation::ActuallyGetSomeOtherTileInfo(unsigned int uX, unsigned int uY) | |
2493 { | |
812 | 2494 assert(uX < 128 && uY < 128); |
0 | 2495 int v3; // esi@5 |
2496 | |
812 | 2497 v3 = this->pTerrain.pTilemap[uY * 128 + uX]; |
2498 if ( v3 >= 90 ) | |
2499 v3 = v3 + this->pTileTypes[(v3 - 90) / 36].uTileID - 36 * ((v3 - 90) / 36) - 90; | |
67 | 2500 return pTileTable->pTiles[v3].uAttributes; |
0 | 2501 } |
2502 | |
2503 //----- (0047EE16) -------------------------------------------------------- | |
2504 int OutdoorLocation::DoGetHeightOnTerrain(unsigned int uX, unsigned int uZ) | |
2505 { | |
812 | 2506 assert(uX < 128 && uZ < 128); |
0 | 2507 |
812 | 2508 return 32 * pTerrain.pHeightmap[uZ * 128 + uX]; |
0 | 2509 } |
2510 | |
2511 //----- (0047EE49) -------------------------------------------------------- | |
764 | 2512 int OutdoorLocation::GetSoundIdByPosition( signed int X_pos, signed int Y_pos, int running ) |
2513 { | |
0 | 2514 signed int v4; // eax@5 |
2515 signed int v5; // eax@7 | |
2516 int v6; // eax@8 | |
2517 signed int v8; // eax@9 | |
764 | 2518 int modif=0; |
0 | 2519 |
764 | 2520 if ( X_pos < 0 || X_pos > 127 || Y_pos < 0 || Y_pos > 127 ) |
0 | 2521 v4 = 0; |
2522 else | |
764 | 2523 v4 = this->pTerrain.pTilemap[128 * Y_pos + X_pos]; |
2524 v5 = GetTileIdByTileMapId(v4); | |
2525 if (running) | |
2526 modif=-39; | |
0 | 2527 if ( !v5 ) |
764 | 2528 return 92+modif; |
2529 | |
2530 switch (pTileTable->pTiles[v5].tileset) | |
0 | 2531 { |
764 | 2532 case 0: return 93+ modif; |
2533 case 1: return 97+ modif; | |
2534 case 2: return 91+ modif; | |
2535 case 3: return 90+ modif; | |
2536 case 4: return 101+ modif; | |
2537 case 5: return 95+ modif; | |
2538 case 6: return 88+ modif; | |
2539 case 7: return 100+ modif; | |
2540 case 8: return 93+ modif; | |
2541 default: | |
2542 v8=pTileTable->pTiles[v5].tileset; | |
2543 if ( (v8 > 9 && v8 <= 17) || (v8 > 21 && v8 <= 27) ) | |
2544 return 96+ modif; | |
2545 else | |
2546 return 95+ modif; | |
0 | 2547 } |
764 | 2548 |
0 | 2549 } |
2550 | |
2551 //----- (0047EF60) -------------------------------------------------------- | |
752 | 2552 int OutdoorLocation::UpdateDiscoveredArea(int X_grid_pos, int Y_grid_poa, int a4) |
0 | 2553 { |
2554 int v4; // ecx@1 | |
2555 int v5; // edx@2 | |
2556 int v6; // edi@2 | |
2557 int v7; // esi@2 | |
2558 int v8; // eax@4 | |
2559 int v9; // ebx@4 | |
2560 int v10; // eax@5 | |
2561 int v11; // eax@7 | |
2562 int v12; // esi@12 | |
2563 char v13; // al@12 | |
2564 int v15; // [sp+4h] [bp-14h]@7 | |
2565 int v16; // [sp+8h] [bp-10h]@5 | |
2566 int v17; // [sp+Ch] [bp-Ch]@2 | |
2567 OutdoorLocation *v18; // [sp+10h] [bp-8h]@1 | |
2568 int v19; // [sp+14h] [bp-4h]@2 | |
2569 int i; // [sp+24h] [bp+Ch]@5 | |
2570 | |
2571 v18 = this; | |
752 | 2572 v4 = Y_grid_poa - 10; |
2573 if ( Y_grid_poa - 10 < Y_grid_poa + 10 ) | |
0 | 2574 { |
752 | 2575 v5 = v4 - Y_grid_poa; |
2576 v6 = (Y_grid_poa - 30); | |
2577 v7 = X_grid_pos; | |
2578 v19 = v4 - Y_grid_poa; | |
2579 v17 = Y_grid_poa + 10 - v4; | |
0 | 2580 while ( 1 ) |
2581 { | |
2582 v8 = abs(v5); | |
2583 v9 = v7 - 10; | |
2584 if ( v7 - 10 < v7 + 10 ) | |
2585 { | |
2586 v16 = v8 * v8; | |
2587 v10 = v9 - v7; | |
2588 for ( i = v9 - v7; ; v10 = i ) | |
2589 { | |
2590 v11 = abs(v10); | |
2591 v15 = v11 * v11 + v16; | |
752 | 2592 if ( v15 <= 100 && v9 >= 20 && v9 <= 107 && v6 >= 0 && v6 <= 87 ) |
0 | 2593 { |
752 | 2594 v13 = 1 << (7 - (v9 - 20) % 8); |
2595 v18->uDicovered_area[v6][(v9 - 20)/8] |= v13; | |
0 | 2596 if ( v15 <= 49 ) |
752 | 2597 v18->uUndiscoveredArea[v6][(v9 - 20)/8] |= v13; |
2598 v7 = X_grid_pos; | |
0 | 2599 } |
2600 ++v9; | |
2601 ++i; | |
2602 if ( v9 >= v7 + 10 ) | |
2603 break; | |
2604 } | |
2605 } | |
752 | 2606 ++v6 ; |
0 | 2607 ++v19; |
2608 --v17; | |
2609 if ( !v17 ) | |
2610 break; | |
2611 v5 = v19; | |
2612 } | |
2613 } | |
2614 return 1; | |
2615 } | |
2616 | |
2617 //----- (0047F04C) -------------------------------------------------------- | |
752 | 2618 bool OutdoorLocation::_47F04C(signed int x_pos, signed int y_pos) |
0 | 2619 { |
2620 bool result; // eax@5 | |
2621 | |
752 | 2622 if ( x_pos < 0 || x_pos >= 88 || y_pos < 0 || y_pos >= 88 ) |
0 | 2623 result = 0; |
2624 else | |
752 | 2625 result = (uUndiscoveredArea[y_pos][x_pos/8] & (unsigned __int8)(1 << (7 - (x_pos) % 8))) != 0; |
0 | 2626 return result; |
2627 } | |
2628 | |
2629 //----- (0047F097) -------------------------------------------------------- | |
752 | 2630 bool OutdoorLocation::_47F097(signed int x_pos, signed int y_pos) |
0 | 2631 { |
2632 bool result; // eax@5 | |
2633 | |
752 | 2634 if ( x_pos < 0 || x_pos >= 88 || y_pos < 0 || y_pos >= 88 ) |
0 | 2635 result = 0; |
2636 else | |
752 | 2637 result = (uDicovered_area[y_pos][x_pos/8] & (unsigned __int8)(1 << (7 - (x_pos) % 8))) != 0; |
0 | 2638 return result; |
2639 } | |
2640 | |
2641 //----- (0047F0E2) -------------------------------------------------------- | |
2642 bool OutdoorLocation::_47F0E2() | |
2643 { | |
2644 signed int v1; // edi@1 | |
2645 OutdoorLocation *v2; // ebx@1 | |
2646 Texture *v3; // ebp@2 | |
2647 | |
2648 v1 = 0; | |
2649 v2 = this; | |
2650 if ( (signed int)pBitmaps_LOD->uNumLoadedFiles > 0 ) | |
2651 { | |
2652 v3 = pBitmaps_LOD->pTextures; | |
2653 do | |
2654 { | |
2655 if ( v1 != -1 ? (int)v3 : 0 ) | |
710 | 2656 v3->uDecompressedSize = v2->pTerrain._47CB57((int)v3->pLevelOfDetail0_prolly_alpha_mask, |
0 | 2657 v3->palette_id2, |
2658 v3->uTextureWidth * v3->uTextureHeight); | |
2659 ++v1; | |
2660 ++v3; | |
2661 } | |
2662 while ( v1 < (signed int)pBitmaps_LOD->uNumLoadedFiles ); | |
2663 } | |
2664 return 1; | |
2665 } | |
2666 | |
2667 //----- (0047F138) -------------------------------------------------------- | |
2668 bool OutdoorLocation::PrepareDecorations() | |
2669 { | |
2670 signed int v1; // ebx@1 | |
2671 __int16 v4; // ax@5 | |
2672 int v5; // eax@7 | |
2673 __int16 v6; // ax@14 | |
2674 signed int v8; // [sp+Ch] [bp-4h]@1 | |
2675 | |
2676 v1 = 0; | |
2677 v8 = 0; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
2678 if ( !_stricmp(pCurrentMapName, "out09.odm") ) |
0 | 2679 v8 = 1; |
2680 | |
2681 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
2682 { | |
1202 | 2683 auto decor = &pLevelDecorations[i]; |
0 | 2684 |
2685 pDecorationList->InitializeDecorationSprite(decor->uDecorationDescID); | |
2686 v4 = pDecorationList->pDecorations[decor->uDecorationDescID].uSoundID; | |
2687 if ( v4 && _6807E0_num_decorations_with_sounds_6807B8 < 9 ) | |
2688 { | |
2689 pSoundList->LoadSound(v4, 0); | |
2690 v5 = _6807E0_num_decorations_with_sounds_6807B8++; | |
2691 _6807B8_level_decorations_ids[v5] = i; | |
2692 } | |
2693 if ( v8 && decor->uCog == 20 ) | |
1489 | 2694 decor->uFlags |= LEVEL_DECORATION_OBELISK_CHEST; |
1514
965af46e8793
Rename LevelDecoration::field_16_event_id to LevelDecoration::uEventID.
yoctozepto
parents:
1489
diff
changeset
|
2695 if ( !decor->uEventID ) |
0 | 2696 { |
2697 if ( decor->IsInteractive() ) | |
2698 { | |
2699 if ( v1 < 124 ) | |
2700 { | |
2701 v6 = v1 + 75; | |
2702 decor->_idx_in_stru123 = v6; | |
2703 if ( !stru_5E4C90._decor_events[v1++] ) | |
1489 | 2704 decor->uFlags |= LEVEL_DECORATION_INVISIBLE; |
0 | 2705 } |
2706 } | |
2707 } | |
2708 } | |
2709 | |
2710 pGameLoadingUI_ProgressBar->Progress(); | |
2711 return true; | |
2712 } | |
2713 // 6807E0: using guessed type int _6807E0_num_decorations_6807B8; | |
2714 | |
2715 //----- (0047F223) -------------------------------------------------------- | |
2716 int OutdoorLocation::_47F223_LooksLikeGenerateMonsterLoot() | |
2717 { | |
2718 signed int v1; // ebx@1 | |
2719 char *v2; // esi@2 | |
2720 int v3; // eax@7 | |
2721 OutdoorLocation *v5; // [sp+0h] [bp-4h]@1 | |
2722 | |
2723 v5 = this; | |
2724 v1 = 0; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2725 if ( (signed int)uNumSpriteObjects > 0 ) |
0 | 2726 { |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2727 v2 = (char *)&pSpriteObjects[0].uObjectDescID; |
0 | 2728 do |
2729 { | |
2730 if ( *(short *)v2 ) | |
2731 { | |
2732 if ( !(v2[24] & 8) && !(pObjectList->pObjects[*(short *)v2].uFlags & 0x10) ) | |
2733 *(int *)(v2 + 10) = GetTerrainHeightsAroundParty2(*(int *)(v2 + 2), *(int *)(v2 + 6), (int *)&v5, 0); | |
2734 v3 = *(int *)(v2 + 34); | |
2735 if ( v3 ) | |
2736 { | |
2737 if ( v3 != 220 && pItemsTable->pItems[v3].uEquipType == 14 && !*(int *)(v2 + 38) ) | |
2738 *(int *)(v2 + 38) = rand() % 15 + 5; | |
2739 pItemsTable->SetSpecialBonus((ItemGen *)(v2 + 34)); | |
2740 } | |
2741 } | |
2742 ++v1; | |
2743 v2 += 112; | |
2744 } | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
432
diff
changeset
|
2745 while ( v1 < (signed int)uNumSpriteObjects ); |
0 | 2746 } |
2747 pGameLoadingUI_ProgressBar->Progress(); | |
2748 return 1; | |
2749 } | |
2750 | |
2751 //----- (0047F2D3) -------------------------------------------------------- | |
2752 bool OutdoorLocation::InitalizeActors(int a1) | |
2753 { | |
82 | 2754 Actor *v3; // esi@2 |
0 | 2755 int v4; // eax@3 |
2756 __int16 v5; // ax@11 | |
760 | 2757 int alert_status; // [sp+348h] [bp-8h]@1 |
0 | 2758 int v9; // [sp+34Ch] [bp-4h]@1 |
2759 | |
760 | 2760 alert_status = 0; |
2761 for(int i=0; i<uNumActors; ++i) | |
2762 { | |
2763 v4 = pActors[i].uAttributes; | |
82 | 2764 if ( !(v4 & 0x100000) ) |
760 | 2765 { |
2766 if ( alert_status != 1 ) | |
2767 { | |
2768 pActors[i].uCurrentActionTime = 0; | |
2769 pActors[i].uCurrentActionLength = 0; | |
2770 if ( v4 & 0x10000 ) | |
2771 pActors[i].uAIState = AIState::Disabled; | |
2772 if ( pActors[i].uAIState != AIState::Removed && pActors[i].uAIState != AIState::Disabled && | |
2773 (pActors[i].sCurrentHP == 0 || pActors[i].pMonsterInfo.uHP == 0) ) | |
2774 pActors[i].uAIState = AIState::Dead; | |
2775 pActors[i].vVelocity.x = 0; | |
2776 pActors[i].vVelocity.y = 0; | |
2777 pActors[i].vVelocity.z = 0; | |
2778 pActors[i].UpdateAnimation(); | |
864 | 2779 pActors[i].pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; |
760 | 2780 pActors[i].PrepareSprites(0); |
2781 } | |
2782 else | |
2783 { | |
2784 pActors[i].uAIState = AIState::Disabled; | |
2785 pActors[i].uAttributes = v4 | 0x10000; | |
2786 } | |
2787 } | |
2788 else if ( a1 == 0 ) | |
2789 { | |
2790 pActors[i].uAIState = AIState::Disabled; | |
2791 pActors[i].uAttributes = v4 | 0x10000; | |
2792 } | |
2793 else if ( alert_status != 0 ) | |
2794 { | |
2795 pActors[i].uCurrentActionTime = 0; | |
2796 pActors[i].uCurrentActionLength = 0; | |
2797 if ( v4 & 0x10000 ) | |
2798 pActors[i].uAIState = AIState::Disabled; | |
2799 v5 = pActors[i].uAIState; | |
2800 if ( pActors[i].uAIState != AIState::Removed && pActors[i].uAIState != AIState::Disabled && | |
2801 (pActors[i].sCurrentHP == 0 || pActors[i].pMonsterInfo.uHP == 0) ) | |
2802 pActors[i].uAIState = AIState::Dead; | |
2803 pActors[i].vVelocity.x = 0; | |
2804 pActors[i].vVelocity.y = 0; | |
2805 pActors[i].vVelocity.z = 0; | |
2806 pActors[i].UpdateAnimation(); | |
864 | 2807 pActors[i].pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; |
760 | 2808 pActors[i].PrepareSprites(0); |
2809 } | |
2810 else | |
2811 { | |
2812 pActors[i].uAIState = AIState::Disabled; | |
2813 pActors[i].uAttributes = v4 | 0x10000; | |
2814 alert_status = GetAlertStatus(); | |
2815 } | |
2816 } | |
2817 | |
0 | 2818 pGameLoadingUI_ProgressBar->Progress(); |
760 | 2819 //no use for this |
2820 // Actor thisa; | |
2821 // thisa.pMonsterInfo.uID = 45; | |
2822 // thisa.PrepareSprites(0); | |
0 | 2823 return 1; |
2824 } | |
2825 | |
2826 //----- (0047F3EA) -------------------------------------------------------- | |
630 | 2827 bool OutdoorLocation::LoadRoadTileset() |
0 | 2828 { |
760 | 2829 pTileTypes[3].uTileID = pTileTable->GetTileForTerrainType(pTileTypes[3].tileset, 1); |
2830 pTileTable->InitializeTileset(pTileTypes[3].tileset); | |
0 | 2831 return 1; |
2832 } | |
2833 | |
2834 //----- (0047F420) -------------------------------------------------------- | |
2835 bool OutdoorLocation::LoadTileGroupIds() | |
2836 { | |
2837 for (uint i = 0; i < 3; ++i) | |
760 | 2838 pTileTypes[i].uTileID = pTileTable->GetTileForTerrainType(pTileTypes[i].tileset, 1); |
0 | 2839 |
2840 return true; | |
2841 } | |
2842 | |
2843 //----- (0047B42C) -------------------------------------------------------- | |
142 | 2844 void OutdoorLocation::PrepareActorsDrawList() |
0 | 2845 { |
2846 unsigned int result; // eax@1 | |
142 | 2847 //Actor *v1; // edi@2 |
2848 //__int16 v2; // ax@3 | |
2849 int z; // esi@5 | |
0 | 2850 float v4; // ST48_4@8 |
142 | 2851 //double v5; // ST38_8@8 |
2852 //float v6; // ST48_4@10 | |
2853 //double v7; // ST30_8@10 | |
0 | 2854 unsigned int v8; // eax@11 |
2855 int v9; // edx@11 | |
2856 __int16 v10; // dx@11 | |
2857 unsigned int v11; // eax@13 | |
2858 signed int v12; // eax@16 | |
2859 __int16 v13; // cx@21 | |
2860 SpriteFrame *v14; // eax@24 | |
2861 SpriteFrame *v15; // ebx@25 | |
2862 //int *v16; // eax@25 | |
2863 int v17; // eax@35 | |
2864 int v18; // ST78_4@36 | |
2865 int v19; // eax@36 | |
2866 int v20; // ecx@38 | |
2867 int v21; // eax@38 | |
2868 int v22; // ecx@41 | |
2869 int v23; // ST5C_4@43 | |
2870 int v24; // esi@44 | |
2871 signed __int64 v25; // qtt@45 | |
2872 int v26; // ST54_4@45 | |
2873 int v27; // ecx@45 | |
2874 RenderBillboard *v28; // esi@45 | |
142 | 2875 //__int16 v29; // ax@46 |
0 | 2876 unsigned __int8 v30; // zf@46 |
2877 unsigned __int8 v31; // sf@46 | |
2878 signed __int16 v32; // ax@49 | |
2879 signed int v33; // ecx@50 | |
2880 int v34; // ecx@54 | |
2881 MonsterDesc *v35; // edx@54 | |
2882 int v36; // ecx@54 | |
142 | 2883 //unsigned __int8 v37; // zf@54 |
2884 //unsigned __int8 v38; // sf@54 | |
0 | 2885 unsigned int v39; // [sp-8h] [bp-68h]@23 |
2886 unsigned int v40; // [sp-4h] [bp-64h]@23 | |
2887 int v41; // [sp+24h] [bp-3Ch]@11 | |
2888 int v42; // [sp+28h] [bp-38h]@38 | |
2889 int v43; // [sp+28h] [bp-38h]@45 | |
2890 int v44; // [sp+2Ch] [bp-34h]@36 | |
2891 int v45; // [sp+2Ch] [bp-34h]@44 | |
2892 int v46; // [sp+2Ch] [bp-34h]@45 | |
2893 int v47; // [sp+30h] [bp-30h]@36 | |
2894 int v48; // [sp+30h] [bp-30h]@41 | |
2895 signed int v49; // [sp+34h] [bp-2Ch]@5 | |
2896 int v50; // [sp+34h] [bp-2Ch]@36 | |
2897 int v51; // [sp+34h] [bp-2Ch]@41 | |
2898 int v52; // [sp+34h] [bp-2Ch]@50 | |
2899 int v53; // [sp+38h] [bp-28h]@36 | |
142 | 2900 //int v54; // [sp+3Ch] [bp-24h]@2 |
0 | 2901 int y; // [sp+40h] [bp-20h]@5 |
2902 int x; // [sp+44h] [bp-1Ch]@5 | |
2903 int v57; // [sp+48h] [bp-18h]@45 | |
2904 int v58; // [sp+4Ch] [bp-14h]@45 | |
142 | 2905 //signed int v59; // [sp+50h] [bp-10h]@1 |
0 | 2906 int X; // [sp+54h] [bp-Ch]@36 |
142 | 2907 //__int16 v61; // [sp+58h] [bp-8h]@5 |
0 | 2908 signed __int16 v62; // [sp+5Ch] [bp-4h]@25 |
2909 | |
142 | 2910 //result = 0; |
2911 //v59 = 0; | |
2912 for (int i = 0; i < uNumActors; ++i) | |
0 | 2913 { |
142 | 2914 //v54 = 0; |
2915 //v1 = pActors;//[0].vPosition.z; | |
2916 //do | |
2917 //{ | |
1202 | 2918 auto actor = &pActors[i]; |
142 | 2919 //v2 = actor->uAIState; |
2920 | |
2921 actor->uAttributes &= 0xFFFFFFF7u; | |
2922 if (actor->uAIState == Removed || actor->uAIState == Disabled) | |
2923 continue; | |
2924 | |
2925 z = actor->vPosition.z; | |
0 | 2926 v49 = 0; |
142 | 2927 x = actor->vPosition.x; |
2928 y = actor->vPosition.y; | |
2929 if (actor->uAIState == Summoned) | |
0 | 2930 { |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
813
diff
changeset
|
2931 if (PID_TYPE(actor->uSummonerID) != OBJECT_Actor || |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
813
diff
changeset
|
2932 pActors[PID_ID(actor->uSummonerID)].pMonsterInfo.uSpecialAbilityDamageDiceSides != 1 ) |
0 | 2933 { |
142 | 2934 z += floorf(actor->uActorHeight * 0.5f + 0.5f); |
0 | 2935 } |
2936 else | |
2937 { | |
2938 v49 = 1; | |
142 | 2939 pGame->pStru6Instance->_4A7F74(actor->vPosition.x, actor->vPosition.y, z); |
2940 v4 = (1.0 - (double)actor->uCurrentActionTime / (double)actor->uCurrentActionLength) * | |
2941 (double)(2 * actor->uActorHeight); | |
2942 z -= floorf(v4 + 0.5f); | |
2943 if ( z > actor->vPosition.z ) | |
2944 z = actor->vPosition.z; | |
0 | 2945 } |
2946 } | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2947 v8 = stru_5C6E00->Atan2(actor->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x, |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2948 actor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y); |
142 | 2949 LOWORD(v9) = actor->uYawAngle; |
0 | 2950 v41 = ((signed int)(stru_5C6E00->uIntegerPi + ((signed int)stru_5C6E00->uIntegerPi >> 3) + v9 - v8) >> 8) & 7; |
142 | 2951 v10 = actor->uCurrentActionAnimation; |
0 | 2952 if ( pParty->bTurnBasedModeOn ) |
2953 { | |
2954 if ( v10 != 1 ) | |
2955 { | |
2956 LABEL_17: | |
142 | 2957 v12 = actor->uCurrentActionTime; |
0 | 2958 goto LABEL_18; |
2959 } | |
2960 v11 = pMiscTimer->uTotalGameTimeElapsed; | |
2961 } | |
2962 else | |
2963 { | |
2964 if ( v10 != 1 ) | |
2965 goto LABEL_17; | |
2966 v11 = pEventTimer->uTotalGameTimeElapsed; | |
2967 } | |
142 | 2968 v12 = 32 * i + v11; |
0 | 2969 LABEL_18: |
142 | 2970 if ( (signed __int64)actor->pActorBuffs[5].uExpireTime > 0 || (signed __int64)actor->pActorBuffs[6].uExpireTime > 0 ) |
0 | 2971 v12 = 0; |
142 | 2972 v13 = actor->uAIState; |
0 | 2973 if ( v13 == 17 && !v49 ) |
2974 { | |
2975 v40 = v12; | |
2976 v39 = uSpriteID_Spell11; | |
2977 LABEL_24: | |
2978 v14 = pSpriteFrameTable->GetFrame(v39, v40); | |
2979 goto LABEL_25; | |
2980 } | |
2981 v40 = v12; | |
142 | 2982 v39 = actor->pSpriteIDs[v10]; |
0 | 2983 if ( v13 != 16 ) |
2984 goto LABEL_24; | |
2985 v14 = pSpriteFrameTable->GetFrameBy_x(v39, v12); | |
2986 LABEL_25: | |
2987 v62 = 0; | |
2988 v15 = v14; | |
2989 //v16 = (int *)v14->uFlags; | |
2990 if (v14->uFlags & 2) | |
2991 v62 = 2; | |
2992 if (v14->uFlags & 0x40000) | |
2993 v62 |= 0x40u; | |
2994 if (v14->uFlags & 0x20000) | |
2995 LOBYTE(v62) = v62 | 0x80; | |
2996 if ((256 << v41) & v14->uFlags) | |
2997 v62 |= 4u; | |
2998 if ( v15->uGlowRadius ) | |
2999 { | |
3000 //LOBYTE(v16) = byte_4E94D3; | |
142 | 3001 pMobileLightsStack->AddLight(x, y, z, 0, v15->uGlowRadius, 0xFFu, 0xFFu, 0xFFu, byte_4E94D3); |
0 | 3002 } |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3003 v17 = (x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3004 if (pGame->pIndoorCameraD3D->sRotationX) |
0 | 3005 { |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3006 v18 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 3007 v47 = ((unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) |
3008 + ((unsigned __int64)(v18 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16); | |
3009 v50 = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
3010 v53 = (unsigned __int64)(v18 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3011 v44 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
1642 | 3012 v19 = ((unsigned __int64)(v44 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16) |
3013 + ((unsigned __int64)(v47 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16); | |
3014 X = ((unsigned __int64)(v44 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16) | |
3015 + ((unsigned __int64)(v47 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16); | |
1637 | 3016 if ( v19 < 262144 || v19 > pODMRenderParams->shading_dist_mist << 16 ) |
142 | 3017 continue; |
0 | 3018 v20 = v53 - v50; |
3019 v42 = v53 - v50; | |
1642 | 3020 v21 = ((unsigned __int64)(v44 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) |
3021 - ((unsigned __int64)(v47 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16); | |
0 | 3022 } |
3023 else | |
3024 { | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3025 v48 = (y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16; |
1642 | 3026 v51 = (unsigned __int64)(v17 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16; |
3027 v22 = (unsigned __int64)(v48 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; | |
0 | 3028 X = v22 + v51; |
1637 | 3029 if ( v22 + v51 < 262144 || v22 + v51 > pODMRenderParams->shading_dist_mist << 16 ) |
142 | 3030 continue; |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3031 v23 = (unsigned __int64)(((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16) |
1642 | 3032 * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16; |
3033 v20 = ((unsigned __int64)(v48 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v23; | |
3034 v42 = ((unsigned __int64)(v48 * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v23; | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
3035 v21 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16; |
0 | 3036 } |
3037 v45 = v21; | |
3038 v24 = abs(v20); | |
3039 if ( abs(X) >= v24 ) | |
3040 { | |
3041 LODWORD(v25) = 0; | |
1637 | 3042 HIDWORD(v25) = SLOWORD(pODMRenderParams->int_fov_rad); |
0 | 3043 v58 = v25 / X; |
3044 v26 = v25 / X; | |
3045 LODWORD(v25) = 0; | |
1637 | 3046 HIDWORD(v25) = SLOWORD(pODMRenderParams->int_fov_rad); |
0 | 3047 v57 = v25 / X; |
3048 v27 = pViewport->uScreenCenterX | |
3049 - ((signed int)(((unsigned __int64)(v26 * (signed __int64)v42) >> 16) + 32768) >> 16); | |
3050 v43 = pViewport->uScreenCenterX | |
3051 - ((signed int)(((unsigned __int64)(v26 * (signed __int64)v42) >> 16) + 32768) >> 16); | |
3052 v46 = pViewport->uScreenCenterY - ((signed int)(((unsigned __int64)(v25 / X * v45) >> 16) + 32768) >> 16); | |
3053 result = uNumBillboardsToDraw; | |
3054 v28 = &pBillboardRenderList[uNumBillboardsToDraw]; | |
142 | 3055 if (uNumBillboardsToDraw >= 500) |
3056 return; | |
0 | 3057 ++uNumBillboardsToDraw; |
3058 ++uNumSpritesDrawnThisFrame; | |
142 | 3059 actor->uAttributes |= 8u; |
0 | 3060 v28->uHwSpriteID = v15->pHwSpriteIDs[v41]; |
3061 v28->uIndoorSectorID = 0; | |
142 | 3062 v28->uPalette = v15->uPaletteIndex; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3063 v28->_screenspace_x_scaler_packedfloat = (unsigned __int64)(v15->scale * (signed __int64)v58) >> 16; |
142 | 3064 v30 = HIDWORD(actor->pActorBuffs[3].uExpireTime) == 0; |
3065 v31 = SHIDWORD(actor->pActorBuffs[3].uExpireTime) < 0; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3066 v28->_screenspace_y_scaler_packedfloat = (unsigned __int64)(v15->scale * (signed __int64)v57) >> 16; |
142 | 3067 if ( v31 || v31 | v30 && LODWORD(actor->pActorBuffs[3].uExpireTime) <= 0u ) |
0 | 3068 { |
142 | 3069 if ( (signed __int64)actor->pActorBuffs[10].uExpireTime > 0i64 ) |
0 | 3070 { |
142 | 3071 v52 = (unsigned __int64)(pGame->pStru6Instance->_4A806F(actor) |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3072 * (signed __int64)v28->_screenspace_y_scaler_packedfloat) >> 16; |
0 | 3073 LABEL_53: |
3074 LOWORD(v27) = v43; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3075 v28->_screenspace_y_scaler_packedfloat = v52; |
0 | 3076 } |
3077 } | |
3078 else | |
3079 { | |
142 | 3080 v32 = actor->pActorBuffs[3].uPower; |
0 | 3081 if ( v32 ) |
3082 { | |
142 | 3083 v33 = actor->pActorBuffs[3].uPower; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3084 v28->_screenspace_x_scaler_packedfloat = (unsigned __int64)(65536 / (unsigned __int16)v32 * (signed __int64)v28->_screenspace_x_scaler_packedfloat) >> 16; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
3085 v52 = (unsigned __int64)(65536 / v33 * (signed __int64)v28->_screenspace_y_scaler_packedfloat) >> 16; |
0 | 3086 goto LABEL_53; |
3087 } | |
3088 } | |
3089 v28->uScreenSpaceX = v27; | |
142 | 3090 v28->uScreenSpaceY = v46; |
430 | 3091 v28->world_x = x; |
3092 v28->world_y = y; | |
3093 v28->world_z = z; | |
0 | 3094 HIWORD(v34) = HIWORD(X); |
3095 LOWORD(v34) = 0; | |
657 | 3096 v28->dimming_level = 0; |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
813
diff
changeset
|
3097 v28->sZValue = v34 + PID(OBJECT_Actor, i); |
142 | 3098 v28->field_14_actor_id = i; |
0 | 3099 v35 = pMonsterList->pMonsters; |
142 | 3100 v36 = actor->pMonsterInfo.uID; |
0 | 3101 v28->field_1E = v62 | 0x200; |
3102 v28->pSpriteFrame = v15; | |
698 | 3103 v28->uTintColor = pMonsterList->pMonsters[actor->pMonsterInfo.uID-1].uTintColor;//*((int *)&v35[v36] - 36); |
657 | 3104 if (actor->pActorBuffs[ACTOR_BUFF_STONED].uExpireTime) |
0 | 3105 v28->field_1E = v62 | 0x200; |
3106 } | |
142 | 3107 //LABEL_58: |
3108 //++v59; | |
3109 //v54 += 32; | |
3110 //result = v59; | |
3111 //++v1; | |
3112 //} | |
3113 //while ( v59 < (signed int)uNumActors ); | |
0 | 3114 } |
142 | 3115 //return result; |
0 | 3116 } |
3117 | |
3118 //----- (0044C1E8) -------------------------------------------------------- | |
3119 bool ODMFace::HasEventHint() | |
3120 { | |
428 | 3121 signed int event_index; // eax@1 |
3122 _evt_raw* start_evt; | |
3123 _evt_raw* end_evt; | |
0 | 3124 |
428 | 3125 event_index = 0; |
3126 if ( (uLevelEVT_NumEvents - 1) <= 0 ) | |
3127 return false; | |
3128 while ( pLevelEVT_Index[event_index].uEventID != this->sCogTriggeredID ) | |
0 | 3129 { |
428 | 3130 ++event_index; |
3131 if ( event_index >= (signed int)(uLevelEVT_NumEvents - 1) ) | |
3132 return false; | |
0 | 3133 } |
428 | 3134 end_evt=(_evt_raw*)&pLevelEVT[pLevelEVT_Index[event_index+1].uEventOffsetInEVT]; |
3135 start_evt=(_evt_raw*)&pLevelEVT[pLevelEVT_Index[event_index].uEventOffsetInEVT]; | |
3136 if ( (end_evt->_e_type != EVENT_Exit) || (start_evt->_e_type!= EVENT_MouseOver) ) | |
3137 return false; | |
0 | 3138 else |
428 | 3139 return true; |
1295 | 3140 } |
3141 //----- (0046D49E) -------------------------------------------------------- | |
1413 | 3142 int ODM_GetFloorLevel(int X, signed int Y, int Z, int __unused, int *pIsOnWater, int *bmodel_pid, int bWaterWalk) |
1295 | 3143 { |
3144 BSPModel *pBModel; // esi@4 | |
3145 ODMFace *pFace; // ecx@11 | |
3146 int v14; // edx@20 | |
3147 signed int v18; // edx@26 | |
3148 int v19; // eax@28 | |
3149 int v20; // edx@30 | |
3150 int v21; // ST1C_4@30 | |
3151 signed int v22; // edx@30 | |
3152 signed __int64 v23; // qtt@30 | |
3153 int v24; // eax@36 | |
3154 signed int v25; // ecx@38 | |
3155 int result; // eax@42 | |
3156 signed int v27; // ecx@43 | |
3157 int v28; // edi@44 | |
3158 signed int v29; // edx@44 | |
3159 int v30; // esi@45 | |
3160 int v31; // eax@45 | |
3161 ODMFace *v32; // eax@57 | |
3162 int v33; // ecx@59 | |
3163 int v36; // [sp+14h] [bp-2Ch]@24 | |
3164 int v38; // [sp+1Ch] [bp-24h]@2 | |
3165 int v39; // [sp+20h] [bp-20h]@9 | |
3166 signed int pBModelNum; // [sp+28h] [bp-18h]@1 | |
3167 int pFaceNum; // [sp+2Ch] [bp-14h]@8 | |
3168 bool v43; // [sp+30h] [bp-10h]@22 | |
3169 bool v44; // [sp+34h] [bp-Ch]@24 | |
3170 signed int v46; // [sp+3Ch] [bp-4h]@1 | |
3171 signed int v48; // [sp+58h] [bp+18h]@22 | |
3172 signed int v49; // [sp+58h] [bp+18h]@43 | |
3173 | |
3174 v46 = 1; | |
3175 dword_721160[0] = -1; | |
3176 dword_721110[0] = -1; | |
3177 odm_floor_level[0] = GetTerrainHeightsAroundParty2(X, Y, pIsOnWater, bWaterWalk); | |
3178 | |
3179 for ( pBModelNum = 0; pBModelNum < pOutdoor->uNumBModels; ++pBModelNum ) | |
3180 { | |
3181 pBModel = &pOutdoor->pBModels[pBModelNum]; | |
3182 if ( X <= pBModel->sMaxX && X >= pBModel->sMinX && | |
3183 Y <= pBModel->sMaxY && Y >= pBModel->sMinY ) | |
3184 { | |
3185 if ( pBModel->uNumFaces > 0 ) | |
3186 { | |
3187 v39 = 0; | |
3188 for ( pFaceNum = 0; pFaceNum < pBModel->uNumFaces; ++pFaceNum ) | |
3189 { | |
3190 pFace = &pBModel->pFaces[pFaceNum]; | |
3191 if ( (pFace->uPolygonType == POLYGON_Floor || pFace->uPolygonType == POLYGON_InBetweenFloorAndWall) | |
3192 && !(pFace->uAttributes & 0x20000000) | |
3193 && X <= pFace->pBoundingBox.x2 && X >= pFace->pBoundingBox.x1 | |
3194 && Y <= pFace->pBoundingBox.y2 && Y >= pFace->pBoundingBox.y1 ) | |
3195 { | |
3196 | |
3197 for ( uint i = 0; i < pFace->uNumVertices; ++i) | |
3198 { | |
3199 word_721040[2 * i] = pFace->pXInterceptDisplacements[i] + pBModel->pVertices.pVertices[pFace->pVertexIDs[i]].x; | |
3200 word_720F70[2 * i] = pFace->pXInterceptDisplacements[i + 1] + pBModel->pVertices.pVertices[pFace->pVertexIDs[i]].y; | |
3201 word_721040[2 * i + 1] = pFace->pXInterceptDisplacements[i] + pBModel->pVertices.pVertices[pFace->pVertexIDs[i + 1]].x; | |
3202 word_720F70[2 * i + 1] = pFace->pXInterceptDisplacements[i + 1] + pBModel->pVertices.pVertices[pFace->pVertexIDs[i + 1]].y; | |
3203 } | |
3204 word_721040[2 * pFace->uNumVertices] = word_721040[0]; | |
3205 word_720F70[2 * pFace->uNumVertices] = word_720F70[0]; | |
3206 v43 = word_720F70[0] >= Y; | |
3207 v48 = 0; | |
3208 if ( 2 * pFace->uNumVertices > 0 ) | |
3209 { | |
3210 for ( int i = 0; i < 2 * pFace->uNumVertices; ++i ) | |
3211 { | |
3212 if ( v48 >= 2 ) | |
3213 break; | |
3214 v36 = word_720F70[i + 1]; | |
3215 v44 = word_720F70[i + 1] >= Y; | |
3216 if ( v43 != v44 ) | |
3217 { | |
3218 v18 = word_721040[i + 1] >= X ? 0 : 2; | |
3219 v19 = v18 | (word_721040[i] < X); | |
3220 if ( v19 != 3 ) | |
3221 { | |
3222 if ( !v19 ) | |
3223 ++v48; | |
3224 else | |
3225 { | |
3226 LODWORD(v23) = (Y - word_720F70[i]) << 16; | |
3227 HIDWORD(v23) = (Y - word_720F70[i]) >> 16; | |
3228 v22 = ((((word_721040[i + 1] - word_721040[i]) * v23 / (v36 - word_720F70[i])) >> 16) + word_721040[i]); | |
3229 if ( v22 >= X) | |
3230 ++v48; | |
3231 } | |
3232 } | |
3233 } | |
3234 v43 = v44; | |
3235 } | |
3236 if ( v48 == 1 ) | |
3237 { | |
3238 if ( v46 >= 20 ) | |
3239 break; | |
3240 if ( pFace->uPolygonType == POLYGON_Floor ) | |
3241 v24 = pBModel->pVertices.pVertices[pFace->pVertexIDs[0]].z; | |
3242 else | |
3243 v24 = ((unsigned __int64)(pFace->zCalc1 * (signed __int64)X) >> 16) + ((unsigned __int64)(pFace->zCalc2 * (signed __int64)Y) >> 16) | |
3244 + HIWORD(pFace->zCalc3); | |
3245 v25 = v46++; | |
3246 odm_floor_level[v25] = v24; | |
3247 dword_721160[v25] = pBModelNum; | |
3248 dword_721110[v25] = pFaceNum; | |
3249 } | |
3250 } | |
3251 } | |
3252 | |
3253 } | |
3254 } | |
3255 } | |
3256 } | |
3257 if ( v46 == 1 ) | |
3258 { | |
1413 | 3259 *bmodel_pid = 0; |
1295 | 3260 return odm_floor_level[0]; |
3261 } | |
3262 v27 = 0; | |
3263 if ( v46 <= 1 ) | |
1413 | 3264 *bmodel_pid = 0; |
1295 | 3265 else |
3266 { | |
3267 //v29 = 1; | |
3268 for ( v49 = 1; v49 < v46; ++v49 ) | |
3269 { | |
3270 if ( odm_floor_level[v49] == odm_floor_level[0] ) | |
3271 { | |
3272 v27 = v49; | |
3273 //++v29; | |
3274 break; | |
3275 } | |
3276 if ( odm_floor_level[0] > Z + 5 ) | |
3277 { | |
3278 if ( odm_floor_level[v49] >= odm_floor_level[0] ) | |
3279 { | |
3280 //++v29; | |
3281 break; | |
3282 } | |
3283 v27 = v49; | |
3284 //++v29; | |
3285 break; | |
3286 } | |
3287 if ( odm_floor_level[v49] > odm_floor_level[0] && odm_floor_level[v49] <= Z + 5 ) | |
3288 { | |
3289 v27 = v49; | |
3290 //++v29; | |
3291 } | |
3292 } | |
3293 if ( !v27 ) | |
1413 | 3294 *bmodel_pid = 0; |
1295 | 3295 else |
1413 | 3296 *bmodel_pid = dword_721110[v27] | (dword_721160[v27] << 6); |
1295 | 3297 } |
3298 if ( v27 ) | |
3299 { | |
3300 v32 = &pOutdoor->pBModels[dword_721160[v27]].pFaces[dword_721110[v27]]; | |
3301 *pIsOnWater = false; | |
3302 if ( v32->Fluid()) | |
3303 *pIsOnWater = true; | |
3304 } | |
3305 if ( odm_floor_level[v27] >= odm_floor_level[0] ) | |
3306 odm_floor_level[0] = odm_floor_level[v27]; | |
3307 return odm_floor_level[0]; | |
3308 } | |
1412 | 3309 |
1295 | 3310 //not sure if right- or left-handed coordinate space assumed, so this could be normal of inverse normal |
3311 // for a right-handed system, that would be an inverse normal | |
3312 //----- (0046DCC8) -------------------------------------------------------- | |
3313 void ODM_GetTerrainNormalAt(int pos_x, int pos_z, Vec3_int_ *out) | |
3314 { | |
3315 auto grid_x = WorldPosToGridCellX(pos_x); | |
3316 auto grid_z = WorldPosToGridCellZ(pos_z) - 1; | |
3317 | |
3318 auto grid_pos_x1 = GridCellToWorldPosX(grid_x); | |
3319 auto grid_pos_x2 = GridCellToWorldPosX(grid_x + 1); | |
3320 auto grid_pos_z1 = GridCellToWorldPosZ(grid_z); | |
3321 auto grid_pos_z2 = GridCellToWorldPosZ(grid_z + 1); | |
3322 | |
3323 auto x1z1_y = pOutdoor->DoGetHeightOnTerrain(grid_x, grid_z); | |
3324 auto x2z1_y = pOutdoor->DoGetHeightOnTerrain(grid_x + 1, grid_z); | |
3325 auto x2z2_y = pOutdoor->DoGetHeightOnTerrain(grid_x + 1, grid_z + 1); | |
3326 auto x1z2_y = pOutdoor->DoGetHeightOnTerrain(grid_x, grid_z + 1); | |
3327 | |
3328 float side1_dx, side1_dy, side1_dz, | |
3329 side2_dx, side2_dy, side2_dz; | |
3330 | |
3331 auto dx = abs(pos_x - grid_pos_x1), | |
3332 dz = abs(grid_pos_z1 - pos_z); | |
3333 if (dz >= dx) | |
3334 { | |
3335 side1_dy = (double)(x1z1_y - x1z2_y); | |
3336 side2_dy = (double)(x2z2_y - x1z2_y); | |
3337 side2_dx = (double)(grid_pos_x2 - grid_pos_x1); | |
3338 side1_dx = (double)(grid_pos_x1 - grid_pos_x2); | |
3339 side2_dz = 0.0;//(double)(grid_pos_z2 - grid_pos_z2); // bug? z2 - z2 | |
3340 side1_dz = (double)(grid_pos_z1 - grid_pos_z2); // z1 - z2 yes | |
3341 //Log::Warning(L"%S %S %u\n", __FILE__, __FUNCTION__, __LINE__); | |
3342 /* |\ | |
3343 side1 | \ | |
3344 |____\ | |
3345 side 2 */ | |
3346 } | |
3347 else | |
3348 { | |
3349 side1_dy = (double)(x2z2_y - x2z1_y); | |
3350 side2_dy = (double)(x1z1_y - x2z1_y); | |
3351 side2_dx = (double)(grid_pos_x1 - grid_pos_x2); | |
3352 side1_dx = (double)(grid_pos_x2 - grid_pos_x1); | |
3353 side2_dz = 0.0;//(double)(grid_pos_z1 - grid_pos_z1); | |
3354 side1_dz = (double)(grid_pos_z2 - grid_pos_z1); | |
3355 | |
3356 /* side 2 | |
3357 _____ | |
3358 \ | | |
3359 \ | side 1 | |
3360 \| */ | |
3361 } | |
3362 | |
3363 float nx = side1_dy * side2_dz - side1_dz * side2_dy; | |
3364 float ny = side1_dx * side2_dy - side1_dy * side2_dx; | |
3365 float nz = side1_dz * side2_dx - side1_dx * side2_dz; | |
3366 | |
3367 float mag = sqrt(nx * nx + ny * ny + nz * nz); | |
3368 if (fabsf(mag) < 1e-6f) | |
3369 { | |
3370 out->y = 0; | |
3371 out->x = 0; | |
3372 out->z = 65536; | |
3373 } | |
3374 else | |
3375 { | |
3376 float invmag = 1.0 / mag; | |
3377 out->x = invmag * nx * 65536.0; | |
3378 out->y = invmag * ny * 65536.0; | |
3379 out->z = invmag * nz * 65536.0; | |
3380 } | |
3381 } | |
3382 //----- (004014E6) -------------------------------------------------------- | |
3383 void MakeActorAIList_ODM() | |
3384 { | |
3385 int v1; // eax@4 | |
3386 int v2; // ebx@4 | |
3387 unsigned int v3; // ecx@4 | |
3388 int v4; // edx@5 | |
3389 int v5; // edx@7 | |
3390 unsigned int v6; // edx@9 | |
3391 unsigned int v7; // ST20_4@10 | |
3392 int v9; // edi@10 | |
3393 int v10; // ebx@14 | |
3394 int v21; // [sp+Ch] [bp-14h]@4 | |
3395 int v22; // [sp+10h] [bp-10h]@4 | |
3396 | |
3397 pParty->uFlags &= 0xFFFFFFCFu; | |
3398 | |
3399 ai_arrays_size = 0; | |
3400 for (uint i = 0; i < uNumActors; ++i) | |
3401 { | |
3402 auto actor = &pActors[i]; | |
3403 | |
3404 actor->uAttributes &= 0xFFFFFBFF; | |
3405 if (!actor->CanAct()) | |
3406 { | |
3407 actor->uAttributes &= 0xFFFFBFFF; | |
3408 continue; | |
3409 } | |
3410 | |
3411 v22 = abs(pParty->vPosition.z - actor->vPosition.z); | |
3412 v21 = abs(pParty->vPosition.y - actor->vPosition.y); | |
3413 v1 = abs(pParty->vPosition.x - actor->vPosition.x); | |
3414 v2 = v21; | |
3415 v3 = v22; | |
3416 if ( v1 < v21 ) | |
3417 { | |
3418 v4 = v1; | |
3419 v1 = v21; | |
3420 v2 = v4; | |
3421 } | |
3422 if ( v1 < v22 ) | |
3423 { | |
3424 v5 = v1; | |
3425 v1 = v22; | |
3426 v3 = v5; | |
3427 } | |
3428 if ( v2 < (signed int)v3 ) | |
3429 { | |
3430 v6 = v3; | |
3431 v3 = v2; | |
3432 v2 = v6; | |
3433 } | |
3434 v7 = ((unsigned int)(11 * v2) >> 5) + (v3 >> 2) + v1; | |
3435 //v8 = actor->uActorRadius; | |
3436 v9 = v7 - actor->uActorRadius; | |
3437 //v23 = v7 - v8; | |
3438 if ( v9 < 0 ) | |
3439 { | |
3440 v9 = 0; | |
3441 //v23 = 0; | |
3442 } | |
3443 | |
3444 if (v9 < 5632) | |
3445 { | |
3446 v10 = actor->uAttributes & 0xFEFFFFFF; | |
3447 actor->uAttributes = v10; | |
3448 if ( v10 & 0x80000 || actor->GetActorsRelation(0) ) | |
3449 { | |
3450 //v11 = (pParty->uFlags & 0x10) == 0; | |
3451 actor->uAttributes = v10 | 0x1000000; | |
3452 if (v9 < 5120 ) | |
3453 pParty->SetYellowAlert(); | |
3454 if (v9 < 307) | |
3455 pParty->SetRedAlert(); | |
3456 } | |
3457 actor->uAttributes |= 0x00004000; | |
3458 ai_near_actors_distances[ai_arrays_size] = v9; | |
3459 ai_near_actors_ids[ai_arrays_size++] = i; | |
3460 } | |
3461 else | |
3462 actor->uAttributes &= 0xFFFFBFFF; | |
3463 } | |
3464 | |
3465 /* | |
3466 result = v27; | |
3467 if ( v27 > 0 ) | |
3468 { | |
3469 v14 = 0; | |
3470 v15 = 1; | |
3471 v26 = 1; | |
3472 do | |
3473 { | |
3474 while ( 1 ) | |
3475 { | |
3476 v24 = v15; | |
3477 if ( v15 >= result ) | |
3478 break; | |
3479 v16 = ai_near_actors_distances[v14]; | |
3480 if ( v16 > ai_near_actors_distances[v15] ) | |
3481 { | |
3482 v17 = &ai_near_actors_ids[v15]; | |
3483 v18 = ai_near_actors_ids[v14]; | |
3484 ai_near_actors_ids[v14] = *v17; | |
3485 *v17 = v18; | |
3486 v15 = v24; | |
3487 ai_near_actors_distances[v14] = ai_near_actors_distances[v24]; | |
3488 ai_near_actors_distances[v24] = v16; | |
3489 } | |
3490 result = v27; | |
3491 ++v15; | |
3492 } | |
3493 ++v14; | |
3494 v15 = v26 + 1; | |
3495 v26 = v15; | |
3496 } | |
3497 while ( v15 - 1 < result ); | |
3498 }*/ | |
3499 | |
3500 for (uint i = 0; i < ai_arrays_size; ++i) | |
3501 for (uint j = 0; j < i; ++j) | |
3502 if (ai_near_actors_distances[j] > ai_near_actors_distances[i]) | |
3503 { | |
3504 int tmp = ai_near_actors_distances[j]; | |
3505 ai_near_actors_distances[j] = ai_near_actors_distances[i]; | |
3506 ai_near_actors_distances[i] = tmp; | |
3507 | |
3508 tmp = ai_near_actors_ids[j]; | |
3509 ai_near_actors_ids[j] = ai_near_actors_ids[i]; | |
3510 ai_near_actors_ids[i] = tmp; | |
3511 } | |
3512 | |
3513 | |
3514 if (ai_arrays_size > 30) | |
3515 ai_arrays_size = 30; | |
3516 | |
3517 for (uint i = 0; i < ai_arrays_size; ++i) | |
3518 pActors[ai_near_actors_ids[i]].uAttributes |= 0x0400; | |
1297 | 3519 } |
3520 //----- (0046BE0A) -------------------------------------------------------- | |
1642 | 3521 void ODM_UpdateUserInputAndOther() |
1297 | 3522 { |
3523 bool v0; // eax@5 | |
3524 char pOut[32]; // [sp+8h] [bp-20h]@5 | |
3525 | |
3526 UpdateObjects(); | |
3527 ODM_ProcessPartyActions(); | |
3528 if ( pParty->vPosition.x < -22528 | |
3529 || pParty->vPosition.x > 22528 | |
3530 || pParty->vPosition.y < -22528 | |
3531 || pParty->vPosition.y > 22528 ) | |
3532 { | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
3533 strcpy(pOutdoor->pLevelFilename, pCurrentMapName); |
1297 | 3534 v0 = pOutdoor->GetTravelDestination(pParty->vPosition.x, pParty->vPosition.y, pOut, 32); |
3535 if ( !bUnderwater && (pParty->uFlags & (PARTY_FLAGS_1_STANDING_ON_WATER | PARTY_FLAGS_1_FALLING | 0x04) || pParty->uFlags & 0x0200 || pParty->bFlying) || !v0 ) | |
3536 { | |
3537 if ( pParty->vPosition.x < -22528 ) | |
3538 pParty->vPosition.x = -22528; | |
3539 if ( pParty->vPosition.x > 22528 ) | |
3540 pParty->vPosition.x = 22528; | |
3541 if ( pParty->vPosition.y < -22528 ) | |
3542 pParty->vPosition.y = -22528; | |
3543 if ( pParty->vPosition.y > 22528 ) | |
3544 pParty->vPosition.y = 22528; | |
3545 } | |
3546 else | |
3547 { | |
3548 pAudioPlayer->StopChannels(-1, -1); | |
3549 TravelUI_Load(); | |
3550 } | |
3551 } | |
3552 UpdateActors_ODM(); | |
3553 check_event_triggers(); | |
3554 } | |
3555 //----- (0041F54A) -------------------------------------------------------- | |
1642 | 3556 void LoadActualSkyFrame() |
1297 | 3557 { |
3558 if ( pTexture_RestUI_CurrentSkyFrame ) | |
3559 pTexture_RestUI_CurrentSkyFrame->Release(); | |
3560 if ( pTexture_RestUI_CurrentHourglassFrame ) | |
3561 pTexture_RestUI_CurrentHourglassFrame->Release(); | |
3562 pIcons_LOD->SyncLoadedFilesCount(); | |
3563 sprintf(pTmpBuf.data(), "TERRA%03d", pParty->uCurrentMinute / 6 + 10 * pParty->uCurrentHour); | |
3564 pTexture_RestUI_CurrentSkyFrame = pIcons_LOD->LoadTexturePtr(pTmpBuf.data(), TEXTURE_16BIT_PALETTE); | |
1323 | 3565 } |
3566 | |
3567 | |
3568 //----- (004626BA) -------------------------------------------------------- | |
3569 OutdoorLocation::OutdoorLocation() | |
3570 { | |
3571 subconstuctor(); | |
3572 uLastSunlightUpdateMinute = 0; | |
3573 | |
3574 uNumBModels = 0; | |
3575 pBModels = nullptr; | |
3576 } | |
3577 | |
3578 //----- (004626CD) -------------------------------------------------------- | |
3579 void OutdoorLocation::subconstuctor() | |
3580 { | |
3581 //OutdoorLocationTerrain::OutdoorLocationTerrain(&this->pTerrain); | |
3582 field_F0 = 0; | |
3583 field_F4 = 0x40000000u; | |
3584 //DLVHeader::DLVHeader(&v1->ddm); | |
3585 pSpawnPoints = 0; | |
3586 pBModels = 0; | |
3587 pCmap = 0; | |
3588 pFaceIDLIST = 0; | |
3589 pOMAP = 0; | |
3590 } | |
3591 | |
1637 | 3592 |
3593 | |
3594 | |
3595 //----- (00481E55) -------------------------------------------------------- | |
3596 void ODM_Project(unsigned int uNumVertices) | |
3597 { | |
3598 double v1; // st7@2 | |
3599 double v2; // st6@2 | |
3600 double v3; // st5@2 | |
3601 int v4; // eax@2 | |
3602 unsigned int v5; // edx@2 | |
3603 double v6; // st4@3 | |
3604 double v7; // st3@3 | |
3605 | |
3606 if ( (signed int)uNumVertices > 0 ) | |
3607 { | |
3608 v1 = (double)pODMRenderParams->int_fov_rad; | |
3609 v2 = (double)pViewport->uScreenCenterX; | |
3610 v3 = (double)pViewport->uScreenCenterY; | |
3611 v4 = 0; | |
3612 v5 = uNumVertices; | |
3613 do | |
3614 { | |
3615 v6 = v1 * array_507D30[v4]._rhw; | |
3616 v7 = v6 * array_507D30[v4].vWorldViewPosition.y; | |
3617 memcpy(&array_50AC10[v4], &array_507D30[v4], sizeof(array_50AC10[v4])); | |
3618 array_50AC10[v4].vWorldViewProjX = v2 - v7; | |
3619 array_50AC10[v4].vWorldViewProjY = v3 - v6 * array_507D30[v4].vWorldViewPosition.z; | |
3620 ++v4; | |
3621 --v5; | |
3622 } | |
3623 while ( v5 ); | |
3624 } | |
3625 } | |
3626 //----- (00485F64) -------------------------------------------------------- | |
3627 void ODMRenderParams::Initialize() | |
3628 { | |
3629 int v1; // eax@1 | |
3630 int v2; // eax@2 | |
3631 signed __int64 v3; // qtt@4 | |
3632 int v4; // eax@4 | |
3633 | |
3634 this->uCameraFovInDegrees = 75; | |
3635 v1 = stru_5C6E00->uPiMask & 0xD5; | |
3636 if ( v1 >= (signed int)stru_5C6E00->uIntegerHalfPi ) | |
3637 v2 = -stru_5C6E00->pTanTable[stru_5C6E00->uIntegerPi - v1]; | |
3638 else | |
3639 v2 = stru_5C6E00->pTanTable[v1]; | |
3640 LODWORD(v3) = (viewparams->uSomeZ - viewparams->uSomeX) << 31; | |
3641 HIDWORD(v3) = (viewparams->uSomeZ - viewparams->uSomeX) << 15 >> 16; | |
3642 v4 = (signed int)(v3 / v2) >> 16; | |
3643 this->int_fov_rad = v4; | |
3644 this->field_4C = 360000; | |
3645 this->int_fov_rad_inv = 65536 / v4; | |
3646 this->field_50 = 115; | |
3647 //sr_6BE060[1] = 1; | |
1642 | 3648 //RotationToInts(); |
1637 | 3649 } |