clang-tidy: modernize-macro-to-enum
[geeqie.git] / src / image-load-dds.cc
1 /*
2  * Copyright (C) 2018 The Geeqie Team
3  *
4  * Author: Wolfgang Lieff
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20  * Derived from dds_reader written by:
21  * Copyright (c) 2015 Kenji Sasaki
22  * Released under the MIT license.
23  * https://github.com/npedotnet/DDSReader/blob/master/LICENSE
24
25  */
26
27 #include "main.h"
28
29 #include "image-load.h"
30 #include "image-load-dds.h"
31
32 struct ImageLoaderDDS {
33         ImageLoaderBackendCbAreaUpdated area_updated_cb;
34         ImageLoaderBackendCbSize size_cb;
35         ImageLoaderBackendCbAreaPrepared area_prepared_cb;
36         gpointer data;
37         GdkPixbuf *pixbuf;
38         guint requested_width;
39         guint requested_height;
40         gboolean abort;
41 };
42
43 static void free_buffer(guchar *pixels, gpointer)
44 {
45         g_free(pixels);
46 }
47
48 uint ddsGetHeight(unsigned const char * buffer) {
49         return (buffer[12] & 0xFF) | (buffer[13] & 0xFF) << 8 | (buffer[14] & 0xFF) << 16 | (buffer[15] & 0xFF) << 24;
50 }
51
52 uint ddsGetWidth(unsigned const char * buffer) {
53         return (buffer[16] & 0xFF) | (buffer[17] & 0xFF) << 8 | (buffer[18] & 0xFF) << 16 | (buffer[19] & 0xFF) << 24;
54 }
55
56 #pragma GCC diagnostic push
57 #pragma GCC diagnostic ignored "-Wunused-function"
58 uint ddsGetMipmap_unused(unsigned const char * buffer) {
59         return (buffer[28] & 0xFF) | (buffer[29] & 0xFF) << 8 | (buffer[30] & 0xFF) << 16 | (buffer[31] & 0xFF) << 24;
60 }
61 #pragma GCC diagnostic pop
62
63 uint ddsGetPixelFormatFlags(unsigned const char * buffer) {
64         return (buffer[80] & 0xFF) | (buffer[81] & 0xFF) << 8 | (buffer[82] & 0xFF) << 16 | (buffer[83] & 0xFF) << 24;
65 }
66
67 uint ddsGetFourCC(unsigned const char * buffer) {
68         return (buffer[84] & 0xFF) << 24 | (buffer[85] & 0xFF) << 16 | (buffer[86] & 0xFF) << 8 | (buffer[87] & 0xFF);
69 }
70
71 uint ddsGetBitCount(unsigned const char * buffer) {
72         return (buffer[88] & 0xFF) | (buffer[89] & 0xFF) << 8 | (buffer[90] & 0xFF) << 16 | (buffer[91] & 0xFF) << 24;
73 }
74
75 uint ddsGetRedMask(unsigned const char * buffer) {
76         return (buffer[92] & 0xFF) | (buffer[93] & 0xFF) << 8 | (buffer[94] & 0xFF) << 16 | (buffer[95] & 0xFF) << 24;
77 }
78
79 uint ddsGetGreenMask(unsigned const char * buffer) {
80         return (buffer[96] & 0xFF) | (buffer[97] & 0xFF) << 8 | (buffer[98] & 0xFF) << 16 | (buffer[99] & 0xFF) << 24;
81 }
82
83 uint ddsGetBlueMask(unsigned const char * buffer) {
84         return (buffer[100] & 0xFF) | (buffer[101] & 0xFF) << 8 | (buffer[102] & 0xFF) << 16 | (buffer[103] & 0xFF) << 24;
85 }
86
87 uint ddsGetAlphaMask(unsigned const char * buffer) {
88         return (buffer[104] & 0xFF) | (buffer[105] & 0xFF) << 8 | (buffer[106] & 0xFF) << 16 | (buffer[107] & 0xFF) << 24;
89 }
90
91 // Image Type
92 enum {
93         DXT1 = (0x44585431),
94         DXT2 = (0x44585432),
95         DXT3 = (0x44585433),
96         DXT4 = (0x44585434),
97         DXT5 = (0x44585435),
98         A1R5G5B5 = ((1 << 16) | 2),
99         X1R5G5B5 = ((2 << 16) | 2),
100         A4R4G4B4 = ((3 << 16) | 2),
101         X4R4G4B4 = ((4 << 16) | 2),
102         R5G6B5 = ((5 << 16) | 2),
103         R8G8B8 = ((1 << 16) | 3),
104         A8B8G8R8 = ((1 << 16) | 4),
105         X8B8G8R8 = ((2 << 16) | 4),
106         A8R8G8B8 = ((3 << 16) | 4),
107         X8R8G8B8 = ((4 << 16) | 4)
108 };
109
110 // RGBA Masks
111 static const uint A1R5G5B5_MASKS[] = { 0x7C00, 0x03E0, 0x001F, 0x8000 };
112 static const uint X1R5G5B5_MASKS[] = { 0x7C00, 0x03E0, 0x001F, 0x0000 };
113 static const uint A4R4G4B4_MASKS[] = { 0x0F00, 0x00F0, 0x000F, 0xF000 };
114 static const uint X4R4G4B4_MASKS[] = { 0x0F00, 0x00F0, 0x000F, 0x0000 };
115 static const uint R5G6B5_MASKS[] = { 0xF800, 0x07E0, 0x001F, 0x0000 };
116 static const uint R8G8B8_MASKS[] = { 0xFF0000, 0x00FF00, 0x0000FF, 0x000000 };
117 static const uint A8B8G8R8_MASKS[] = { 0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000 };
118 static const uint X8B8G8R8_MASKS[] = { 0x000000FF, 0x0000FF00, 0x00FF0000, 0x00000000 };
119 static const uint A8R8G8B8_MASKS[] = { 0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000 };
120 static const uint X8R8G8B8_MASKS[] = { 0x00FF0000, 0x0000FF00, 0x000000FF, 0x00000000 };
121
122 // BIT4 = 17 * index;
123 static const uint BIT5[] = { 0, 8, 16, 25, 33, 41, 49, 58, 66, 74, 82, 90, 99, 107, 115, 123, 132, 140, 148, 156, 165, 173, 181, 189, 197, 206, 214, 222, 230, 239, 247, 255 };
124 static const uint BIT6[] = { 0, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 45, 49, 53, 57, 61, 65, 69, 73, 77, 81, 85, 89, 93, 97, 101, 105, 109, 113, 117, 121, 125, 130, 134, 138, 142, 146, 150, 154, 158, 162, 166, 170, 174, 178, 182, 186, 190, 194, 198, 202, 206, 210, 215, 219, 223, 227, 231, 235, 239, 243, 247, 251, 255 };
125
126 static uint ddsGetType(const unsigned char *buffer) {
127         uint type = 0;
128         uint flags = ddsGetPixelFormatFlags(buffer);
129         if ((flags & 0x04) != 0) {
130                 // DXT
131                 type = ddsGetFourCC(buffer);
132         }
133         else if ((flags & 0x40) != 0) {
134                 // RGB
135                 uint bitCount = ddsGetBitCount(buffer);
136                 uint redMask = ddsGetRedMask(buffer);
137                 uint greenMask = ddsGetGreenMask(buffer);
138                 uint blueMask = ddsGetBlueMask(buffer);
139                 uint alphaMask = ((flags & 0x01) != 0) ? ddsGetAlphaMask(buffer) : 0; // 0x01 alpha
140                 if (bitCount == 16) {
141                         if (redMask == A1R5G5B5_MASKS[0] && greenMask == A1R5G5B5_MASKS[1] && blueMask == A1R5G5B5_MASKS[2] && alphaMask == A1R5G5B5_MASKS[3]) {
142                                 // A1R5G5B5
143                                 type = A1R5G5B5;
144                         }
145                         else if (redMask == X1R5G5B5_MASKS[0] && greenMask == X1R5G5B5_MASKS[1] && blueMask == X1R5G5B5_MASKS[2] && alphaMask == X1R5G5B5_MASKS[3]) {
146                                 // X1R5G5B5
147                                 type = X1R5G5B5;
148                         }
149                         else if (redMask == A4R4G4B4_MASKS[0] && greenMask == A4R4G4B4_MASKS[1] && blueMask == A4R4G4B4_MASKS[2] && alphaMask == A4R4G4B4_MASKS[3]) {
150                                 // A4R4G4B4
151                                 type = A4R4G4B4;
152                         }
153                         else if (redMask == X4R4G4B4_MASKS[0] && greenMask == X4R4G4B4_MASKS[1] && blueMask == X4R4G4B4_MASKS[2] && alphaMask == X4R4G4B4_MASKS[3]) {
154                                 // X4R4G4B4
155                                 type = X4R4G4B4;
156                         }
157                         else if (redMask == R5G6B5_MASKS[0] && greenMask == R5G6B5_MASKS[1] && blueMask == R5G6B5_MASKS[2] && alphaMask == R5G6B5_MASKS[3]) {
158                                 // R5G6B5
159                                 type = R5G6B5;
160                         }
161                         else {
162                                 // Unsupported 16bit RGB image
163                         }
164                 }
165                 else if (bitCount == 24) {
166                         if (redMask == R8G8B8_MASKS[0] && greenMask == R8G8B8_MASKS[1] && blueMask == R8G8B8_MASKS[2] && alphaMask == R8G8B8_MASKS[3]) {
167                                 // R8G8B8
168                                 type = R8G8B8;
169                         }
170                         else {
171                                 // Unsupported 24bit RGB image
172                         }
173                 }
174                 else if (bitCount == 32) {
175                         if (redMask == A8B8G8R8_MASKS[0] && greenMask == A8B8G8R8_MASKS[1] && blueMask == A8B8G8R8_MASKS[2] && alphaMask == A8B8G8R8_MASKS[3]) {
176                                 // A8B8G8R8
177                                 type = A8B8G8R8;
178                         }
179                         else if (redMask == X8B8G8R8_MASKS[0] && greenMask == X8B8G8R8_MASKS[1] && blueMask == X8B8G8R8_MASKS[2] && alphaMask == X8B8G8R8_MASKS[3]) {
180                                 // X8B8G8R8
181                                 type = X8B8G8R8;
182                         }
183                         else if (redMask == A8R8G8B8_MASKS[0] && greenMask == A8R8G8B8_MASKS[1] && blueMask == A8R8G8B8_MASKS[2] && alphaMask == A8R8G8B8_MASKS[3]) {
184                                 // A8R8G8B8
185                                 type = A8R8G8B8;
186                         }
187                         else if (redMask == X8R8G8B8_MASKS[0] && greenMask == X8R8G8B8_MASKS[1] && blueMask == X8R8G8B8_MASKS[2] && alphaMask == X8R8G8B8_MASKS[3]) {
188                                 // X8R8G8B8
189                                 type = X8R8G8B8;
190                         }
191                         else {
192                                 // Unsupported 32bit RGB image
193                         }
194                 }
195         }
196         else {
197                 // YUV or LUMINANCE image
198         }
199         return type;
200 }
201
202 uint ddsGetDXTColor2_1(uint c0, uint c1, uint a) {
203         // 2*c0/3 + c1/3
204         uint r = (2 * BIT5[(c0 & 0xFC00) >> 11] + BIT5[(c1 & 0xFC00) >> 11]) / 3;
205         uint g = (2 * BIT6[(c0 & 0x07E0) >> 5] + BIT6[(c1 & 0x07E0) >> 5]) / 3;
206         uint b = (2 * BIT5[c0 & 0x001F] + BIT5[c1 & 0x001F]) / 3;
207         return (a << 24) | (r << 0) | (g << 8) | (b << 16);
208 }
209
210 uint ddsGetDXTColor1_1(uint c0, uint c1, uint a) {
211         // (c0+c1) / 2
212         uint r = (BIT5[(c0 & 0xFC00) >> 11] + BIT5[(c1 & 0xFC00) >> 11]) / 2;
213         uint g = (BIT6[(c0 & 0x07E0) >> 5] + BIT6[(c1 & 0x07E0) >> 5]) / 2;
214         uint b = (BIT5[c0 & 0x001F] + BIT5[c1 & 0x001F]) / 2;
215         return (a << 24) | (r << 0) | (g << 8) | (b << 16);
216 }
217
218 uint ddsGetDXTColor1(uint c, uint a) {
219         uint r = BIT5[(c & 0xFC00) >> 11];
220         uint g = BIT6[(c & 0x07E0) >> 5];
221         uint b = BIT5[(c & 0x001F)];
222         return (a << 24) | (r << 0) | (g << 8) | (b << 16);
223 }
224
225 uint ddsGetDXTColor(uint c0, uint c1, uint a, uint t) {
226         switch (t) {
227         case 0: return ddsGetDXTColor1(c0, a);
228         case 1: return ddsGetDXTColor1(c1, a);
229         case 2: return (c0 > c1) ? ddsGetDXTColor2_1(c0, c1, a) : ddsGetDXTColor1_1(c0, c1, a);
230         case 3: return (c0 > c1) ? ddsGetDXTColor2_1(c1, c0, a) : 0;
231         }
232         return 0;
233 }
234
235 guchar *ddsDecodeDXT1(uint width, uint height, const unsigned char *buffer) {
236         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
237         if (pixels == nullptr) return nullptr;
238         uint index = 128;
239         uint w = (width + 3) / 4;
240         uint h = (height + 3) / 4;
241         for (uint i = 0; i<h; i++) {
242                 for (uint j = 0; j<w; j++) {
243                         uint c0 = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
244                         uint c1 = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
245                         for (uint k = 0; k<4; k++) {
246                                 if (4 * i + k >= height) break;
247                                 uint t0 = (buffer[index] & 0x03);
248                                 uint t1 = (buffer[index] & 0x0C) >> 2;
249                                 uint t2 = (buffer[index] & 0x30) >> 4;
250                                 uint t3 = (buffer[index++] & 0xC0) >> 6;
251                                 pixels[4 * width*i + 4 * j + width*k + 0] = ddsGetDXTColor(c0, c1, 0xFF, t0);
252                                 if (4 * j + 1 >= width) continue;
253                                 pixels[4 * width*i + 4 * j + width*k + 1] = ddsGetDXTColor(c0, c1, 0xFF, t1);
254                                 if (4 * j + 2 >= width) continue;
255                                 pixels[4 * width*i + 4 * j + width*k + 2] = ddsGetDXTColor(c0, c1, 0xFF, t2);
256                                 if (4 * j + 3 >= width) continue;
257                                 pixels[4 * width*i + 4 * j + width*k + 3] = ddsGetDXTColor(c0, c1, 0xFF, t3);
258                         }
259                 }
260         }
261         return reinterpret_cast<guchar *>(pixels);
262 }
263
264 guchar *ddsDecodeDXT3(uint width, uint height, const unsigned char *buffer) {
265         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
266         if (pixels == nullptr) return nullptr;
267         uint index = 128;
268         uint w = (width + 3) / 4;
269         uint h = (height + 3) / 4;
270         uint alphaTable[16];
271         for (uint i = 0; i<h; i++) {
272                 for (uint j = 0; j<w; j++) {
273                         // create alpha table(4bit to 8bit)
274                         for (uint k = 0; k<4; k++) {
275                                 uint a0 = (buffer[index++] & 0xFF);
276                                 uint a1 = (buffer[index++] & 0xFF);
277                                 // 4bit alpha to 8bit alpha
278                                 alphaTable[4 * k + 0] = 17 * ((a0 & 0xF0) >> 4);
279                                 alphaTable[4 * k + 1] = 17 * (a0 & 0x0F);
280                                 alphaTable[4 * k + 2] = 17 * ((a1 & 0xF0) >> 4);
281                                 alphaTable[4 * k + 3] = 17 * (a1 & 0x0F);
282                         }
283                         uint c0 = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
284                         uint c1 = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
285                         for (uint k = 0; k<4; k++) {
286                                 if (4 * i + k >= height) break;
287                                 uint t0 = (buffer[index] & 0x03);
288                                 uint t1 = (buffer[index] & 0x0C) >> 2;
289                                 uint t2 = (buffer[index] & 0x30) >> 4;
290                                 uint t3 = (buffer[index++] & 0xC0) >> 6;
291                                 pixels[4 * width*i + 4 * j + width*k + 0] = ddsGetDXTColor(c0, c1, alphaTable[4 * k + 0], t0);
292                                 if (4 * j + 1 >= width) continue;
293                                 pixels[4 * width*i + 4 * j + width*k + 1] = ddsGetDXTColor(c0, c1, alphaTable[4 * k + 1], t1);
294                                 if (4 * j + 2 >= width) continue;
295                                 pixels[4 * width*i + 4 * j + width*k + 2] = ddsGetDXTColor(c0, c1, alphaTable[4 * k + 2], t2);
296                                 if (4 * j + 3 >= width) continue;
297                                 pixels[4 * width*i + 4 * j + width*k + 3] = ddsGetDXTColor(c0, c1, alphaTable[4 * k + 3], t3);
298                         }
299                 }
300         }
301         return reinterpret_cast<guchar *>(pixels);
302 }
303
304 guchar *ddsDecodeDXT2(uint width, uint height, const unsigned char *buffer) {
305         return ddsDecodeDXT3(width, height, buffer);
306 }
307
308 int ddsGetDXT5Alpha(uint a0, uint a1, uint t) {
309         if (a0 > a1) switch (t) {
310         case 0: return a0;
311         case 1: return a1;
312         case 2: return (6 * a0 + a1) / 7;
313         case 3: return (5 * a0 + 2 * a1) / 7;
314         case 4: return (4 * a0 + 3 * a1) / 7;
315         case 5: return (3 * a0 + 4 * a1) / 7;
316         case 6: return (2 * a0 + 5 * a1) / 7;
317         case 7: return (a0 + 6 * a1) / 7;
318         }
319         else switch (t) {
320         case 0: return a0;
321         case 1: return a1;
322         case 2: return (4 * a0 + a1) / 5;
323         case 3: return (3 * a0 + 2 * a1) / 5;
324         case 4: return (2 * a0 + 3 * a1) / 5;
325         case 5: return (a0 + 4 * a1) / 5;
326         case 6: return 0;
327         case 7: return 255;
328         }
329         return 0;
330 }
331
332 guchar *ddsDecodeDXT5(uint width, uint height, const unsigned char *buffer) {
333         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
334         if (pixels == nullptr) return nullptr;
335         uint index = 128;
336         uint w = (width + 3) / 4;
337         uint h = (height + 3) / 4;
338         uint alphaTable[16];
339         for (uint i = 0; i<h; i++) {
340                 for (uint j = 0; j<w; j++) {
341                         // create alpha table
342                         uint a0 = (buffer[index++] & 0xFF);
343                         uint a1 = (buffer[index++] & 0xFF);
344                         uint b0 = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8 | (buffer[index + 2] & 0xFF) << 16; index += 3;
345                         uint b1 = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8 | (buffer[index + 2] & 0xFF) << 16; index += 3;
346                         alphaTable[0] = b0 & 0x07;
347                         alphaTable[1] = (b0 >> 3) & 0x07;
348                         alphaTable[2] = (b0 >> 6) & 0x07;
349                         alphaTable[3] = (b0 >> 9) & 0x07;
350                         alphaTable[4] = (b0 >> 12) & 0x07;
351                         alphaTable[5] = (b0 >> 15) & 0x07;
352                         alphaTable[6] = (b0 >> 18) & 0x07;
353                         alphaTable[7] = (b0 >> 21) & 0x07;
354                         alphaTable[8] = b1 & 0x07;
355                         alphaTable[9] = (b1 >> 3) & 0x07;
356                         alphaTable[10] = (b1 >> 6) & 0x07;
357                         alphaTable[11] = (b1 >> 9) & 0x07;
358                         alphaTable[12] = (b1 >> 12) & 0x07;
359                         alphaTable[13] = (b1 >> 15) & 0x07;
360                         alphaTable[14] = (b1 >> 18) & 0x07;
361                         alphaTable[15] = (b1 >> 21) & 0x07;
362                         uint c0 = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
363                         uint c1 = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
364                         for (uint k = 0; k<4; k++) {
365                                 if (4 * i + k >= height) break;
366                                 uint t0 = (buffer[index] & 0x03);
367                                 uint t1 = (buffer[index] & 0x0C) >> 2;
368                                 uint t2 = (buffer[index] & 0x30) >> 4;
369                                 uint t3 = (buffer[index++] & 0xC0) >> 6;
370                                 pixels[4 * width*i + 4 * j + width*k + 0] = ddsGetDXTColor(c0, c1, ddsGetDXT5Alpha(a0, a1, alphaTable[4 * k + 0]), t0);
371                                 if (4 * j + 1 >= width) continue;
372                                 pixels[4 * width*i + 4 * j + width*k + 1] = ddsGetDXTColor(c0, c1, ddsGetDXT5Alpha(a0, a1, alphaTable[4 * k + 1]), t1);
373                                 if (4 * j + 2 >= width) continue;
374                                 pixels[4 * width*i + 4 * j + width*k + 2] = ddsGetDXTColor(c0, c1, ddsGetDXT5Alpha(a0, a1, alphaTable[4 * k + 2]), t2);
375                                 if (4 * j + 3 >= width) continue;
376                                 pixels[4 * width*i + 4 * j + width*k + 3] = ddsGetDXTColor(c0, c1, ddsGetDXT5Alpha(a0, a1, alphaTable[4 * k + 3]), t3);
377                         }
378                 }
379         }
380         return reinterpret_cast<guchar *>(pixels);
381 }
382
383 guchar *ddsDecodeDXT4(uint width, uint height, const unsigned char *buffer) {
384         return ddsDecodeDXT5(width, height, buffer);
385 }
386
387 guchar *ddsReadA1R5G5B5(uint width, uint height, const unsigned char *buffer) {
388         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
389         if (pixels == nullptr) return nullptr;
390         uint index = 128;
391         for (uint i = 0; i<height*width; i++) {
392                 uint rgba = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
393                 uint r = BIT5[(rgba & A1R5G5B5_MASKS[0]) >> 10];
394                 uint g = BIT5[(rgba & A1R5G5B5_MASKS[1]) >> 5];
395                 uint b = BIT5[(rgba & A1R5G5B5_MASKS[2])];
396                 uint a = 255 * ((rgba & A1R5G5B5_MASKS[3]) >> 15);
397                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
398         }
399         return reinterpret_cast<guchar *>(pixels);
400 }
401
402 guchar *ddsReadX1R5G5B5(uint width, uint height, const unsigned char *buffer) {
403         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
404         if (pixels == nullptr) return nullptr;
405         uint index = 128;
406         for (uint i = 0; i<height*width; i++) {
407                 uint rgba = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
408                 uint r = BIT5[(rgba & X1R5G5B5_MASKS[0]) >> 10];
409                 uint g = BIT5[(rgba & X1R5G5B5_MASKS[1]) >> 5];
410                 uint b = BIT5[(rgba & X1R5G5B5_MASKS[2])];
411                 uint a = 255;
412                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
413         }
414         return reinterpret_cast<guchar *>(pixels);
415 }
416
417 guchar *ddsReadA4R4G4B4(uint width, uint height, const unsigned char *buffer) {
418         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
419         if (pixels == nullptr) return nullptr;
420         uint index = 128;
421         for (uint i = 0; i<height*width; i++) {
422                 uint rgba = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
423                 uint r = 17 * ((rgba & A4R4G4B4_MASKS[0]) >> 8);
424                 uint g = 17 * ((rgba & A4R4G4B4_MASKS[1]) >> 4);
425                 uint b = 17 * ((rgba & A4R4G4B4_MASKS[2]));
426                 uint a = 17 * ((rgba & A4R4G4B4_MASKS[3]) >> 12);
427                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
428         }
429         return reinterpret_cast<guchar *>(pixels);
430 }
431
432 guchar *ddsReadX4R4G4B4(uint width, uint height, const unsigned char *buffer) {
433         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
434         if (pixels == nullptr) return nullptr;
435         uint index = 128;
436         for (uint i = 0; i<height*width; i++) {
437                 uint rgba = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
438                 uint r = 17 * ((rgba & A4R4G4B4_MASKS[0]) >> 8);
439                 uint g = 17 * ((rgba & A4R4G4B4_MASKS[1]) >> 4);
440                 uint b = 17 * ((rgba & A4R4G4B4_MASKS[2]));
441                 uint a = 255;
442                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
443         }
444         return reinterpret_cast<guchar *>(pixels);
445 }
446
447 guchar *ddsReadR5G6B5(uint width, uint height, const unsigned char *buffer) {
448         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
449         if (pixels == nullptr) return nullptr;
450         uint index = 128;
451         for (uint i = 0; i<height*width; i++) {
452                 uint rgba = (buffer[index] & 0xFF) | (buffer[index + 1] & 0xFF) << 8; index += 2;
453                 uint r = BIT5[((rgba & R5G6B5_MASKS[0]) >> 11)];
454                 uint g = BIT6[((rgba & R5G6B5_MASKS[1]) >> 5)];
455                 uint b = BIT5[((rgba & R5G6B5_MASKS[2]))];
456                 uint a = 255;
457                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
458         }
459         return reinterpret_cast<guchar *>(pixels);
460 }
461
462 guchar *ddsReadR8G8B8(uint width, uint height, const unsigned char *buffer) {
463         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
464         if (pixels == nullptr) return nullptr;
465         uint index = 128;
466         for (uint i = 0; i<height*width; i++) {
467                 uint b = buffer[index++] & 0xFF;
468                 uint g = buffer[index++] & 0xFF;
469                 uint r = buffer[index++] & 0xFF;
470                 uint a = 255;
471                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
472         }
473         return reinterpret_cast<guchar *>(pixels);
474 }
475
476 guchar *ddsReadA8B8G8R8(uint width, uint height, const unsigned char *buffer) {
477         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
478         if (pixels == nullptr) return nullptr;
479         uint index = 128;
480         for (uint i = 0; i<height*width; i++) {
481                 uint r = buffer[index++] & 0xFF;
482                 uint g = buffer[index++] & 0xFF;
483                 uint b = buffer[index++] & 0xFF;
484                 uint a = buffer[index++] & 0xFF;
485                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
486         }
487         return reinterpret_cast<guchar *>(pixels);
488 }
489
490 guchar *ddsReadX8B8G8R8(uint width, uint height, const unsigned char *buffer) {
491         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
492         if (pixels == nullptr) return nullptr;
493         uint index = 128;
494         for (uint i = 0; i<height*width; i++) {
495                 uint r = buffer[index++] & 0xFF;
496                 uint g = buffer[index++] & 0xFF;
497                 uint b = buffer[index++] & 0xFF;
498                 uint a = 255; index++;
499                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
500         }
501         return reinterpret_cast<guchar *>(pixels);
502 }
503
504 guchar *ddsReadA8R8G8B8(uint width, uint height, const unsigned char *buffer) {
505         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
506         if (pixels == nullptr) return nullptr;
507         uint index = 128;
508         for (uint i = 0; i<height*width; i++) {
509                 uint b = buffer[index++] & 0xFF;
510                 uint g = buffer[index++] & 0xFF;
511                 uint r = buffer[index++] & 0xFF;
512                 uint a = buffer[index++] & 0xFF;
513                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
514         }
515         return reinterpret_cast<guchar *>(pixels);
516 }
517
518 guchar *ddsReadX8R8G8B8(uint width, uint height, const unsigned char *buffer) {
519         auto pixels = static_cast<uint *>(g_try_malloc(4 * width*height));
520         if (pixels == nullptr) return nullptr;
521         uint index = 128;
522         for (uint i = 0; i<height*width; i++) {
523                 uint b = buffer[index++] & 0xFF;
524                 uint g = buffer[index++] & 0xFF;
525                 uint r = buffer[index++] & 0xFF;
526                 uint a = 255; index++;
527                 pixels[i] = (a << 24) | (r << 0) | (g << 8) | (b << 16);
528         }
529         return reinterpret_cast<guchar *>(pixels);
530 }
531
532 static gboolean image_loader_dds_load (gpointer loader, const guchar *buf, gsize, GError **)
533 {
534         auto ld = static_cast<ImageLoaderDDS *>(loader);
535         uint width = ddsGetWidth(buf);
536         uint height = ddsGetHeight(buf);
537         uint type = ddsGetType(buf);
538         if (type == 0) return FALSE;
539         {
540                 guchar *pixels = nullptr;
541                 guint rowstride = width * 4;
542                 switch (type) {
543                 case DXT1: pixels = ddsDecodeDXT1(width, height, buf); break;
544                 case DXT2: pixels = ddsDecodeDXT2(width, height, buf); break;
545                 case DXT3: pixels = ddsDecodeDXT3(width, height, buf); break;
546                 case DXT4: pixels = ddsDecodeDXT4(width, height, buf); break;
547                 case DXT5: pixels = ddsDecodeDXT5(width, height, buf); break;
548                 case A1R5G5B5: pixels = ddsReadA1R5G5B5(width, height, buf); break;
549                 case X1R5G5B5: pixels = ddsReadX1R5G5B5(width, height, buf); break;
550                 case A4R4G4B4: pixels = ddsReadA4R4G4B4(width, height, buf); break;
551                 case X4R4G4B4: pixels = ddsReadX4R4G4B4(width, height, buf); break;
552                 case R5G6B5: pixels = ddsReadR5G6B5(width, height, buf); break;
553                 case R8G8B8: pixels = ddsReadR8G8B8(width, height, buf); break;
554                 case A8B8G8R8: pixels = ddsReadA8B8G8R8(width, height, buf); break;
555                 case X8B8G8R8: pixels = ddsReadX8B8G8R8(width, height, buf); break;
556                 case A8R8G8B8: pixels = ddsReadA8R8G8B8(width, height, buf); break;
557                 case X8R8G8B8: pixels = ddsReadX8R8G8B8(width, height, buf); break;
558                 }
559                 ld->pixbuf = gdk_pixbuf_new_from_data (pixels, GDK_COLORSPACE_RGB, TRUE, 8, width, height, rowstride, free_buffer, nullptr);
560                 ld->area_updated_cb(loader, 0, 0, width, height, ld->data);
561                 return TRUE;
562         }
563 }
564
565 static gpointer image_loader_dds_new(ImageLoaderBackendCbAreaUpdated area_updated_cb, ImageLoaderBackendCbSize size_cb, ImageLoaderBackendCbAreaPrepared area_prepared_cb, gpointer data)
566 {
567         auto loader = g_new0(ImageLoaderDDS, 1);
568         loader->area_updated_cb = area_updated_cb;
569         loader->size_cb = size_cb;
570         loader->area_prepared_cb = area_prepared_cb;
571         loader->data = data;
572         return loader;
573 }
574
575 static void image_loader_dds_set_size(gpointer loader, int width, int height)
576 {
577         auto ld = static_cast<ImageLoaderDDS *>(loader);
578         ld->requested_width = width;
579         ld->requested_height = height;
580 }
581
582 static GdkPixbuf* image_loader_dds_get_pixbuf(gpointer loader)
583 {
584         auto ld = static_cast<ImageLoaderDDS *>(loader);
585         return ld->pixbuf;
586 }
587
588 static gchar* image_loader_dds_get_format_name(gpointer)
589 {
590         return g_strdup("dds");
591 }
592 static gchar** image_loader_dds_get_format_mime_types(gpointer)
593 {
594         static const gchar *mime[] = {"image/vnd-ms.dds", nullptr};
595         return g_strdupv(const_cast<gchar **>(mime));
596 }
597
598 static gboolean image_loader_dds_close(gpointer, GError **)
599 {
600         return TRUE;
601 }
602
603 static void image_loader_dds_abort(gpointer loader)
604 {
605         auto ld = static_cast<ImageLoaderDDS *>(loader);
606         ld->abort = TRUE;
607 }
608
609 static void image_loader_dds_free(gpointer loader)
610 {
611         auto ld = static_cast<ImageLoaderDDS *>(loader);
612         if (ld->pixbuf) g_object_unref(ld->pixbuf);
613         g_free(ld);
614 }
615
616 void image_loader_backend_set_dds(ImageLoaderBackend *funcs)
617 {
618         funcs->loader_new = image_loader_dds_new;
619         funcs->set_size = image_loader_dds_set_size;
620         funcs->load = image_loader_dds_load;
621         funcs->write = nullptr;
622         funcs->get_pixbuf = image_loader_dds_get_pixbuf;
623         funcs->close = image_loader_dds_close;
624         funcs->abort = image_loader_dds_abort;
625         funcs->free = image_loader_dds_free;
626         funcs->get_format_name = image_loader_dds_get_format_name;
627         funcs->get_format_mime_types = image_loader_dds_get_format_mime_types;
628 }
629
630 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */