Skip to content

Latest commit

 

History

History
934 lines (800 loc) · 20.6 KB

IMG_xcf.c

File metadata and controls

934 lines (800 loc) · 20.6 KB
 
1
/*
Dec 31, 2011
Dec 31, 2011
2
3
SDL_image: An example image loading library for use with SDL
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
4
Dec 31, 2011
Dec 31, 2011
5
6
7
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
8
Dec 31, 2011
Dec 31, 2011
9
10
11
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
12
Dec 31, 2011
Dec 31, 2011
13
14
15
16
17
18
19
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
20
21
22
23
24
25
26
*/
/* This is a XCF image file loading framework */
#include <stdio.h>
#include <ctype.h>
#include <string.h>
Feb 21, 2003
Feb 21, 2003
27
#include <stdlib.h>
28
Feb 21, 2003
Feb 21, 2003
29
#include "SDL_endian.h"
30
31
32
33
#include "SDL_image.h"
#ifdef LOAD_XCF
Feb 21, 2003
Feb 21, 2003
34
#if DEBUG
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
static char prop_names [][30] = {
"end",
"colormap",
"active_layer",
"active_channel",
"selection",
"floating_selection",
"opacity",
"mode",
"visible",
"linked",
"preserve_transparency",
"apply_mask",
"edit_mask",
"show_mask",
"show_masked",
"offsets",
"color",
"compression",
"guides",
"resolution",
"tattoo",
"parasites",
"unit",
"paths",
"user_unit"
};
Feb 21, 2003
Feb 21, 2003
62
63
#endif
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
typedef enum
{
PROP_END = 0,
PROP_COLORMAP = 1,
PROP_ACTIVE_LAYER = 2,
PROP_ACTIVE_CHANNEL = 3,
PROP_SELECTION = 4,
PROP_FLOATING_SELECTION = 5,
PROP_OPACITY = 6,
PROP_MODE = 7,
PROP_VISIBLE = 8,
PROP_LINKED = 9,
PROP_PRESERVE_TRANSPARENCY = 10,
PROP_APPLY_MASK = 11,
PROP_EDIT_MASK = 12,
PROP_SHOW_MASK = 13,
PROP_SHOW_MASKED = 14,
PROP_OFFSETS = 15,
PROP_COLOR = 16,
PROP_COMPRESSION = 17,
PROP_GUIDES = 18,
PROP_RESOLUTION = 19,
PROP_TATTOO = 20,
PROP_PARASITES = 21,
PROP_UNIT = 22,
PROP_PATHS = 23,
PROP_USER_UNIT = 24
} xcf_prop_type;
typedef enum {
COMPR_NONE = 0,
COMPR_RLE = 1,
COMPR_ZLIB = 2,
COMPR_FRACTAL = 3
} xcf_compr_type;
typedef enum {
IMAGE_RGB = 0,
IMAGE_GREYSCALE = 1,
IMAGE_INDEXED = 2
} xcf_image_type;
typedef struct {
Uint32 id;
Uint32 length;
union {
struct {
Uint32 num;
char * cmap;
} colormap; // 1
struct {
Uint32 drawable_offset;
} floating_selection; // 5
Sint32 opacity;
Sint32 mode;
int visible;
int linked;
int preserve_transparency;
int apply_mask;
int show_mask;
struct {
Sint32 x;
Sint32 y;
} offset;
unsigned char color [3];
Uint8 compression;
struct {
Sint32 x;
Sint32 y;
} resolution;
struct {
char * name;
Uint32 flags;
Uint32 size;
char * data;
} parasite;
} data;
} xcf_prop;
typedef struct {
char sign [14];
Uint32 width;
Uint32 height;
Sint32 image_type;
xcf_prop * properties;
Uint32 * layer_file_offsets;
Uint32 * channel_file_offsets;
xcf_compr_type compr;
Uint32 cm_num;
unsigned char * cm_map;
} xcf_header;
typedef struct {
Uint32 width;
Uint32 height;
Sint32 layer_type;
char * name;
xcf_prop * properties;
Uint32 hierarchy_file_offset;
Uint32 layer_mask_offset;
Uint32 offset_x;
Uint32 offset_y;
May 3, 2002
May 3, 2002
171
int visible;
172
173
174
175
176
177
178
179
180
181
182
183
} xcf_layer;
typedef struct {
Uint32 width;
Uint32 height;
char * name;
xcf_prop * properties;
Uint32 hierarchy_file_offset;
Uint32 color;
Uint32 opacity;
May 3, 2002
May 3, 2002
184
185
int selection;
int visible;
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
} xcf_channel;
typedef struct {
Uint32 width;
Uint32 height;
Uint32 bpp;
Uint32 * level_file_offsets;
} xcf_hierarchy;
typedef struct {
Uint32 width;
Uint32 height;
Uint32 * tile_file_offsets;
} xcf_level;
typedef unsigned char * xcf_tile;
typedef unsigned char * (* load_tile_type) (SDL_RWops *, Uint32, int, int, int);
/* See if an image is contained in a data source */
Feb 4, 2006
Feb 4, 2006
209
210
211
212
213
214
int IMG_isXCF(SDL_RWops *src)
{
int start;
int is_XCF;
char magic[14];
Feb 13, 2007
Feb 13, 2007
215
216
if ( !src )
return 0;
Feb 4, 2006
Feb 4, 2006
217
218
219
220
221
222
223
start = SDL_RWtell(src);
is_XCF = 0;
if ( SDL_RWread(src, magic, sizeof(magic), 1) ) {
if (strncmp(magic, "gimp xcf ", 9) == 0) {
is_XCF = 1;
}
}
Nov 8, 2009
Nov 8, 2009
224
SDL_RWseek(src, start, RW_SEEK_SET);
Feb 4, 2006
Feb 4, 2006
225
return(is_XCF);
226
227
}
Oct 16, 2018
Oct 16, 2018
228
229
230
231
232
233
234
235
236
/* SDL-1.2 doesn't have a SDL_RWsize(). sigh... */
static Sint32 SDLCALL SDL12_RWsize(SDL_RWops *rw) {
Sint32 pos, size;
if ((pos=SDL_RWtell(rw))<0) return -1;
size = SDL_RWseek(rw, 0, RW_SEEK_END);
SDL_RWseek(rw, pos, RW_SEEK_SET);
return size;
}
237
static char * read_string (SDL_RWops * src) {
Oct 16, 2018
Oct 16, 2018
238
Sint32 remaining;
239
240
241
242
Uint32 tmp;
char * data;
tmp = SDL_ReadBE32 (src);
Oct 16, 2018
Oct 16, 2018
243
244
remaining = SDL12_RWsize(src) - SDL_RWtell(src);
if (tmp > 0 && tmp <= remaining) {
245
data = (char *) malloc (sizeof (char) * tmp);
Oct 16, 2018
Oct 16, 2018
246
247
248
249
if (data) {
SDL_RWread(src, data, tmp, 1);
data[tmp - 1] = '\0';
}
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
}
else {
data = NULL;
}
return data;
}
static Uint32 Swap32 (Uint32 v) {
return
((v & 0x000000FF) << 16)
| ((v & 0x0000FF00))
| ((v & 0x00FF0000) >> 16)
| ((v & 0xFF000000));
}
Nov 30, 2018
Nov 30, 2018
266
static int xcf_read_property (SDL_RWops * src, xcf_prop * prop) {
Oct 16, 2018
Oct 16, 2018
267
Uint32 len;
268
269
270
prop->id = SDL_ReadBE32 (src);
prop->length = SDL_ReadBE32 (src);
Feb 21, 2003
Feb 21, 2003
271
#if DEBUG
Nov 30, 2018
Nov 30, 2018
272
printf ("%.8X: %s(%u): %u\n", SDL_RWtell (src), prop->id < 25 ? prop_names [prop->id] : "unknown", prop->id, prop->length);
May 3, 2002
May 3, 2002
273
#endif
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
switch (prop->id) {
case PROP_COLORMAP:
prop->data.colormap.num = SDL_ReadBE32 (src);
prop->data.colormap.cmap = (char *) malloc (sizeof (char) * prop->data.colormap.num * 3);
SDL_RWread (src, prop->data.colormap.cmap, prop->data.colormap.num*3, 1);
break;
case PROP_OFFSETS:
prop->data.offset.x = SDL_ReadBE32 (src);
prop->data.offset.y = SDL_ReadBE32 (src);
break;
case PROP_OPACITY:
prop->data.opacity = SDL_ReadBE32 (src);
break;
case PROP_COMPRESSION:
case PROP_COLOR:
Oct 16, 2018
Oct 16, 2018
291
292
293
294
295
296
297
if (prop->length > sizeof(prop->data)) {
len = sizeof(prop->data);
}
else {
len = prop->length;
}
SDL_RWread(src, &prop->data, len, 1);
298
break;
May 3, 2002
May 3, 2002
299
300
301
case PROP_VISIBLE:
prop->data.visible = SDL_ReadBE32 (src);
break;
302
303
default:
// SDL_RWread (src, &prop->data, prop->length, 1);
Nov 30, 2018
Nov 30, 2018
304
305
if (SDL_RWseek (src, prop->length, RW_SEEK_CUR) < 0)
return 0; // ERROR
306
}
Nov 30, 2018
Nov 30, 2018
307
return 1; // OK
308
309
}
Sep 26, 2009
Sep 26, 2009
310
static void free_xcf_header (xcf_header * h) {
311
312
if (h->cm_num)
free (h->cm_map);
Oct 16, 2018
Oct 16, 2018
313
314
if (h->layer_file_offsets)
free (h->layer_file_offsets);
315
316
317
free (h);
}
Sep 26, 2009
Sep 26, 2009
318
static xcf_header * read_xcf_header (SDL_RWops * src) {
319
320
321
322
xcf_header * h;
xcf_prop prop;
h = (xcf_header *) malloc (sizeof (xcf_header));
Oct 16, 2018
Oct 16, 2018
323
324
325
if (!h) {
return NULL;
}
326
327
328
329
SDL_RWread (src, h->sign, 14, 1);
h->width = SDL_ReadBE32 (src);
h->height = SDL_ReadBE32 (src);
h->image_type = SDL_ReadBE32 (src);
Nov 30, 2018
Nov 30, 2018
330
331
332
333
#ifdef DEBUG
printf ("XCF signature : %.14s\n", h->sign);
printf (" (%u,%u) type=%u\n", h->width, h->height, h->image_type);
#endif
334
335
h->properties = NULL;
Oct 16, 2018
Oct 16, 2018
336
h->layer_file_offsets = NULL;
337
338
339
340
341
342
h->compr = COMPR_NONE;
h->cm_num = 0;
h->cm_map = NULL;
// Just read, don't save
do {
Nov 30, 2018
Nov 30, 2018
343
344
345
346
if (!xcf_read_property (src, &prop)) {
free_xcf_header (h);
return NULL;
}
347
if (prop.id == PROP_COMPRESSION)
Oct 16, 2018
Oct 16, 2018
348
h->compr = (xcf_compr_type)prop.data.compression;
349
else if (prop.id == PROP_COLORMAP) {
Feb 21, 2003
Feb 21, 2003
350
// unused var: int i;
Oct 16, 2018
Oct 16, 2018
351
352
353
354
355
356
357
358
Uint32 cm_num;
unsigned char *cm_map;
cm_num = prop.data.colormap.num;
cm_map = (unsigned char *) realloc(h->cm_map, sizeof (unsigned char) * 3 * cm_num);
if (cm_map) {
h->cm_num = cm_num;
h->cm_map = cm_map;
359
memcpy (h->cm_map, prop.data.colormap.cmap, 3*sizeof (char)*h->cm_num);
Oct 16, 2018
Oct 16, 2018
360
}
361
free (prop.data.colormap.cmap);
Oct 16, 2018
Oct 16, 2018
362
363
364
365
366
if (!cm_map) {
free_xcf_header(h);
return NULL;
}
367
368
369
370
371
372
}
} while (prop.id != PROP_END);
return h;
}
Sep 26, 2009
Sep 26, 2009
373
static void free_xcf_layer (xcf_layer * l) {
374
375
376
377
free (l->name);
free (l);
}
Sep 26, 2009
Sep 26, 2009
378
static xcf_layer * read_xcf_layer (SDL_RWops * src) {
379
380
381
382
383
384
385
386
387
388
389
xcf_layer * l;
xcf_prop prop;
l = (xcf_layer *) malloc (sizeof (xcf_layer));
l->width = SDL_ReadBE32 (src);
l->height = SDL_ReadBE32 (src);
l->layer_type = SDL_ReadBE32 (src);
l->name = read_string (src);
do {
Nov 30, 2018
Nov 30, 2018
390
391
392
393
if (!xcf_read_property (src, &prop)) {
free_xcf_layer (l);
return NULL;
}
394
395
396
if (prop.id == PROP_OFFSETS) {
l->offset_x = prop.data.offset.x;
l->offset_y = prop.data.offset.y;
May 3, 2002
May 3, 2002
397
398
} else if (prop.id == PROP_VISIBLE) {
l->visible = prop.data.visible ? 1 : 0;
399
400
401
402
403
404
405
406
407
}
} while (prop.id != PROP_END);
l->hierarchy_file_offset = SDL_ReadBE32 (src);
l->layer_mask_offset = SDL_ReadBE32 (src);
return l;
}
Sep 26, 2009
Sep 26, 2009
408
static void free_xcf_channel (xcf_channel * c) {
409
410
411
412
free (c->name);
free (c);
}
Sep 26, 2009
Sep 26, 2009
413
static xcf_channel * read_xcf_channel (SDL_RWops * src) {
414
415
416
417
418
419
420
421
422
423
424
xcf_channel * l;
xcf_prop prop;
l = (xcf_channel *) malloc (sizeof (xcf_channel));
l->width = SDL_ReadBE32 (src);
l->height = SDL_ReadBE32 (src);
l->name = read_string (src);
l->selection = 0;
do {
Nov 30, 2018
Nov 30, 2018
425
426
427
428
if (!xcf_read_property (src, &prop)) {
free_xcf_channel (l);
return NULL;
}
429
430
431
432
433
434
435
436
437
438
439
440
switch (prop.id) {
case PROP_OPACITY:
l->opacity = prop.data.opacity << 24;
break;
case PROP_COLOR:
l->color = ((Uint32) prop.data.color[0] << 16)
| ((Uint32) prop.data.color[1] << 8)
| ((Uint32) prop.data.color[2]);
break;
case PROP_SELECTION:
l->selection = 1;
break;
May 3, 2002
May 3, 2002
441
442
443
case PROP_VISIBLE:
l->visible = prop.data.visible ? 1 : 0;
break;
444
default:
Feb 21, 2003
Feb 21, 2003
445
;
446
447
448
449
450
451
452
453
}
} while (prop.id != PROP_END);
l->hierarchy_file_offset = SDL_ReadBE32 (src);
return l;
}
Sep 26, 2009
Sep 26, 2009
454
static void free_xcf_hierarchy (xcf_hierarchy * h) {
455
456
457
458
free (h->level_file_offsets);
free (h);
}
Sep 26, 2009
Sep 26, 2009
459
static xcf_hierarchy * read_xcf_hierarchy (SDL_RWops * src) {
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
xcf_hierarchy * h;
int i;
h = (xcf_hierarchy *) malloc (sizeof (xcf_hierarchy));
h->width = SDL_ReadBE32 (src);
h->height = SDL_ReadBE32 (src);
h->bpp = SDL_ReadBE32 (src);
h->level_file_offsets = NULL;
i = 0;
do {
h->level_file_offsets = (Uint32 *) realloc (h->level_file_offsets, sizeof (Uint32) * (i+1));
h->level_file_offsets [i] = SDL_ReadBE32 (src);
} while (h->level_file_offsets [i++]);
return h;
}
Sep 26, 2009
Sep 26, 2009
478
static void free_xcf_level (xcf_level * l) {
479
480
481
482
free (l->tile_file_offsets);
free (l);
}
Sep 26, 2009
Sep 26, 2009
483
static xcf_level * read_xcf_level (SDL_RWops * src) {
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
xcf_level * l;
int i;
l = (xcf_level *) malloc (sizeof (xcf_level));
l->width = SDL_ReadBE32 (src);
l->height = SDL_ReadBE32 (src);
l->tile_file_offsets = NULL;
i = 0;
do {
l->tile_file_offsets = (Uint32 *) realloc (l->tile_file_offsets, sizeof (Uint32) * (i+1));
l->tile_file_offsets [i] = SDL_ReadBE32 (src);
} while (l->tile_file_offsets [i++]);
return l;
}
Sep 26, 2009
Sep 26, 2009
501
static void free_xcf_tile (unsigned char * t) {
502
503
504
free (t);
}
Sep 26, 2009
Sep 26, 2009
505
static unsigned char * load_xcf_tile_none (SDL_RWops * src, Uint32 len, int bpp, int x, int y) {
506
507
unsigned char * load;
Apr 30, 2006
Apr 30, 2006
508
load = (unsigned char *) malloc (len); // expect this is okay
509
510
511
512
513
SDL_RWread (src, load, len, 1);
return load;
}
Sep 26, 2009
Sep 26, 2009
514
static unsigned char * load_xcf_tile_rle (SDL_RWops * src, Uint32 len, int bpp, int x, int y) {
515
516
517
518
519
unsigned char * load, * t, * data, * d;
Uint32 reallen;
int i, size, count, j, length;
unsigned char val;
Oct 16, 2018
Oct 16, 2018
520
521
522
523
if (len == 0) { /* probably bogus data. */
return NULL;
}
Apr 30, 2006
Apr 30, 2006
524
t = load = (unsigned char *) malloc (len);
525
526
reallen = SDL_RWread (src, t, 1, len);
Oct 16, 2018
Oct 16, 2018
527
data = (unsigned char *) calloc (1, x*y*bpp);
528
529
530
531
for (i = 0; i < bpp; i++) {
d = data + i;
size = x*y;
count = 0;
Oct 16, 2018
Oct 16, 2018
532
533
534
535
536
537
538
539
540
541
542
543
while (size > 0) {
val = *t++;
length = val;
if (length >= 128) {
length = 255 - (length - 1);
if (length == 128) {
length = (*t << 8) + t[1];
t += 2;
}
Oct 16, 2018
Oct 16, 2018
544
545
546
547
548
549
if (((size_t) (t - load) + length) >= len) {
break; /* bogus data */
} else if (length > size) {
break; /* bogus data */
}
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
count += length;
size -= length;
while (length-- > 0) {
*d = *t++;
d += bpp;
}
}
else {
length += 1;
if (length == 128) {
length = (*t << 8) + t[1];
t += 2;
}
Oct 16, 2018
Oct 16, 2018
565
566
567
568
569
570
571
if (((size_t) (t - load)) >= len) {
break; /* bogus data */
}
else if (length > size) {
break; /* bogus data */
}
572
573
574
575
576
577
578
579
580
581
582
count += length;
size -= length;
val = *t++;
for (j = 0; j < length; j++) {
*d = val;
d += bpp;
}
}
}
Oct 16, 2018
Oct 16, 2018
583
584
585
586
if (size > 0) {
break; /* just drop out, untouched data initialized to zero. */
}
587
588
589
590
591
592
593
594
}
free (load);
return (data);
}
static Uint32 rgb2grey (Uint32 a) {
Uint8 l;
Oct 16, 2018
Oct 16, 2018
595
596
597
l = (Uint8)(0.2990 * ((a & 0x00FF0000) >> 16)
+ 0.5870 * ((a & 0x0000FF00) >> 8)
+ 0.1140 * ((a & 0x000000FF)));
598
599
600
601
return (l << 16) | (l << 8) | l;
}
Sep 26, 2009
Sep 26, 2009
602
static void create_channel_surface (SDL_Surface * surf, xcf_image_type itype, Uint32 color, Uint32 opacity) {
Feb 21, 2003
Feb 21, 2003
603
Uint32 c = 0;
604
605
606
607
608
609
610
611
612
613
614
615
616
switch (itype) {
case IMAGE_RGB:
case IMAGE_INDEXED:
c = opacity | color;
break;
case IMAGE_GREYSCALE:
c = opacity | rgb2grey (color);
break;
}
SDL_FillRect (surf, NULL, c);
}
Oct 16, 2018
Oct 16, 2018
617
618
619
static int
do_layer_surface(SDL_Surface * surface, SDL_RWops * src, xcf_header * head, xcf_layer * layer, load_tile_type load_tile)
{
620
621
622
623
624
625
xcf_hierarchy * hierarchy;
xcf_level * level;
unsigned char * tile;
Uint8 * p8;
Uint16 * p16;
Uint32 * p;
Oct 16, 2018
Oct 16, 2018
626
627
int i, j;
Uint32 x, y, tx, ty, ox, oy;
628
629
Uint32 *row;
Nov 8, 2009
Nov 8, 2009
630
SDL_RWseek (src, layer->hierarchy_file_offset, RW_SEEK_SET);
631
632
hierarchy = read_xcf_hierarchy (src);
Oct 16, 2018
Oct 16, 2018
633
634
635
636
637
638
639
640
641
642
643
644
if (hierarchy->bpp > 4) { /* unsupported. */
fprintf (stderr, "Unknown Gimp image bpp (%u)\n", (unsigned int) hierarchy->bpp);
free_xcf_hierarchy(hierarchy);
return 1;
}
if ((hierarchy->width > 20000) || (hierarchy->height > 20000)) { /* arbitrary limit to avoid integer overflow. */
fprintf (stderr, "Gimp image too large (%ux%u)\n", (unsigned int) hierarchy->width, (unsigned int) hierarchy->height);
free_xcf_hierarchy(hierarchy);
return 1;
}
645
646
level = NULL;
for (i = 0; hierarchy->level_file_offsets [i]; i++) {
Nov 8, 2009
Nov 8, 2009
647
SDL_RWseek (src, hierarchy->level_file_offsets [i], RW_SEEK_SET);
648
649
650
651
level = read_xcf_level (src);
ty = tx = 0;
for (j = 0; level->tile_file_offsets [j]; j++) {
Nov 8, 2009
Nov 8, 2009
652
SDL_RWseek (src, level->tile_file_offsets [j], RW_SEEK_SET);
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
ox = tx+64 > level->width ? level->width % 64 : 64;
oy = ty+64 > level->height ? level->height % 64 : 64;
if (level->tile_file_offsets [j+1]) {
tile = load_tile
(src,
level->tile_file_offsets [j+1] - level->tile_file_offsets [j],
hierarchy->bpp,
ox, oy);
}
else {
tile = load_tile
(src,
ox*oy*6,
hierarchy->bpp,
ox, oy);
}
Oct 16, 2018
Oct 16, 2018
670
671
672
673
674
675
676
if (!tile) {
if (hierarchy)
free_xcf_hierarchy(hierarchy);
if (level)
free_xcf_level(level);
return 1;
}
677
678
679
680
681
p8 = tile;
p16 = (Uint16 *) p8;
p = (Uint32 *) p8;
for (y=ty; y < ty+oy; y++) {
Oct 16, 2018
Oct 16, 2018
682
683
684
if ((ty >= surface->h) || ((tx+ox) > surface->w)) {
break;
}
685
686
687
688
689
690
691
692
693
row = (Uint32 *)((Uint8 *)surface->pixels + y*surface->pitch + tx*4);
switch (hierarchy->bpp) {
case 4:
for (x=tx; x < tx+ox; x++)
*row++ = Swap32 (*p++);
break;
case 3:
for (x=tx; x < tx+ox; x++) {
*row = 0xFF000000;
Oct 16, 2018
Oct 16, 2018
694
695
696
*row |= ((Uint32)*p8++ << 16);
*row |= ((Uint32)*p8++ << 8);
*row |= ((Uint32)*p8++ << 0);
697
698
699
700
701
702
703
704
705
706
row++;
}
break;
case 2: // Indexed/Greyscale + Alpha
switch (head->image_type) {
case IMAGE_INDEXED:
for (x=tx; x < tx+ox; x++) {
*row = ((Uint32) (head->cm_map [*p8*3]) << 16);
*row |= ((Uint32) (head->cm_map [*p8*3+1]) << 8);
*row |= ((Uint32) (head->cm_map [*p8++*3+2]) << 0);
Oct 16, 2018
Oct 16, 2018
707
*row |= ((Uint32) *p8++ << 24);
708
709
710
711
712
713
714
715
row++;
}
break;
case IMAGE_GREYSCALE:
for (x=tx; x < tx+ox; x++) {
*row = ((Uint32) *p8 << 16);
*row |= ((Uint32) *p8 << 8);
*row |= ((Uint32) *p8++ << 0);
Oct 16, 2018
Oct 16, 2018
716
*row |= ((Uint32) *p8++ << 24);
717
718
719
720
721
row++;
}
break;
default:
fprintf (stderr, "Unknown Gimp image type (%d)\n", head->image_type);
Oct 16, 2018
Oct 16, 2018
722
723
724
725
if (hierarchy)
free_xcf_hierarchy(hierarchy);
if (level)
free_xcf_level (level);
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
return 1;
}
break;
case 1: // Indexed/Greyscale
switch (head->image_type) {
case IMAGE_INDEXED:
for (x = tx; x < tx+ox; x++) {
*row++ = 0xFF000000
| ((Uint32) (head->cm_map [*p8*3]) << 16)
| ((Uint32) (head->cm_map [*p8*3+1]) << 8)
| ((Uint32) (head->cm_map [*p8*3+2]) << 0);
p8++;
}
break;
case IMAGE_GREYSCALE:
for (x=tx; x < tx+ox; x++) {
*row++ = 0xFF000000
| (((Uint32) (*p8)) << 16)
| (((Uint32) (*p8)) << 8)
Jul 21, 2007
Jul 21, 2007
745
746
| (((Uint32) (*p8)) << 0);
++p8;
747
748
749
750
}
break;
default:
fprintf (stderr, "Unknown Gimp image type (%d)\n", head->image_type);
Oct 16, 2018
Oct 16, 2018
751
752
753
754
755
756
if (tile)
free_xcf_tile (tile);
if (level)
free_xcf_level (level);
if (hierarchy)
free_xcf_hierarchy (hierarchy);
757
758
759
760
761
return 1;
}
break;
}
}
Oct 16, 2018
Oct 16, 2018
762
763
free_xcf_tile(tile);
764
765
766
767
768
769
770
771
772
773
774
775
776
tx += 64;
if (tx >= level->width) {
tx = 0;
ty += 64;
}
if (ty >= level->height) {
break;
}
}
free_xcf_level (level);
}
free_xcf_hierarchy (hierarchy);
Feb 21, 2003
Feb 21, 2003
777
778
return 0;
779
780
}
Feb 4, 2006
Feb 4, 2006
781
782
783
784
SDL_Surface *IMG_LoadXCF_RW(SDL_RWops *src)
{
int start;
const char *error = NULL;
785
786
787
788
SDL_Surface *surface, *lays;
xcf_header * head;
xcf_layer * layer;
xcf_channel ** channel;
Feb 4, 2006
Feb 4, 2006
789
int chnls, i, offsets;
Oct 16, 2018
Oct 16, 2018
790
Sint32 offset, fp;
791
792
793
unsigned char * (* load_tile) (SDL_RWops *, Uint32, int, int, int);
Jan 4, 2004
Jan 4, 2004
794
795
796
797
if ( !src ) {
/* The error message has been set in SDL_RWFromFile */
return NULL;
}
Feb 4, 2006
Feb 4, 2006
798
start = SDL_RWtell(src);
Jan 4, 2004
Jan 4, 2004
799
Feb 21, 2003
Feb 21, 2003
800
801
802
/* Initialize the data we will clean up when we're done */
surface = NULL;
803
head = read_xcf_header (src);
Oct 16, 2018
Oct 16, 2018
804
805
806
if (!head) {
return NULL;
}
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
switch (head->compr) {
case COMPR_NONE:
load_tile = load_xcf_tile_none;
break;
case COMPR_RLE:
load_tile = load_xcf_tile_rle;
break;
default:
fprintf (stderr, "Unsupported Compression.\n");
free_xcf_header (head);
return NULL;
}
/* Create the surface of the appropriate type */
surface = SDL_AllocSurface(SDL_SWSURFACE, head->width, head->height, 32,
0x00FF0000,0x0000FF00,0x000000FF,0xFF000000);
if ( surface == NULL ) {
Feb 4, 2006
Feb 4, 2006
826
error = "Out of memory";
827
828
829
830
831
goto done;
}
offsets = 0;
Feb 21, 2003
Feb 21, 2003
832
while ((offset = SDL_ReadBE32 (src))) {
833
head->layer_file_offsets = (Uint32 *) realloc (head->layer_file_offsets, sizeof (Uint32) * (offsets+1));
Oct 16, 2018
Oct 16, 2018
834
head->layer_file_offsets [offsets] = (Uint32)offset;
835
836
837
offsets++;
}
fp = SDL_RWtell (src);
Oct 16, 2018
Oct 16, 2018
838
839
840
841
842
lays = SDL_AllocSurface(SDL_SWSURFACE, head->width, head->height, 32,
0x00FF0000,0x0000FF00,0x000000FF,0xFF000000);
if ( lays == NULL ) {
Feb 4, 2006
Feb 4, 2006
843
error = "Out of memory";
844
845
846
847
848
849
goto done;
}
// Blit layers backwards, because Gimp saves them highest first
for (i = offsets; i > 0; i--) {
SDL_Rect rs, rd;
Nov 8, 2009
Nov 8, 2009
850
SDL_RWseek (src, head->layer_file_offsets [i-1], RW_SEEK_SET);
851
852
853
854
855
856
857
858
859
860
861
862
layer = read_xcf_layer (src);
do_layer_surface (lays, src, head, layer, load_tile);
rs.x = 0;
rs.y = 0;
rs.w = layer->width;
rs.h = layer->height;
rd.x = layer->offset_x;
rd.y = layer->offset_y;
rd.w = layer->width;
rd.h = layer->height;
May 3, 2002
May 3, 2002
863
864
865
if (layer->visible)
SDL_BlitSurface (lays, &rs, surface, &rd);
free_xcf_layer (layer);
866
867
868
869
}
SDL_FreeSurface (lays);
Nov 8, 2009
Nov 8, 2009
870
SDL_RWseek (src, fp, RW_SEEK_SET);
871
872
873
874
// read channels
channel = NULL;
chnls = 0;
Feb 21, 2003
Feb 21, 2003
875
while ((offset = SDL_ReadBE32 (src))) {
876
877
channel = (xcf_channel **) realloc (channel, sizeof (xcf_channel *) * (chnls+1));
fp = SDL_RWtell (src);
Nov 8, 2009
Nov 8, 2009
878
SDL_RWseek (src, offset, RW_SEEK_SET);
879
channel [chnls++] = (read_xcf_channel (src));
Nov 8, 2009
Nov 8, 2009
880
SDL_RWseek (src, fp, RW_SEEK_SET);
881
882
883
884
885
886
887
888
889
}
if (chnls) {
SDL_Surface * chs;
chs = SDL_AllocSurface(SDL_SWSURFACE, head->width, head->height, 32,
0x00FF0000,0x0000FF00,0x000000FF,0xFF000000);
if (chs == NULL) {
Feb 4, 2006
Feb 4, 2006
890
error = "Out of memory";
891
892
893
894
goto done;
}
for (i = 0; i < chnls; i++) {
// printf ("CNLBLT %i\n", i);
May 3, 2002
May 3, 2002
895
if (!channel [i]->selection && channel [i]->visible) {
Oct 16, 2018
Oct 16, 2018
896
create_channel_surface (chs, (xcf_image_type)head->image_type, channel [i]->color, channel [i]->opacity);
897
898
899
900
SDL_BlitSurface (chs, NULL, surface, NULL);
}
free_xcf_channel (channel [i]);
}
Oct 16, 2018
Oct 16, 2018
901
free(channel);
902
903
904
905
SDL_FreeSurface (chs);
}
Feb 4, 2006
Feb 4, 2006
906
done:
907
free_xcf_header (head);
Feb 4, 2006
Feb 4, 2006
908
if ( error ) {
Nov 8, 2009
Nov 8, 2009
909
SDL_RWseek(src, start, RW_SEEK_SET);
Feb 4, 2006
Feb 4, 2006
910
911
912
913
914
if ( surface ) {
SDL_FreeSurface(surface);
surface = NULL;
}
IMG_SetError(error);
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
}
return(surface);
}
#else
/* See if an image is contained in a data source */
int IMG_isXCF(SDL_RWops *src)
{
return(0);
}
/* Load a XCF type image from an SDL datasource */
SDL_Surface *IMG_LoadXCF_RW(SDL_RWops *src)
{
return(NULL);
}
#endif /* LOAD_XCF */