Mercurial > mm7
annotate Engine/Graphics/Texture.cpp @ 2574:dd36326a9994
More texture refactoring
GetLeather -> DrawTextureCustomHeight
author | a.parshin |
---|---|
date | Mon, 07 Mar 2016 03:48:40 +0200 |
parents | 0c67be4ec900 |
children |
rev | line source |
---|---|
2496 | 1 #define _CRTDBG_MAP_ALLOC |
2 #include <stdlib.h> | |
3 #include <crtdbg.h> | |
4 | |
5 #define _CRT_SECURE_NO_WARNINGS | |
6 #include <stdlib.h> | |
7 | |
2541 | 8 #include "Engine/Engine.h" |
9 | |
2496 | 10 #include "Texture.h" |
2499 | 11 #include "../Tables/FrameTableInc.h" |
12 #include "../LOD.h" | |
2496 | 13 #include "PaletteManager.h" |
2499 | 14 #include "../ZlibWrapper.h" |
2496 | 15 |
16 | |
2499 | 17 #include "../OurMath.h" |
2496 | 18 |
19 | |
20 | |
21 | |
22 | |
23 | |
24 | |
25 | |
26 struct TextureFrameTable *pTextureFrameTable; | |
27 | |
28 | |
29 | |
30 stru355 stru_4E82A4 = {0x20, 0x41, 0, 0x20, 0xFF0000, 0xFF00, 0xFF, 0xFF000000}; | |
31 stru355 stru_4EFCBC = {0x20, 0x41, 0, 0x10, 0x7C00, 0x3E0, 0x1F, 0x8000}; | |
32 | |
2574 | 33 //Texture_MM7 pTex_F7CE30; |
2496 | 34 |
35 | |
36 | |
37 | |
38 | |
39 | |
40 | |
41 | |
42 | |
43 | |
44 | |
45 /* 245 */ | |
46 #pragma pack(push, 1) | |
47 struct PCXHeader1 | |
48 { | |
49 char magic; | |
50 char version; | |
51 char encoding; | |
52 char bpp; | |
53 __int16 left; | |
54 __int16 up; | |
55 __int16 right; | |
56 __int16 bottom; | |
57 __int16 hres; | |
58 __int16 vres; | |
59 }; | |
60 #pragma pack(pop) | |
61 | |
62 /* 246 */ | |
63 #pragma pack(push, 1) | |
64 struct PCXHeader2 | |
65 { | |
66 char reserved; | |
67 char planes; | |
68 __int16 pitch; | |
69 __int16 palette_info; | |
70 }; | |
71 #pragma pack(pop) | |
72 | |
73 | |
74 | |
75 | |
76 | |
77 | |
78 | |
79 | |
80 | |
81 //----- (0044E054) -------------------------------------------------------- | |
82 void TextureFrameTable::ToFile() | |
83 { | |
84 TextureFrameTable *v1; // esi@1 | |
85 FILE *v2; // eax@1 | |
86 FILE *v3; // edi@1 | |
87 | |
88 v1 = this; | |
89 v2 = fopen("data\\dtft.bin", "wb"); | |
90 v3 = v2; | |
91 if ( !v2 ) | |
92 Error("Unable to save dtft.bin!"); | |
93 fwrite(v1, 4u, 1u, v2); | |
94 fwrite(v1->pTextures, 0x14u, v1->sNumTextures, v3); | |
95 fclose(v3); | |
96 } | |
97 | |
98 //----- (0044E0A0) -------------------------------------------------------- | |
99 void TextureFrameTable::FromFile(void *data_mm6, void *data_mm7, void *data_mm8) | |
100 { | |
101 uint num_mm6_frames = data_mm6 ? *(int *)data_mm6 : 0, | |
102 num_mm7_frames = data_mm7 ? *(int *)data_mm7 : 0, | |
103 num_mm8_frames = data_mm8 ? *(int *)data_mm8 : 0; | |
104 | |
105 sNumTextures = num_mm6_frames + num_mm7_frames + num_mm8_frames; | |
106 Assert(sNumTextures); | |
107 Assert(!num_mm8_frames); | |
108 | |
109 pTextures = (TextureFrame *)malloc(sNumTextures * sizeof(TextureFrame)); | |
110 | |
111 memcpy(pTextures, (char *)data_mm7 + 4, num_mm7_frames * sizeof(TextureFrame)); | |
112 memcpy(pTextures + num_mm7_frames, (char *)data_mm6 + 4, num_mm6_frames * sizeof(TextureFrame)); | |
113 memcpy(pTextures + num_mm6_frames + num_mm7_frames, (char *)data_mm8 + 4, num_mm8_frames * sizeof(TextureFrame)); | |
114 } | |
115 | |
116 //----- (0044E0ED) -------------------------------------------------------- | |
117 void TextureFrameTable::LoadAnimationSequenceAndPalettes( signed int uIconID ) | |
118 { | |
119 //TextureFrameTable *v3; // ebx@1 | |
120 unsigned int i; // edi@3 | |
121 | |
122 //v3 = this; | |
123 if ( (uIconID <= this->sNumTextures) && uIconID >= 0 ) | |
124 { | |
125 for ( i = uIconID; ; ++i ) | |
126 { | |
127 this->pTextures[i].uTextureID = pBitmaps_LOD->LoadTexture(this->pTextures[i].pTextureName, TEXTURE_DEFAULT); | |
128 | |
129 if (this->pTextures[i].uTextureID != -1) | |
130 pBitmaps_LOD->pTextures[this->pTextures[i].uTextureID].palette_id2 = pPaletteManager->LoadPalette(pBitmaps_LOD->pTextures[this->pTextures[i].uTextureID].palette_id1); | |
131 //result = (unsigned int)v3->pTextures; | |
132 //if ( !(*(char *)(result + i * 20 + 18) & 1) ) | |
133 if( this->pTextures[i].uFlags & 1) | |
134 break; | |
135 } | |
136 } | |
137 return; | |
138 } | |
139 | |
140 //----- (0044E163) -------------------------------------------------------- | |
141 signed int TextureFrameTable::FindTextureByName(const char *Str2) | |
142 { | |
143 if ( (signed int)this->sNumTextures <= 0 ) | |
144 return -1; | |
145 for ( int i = 0; (signed int)i < (signed int)this->sNumTextures; ++i ) | |
146 { | |
147 if ( !_stricmp(this->pTextures[i].pTextureName, Str2) ) | |
148 return i; | |
149 } | |
150 return -1; | |
151 } | |
152 | |
153 //----- (0044E19A) -------------------------------------------------------- | |
154 int TextureFrameTable::GetFrameTexture(int uFrameID, signed int a3) | |
155 { | |
156 int v3; // esi@1 | |
157 TextureFrame *v4; // edi@1 | |
158 TextureFrame *v5; // ecx@1 | |
159 __int16 v6; // dx@2 | |
160 int v7; // edx@3 | |
161 char *i; // eax@3 | |
162 int v9; // ecx@5 | |
163 unsigned int result; // eax@6 | |
164 | |
165 v3 = uFrameID; | |
166 v4 = this->pTextures; | |
167 v5 = &v4[uFrameID]; | |
168 if ( v5->uFlags & 1 && (v6 = v5->uAnimLength) != 0 ) | |
169 { | |
170 v7 = (a3 >> 3) % v6; | |
171 for ( i = (char *)&v5->uAnimTime; ; i += 20 ) | |
172 { | |
173 v9 = *(short *)i; | |
174 if ( v7 <= v9 ) | |
175 break; | |
176 v7 -= v9; | |
177 ++v3; | |
178 } | |
179 result = v4[v3].uTextureID; | |
180 } | |
181 else | |
182 { | |
183 result = v5->uTextureID; | |
184 } | |
185 return result; | |
186 } | |
187 | |
188 | |
189 | |
190 | |
191 | |
192 | |
193 //----- (0040F806) -------------------------------------------------------- | |
2574 | 194 void *Texture_MM7::UnzipPalette() |
2496 | 195 { |
2574 | 196 Texture_MM7 *v1; // esi@1 |
2496 | 197 |
198 void *v2; // edi@1 | |
2574 | 199 Texture_MM7 *pSource; // [sp+0h] [bp-4h]@1 |
2496 | 200 |
201 pSource = this; | |
202 v1 = this; | |
203 v2 = malloc(this->uDecompressedSize); | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
204 zlib::MemUnzip(v2, (unsigned int *)&pSource, v1->paletted_pixels, v1->uTextureSize); |
2496 | 205 return v2; |
206 } | |
207 | |
208 //----- (0040F77C) -------------------------------------------------------- | |
2574 | 209 void Texture_MM7::Release() |
2496 | 210 { |
211 if (this) | |
212 { | |
213 pName[0] = 0; | |
214 | |
215 if (pBits & 0x0400) | |
216 { | |
217 __debugbreak(); | |
218 } | |
219 | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
220 free(paletted_pixels); |
2496 | 221 free(pPalette16); |
222 free(pPalette24); | |
223 | |
224 | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
225 paletted_pixels = nullptr; |
2496 | 226 pLevelOfDetail1 = nullptr; |
2524 | 227 //pLevelOfDetail2 = nullptr; |
228 //pLevelOfDetail3 = nullptr; | |
229 | |
230 if (d3d11_srv) | |
231 { | |
232 if (d3d11_desc) | |
233 { | |
234 delete d3d11_desc; | |
235 d3d11_desc = nullptr; | |
236 } | |
237 | |
238 extern void d3d11_release(struct ID3D11ShaderResourceView *); | |
239 d3d11_release(d3d11_srv); | |
240 d3d11_srv = nullptr; | |
241 } | |
2496 | 242 |
243 pPalette16 = nullptr; | |
244 pPalette24 = nullptr; | |
245 | |
246 uSizeOfMaxLevelOfDetail = 0; | |
247 uTextureSize = 0; | |
248 uTextureHeight = 0; | |
249 uTextureWidth = 0; | |
250 uHeightLn2 = 0; | |
251 uWidthLn2 = 0; | |
252 palette_id1 = 0; | |
253 palette_id2 = 0; | |
254 pBits &= 0xFFFF0000; | |
255 } | |
256 } | |
257 | |
258 //----- (0040F5F5) -------------------------------------------------------- | |
259 int RGBTexture::Reload(const char *pContainer) | |
260 { | |
261 //RGBTexture *v2; // esi@1 | |
262 FILE *v3; // eax@3 | |
263 FILE *v4; // edi@3 | |
264 void *v5; // ebx@7 | |
265 signed int result; // eax@11 | |
266 unsigned int v7; // ecx@12 | |
267 unsigned __int16 *v8; // ST20_4@14 | |
268 int v9; // eax@14 | |
269 char color_map[48]; // [sp+8h] [bp-98h]@9 | |
2574 | 270 Texture_MM7 DstBuf; // [sp+38h] [bp-68h]@1 |
2496 | 271 PCXHeader1 header1; // [sp+80h] [bp-20h]@9 |
272 PCXHeader2 header2; // [sp+90h] [bp-10h]@9 | |
273 FILE *File; // [sp+98h] [bp-8h]@3 | |
274 size_t Count; // [sp+9Ch] [bp-4h]@6 | |
275 void *uSourceLena; // [sp+A8h] [bp+8h]@7 | |
276 | |
277 // v2 = this; | |
278 if ( !this->pPixels ) | |
279 return 2; | |
280 v3 = pIcons_LOD->FindContainer(pContainer, 0); | |
281 v4 = v3; | |
282 File = v3; | |
283 if ( !v3 ) | |
284 Error("Unable to load %s", pContainer); | |
285 | |
286 fread(&DstBuf, 1, 0x30, v3); | |
287 Count = DstBuf.uTextureSize; | |
288 if ( DstBuf.uDecompressedSize ) | |
289 { | |
290 v5 = malloc(DstBuf.uDecompressedSize); | |
291 uSourceLena = malloc(DstBuf.uTextureSize); | |
292 fread(uSourceLena, 1, Count, File); | |
293 zlib::MemUnzip(v5, &DstBuf.uDecompressedSize, uSourceLena, DstBuf.uTextureSize); | |
294 DstBuf.uTextureSize = DstBuf.uDecompressedSize; | |
295 free(uSourceLena); | |
296 } | |
297 else | |
298 { | |
299 v5 = malloc(DstBuf.uTextureSize); | |
300 fread(v5, 1, Count, v4); | |
301 } | |
302 memcpy(&header1, v5, 0x10u); | |
303 memcpy(color_map, (char *)v5 + 16, 0x30); | |
304 memcpy(&header2, (char *)v5 + 64, 6); | |
305 if ( header1.bpp != 8 ) | |
306 return 3; | |
307 v7 = (signed __int16)(header1.right - header1.left + 1); | |
308 if ( (signed int)(v7 * (signed __int16)(header1.bottom - header1.up + 1)) <= (signed int)this->uNumPixels ) | |
309 { | |
310 this->uWidth = header1.right - header1.left + 1; | |
311 v8 = this->pPixels; | |
312 v9 = v7 * this->uHeight; | |
313 this->uNumPixels = v9; | |
314 this->uHeight = v9; | |
315 this->DecodePCX((char *)v5, v8, v7); | |
316 free(v5); | |
317 result = 0; | |
318 } | |
319 else | |
320 { | |
321 result = -1; | |
322 } | |
323 return result; | |
324 } | |
325 | |
326 //----- (0040F5BE) -------------------------------------------------------- | |
2574 | 327 Texture_MM7::Texture_MM7() |
2496 | 328 { |
329 pName[0] = 0; | |
330 uSizeOfMaxLevelOfDetail = 0; | |
331 uTextureSize = 0; | |
332 uTextureHeight = 0; | |
333 uTextureWidth = 0; | |
334 uHeightLn2 = 0; | |
335 uWidthLn2 = 0; | |
336 palette_id1 = 0; | |
337 palette_id2 = 0; | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
338 paletted_pixels = nullptr; |
2524 | 339 //pLevelOfDetail3 = nullptr; |
340 //pLevelOfDetail2 = nullptr; | |
2496 | 341 pLevelOfDetail1 = nullptr; |
342 pPalette16 = nullptr; | |
343 pPalette24 = nullptr; | |
2524 | 344 |
345 d3d11_srv = nullptr; | |
346 d3d11_desc = nullptr; | |
2496 | 347 } |
348 | |
349 //----- (0040F414) -------------------------------------------------------- | |
350 int RGBTexture::Load(const char *pContainer, int mode) | |
351 { | |
352 FILE *file; // eax@1 | |
353 void *v6; // ebx@5 | |
354 char color_map[48]; // [sp+Ch] [bp-98h]@7 | |
2574 | 355 Texture_MM7 DstBuf; // [sp+3Ch] [bp-68h]@1 |
2496 | 356 PCXHeader1 header1; // [sp+84h] [bp-20h]@7 |
357 PCXHeader2 header2; // [sp+94h] [bp-10h]@7 | |
358 size_t Count; // [sp+A0h] [bp-4h]@4 | |
359 char *Str1a; // [sp+ACh] [bp+8h]@5 | |
360 | |
361 file = pIcons_LOD->FindContainer(pContainer, 0); | |
362 if ( !file ) | |
363 Error("Unable to load %s", pContainer); | |
364 | |
365 fread(&DstBuf, 1, 0x30u, file); | |
366 Count = DstBuf.uTextureSize; | |
367 if ( DstBuf.uDecompressedSize ) | |
368 { | |
369 Str1a = (char *)malloc(DstBuf.uDecompressedSize); | |
370 v6 = malloc(DstBuf.uTextureSize); | |
371 fread(v6, 1, Count, file); | |
372 zlib::MemUnzip(Str1a, &DstBuf.uDecompressedSize, v6, DstBuf.uTextureSize); | |
373 DstBuf.uTextureSize = DstBuf.uDecompressedSize; | |
374 free(v6); | |
375 } | |
376 else | |
377 { | |
378 Str1a = (char *)malloc(DstBuf.uTextureSize); | |
379 fread(Str1a, 1, Count, file); | |
380 } | |
381 memcpy(&header1, Str1a, 0x10u); | |
382 memcpy(color_map, Str1a + 16, 0x30u); | |
383 memcpy(&header2, Str1a + 64, 6); | |
384 if ( header1.bpp != 8 ) | |
385 return 3; | |
386 this->uWidth = header1.right - header1.left + 1; | |
387 this->uHeight = header1.bottom - header1.up + 1; | |
388 this->uNumPixels = (signed __int16)this->uWidth * (signed __int16)this->uHeight; | |
389 this->pPixels = (unsigned __int16 *)malloc(2 * this->uNumPixels + 4); | |
390 if ( this->pPixels ) | |
391 { | |
392 if ( mode ) | |
393 { | |
394 if ( mode != 2 ) | |
395 { | |
396 if ( !this->pPixels ) | |
397 return 2; | |
398 this->DecodePCX(Str1a, this->pPixels, this->uWidth); | |
399 free(Str1a); | |
400 return 0; | |
401 } | |
402 this->_allocation_flags |= 1; | |
403 this->pPixels = (unsigned __int16 *)malloc(2 * this->uNumPixels + 4); | |
404 if ( !this->pPixels ) | |
405 return 2; | |
406 this->DecodePCX(Str1a, this->pPixels, this->uWidth); | |
407 free(Str1a); | |
408 return 0; | |
409 } | |
410 free(this->pPixels); | |
411 } | |
412 if ( !mode ) | |
413 { | |
414 this->pPixels = (unsigned __int16 *)malloc(2 * this->uNumPixels + 4); | |
415 if ( !this->pPixels ) | |
416 return 2; | |
417 this->DecodePCX(Str1a, this->pPixels, this->uWidth); | |
418 free(Str1a); | |
419 return 0; | |
420 } | |
421 if ( mode != 2 ) | |
422 { | |
423 if ( !this->pPixels ) | |
424 return 2; | |
425 this->DecodePCX(Str1a, this->pPixels, this->uWidth); | |
426 free(Str1a); | |
427 return 0; | |
428 } | |
429 this->_allocation_flags |= 1; | |
430 this->pPixels = (unsigned __int16 *)malloc(2 * this->uNumPixels + 4); | |
431 if ( !this->pPixels ) | |
432 return 2; | |
433 this->DecodePCX(Str1a, this->pPixels, this->uWidth); | |
434 free(Str1a); | |
435 return 0; | |
436 } | |
437 | |
438 //----- (0040F037) -------------------------------------------------------- | |
439 signed int RGBTexture::DecodePCX(char *pPcx, unsigned __int16 *pOutPixels, unsigned int uNumPixels) | |
440 { | |
441 // signed int result; // eax@2 | |
442 unsigned char test_byte; // edx@3 | |
443 unsigned int read_offset; // ebx@37 | |
444 unsigned int row_position; // edi@40 | |
445 unsigned char value; // cl@63 | |
446 char count; // [sp+50h] [bp-Ch]@43 | |
447 unsigned short current_line; // [sp+54h] [bp-8h]@38 | |
448 unsigned short *dec_position; | |
449 unsigned short *temp_dec_position; | |
450 PCXHeader1 psx_head1; | |
451 PCXHeader2 psx_head2; | |
452 // short int width, height; | |
453 BYTE color_map[48]; // Colormap for 16-color images | |
454 | |
455 | |
456 memcpy(&psx_head1, pPcx , 16); | |
457 memcpy(&color_map, pPcx + 16, 48); | |
458 memcpy(&psx_head2, pPcx + 64, 6); | |
459 | |
460 | |
461 if (psx_head1.bpp!=8) | |
462 return 3; | |
463 uWidth=(short int )(psx_head1.right-psx_head1.left+1); // word @ 000014 | |
464 uHeight=(short int )(psx_head1.bottom-psx_head1.up+1); // word @ 000016 | |
465 | |
466 | |
467 uNumPixels=uWidth*uHeight; // dword @ 000010 | |
468 | |
469 memset(pOutPixels, 0, uNumPixels * sizeof(__int16)); | |
470 short i=1; | |
471 while ( (1<<i) !=uWidth) | |
472 { | |
473 ++i; | |
474 if (i >= 15) | |
475 break; | |
476 } | |
477 field_18=i; | |
478 short i_=1; | |
479 while ( (1<<i_) !=uHeight) | |
480 { | |
481 ++i_; | |
482 if (i_ >= 15) | |
483 break; | |
484 } | |
485 field_1A=i_; | |
486 switch (field_18) | |
487 { | |
488 case 2: field_1C = 3; break; | |
489 case 3: field_1C = 7; break; | |
490 case 4: field_1C = 15; break; | |
491 case 5: field_1C = 31; break; | |
492 case 6: field_1C = 63; break; | |
493 case 7: field_1C = 127; break; | |
494 case 8: field_1C = 255; break; | |
495 case 9: field_1C = 511; break; | |
496 case 10: field_1C = 1023; break; | |
497 case 11: field_1C = 2047; break; | |
498 case 12: field_1C = 4095; break; | |
499 } | |
500 | |
501 switch (field_1A) | |
502 { | |
503 case 2: field_1E = 3; break; | |
504 case 3: field_1E = 7; break; | |
505 case 4: field_1E = 15; break; | |
506 case 5: field_1E = 31; break; | |
507 case 6: field_1E = 63; break; | |
508 case 7: field_1E = 127; break; | |
509 case 8: field_1E = 255; break; | |
510 case 9: field_1E = 511; break; | |
511 case 10: field_1E = 1023; break; | |
512 case 11: field_1E = 2047; break; | |
513 case 12: field_1E = 4095; break; | |
514 } | |
515 | |
516 unsigned int r_mask = 0xF800; | |
517 unsigned int num_r_bits = 5; | |
518 unsigned int g_mask = 0x07E0; | |
519 unsigned int num_g_bits = 6; | |
520 unsigned int b_mask = 0x001F; | |
521 unsigned int num_b_bits = 5; | |
522 //Ïðè ñîõðàíåíèè èçîáðàæåíèÿ ïîäðÿä èäóùèå ïèêñåëè îäèíàêîâîãî öâåòà îáúåäèíÿþòñÿ è âìåñòî óêàçàíèÿ öâåòà äëÿ êàæäîãî ïèêñåëÿ | |
523 //óêàçûâàåòñÿ öâåò ãðóïïû ïèêñåëåé è èõ êîëè÷åñòâî. | |
524 read_offset = 128; | |
525 if (psx_head2.planes != 3) | |
526 return 0; | |
527 current_line = 0; | |
528 if ( uHeight > 0 ) | |
529 { | |
530 dec_position = pOutPixels; | |
531 do | |
532 { | |
533 temp_dec_position = dec_position; | |
534 row_position = 0; | |
535 //decode red line | |
536 if (psx_head2.pitch) | |
537 { | |
538 do | |
539 { | |
540 test_byte = pPcx[read_offset]; | |
541 ++read_offset; | |
542 if ((test_byte & 0xC0) == 0xC0)//èìååòñÿ ëè îáúåäèíåíèå | |
543 { | |
544 value = pPcx[read_offset]; | |
545 ++read_offset; | |
546 | |
547 if ((test_byte & 0x3F) > 0) | |
548 { | |
549 count = test_byte & 0x3F;//êîëè÷åñòâî îäèíàêîâûõ ïèêñåëåé | |
550 do | |
551 { | |
552 ++row_position; | |
553 //*temp_dec_position =0xFF000000; | |
554 //*temp_dec_position|=(unsigned long)value<<16; | |
555 *temp_dec_position |= r_mask & ((unsigned __int8)value << (num_g_bits + num_r_bits + num_b_bits - 8)); | |
556 temp_dec_position++; | |
557 if (row_position == psx_head2.pitch) | |
558 break; | |
559 } | |
560 while (count-- != 1); | |
561 } | |
562 } | |
563 else | |
564 { | |
565 ++row_position; | |
566 //*temp_dec_position =0xFF000000; | |
567 //*temp_dec_position|= (unsigned long)test_byte<<16; | |
568 | |
569 *temp_dec_position |= r_mask & ((unsigned __int8)test_byte << (num_g_bits + num_r_bits + num_b_bits - 8)); | |
570 | |
571 temp_dec_position++; | |
572 } | |
573 | |
574 } | |
575 while (row_position < psx_head2.pitch); | |
576 } | |
577 | |
578 temp_dec_position = dec_position; | |
579 row_position=0; | |
580 //decode green line | |
581 while (row_position < psx_head2.pitch) | |
582 { | |
583 test_byte = *(pPcx + read_offset); | |
584 ++read_offset; | |
585 if ((test_byte & 0xC0) == 0xC0) | |
586 { | |
587 value = *(pPcx + read_offset); | |
588 ++read_offset; | |
589 if ((test_byte & 0x3F) > 0) | |
590 { | |
591 count = test_byte & 0x3F; | |
592 do | |
593 { | |
594 //*temp_dec_position|= (unsigned int)value<<8; | |
595 //temp_dec_position++; | |
596 | |
597 *temp_dec_position|= g_mask & (unsigned __int16)((unsigned __int8)value << (num_g_bits + num_b_bits - 8)); | |
598 | |
599 temp_dec_position++; | |
600 ++row_position; | |
601 if (row_position == psx_head2.pitch) | |
602 break; | |
603 | |
604 } | |
605 while (count-- != 1); | |
606 } | |
607 } | |
608 else | |
609 { | |
610 //*temp_dec_position |=(unsigned int) test_byte<<8; | |
611 //temp_dec_position++; | |
612 | |
613 *temp_dec_position|= g_mask & (unsigned __int16)((unsigned __int8)test_byte << (num_g_bits + num_b_bits - 8)); | |
614 temp_dec_position++; | |
615 ++row_position; | |
616 } | |
617 } | |
618 | |
619 temp_dec_position = dec_position; | |
620 row_position=0; | |
621 //decode blue line | |
622 while (row_position < psx_head2.pitch) | |
623 { | |
624 test_byte = *(pPcx + read_offset); | |
625 read_offset++; | |
626 if ((test_byte & 0xC0) == 0xC0) | |
627 { | |
628 value = *(pPcx + read_offset); | |
629 ++read_offset; | |
630 if ((test_byte & 0x3F) > 0) | |
631 { | |
632 count = test_byte & 0x3F; | |
633 do | |
634 { | |
635 //*temp_dec_position|= value; | |
636 //temp_dec_position++; | |
637 | |
638 *temp_dec_position |= value >> (8 - num_b_bits); | |
639 temp_dec_position++; | |
640 | |
641 ++row_position; | |
642 if (row_position == psx_head2.pitch) | |
643 break; | |
644 } | |
645 while (count-- != 1); | |
646 } | |
647 } | |
648 else | |
649 { | |
650 //*temp_dec_position|= test_byte; | |
651 //temp_dec_position++; | |
652 *temp_dec_position |= test_byte >> (8 - num_b_bits); | |
653 temp_dec_position++; | |
654 | |
655 ++row_position; | |
656 } | |
657 | |
658 } | |
659 ++current_line; | |
660 dec_position += uWidth; | |
661 } | |
662 while (current_line < uHeight); | |
663 } | |
664 return 0; | |
665 /* | |
666 RGBTexture *v4; // esi@1 | |
667 signed int result; // eax@2 | |
668 unsigned __int16 v6; // ax@3 | |
669 unsigned __int16 *v7; // ecx@3 | |
670 unsigned int v8; // edx@3 | |
671 signed int v9; // ecx@3 | |
672 signed int v10; // ecx@8 | |
673 signed int v11; // ebx@37 | |
674 unsigned __int16 *v12; // eax@40 | |
675 int v13; // edi@40 | |
676 int v14; // ebx@41 | |
677 char v15; // bl@42 | |
678 unsigned __int16 *v16; // eax@50 | |
679 int v17; // ebx@51 | |
680 char v18; // bl@52 | |
681 unsigned __int16 *v19; // eax@61 | |
682 unsigned __int8 v20; // dl@62 | |
683 unsigned __int8 v21; // dl@63 | |
684 unsigned __int8 v22; // cl@63 | |
685 char color_map[48]; // [sp+8h] [bp-54h]@1 | |
686 PCXHeader1 header1; // [sp+38h] [bp-24h]@1 | |
687 PCXHeader2 header2; // [sp+48h] [bp-14h]@1 | |
688 unsigned int v26; // [sp+50h] [bp-Ch]@43 | |
689 int v27; // [sp+54h] [bp-8h]@38 | |
690 unsigned __int16 *v28; // [sp+58h] [bp-4h]@3 | |
691 int pOutPixelsa; // [sp+68h] [bp+Ch]@41 | |
692 int pOutPixelsb; // [sp+68h] [bp+Ch]@51 | |
693 | |
694 v4 = this; | |
695 memcpy(&header1, pPcx, 0x10u); | |
696 memcpy(color_map, pPcx + 16, 0x30u); | |
697 memcpy(&header2, pPcx + 64, 6u); | |
698 if ( header1.bpp == 8 ) | |
699 { | |
700 v6 = header1.right - header1.left + 1; | |
701 LOWORD(v7) = header1.bottom - header1.up + 1; | |
702 v4->uWidth = v6; | |
703 v4->uHeight = (unsigned __int16)v7; | |
704 v7 = (unsigned __int16 *)(signed __int16)v7; | |
705 v28 = v7; | |
706 v4->uNumPixels = (signed __int16)v7 * (signed __int16)v6; | |
707 HIWORD(v8) = 0; | |
708 v9 = 1; | |
709 while ( 1 << v9 != (signed __int16)v6 ) | |
710 { | |
711 ++v9; | |
712 if ( v9 >= 15 ) | |
713 goto LABEL_8; | |
714 } | |
715 v4->field_18 = v9; | |
716 LABEL_8: | |
717 v10 = 1; | |
718 while ( (unsigned __int16 *)(1 << v10) != v28 ) | |
719 { | |
720 ++v10; | |
721 if ( v10 >= 15 ) | |
722 goto LABEL_13; | |
723 } | |
724 v4->field_1A = v10; | |
725 LABEL_13: | |
726 switch ( v4->field_18 ) | |
727 { | |
728 case 2: | |
729 v4->field_1C = 3; | |
730 break; | |
731 case 3: | |
732 v4->field_1C = 7; | |
733 break; | |
734 case 4: | |
735 v4->field_1C = 15; | |
736 break; | |
737 case 5: | |
738 v4->field_1C = 31; | |
739 break; | |
740 case 6: | |
741 v4->field_1C = 63; | |
742 break; | |
743 case 7: | |
744 v4->field_1C = 127; | |
745 break; | |
746 case 8: | |
747 v4->field_1C = 255; | |
748 break; | |
749 case 9: | |
750 v4->field_1C = 511; | |
751 break; | |
752 case 10: | |
753 v4->field_1C = 1023; | |
754 break; | |
755 case 11: | |
756 v4->field_1C = 2047; | |
757 break; | |
758 case 12: | |
759 v4->field_1C = 4095; | |
760 break; | |
761 default: | |
762 break; | |
763 } | |
764 switch ( v4->field_1A ) | |
765 { | |
766 case 2: | |
767 v4->field_1E = 3; | |
768 break; | |
769 case 3: | |
770 v4->field_1E = 7; | |
771 break; | |
772 case 4: | |
773 v4->field_1E = 15; | |
774 break; | |
775 case 5: | |
776 v4->field_1E = 31; | |
777 break; | |
778 case 6: | |
779 v4->field_1E = 63; | |
780 break; | |
781 case 7: | |
782 v4->field_1E = 127; | |
783 break; | |
784 case 8: | |
785 v4->field_1E = 255; | |
786 break; | |
787 case 9: | |
788 v4->field_1E = 511; | |
789 break; | |
790 case 10: | |
791 v4->field_1E = 1023; | |
792 break; | |
793 case 11: | |
794 v4->field_1E = 2047; | |
795 break; | |
796 case 12: | |
797 v4->field_1E = 4095; | |
798 break; | |
799 default: | |
800 break; | |
801 } | |
802 v11 = 128; | |
803 if ( header2.planes == 3 ) | |
804 { | |
805 v27 = 0; | |
806 if ( (signed int)v28 > 0 ) | |
807 { | |
808 v28 = pOutPixels; | |
809 do | |
810 { | |
811 v12 = v28; | |
812 v13 = 0; | |
813 if ( header2.pitch ) | |
814 { | |
815 do | |
816 { | |
817 LOBYTE(v8) = pPcx[v11]; | |
818 v14 = v11 + 1; | |
819 pOutPixelsa = v14; | |
820 if ( (v8 & 0xC0) == -64 ) | |
821 { | |
822 pOutPixelsa = v14 + 1; | |
823 v15 = pPcx[v14]; | |
824 if ( (signed int)(v8 & 0x3F) > 0 ) | |
825 { | |
826 v26 = v8 & 0x3F; | |
827 do | |
828 { | |
829 ++v13; | |
830 *v12 = LOWORD(pRenderer->uTargetRMask) & ((unsigned __int8)v15 << (LOBYTE(pRenderer->uTargetGBits) | |
831 + LOBYTE(pRenderer->uTargetRBits) | |
832 + LOBYTE(pRenderer->uTargetBBits) | |
833 - 8)); | |
834 ++v12; | |
835 if ( v13 == (unsigned __int16)header2.pitch ) | |
836 v12 = &v12[uNumPixels - (unsigned __int16)header2.pitch - 1]; | |
837 --v26; | |
838 } | |
839 while ( v26 ); | |
840 } | |
841 } | |
842 else | |
843 { | |
844 LOWORD(v8) = (unsigned __int8)v8; | |
845 v8 = pRenderer->uTargetRMask & (v8 << (LOBYTE(pRenderer->uTargetGBits) | |
846 + LOBYTE(pRenderer->uTargetRBits) | |
847 + LOBYTE(pRenderer->uTargetBBits) | |
848 - 8)); | |
849 ++v13; | |
850 *v12 = v8; | |
851 ++v12; | |
852 } | |
853 v11 = pOutPixelsa; | |
854 } | |
855 while ( v13 < (unsigned __int16)header2.pitch ); | |
856 } | |
857 v16 = v28; | |
858 while ( v13 < 2 * (unsigned __int16)header2.pitch ) | |
859 { | |
860 LOBYTE(v8) = pPcx[v11]; | |
861 v17 = v11 + 1; | |
862 pOutPixelsb = v17; | |
863 if ( (v8 & 0xC0) == -64 ) | |
864 { | |
865 pOutPixelsb = v17 + 1; | |
866 v18 = pPcx[v17]; | |
867 if ( (signed int)(v8 & 0x3F) > 0 ) | |
868 { | |
869 v26 = v8 & 0x3F; | |
870 do | |
871 { | |
872 *v16 |= pRenderer->uTargetGMask & (unsigned __int16)((unsigned __int8)v18 << (LOBYTE(pRenderer->uTargetGBits) | |
873 + LOBYTE(pRenderer->uTargetBBits) | |
874 - 8)); | |
875 ++v13; | |
876 ++v16; | |
877 if ( v13 == (unsigned __int16)header2.pitch ) | |
878 v16 = &v16[uNumPixels - (unsigned __int16)header2.pitch - 1]; | |
879 --v26; | |
880 } | |
881 while ( v26 ); | |
882 } | |
883 } | |
884 else | |
885 { | |
886 LOWORD(v8) = (unsigned __int8)v8; | |
887 v8 = pRenderer->uTargetGMask & (v8 << (LOBYTE(pRenderer->uTargetGBits) + LOBYTE(pRenderer->uTargetBBits) - 8)); | |
888 *v16 |= v8; | |
889 ++v13; | |
890 ++v16; | |
891 } | |
892 v11 = pOutPixelsb; | |
893 } | |
894 v19 = v28; | |
895 while ( v13 < 3 * (unsigned __int16)header2.pitch ) | |
896 { | |
897 v20 = pPcx[v11++]; | |
898 if ( (v20 & 0xC0) == -64 ) | |
899 { | |
900 v21 = v20 & 0x3F; | |
901 v22 = pPcx[v11++]; | |
902 if ( (signed int)v21 > 0 ) | |
903 { | |
904 v26 = v21; | |
905 do | |
906 { | |
907 *v19 |= v22 >> (8 - LOBYTE(pRenderer->uTargetBBits)); | |
908 ++v13; | |
909 ++v19; | |
910 if ( v13 == (unsigned __int16)header2.pitch ) | |
911 { | |
912 v8 = uNumPixels - (unsigned __int16)header2.pitch; | |
913 v19 = &v19[uNumPixels - (unsigned __int16)header2.pitch - 1]; | |
914 } | |
915 --v26; | |
916 } | |
917 while ( v26 ); | |
918 } | |
919 } | |
920 else | |
921 { | |
922 *v19 |= v20 >> (8 - LOBYTE(pRenderer->uTargetBBits)); | |
923 ++v13; | |
924 ++v19; | |
925 } | |
926 } | |
927 ++v27; | |
928 v28 += uNumPixels; | |
929 } | |
930 while ( v27 < v4->uHeight ); | |
931 } | |
932 } | |
933 result = 0; | |
934 } | |
935 else | |
936 { | |
937 result = 3; | |
938 } | |
939 return result; | |
940 */ | |
941 } | |
942 | |
943 //----- (0040EAD8) -------------------------------------------------------- | |
944 unsigned int RGBTexture::LoadFromFILE(FILE *pFile, unsigned int mode, unsigned int bCloseFile) | |
945 { | |
946 // signed int result; // eax@2 | |
947 // unsigned char test_byte; // edx@3 | |
948 //unsigned int read_offset; // ebx@37 | |
949 // unsigned int row_position; // edi@40 | |
950 // unsigned char value; // cl@63 | |
951 // char count; // [sp+50h] [bp-Ch]@43 | |
952 // unsigned short current_line; // [sp+54h] [bp-8h]@38 | |
953 // unsigned short *dec_position; | |
954 // unsigned short *temp_dec_position; | |
955 PCXHeader1 psx_head1; | |
956 PCXHeader2 psx_head2; | |
957 // short int width, height; | |
958 BYTE color_map[48]; // Colormap for 16-color images | |
959 | |
960 unsigned int num_r_bits = 5; | |
961 unsigned int num_g_bits = 6; | |
962 unsigned int num_b_bits = 5; | |
963 | |
964 unsigned int r_mask = 0xF800; | |
965 unsigned int g_mask = 0x07E0; | |
966 unsigned int b_mask = 0x001F; | |
967 | |
968 if (!pFile) | |
969 return 1; | |
970 | |
971 | |
972 fread(&psx_head1, 1, 16, pFile); | |
973 fread(&color_map, 1, 48, pFile); | |
974 fread(&psx_head2, 1, 6, pFile); | |
975 | |
976 if (psx_head1.bpp!=8) | |
977 return 3; | |
978 uWidth=(short int )(psx_head1.right-psx_head1.left+1); // word @ 000014 | |
979 uHeight=(short int )(psx_head1.bottom-psx_head1.up+1); // word @ 000016 | |
980 | |
981 | |
982 uNumPixels=uWidth*uHeight; // dword @ 000010 | |
983 | |
984 | |
985 if ( mode == 0 ) | |
986 { | |
987 free(pPixels); | |
988 pPixels = (unsigned __int16 *)malloc(2 * uNumPixels + 4); | |
989 } | |
990 else | |
991 { | |
992 if ( mode != 1 && mode == 2 ) | |
993 { | |
994 pPixels = (unsigned __int16 *)malloc((uNumPixels + 2) * sizeof(unsigned __int16)); | |
995 _allocation_flags |= 1; | |
996 } | |
997 } | |
998 | |
999 ushort* pOutPixels = pPixels; | |
1000 | |
1001 memset(pOutPixels, 0, uNumPixels * sizeof(__int16)); | |
1002 | |
1003 short i=1; | |
1004 while ( (1<<i) !=uWidth) | |
1005 { | |
1006 ++i; | |
1007 if (i >= 15) | |
1008 break; | |
1009 } | |
1010 field_18=i; | |
1011 short i_=1; | |
1012 while ( (1<<i_) !=uHeight) | |
1013 { | |
1014 ++i_; | |
1015 if (i_ >= 15) | |
1016 break; | |
1017 } | |
1018 field_1A=i_; | |
1019 switch (field_18) | |
1020 { | |
1021 case 2: field_1C = 3; break; | |
1022 case 3: field_1C = 7; break; | |
1023 case 4: field_1C = 15; break; | |
1024 case 5: field_1C = 31; break; | |
1025 case 6: field_1C = 63; break; | |
1026 case 7: field_1C = 127; break; | |
1027 case 8: field_1C = 255; break; | |
1028 case 9: field_1C = 511; break; | |
1029 case 10: field_1C = 1023; break; | |
1030 case 11: field_1C = 2047; break; | |
1031 case 12: field_1C = 4095; break; | |
1032 } | |
1033 | |
1034 switch (field_1A) | |
1035 { | |
1036 case 2: field_1E = 3; break; | |
1037 case 3: field_1E = 7; break; | |
1038 case 4: field_1E = 15; break; | |
1039 case 5: field_1E = 31; break; | |
1040 case 6: field_1E = 63; break; | |
1041 case 7: field_1E = 127; break; | |
1042 case 8: field_1E = 255; break; | |
1043 case 9: field_1E = 511; break; | |
1044 case 10: field_1E = 1023; break; | |
1045 case 11: field_1E = 2047; break; | |
1046 case 12: field_1E = 4095; break; | |
1047 } | |
1048 | |
1049 fseek(pFile, 128 - 70, SEEK_CUR); | |
1050 | |
1051 | |
1052 for (uint y = 0; y < uHeight; ++y) | |
1053 { | |
1054 unsigned __int16 *pDst = pPixels + y * uWidth; | |
1055 | |
1056 uint x = 0; | |
1057 do | |
1058 { | |
1059 uint ctrl = 0; | |
1060 fread(&ctrl, 1, 1, pFile); | |
1061 if ((ctrl & 0xC0) == 0xC0) | |
1062 { | |
1063 uint uNumPixels = ctrl & 0x3F; | |
1064 uint clr = 0; | |
1065 fread(&clr, 1, 1, pFile); | |
1066 for (uint i = 0; i < uNumPixels; ++i) | |
1067 pDst[x++] = r_mask & (clr << (num_g_bits + num_r_bits + num_b_bits - 8)); | |
1068 } | |
1069 else | |
1070 { | |
1071 pDst[x++] = r_mask & (ctrl << (num_g_bits + num_r_bits + num_b_bits - 8)); | |
1072 } | |
1073 } while (x < psx_head2.pitch); | |
1074 | |
1075 x = 0; | |
1076 do | |
1077 { | |
1078 uint ctrl = 0; | |
1079 fread(&ctrl, 1, 1, pFile); | |
1080 if ((ctrl & 0xC0) == 0xC0) | |
1081 { | |
1082 uint uNumPixels = ctrl & 0x3F; | |
1083 uint clr = 0; | |
1084 fread(&clr, 1, 1, pFile); | |
1085 for (uint i = 0; i < uNumPixels; ++i) | |
1086 pDst[x++] |= g_mask & (clr << (num_g_bits + num_b_bits - 8)); | |
1087 } | |
1088 else | |
1089 { | |
1090 pDst[x++] |= g_mask & (ctrl << (num_g_bits + num_b_bits - 8)); | |
1091 } | |
1092 } while (x < psx_head2.pitch); | |
1093 | |
1094 x = 0; | |
1095 do | |
1096 { | |
1097 uint ctrl = 0; | |
1098 fread(&ctrl, 1, 1, pFile); | |
1099 if ((ctrl & 0xC0) == 0xC0) | |
1100 { | |
1101 uint uNumPixels = ctrl & 0x3F; | |
1102 uint clr = 0; | |
1103 fread(&clr, 1, 1, pFile); | |
1104 for (uint i = 0; i < uNumPixels; ++i) | |
1105 pDst[x++] |= b_mask & (clr >> (8 - num_b_bits)); | |
1106 } | |
1107 else | |
1108 { | |
1109 pDst[x++] |= b_mask & (ctrl >> (8 - num_b_bits)); | |
1110 } | |
1111 } while (x < psx_head2.pitch); | |
1112 } | |
1113 | |
1114 if (bCloseFile) | |
1115 fclose(pFile); | |
1116 return 0; | |
1117 } | |
1118 | |
1119 //----- (0040E51F) -------------------------------------------------------- | |
1120 void RGBTexture::Release() | |
1121 { | |
1122 this->pName[0] = 0; | |
1123 //if ( !(this->_allocation_flags & 1) ) | |
1124 //free(this->pPixels); | |
1125 //else | |
2518 | 1126 //free(this->pPixels); |
1127 if (this->pPixels) | |
2496 | 1128 free(this->pPixels); |
1129 this->_allocation_flags = 0; | |
1130 this->pPixels = 0; | |
1131 this->uNumPixels = 0; | |
1132 this->uHeight = 0; | |
1133 this->uWidth = 0; | |
1134 this->field_1A = 0; | |
1135 this->field_18 = 0; | |
2518 | 1136 |
1137 if (d3d11_srv) | |
2524 | 1138 { |
1139 if (d3d11_desc) | |
1140 { | |
1141 delete d3d11_desc; | |
1142 d3d11_desc = nullptr; | |
1143 } | |
1144 | |
1145 extern void d3d11_release(struct ID3D11ShaderResourceView *); | |
1146 d3d11_release(d3d11_srv); | |
1147 d3d11_srv = nullptr; | |
1148 } | |
2496 | 1149 } |
1150 | |
1151 //----- (0040E55E) -------------------------------------------------------- | |
1152 int RGBTexture::LoadPCXFile(const char *Filename, unsigned int a3) | |
1153 { | |
1154 signed int result; // eax@2 | |
1155 char *v6; // eax@3 | |
1156 int v7; // edx@3 | |
1157 char v8; // cl@4 | |
1158 signed int v14; // ecx@19 | |
1159 signed int v15; // ecx@24 | |
1160 // int v16; // eax@57 | |
1161 // unsigned __int16 *v17; // ecx@57 | |
1162 // unsigned __int16 *v18; // edi@57 | |
1163 // signed int x; // eax@59 | |
1164 // unsigned __int16 *v20; // edi@64 | |
1165 // signed int v21; // eax@66 | |
1166 // unsigned __int16 *v22; // edi@71 | |
1167 // signed int v23; // eax@73 | |
1168 // int v24; // eax@78 | |
1169 char v25[48]; // [sp+Ch] [bp-54h]@3 | |
1170 PCXHeader1 pcx_header1; | |
1171 PCXHeader2 pcx_header2; | |
1172 int y; // [sp+54h] [bp-Ch]@3 | |
1173 FILE *File; // [sp+5Ch] [bp-4h]@1 | |
1174 | |
1175 unsigned int num_r_bits = 5; | |
1176 unsigned int num_g_bits = 6; | |
1177 unsigned int num_b_bits = 5; | |
1178 | |
1179 unsigned int r_mask = 0xF800; | |
1180 unsigned int g_mask = 0x07E0; | |
1181 unsigned int b_mask = 0x001F; | |
1182 | |
1183 | |
1184 File = fopen(Filename, "rb"); | |
1185 if ( !File ) | |
1186 return 1; | |
1187 | |
1188 fread(&pcx_header1, sizeof(pcx_header1), 1, File); | |
1189 fread(&v25,48,1,File); | |
1190 fread(&pcx_header2, 4, 1, File); | |
1191 | |
1192 v6 = (char *)Filename; | |
1193 v7 = (char *)this - Filename; | |
1194 uint i = 0; | |
1195 for ( i; i < 15; ++i ) | |
1196 { | |
1197 v8 = *v6; | |
1198 if ( !*v6 ) | |
1199 break; | |
1200 if ( v8 == 46 ) | |
1201 break; | |
1202 (v6++)[v7] = v8; | |
1203 } | |
1204 this->pName[i] = 0; | |
1205 if ( pcx_header1.bpp != 8 ) | |
1206 return 3; | |
1207 this->uWidth = pcx_header1.right - pcx_header1.left + 1; | |
1208 this->uHeight = pcx_header1.bottom - pcx_header1.up + 1; | |
1209 this->uNumPixels = (signed __int16)this->uWidth * (signed __int16)this->uHeight; | |
1210 if ( !a3 ) | |
1211 { | |
1212 free(this->pPixels); | |
1213 this->pPixels = (unsigned __int16 *)malloc(2 * this->uNumPixels + 4); | |
1214 } | |
1215 if ( a3 == 2 ) | |
1216 { | |
1217 this->_allocation_flags |= 1; | |
1218 this->pPixels = (unsigned __int16 *)malloc((uNumPixels + 2) * sizeof(unsigned __int16)); | |
1219 } | |
1220 if ( this->pPixels ) | |
1221 { | |
1222 for ( v14 = 1; v14 < 15; ++v14 ) | |
1223 { | |
1224 if ( 1 << v14 == this->uWidth ) | |
1225 this->field_18 = v14; | |
1226 } | |
1227 for ( v15 = 1; v15 < 15; ++v15 ) | |
1228 { | |
1229 if ( 1 << v15 == this->uHeight ) | |
1230 this->field_1A = v15; | |
1231 } | |
1232 switch ( this->field_18 ) | |
1233 { | |
1234 case 2: this->field_1C = 3; break; | |
1235 case 3: this->field_1C = 7; break; | |
1236 case 4: this->field_1C = 15; break; | |
1237 case 5: this->field_1C = 31; break; | |
1238 case 6: this->field_1C = 63; break; | |
1239 case 7: this->field_1C = 127; break; | |
1240 case 8: this->field_1C = 255; break; | |
1241 case 9: this->field_1C = 511; break; | |
1242 case 10: this->field_1C = 1023; break; | |
1243 case 11: this->field_1C = 2047; break; | |
1244 case 12: this->field_1C = 4095; break; | |
1245 default: break; | |
1246 } | |
1247 switch ( this->field_1A ) | |
1248 { | |
1249 case 2: this->field_1E = 3; break; | |
1250 case 3: this->field_1E = 7; break; | |
1251 case 4: this->field_1E = 15; break; | |
1252 case 5: this->field_1E = 31; break; | |
1253 case 6: this->field_1E = 63; break; | |
1254 case 7: this->field_1E = 127; break; | |
1255 case 8: this->field_1E = 255; break; | |
1256 case 9: this->field_1E = 511; break; | |
1257 case 10: this->field_1E = 1023; break; | |
1258 case 11: this->field_1E = 2047; break; | |
1259 case 12: this->field_1E = 4095; break; | |
1260 default: break; | |
1261 } | |
1262 fseek(File, 128, 0); | |
1263 ftell(File); | |
1264 if ( pcx_header2.planes == 1 ) | |
1265 Error("24bit PCX Only!"); | |
1266 | |
1267 if ( pcx_header2.planes == 3 ) | |
1268 { | |
1269 for ( y = 0; y < this->uHeight; ++y ) | |
1270 { | |
1271 unsigned __int16 *pDst = pPixels + y * uWidth; | |
1272 uint x = 0; | |
1273 do | |
1274 { | |
1275 uint ctrl = 0; | |
1276 fread(&ctrl, 1, 1, File); | |
1277 if ( (ctrl & 0xC0) == 0xC0 ) | |
1278 { | |
1279 uint uNumPixels = ctrl & 0x3F; | |
1280 uint clr = 0; | |
1281 ctrl &= 0x3F; | |
1282 fread(&clr, 1, 1, File); | |
1283 for ( uint i = 0; i < uNumPixels; ++i ) | |
1284 pDst[x++] = r_mask & (clr << (num_r_bits + num_g_bits + num_b_bits - 8)); | |
1285 } | |
1286 else | |
1287 pDst[x++] = r_mask & (ctrl << (num_g_bits + num_r_bits + num_b_bits - 8)); | |
1288 } | |
1289 while ( x < pcx_header2.pitch ); | |
1290 | |
1291 x = 0; | |
1292 do | |
1293 { | |
1294 uint ctrl = 0; | |
1295 fread(&ctrl, 1, 1, File); | |
1296 if ( (ctrl & 0xC0) == 0xC0 ) | |
1297 { | |
1298 uint uNumPixels = ctrl & 0x3F; | |
1299 uint clr = 0; | |
1300 ctrl &= 0x3F; | |
1301 fread(&clr, 1, 1, File); | |
1302 for ( uint i = 0; i < uNumPixels; ++i ) | |
1303 pDst[x++] |= g_mask & (clr << (num_g_bits + num_b_bits - 8)); | |
1304 } | |
1305 else | |
1306 pDst[x++] |= g_mask & (ctrl << (num_g_bits + num_b_bits - 8)); | |
1307 } | |
1308 while (x < pcx_header2.pitch); | |
1309 | |
1310 x = 0; | |
1311 do | |
1312 { | |
1313 uint ctrl = 0; | |
1314 fread(&ctrl, 1, 1, File); | |
1315 if ( (ctrl & 0xC0) == 0xC0 ) | |
1316 { | |
1317 uint uNumPixels = ctrl & 0x3F; | |
1318 uint clr = 0; | |
1319 fread(&clr, 1, 1, File); | |
1320 for ( uint i = 0; i < uNumPixels; ++i ) | |
1321 pDst[x++] |= b_mask & (clr >> (8 - num_b_bits)); | |
1322 } | |
1323 else | |
1324 pDst[x++] |= b_mask & (ctrl >> (8 - num_b_bits)); | |
1325 } | |
1326 while (x < pcx_header2.pitch); | |
1327 } | |
1328 } | |
1329 fclose(File); | |
1330 result = 0; | |
1331 } | |
1332 else | |
1333 { | |
1334 result = 2; | |
1335 } | |
1336 return result; | |
1337 } | |
1338 | |
1339 //----- (0040D73D) -------------------------------------------------------- | |
1340 RGBTexture::RGBTexture() | |
1341 { | |
1342 pName[0] = 0; | |
1343 pPixels = 0; | |
1344 uNumPixels = 0; | |
1345 uHeight = 0; | |
1346 uWidth = 0; | |
1347 field_1A = 0; | |
1348 field_18 = 0; | |
1349 _allocation_flags = 0; | |
2518 | 1350 |
1351 d3d11_srv = nullptr; | |
1352 d3d11_desc = nullptr; | |
2496 | 1353 } |
1354 //----- (0044E1EC) -------------------------------------------------------- | |
1355 int TextureFrameTable::FromFileTxt(const char *Args) | |
1356 { | |
1357 TextureFrameTable *v2; // ebx@1 | |
1358 FILE *v3; // eax@1 | |
1359 int v4; // esi@3 | |
1360 const void *v5; // ST0C_4@10 | |
1361 void *v6; // eax@10 | |
1362 FILE *v7; // ST0C_4@12 | |
1363 char *i; // eax@12 | |
1364 signed int v9; // esi@15 | |
1365 int v10; // eax@17 | |
1366 int v11; // edx@22 | |
1367 int v12; // ecx@23 | |
1368 int v13; // eax@24 | |
1369 signed int j; // eax@27 | |
1370 TextureFrame *v15; // edx@28 | |
1371 int v16; // esi@28 | |
1372 int k; // ecx@29 | |
1373 char Buf; // [sp+Ch] [bp-2F8h]@3 | |
1374 FrameTableTxtLine v20; // [sp+200h] [bp-104h]@4 | |
1375 int v21; // [sp+27Ch] [bp-88h]@4 | |
1376 char *Str1; // [sp+280h] [bp-84h]@5 | |
1377 char *Str; // [sp+284h] [bp-80h]@15 | |
1378 int v24; // [sp+2F8h] [bp-Ch]@3 | |
1379 int v25; // [sp+2FCh] [bp-8h]@3 | |
1380 FILE *File; // [sp+300h] [bp-4h]@1 | |
1381 int Argsa; // [sp+30Ch] [bp+8h]@28 | |
1382 | |
1383 v2 = this; | |
1384 v3 = fopen(Args, "r"); | |
1385 File = v3; | |
1386 if ( !v3 ) | |
1387 Error("CTextureFrameTable::load - Unable to open file: %s.", Args); | |
1388 | |
1389 v4 = 0; | |
1390 v24 = 0; | |
1391 v25 = 1; | |
1392 if ( fgets(&Buf, 490, v3) ) | |
1393 { | |
1394 do | |
1395 { | |
1396 *strchr(&Buf, 10) = 0; | |
1397 memcpy(&v21, txt_file_frametable_parser(&Buf, &v20), 0x7Cu); | |
1398 __debugbreak(); // warning C4700: uninitialized local variable 'Str1' used | |
1399 if ( v21 && *Str1 != 47 ) | |
1400 { | |
1401 if ( v21 < 2 ) | |
1402 Error("CTextureFrameTable::load, too few arguments, %s line %i.", Args, v25); | |
1403 ++v24; | |
1404 } | |
1405 ++v25; | |
1406 } | |
1407 while ( fgets(&Buf, 490, File) ); | |
1408 v4 = v24; | |
1409 } | |
1410 v5 = v2->pTextures; | |
1411 v2->sNumTextures = v4; | |
1412 v6 = malloc(20 * v4); | |
1413 v2->pTextures = (TextureFrame *)v6; | |
1414 if ( !v6 ) | |
1415 Error("CTextureFrameTable::load - Out of Memory!"); | |
1416 v7 = File; | |
1417 v2->sNumTextures = 0; | |
1418 fseek(v7, 0, 0); | |
1419 for ( i = fgets(&Buf, 490, File); i; i = fgets(&Buf, 490, File) ) | |
1420 { | |
1421 *strchr(&Buf, 10) = 0; | |
1422 memcpy(&v21, txt_file_frametable_parser(&Buf, &v20), 0x7Cu); | |
1423 if ( v21 && *Str1 != 47 ) | |
1424 { | |
1425 strcpy(v2->pTextures[v2->sNumTextures].pTextureName, Str1); | |
1426 __debugbreak(); // warning C4700: uninitialized local variable 'Str' used | |
1427 v2->pTextures[v2->sNumTextures].uAnimTime = atoi(Str); | |
1428 v9 = 2; | |
1429 for ( v2->pTextures[v2->sNumTextures].uFlags = 0; v9 < v21; ++v9 ) | |
1430 { | |
1431 if ( !_stricmp((&Str1)[4 * v9], "New") ) | |
1432 { | |
1433 //v10 = (int)&v2->pTextures[v2->sNumTextures].uFlags; | |
1434 v2->pTextures[v2->sNumTextures].uFlags |= 2; | |
1435 } | |
1436 } | |
1437 ++v2->sNumTextures; | |
1438 } | |
1439 } | |
1440 fclose(File); | |
1441 v11 = 0; | |
1442 if ( (signed int)(v2->sNumTextures - 1) > 0 ) | |
1443 { | |
1444 v12 = 0; | |
1445 do | |
1446 { | |
1447 v13 = (int)&v2->pTextures[v12]; | |
1448 if ( !(*(char *)(v13 + 38) & 2) ) | |
1449 *(char *)(v13 + 18) |= 1u; | |
1450 ++v11; | |
1451 ++v12; | |
1452 } | |
1453 while ( v11 < (signed int)(v2->sNumTextures - 1) ); | |
1454 } | |
1455 for ( j = 0; j < (signed int)v2->sNumTextures; *(short *)(Argsa + 16) = v16 ) | |
1456 { | |
1457 v15 = v2->pTextures; | |
1458 Argsa = (int)&v15[j]; | |
1459 v16 = *(short *)(Argsa + 14); | |
1460 if ( *(char *)(Argsa + 18) & 1 ) | |
1461 { | |
1462 ++j; | |
1463 for ( k = (int)&v15[j]; *(char *)(k + 18) & 1; k += 20 ) | |
1464 { | |
1465 v16 += *(short *)(k + 14); | |
1466 ++j; | |
1467 } | |
1468 LOWORD(v16) = v15[j].uAnimTime + v16; | |
1469 } | |
1470 ++j; | |
1471 } | |
1472 return 1; | |
1473 } | |
1474 | |
1475 //----- (00451007) -------------------------------------------------------- | |
1476 int stru350::sub_451007_scale_image_bicubic(unsigned short *pSrc, int srcWidth, int srcHeight, int srcPitch, //changing this to some library function might be a good idea | |
1477 unsigned short *pDst, int dstWidth, int dstHeight, int dstPitch, | |
1478 int a10, int a11) | |
1479 { | |
1480 int result; // eax@1 | |
1481 float v17; // ST3C_4@12 | |
1482 float v18; // ST38_4@12 | |
1483 unsigned int v19; // esi@12 | |
1484 int v21; // eax@18 | |
1485 unsigned int v22; // ecx@25 | |
1486 unsigned int v23; // eax@29 | |
1487 unsigned int heightRatioPlusOne; // [sp+Ch] [bp-7Ch]@12 | |
1488 unsigned int widthRatio; // [sp+Ch] [bp-7Ch]@218 | |
1489 unsigned int heightRatio; // [sp+14h] [bp-74h]@12 | |
1490 unsigned int widthRatioPlusOne; // [sp+14h] [bp-74h]@218 | |
1491 // int v160; // [sp+3Ch] [bp-4Ch]@13 | |
1492 unsigned __int16 *v175; // [sp+4Ch] [bp-3Ch]@13 | |
1493 unsigned __int16 *v193; // [sp+5Ch] [bp-2Ch]@7 | |
1494 //signed int v231; // [sp+78h] [bp-10h]@7 | |
1495 __int64 v240; // [sp+7Ch] [bp-Ch]@12 | |
1496 unsigned int v251; // [sp+80h] [bp-8h]@218 | |
1497 unsigned int v252; // [sp+84h] [bp-4h]@218 | |
1498 float a6s; // [sp+A0h] [bp+18h]@218 | |
1499 float a6t; // [sp+A0h] [bp+18h]@218 | |
1500 unsigned int a6b; // [sp+A0h] [bp+18h]@218 | |
1501 int field_0_bits; | |
1502 int field_20_bits; | |
1503 | |
1504 int field0value = this->field_0.field_C; | |
1505 switch (field0value) | |
1506 { | |
1507 case 8: field_0_bits = 1; | |
1508 break; | |
1509 case 16: field_0_bits = 2; | |
1510 break; | |
1511 case 32: field_0_bits = 4; | |
1512 break; | |
1513 default: | |
1514 return field0value; | |
1515 } | |
1516 int field20value = this->field_20.field_C; | |
1517 switch (field20value) | |
1518 { | |
1519 case 8: field_20_bits = 1; | |
1520 break; | |
1521 case 16: field_20_bits = 2; | |
1522 break; | |
1523 case 32: field_20_bits = 4; | |
1524 break; | |
1525 default: | |
1526 return field20value; | |
1527 } | |
1528 | |
1529 result = (int)pDst; | |
1530 v193 = pDst; | |
1531 if (dstHeight <= 0) | |
1532 return result; | |
1533 | |
1534 //do | |
1535 for (int height = 0; height < dstHeight; height++) | |
1536 { | |
1537 for (int width = 0; width < dstWidth; width++) | |
1538 { | |
1539 a6s = (double)width / (double)dstWidth * (double)srcWidth; | |
1540 widthRatio = bankersRounding(a6s); | |
1541 a6t = (double)(width + 1) / (double)dstWidth * (double)srcWidth; | |
1542 widthRatioPlusOne = bankersRounding(a6t); | |
1543 | |
1544 v17 = (double)height / (double)dstHeight * (double)srcHeight; | |
1545 heightRatio = bankersRounding(v17); | |
1546 v18 = (double)(height + 1) / (double)dstHeight * (double)srcHeight; | |
1547 heightRatioPlusOne = bankersRounding(v18); | |
1548 | |
1549 v251 = 0; | |
1550 v19 = (heightRatioPlusOne - heightRatio) * (widthRatioPlusOne - widthRatio); | |
1551 v252 = 0; | |
1552 a6b = 0; | |
1553 v240 = 0i64; | |
1554 | |
1555 v175 = (unsigned short*)((char *)pSrc + field_0_bits * (widthRatio + srcPitch * heightRatio)); | |
1556 for (int heightDiff = 0; heightDiff < heightRatioPlusOne - heightRatio; heightDiff++) | |
1557 { | |
1558 //int ratioDiff = widthRatioPlusOne - widthRatio; | |
1559 for (int ratioDiff = 0; ratioDiff < widthRatioPlusOne - widthRatio; ratioDiff++) | |
1560 { | |
1561 if (field0value == 32) | |
1562 v21 = _450FB1(((int*)v175)[ratioDiff]); | |
1563 else if (field0value == 16) | |
1564 v21 = _450FB1(((_WORD*)v175)[ratioDiff]); | |
1565 else if (field0value == 8) | |
1566 v21 = _450FB1(((unsigned __int8*)v175)[ratioDiff]); | |
1567 v240 += ((unsigned int)v21 >> 24); | |
1568 a6b += BYTE2(v21); | |
1569 v252 += BYTE1(v21); | |
1570 v251 += (unsigned __int8)v21; | |
1571 } | |
1572 if (field0value == 32) | |
1573 v175 += 2 * srcPitch; | |
1574 else if (field0value == 16) | |
1575 v175 += srcPitch; | |
1576 else if (field0value == 8) | |
1577 v175 = (unsigned short*)((char *)v175 + 2 * srcPitch); | |
1578 } | |
1579 | |
1580 v22 = (unsigned int)v240 / ((heightRatioPlusOne - heightRatio) * (widthRatioPlusOne - widthRatio)); | |
1581 if (v19) | |
1582 { | |
1583 a6b /= v19; | |
1584 v252 /= v19; | |
1585 v251 /= v19; | |
1586 } | |
1587 if (v22 != 255) | |
1588 v22 &= 0x7FFFFFFFu; | |
1589 v23 = _450F55(v251 | ((v252 | ((a6b | (v22 << 8)) << 8)) << 8)); | |
1590 *(_DWORD *)v193 = v23; //Invalid memory access | |
1591 v193 = (unsigned __int16 *)((char *)v193 + field_20_bits); | |
1592 } | |
1593 v193 = (unsigned __int16 *)((char *)v193 + field_20_bits * (dstPitch - dstWidth)); | |
1594 //++v231; | |
1595 result = height; | |
1596 } | |
1597 //while(v231 < dstHeight); | |
1598 return result; | |
1599 } | |
1600 | |
1601 | |
1602 //----- (00450DDE) -------------------------------------------------------- | |
1603 stru350 *stru350::_450DDE() | |
1604 { | |
1605 _450DF1(&stru_4E82A4, &stru_4E82A4); | |
1606 return this; | |
1607 } | |
1608 | |
1609 //----- (00450DF1) -------------------------------------------------------- | |
1610 bool stru350::_450DF1(const stru355 *p1, const stru355 *p2) | |
1611 { | |
1612 //stru350 *v3; // esi@1 | |
1613 //void *result; // eax@1 | |
1614 unsigned int v5; // ecx@2 | |
1615 int v6; // edi@2 | |
1616 int v7; // edx@2 | |
1617 unsigned int v8; // ecx@8 | |
1618 int v9; // edi@8 | |
1619 int v10; // edx@8 | |
1620 int v11; // ecx@12 | |
1621 int v12; // edi@12 | |
1622 unsigned int v13; // ecx@12 | |
1623 int v14; // edx@12 | |
1624 int v15; // ecx@16 | |
1625 unsigned int v16; // edx@16 | |
1626 int v17; // ecx@16 | |
1627 int v18; // edi@16 | |
1628 char v19; // zf@20 | |
1629 unsigned int v20; // ecx@21 | |
1630 int v21; // edi@21 | |
1631 int v22; // edx@21 | |
1632 unsigned int v23; // ecx@27 | |
1633 int v24; // edi@27 | |
1634 int v25; // edx@27 | |
1635 int v26; // ecx@31 | |
1636 int v27; // edi@31 | |
1637 unsigned int v28; // ecx@31 | |
1638 int v29; // edx@31 | |
1639 int v30; // ebx@35 | |
1640 int v31; // ecx@35 | |
1641 int v32; // edi@35 | |
1642 int v33; // edx@35 | |
1643 unsigned int i; // ecx@35 | |
1644 int v35; // ecx@39 | |
1645 unsigned int v36; // edx@39 | |
1646 int v37; // ecx@39 | |
1647 int v38; // ebx@39 | |
1648 | |
1649 //v3 = this; | |
1650 memcpy(&field_0, p1, sizeof(stru355)); | |
1651 memcpy(&field_20, p2, sizeof(stru355)); | |
1652 //result = memcpy(&v3->field_20, p2, 0x20u); | |
1653 //LOBYTE(result) = 1; | |
1654 if (field_0.field_4 & 1) | |
1655 { | |
1656 v5 = field_0.field_1C; | |
1657 v6 = 0; | |
1658 v7 = 0; | |
1659 while (!(v5 & 1)) | |
1660 { | |
1661 ++v6; | |
1662 v5 >>= 1; | |
1663 } | |
1664 do | |
1665 { | |
1666 v5 >>= 1; | |
1667 ++v7; | |
1668 } while (v5 & 1); | |
1669 field_40 = 32 - v7 - v6; | |
1670 } | |
1671 else | |
1672 { | |
1673 field_40 = 0; | |
1674 } | |
1675 v8 = field_0.field_10; | |
1676 v9 = 0; | |
1677 v10 = 0; | |
1678 while (!(v8 & 1)) | |
1679 { | |
1680 ++v9; | |
1681 v8 >>= 1; | |
1682 } | |
1683 do | |
1684 { | |
1685 v8 >>= 1; | |
1686 ++v10; | |
1687 } while (v8 & 1); | |
1688 v11 = 24 - v10 - v9; | |
1689 v12 = 0; | |
1690 field_48 = v11; | |
1691 v13 = field_0.field_14; | |
1692 v14 = 0; | |
1693 while (!(v13 & 1)) | |
1694 { | |
1695 ++v12; | |
1696 v13 >>= 1; | |
1697 } | |
1698 do | |
1699 { | |
1700 v13 >>= 1; | |
1701 ++v14; | |
1702 } while (v13 & 1); | |
1703 v15 = 16 - v14; | |
1704 v16 = field_0.field_18; | |
1705 field_50 = v15 - v12; | |
1706 v17 = 0; | |
1707 v18 = 0; | |
1708 while (!(v16 & 1)) | |
1709 { | |
1710 ++v17; | |
1711 v16 >>= 1; | |
1712 } | |
1713 do | |
1714 { | |
1715 v16 >>= 1; | |
1716 ++v18; | |
1717 } while (v16 & 1); | |
1718 v19 = (field_20.field_4 & 1) == 0; | |
1719 field_58 = v17 - v18 + 8; | |
1720 if (v19) | |
1721 { | |
1722 field_44 = 0; | |
1723 } | |
1724 else | |
1725 { | |
1726 v20 = field_20.field_1C; | |
1727 v21 = 0; | |
1728 v22 = 0; | |
1729 while (!(v20 & 1)) | |
1730 { | |
1731 ++v21; | |
1732 v20 >>= 1; | |
1733 } | |
1734 do | |
1735 { | |
1736 v20 >>= 1; | |
1737 ++v22; | |
1738 } while (v20 & 1); | |
1739 field_44 = 32 - v22 - v21; | |
1740 } | |
1741 v23 = field_20.field_10; | |
1742 v24 = 0; | |
1743 v25 = 0; | |
1744 while (!(v23 & 1)) | |
1745 { | |
1746 ++v24; | |
1747 v23 >>= 1; | |
1748 } | |
1749 do | |
1750 { | |
1751 v23 >>= 1; | |
1752 ++v25; | |
1753 } while (v23 & 1); | |
1754 v26 = 24 - v25 - v24; | |
1755 v27 = 0; | |
1756 field_4C = v26; | |
1757 v28 = field_20.field_14; | |
1758 v29 = 0; | |
1759 while (!(v28 & 1)) | |
1760 { | |
1761 ++v27; | |
1762 v28 >>= 1; | |
1763 } | |
1764 do | |
1765 { | |
1766 v28 >>= 1; | |
1767 ++v29; | |
1768 } while (v28 & 1); | |
1769 v30 = 0; | |
1770 v31 = 16 - v29 - v27; | |
1771 v32 = field_20.field_18; | |
1772 field_54 = v31; | |
1773 v33 = 0; | |
1774 for (i = v32; !(i & 1); i >>= 1) | |
1775 ++v30; | |
1776 do | |
1777 { | |
1778 i >>= 1; | |
1779 ++v33; | |
1780 } while (i & 1); | |
1781 v35 = 32 - v33; | |
1782 v36 = v32; | |
1783 field_5C = v35 - v30; | |
1784 v37 = 0; | |
1785 v38 = 0; | |
1786 while (!(v36 & 1)) | |
1787 { | |
1788 ++v37; | |
1789 v36 >>= 1; | |
1790 } | |
1791 do | |
1792 { | |
1793 v36 >>= 1; | |
1794 ++v38; | |
1795 } while (v36 & 1); | |
1796 field_5C = v37 - v38 + 8; | |
1797 return true; | |
1798 } | |
1799 | |
1800 //----- (00450F55) -------------------------------------------------------- | |
1801 unsigned int stru350::_450F55(int a2) | |
1802 { | |
1803 int v2 = a2 & stru_4E82A4.field_1C; | |
1804 if (field_20.field_4 & 1) | |
1805 v2 = (unsigned int)v2 >> this->field_44; | |
1806 return v2 & field_20.field_1C | | |
1807 field_20.field_10 & ((a2 & (unsigned int)stru_4E82A4.field_10) >> field_4C) | | |
1808 field_20.field_14 & ((a2 & (unsigned int)stru_4E82A4.field_14) >> field_54) | | |
1809 field_20.field_18 & ((a2 & (unsigned int)stru_4E82A4.field_18) >> field_5C); | |
1810 } | |
1811 | |
1812 //----- (00450FB1) -------------------------------------------------------- | |
1813 int stru350::_450FB1(int a2) | |
1814 { | |
1815 int v2 = 0; | |
1816 int v4 = field_0.field_4 & 1; | |
1817 if (v4) | |
1818 v2 = a2 & field_0.field_1C; | |
1819 if (v4) | |
1820 v2 <<= field_40; | |
1821 return v2 | ((a2 & field_0.field_10) << field_48) | ((a2 & field_0.field_14) << field_50) | ((a2 & field_0.field_18) << field_58); | |
1822 } | |
1823 | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1824 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1825 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1826 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1827 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1828 typedef bool (*ImageFormatConverter)(unsigned int num_pixels, const void *src, void *dst); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1829 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1830 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1831 unsigned __int32 R5G6B5_to_A8R8G8B8(unsigned __int16 color16, unsigned char alpha) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1832 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1833 unsigned __int32 c = color16; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1834 unsigned int b = (c & 31) * 8; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1835 unsigned int g = ((c >> 5) & 63) * 4; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1836 unsigned int r = ((c >> 11) & 31) * 8; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1837 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1838 return ((unsigned int)alpha << 24) | (r << 16) | (g << 8) | b; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1839 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1840 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1841 unsigned __int16 A8R8G8B8_to_R5G6B5(unsigned __int32 c) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1842 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1843 unsigned __int32 b = ((c & 0xFF) / 8) & 31; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1844 unsigned __int32 g = (((c >> 8) & 0xFF) / 4) & 63; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1845 unsigned __int32 r = (((c >> 16) & 0xFF) / 8) & 31; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1846 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1847 return (unsigned __int16)( |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1848 (r << 11) | (g << 5) | b |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1849 ); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1850 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1851 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1852 bool Image_A8R8G8B8_to_R5G6B5(unsigned int num_pixels, const void *src_pixels, void *dst_pixels) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1853 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1854 auto src = (unsigned __int32 *)src_pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1855 auto dst = (unsigned __int16 *)dst_pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1856 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1857 for (unsigned int i = 0; i < num_pixels; ++i) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1858 dst[i] = A8R8G8B8_to_R5G6B5(src[i]); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1859 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1860 return true; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1861 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1862 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1863 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1864 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1865 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1866 |
2574 | 1867 struct Image16bit_LOD_Loader : public ImageLoader |
1868 { | |
1869 inline Image16bit_LOD_Loader(LODFile_IconsBitmaps *lod, const wchar_t *name) | |
1870 { | |
1871 wcscpy(this->name, name); | |
1872 this->lod = lod; | |
1873 } | |
1874 | |
1875 virtual bool Load(unsigned int *width, unsigned int *height, void **pixels, IMAGE_FORMAT *format); | |
1876 | |
1877 wchar_t name[1024]; | |
1878 LODFile_IconsBitmaps *lod; | |
1879 }; | |
1880 | |
1881 | |
1882 bool Image16bit_LOD_Loader::Load(unsigned int *out_width, unsigned int *out_height, void **out_pixels, IMAGE_FORMAT *out_format) | |
1883 { | |
1884 *out_width = 0; | |
1885 *out_height = 0; | |
1886 *out_pixels = nullptr; | |
1887 *out_format = IMAGE_INVALID_FORMAT; | |
1888 | |
1889 char namea[1024]; | |
1890 sprintf(namea, "%S", name); | |
1891 | |
1892 auto tex = lod->GetTexture(lod->LoadTexture(namea, TEXTURE_16BIT_PALETTE)); | |
1893 if (tex->pBits & 512) | |
1894 Log::Warning(L"Alpha texture is loaded as Image16bit (%s)", name); | |
1895 | |
1896 if (tex->pPalette16 && tex->paletted_pixels) | |
1897 { | |
1898 auto palette = tex->pPalette16; | |
1899 auto paletted_pixels = tex->paletted_pixels; | |
1900 | |
1901 auto width = tex->uTextureWidth; | |
1902 auto height = tex->uTextureHeight; | |
1903 auto pixels = new unsigned __int16[width * height]; | |
1904 if (pixels) | |
1905 { | |
1906 for (unsigned int y = 0; y < height; ++y) | |
1907 for (unsigned int x = 0; x < width; ++x) | |
1908 { | |
1909 auto index = paletted_pixels[y * width + x]; | |
1910 auto pixel = tex->pPalette16[index]; | |
1911 | |
1912 pixels[y * width + x] = pixel; | |
1913 } | |
1914 *out_width = width; | |
1915 *out_height = height; | |
1916 *out_pixels = pixels; | |
1917 *out_format = IMAGE_FORMAT_R5G6B5; | |
1918 } | |
1919 } | |
1920 | |
1921 return *out_pixels != nullptr; | |
1922 } | |
1923 | |
1924 | |
1925 | |
1926 | |
1927 | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1928 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1929 struct Alpha_LOD_Loader : public ImageLoader |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1930 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1931 inline Alpha_LOD_Loader(LODFile_IconsBitmaps *lod, const wchar_t *name) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1932 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1933 wcscpy(this->name, name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1934 this->lod = lod; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1935 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1936 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1937 virtual bool Load(unsigned int *width, unsigned int *height, void **pixels, IMAGE_FORMAT *format); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1938 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1939 wchar_t name[1024]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1940 LODFile_IconsBitmaps *lod; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1941 }; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1942 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1943 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1944 bool Alpha_LOD_Loader::Load(unsigned int *out_width, unsigned int *out_height, void **out_pixels, IMAGE_FORMAT *out_format) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1945 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1946 *out_width = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1947 *out_height = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1948 *out_pixels = nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1949 *out_format = IMAGE_INVALID_FORMAT; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1950 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1951 char namea[1024]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1952 sprintf(namea, "%S", name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1953 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1954 auto tex = lod->GetTexture(lod->LoadTexture(namea, TEXTURE_16BIT_PALETTE)); |
2574 | 1955 if (~tex->pBits & 512) |
1956 Log::Warning(L"ColorKey texture is loaded as Alpha (%s)", name); | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1957 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1958 if (tex->pPalette16 && tex->paletted_pixels) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1959 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1960 auto palette = tex->pPalette16; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1961 auto paletted_pixels = tex->paletted_pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1962 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1963 auto width = tex->uTextureWidth; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1964 auto height = tex->uTextureHeight; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1965 auto pixels = new unsigned __int32[width * height]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1966 if (pixels) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1967 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1968 for (unsigned int y = 0; y < height; ++y) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1969 for (unsigned int x = 0; x < width; ++x) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1970 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1971 auto index = paletted_pixels[y * width + x]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1972 auto pixel = tex->pPalette16[index]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1973 if (index == 0) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1974 pixels[y * width + x] = 0x00000000; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1975 else |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1976 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1977 extern unsigned __int32 Color32(unsigned __int16 color16); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1978 pixels[y * width + x] = R5G6B5_to_A8R8G8B8(pixel, 255); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1979 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1980 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1981 *out_width = width; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1982 *out_height = height; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1983 *out_pixels = pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1984 *out_format = IMAGE_FORMAT_A8R8G8B8; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1985 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1986 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1987 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1988 return *out_pixels != nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1989 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1990 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1991 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1992 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1993 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1994 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1995 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1996 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1997 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1998 struct ColorKey_LOD_Loader : public ImageLoader |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
1999 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2000 inline ColorKey_LOD_Loader(LODFile_IconsBitmaps *lod, const wchar_t *name, unsigned __int16 colorkey) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2001 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2002 wcscpy(this->name, name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2003 this->colorkey = colorkey; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2004 this->lod = lod; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2005 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2006 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2007 virtual bool Load(unsigned int *width, unsigned int *height, void **pixels, IMAGE_FORMAT *format); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2008 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2009 wchar_t name[1024]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2010 unsigned __int16 colorkey; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2011 LODFile_IconsBitmaps *lod; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2012 }; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2013 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2014 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2015 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2016 bool ColorKey_LOD_Loader::Load(unsigned int *out_width, unsigned int *out_height, void **out_pixels, IMAGE_FORMAT *out_format) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2017 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2018 *out_width = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2019 *out_height = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2020 *out_pixels = nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2021 *out_format = IMAGE_INVALID_FORMAT; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2022 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2023 char namea[1024]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2024 sprintf(namea, "%S", name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2025 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2026 auto tex = lod->GetTexture(lod->LoadTexture(namea, TEXTURE_16BIT_PALETTE)); |
2574 | 2027 if (tex->pBits & 512) |
2028 Log::Warning(L"Alpha texture is loaded as ColorKey (%s)", name); | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2029 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2030 if (tex->pPalette16 && tex->paletted_pixels) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2031 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2032 auto palette = tex->pPalette16; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2033 auto paletted_pixels = tex->paletted_pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2034 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2035 auto width = tex->uTextureWidth; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2036 auto height = tex->uTextureHeight; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2037 auto pixels = new unsigned __int32[width * height]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2038 if (pixels) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2039 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2040 for (unsigned int y = 0; y < height; ++y) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2041 for (unsigned int x = 0; x < width; ++x) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2042 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2043 auto pixel = tex->pPalette16[paletted_pixels[y * width + x]]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2044 if (pixel == colorkey) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2045 pixels[y * width + x] = 0x00000000; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2046 else |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2047 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2048 extern unsigned __int32 Color32(unsigned __int16 color16); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2049 pixels[y * width + x] = R5G6B5_to_A8R8G8B8(pixel, 255); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2050 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2051 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2052 *out_width = width; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2053 *out_height = height; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2054 *out_pixels = pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2055 *out_format = IMAGE_FORMAT_A8R8G8B8; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2056 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2057 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2058 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2059 return *out_pixels != nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2060 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2061 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2062 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2063 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2064 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2065 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2066 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2067 struct PCX_Loader : public ImageLoader |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2068 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2069 bool DecodePCX(const unsigned char *pcx_data, unsigned __int16 *pOutPixels, unsigned int *width, unsigned int *height); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2070 }; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2071 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2072 bool PCX_Loader::DecodePCX(const unsigned char *pcx_data, unsigned __int16 *pOutPixels, unsigned int *width, unsigned int *height) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2073 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2074 // signed int result; // eax@2 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2075 unsigned char test_byte; // edx@3 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2076 unsigned int read_offset; // ebx@37 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2077 unsigned int row_position; // edi@40 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2078 unsigned char value; // cl@63 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2079 char count; // [sp+50h] [bp-Ch]@43 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2080 unsigned short current_line; // [sp+54h] [bp-8h]@38 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2081 unsigned short *dec_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2082 unsigned short *temp_dec_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2083 PCXHeader1 psx_head1; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2084 PCXHeader2 psx_head2; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2085 // short int width, height; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2086 BYTE color_map[48]; // Colormap for 16-color images |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2087 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2088 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2089 memcpy(&psx_head1, pcx_data, 16); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2090 memcpy(&color_map, pcx_data + 16, 48); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2091 memcpy(&psx_head2, pcx_data + 64, 6); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2092 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2093 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2094 if (psx_head1.bpp != 8) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2095 return 3; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2096 *width = (short int)(psx_head1.right - psx_head1.left + 1); // word @ 000014 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2097 *height = (short int)(psx_head1.bottom - psx_head1.up + 1); // word @ 000016 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2098 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2099 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2100 unsigned int uNumPixels = *width * *height; // dword @ 000010 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2101 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2102 memset(pOutPixels, 0, uNumPixels * sizeof(__int16)); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2103 short i = 1; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2104 while ((1 << i) != *width) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2105 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2106 ++i; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2107 if (i >= 15) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2108 break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2109 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2110 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2111 auto field_18 = i; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2112 short i_ = 1; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2113 while ((1 << i_) != *height) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2114 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2115 ++i_; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2116 if (i_ >= 15) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2117 break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2118 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2119 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2120 auto field_1A = i_; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2121 short field_1C = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2122 switch (field_18) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2123 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2124 case 2: field_1C = 3; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2125 case 3: field_1C = 7; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2126 case 4: field_1C = 15; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2127 case 5: field_1C = 31; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2128 case 6: field_1C = 63; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2129 case 7: field_1C = 127; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2130 case 8: field_1C = 255; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2131 case 9: field_1C = 511; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2132 case 10: field_1C = 1023; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2133 case 11: field_1C = 2047; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2134 case 12: field_1C = 4095; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2135 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2136 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2137 short field_1E = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2138 switch (field_1A) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2139 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2140 case 2: field_1E = 3; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2141 case 3: field_1E = 7; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2142 case 4: field_1E = 15; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2143 case 5: field_1E = 31; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2144 case 6: field_1E = 63; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2145 case 7: field_1E = 127; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2146 case 8: field_1E = 255; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2147 case 9: field_1E = 511; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2148 case 10: field_1E = 1023; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2149 case 11: field_1E = 2047; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2150 case 12: field_1E = 4095; break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2151 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2152 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2153 unsigned int r_mask = 0xF800; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2154 unsigned int num_r_bits = 5; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2155 unsigned int g_mask = 0x07E0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2156 unsigned int num_g_bits = 6; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2157 unsigned int b_mask = 0x001F; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2158 unsigned int num_b_bits = 5; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2159 //Ïðè ñîõðàíåíèè èçîáðàæåíèÿ ïîäðÿä èäóùèå ïèêñåëè îäèíàêîâîãî öâåòà îáúåäèíÿþòñÿ è âìåñòî óêàçàíèÿ öâåòà äëÿ êàæäîãî ïèêñåëÿ |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2160 //óêàçûâàåòñÿ öâåò ãðóïïû ïèêñåëåé è èõ êîëè÷åñòâî. |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2161 read_offset = 128; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2162 if (psx_head2.planes != 3) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2163 return 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2164 current_line = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2165 if (height > 0) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2166 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2167 dec_position = pOutPixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2168 do |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2169 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2170 temp_dec_position = dec_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2171 row_position = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2172 //decode red line |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2173 if (psx_head2.pitch) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2174 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2175 do |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2176 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2177 test_byte = pcx_data[read_offset]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2178 ++read_offset; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2179 if ((test_byte & 0xC0) == 0xC0)//èìååòñÿ ëè îáúåäèíåíèå |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2180 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2181 value = pcx_data[read_offset]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2182 ++read_offset; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2183 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2184 if ((test_byte & 0x3F) > 0) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2185 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2186 count = test_byte & 0x3F;//êîëè÷åñòâî îäèíàêîâûõ ïèêñåëåé |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2187 do |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2188 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2189 ++row_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2190 //*temp_dec_position =0xFF000000; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2191 //*temp_dec_position|=(unsigned long)value<<16; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2192 *temp_dec_position |= r_mask & ((unsigned __int8)value << (num_g_bits + num_r_bits + num_b_bits - 8)); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2193 temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2194 if (row_position == psx_head2.pitch) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2195 break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2196 } while (count-- != 1); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2197 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2198 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2199 else |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2200 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2201 ++row_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2202 //*temp_dec_position =0xFF000000; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2203 //*temp_dec_position|= (unsigned long)test_byte<<16; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2204 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2205 *temp_dec_position |= r_mask & ((unsigned __int8)test_byte << (num_g_bits + num_r_bits + num_b_bits - 8)); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2206 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2207 temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2208 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2209 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2210 } while (row_position < psx_head2.pitch); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2211 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2212 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2213 temp_dec_position = dec_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2214 row_position = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2215 //decode green line |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2216 while (row_position < psx_head2.pitch) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2217 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2218 test_byte = *(pcx_data + read_offset); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2219 ++read_offset; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2220 if ((test_byte & 0xC0) == 0xC0) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2221 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2222 value = *(pcx_data + read_offset); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2223 ++read_offset; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2224 if ((test_byte & 0x3F) > 0) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2225 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2226 count = test_byte & 0x3F; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2227 do |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2228 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2229 //*temp_dec_position|= (unsigned int)value<<8; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2230 //temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2231 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2232 *temp_dec_position |= g_mask & (unsigned __int16)((unsigned __int8)value << (num_g_bits + num_b_bits - 8)); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2233 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2234 temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2235 ++row_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2236 if (row_position == psx_head2.pitch) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2237 break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2238 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2239 } while (count-- != 1); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2240 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2241 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2242 else |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2243 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2244 //*temp_dec_position |=(unsigned int) test_byte<<8; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2245 //temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2246 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2247 *temp_dec_position |= g_mask & (unsigned __int16)((unsigned __int8)test_byte << (num_g_bits + num_b_bits - 8)); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2248 temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2249 ++row_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2250 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2251 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2252 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2253 temp_dec_position = dec_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2254 row_position = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2255 //decode blue line |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2256 while (row_position < psx_head2.pitch) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2257 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2258 test_byte = *(pcx_data + read_offset); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2259 read_offset++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2260 if ((test_byte & 0xC0) == 0xC0) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2261 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2262 value = *(pcx_data + read_offset); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2263 ++read_offset; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2264 if ((test_byte & 0x3F) > 0) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2265 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2266 count = test_byte & 0x3F; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2267 do |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2268 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2269 //*temp_dec_position|= value; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2270 //temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2271 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2272 *temp_dec_position |= value >> (8 - num_b_bits); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2273 temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2274 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2275 ++row_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2276 if (row_position == psx_head2.pitch) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2277 break; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2278 } while (count-- != 1); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2279 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2280 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2281 else |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2282 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2283 //*temp_dec_position|= test_byte; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2284 //temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2285 *temp_dec_position |= test_byte >> (8 - num_b_bits); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2286 temp_dec_position++; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2287 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2288 ++row_position; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2289 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2290 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2291 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2292 ++current_line; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2293 dec_position += *width; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2294 } while (current_line < *height); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2295 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2296 return true; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2297 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2298 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2299 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2300 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2301 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2302 struct PCX_File_Loader : public PCX_Loader |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2303 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2304 inline PCX_File_Loader(LODFile_IconsBitmaps *lod, const wchar_t *filename) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2305 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2306 wcscpy(this->name, filename); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2307 this->lod = lod; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2308 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2309 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2310 virtual bool Load(unsigned int *width, unsigned int *height, void **pixels, IMAGE_FORMAT *format); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2311 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2312 wchar_t name[1024]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2313 LODFile_IconsBitmaps *lod; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2314 }; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2315 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2316 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2317 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2318 bool PCX_File_Loader::Load(unsigned int *width, unsigned int *height, void **pixels, IMAGE_FORMAT *format) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2319 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2320 FILE *file; // eax@1 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2321 char color_map[48]; // [sp+Ch] [bp-98h]@7 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2322 PCXHeader1 header1; // [sp+84h] [bp-20h]@7 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2323 PCXHeader2 header2; // [sp+94h] [bp-10h]@7 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2324 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2325 *width = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2326 *height = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2327 *pixels = nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2328 *format = IMAGE_INVALID_FORMAT; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2329 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2330 char namea[1024]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2331 sprintf(namea, "%S", name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2332 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2333 file = fopen(namea, "rb"); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2334 if (!file) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2335 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2336 Log::Warning(L"Unable to load %s", name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2337 return false; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2338 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2339 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2340 fseek(file, 0, SEEK_END); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2341 int filesize = ftell(file); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2342 fseek(file, 0, SEEK_SET); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2343 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2344 auto file_image = new unsigned char[filesize]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2345 fread(file_image, 1, filesize, file); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2346 fclose(file); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2347 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2348 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2349 memcpy(&header1, file_image, 0x10u); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2350 memcpy(color_map, file_image + 16, 0x30u); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2351 memcpy(&header2, file_image + 64, 6); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2352 if (header1.bpp != 8) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2353 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2354 delete[] file_image; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2355 return false; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2356 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2357 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2358 *width = header1.right - header1.left + 1; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2359 *height = header1.bottom - header1.up + 1; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2360 unsigned int num_pixels = *width * *height; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2361 *pixels = new unsigned short[num_pixels + 2]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2362 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2363 if (pixels) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2364 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2365 if (!this->DecodePCX(file_image, (unsigned __int16 *)*pixels, width, height)) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2366 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2367 delete[] * pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2368 *pixels = nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2369 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2370 else |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2371 *format = IMAGE_FORMAT_R5G6B5; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2372 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2373 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2374 delete[] file_image; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2375 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2376 return *pixels != nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2377 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2378 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2379 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2380 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2381 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2382 struct PCX_LOD_Loader : public PCX_Loader |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2383 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2384 inline PCX_LOD_Loader(LOD::File *lod, const wchar_t *name) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2385 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2386 wcscpy(this->name, name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2387 this->lod = lod; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2388 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2389 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2390 virtual bool Load(unsigned int *width, unsigned int *height, void **pixels, IMAGE_FORMAT *format); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2391 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2392 wchar_t name[1024]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2393 LOD::File *lod; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2394 }; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2395 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2396 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2397 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2398 bool PCX_LOD_Loader::Load(unsigned int *width, unsigned int *height, void **pixels, IMAGE_FORMAT *format) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2399 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2400 FILE *file; // eax@1 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2401 void *v6; // ebx@5 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2402 char color_map[48]; // [sp+Ch] [bp-98h]@7 |
2574 | 2403 Texture_MM7 DstBuf; // [sp+3Ch] [bp-68h]@1 |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2404 PCXHeader1 header1; // [sp+84h] [bp-20h]@7 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2405 PCXHeader2 header2; // [sp+94h] [bp-10h]@7 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2406 size_t Count; // [sp+A0h] [bp-4h]@4 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2407 unsigned char *Str1a; // [sp+ACh] [bp+8h]@5 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2408 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2409 *width = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2410 *height = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2411 *pixels = nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2412 *format = IMAGE_INVALID_FORMAT; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2413 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2414 char namea[1024]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2415 sprintf(namea, "%S", name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2416 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2417 file = lod->FindContainer(namea, 0); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2418 if (!file) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2419 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2420 Log::Warning(L"Unable to load %s", name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2421 return false; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2422 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2423 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2424 fread(&DstBuf, 1, 0x30u, file); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2425 Count = DstBuf.uTextureSize; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2426 if (DstBuf.uDecompressedSize) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2427 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2428 Str1a = (unsigned char *)malloc(DstBuf.uDecompressedSize); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2429 v6 = malloc(DstBuf.uTextureSize); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2430 fread(v6, 1, Count, file); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2431 zlib::MemUnzip(Str1a, &DstBuf.uDecompressedSize, v6, DstBuf.uTextureSize); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2432 DstBuf.uTextureSize = DstBuf.uDecompressedSize; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2433 free(v6); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2434 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2435 else |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2436 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2437 Str1a = (unsigned char *)malloc(DstBuf.uTextureSize); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2438 fread(Str1a, 1, Count, file); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2439 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2440 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2441 memcpy(&header1, Str1a, 0x10u); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2442 memcpy(color_map, Str1a + 16, 0x30u); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2443 memcpy(&header2, Str1a + 64, 6); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2444 if (header1.bpp != 8) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2445 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2446 free(Str1a); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2447 return false; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2448 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2449 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2450 *width = header1.right - header1.left + 1; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2451 *height = header1.bottom - header1.up + 1; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2452 unsigned int num_pixels = *width * *height; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2453 *pixels = new unsigned short[num_pixels + 2]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2454 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2455 if (pixels) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2456 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2457 if (!this->DecodePCX(Str1a, (unsigned __int16 *)*pixels, width, height)) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2458 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2459 delete[] *pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2460 *pixels = nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2461 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2462 else |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2463 *format = IMAGE_FORMAT_R5G6B5; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2464 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2465 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2466 free(Str1a); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2467 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2468 return *pixels != nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2469 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2470 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2471 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2472 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2473 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2474 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2475 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2476 bool Image::PCX_From_IconsLOD(const wchar_t *name) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2477 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2478 loader = new PCX_LOD_Loader(pIcons_LOD, name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2479 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2480 if (!lazy_initialization) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2481 this->LoadImageData(); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2482 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2483 return true; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2484 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2485 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2486 bool Image::PCX_From_NewLOD(const wchar_t *name) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2487 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2488 loader = new PCX_LOD_Loader(pNew_LOD, name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2489 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2490 if (!lazy_initialization) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2491 this->LoadImageData(); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2492 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2493 return true; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2494 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2495 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2496 bool Image::PCX_From_File(const wchar_t *filename) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2497 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2498 loader = new PCX_File_Loader(pIcons_LOD, filename); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2499 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2500 if (!lazy_initialization) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2501 this->LoadImageData(); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2502 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2503 return true; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2504 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2505 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2506 bool Image::Alpha_From_LOD(const wchar_t *name) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2507 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2508 loader = new Alpha_LOD_Loader(pIcons_LOD, name); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2509 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2510 if (!lazy_initialization) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2511 this->LoadImageData(); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2512 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2513 return true; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2514 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2515 |
2574 | 2516 bool Image::Image16bit_From_LOD(const wchar_t *name) |
2517 { | |
2518 loader = new Image16bit_LOD_Loader(pIcons_LOD, name); | |
2519 | |
2520 if (!lazy_initialization) | |
2521 this->LoadImageData(); | |
2522 | |
2523 return true; | |
2524 } | |
2525 | |
2572
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2526 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2527 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2528 bool Image::ColorKey_From_LOD(const wchar_t *name, unsigned __int16 colorkey) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2529 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2530 loader = new ColorKey_LOD_Loader(pIcons_LOD, name, colorkey); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2531 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2532 if (!lazy_initialization) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2533 this->LoadImageData(); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2534 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2535 return true; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2536 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2537 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2538 bool Image::LoadImageData() |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2539 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2540 if (!initialized) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2541 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2542 void *pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2543 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2544 initialized = loader->Load(&width, &height, &pixels, &native_format); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2545 if (initialized && native_format != IMAGE_INVALID_FORMAT) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2546 this->pixels[native_format] = pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2547 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2548 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2549 return initialized; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2550 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2551 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2552 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2553 unsigned int Image::GetWidth() |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2554 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2555 if (!initialized) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2556 LoadImageData(); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2557 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2558 if (initialized) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2559 return width; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2560 return 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2561 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2562 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2563 unsigned int Image::GetHeight() |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2564 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2565 if (!initialized) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2566 LoadImageData(); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2567 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2568 if (initialized) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2569 return height; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2570 return 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2571 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2572 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2573 const void *Image::GetPixels(IMAGE_FORMAT format) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2574 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2575 if (!initialized) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2576 LoadImageData(); |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2577 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2578 if (initialized) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2579 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2580 if (pixels[format]) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2581 return pixels[format]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2582 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2583 auto native_pixels = pixels[native_format]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2584 if (native_pixels) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2585 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2586 static ImageFormatConverter converters[IMAGE_NUM_FORMATS][IMAGE_NUM_FORMATS] = |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2587 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2588 // IMAGE_FORMAT_R5G6B5 -> |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2589 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2590 nullptr, // IMAGE_FORMAT_R5G6B5 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2591 nullptr, // IMAGE_FORMAT_A1R5G5B5 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2592 nullptr // IMAGE_FORMAT_A8R8G8B8 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2593 }, |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2594 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2595 // IMAGE_FORMAT_A1R5G5B5 -> |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2596 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2597 nullptr, // IMAGE_FORMAT_R5G6B5 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2598 nullptr, // IMAGE_FORMAT_A1R5G5B5 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2599 nullptr // IMAGE_FORMAT_A8R8G8B8 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2600 }, |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2601 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2602 // IMAGE_FORMAT_A8R8G8B8 -> |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2603 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2604 Image_A8R8G8B8_to_R5G6B5, // IMAGE_FORMAT_R5G6B5 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2605 nullptr, // IMAGE_FORMAT_A1R5G5B5 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2606 nullptr // IMAGE_FORMAT_A8R8G8B8 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2607 }, |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2608 }; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2609 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2610 ImageFormatConverter cvt = converters[native_format][format]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2611 if (cvt) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2612 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2613 unsigned int num_pixels = width * height; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2614 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2615 void *cvt_pixels = new unsigned char[num_pixels * IMAGE_FORMAT_BytesPerPixel(format)]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2616 if (cvt(width * height, native_pixels, cvt_pixels)) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2617 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2618 return pixels[format] = cvt_pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2619 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2620 else |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2621 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2622 delete[] cvt_pixels; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2623 cvt_pixels = nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2624 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2625 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2626 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2627 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2628 return nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2629 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2630 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2631 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2632 bool Image::Release() |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2633 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2634 if (initialized) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2635 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2636 if (loader) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2637 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2638 delete loader; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2639 loader = nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2640 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2641 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2642 for (unsigned int i = 0; i < IMAGE_NUM_FORMATS; ++i) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2643 if (pixels[i]) |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2644 { |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2645 delete[] pixels[i]; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2646 pixels[i] = nullptr; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2647 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2648 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2649 native_format = IMAGE_INVALID_FORMAT; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2650 width = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2651 height = 0; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2652 } |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2653 |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2654 delete this; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2655 return true; |
d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
a.parshin
parents:
2544
diff
changeset
|
2656 } |