Mercurial > mm7
annotate LOD.cpp @ 2490:0a0c6d75aabe
two_handed_left_fist
author | Ritor1 |
---|---|
date | Fri, 12 Sep 2014 18:05:26 +0600 |
parents | 0683c0a38282 |
children | 5abd8fc8f1c6 |
rev | line source |
---|---|
2415 | 1 #define _CRTDBG_MAP_ALLOC |
2 #include <stdlib.h> | |
3 #include <crtdbg.h> | |
4 | |
2253
aff7a7b072b7
adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents:
2215
diff
changeset
|
5 #define _CRT_SECURE_NO_WARNINGS |
2336 | 6 #include "ErrorHandling.h" |
0 | 7 #include "LOD.h" |
8 #include "Render.h" | |
9 #include "Viewport.h" | |
2336 | 10 #include "mm7_data.h" |
2352 | 11 #include "ZlibWrapper.h" |
0 | 12 |
1016 | 13 #include "Sprites.h" |
0 | 14 |
15 | |
16 | |
17 | |
18 | |
19 | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
20 LODFile_IconsBitmaps *pEvents_LOD = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
21 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
22 LODFile_IconsBitmaps *pIcons_LOD = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
23 LODFile_IconsBitmaps *pIcons_LOD_mm6 = nullptr; |
1541 | 24 LODFile_IconsBitmaps *pIcons_LOD_mm8 = nullptr; |
0 | 25 |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
26 LODFile_IconsBitmaps *pBitmaps_LOD = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
27 LODFile_IconsBitmaps *pBitmaps_LOD_mm6 = nullptr; |
1541 | 28 LODFile_IconsBitmaps *pBitmaps_LOD_mm8 = nullptr; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
29 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
30 LODFile_Sprites *pSprites_LOD = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
31 LODFile_Sprites *pSprites_LOD_mm6 = nullptr; |
1541 | 32 LODFile_Sprites *pSprites_LOD_mm8 = nullptr; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
33 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
34 LODWriteableFile *pNew_LOD = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
35 LODWriteableFile *pGames_LOD = nullptr; |
0 | 36 |
37 | |
38 | |
39 | |
40 int _6A0CA4_lod_binary_search; // weak | |
41 int _6A0CA8_lod_unused; // weak | |
42 | |
43 | |
762 | 44 // inlined |
45 //----- (mm6c::00408860) -------------------------------------------------- | |
46 void LODFile_IconsBitmaps::_inlined_sub2() | |
47 { | |
48 ++uTexturePacksCount; | |
49 if (!uNumPrevLoadedFiles) | |
50 uNumPrevLoadedFiles = uNumLoadedFiles; | |
51 } | |
52 | |
53 // inlined | |
54 //----- (mm6c::0045BE60) -------------------------------------------------- | |
55 void LODFile_IconsBitmaps::_inlined_sub1() | |
56 { | |
57 dword_11B84 = uNumLoadedFiles; | |
58 } | |
59 | |
60 // inlined | |
61 //----- (mm6c::0045C310) -------------------------------------------------- | |
62 void LODFile_Sprites::_inlined_sub1() | |
63 { | |
64 field_ECA0 = uNumLoadedSprites; | |
65 } | |
66 | |
67 // inlined | |
68 //----- (mm6c::0045C5B0) -------------------------------------------------- | |
69 void LODFile_IconsBitmaps::_inlined_sub0() | |
70 { | |
71 dword_11B80 = uNumLoadedFiles; | |
72 if (dword_11B84 < uNumLoadedFiles) | |
73 dword_11B84 = uNumLoadedFiles; | |
74 } | |
75 | |
76 | |
77 // inlined | |
78 //----- (mm6c::0045C660) -------------------------------------------------- | |
79 void LODFile_Sprites::_inlined_sub0() | |
80 { | |
81 field_ECA4 = uNumLoadedSprites; | |
82 if (field_ECA0 < uNumLoadedSprites) | |
83 field_ECA0 = uNumLoadedSprites; | |
84 } | |
0 | 85 |
86 //----- (004355F7) -------------------------------------------------------- | |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
87 void LODFile_IconsBitmaps::RemoveTexturesFromTextureList() |
0 | 88 { |
89 if ( this->uTexturePacksCount ) | |
90 { | |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
91 if ( (this->uNumLoadedFiles - 1) >= this->uNumPrevLoadedFiles ) |
0 | 92 { |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
93 for ( uint i = this->uNumLoadedFiles - 1; i >= this->uNumPrevLoadedFiles; --i ) |
0 | 94 { |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
95 this->pTextures[i].Release(); |
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
96 if ( this->pHardwareTextures ) |
0 | 97 { |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
98 if ( this->pHardwareTextures[i] ) |
0 | 99 { |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
100 this->pHardwareTextures[i]->Release(); |
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
101 this->pHardwareTextures[i] = 0; |
0 | 102 } |
103 } | |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
104 if ( this->pHardwareSurfaces ) |
0 | 105 { |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
106 if ( this->pHardwareSurfaces[i] ) |
0 | 107 { |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
108 this->pHardwareSurfaces[i]->Release(); |
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
109 this->pHardwareSurfaces[i] = 0; |
0 | 110 } |
111 } | |
112 } | |
113 } | |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
114 this->uNumLoadedFiles = this->uNumPrevLoadedFiles; |
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
115 this->uNumPrevLoadedFiles = 0; |
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
116 this->uTexturePacksCount = 0; |
0 | 117 } |
118 } | |
119 | |
120 //----- (004114F2) -------------------------------------------------------- | |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
121 void LODFile_IconsBitmaps::RemoveTexturesPackFromTextureList() |
0 | 122 { |
1404 | 123 if ( this->uTexturePacksCount ) |
0 | 124 { |
1404 | 125 this->uTexturePacksCount--; |
126 if ( !this->uTexturePacksCount ) | |
0 | 127 { |
1404 | 128 if ( (this->uNumLoadedFiles - 1) >= this->uNumPrevLoadedFiles ) |
0 | 129 { |
1404 | 130 for ( uint i = this->uNumLoadedFiles - 1; i >= this->uNumPrevLoadedFiles; --i ) |
0 | 131 { |
1404 | 132 this->pTextures[i].Release(); |
133 if ( this->pHardwareTextures ) | |
0 | 134 { |
1404 | 135 if ( this->pHardwareTextures[i] ) |
0 | 136 { |
1404 | 137 this->pHardwareTextures[i]->Release(); |
138 this->pHardwareTextures[i] = 0; | |
0 | 139 } |
140 } | |
1404 | 141 if ( this->pHardwareSurfaces ) |
0 | 142 { |
1404 | 143 if ( this->pHardwareSurfaces[i] ) |
0 | 144 { |
1404 | 145 this->pHardwareSurfaces[i]->Release(); |
146 this->pHardwareSurfaces[i] = 0; | |
0 | 147 } |
148 } | |
149 } | |
150 } | |
1404 | 151 this->uNumLoadedFiles = this->uNumPrevLoadedFiles; |
1402 | 152 this->uNumPrevLoadedFiles = 0; |
0 | 153 } |
154 } | |
155 } | |
156 | |
157 //----- (004AC67E) -------------------------------------------------------- | |
158 int LODFile_Sprites::LoadSpriteFromFile(LODSprite *pSpriteHeader, const char *pContainer) | |
159 { | |
160 FILE *File; // [sp+4h] [bp-4h]@1 | |
161 void *DstBufa; // [sp+10h] [bp+8h]@4 | |
162 int Sizea; // [sp+14h] [bp+Ch]@3 | |
163 | |
2416 | 164 File = FindContainer(pContainer, 0); |
165 if ( File ) | |
0 | 166 { |
2416 | 167 fread(pSpriteHeader, 1, 0x20u, File); |
0 | 168 strcpy(pSpriteHeader->pName, pContainer); |
169 Sizea = pSpriteHeader->uSpriteSize; | |
2416 | 170 pSpriteHeader->pSpriteLines = (LODSprite_stru0 *)malloc(8 * pSpriteHeader->uHeight); |
171 fread(pSpriteHeader->pSpriteLines, 1, 8 * pSpriteHeader->uHeight, File); | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
172 |
2416 | 173 if ( pSpriteHeader->uDecompressedSize ) |
0 | 174 { |
2416 | 175 pSpriteHeader->pDecompressedBytes = malloc(pSpriteHeader->uDecompressedSize); |
1583 | 176 DstBufa = malloc(Sizea); |
2416 | 177 fread(DstBufa, 1, Sizea, File); |
178 zlib::MemUnzip(pSpriteHeader->pDecompressedBytes, (unsigned int *)&pSpriteHeader->uDecompressedSize, DstBufa, pSpriteHeader->uSpriteSize); | |
179 pSpriteHeader->uSpriteSize = pSpriteHeader->uDecompressedSize; | |
1583 | 180 free(DstBufa); |
0 | 181 } |
182 else | |
183 { | |
2416 | 184 pSpriteHeader->pDecompressedBytes = malloc(Sizea); |
185 fread(pSpriteHeader->pDecompressedBytes, 1, Sizea, File); | |
0 | 186 } |
2416 | 187 for ( uint i = 0; i < pSpriteHeader->uHeight; i++ ) |
188 pSpriteHeader->pSpriteLines[i].pos += (unsigned int)pSpriteHeader->pDecompressedBytes; | |
189 return 1; | |
0 | 190 } |
191 else | |
2416 | 192 return -1; |
0 | 193 } |
194 | |
195 //----- (004AC795) -------------------------------------------------------- | |
196 bool LODFile_Sprites::LoadSprites(const char *pFilename) | |
197 { | |
198 if (LoadHeader(pFilename, 1)) | |
199 return false; | |
200 else | |
201 return LoadSubIndices("sprites08") == 0; | |
202 } | |
203 | |
204 //----- (004AC7C0) -------------------------------------------------------- | |
205 int LODFile_Sprites::LoadSprite(const char *pContainerName, unsigned int uPaletteID) | |
670 | 206 { |
207 | |
208 FILE *sprite_file; // eax@12 | |
209 LODSprite temp_sprite_hdr; // [sp+Ch] [bp-3Ch]@12 | |
2334 | 210 int i;//, sprite_indx; |
670 | 211 |
212 //find if already loaded | |
2154 | 213 //if ( pRenderer->pRenderD3D ) |
670 | 214 { |
215 for (i=0; i<uNumLoadedSprites;++i) | |
216 { | |
1104 | 217 if (!(_stricmp(pHardwareSprites[i].pName, pContainerName))) |
670 | 218 return i; |
219 } | |
220 } | |
2154 | 221 /*else |
670 | 222 { |
223 for (i=0; i<uNumLoadedSprites;++i) | |
224 { | |
1104 | 225 if (!(_stricmp(pSpriteHeaders[i].pName, pContainerName))) |
670 | 226 return i; |
227 } | |
2154 | 228 }*/ |
670 | 229 |
700
1d05543f522d
Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents:
670
diff
changeset
|
230 if (uNumLoadedSprites >= 1500 ) |
670 | 231 return -1; |
232 //if not loaded - load from file | |
0 | 233 |
2154 | 234 //if ( pRenderer->pRenderD3D && can_load_hardware_sprites ) |
670 | 235 { |
236 if ( !pHardwareSprites ) | |
237 { | |
1583 | 238 pHardwareSprites = (Sprite *)malloc(1500*sizeof(Sprite));//0xEA60u |
670 | 239 for (i=0; i<1500;++i) |
240 { | |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
241 pHardwareSprites[i].pName=nullptr; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
242 pHardwareSprites[i].pTextureSurface=nullptr; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
243 pHardwareSprites[i].pTexture=nullptr; |
670 | 244 } |
245 } | |
246 temp_sprite_hdr.uHeight = 0; | |
247 temp_sprite_hdr.uPaletteId = 0; | |
248 temp_sprite_hdr.word_1A = 0; | |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
249 temp_sprite_hdr.pSpriteLines = nullptr; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
250 temp_sprite_hdr.pDecompressedBytes = nullptr; |
670 | 251 sprite_file = FindContainer(pContainerName, 0); |
252 if ( !sprite_file ) | |
253 return -1; | |
700
1d05543f522d
Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents:
670
diff
changeset
|
254 //fread(&temp_sprite_hdr, 1, sizeof(LODSprite), sprite_file); |
1d05543f522d
Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents:
670
diff
changeset
|
255 fread(&temp_sprite_hdr, 1, 0x20, sprite_file); |
670 | 256 pHardwareSprites[uNumLoadedSprites].uBufferWidth = temp_sprite_hdr.uWidth; |
257 pHardwareSprites[uNumLoadedSprites].uBufferHeight = temp_sprite_hdr.uHeight; | |
258 pSpriteHeaders[uNumLoadedSprites].uWidth = temp_sprite_hdr.uWidth; | |
259 pSpriteHeaders[uNumLoadedSprites].uHeight = temp_sprite_hdr.uHeight; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
260 LoadSpriteFromFile( &pSpriteHeaders[uNumLoadedSprites], pContainerName); //this line is not present here in the original. necessary for Grayface's mouse picking fix |
670 | 261 } |
2154 | 262 /*else |
670 | 263 { |
264 sprite_indx = LoadSpriteFromFile( &pSpriteHeaders[uNumLoadedSprites], pContainerName); | |
265 pSpriteHeaders[uNumLoadedSprites].word_1A = 0; | |
266 | |
267 if ( sprite_indx != -1 ) | |
268 { | |
269 pSpriteHeaders[uNumLoadedSprites].uPaletteId = pPaletteManager->LoadPalette(pSpriteHeaders[uNumLoadedSprites].uPaletteId); | |
270 } | |
271 else | |
272 { | |
273 if ( uNumLoadedSprites<=0 ) | |
274 uNumLoadedSprites=0; | |
275 else | |
276 { | |
277 for (i=0; i<uNumLoadedSprites;++i) | |
278 { | |
1104 | 279 if (!(_stricmp(pSpriteHeaders[i].pName, "pending"))) |
670 | 280 return i; |
281 } | |
282 } | |
283 if ( LoadSpriteFromFile(&pSpriteHeaders[uNumLoadedSprites], "pending") == -1 ) | |
284 return -1; | |
285 pSpriteHeaders[uNumLoadedSprites].uPaletteId = pPaletteManager->LoadPalette(pSpriteHeaders[uNumLoadedSprites].uPaletteId); | |
286 } | |
2154 | 287 }*/ |
670 | 288 |
2154 | 289 //if ( pRenderer->pRenderD3D ) |
670 | 290 { |
1583 | 291 pHardwareSprites[uNumLoadedSprites].pName = (const char *)malloc(20); |
670 | 292 strcpy((char *)pHardwareSprites[uNumLoadedSprites].pName, pContainerName); |
293 pHardwareSprites[uNumLoadedSprites].uPaletteID = uPaletteID; | |
294 pRenderer->MoveSpriteToDevice(&pHardwareSprites[uNumLoadedSprites]); | |
295 } | |
296 ++uNumLoadedSprites; | |
297 return uNumLoadedSprites - 1; | |
298 | |
299 } | |
0 | 300 |
301 //----- (004ACADA) -------------------------------------------------------- | |
302 void LODFile_Sprites::ReleaseLostHardwareSprites() | |
303 { | |
304 signed int v2; // ebx@2 | |
305 int v3; // edi@3 | |
306 IDirectDrawSurface *v4; // eax@4 | |
307 IDirect3DTexture2 *v5; // eax@6 | |
308 IDirectDrawSurface *v6; // ST00_4@8 | |
309 | |
310 if ( this->pHardwareSprites ) | |
311 { | |
312 v2 = 0; | |
313 if ( (signed int)this->uNumLoadedSprites > 0 ) | |
314 { | |
315 v3 = 0; | |
316 do | |
317 { | |
2415 | 318 v4 = (IDirectDrawSurface *)this->pHardwareSprites[v3].pTextureSurface; |
0 | 319 if ( v4 && v4->IsLost() == DDERR_SURFACELOST ) |
320 { | |
2415 | 321 v5 = this->pHardwareSprites[v3].pTexture; |
0 | 322 if ( v5 ) |
323 { | |
324 v5->Release(); | |
2415 | 325 this->pHardwareSprites[v3].pTexture = nullptr; |
0 | 326 } |
2415 | 327 v6 = (IDirectDrawSurface *)this->pHardwareSprites[v3].pTextureSurface; |
0 | 328 v6->Release(); |
2415 | 329 this->pHardwareSprites[v3].pTextureSurface = nullptr; |
330 pRenderer->MoveSpriteToDevice(&this->pHardwareSprites[v3]); | |
0 | 331 } |
332 ++v2; | |
333 ++v3; | |
334 } | |
2415 | 335 while ( v2 < (signed int)this->uNumLoadedSprites ); |
0 | 336 } |
337 } | |
338 } | |
339 | |
340 //----- (004ACB70) -------------------------------------------------------- | |
341 void LODFile_Sprites::ReleaseAll() | |
342 { | |
343 if ( this->pHardwareSprites ) | |
344 { | |
2415 | 345 for ( int i = 0; i < this->uNumLoadedSprites; ++i ) |
0 | 346 { |
2415 | 347 if ( this->pHardwareSprites ) |
0 | 348 { |
2415 | 349 if ( this->pHardwareSprites[i].pTexture ) |
0 | 350 { |
2415 | 351 this->pHardwareSprites[i].pTexture->Release(); |
352 this->pHardwareSprites[i].pTexture = nullptr; | |
353 } | |
354 if ( this->pHardwareSprites ) | |
355 { | |
356 if ( this->pHardwareSprites[i].pTextureSurface ) | |
0 | 357 { |
2415 | 358 this->pHardwareSprites[i].pTextureSurface->Release(); |
359 this->pHardwareSprites[i].pTextureSurface = nullptr; | |
0 | 360 } |
361 } | |
362 } | |
363 } | |
364 } | |
365 } | |
366 | |
367 //----- (004ACBE0) -------------------------------------------------------- | |
368 void LODFile_Sprites::MoveSpritesToVideoMemory() | |
369 { | |
370 if ( this->pHardwareSprites ) | |
371 { | |
2415 | 372 for ( int i = 0; i < this->uNumLoadedSprites; ++i ) |
373 pRenderer->MoveSpriteToDevice(&this->pHardwareSprites[i]); | |
0 | 374 } |
375 } | |
376 | |
377 //----- (004ACC38) -------------------------------------------------------- | |
733 | 378 int LODSprite::DrawSprite_sw(RenderBillboardTransform_local0 *a2, char a3) |
0 | 379 { |
380 RenderBillboardTransform_local0 *v3; // edi@1 | |
381 int result; // eax@1 | |
382 int v5; // esi@2 | |
383 int v6; // ST18_4@2 | |
2416 | 384 //signed int v7; // eax@2 |
0 | 385 signed int v8; // ebx@2 |
386 int v9; // ebx@2 | |
387 int *v10; // ecx@2 | |
388 int v11; // esi@2 | |
389 unsigned int v12; // edx@4 | |
390 int v13; // esi@13 | |
391 int v14; // esi@17 | |
392 int v15; // ecx@17 | |
393 char *v16; // edx@17 | |
394 int v17; // esi@17 | |
395 int v18; // ecx@18 | |
396 int v19; // esi@18 | |
397 LODSprite_stru0 *v20; // edx@21 | |
398 int v21; // eax@22 | |
399 int v22; // esi@22 | |
400 int v23; // eax@25 | |
401 int v24; // ecx@25 | |
402 signed __int64 v25; // qtt@27 | |
403 int v26; // eax@27 | |
404 unsigned __int16 *v27; // eax@29 | |
405 LODSprite_stru0 *v28; // edx@29 | |
406 signed int v29; // ecx@30 | |
407 int v30; // ecx@37 | |
408 int v31; // ecx@38 | |
409 signed int v32; // ecx@41 | |
410 int v33; // ecx@47 | |
411 int v34; // ecx@56 | |
412 int v35; // esi@58 | |
413 __int16 v36; // ax@58 | |
414 int v37; // ecx@59 | |
415 int v38; // eax@59 | |
416 int v39; // ecx@62 | |
417 signed int v40; // ST30_4@64 | |
418 signed __int64 v41; // qtt@64 | |
419 int v42; // ecx@64 | |
420 unsigned __int16 *v43; // eax@66 | |
421 LODSprite_stru0 *v44; // ecx@66 | |
422 int v45; // edx@69 | |
423 int v46; // edx@77 | |
2069 | 424 //unsigned __int16 *pTarget; // [sp+Ch] [bp-50h]@2 |
0 | 425 signed int v48; // [sp+10h] [bp-4Ch]@2 |
426 signed int v49; // [sp+14h] [bp-48h]@2 | |
427 int v50; // [sp+14h] [bp-48h]@19 | |
428 int v51; // [sp+14h] [bp-48h]@57 | |
429 int v52; // [sp+18h] [bp-44h]@13 | |
430 int v53; // [sp+1Ch] [bp-40h]@2 | |
431 int v54; // [sp+1Ch] [bp-40h]@22 | |
432 int v55; // [sp+1Ch] [bp-40h]@32 | |
433 int v56; // [sp+1Ch] [bp-40h]@69 | |
434 int v57; // [sp+20h] [bp-3Ch]@2 | |
435 int v58; // [sp+24h] [bp-38h]@1 | |
436 int v59; // [sp+28h] [bp-34h]@2 | |
437 int v60; // [sp+28h] [bp-34h]@13 | |
438 unsigned __int16 *v61; // [sp+2Ch] [bp-30h]@2 | |
439 int v62; // [sp+30h] [bp-2Ch]@2 | |
440 void *v63; // [sp+30h] [bp-2Ch]@29 | |
441 void *v64; // [sp+30h] [bp-2Ch]@66 | |
442 int v65; // [sp+34h] [bp-28h]@2 | |
443 int v66; // [sp+34h] [bp-28h]@22 | |
444 int v67; // [sp+34h] [bp-28h]@59 | |
445 int v68; // [sp+38h] [bp-24h]@13 | |
446 unsigned int v69; // [sp+3Ch] [bp-20h]@2 | |
447 int v70; // [sp+40h] [bp-1Ch]@2 | |
448 signed int v71; // [sp+40h] [bp-1Ch]@15 | |
449 int v72; // [sp+44h] [bp-18h]@2 | |
450 unsigned __int16 *v73; // [sp+44h] [bp-18h]@29 | |
451 unsigned __int16 *v74; // [sp+44h] [bp-18h]@66 | |
452 int v75; // [sp+48h] [bp-14h]@4 | |
453 int v76; // [sp+48h] [bp-14h]@22 | |
454 int v77; // [sp+48h] [bp-14h]@59 | |
2207 | 455 //LODSprite *v78; // [sp+4Ch] [bp-10h]@1 |
0 | 456 int v79; // [sp+50h] [bp-Ch]@4 |
457 int v80; // [sp+50h] [bp-Ch]@21 | |
458 int v81; // [sp+50h] [bp-Ch]@62 | |
459 int v82; // [sp+50h] [bp-Ch]@67 | |
460 int v83; // [sp+50h] [bp-Ch]@75 | |
461 int *pTargetZ; // [sp+54h] [bp-8h]@4 | |
462 int v85; // [sp+58h] [bp-4h]@18 | |
463 int v86; // [sp+58h] [bp-4h]@56 | |
464 signed int v87; // [sp+64h] [bp+8h]@2 | |
465 int v88; // [sp+68h] [bp+Ch]@18 | |
466 int v89; // [sp+68h] [bp+Ch]@56 | |
467 | |
468 v3 = a2; | |
2207 | 469 //v78 = this; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
17
diff
changeset
|
470 result = a2->_screenspace_x_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
17
diff
changeset
|
471 v58 = a2->_screenspace_x_scaler_packedfloat; |
0 | 472 if ( result <= 0 ) |
473 return result; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
17
diff
changeset
|
474 v5 = a2->_screenspace_y_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
17
diff
changeset
|
475 v6 = a2->_screenspace_x_scaler_packedfloat; |
0 | 476 v87 = (signed __int64)0x100000000ui64 / result; |
477 v48 = (signed __int64)0x100000000ui64 / result; | |
478 v62 = (signed __int64)0x100000000ui64 / v5; | |
2416 | 479 //v7 = this->uHeight; |
0 | 480 v8 = (signed int)((signed __int64)0x100000000ui64 / v5) >> 1; |
481 v53 = v8; | |
482 v70 = (this->uHeight << 16) - v8; | |
2416 | 483 v49 = this->uHeight; |
0 | 484 v69 = v3->uTargetPitch; |
2069 | 485 |
486 __debugbreak(); // target surface will most likely be 32bit, but this sub awaits 16bits | |
487 auto pTarget = (unsigned __int16 *)v3->pTarget; | |
0 | 488 v57 = v3->sZValue; |
489 v61 = v3->pPalette; | |
2207 | 490 v9 = (v6 * this->uWidth + 0x8000) >> 16; |
0 | 491 v72 = v3->uScreenSpaceY; |
2416 | 492 result = (v5 * this->uHeight + 0x8000) >> 16; |
0 | 493 v10 = (int *)(v72 - result + 1); |
494 v11 = v3->uScreenSpaceX - (v9 >> 1) + 1; | |
495 v65 = v72 - result + 1; | |
496 v59 = v11 + v9 - 1; | |
2207 | 497 if ( v3->uFlags & 0x800 ) |
0 | 498 { |
499 v10 = (int *)((char *)v10 + (v49 >> 1)); | |
500 v72 += v49 >> 1; | |
501 v65 = (int)v10; | |
502 } | |
503 v12 = v72; | |
504 pTargetZ = v10; | |
505 v75 = v3->uScreenSpaceX - (v9 >> 1) + 1; | |
506 v79 = v11 + v9 - 1; | |
507 if ( !(v3->uFlags & 8) ) | |
508 { | |
509 if ( v65 < (signed int)v3->uViewportY ) | |
510 pTargetZ = (int *)v3->uViewportY; | |
511 if ( v72 > (signed int)v3->uViewportW ) | |
512 v12 = v3->uViewportW; | |
513 if ( v11 < (signed int)v3->uViewportX ) | |
514 v75 = v3->uViewportX; | |
515 if ( v59 > (signed int)v3->uViewportZ ) | |
516 v79 = v3->uViewportZ; | |
517 } | |
518 v68 = v75 - v11; | |
519 v13 = -v62; | |
520 v60 = v59 - v79; | |
521 v52 = -v62; | |
522 if ( v3->uFlags & 1 ) | |
523 { | |
524 v13 = v62; | |
525 v70 = v53; | |
526 v52 = v62; | |
527 } | |
528 v71 = v13 * (v72 - v12) + v70; | |
529 if ( LOBYTE(viewparams->field_20) ) | |
530 { | |
531 if ( a3 ) | |
532 return result; | |
533 } | |
534 v14 = 5 * v12; | |
535 v15 = v69 * v12; | |
536 result = v12 - v72 + result - 1; | |
537 v16 = (char *)pTargetZ - v65; | |
538 v17 = v14 << 7; | |
539 if ( v3->uFlags & 4 ) | |
540 { | |
541 v34 = v79 + v15; | |
542 v89 = v34; | |
543 v86 = v79 + v17; | |
544 if ( result < (signed int)v16 ) | |
545 return result; | |
546 v51 = result - (int)v16 + 1; | |
547 while ( 1 ) | |
548 { | |
549 v35 = v71 >> 16; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
550 v36 = this->pSpriteLines[v35].a1; |
0 | 551 if ( v36 == -1 ) |
552 { | |
553 v34 -= v69; | |
554 v89 = v34; | |
555 goto LABEL_84; | |
556 } | |
557 v37 = v9 - ((unsigned __int64)(v36 * (signed __int64)v58) >> 16); | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
558 v67 = v87 * ((unsigned __int64)(this->pSpriteLines[v35].a2 * (signed __int64)v58) >> 16); |
0 | 559 v38 = v9 - v60; |
560 v77 = v9 - v60; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
561 if ( v9 - v60 <= (signed int)(v9 - ((unsigned __int64)(this->pSpriteLines[v35].a2 * (signed __int64)v58) >> 16)) |
0 | 562 || v68 >= v37 ) |
563 { | |
564 v89 -= v69; | |
565 v34 = v89; | |
566 LABEL_84: | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
567 v86 -= window->GetWidth(); |
0 | 568 goto LABEL_85; |
569 } | |
570 if ( v38 < v37 ) | |
571 v81 = (v87 >> 1) + v87 * (v37 - v38); | |
572 else | |
573 { | |
574 v77 = v37; | |
575 v81 = v87 >> 1; | |
576 v39 = v37 - v9; | |
577 v89 += v39 + v60; | |
578 v86 += v60 + v39; | |
579 } | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
580 v40 = ((this->pSpriteLines[v35].a2 + 1) << 16) - v81 - v67; |
0 | 581 LODWORD(v41) = v40 << 16; |
582 HIDWORD(v41) = v40 >> 16; | |
2207 | 583 v42 = v77 - (((signed int)((unsigned __int64)(v41 / v48) - 0x8000) >> 16) + 1); |
0 | 584 if ( v68 >= v42 ) |
585 v42 = v68; | |
586 v43 = &pTarget[v89]; | |
587 v74 = &v43[v42 - v77 + 1]; | |
2207 | 588 v44 = &this->pSpriteLines[v35]; |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
589 v64 = v44->pos; |
0 | 590 if ( !v57 ) |
591 { | |
592 v83 = v67 + v81; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
593 if ( ((v83 - (v44->a1 << 16)) & 0xFFFF0000) < 0 ) |
0 | 594 { |
595 v83 += v87; | |
596 --v43; | |
597 --pTargetZ; | |
598 } | |
599 while ( v43 >= v74 ) | |
600 { | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
601 v46 = (v83 - ((signed int)this->pSpriteLines[v35].a1 << 16)) >> 16; |
0 | 602 if ( *((char *)v64 + v46) ) |
603 *v43 = v61[*((char *)v64 + v46)]; | |
604 v83 += v87; | |
605 --v43; | |
606 } | |
607 goto LABEL_81; | |
608 } | |
609 pTargetZ = &v3->pTargetZ[v86]; | |
610 v82 = v67 + v81; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
611 if ( ((v82 - (v44->a1 << 16)) & 0xFFFF0000) < 0 ) |
0 | 612 goto LABEL_72; |
613 LABEL_73: | |
614 if ( v43 >= v74 ) | |
615 break; | |
616 LABEL_81: | |
617 v89 += v9 - v77 - v60 - v69; | |
618 v34 = v89; | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
619 v86 = v86 + v9 - v77 - v60 - window->GetWidth(); |
0 | 620 LABEL_85: |
621 result = v52; | |
622 v71 += v52; | |
623 --v51; | |
624 if ( !v51 ) | |
625 return result; | |
626 } | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
627 v45 = (v82 - ((signed int)this->pSpriteLines[v35].a1 << 16)) >> 16; |
0 | 628 v56 = *((char *)v64 + v45); |
629 if ( *((char *)v64 + v45) && v57 <= (unsigned int)*pTargetZ ) | |
630 { | |
631 *pTargetZ = v57; | |
632 *v43 = v61[v56]; | |
633 } | |
634 LABEL_72: | |
635 v82 += v87; | |
636 --v43; | |
637 --pTargetZ; | |
638 goto LABEL_73; | |
639 } | |
640 v18 = v75 + v15; | |
641 v19 = v75 + v17; | |
642 v88 = v18; | |
643 v85 = v19; | |
644 if ( result >= (signed int)v16 ) | |
645 { | |
646 v50 = result - (int)v16 + 1; | |
647 while ( 1 ) | |
648 { | |
2207 | 649 v20 = &this->pSpriteLines[v71 >> 16]; |
0 | 650 v80 = v71 >> 16; |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
651 if ( v20->a1 != -1 ) |
0 | 652 break; |
653 v18 -= v69; | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
654 v85 = v19 - window->GetWidth(); |
0 | 655 v88 = v18; |
656 LABEL_54: | |
657 result = v52; | |
658 v71 += v52; | |
659 --v50; | |
660 if ( !v50 ) | |
661 return result; | |
662 v19 = v85; | |
663 } | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
664 v21 = (v58 * v20->a1 + 32768) >> 16; |
0 | 665 v66 = v21 * v87; |
666 v76 = v68; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
667 v54 = v20->a2; |
0 | 668 v22 = v9 - v60; |
669 if ( v68 >= (v58 * v54 + 32768) >> 16 || v22 <= v21 ) | |
670 { | |
671 v88 -= v69; | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
672 v85 -= window->GetWidth(); |
0 | 673 goto LABEL_51; |
674 } | |
675 if ( v68 > v21 ) | |
676 { | |
677 v24 = (v87 >> 1) + v87 * (v68 - v21); | |
678 } | |
679 else | |
680 { | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
681 v76 = (v58 * v20->a1 + 0x8000) >> 16; |
0 | 682 v23 = v21 - v68; |
683 v88 += v23; | |
684 v24 = v87 >> 1; | |
685 v85 += v23; | |
686 } | |
687 LODWORD(v25) = (((v54 + 1) << 16) - v24 - v66) << 16; | |
688 HIDWORD(v25) = (((v54 + 1) << 16) - v24 - v66) >> 16; | |
689 v26 = v76 + ((signed int)(v25 / v48) >> 16) + 1; | |
690 if ( v22 > v26 ) | |
691 v22 = v26; | |
692 v27 = &pTarget[v88]; | |
693 v73 = &v27[v22 - v76 - 1]; | |
2207 | 694 v28 = &this->pSpriteLines[v80]; |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
695 v63 = v28->pos; |
0 | 696 if ( v57 ) |
697 { | |
698 pTargetZ = &v3->pTargetZ[v85]; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
699 v29 = v66 - (v28->a1 << 16) + v24; |
0 | 700 if ( (v29 & 0xFFFF0000) >= 0 ) |
701 goto LABEL_36; | |
702 while ( 1 ) | |
703 { | |
704 v29 += v87; | |
705 ++v27; | |
706 ++pTargetZ; | |
707 LABEL_36: | |
708 if ( v27 >= v73 ) | |
709 break; | |
710 v55 = *((char *)v63 + (v29 >> 16)); | |
711 if ( *((char *)v63 + (v29 >> 16)) && v57 <= (unsigned int)*pTargetZ ) | |
712 { | |
713 *pTargetZ = v57; | |
714 *v27 = v61[v55]; | |
715 } | |
716 } | |
717 v30 = v29 >> 16; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
718 if ( v30 > this->pSpriteLines[v80].a2 - (signed int)this->pSpriteLines[v80].a1 |
0 | 719 || (v31 = *((char *)v63 + v30)) == 0 |
720 || v57 > (unsigned int)*pTargetZ ) | |
721 goto LABEL_50; | |
722 *pTargetZ = v57; | |
723 } | |
724 else | |
725 { | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
726 v32 = v66 - (v28->a1 << 16) + v24; |
0 | 727 if ( (v32 & 0xFFFF0000) < 0 ) |
728 { | |
729 v32 += v87; | |
730 ++v27; | |
731 ++pTargetZ; | |
732 } | |
733 while ( v27 < v73 ) | |
734 { | |
735 if ( *((char *)v63 + (v32 >> 16)) ) | |
736 *v27 = v61[*((char *)v63 + (v32 >> 16))]; | |
737 v32 += v87; | |
738 ++v27; | |
739 } | |
740 v33 = v32 >> 16; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
741 if ( v33 > this->pSpriteLines[v80].a2 - (signed int)this->pSpriteLines[v80].a1 |
0 | 742 || (v31 = *((char *)v63 + v33)) == 0 ) |
743 goto LABEL_50; | |
744 } | |
745 *v27 = v61[v31]; | |
746 LABEL_50: | |
747 v88 += v68 - v76 - v69; | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
748 v85 = v85 + v68 - v76 - window->GetWidth(); |
0 | 749 LABEL_51: |
750 v18 = v88; | |
751 goto LABEL_54; | |
752 } | |
753 return result; | |
754 } | |
755 | |
756 //----- (004AD2D1) -------------------------------------------------------- | |
757 int LODSprite::_4AD2D1(struct RenderBillboardTransform_local0 *a2, int a3) | |
758 { | |
759 int result; // eax@1 | |
760 unsigned int v4; // esi@1 | |
761 int v5; // edi@1 | |
762 LODSprite_stru0 *v6; // edx@2 | |
763 __int16 v7; // bx@2 | |
764 int v8; // ecx@3 | |
765 unsigned __int16 *v9; // esi@3 | |
766 int v10; // ebx@3 | |
767 void *v11; // edx@3 | |
768 unsigned __int16 *v12; // ecx@3 | |
769 int v13; // ebx@4 | |
2415 | 770 //LODSprite *v14; // [sp+8h] [bp-10h]@1 |
0 | 771 unsigned __int16 *v15; // [sp+10h] [bp-8h]@1 |
772 unsigned __int16 *v16; // [sp+14h] [bp-4h]@1 | |
773 int i; // [sp+20h] [bp+8h]@1 | |
774 | |
775 result = (int)a2; | |
776 v4 = a2->uTargetPitch; | |
2069 | 777 |
778 __debugbreak(); // sub expects 16bit target surface, we may have 32bit | |
779 v16 = (unsigned short *)a2->pTarget; | |
0 | 780 v15 = a2->pPalette; |
781 v5 = this->uHeight - 1; | |
782 for ( i = v4 * a2->uScreenSpaceY - (this->uWidth >> 1) + a2->uScreenSpaceX + 1; v5 >= 0; --v5 ) | |
783 { | |
784 v6 = &this->pSpriteLines[v5]; | |
2415 | 785 v7 = this->pSpriteLines[v5].a1; |
786 if ( this->pSpriteLines[v5].a1 != -1 ) | |
0 | 787 { |
788 v8 = v7; | |
789 v9 = &v16[v7 + i]; | |
2379
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
790 v10 = v6->a2; |
e07e297f292d
Implementing Grayface's mouse pick implementation/fix/workaround
Grumpy7
parents:
2369
diff
changeset
|
791 v11 = v6->pos; |
0 | 792 v12 = &v9[v10 - v8]; |
793 while ( v9 <= v12 ) | |
794 { | |
795 v13 = *(char *)v11; | |
796 v11 = (char *)v11 + 1; | |
797 if ( v13 ) | |
798 *v9 = v15[v13]; | |
799 ++v9; | |
800 } | |
801 v4 = *(int *)(result + 48); | |
802 //this = v14; | |
803 } | |
804 i -= v4; | |
805 } | |
806 return result; | |
807 } | |
808 | |
809 //----- (0046454B) -------------------------------------------------------- | |
810 void LODFile_IconsBitmaps::ReleaseAll2() | |
811 { | |
2415 | 812 for ( uint i = (uint)this->dword_11B84; i < this->uNumLoadedFiles; i++ ) |
0 | 813 { |
2415 | 814 this->pTextures[i].Release(); |
815 if ( this->pHardwareTextures ) | |
0 | 816 { |
2415 | 817 if ( this->pHardwareTextures[i] ) |
0 | 818 { |
2415 | 819 this->pHardwareTextures[i]->Release(); |
820 this->pHardwareTextures[i] = 0; | |
0 | 821 } |
2415 | 822 } |
823 if ( this->pHardwareSurfaces ) | |
824 { | |
825 if ( this->pHardwareSurfaces[i] ) | |
0 | 826 { |
2415 | 827 this->pHardwareSurfaces[i]->Release(); |
828 this->pHardwareSurfaces[i] = 0; | |
0 | 829 } |
830 } | |
831 } | |
2415 | 832 this->uTexturePacksCount = 0; |
833 this->uNumPrevLoadedFiles = 0; | |
834 this->uNumLoadedFiles = this->dword_11B84; | |
0 | 835 } |
836 | |
837 //----- (004645DC) -------------------------------------------------------- | |
838 void LODFile_Sprites::DeleteSomeOtherSprites() | |
839 { | |
840 int *v1; // esi@1 | |
841 int *v2; // edi@1 | |
842 | |
843 v1 = (int *)&this->uNumLoadedSprites; | |
844 v2 = &this->field_ECA0; | |
845 DeleteSpritesRange(field_ECA0, uNumLoadedSprites); | |
846 *v1 = *v2; | |
847 } | |
848 | |
849 //----- (00461431) -------------------------------------------------------- | |
850 void LOD::File::Close() | |
851 { | |
837 | 852 if (isFileOpened ) |
0 | 853 { |
854 this->pContainerName[0] = 0; | |
855 this->uCurrentIndexDir = 0; | |
1583 | 856 free(pSubIndices); |
857 free(pRoot); | |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
858 pSubIndices = nullptr; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
859 pRoot = nullptr; |
837 | 860 fclose(pFile); |
2165 | 861 isFileOpened = false; |
0 | 862 _6A0CA8_lod_unused = 0; |
863 } | |
864 } | |
865 | |
866 //----- (00461492) -------------------------------------------------------- | |
837 | 867 int LODWriteableFile::CreateNewLod(LOD::FileHeader *pHeader, LOD::Directory *pDir, const char *lod_name) |
0 | 868 { |
869 if (isFileOpened) | |
870 return 1; | |
871 if ( !pDir->pFilename[0] ) | |
872 return 2; | |
873 strcpy(pHeader->pSignature, "LOD"); | |
874 pHeader->LODSize = 100; | |
875 pHeader->uNumIndices = 1; | |
982 | 876 pDir->field_F = 0; |
0 | 877 pDir->uDataSize = 0; |
878 pDir->uOfsetFromSubindicesStart = 288; | |
837 | 879 strcpy(pLODName, lod_name); |
0 | 880 |
881 pFile = fopen(pLODName, "wb+"); | |
882 if (!pFile) | |
883 return 3; | |
837 | 884 fwrite(pHeader,sizeof(LOD::FileHeader), 1, pFile); |
885 fwrite(pDir, sizeof(LOD::Directory), 1, pFile); | |
0 | 886 fclose(pFile); |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
887 pFile = nullptr; |
0 | 888 return 0; |
889 } | |
890 | |
891 //----- (0046153F) -------------------------------------------------------- | |
892 void LOD::File::ResetSubIndices() | |
893 { | |
837 | 894 if ( isFileOpened ) |
0 | 895 { |
837 | 896 pContainerName[0] = 0; |
897 uCurrentIndexDir = 0; | |
898 uOffsetToSubIndex = 0; | |
899 uNumSubDirs = 0; | |
900 uLODDataSize = 0; | |
1583 | 901 free(pSubIndices); |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
902 pSubIndices = nullptr; |
0 | 903 } |
904 } | |
905 | |
906 //----- (00450C8B) -------------------------------------------------------- | |
907 void LODFile_Sprites::DeleteSomeSprites() | |
908 { | |
909 int *v1; // esi@1 | |
910 int *v2; // edi@1 | |
911 | |
912 v1 = (int *)&this->uNumLoadedSprites; | |
913 v2 = &this->field_ECA8; | |
914 DeleteSpritesRange(this->field_ECA8, this->uNumLoadedSprites); | |
915 *v1 = *v2; | |
916 } | |
917 | |
918 //----- (00450CA9) -------------------------------------------------------- | |
919 void LODFile_Sprites::DeleteSpritesRange(int uStartIndex, int uStopIndex) | |
920 { | |
921 if ( this->pHardwareSprites ) | |
922 { | |
923 if ( uStartIndex < uStopIndex ) | |
924 { | |
2415 | 925 for ( int i = uStartIndex; i < uStopIndex; i++ ) |
0 | 926 { |
2415 | 927 this->pSpriteHeaders[i].Release(); |
928 pHardwareSprites[i].Release(); | |
0 | 929 } |
930 } | |
931 } | |
932 else | |
933 { | |
934 if ( uStartIndex < uStopIndex ) | |
935 { | |
2415 | 936 for ( int i = uStartIndex; i < uStopIndex; i++ ) |
937 this->pSpriteHeaders[i].Release(); | |
0 | 938 } |
939 } | |
940 } | |
941 | |
942 //----- (00450D1D) -------------------------------------------------------- | |
943 void LODSprite::Release() | |
944 { | |
945 if ( !(HIBYTE(this->word_1A) & 4) ) | |
946 { | |
1583 | 947 free(this->pDecompressedBytes); |
2415 | 948 free(this->pSpriteLines); |
0 | 949 } |
2415 | 950 this->word_1A = 0; |
951 this->pDecompressedBytes = nullptr; | |
952 this->pSpriteLines = nullptr; | |
953 this->pName[0] = 0; | |
954 this->word_16 = 0; | |
955 this->uPaletteId = 0; | |
956 this->uTexturePitch = 0; | |
957 this->uHeight = 0; | |
958 this->uWidth = 0; | |
959 this->uSpriteSize = 0; | |
0 | 960 } |
961 | |
962 //----- (00450D68) -------------------------------------------------------- | |
963 void Sprite::Release() | |
964 { | |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
965 free((void *)pName); |
0 | 966 pName = nullptr; |
967 | |
968 if (pTextureSurface) | |
969 pTextureSurface->Release(); | |
970 pTextureSurface = nullptr; | |
971 | |
972 if (pTexture) | |
973 pTexture->Release(); | |
974 pTexture = nullptr; | |
975 } | |
976 | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
977 //----- (0040FAEE) -------------------------------------------------------- |
0 | 978 //----- (0040FA2E) -------------------------------------------------------- |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
979 bool LODFile_IconsBitmaps::Load(const char *pLODFilename, const char *pFolderName) |
0 | 980 { |
981 ReleaseAll(); | |
982 | |
983 if (LoadHeader(pLODFilename, 1)) | |
984 return false; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
985 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1458
diff
changeset
|
986 return LoadSubIndices(pFolderName) == 0; |
0 | 987 } |
988 | |
989 //----- (0040FA60) -------------------------------------------------------- | |
990 void LODFile_IconsBitmaps::ReleaseAll() | |
991 { | |
2415 | 992 for( uint i = 0; i < this->uNumLoadedFiles; i++ ) |
0 | 993 { |
2415 | 994 this->pTextures[i].Release(); |
995 if ( this->pHardwareTextures ) | |
0 | 996 { |
2415 | 997 if ( this->pHardwareTextures[i] ) |
0 | 998 { |
2415 | 999 this->pHardwareTextures[i]->Release(); |
1000 this->pHardwareTextures[i] = 0; | |
0 | 1001 } |
2415 | 1002 } |
1003 if ( this->pHardwareSurfaces ) | |
1004 { | |
1005 if ( this->pHardwareSurfaces[i] ) | |
0 | 1006 { |
2415 | 1007 this->pHardwareSurfaces[i]->Release(); |
1008 this->pHardwareSurfaces[i] = 0; | |
0 | 1009 } |
1010 } | |
1011 } | |
2415 | 1012 this->uTexturePacksCount = 0; |
1013 this->uNumPrevLoadedFiles = 0; | |
1014 this->dword_11B84 = 0; | |
1015 this->dword_11B80 = 0; | |
1016 this->uNumLoadedFiles = 0; | |
0 | 1017 } |
1018 | |
1019 //----- (0040F9F0) -------------------------------------------------------- | |
1020 unsigned int LODFile_IconsBitmaps::FindTextureByName(const char *pName) | |
1021 { | |
2415 | 1022 for ( uint i = 0; i < this->uNumLoadedFiles; i++ ) |
0 | 1023 { |
2415 | 1024 if ( !_stricmp(this->pTextures[i].pName, pName) ) |
1025 return i; | |
0 | 1026 } |
2415 | 1027 return -1; |
0 | 1028 } |
1029 | |
1030 //----- (0040F9C5) -------------------------------------------------------- | |
1006 | 1031 void LODFile_IconsBitmaps::SyncLoadedFilesCount() |
1032 { | |
1033 signed int loaded_files; // eax@1 | |
0 | 1034 Texture *pTex; // edx@1 |
1035 | |
1006 | 1036 loaded_files = this->uNumLoadedFiles; |
1037 for ( pTex = &this->pTextures[loaded_files]; !pTex->pName[0]; --pTex ) | |
1038 --loaded_files; | |
1039 if ( loaded_files < (signed int)this->uNumLoadedFiles ) | |
0 | 1040 { |
1006 | 1041 ++loaded_files; |
1042 this->uNumLoadedFiles = loaded_files; | |
0 | 1043 } |
1006 | 1044 |
0 | 1045 } |
1046 | |
1047 //----- (0046249B) -------------------------------------------------------- | |
1048 LODFile_Sprites::~LODFile_Sprites() | |
1049 { | |
1050 if ( this->pHardwareSprites ) | |
1051 { | |
2415 | 1052 for ( int i = 0; i < this->uNumLoadedSprites; ++i ) |
0 | 1053 { |
2415 | 1054 this->pSpriteHeaders[i].Release(); |
1055 this->pHardwareSprites[i].Release(); | |
0 | 1056 } |
1057 } | |
1058 else | |
1059 { | |
2415 | 1060 for ( int i = 0; i < this->uNumLoadedSprites; ++i ) |
1061 this->pSpriteHeaders[i].Release(); | |
0 | 1062 } |
1063 //_eh_vector_destructor_iterator_(v1->pSpriteHeaders, 40, 1500, LODSprite::dtor); | |
1064 //LOD::File::vdtor((LOD::File *)v1); | |
1065 } | |
1066 // 4CC2B4: using guessed type int __stdcall _eh vector destructor iterator_(int, int, int, int); | |
1067 | |
1068 //----- (00462463) -------------------------------------------------------- | |
1069 LODSprite::~LODSprite() | |
1070 { | |
1071 if ( !(HIBYTE(this->word_1A) & 4) ) | |
1072 { | |
1583 | 1073 free(pDecompressedBytes); |
1074 free(pSpriteLines); | |
0 | 1075 } |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
1076 pDecompressedBytes = nullptr; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
1077 pSpriteLines = nullptr; |
0 | 1078 } |
1079 | |
1080 //----- (004623E5) -------------------------------------------------------- | |
1081 LODFile_Sprites::LODFile_Sprites(): | |
1082 LOD::File() | |
1083 { | |
1084 /*_eh_vector_constructor_iterator_( | |
1085 v1->pSpriteHeaders, | |
1086 40, | |
1087 1500, | |
1458 | 1088 (void ( *)(void *))LODSprite::LODSprite, |
1089 (void ( *)(void *))LODSprite::dtor);*/ | |
0 | 1090 field_ECA4 = 0; |
1091 field_ECA0 = 0; | |
1092 pHardwareSprites = 0; | |
2154 | 1093 //can_load_hardware_sprites = 0; |
0 | 1094 field_ECB4 = 0; |
1095 uNumLoadedSprites = 0; | |
1096 } | |
1097 | |
1098 //----- (00462303) -------------------------------------------------------- | |
1099 LODFile_IconsBitmaps::~LODFile_IconsBitmaps() | |
1100 { | |
1101 | |
2415 | 1102 for ( uint i = 0; i < this->uNumLoadedFiles; i++ ) |
0 | 1103 { |
2415 | 1104 this->pTextures[i].Release(); |
1105 if ( this->pHardwareTextures ) | |
0 | 1106 { |
2415 | 1107 if ( this->pHardwareTextures[i] ) |
0 | 1108 { |
2415 | 1109 this->pHardwareTextures[i]->Release(); |
1110 this->pHardwareTextures[i] = 0; | |
0 | 1111 } |
2415 | 1112 } |
1113 if ( this->pHardwareSurfaces ) | |
1114 { | |
1115 if ( this->pHardwareSurfaces[i] ) | |
0 | 1116 { |
2415 | 1117 this->pHardwareSurfaces[i]->Release(); |
1118 this->pHardwareSurfaces[i] = 0; | |
0 | 1119 } |
1120 } | |
1121 } | |
2415 | 1122 free(this->pHardwareSurfaces); |
1123 free(this->pHardwareTextures); | |
1124 free(this->ptr_011BB4); | |
0 | 1125 //LOD::File::vdtor((LOD::File *)v1); |
1126 } | |
1127 | |
1128 //----- (00462272) -------------------------------------------------------- | |
1129 LODFile_IconsBitmaps::LODFile_IconsBitmaps(): | |
1130 LOD::File() | |
1131 { | |
1132 /*v2 = v1->pTextures; | |
1133 v3 = 1000; | |
1134 do | |
1135 { | |
1136 Texture::Texture(v2); | |
1137 ++v2; | |
1138 --v3; | |
1139 } | |
1140 while ( v3 );*/ | |
2415 | 1141 this->uTexturePacksCount = 0; |
1142 this->uNumPrevLoadedFiles = 0; | |
1143 this->dword_11B84 = 0; | |
1144 this->dword_11B80 = 0; | |
1145 this->uNumLoadedFiles = 0; | |
1146 this->dword_011BA4 = 0; | |
1147 //this->can_load_hardware_sprites = 0; | |
1148 this->pHardwareSurfaces = 0; | |
1149 this->pHardwareTextures = 0; | |
1150 this->ptr_011BB4 = 0; | |
2442 | 1151 this->uTextureRedBits = 0; |
1152 this->uTextureGreenBits = 0; | |
1153 this->uTextureBlueBits = 0; | |
0 | 1154 } |
1155 | |
1156 //----- (004621A7) -------------------------------------------------------- | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1157 bool LODWriteableFile::_4621A7()//çàêðûòü è çàãðóçèòü çàïèñûâàåìûé ô-ë(ïðè ñîõðàíåíèè) |
0 | 1158 { |
1159 CloseWriteFile(); | |
1160 return LoadFile(pLODName, 0); | |
1161 } | |
1162 | |
837 | 1163 //----- (00461FD4) ---LODFile_sub_461FD4---text:004632EA -------------------------------------------------- |
1164 int LODWriteableFile::FixDirectoryOffsets() | |
982 | 1165 { |
2208 | 1166 int total_size; // edi@1 |
1167 int temp_offset; // ecx@5 | |
1168 FILE *tmp_file; // eax@9 | |
1169 size_t write_size; // edi@12 | |
1170 int result; | |
1171 char Filename[256]; // [sp+Ch] [bp-228h]@9 | |
1172 char NewFilename[256]; // [sp+10Ch] [bp-128h]@15 | |
1173 int i; | |
0 | 1174 |
2208 | 1175 total_size = 0; |
1176 for ( i = 0; i < uNumSubDirs; i++ ) | |
1177 total_size += pSubIndices[i].uDataSize; | |
1178 //fix offsets | |
1179 temp_offset = sizeof(LOD::Directory) * uNumSubDirs; | |
1180 for ( i = 0; i < uNumSubDirs; i++ ) | |
1181 { | |
1182 pSubIndices[i].uOfsetFromSubindicesStart=temp_offset; | |
1183 temp_offset+=pSubIndices[i].uDataSize; | |
1184 } | |
1185 strcpy(Filename, "lod.tmp"); | |
1186 tmp_file = fopen(Filename, "wb+"); | |
0 | 1187 |
2208 | 1188 if ( tmp_file ) |
1189 { | |
1190 fwrite((const void *)&header, sizeof(LOD::FileHeader), 1, tmp_file); | |
982 | 1191 |
2208 | 1192 LOD::Directory Lindx; |
1193 strcpy(Lindx.pFilename, "chapter"); | |
1194 Lindx.uOfsetFromSubindicesStart = uOffsetToSubIndex; //10h 16 | |
1195 Lindx.uDataSize = sizeof(LOD::Directory) * uNumSubDirs + total_size; //14h 20 | |
1196 Lindx.dword_000018 = 0; //18h 24 | |
1197 Lindx.uNumSubIndices = uNumSubDirs; //1ch 28 | |
1198 Lindx.word_00001E = 0; // 1Eh 30 | |
1199 fwrite(&Lindx, sizeof(LOD::Directory), 1, tmp_file); | |
1200 fwrite(pSubIndices, sizeof(LOD::Directory), uNumSubDirs, tmp_file); | |
1201 fseek(pOutputFileHandle, 0, 0); | |
1202 if ( total_size > 0 ) | |
1203 { | |
1204 do | |
1205 { | |
1206 write_size = uIOBufferSize; | |
1207 if ( total_size <= (signed int)uIOBufferSize ) | |
1208 write_size =total_size; | |
1209 fread(pIOBuffer, 1, write_size, pOutputFileHandle); | |
1210 fwrite(pIOBuffer, 1, write_size, tmp_file); | |
1211 total_size -= write_size; | |
1212 } | |
1213 while ( total_size > 0 ); | |
0 | 1214 } |
2208 | 1215 strcpy(NewFilename, (const char *)&pLODName); |
1216 fclose(tmp_file); | |
1217 fclose(pOutputFileHandle); | |
1218 CloseWriteFile(); | |
1219 remove("lodapp.tmp"); | |
1220 remove(NewFilename); | |
1221 rename(Filename, NewFilename); | |
1222 CloseWriteFile(); | |
1223 LoadFile( (const char *)&pLODName, 0); | |
1224 result = 0; | |
1225 } | |
1226 else | |
1227 result = 5; | |
1228 return result; | |
1229 } | |
0 | 1230 |
1231 //----- (00461F71) -------------------------------------------------------- | |
1232 bool LOD::File::AppendDirectory(LOD::Directory *pDir, const void *pData) | |
1233 { | |
1545 | 1234 Assert(uNumSubDirs < 299); |
982 | 1235 |
1236 memcpy(&pSubIndices[uNumSubDirs++], pDir, sizeof(LOD::Directory)); | |
1237 fwrite(pData, 1, pDir->uDataSize, pOutputFileHandle); | |
1238 return true; | |
0 | 1239 } |
1240 | |
1241 //----- (00461F1E) -------------------------------------------------------- | |
1242 int LODWriteableFile::CreateTempFile() | |
1243 { | |
982 | 1244 if (!isFileOpened) |
1245 return 1; | |
1246 | |
1247 if (pIOBuffer && uIOBufferSize ) | |
0 | 1248 { |
982 | 1249 uCurrentIndexDir = 0; |
1250 uNumSubDirs = 0; | |
1251 pOutputFileHandle = fopen("lodapp.tmp", "wb+"); | |
1252 return pOutputFileHandle ? 1 : 7; | |
0 | 1253 } |
1254 else | |
982 | 1255 return 5; |
0 | 1256 } |
1257 | |
1258 //----- (00461EE9) -------------------------------------------------------- | |
1259 void LODWriteableFile::CloseWriteFile() | |
1260 { | |
1261 if (isFileOpened) | |
1262 { | |
1263 pContainerName[0] = 0; | |
1264 uCurrentIndexDir = 0; | |
1265 _6A0CA8_lod_unused = 0; | |
1266 | |
1267 isFileOpened = false; | |
1268 fflush(pFile); | |
1269 fclose(pFile); | |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
1270 pFile = nullptr; |
0 | 1271 } |
2208 | 1272 //else |
1273 //__debugbreak(); | |
0 | 1274 } |
1275 // 6A0CA8: using guessed type int 6A0CA8_lod_unused; | |
1276 | |
1277 | |
1278 //----- (00461B48) -------------------------------------------------------- | |
1279 unsigned int LODWriteableFile::Write(const LOD::Directory *pDir, const void *pDirData, int a4) | |
982 | 1280 { |
2174 | 1281 char Filename[256]; |
1282 char NewFilename[256]; | |
1283 FILE *tmp_file; | |
2175 | 1284 int comp_res; |
2174 | 1285 bool bRewrite_data; |
1286 int offset_to_data; | |
1287 int total_data_size; | |
1288 int size_correction; | |
1289 int to_copy_size; | |
1290 int read_size; | |
1291 int curr_position; | |
1292 int insert_index; | |
0 | 1293 |
2174 | 1294 //insert new data in sorted index lod file |
1295 bRewrite_data = false; | |
1296 insert_index = -1; | |
2175 | 1297 if ( !isFileOpened )//sometimes gives crash |
2174 | 1298 return 1; |
1299 if ( !pSubIndices ) | |
1300 return 2; | |
1301 if ( !pIOBuffer || !uIOBufferSize ) | |
1302 return 3; | |
982 | 1303 |
2174 | 1304 for ( int i = 0; i < uNumSubDirs; i++ ) |
1305 { | |
2175 | 1306 comp_res = _stricmp(pSubIndices[i].pFilename, pDir->pFilename); |
1307 if( comp_res == 0 ) | |
2174 | 1308 { |
1309 insert_index = i; | |
1310 if ( a4 == 0 ) | |
1311 { | |
1312 bRewrite_data = true; | |
1313 break; | |
1314 } | |
1315 if ( a4 == 1 ) | |
1316 { | |
2175 | 1317 if ( pSubIndices[i].uNumSubIndices < pDir->uNumSubIndices ) |
837 | 1318 { |
2175 | 1319 if ( pSubIndices[i].word_00001E < pDir->word_00001E ) |
2174 | 1320 return 4; |
837 | 1321 } |
2174 | 1322 else |
2178 | 1323 bRewrite_data = true; |
2174 | 1324 break; |
1325 } | |
1326 if ( a4 == 2 ) | |
1327 return 4; | |
1328 } | |
2175 | 1329 else if ( comp_res > 0 ) |
2174 | 1330 { |
1331 if ( insert_index == -1 ) | |
1332 { | |
2175 | 1333 insert_index=i; |
2174 | 1334 break; |
1335 } | |
1336 } | |
1337 } | |
1338 strcpy(Filename, "lod.tmp"); | |
1339 tmp_file = fopen(Filename, "wb+"); | |
1340 if ( !tmp_file ) | |
1341 return 5; | |
1342 if (!bRewrite_data) | |
2177
e1199b655710
pParty->vPrevPosition.y = 1816; and pParty->vPrevPosition.z = 0;
Ritor1
parents:
2176
diff
changeset
|
1343 size_correction = 0; |
2174 | 1344 else |
2177
e1199b655710
pParty->vPrevPosition.y = 1816; and pParty->vPrevPosition.z = 0;
Ritor1
parents:
2176
diff
changeset
|
1345 size_correction = pSubIndices[insert_index].uDataSize; |
837 | 1346 |
2174 | 1347 //create chapter index |
1348 LOD::Directory Lindx; | |
1349 strcpy(Lindx.pFilename, "chapter"); | |
1350 Lindx.dword_000018 = 0; | |
1351 Lindx.word_00001E = 0; | |
1352 Lindx.uNumSubIndices = uNumSubDirs; | |
2175 | 1353 Lindx.uOfsetFromSubindicesStart = sizeof(LOD::FileHeader) + sizeof(LOD::Directory); |
1354 total_data_size = uLODDataSize + pDir->uDataSize-size_correction; | |
2174 | 1355 if (!bRewrite_data) |
1356 { | |
2175 | 1357 total_data_size += sizeof(LOD::Directory); |
2174 | 1358 Lindx.uNumSubIndices++; |
1359 } | |
837 | 1360 |
2175 | 1361 Lindx.uDataSize = total_data_size; |
2174 | 1362 uNumSubDirs = Lindx.uNumSubIndices; |
1363 //move indexes +1 after insert point | |
2178 | 1364 if ( !bRewrite_data && (insert_index < uNumSubDirs) )//ïåðåçàïèñûâàíèå ôàéëîâ äëÿ îñâîáîæäåíèÿ ìåñòà äëÿ íîâîãî ô-ëà |
2174 | 1365 { |
2175 | 1366 for( int i = uNumSubDirs; i > insert_index; --i ) |
2420 | 1367 memcpy(&pSubIndices[i], &pSubIndices[i - 1], sizeof(LOD::Directory)); //Uninitialized memory access |
2174 | 1368 } |
1369 //insert | |
2178 | 1370 memcpy(&pSubIndices[insert_index], pDir, sizeof(LOD::Directory));//çàïèñàòü òåêóùèé ôàéë |
2174 | 1371 //correct offsets to data |
1372 if (uNumSubDirs > 0) | |
1373 { | |
2175 | 1374 offset_to_data = sizeof(LOD::Directory) * uNumSubDirs; |
1375 for ( int i = 0; i < uNumSubDirs; i++ ) | |
2174 | 1376 { |
2175 | 1377 pSubIndices[i].uOfsetFromSubindicesStart = offset_to_data; |
1378 offset_to_data += pSubIndices[i].uDataSize; | |
2174 | 1379 } |
1380 } | |
1381 | |
1382 //construct lod file with added data | |
2175 | 1383 fwrite(&header, sizeof(LOD::FileHeader), 1, tmp_file); |
2174 | 1384 fwrite(&Lindx, sizeof(LOD::Directory), 1, tmp_file); |
1385 fseek(pFile,Lindx.uOfsetFromSubindicesStart, SEEK_SET); | |
1386 fwrite(pSubIndices, sizeof(LOD::Directory), uNumSubDirs, tmp_file); | |
1387 | |
1388 offset_to_data = sizeof(LOD::Directory) * uNumSubDirs; | |
1389 if ( !bRewrite_data ) | |
1390 offset_to_data -= sizeof(LOD::Directory); | |
837 | 1391 |
2174 | 1392 fseek(pFile, offset_to_data, SEEK_CUR); |
1393 //copy from open lod to temp lod first half | |
2175 | 1394 to_copy_size = pSubIndices[insert_index].uOfsetFromSubindicesStart - pSubIndices[0].uOfsetFromSubindicesStart; |
1395 while(to_copy_size > 0) | |
2174 | 1396 { |
1397 read_size = uIOBufferSize; | |
1398 if ( to_copy_size <= uIOBufferSize ) | |
1399 read_size = to_copy_size; | |
1400 fread(pIOBuffer, 1, read_size, pFile); | |
1401 fwrite(pIOBuffer, 1, read_size, tmp_file); | |
2175 | 1402 to_copy_size -= read_size; |
2174 | 1403 } |
1404 // add container data | |
2420 | 1405 fwrite(pDirData, 1, pDir->uDataSize, tmp_file);// Uninitialized memory access(tmp_file) |
2174 | 1406 if ( bRewrite_data ) |
1407 fseek(pFile,size_correction , SEEK_CUR); | |
1408 | |
1409 //add remainng data last half | |
1410 curr_position = ftell(pFile); | |
1411 fseek(pFile, 0, SEEK_END); | |
1412 to_copy_size = ftell(pFile) - curr_position; | |
1413 fseek(pFile, curr_position, SEEK_SET); | |
1414 while ( to_copy_size > 0 ) | |
1415 { | |
1416 read_size = uIOBufferSize; | |
1417 if ( to_copy_size <= uIOBufferSize ) | |
1418 read_size = to_copy_size; | |
1419 fread(pIOBuffer, 1, read_size, pFile); | |
1420 fwrite(pIOBuffer, 1, read_size, tmp_file); | |
2175 | 1421 to_copy_size -= read_size; |
2174 | 1422 } |
1423 //replace old file by new with added data | |
2208 | 1424 strcpy(NewFilename, (const char *)&pLODName); |
2174 | 1425 fclose(tmp_file); |
2208 | 1426 fclose(pFile); |
1427 CloseWriteFile(); | |
2174 | 1428 remove(NewFilename); |
1429 rename(Filename, NewFilename); | |
1430 CloseWriteFile(); | |
1431 //reload new | |
2208 | 1432 LoadFile((const char *)&pLODName, 0);//isFileOpened == true, next file |
2174 | 1433 return 0; |
1434 } | |
0 | 1435 |
1436 //----- (00461A43) -------------------------------------------------------- | |
1437 bool LODWriteableFile::LoadFile(const char *pFilename, bool bWriting) | |
982 | 1438 { |
1439 if (bWriting & 1) | |
1440 pFile = fopen(pFilename, "rb"); | |
1441 else | |
1442 pFile = fopen(pFilename, "rb+"); | |
1443 if (!pFile) | |
2191 | 1444 { |
1445 __debugbreak(); | |
2179 | 1446 return false;// âîçìîæíî ôàéë íå çàêðûò, ïîýòîìó íå îòêðûâàåòñÿ |
2191 | 1447 } |
837 | 1448 |
982 | 1449 strcpy(pLODName, pFilename); |
1450 fread(&header, sizeof(LOD::FileHeader), 1, pFile); | |
1451 | |
1452 LOD::Directory lod_indx; | |
1453 fread( &lod_indx,sizeof(LOD::Directory), 1, pFile); | |
0 | 1454 |
982 | 1455 fseek(pFile, 0, SEEK_SET); |
1456 isFileOpened = true; | |
1457 strcpy(pContainerName, "chapter"); | |
1458 uCurrentIndexDir = 0; | |
1459 uLODDataSize = lod_indx.uDataSize; | |
1460 uNumSubDirs = lod_indx.uNumSubIndices; | |
1545 | 1461 Assert(uNumSubDirs <= 300); |
0 | 1462 |
982 | 1463 uOffsetToSubIndex = lod_indx.uOfsetFromSubindicesStart; |
1464 fseek(pFile, uOffsetToSubIndex, SEEK_SET); | |
837 | 1465 |
982 | 1466 fread(pSubIndices, sizeof(LOD::Directory), uNumSubDirs, pFile); |
1467 return true; | |
1468 } | |
0 | 1469 |
1470 //----- (00461A11) -------------------------------------------------------- | |
1471 void LOD::File::FreeSubIndexAndIO() | |
1472 { | |
1583 | 1473 free(pSubIndices); |
1474 free(pIOBuffer);// delete [] pIOBuffer; | |
0 | 1475 pIOBuffer = nullptr; |
1476 pSubIndices = nullptr; | |
1477 } | |
1478 | |
1479 //----- (00461954) -------------------------------------------------------- | |
1480 void LOD::File::AllocSubIndicesAndIO(unsigned int uNumSubIndices, unsigned int uBufferSize) | |
1481 { | |
1482 if (pSubIndices) | |
1483 { | |
1484 MessageBoxA(0, "Attempt to reset a LOD subindex!", "MM6", MB_ICONEXCLAMATION); | |
1583 | 1485 free(pSubIndices); |
0 | 1486 pSubIndices = nullptr; |
1487 } | |
1583 | 1488 pSubIndices =(LOD::Directory *)malloc(32 * uNumSubIndices); |
837 | 1489 if (pIOBuffer) |
0 | 1490 { |
1491 MessageBoxA(0, "Attempt to reset a LOD IObuffer!", "MM6", MB_ICONEXCLAMATION); | |
1583 | 1492 free(pIOBuffer); |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
1493 pIOBuffer = nullptr; |
0 | 1494 uIOBufferSize = 0; |
1495 } | |
1496 if ( uBufferSize ) | |
1497 { | |
1583 | 1498 pIOBuffer = (unsigned __int8 *)malloc(uBufferSize); |
0 | 1499 uIOBufferSize = uBufferSize; |
1500 } | |
1501 } | |
1502 | |
1503 //----- (0046188A) -------------------------------------------------------- | |
1504 int LOD::File::LoadSubIndices(const char *pContainer) | |
1505 { | |
1506 unsigned int uDir; // edi@1 | |
415 | 1507 LOD::Directory *curr_index; // eax@7 |
0 | 1508 |
1509 ResetSubIndices(); | |
1510 uDir = 0; | |
415 | 1511 |
837 | 1512 for (uDir=0; uDir <header.uNumIndices;++uDir) |
2415 | 1513 { |
1514 if (!_stricmp(pContainer, pRoot[uDir].pFilename)) | |
1515 { | |
1516 strcpy(pContainerName, pContainer); | |
1517 uCurrentIndexDir = uDir; | |
1518 curr_index = (LOD::Directory *)&pRoot[uDir]; | |
1519 uOffsetToSubIndex = curr_index->uOfsetFromSubindicesStart ; | |
1520 uNumSubDirs = curr_index->uNumSubIndices;// *(_WORD *)(v8 + 28); | |
1521 fseek( pFile, uOffsetToSubIndex, SEEK_SET); | |
1522 pSubIndices = (LOD::Directory *)malloc(sizeof(LOD::Directory)*(uNumSubDirs + 5)); | |
415 | 1523 |
2415 | 1524 if ( pSubIndices) |
1525 fread( pSubIndices, sizeof(LOD::Directory), uNumSubDirs, pFile); | |
1526 return 0; | |
1527 } | |
1528 } | |
1529 return 3; | |
0 | 1530 } |
1531 | |
1532 //----- (004617D5) -------------------------------------------------------- | |
1533 bool LOD::File::LoadHeader(const char *pFilename, bool bWriting) | |
1534 { | |
1535 const char *v6; // [sp-4h] [bp-Ch]@4 | |
1536 | |
1537 if ( this->isFileOpened ) | |
1538 Close(); | |
1539 if ( bWriting & 1 ) | |
1540 v6 = "rb"; | |
1541 else | |
1542 v6 = "rb+"; | |
837 | 1543 |
1544 pFile = fopen(pFilename, v6); | |
1545 if ( pFile ) | |
0 | 1546 { |
837 | 1547 strcpy(pLODName, pFilename); |
2191 | 1548 fread(&header, sizeof(LOD::FileHeader), 1, pFile); |
1583 | 1549 pRoot = (LOD::Directory *)malloc(160); |
837 | 1550 if ( pRoot ) |
0 | 1551 { |
837 | 1552 fread(pRoot, sizeof(LOD::Directory), header.uNumIndices, pFile); |
1553 fseek(pFile, 0, SEEK_SET); | |
2165 | 1554 isFileOpened = true; |
0 | 1555 return false; |
1556 } | |
1557 else | |
1558 { | |
837 | 1559 fclose(pFile); |
0 | 1560 return true; |
1561 } | |
1562 } | |
1563 return true; | |
1564 } | |
1565 | |
1566 //----- (00461790) -------------------------------------------------------- | |
1567 LOD::File::~File() | |
1568 { | |
1569 if ( this->isFileOpened ) | |
1570 { | |
1571 fclose(this->pFile); | |
2415 | 1572 free(this->pSubIndices); |
0 | 1573 } |
1574 } | |
1575 | |
1576 //----- (0046175B) -------------------------------------------------------- | |
1577 LOD::File::File(): | |
1578 pRoot(nullptr), | |
1579 isFileOpened(false) | |
1580 { | |
1581 memset(pLODName, 0, 256); | |
1582 memset(pContainerName, 0, 16); | |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
1583 this->pFile = nullptr; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
1584 this->pSubIndices = nullptr; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2353
diff
changeset
|
1585 this->pIOBuffer = nullptr; |
2165 | 1586 this->isFileOpened = false; |
1587 this->uIOBufferSize = 0; | |
0 | 1588 Close(); |
1589 } | |
1590 | |
1591 //----- (0046172B) -------------------------------------------------------- | |
1592 LOD::Directory::Directory() | |
1593 { | |
1594 memset(pFilename, 0, 16); | |
1595 this->pFilename[0] = 0; | |
1596 this->uOfsetFromSubindicesStart = 0; | |
1597 this->uDataSize = 0; | |
1598 this->uNumSubIndices = 0; | |
1599 this->dword_000018 = 0; | |
1600 this->word_00001E = 0; | |
1601 } | |
1602 | |
1603 //----- (0046165E) -------------------------------------------------------- | |
1604 int LOD::File::CalcIndexFast(int startIndex, int maxIndex, const char *pContainerName) | |
1605 { | |
2415 | 1606 int pCurrent_position; // esi@1 |
0 | 1607 int v5; // ebx@2 |
1608 int result; // eax@2 | |
1609 | |
2415 | 1610 pCurrent_position = startIndex; |
0 | 1611 while ( 1 ) // binary search in LOD indices |
1612 { | |
2415 | 1613 |
0 | 1614 while ( 1 ) |
1615 { | |
2415 | 1616 v5 = maxIndex - pCurrent_position; |
1617 result = _stricmp(pContainerName, (const char *)(&this->pSubIndices[(maxIndex - pCurrent_position) / 2] + pCurrent_position)); | |
1618 if ( !_stricmp(pContainerName, (const char *)(&this->pSubIndices[(maxIndex - pCurrent_position) / 2] + pCurrent_position)) ) | |
1619 _6A0CA4_lod_binary_search = (maxIndex - pCurrent_position) / 2 + pCurrent_position; | |
1620 if ( pCurrent_position == maxIndex ) | |
1621 { | |
1622 _6A0CA4_lod_binary_search = -1; | |
1623 return result; | |
1624 } | |
1625 if ( result < 0 )//ïåðâàÿ ñòðîêà ìåíüøå âòîðîé | |
0 | 1626 break; |
1627 if ( v5 <= 4 ) | |
1628 { | |
2415 | 1629 for ( int i = pCurrent_position; i < maxIndex; ++i ) |
0 | 1630 { |
2415 | 1631 result = _stricmp(pContainerName, this->pSubIndices[i].pFilename); |
1632 if ( !_stricmp(pContainerName, this->pSubIndices[i].pFilename) ) | |
0 | 1633 { |
2415 | 1634 _6A0CA4_lod_binary_search = i; |
1635 return 0;//ñòðîêè ðîâíû | |
0 | 1636 } |
1637 } | |
1638 _6A0CA4_lod_binary_search = -1; | |
1639 return result; | |
1640 } | |
2415 | 1641 pCurrent_position += (maxIndex - pCurrent_position) / 2; |
0 | 1642 } |
2415 | 1643 |
0 | 1644 if ( v5 <= 4 ) |
1645 break; | |
2415 | 1646 maxIndex = (maxIndex - pCurrent_position) / 2 + pCurrent_position; |
0 | 1647 } |
2415 | 1648 |
1649 for (int i = pCurrent_position; i < maxIndex; ++i) | |
0 | 1650 { |
2415 | 1651 result = _stricmp(pContainerName, this->pSubIndices[i].pFilename); |
1652 if ( !_stricmp(pContainerName, this->pSubIndices[i].pFilename) ) | |
1653 { | |
1654 _6A0CA4_lod_binary_search = i; | |
1655 return 0; | |
1656 } | |
0 | 1657 } |
2415 | 1658 _6A0CA4_lod_binary_search = -1; |
0 | 1659 return result; |
1660 } | |
1661 // 6A0CA4: using guessed type int _6A0CA4_lod_binary_search; | |
1662 | |
1663 //----- (0046161C) -------------------------------------------------------- | |
1664 bool LOD::File::DoesContainerExist(const char *pContainer) | |
1665 { | |
2415 | 1666 for ( int i = 0; i < (signed int)this->uNumSubDirs; ++i ) |
0 | 1667 { |
2415 | 1668 if ( !_stricmp(pContainer, this->pSubIndices[i].pFilename) ) |
1669 return 1; | |
0 | 1670 } |
2415 | 1671 return 0; |
0 | 1672 } |
1673 | |
1674 //----- (00461397) -------------------------------------------------------- | |
1675 int LODFile_Sprites::_461397() | |
1676 { | |
2415 | 1677 this->field_ECA8 = this->uNumLoadedSprites; |
1678 if ( this->uNumLoadedSprites < this->field_ECA0 ) | |
1679 this->field_ECA8 = this->field_ECA0; | |
1680 if ( this->field_ECA0 < this->field_ECA4 ) | |
1681 field_ECA0 = this->field_ECA4; | |
1682 return this->uNumLoadedSprites; | |
0 | 1683 } |
1684 | |
1685 //----- (00461580) -------------------------------------------------------- | |
837 | 1686 FILE *LOD::File::FindContainer(const char *pContainer_Name, bool bLinearSearch) |
0 | 1687 { |
1688 if (!isFileOpened) | |
1689 return 0; | |
1690 | |
1691 if (bLinearSearch) | |
1692 { | |
837 | 1693 for (uint i = 0; i < uNumSubDirs; ++i) |
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1104
diff
changeset
|
1694 if (!_stricmp(pContainer_Name, pSubIndices[i].pFilename)) |
0 | 1695 { |
2415 | 1696 fseek(pFile, uOffsetToSubIndex + pSubIndices[i].uOfsetFromSubindicesStart, SEEK_SET); |
0 | 1697 return pFile; |
1698 } | |
1699 return nullptr; | |
1700 } | |
1701 else | |
1702 { | |
837 | 1703 CalcIndexFast(0, uNumSubDirs, pContainer_Name); |
0 | 1704 if ( _6A0CA4_lod_binary_search < 0 ) |
1705 return 0; | |
2415 | 1706 fseek(pFile, uOffsetToSubIndex + pSubIndices[_6A0CA4_lod_binary_search].uOfsetFromSubindicesStart, SEEK_SET); |
0 | 1707 return pFile; |
1708 } | |
1709 } | |
1710 | |
1711 //----- (0041097D) -------------------------------------------------------- | |
1712 void LODFile_IconsBitmaps::SetupPalettes(unsigned int uTargetRBits, unsigned int uTargetGBits, unsigned int uTargetBBits) | |
1713 { | |
1714 FILE *File; // [sp+50h] [bp-4h]@7 | |
1715 | |
2415 | 1716 if ( this->uTextureRedBits != uTargetRBits |
1717 || this->uTextureGreenBits != uTargetGBits | |
2420 | 1718 || this->uTextureBlueBits != uTargetBBits ) //Uninitialized memory access |
0 | 1719 { |
2415 | 1720 this->uTextureRedBits = uTargetRBits; |
1721 this->uTextureGreenBits = uTargetGBits; | |
1722 this->uTextureBlueBits = uTargetBBits; | |
1723 for ( uint i = 0; i < this->uNumLoadedFiles; ++i ) | |
0 | 1724 { |
2415 | 1725 Texture DstBuf; // [sp+4h] [bp-50h]@6 |
1726 //Texture::Texture(&DstBuf); | |
1727 if ( this->pTextures[i].pPalette16 ) | |
1728 { | |
1729 File = FindContainer((const char *)this->pTextures[i].pName, 0); | |
1730 if ( File ) | |
0 | 1731 { |
2415 | 1732 fread(&DstBuf, 1, 0x30u, File); |
1733 fseek(File, DstBuf.uTextureSize, 1); | |
1734 for ( uint j = 0; j < 256; ++j ) | |
0 | 1735 { |
2415 | 1736 fread((char *)&uTargetRBits + 3, 1, 1, File); |
1737 fread((char *)&uTargetGBits + 3, 1, 1, File); | |
1738 fread((char *)&uTargetBBits + 3, 1, 1, File); | |
1739 this->pTextures[i].pPalette16[j] = (BYTE3(uTargetRBits) >> (8 - LOBYTE(this->uTextureRedBits))) | |
1740 << (LOBYTE(this->uTextureGreenBits) + LOBYTE(this->uTextureBlueBits)); | |
1741 this->pTextures[i].pPalette16[j] |= (BYTE3(uTargetGBits) >> (8 - LOBYTE(this->uTextureGreenBits))) | |
1742 << this->uTextureBlueBits; | |
1743 this->pTextures[i].pPalette16[j] |= BYTE3(uTargetBBits) >> (8 - LOBYTE(this->uTextureBlueBits)); | |
0 | 1744 } |
1745 } | |
1746 } | |
1747 } | |
1748 } | |
1749 } | |
1750 | |
1751 //----- (0041088B) -------------------------------------------------------- | |
1752 void *LOD::File::LoadRaw(const char *pContainer, int a3) | |
1753 { | |
2415 | 1754 FILE *File; // eax@1 |
0 | 1755 void *v7; // ebx@7 |
1756 void *v8; // edi@7 | |
1757 Texture DstBuf; // [sp+Ch] [bp-4Ch]@1 | |
1758 | |
2415 | 1759 File = FindContainer(pContainer, 0); |
1760 if ( !File ) | |
1545 | 1761 Error("Unable to load %s", pContainer); |
1762 | |
2415 | 1763 fread(&DstBuf, 1, 0x30u, File); |
0 | 1764 if ( DstBuf.uDecompressedSize ) |
1765 { | |
1766 if ( a3 ) | |
2415 | 1767 v7 = malloc(DstBuf.uDecompressedSize+1); |
0 | 1768 else |
2415 | 1769 v7 = malloc(DstBuf.uDecompressedSize+1); |
1583 | 1770 v8 = malloc(DstBuf.uTextureSize+1); |
2415 | 1771 fread(v8, 1, DstBuf.uTextureSize, File); |
0 | 1772 zlib::MemUnzip(v7, &DstBuf.uDecompressedSize, v8, DstBuf.uTextureSize); |
1773 DstBuf.uTextureSize = DstBuf.uDecompressedSize; | |
1583 | 1774 free(v8); |
0 | 1775 } |
1776 else | |
1777 { | |
1778 if ( a3 ) | |
2415 | 1779 v7 = malloc(DstBuf.uTextureSize+1); |
0 | 1780 else |
2415 | 1781 v7 = malloc(DstBuf.uTextureSize+1); |
1782 fread(v7, 1, DstBuf.uTextureSize, File); | |
0 | 1783 } |
1784 return v7; | |
1785 } | |
1786 | |
1787 //----- (00410522) -------------------------------------------------------- | |
1788 int LODFile_IconsBitmaps::_410522(Texture *pDst, const char *pContainer, unsigned int uTextureType) | |
1789 { | |
1790 void *v9; // ST2C_4@6 | |
1791 int v15; // ecx@12 | |
1792 int v16; // ecx@12 | |
1793 int v17; // eax@12 | |
1794 signed int v21; // ecx@18 | |
1795 signed int v22; // ecx@23 | |
1796 FILE *File; // [sp+68h] [bp-4h]@1 | |
2415 | 1797 unsigned int uTargetRBits; |
1798 unsigned int uTargetGBits; | |
1799 unsigned int uTargetBBits; | |
0 | 1800 |
1801 File = FindContainer(pContainer, 0); | |
1802 if ( !File ) | |
1803 { | |
1804 File = FindContainer("pending", 0); | |
1805 if ( !File ) | |
1545 | 1806 Error("Can't find %s!", pContainer); |
2415 | 1807 } |
1545 | 1808 |
2415 | 1809 fread(pDst, 1, 0x30u, File); |
1810 strcpy(pDst->pName, pContainer); | |
1811 pDst->pLevelOfDetail0_prolly_alpha_mask = 0; | |
1812 if ( pDst->uDecompressedSize ) | |
0 | 1813 { |
2415 | 1814 pDst->pLevelOfDetail0_prolly_alpha_mask = (unsigned __int8 *)malloc(pDst->uDecompressedSize); |
1815 v9 = malloc(pDst->uTextureSize); | |
1816 fread((void *)v9, 1, (size_t)pDst->uTextureSize, File); | |
1817 zlib::MemUnzip(pDst->pLevelOfDetail0_prolly_alpha_mask, &pDst->uDecompressedSize, v9, pDst->uTextureSize); | |
1818 pDst->uTextureSize = pDst->uDecompressedSize; | |
0 | 1819 free(v9); |
1820 } | |
1821 else | |
1822 { | |
2415 | 1823 pDst->pLevelOfDetail0_prolly_alpha_mask = (unsigned __int8 *)malloc(0); |
1824 fread(pDst->pLevelOfDetail0_prolly_alpha_mask, 1, (size_t)pDst->uTextureSize, File); | |
0 | 1825 } |
2415 | 1826 pDst->pPalette16 = 0; |
1827 pDst->pPalette24 = 0; | |
0 | 1828 if ( uTextureType == 1 ) |
1829 { | |
2415 | 1830 pDst->pPalette24 = (unsigned __int8 *)malloc(0x300u); |
1831 fread(pDst->pPalette24, 1, 0x300u, File); | |
0 | 1832 } |
2415 | 1833 else if ( uTextureType == 2 ) |
0 | 1834 { |
2415 | 1835 pDst->pPalette16 = (unsigned __int16 *)malloc(0x400u); |
1836 for ( uint i = 0; i < 256; ++i ) | |
1837 { | |
1838 fread((char *)&uTargetRBits + 3, 1, 1, File); | |
1839 fread((char *)&uTargetGBits + 3, 1, 1, File); | |
1840 fread((char *)&uTargetBBits + 3, 1, 1, File); | |
1841 pDst->pPalette16[i] = (unsigned __int8)(BYTE3(uTargetRBits) >> (8 - LOBYTE(this->uTextureRedBits))) | |
1842 << (LOBYTE(this->uTextureBlueBits) + LOBYTE(this->uTextureGreenBits)); | |
1843 pDst->pPalette16[i] += (unsigned __int8)(BYTE3(uTargetGBits) >> (8 - LOBYTE(this->uTextureGreenBits))) | |
1844 << this->uTextureBlueBits; | |
1845 pDst->pPalette16[i] += (unsigned __int8)(BYTE3(uTargetBBits) >> (8 - LOBYTE(this->uTextureBlueBits))); | |
1846 } | |
0 | 1847 } |
2415 | 1848 |
1849 if ( pDst->pBits & 2 ) | |
0 | 1850 { |
2415 | 1851 v15 = (int)&pDst->pLevelOfDetail0_prolly_alpha_mask[pDst->uSizeOfMaxLevelOfDetail]; |
1852 pDst->pLevelOfDetail1 = (unsigned __int8 *)v15; | |
1853 v16 = (pDst->uSizeOfMaxLevelOfDetail >> 2) + v15; | |
1854 pDst->pLevelOfDetail2 = (unsigned __int8 *)v16; | |
1855 v17 = v16 + (pDst->uSizeOfMaxLevelOfDetail >> 4); | |
0 | 1856 } |
1857 else | |
1858 { | |
1859 v17 = 0; | |
2415 | 1860 pDst->pLevelOfDetail2 = 0; |
1861 pDst->pLevelOfDetail1 = 0; | |
0 | 1862 } |
2415 | 1863 pDst->pLevelOfDetail3 = (unsigned __int8 *)v17; |
0 | 1864 v21 = 1; |
2415 | 1865 while ( 1 << v21 != pDst->uTextureWidth ) |
0 | 1866 { |
1867 ++v21; | |
1868 if ( v21 >= 15 ) | |
1869 goto LABEL_23; | |
1870 } | |
2415 | 1871 pDst->uWidthLn2 = v21; |
0 | 1872 LABEL_23: |
1873 v22 = 1; | |
2415 | 1874 while ( 1 << v22 != pDst->uTextureHeight ) |
0 | 1875 { |
1876 ++v22; | |
1877 if ( v22 >= 15 ) | |
1878 goto LABEL_28; | |
1879 } | |
2415 | 1880 pDst->uHeightLn2 = v22; |
0 | 1881 LABEL_28: |
2415 | 1882 switch ( pDst->uWidthLn2 ) |
0 | 1883 { |
1884 case 2: | |
2415 | 1885 pDst->uWidthMinus1 = 3; |
0 | 1886 break; |
1887 case 3: | |
2415 | 1888 pDst->uWidthMinus1 = 7; |
0 | 1889 break; |
1890 case 4: | |
2415 | 1891 pDst->uWidthMinus1 = 15; |
0 | 1892 break; |
1893 case 5: | |
2415 | 1894 pDst->uWidthMinus1 = 31; |
0 | 1895 break; |
1896 case 6: | |
2415 | 1897 pDst->uWidthMinus1 = 63; |
0 | 1898 break; |
1899 case 7: | |
2415 | 1900 pDst->uWidthMinus1 = 127; |
0 | 1901 break; |
1902 case 8: | |
2415 | 1903 pDst->uWidthMinus1 = 255; |
0 | 1904 break; |
1905 case 9: | |
2415 | 1906 pDst->uWidthMinus1 = 511; |
0 | 1907 break; |
1908 case 10: | |
2415 | 1909 pDst->uWidthMinus1 = 1023; |
0 | 1910 break; |
1911 case 11: | |
2415 | 1912 pDst->uWidthMinus1 = 2047; |
0 | 1913 break; |
1914 case 12: | |
2415 | 1915 pDst->uWidthMinus1 = 4095; |
0 | 1916 break; |
1917 default: | |
1918 break; | |
1919 } | |
2415 | 1920 switch ( pDst->uHeightLn2 ) |
0 | 1921 { |
1922 case 2: | |
2415 | 1923 pDst->uHeightMinus1 = 3; |
0 | 1924 break; |
1925 case 3: | |
2415 | 1926 pDst->uHeightMinus1 = 7; |
0 | 1927 break; |
1928 case 4: | |
2415 | 1929 pDst->uHeightMinus1 = 15; |
0 | 1930 break; |
1931 case 5: | |
2415 | 1932 pDst->uHeightMinus1 = 31; |
0 | 1933 break; |
1934 case 6: | |
2415 | 1935 pDst->uHeightMinus1 = 63; |
0 | 1936 break; |
1937 case 7: | |
2415 | 1938 pDst->uHeightMinus1 = 127; |
0 | 1939 break; |
1940 case 8: | |
2415 | 1941 pDst->uHeightMinus1 = 255; |
0 | 1942 break; |
1943 case 9: | |
2415 | 1944 pDst->uHeightMinus1 = 511; |
0 | 1945 break; |
1946 case 10: | |
2415 | 1947 pDst->uHeightMinus1 = 1023; |
0 | 1948 break; |
1949 case 11: | |
2415 | 1950 pDst->uHeightMinus1 = 2047; |
0 | 1951 break; |
1952 case 12: | |
2415 | 1953 pDst->uHeightMinus1 = 4095; |
0 | 1954 break; |
1955 default: | |
1956 return 1; | |
1957 } | |
1958 return 1; | |
1959 } | |
1960 | |
1961 //----- (00410423) -------------------------------------------------------- | |
1962 void LODFile_IconsBitmaps::_410423_move_textures_to_device() | |
1963 { | |
1964 size_t v4; // eax@9 | |
1965 char *v5; // ST1C_4@9 | |
1966 | |
2461 | 1967 for ( uint i = 0; i < this->uNumLoadedFiles; i++ ) |
0 | 1968 { |
2461 | 1969 if ( this->ptr_011BB4[i] ) |
0 | 1970 { |
2461 | 1971 if ( this->pTextures[i].pName[0] != 'w' || this->pTextures[i].pName[1] != 't' |
1972 || this->pTextures[i].pName[2] != 'r' || this->pTextures[i].pName[3] != 'd' || this->pTextures[i].pName[4] != 'r' ) | |
1973 pRenderer->LoadTexture(&this->pTextures[i].pName[0], this->pTextures[i].uTextureSize, (IDirectDrawSurface4 **)&this->pHardwareSurfaces[i], | |
1974 &this->pHardwareTextures[i]); | |
1975 else | |
0 | 1976 { |
2461 | 1977 v4 = strlen(&this->pTextures[i].pName[0]); |
1978 v5 = (char *)malloc(v4 + 2); | |
1979 *v5 = 'h'; | |
1980 strcpy(v5 + 1, &this->pTextures[i].pName[0]); | |
1981 pRenderer->LoadTexture(v5, this->pTextures[i].uTextureSize, (IDirectDrawSurface4 **)&this->pHardwareSurfaces[i], &this->pHardwareTextures[i]); | |
1982 free(v5); | |
0 | 1983 } |
1984 } | |
1985 } | |
2461 | 1986 if ( this->ptr_011BB4 ) |
0 | 1987 { |
2461 | 1988 if ( this->uNumLoadedFiles > 1 ) |
1989 memset(this->ptr_011BB4, 0, this->uNumLoadedFiles - 1); | |
0 | 1990 } |
1991 } | |
1992 | |
1993 //----- (004103BB) -------------------------------------------------------- | |
1994 void LODFile_IconsBitmaps::ReleaseHardwareTextures() | |
1995 { | |
2132 | 1996 for ( uint i = 0; i < this->uNumLoadedFiles; i++ ) |
0 | 1997 { |
2132 | 1998 if ( this->pHardwareTextures ) |
0 | 1999 { |
2132 | 2000 if ( this->pHardwareTextures[i] ) |
0 | 2001 { |
2132 | 2002 this->pHardwareTextures[i]->Release(); |
2003 this->pHardwareTextures[i] = 0; | |
2004 this->ptr_011BB4[i] = 1; | |
0 | 2005 } |
2006 } | |
2132 | 2007 if ( this->pHardwareSurfaces ) |
0 | 2008 { |
2132 | 2009 if ( this->pHardwareSurfaces[i] ) |
0 | 2010 { |
2132 | 2011 this->pHardwareSurfaces[i]->Release(); |
2012 this->pHardwareSurfaces[i] = 0; | |
2013 this->ptr_011BB4[i] = 1; | |
0 | 2014 } |
2015 } | |
2016 } | |
2017 } | |
2018 | |
2019 //----- (0041033D) -------------------------------------------------------- | |
2020 void LODFile_IconsBitmaps::ReleaseLostHardwareTextures() | |
2021 { | |
2415 | 2022 for ( uint i = 0; i < this->uNumLoadedFiles; ++i ) |
0 | 2023 { |
2415 | 2024 if ( this->pHardwareSurfaces ) |
0 | 2025 { |
2415 | 2026 if ( this->pHardwareSurfaces[i] ) |
0 | 2027 { |
2415 | 2028 if ( this->pHardwareSurfaces[i]->IsLost() == DDERR_SURFACELOST ) |
0 | 2029 { |
2415 | 2030 if ( this->pHardwareTextures ) |
0 | 2031 { |
2415 | 2032 if ( this->pHardwareTextures[i] ) |
0 | 2033 { |
2415 | 2034 this->pHardwareTextures[i]->Release(); |
2035 this->pHardwareTextures[i] = 0; | |
0 | 2036 } |
2037 } | |
2415 | 2038 this->pHardwareSurfaces[i]->Release(); |
2039 this->pHardwareSurfaces[i] = 0; | |
2040 this->ptr_011BB4[i] = 1; | |
0 | 2041 } |
2042 } | |
2043 } | |
2044 } | |
2045 } | |
2046 | |
2047 //----- (004101B1) -------------------------------------------------------- | |
2048 int LODFile_IconsBitmaps::ReloadTexture(Texture *pDst, const char *pContainer, int mode) | |
2049 { | |
2050 Texture *v6; // esi@2 | |
2051 unsigned int v7; // ebx@6 | |
2052 unsigned int v8; // ecx@6 | |
2053 signed int result; // eax@7 | |
2054 FILE *File; // [sp+Ch] [bp-8h]@1 | |
2055 unsigned __int8 v15; // [sp+11h] [bp-3h]@13 | |
2056 unsigned __int8 v16; // [sp+12h] [bp-2h]@13 | |
2057 unsigned __int8 DstBuf; // [sp+13h] [bp-1h]@13 | |
2058 void *DstBufa; // [sp+1Ch] [bp+8h]@10 | |
2059 void *Sourcea; // [sp+20h] [bp+Ch]@10 | |
2060 | |
2415 | 2061 File = FindContainer(pContainer, 0); |
2062 v6 = pDst; | |
2063 if ( File && pDst->pLevelOfDetail0_prolly_alpha_mask | |
0 | 2064 && mode == 2 |
2415 | 2065 && pDst->pPalette16 && !pDst->pPalette24 |
0 | 2066 && (v7 = pDst->uTextureSize, |
2415 | 2067 fread(pDst, 1, 0x30u, File), |
0 | 2068 strcpy(pDst->pName, pContainer), |
2069 v8 = pDst->uTextureSize, | |
2070 (signed int)v8 <= (signed int)v7) ) | |
2071 { | |
2415 | 2072 if ( !pDst->uDecompressedSize || this->dword_011BA4 ) |
0 | 2073 { |
2415 | 2074 fread(pDst->pLevelOfDetail0_prolly_alpha_mask, 1, pDst->uTextureSize, File); |
0 | 2075 } |
2076 else | |
2077 { | |
2078 Sourcea = malloc(pDst->uDecompressedSize); | |
2079 DstBufa = malloc(pDst->uTextureSize); | |
2415 | 2080 fread(DstBufa, 1, pDst->uTextureSize, File); |
0 | 2081 zlib::MemUnzip(Sourcea, &v6->uDecompressedSize, DstBufa, v6->uTextureSize); |
2415 | 2082 v6->uTextureSize = pDst->uDecompressedSize; |
0 | 2083 free(DstBufa); |
2415 | 2084 memcpy(v6->pLevelOfDetail0_prolly_alpha_mask, Sourcea, pDst->uDecompressedSize); |
0 | 2085 free(Sourcea); |
2086 } | |
2415 | 2087 for( uint i = 0; i < 256; ++i ) |
0 | 2088 { |
2415 | 2089 fread(&DstBuf, 1, 1, File); |
2090 fread(&v16, 1, 1, File); | |
2091 fread(&v15, 1, 1, File); | |
2092 v6->pPalette16[i] = (unsigned __int8)(DstBuf >> (8 - LOBYTE(this->uTextureRedBits))) | |
2093 << (LOBYTE(this->uTextureBlueBits) + LOBYTE(this->uTextureGreenBits)); | |
2094 v6->pPalette16[i] += (unsigned __int8)(v16 >> (8 - LOBYTE(this->uTextureGreenBits))) | |
2095 << this->uTextureBlueBits; | |
2096 v6->pPalette16[i] += (unsigned __int8)(v15 >> (8 - LOBYTE(this->uTextureBlueBits))); | |
0 | 2097 } |
2098 result = 1; | |
2099 } | |
2100 else | |
2101 result = -1; | |
2102 return result; | |
2103 } | |
2104 | |
2105 //----- (0040FC08) -------------------------------------------------------- | |
2106 int LODFile_IconsBitmaps::LoadTextureFromLOD(Texture *pOutTex, const char *pContainer, enum TEXTURE_TYPE eTextureType) | |
2107 { | |
2108 Texture *v8; // esi@3 | |
2109 enum TEXTURE_TYPE v12; // eax@14 | |
2487 | 2110 signed int result; // esi@14 |
0 | 2111 unsigned int v14; // eax@21 |
2112 void *v19; // ST3C_4@27 | |
2113 size_t v22; // ST2C_4@29 | |
2114 const void *v23; // ecx@29 | |
2115 void *v30; // eax@30 | |
2116 signed int v41; // ecx@43 | |
2117 signed int v42; // ecx@48 | |
2118 | |
1980 | 2119 FILE* pFile = FindContainer(pContainer, false); |
0 | 2120 if (!pFile) |
2121 return -1; | |
2122 v8 = pOutTex; | |
2181 | 2123 fread(pOutTex, 1, 0x30, pFile); |
2212 | 2124 strcpy(pOutTex->pName, pContainer); |
2487 | 2125 if (/*pRenderer->pRenderD3D &&*/ (pOutTex->pBits & 2) && strcmp(v8->pName, "sptext01"))//Ritor1: "&& strcmp(v8->pName, "sptext01")" - temporarily for red_aura |
0 | 2126 { |
2127 if (!pHardwareSurfaces || !pHardwareTextures) | |
2128 { | |
2129 pHardwareSurfaces = new IDirectDrawSurface *[1000]; | |
2130 memset(pHardwareSurfaces, 0, 1000 * sizeof(IDirectDrawSurface4 *)); | |
2131 | |
2132 pHardwareTextures = new IDirect3DTexture2 *[1000]; | |
2133 memset(pHardwareTextures, 0, 1000 * sizeof(IDirect3DTexture2 *)); | |
2134 | |
2135 ptr_011BB4 = new char[1000]; | |
2136 memset(ptr_011BB4, 0, 1000); | |
2137 } | |
2487 | 2138 if (_strnicmp(pContainer, "wtrdr", 5)) |
0 | 2139 { |
2487 | 2140 if (_strnicmp(pContainer, "WtrTyl", 6)) |
0 | 2141 v14 = uNumLoadedFiles; |
2142 else | |
2143 { | |
265 | 2144 pRenderer->hd_water_tile_id = uNumLoadedFiles; |
0 | 2145 v14 = uNumLoadedFiles; |
2146 } | |
2487 | 2147 result = pRenderer->LoadTexture(pContainer, pOutTex->palette_id1, (IDirectDrawSurface4 **)&pHardwareSurfaces[v14], &pHardwareTextures[v14]); |
0 | 2148 } |
2149 else | |
2150 { | |
2487 | 2151 char *temp_container; |
2152 temp_container = (char *)malloc(strlen(pContainer) + 2); | |
2153 *temp_container = 104;//'h' | |
2154 strcpy(temp_container + 1, pContainer); | |
2155 result = pRenderer->LoadTexture((const char *)temp_container, pOutTex->palette_id1, | |
2181 | 2156 (IDirectDrawSurface4 **)&pHardwareSurfaces[uNumLoadedFiles], &pHardwareTextures[uNumLoadedFiles]); |
2487 | 2157 free((void *)temp_container); |
0 | 2158 } |
2487 | 2159 return result; |
0 | 2160 } |
2161 if ( !v8->uDecompressedSize || dword_011BA4 ) | |
2162 { | |
2415 | 2163 v8->pLevelOfDetail0_prolly_alpha_mask = (unsigned __int8 *)malloc(v8->uTextureSize); |
2164 fread(v8->pLevelOfDetail0_prolly_alpha_mask, 1, (size_t)v8->uTextureSize, pFile); | |
0 | 2165 } |
2166 else | |
2167 { | |
2212 | 2168 pContainer = (const char *)malloc(v8->uDecompressedSize); |
2169 v19 = malloc(v8->uTextureSize); | |
2170 fread(v19, 1, (size_t)v8->uTextureSize, pFile); | |
0 | 2171 zlib::MemUnzip((void *)pContainer, &v8->uDecompressedSize, v19, v8->uTextureSize); |
2212 | 2172 v8->uTextureSize = v8->uDecompressedSize; |
0 | 2173 free(v19); |
2151 | 2174 if ( /*bUseLoResSprites*/false && v8->pBits & 2 ) |
0 | 2175 { |
2176 pOutTex = (Texture *)(((signed int)v8->uSizeOfMaxLevelOfDetail >> 2) | |
2177 + ((signed int)v8->uSizeOfMaxLevelOfDetail >> 4) | |
2178 + ((signed int)v8->uSizeOfMaxLevelOfDetail >> 6)); | |
2179 v22 = (size_t)pOutTex; | |
2180 v23 = &pContainer[v8->uTextureWidth * v8->uTextureHeight]; | |
2415 | 2181 v8->pLevelOfDetail0_prolly_alpha_mask = (unsigned __int8 *)malloc((unsigned int)pOutTex); |
2182 memcpy(v8->pLevelOfDetail0_prolly_alpha_mask, v23, v22); | |
2181 | 2183 v8->uTextureWidth = (signed __int16)v8->uTextureWidth / 2; |
2184 v8->uTextureHeight = (signed __int16)v8->uTextureHeight / 2; | |
0 | 2185 --v8->uWidthLn2; |
2186 --v8->uHeightLn2; | |
2181 | 2187 v8->uWidthMinus1 = v8->uTextureWidth - 1; |
2212 | 2188 v8->uHeightMinus1 = v8->uTextureHeight - 1; |
2189 v8->uSizeOfMaxLevelOfDetail = (signed __int16)v8->uTextureWidth * (signed __int16)v8->uTextureHeight; | |
2190 v8->uTextureSize = (unsigned int)pOutTex; | |
0 | 2191 } |
2192 else | |
2193 { | |
2415 | 2194 v8->pLevelOfDetail0_prolly_alpha_mask = (unsigned __int8 *)malloc(v8->uDecompressedSize); |
2195 memcpy(v8->pLevelOfDetail0_prolly_alpha_mask, pContainer, v8->uDecompressedSize); | |
0 | 2196 } |
2197 free((void *)pContainer); | |
2198 } | |
2487 | 2199 |
1583 | 2200 free(v8->pPalette16); |
2487 | 2201 v8->pPalette16 = NULL; |
2202 | |
1583 | 2203 free(v8->pPalette24); |
2487 | 2204 v8->pPalette24 = NULL; |
2205 | |
0 | 2206 if ( eTextureType == TEXTURE_24BIT_PALETTE ) |
2207 { | |
2415 | 2208 v8->pPalette24 = (unsigned __int8 *)malloc(0x300); |
2487 | 2209 fread(v8->pPalette24, 1, 0x300, pFile); |
0 | 2210 } |
2211 else | |
2212 { | |
2213 if ( eTextureType == TEXTURE_16BIT_PALETTE ) | |
2214 { | |
1583 | 2215 v8->pPalette16 = (unsigned __int16 *)malloc(0x200); |
2415 | 2216 for ( uint i = 0; i < 256; ++i ) |
0 | 2217 { |
2212 | 2218 fread((char *)&eTextureType + 3, 1, 1, pFile); |
2219 fread((char *)&pContainer + 3, 1, 1, pFile); | |
2415 | 2220 fread((char *)&pOutTex + 3, 1, 1, pFile); |
2420 | 2221 v8->pPalette16[i] = (unsigned __int8)(BYTE3(eTextureType) >> (8 - LOBYTE(this->uTextureRedBits))) //Uninitialized memory access |
2222 << (LOBYTE(this->uTextureBlueBits) + LOBYTE(this->uTextureGreenBits)); | |
2223 v8->pPalette16[i] += (unsigned __int8)(BYTE3(pContainer) >> (8 - LOBYTE(this->uTextureGreenBits))) | |
2224 << this->uTextureBlueBits; | |
2225 v8->pPalette16[i] += (unsigned __int8)(BYTE3(pOutTex) >> (8 - LOBYTE(this->uTextureBlueBits))); | |
0 | 2226 } |
2227 } | |
2228 } | |
2415 | 2229 |
0 | 2230 if ( v8->pBits & 2 ) |
2231 { | |
2416 | 2232 v8->pLevelOfDetail1 = &v8->pLevelOfDetail0_prolly_alpha_mask[v8->uSizeOfMaxLevelOfDetail]; |
2233 v8->pLevelOfDetail2 = &v8->pLevelOfDetail1[v8->uSizeOfMaxLevelOfDetail >> 2]; | |
2234 v8->pLevelOfDetail3 = &v8->pLevelOfDetail2[v8->uSizeOfMaxLevelOfDetail >> 4]; | |
0 | 2235 } |
2236 else | |
2237 { | |
2416 | 2238 v8->pLevelOfDetail1 = 0; |
0 | 2239 v8->pLevelOfDetail2 = 0; |
2416 | 2240 v8->pLevelOfDetail3 = 0; |
0 | 2241 } |
2212 | 2242 for ( v41 = 1; v41 < 15; ++v41 ) |
0 | 2243 { |
2212 | 2244 if ( 1 << v41 == v8->uTextureWidth ) |
2245 v8->uWidthLn2 = v41; | |
0 | 2246 } |
2212 | 2247 for ( v42 = 1; v42 < 15; ++v42 ) |
0 | 2248 { |
2212 | 2249 if ( 1 << v42 == v8->uTextureHeight ) |
2250 v8->uHeightLn2 = v42; | |
0 | 2251 } |
2212 | 2252 |
0 | 2253 switch ( v8->uWidthLn2 ) |
2254 { | |
2255 case 2: | |
2256 v8->uWidthMinus1 = 3; | |
2257 break; | |
2258 case 3: | |
2259 v8->uWidthMinus1 = 7; | |
2260 break; | |
2261 case 4: | |
2262 v8->uWidthMinus1 = 15; | |
2263 break; | |
2264 case 5: | |
2265 v8->uWidthMinus1 = 31; | |
2266 break; | |
2267 case 6: | |
2268 v8->uWidthMinus1 = 63; | |
2269 break; | |
2270 case 7: | |
2271 v8->uWidthMinus1 = 127; | |
2272 break; | |
2273 case 8: | |
2274 v8->uWidthMinus1 = 255; | |
2275 break; | |
2276 case 9: | |
2277 v8->uWidthMinus1 = 511; | |
2278 break; | |
2279 case 10: | |
2280 v8->uWidthMinus1 = 1023; | |
2281 break; | |
2282 case 11: | |
2283 v8->uWidthMinus1 = 2047; | |
2284 break; | |
2285 case 12: | |
2286 v8->uWidthMinus1 = 4095; | |
2287 break; | |
2288 default: | |
2289 break; | |
2290 } | |
2291 switch ( v8->uHeightLn2 ) | |
2292 { | |
2293 case 2: | |
2294 v8->uHeightMinus1 = 3; | |
2295 break; | |
2296 case 3: | |
2297 v8->uHeightMinus1 = 7; | |
2298 break; | |
2299 case 4: | |
2300 v8->uHeightMinus1 = 15; | |
2301 break; | |
2302 case 5: | |
2303 v8->uHeightMinus1 = 31; | |
2304 break; | |
2305 case 6: | |
2306 v8->uHeightMinus1 = 63; | |
2307 break; | |
2308 case 7: | |
2309 v8->uHeightMinus1 = 127; | |
2310 break; | |
2311 case 8: | |
2312 v8->uHeightMinus1 = 255; | |
2313 break; | |
2314 case 9: | |
2315 v8->uHeightMinus1 = 511; | |
2316 break; | |
2317 case 10: | |
2318 v8->uHeightMinus1 = 1023; | |
2319 break; | |
2320 case 11: | |
2321 v8->uHeightMinus1 = 2047; | |
2322 break; | |
2323 case 12: | |
2324 v8->uHeightMinus1 = 4095; | |
2325 break; | |
2326 default: | |
2327 return 1; | |
2328 } | |
2329 return 1; | |
2330 } | |
2331 | |
2332 Texture *LODFile_IconsBitmaps::LoadTexturePtr(const char *pContainer, enum TEXTURE_TYPE uTextureType) | |
2333 { | |
2334 uint id = LoadTexture(pContainer, uTextureType); | |
737 | 2335 |
1545 | 2336 Assert(id != -1 && L"Texture not found"); |
737 | 2337 |
0 | 2338 return &pTextures[id]; |
2339 } | |
2340 | |
2341 //----- (0040FB20) -------------------------------------------------------- | |
2342 unsigned int LODFile_IconsBitmaps::LoadTexture(const char *pContainer, enum TEXTURE_TYPE uTextureType) | |
2343 { | |
2344 areWeLoadingTexture = 1; | |
2345 | |
2487 | 2346 //check loaded texture? |
0 | 2347 for (uint i = 0; i < uNumLoadedFiles; ++i) |
2181 | 2348 { |
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1104
diff
changeset
|
2349 if (!_stricmp(pContainer, pTextures[i].pName)) |
0 | 2350 return i; |
2181 | 2351 } |
0 | 2352 |
2353 // if (!uNumLoadedFiles) | |
2354 // { | |
2355 //LABEL_5: | |
1545 | 2356 Assert(uNumLoadedFiles < 1000); |
649 | 2357 /*if (uNumLoadedFiles >= 1000) |
0 | 2358 { |
2359 Log::Warning(L"Maximum texture number exceeded"); | |
2360 AbortWithError(); | |
649 | 2361 }*/ |
0 | 2362 if (LoadTextureFromLOD(&pTextures[uNumLoadedFiles], pContainer, uTextureType) == -1) |
2363 { | |
2295 | 2364 for ( uint i = 0; i < uNumLoadedFiles; ++i ) |
0 | 2365 { |
2295 | 2366 if (!_stricmp(pTextures[i].pName, "pending")) |
2367 return i; | |
0 | 2368 } |
2369 LoadTextureFromLOD(&pTextures[uNumLoadedFiles], "pending", uTextureType); | |
2370 } | |
2371 areWeLoadingTexture = 0; | |
2372 ++uNumLoadedFiles; | |
2373 return uNumLoadedFiles - 1; | |
2374 // } | |
2375 // v5 = pTextures; | |
1104 | 2376 // while ( _stricmp(v5->pName, pContainer) ) |
0 | 2377 // { |
2378 // ++v4; | |
2379 // ++v5; | |
2380 // if (v4 >= uNumLoadedFiles ) | |
2381 // goto LABEL_5; | |
2382 // } | |
2383 // return v4; | |
2384 } | |
2336 | 2385 |
2386 Texture * LODFile_IconsBitmaps::GetTexture( int idx ) | |
2387 { | |
2388 Assert(idx < MAX_LOD_TEXTURES, "Texture index out of bounds (%u)", idx); | |
2389 if (idx == -1) | |
2390 { | |
2391 //Log::Warning(L"Texture id = %d missing", idx); | |
2392 return pTextures + LoadDummyTexture(); | |
2393 } | |
2394 return pTextures + idx; | |
2395 } | |
2396 | |
1297 | 2397 //----- (0046082C) -------------------------------------------------------- |
2398 bool Initialize_GamesLOD_NewLOD() | |
2399 { | |
2400 pGames_LOD = new LODWriteableFile; | |
2401 pGames_LOD->AllocSubIndicesAndIO(300, 0); | |
2402 if (pGames_LOD->LoadFile("data\\games.lod", 1)) | |
2403 { | |
2404 pNew_LOD = new LODWriteableFile; | |
2405 pNew_LOD->AllocSubIndicesAndIO(300, 100000); | |
2406 return true; | |
2407 } | |
2408 return false; | |
2409 } |