annotate Outdoor.cpp @ 2:2ca04ccb612a

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