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