summaryrefslogtreecommitdiff
path: root/src/bin/xcf/main.c
blob: dca44d0c736dd407460d0ce6b83008789d44e90e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
62
63
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
/*

  -----------------------------[ XCF Loader ]-----------------------------

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2, or (at your option)
  any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software Foundation,
  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

  ------------------------------------------------------------------------

  There's a quick overview of the XCF file structure in Gimp's source
  tree, in docs/xcf.doc. However it's brief, so here's a more verbose
  overview based on my understanding of XCF.  All image characteristics
  are defined in "properties". In the data stream properties are defined
  through a 4 bit index number (see enum below), followed by a 4 byte
  length. The property data directly follows this information. A list of
  properties ends when PROP_END is encountered. There is a properties
  block at the beginning of the file, as well as at the beginning of each
  layer and channel. Layers and channels are read at offsets in the file,
  the list of layers (resp. channels) is exhausted when the next offset
  read in is zero.

  The actual image data is stored in tiles, which are by default 64x64 in
  size, likely with smaller ones on the right and bottom edges.

  The position of the tiles on the image is left->right, row by row. The
  actual DATA8* data is contained in a "level" which is contained in a
  "hierarchy". I've not really understood the purpose of the hierarchy, as
  it seems to always contain only one level anyway.

  Layer masks are stored as channels (basically grayscale layers with a
  single color definition. For the purpose of this loader I replaced the
  concept of a channel with a layer, since it doesn't really matter.

  Ok, hope this helps with understanding XCF.                 -- cK.

*/
#include "common.h"
#include "shmfile.h"
#include "timeout.h"

#define FREE(X) { free(X); X = NULL; }

#define TILE_WIDTH   64
#define TILE_HEIGHT  64

/* --------------------------------------------------------------------------- typedefs ------------ */

typedef struct _Layer Layer;
typedef struct _Tile Tile;

/* ------------------------------------------------------------------------------ enums ------------ */


/* These are all the properties that a layer or channel can have.
   Only some of them are actually used. */
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
}
PropType;

/* The tiles can be stored in an encrypted fashion, defined as follows: */
typedef enum
{
  COMPRESS_NONE = 0,
  COMPRESS_RLE = 1,
  COMPRESS_ZLIB = 2,
  COMPRESS_FRACTAL = 3  /* Unused. */
} CompressionType;

/* Layer modes (*SIGH*) */
typedef enum
{
  NORMAL_MODE,
  DISSOLVE_MODE,
  BEHIND_MODE,
  MULTIPLY_MODE,
  SCREEN_MODE,
  OVERLAY_MODE,
  DIFFERENCE_MODE,
  ADDITION_MODE,
  SUBTRACT_MODE,
  DARKEN_ONLY_MODE,
  LIGHTEN_ONLY_MODE,
  HUE_MODE,
  SATURATION_MODE,
  COLOR_MODE,
  VALUE_MODE,
  DIVIDE_MODE,
  ERASE_MODE,         /*< skip >*/
  REPLACE_MODE,       /*< skip >*/
  ANTI_ERASE_MODE     /*< skip >*/
}
LayerModeEffects;

/* Base image types */
typedef enum
{
  RGB,
  GRAY,
  INDEXED
} GimpImageBaseType;

/* Image types */
typedef enum
{
  RGB_GIMAGE,
  RGBA_GIMAGE,
  GRAY_GIMAGE,
  GRAYA_GIMAGE,
  INDEXED_GIMAGE,
  INDEXEDA_GIMAGE
} GimpImageType;

/* ---------------------------------------------------------------------------- structs ------------ */

/* Ok, this is what's left of Gimp's layer abstraction. I kicked out
   all the stuff that's unnecessary and added the necessary stuff
   from the Gimp drawable superclass. This one also serves as a
   Channel, e.g. for use as a layer mask.
                                            --cK.
*/
struct _Layer
{
  int            visible;               /* controls visibility            */
  int            width, height;		/* size of drawable               */
  int            bpp;                   /* depth                          */
  int            offset_x, offset_y;	/* offset of layer in image       */

  int            ID;			/* provides a unique ID           */
  GimpImageType  type;			/* type of drawable               */
  char           has_alpha;		/* drawable has alpha             */

  int            preserve_trans;	/*  preserve transparency         */

  Layer          *mask;                 /*  possible layer mask           */

  int        opacity;                   /*  layer opacity                 */
  LayerModeEffects  mode;               /*  layer combination mode        */


  /* XCF stores the actual image data as tiles. A Layer is covered with
     tiles, the tiles on the right and bottom will (usually) be a bit
     smaller. num_rows and num_cols gives the number of tile rows and
     columns.
  */

  Tile*   tiles;                        /* tiles for drawable data        */
  int     num_rows;
  int     num_cols;

  /* After the tiles are read in, they're serialized int an array
     of DATA8's, that will always contain 4 bpp data. Not optimal,
     I know, but makes life easier
  */

  DATA8*  data;

  /* Layers are stored as a linked list. */
  struct _Layer* next;
  struct _Layer* prev;
};


/* The tile structure:
*/
struct _Tile
{
  unsigned char  bpp;     /* the bytes per pixel (1, 2, 3 or 4) */
  unsigned short ewidth;  /* the effective width of the tile */
  unsigned short eheight; /* the effective height of the tile */

  /* a tile's effective width and height may be smaller
   * (but not larger) than TILE_WIDTH and TILE_HEIGHT.
   * This is to handle edge tiles of a drawable.
   */

  DATA8 *data;
};


/* This struct simply contains everything that didn't fit elsewhere,
   based on GimpImage :)
*/
struct _GimpImage
{
  void               *file;
  char               *filename;
  long                cp;
  int                 compression;     /*  file compression mode        */
  int                 file_version;

  int                 width, height;   /*  width and height attributes  */
  GimpImageBaseType   base_type;       /*  base gimp_image type         */

  DATA32              floating_sel_offset;

  DATA8*              cmap;            /*  colormap--for indexed        */
  int                 num_cols;        /*  number of colors in map      */

 /* If a layer number was passed to the loader, it goes here: */
  int                 single_layer_index;

  /* Tadaa -- the final image data. Layers get pasted
     onto this one, bottom-up.
  */
  DATA8*              data;

  Layer*              layers;
  Layer*              last_layer;
  Layer*              floating_sel;
}
_image;

/* ------------------------------------------------------------------------- prototypes ------------ */

typedef struct _File  File;
typedef struct _Chunk Chunk;

#define FBUF 1
#define CHUNK_SIZE (32 * 1024)

struct _Chunk
{
   int            size;
   unsigned char  data[CHUNK_SIZE];
};

struct _File
{
   int            fd;
   gzFile         fp;
   long           pos, size;
   int            chunk_num;
   Chunk        **chunk;
};

static File *
f_open(const char *file)
{
   File *f;
   
   f = calloc(1, sizeof(File));
   if (!f) return NULL;
   f->fd = open(file, O_RDONLY);
   if (f->fd < 0)
     {
        D("open of %s failed\n", file);
        free(f);
        return NULL;
     }
   f->fp = gzdopen(f->fd, "r");
   if (!f->fp)
     {
        D("gzdopen of %i failed\n", f->fd);
        close(f->fd);
        free(f);
        return NULL;
     }
   return f;
}

static void
f_close(File *f)
{
   // FIXME: free chunks
   gzclose(f->fp);
   free(f);
}

#ifdef FBUF   
static void
_f_read_pos(File *f, long pos, long bytes)
{
   long i, cnum;
   Chunk **cks;
   
   if (f->size > 0) return;
   cnum = ((pos + bytes) / CHUNK_SIZE) + 1;
   if (f->chunk_num >= cnum) return;
   D("FFFF: go up to %li + %li, chunks %li\n", pos, bytes, cnum);
   cks = realloc(f->chunk, sizeof(Chunk *) * cnum);
   if (!cks) return;
   f->chunk = cks;
   for (i = f->chunk_num; i < cnum; i++)
     {
        if (f->size != 0)
          {
             f->chunk[i] = NULL;
             continue;
          }
        f->chunk[i] = malloc(sizeof(Chunk));
        if (f->chunk[i])
          {
             f->chunk[i]->size = gzread(f->fp, f->chunk[i]->data, CHUNK_SIZE);
             D("FFFF: go %i\n", f->chunk[i]->size);
             if (f->chunk[i]->size < CHUNK_SIZE)
               {
                  f->size = (i * CHUNK_SIZE) + f->chunk[i]->size;
               }
          }
     }
   f->chunk_num = cnum;
}
#endif

static long
f_read(File *f, unsigned char *dest, long bytes)
{
#ifdef FBUF   
   long done = 0, off = 0;
   int c;
   unsigned char *p;
   _f_read_pos(f, f->pos, bytes);
   
   c = f->pos / CHUNK_SIZE;
   off = f->pos - (c * CHUNK_SIZE);
   p = dest;
   while ((done < bytes) && (c < f->chunk_num))
     {
        long amount = bytes - done;
        
        if (!f->chunk[c]) break;
        if (amount > (f->chunk[c]->size - off))
           amount = (f->chunk[c]->size - off);
        if (amount < 1) return 0;
        memcpy(p, f->chunk[c]->data + off, amount);
        p += amount;
        off = 0;
        done += amount;
        c++;
     }
   f->pos += done;
   return done;
#else
   long done = gzread(f->fp, dest, bytes);
   f->pos += done;
   return done;
#endif   
}

static void
f_seek(File *f, long pos)
{
#ifdef FBUF
   if (f->size > 0)
     {
        if (pos >= f->size) pos = f->size -1;
     }
#endif   
   if (f->pos == pos) return;
   f->pos = pos;
#ifdef FBUF
   _f_read_pos(f, f->pos, 1);
#else
   gzseek(f->fp, f->pos, SEEK_SET);
#endif   
}


/* stuff that was adapted from xcf.c */

static void       xcf_seek_pos(int pos);
static int        xcf_read_int32(void *fp, DATA32 *data, int count);
static int        xcf_read_int8(void *fp, DATA8 *data, int count);
static int        xcf_read_string(void *fp, char **data, int count);
static char       xcf_load_prop(PropType *prop_type, DATA32 *prop_size);
static void       xcf_load_image(void);
static char       xcf_load_image_props(void);

static Layer*     xcf_load_channel(void);
static char       xcf_load_channel_props(Layer *layer);
static Layer*     xcf_load_layer(void);
static char       xcf_load_layer_props(Layer *layer);
static char       xcf_load_hierarchy(Tile** tiles, int *num_rows, int *num_cols, int *bpp);
static char       xcf_load_level(Tile** tiles, int hierarchy_width, int hierarchy_height, int bpp, int* num_rows, int *num_cols);
static char       xcf_load_tile(Tile *tile);
static char       xcf_load_tile_rle(Tile *tile, int data_length);

/* new stuff :) */

static Tile*      allocate_tiles(int width, int height, int bpp, int* num_rows, int* num_cols);
static void       free_tiles(Tile* tiles, int num_tiles);
static void       init_tile(Tile* tile, int width, int height, int bpp);
static Layer*     new_layer(int width, int height, GimpImageType type, int opacity, LayerModeEffects mode);
static void       free_layer(Layer* layer);
static void       add_layer_to_image(Layer* layer);
static void       read_tiles_into_data(Tile* tiles, int num_cols, int width, int height, int bpp, DATA8** data, int use_cmap);
static void       apply_layer_mask(Layer* layer);
static void       set_layer_opacity(Layer* layer);
static void       flatten_image(void);

static char       xcf_file_init(char* filename);
static void       xcf_cleanup(void);

/* Stuff for layer merging: */
extern void combine_pixels_normal (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_add (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_sub (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_diff (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_darken (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_lighten (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_mult (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_div (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_screen (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_overlay (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_hue (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_sat (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_val (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_col (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);
extern void combine_pixels_diss (DATA8* src, int src_w, int src_h, DATA8* dest, int dest_w, int dest_h, int dest_x, int dest_y);

/* ---------------------------------------------------------------------------- globals ------------ */

/* This makes using the Gimp sources easier */
struct _GimpImage * image = &_image;

/* ------------------------------------------------------------------------------- code ------------ */

static void
xcf_seek_pos(int pos)
{
   if (image->cp != pos)
     {
        image->cp = pos;
        f_seek(image->file, image->cp);
     }
}

static int
xcf_read_int32(void     *fp,
               DATA32   *data,
               int       count)
{
   int total;

   total = count;
   if (count > 0)
     {
        xcf_read_int8(fp, (DATA8*) data, count * 4);
        while (count--)
          {
             *data = (DATA32)ntohl(*data);
             data++;
          }
     }
   return total * 4;
}

static int
xcf_read_int8(void     *fp,
              DATA8    *data,
              int       count)
{
   int total;
   int bytes;

   total = count;
   while (count > 0)
     {
        bytes = f_read(fp, data, count);
        if (bytes <= 0) /* something bad happened */
           break;
        count -= bytes;
        data += bytes;
     }
   return total;
}

static int
xcf_read_string(void     *fp,
                char    **data,
                int       count)
{
   DATA32 tmp;
   int total;
   int i;

   total = 0;
   for (i = 0; i < count; i++)
     {
        total += xcf_read_int32(fp, &tmp, 1);
        if (tmp > 0)
          {
             data[i] = malloc(sizeof(DATA8) * tmp);
             if (data[i]) total += xcf_read_int8(fp, (DATA8 *)data[i], tmp);
          }
        else
           data[i] = NULL;
     }
   return total;
}


static char
xcf_load_prop(PropType *prop_type,
              DATA32 *prop_size)
{
   image->cp += xcf_read_int32(image->file, (DATA32 *)prop_type, 1);
   image->cp += xcf_read_int32(image->file, (DATA32 *)prop_size, 1);
   return 1;
}


static char
xcf_load_image_props(void)
{
   PropType prop_type;
   DATA32 prop_size;

   while (1)
     {
        if (!xcf_load_prop (&prop_type, &prop_size)) return 0;
        switch (prop_type)
          {
           case PROP_END:
               {
                  D("Finished reading image properties.\n");
                  return 1;
               }
           case PROP_COLORMAP:
               {
                  if (image->file_version == 0)
                    {
                       int i;
                       fprintf (stderr,
                                "XCF warning: version 0 of XCF file format\n"
                                "did not save indexed colormaps correctly.\n"
                                "Substituting grayscale map.\n");
                       image->cp += xcf_read_int32(image->file, (DATA32 *)&image->num_cols, 1);
                       image->cmap = malloc(sizeof(DATA8) * image->num_cols * 3);
                       if (!image->cmap) return 0;
                       xcf_seek_pos (image->cp + image->num_cols);
                       for (i = 0; i < image->num_cols; i++)
                         {
                            image->cmap[(i * 3) + 0] = i;
                            image->cmap[(i * 3) + 1] = i;
                            image->cmap[(i * 3) + 2] = i;
                         }
                    }
                  else
                    {
                       D("Loading colormap.\n");
                       image->cp += xcf_read_int32(image->file, (DATA32 *)&image->num_cols, 1);
                       image->cmap = malloc(sizeof(DATA8) * image->num_cols * 3);
                       if (!image->cmap) return 0;
                       image->cp += xcf_read_int8(image->file, (DATA8 *)image->cmap, image->num_cols * 3);
                    }
               }
             break;
           case PROP_COMPRESSION:
               {
                  char compression;

                  image->cp += xcf_read_int8(image->file, (DATA8 *)&compression, 1);

                  if ((compression != COMPRESS_NONE) &&
                      (compression != COMPRESS_RLE) &&
                      (compression != COMPRESS_ZLIB) &&
                      (compression != COMPRESS_FRACTAL))
                    {
                       fprintf (stderr, "unknown xcf compression type: %d\n", (int) compression);
                       return 0;
                    }

                  D("Image compression type: %i\n", compression);

                  image->compression = compression;
               }
             break;
             /* I threw out all of the following: --cK */
           case PROP_TATTOO:
           case PROP_PARASITES:
           case PROP_UNIT:
           case PROP_PATHS:
           case PROP_USER_UNIT:
           case PROP_GUIDES:
           case PROP_RESOLUTION:
	default:
               {
                  DATA8 buf[16];
                  int amount;

                  D("Skipping unexpected/unknown image property: %d\n", prop_type);

                  while (prop_size > 0)
                    {
                       amount = (16 < prop_size ? 16 : prop_size);
                       image->cp += xcf_read_int8(image->file, buf, amount);
                       prop_size -= (16 < amount ? 16 : amount);
                    }
               }
             break;
          }
     }
   return 0;
}


static void
xcf_load_image(void)
{
   Layer *layer;
   DATA32 saved_pos;
   DATA32 offset;
   int num_successful_elements = 0;

   /* read the image properties */
   if (!xcf_load_image_props()) goto hard_error;

   while (1)
     {
        /* read in the offset of the next layer */
        image->cp += xcf_read_int32(image->file, &offset, 1);
        /* if the offset is 0 then we are at the end
         *  of the layer list. */
        if (offset == 0) break;
        /* save the current position as it is where the
         *  next layer offset is stored. */
        saved_pos = image->cp;
        /* seek to the layer offset */
        xcf_seek_pos(offset);
        /* read in the layer */
        layer = xcf_load_layer();
        if (!layer) goto error;
        num_successful_elements++;
        /* add the layer to the image if it's visible */
        if (layer->visible) add_layer_to_image(layer);
        else free_layer(layer);
        /* restore the saved position so we'll be ready to
         *  read the next offset. */
        xcf_seek_pos (saved_pos);
    }
  /* If we were a Gimp we would now load the user-defined channels here ... */
  /* Flat-o-rama now :) */
  flatten_image();
  return;
error:
   if (num_successful_elements == 0) goto hard_error;
   fprintf(stderr, "XCF: This file is corrupt!  I have loaded as much\nof it as I can, but it is incomplete.\n");
   return;
hard_error:
   fprintf(stderr, "XCF: This file is corrupt!  I could not even\nsalvage any partial image data from it.\n");
   return;
}

static char
xcf_load_layer_props(Layer *layer)
{
   PropType prop_type;
   DATA32 prop_size;

   while (1)
     {
        if (!xcf_load_prop(&prop_type, &prop_size)) return 0;
        switch (prop_type)
          {
           case PROP_END:
               {
                  D("Finished reading layer properties.\n");
                  return 1;
               }
           case PROP_FLOATING_SELECTION:
             D("Loading floating selection.\n");
             image->floating_sel = layer;
             image->cp += xcf_read_int32(image->file, (DATA32 *)&image->floating_sel_offset, 1);
             break;
           case PROP_OPACITY:
             image->cp += xcf_read_int32(image->file, (DATA32 *)&layer->opacity, 1);
             break;
           case PROP_VISIBLE:
             image->cp += xcf_read_int32(image->file, (DATA32 *)&layer->visible, 1);
             break;
           case PROP_PRESERVE_TRANSPARENCY:
             image->cp += xcf_read_int32(image->file, (DATA32 *)&layer->preserve_trans, 1);
             break;
           case PROP_OFFSETS:
             image->cp += xcf_read_int32(image->file, (DATA32 *)&layer->offset_x, 1);
             image->cp += xcf_read_int32(image->file, (DATA32 *)&layer->offset_y, 1);
             break;
           case PROP_MODE:
             image->cp += xcf_read_int32(image->file, (DATA32 *)&layer->mode, 1);
             break;

             /* I threw out all of the following: --cK */
           case PROP_LINKED:
           case PROP_ACTIVE_LAYER:
           case PROP_TATTOO:
           case PROP_APPLY_MASK:
           case PROP_EDIT_MASK:
           case PROP_SHOW_MASK:
           case PROP_PARASITES:
           default:
               {
                  DATA8 buf[16];
                  int amount;

                  D("Skipping unexpected/unknown/unneeded channel property: %d\n", prop_type);
                  while (prop_size > 0)
                    {
                       amount = (16 < prop_size ? 16 : prop_size);
                       image->cp += xcf_read_int8 (image->file, buf, amount);
                       prop_size -= (16 < amount ? 16 : amount);
                    }
               }
             break;
          }
     }

   return 0;
}


static Layer *
xcf_load_layer(void)
{
   Layer  *layer;
   Layer  *layer_mask;
   DATA32  hierarchy_offset;
   DATA32  layer_mask_offset;
   int     width;
   int     height;
   int     type;
   char   *name;

  D("Loading one layer ...\n");
  /* read in the layer width, height and type */
  image->cp += xcf_read_int32(image->file, (DATA32 *)&width, 1);
  image->cp += xcf_read_int32(image->file, (DATA32 *)&height, 1);
  image->cp += xcf_read_int32(image->file, (DATA32 *)&type, 1);
  image->cp += xcf_read_string(image->file, &name, 1);
  /* ugly, I know */
  FREE(name);

  /* create a new layer */
  layer = new_layer(width, height, type, 255, NORMAL_MODE);
  if (!layer) return NULL;

   /* read in the layer properties */
   if (!xcf_load_layer_props(layer)) goto error;

   D("Loading opacity: %i \n", layer->opacity);
   if (!layer->visible) return layer;

   /* read the hierarchy and layer mask offsets */
   image->cp += xcf_read_int32(image->file, &hierarchy_offset, 1);
   image->cp += xcf_read_int32(image->file, &layer_mask_offset, 1);
   /* read in the hierarchy */
   xcf_seek_pos(hierarchy_offset);
   if (!xcf_load_hierarchy(&(layer->tiles), &(layer->num_rows),
                           &(layer->num_cols), &(layer->bpp)))
      goto error;

   /* read in the layer mask */
   if (layer_mask_offset != 0)
     {
        D("Loading layer mask.\n");
        xcf_seek_pos(layer_mask_offset);

        layer_mask = xcf_load_channel();
        if (!layer_mask) goto error;

        /* set the offsets of the layer_mask */
        layer_mask->offset_x = layer->offset_x;
        layer_mask->offset_y = layer->offset_y;
        layer->mask = layer_mask;
     }
   read_tiles_into_data(layer->tiles, layer->num_cols,
                        layer->width, layer->height,
                        layer->bpp, &(layer->data),
                        1);
   free_tiles(layer->tiles, layer->num_rows * layer->num_cols);
   layer->tiles = NULL;
   set_layer_opacity(layer);
   if (layer->mask) apply_layer_mask(layer);

   return layer;

error:
   free_layer(layer);
   return NULL;
}


static void
read_tiles_into_data(Tile *tiles, int num_cols, int width,
		     int height, int bpp, DATA8 **data_p, int use_cmap)
{
   int tile_x, tile_y, x, y, offset_x, offset_y;
   DATA8 *data;
   DATA8 *ptr;
   DATA8 *ptr2;
   Tile *t;
   int warned = 0;

   if (tiles)
     {
        if (*data_p) FREE(*data_p);

        /* Always allocate the data as 4 bytes per pixel */
        data = (*data_p) = malloc(sizeof(DATA32) * width * height);
        if (!data) return;

        ptr = data;
        for (y = 0; y < height; y++)
          {
             for (x = 0; x < width; x++)
               {
                  tile_x = x / TILE_WIDTH;
                  tile_y = y / TILE_HEIGHT;
                  offset_x = x % TILE_WIDTH;
                  offset_y = y % TILE_HEIGHT;

                  t = &tiles[(tile_y * num_cols) + tile_x];
                  ptr2 = &(t->data[(offset_y * t->ewidth * bpp) +
                                   (offset_x * bpp)]);
                  switch (bpp)
                    {
                     case 1:
                         {
                            /* use colormap if the image has one */
                            if (image->cmap && use_cmap)
                              {
                                 R_VAL(ptr) = image->cmap[(*(ptr2) * 3)];
                                 G_VAL(ptr) = image->cmap[(*(ptr2) * 3) + 1];
                                 B_VAL(ptr) = image->cmap[(*(ptr2) * 3) + 2];
                                 A_VAL(ptr) = 255;
                              }
                            /* else use colors themselves */
                            else
                              {
                                 R_VAL(ptr) = *(ptr2);
                                 G_VAL(ptr) = *(ptr2);
                                 B_VAL(ptr) = *(ptr2);
                                 A_VAL(ptr) = 255;
                              }
                            break;
                         }
                     case 2:
                         {
                            /* use colormap if the image has one */
                            if (image->cmap && use_cmap)
                              {
                                 R_VAL(ptr) = image->cmap[(*(ptr2) * 3)];
                                 G_VAL(ptr) = image->cmap[(*(ptr2) * 3) + 1];
                                 B_VAL(ptr) = image->cmap[(*(ptr2) * 3) + 2];
                                 A_VAL(ptr) = *(ptr2 + 1);
                              }
                            /* else use colors themselves */
                            else if (warned == 0)
                              {
                                 warned++;
                                 fprintf (stderr, "There's nothing to see here. 2 bpp without colormap not implemented yet.\n");
                              }
                            break;
                         }
                     case 3:
                         {
                            if (image->cmap)
                              {
                                 if (warned == 0)
                                   {
                                      warned++;
                                      fprintf (stderr, "There's nothing to see here. 3 bpp with colormap not implemented yet.\n");
                                   }
                              }
                            else
                              {
                                 R_VAL(ptr) = *(ptr2);
                                 G_VAL(ptr) = *(ptr2 + 1);
                                 B_VAL(ptr) = *(ptr2 + 2);
                                 A_VAL(ptr) = 255;
                              }
                            break;
                         }
                     default:
                         {
                            R_VAL(ptr) = *(ptr2);
                            G_VAL(ptr) = *(ptr2 + 1);
                            B_VAL(ptr) = *(ptr2 + 2);
                            A_VAL(ptr) = *(ptr2 + 3);
                            break;
                         }
                    }
                  ptr += 4;
               }
          }
     }
}

static Layer *
xcf_load_channel(void)
{
   Layer *layer;
   DATA32 hierarchy_offset;
   int width;
   int height;
   char *name;

   D("Loading channel ...\n");
   /* read in the layer width, height and name */
   image->cp += xcf_read_int32(image->file, (DATA32 *)&width, 1);
   image->cp += xcf_read_int32(image->file, (DATA32 *)&height, 1);
   image->cp += xcf_read_string(image->file, &name, 1);

   /* Yeah, still ugly :) */
   FREE(name);

   /* create a new channel */
   layer = new_layer(width, height, GRAY_GIMAGE, 255, NORMAL_MODE);
   if (!layer) return NULL;
   /* read in the channel properties */
   if (!xcf_load_channel_props(layer)) goto error;
   /* read the hierarchy and layer mask offsets */
   image->cp += xcf_read_int32(image->file, &hierarchy_offset, 1);
   /* read in the hierarchy */
   xcf_seek_pos(hierarchy_offset);
   if (!xcf_load_hierarchy(&(layer->tiles), &(layer->num_rows), &(layer->num_cols), &(layer->bpp)))
      goto error;
   read_tiles_into_data(layer->tiles, layer->num_cols, layer->width,
                        layer->height, layer->bpp, &(layer->data), 0);
   free_tiles(layer->tiles, layer->num_rows * layer->num_cols);
   layer->tiles = NULL;

   D("Channel loaded successfully.\n");
   return layer;

error:
   free_layer(layer);
   return NULL;
}

static char
xcf_load_channel_props(Layer *layer)
{
   PropType prop_type;
   DATA32 prop_size;

   while (1)
     {
        if (!xcf_load_prop(&prop_type, &prop_size)) return 0;

        switch (prop_type)
          {
           case PROP_END:
               {
                  D("Finished loading channel props.\n");
                  return 1;
               }
           case PROP_OPACITY:
             image->cp += xcf_read_int32(image->file, (DATA32 *)&layer->opacity, 1);
             break;
           case PROP_VISIBLE:
             image->cp += xcf_read_int32(image->file, (DATA32 *)&layer->visible, 1);
             break;
           case PROP_ACTIVE_CHANNEL:
           case PROP_SHOW_MASKED:
           case PROP_SELECTION:
           case PROP_COLOR:
           case PROP_TATTOO:
           case PROP_PARASITES:
           default:
               {
                  DATA8 buf[16];
                  int amount;

                  D("Skipping unexpected/unknown/unneeded channel property: %d\n", prop_type);

                  while (prop_size > 0)
                    {
                       amount = (16 < prop_size ? 16 : prop_size);
                       image->cp += xcf_read_int8(image->file, buf, amount);
                       prop_size -= (16 < amount ? 16 : amount);
                    }
               }
             break;
          }
     }
   return 0;
}

static char
xcf_load_hierarchy(Tile **tiles, int *num_rows, int *num_cols, int *bpp)
{
   DATA32 saved_pos;
   DATA32 offset;
   DATA32 junk;
   int width;
   int height;

   image->cp += xcf_read_int32(image->file, (DATA32 *)&width, 1);
   image->cp += xcf_read_int32(image->file, (DATA32 *)&height, 1);
   image->cp += xcf_read_int32(image->file, (DATA32 *)bpp, 1);
   image->cp += xcf_read_int32(image->file, &offset, 1); /* top level */

   D("Loading hierarchy: width %i, height %i,  bpp %i\n", width, height, *bpp);

   /* discard offsets for layers below first, if any. */
   do
     {
        image->cp += xcf_read_int32(image->file, &junk, 1);
     }
   while (junk != 0);
   /* save the current position as it is where the
    *  next level offset is stored. */
   saved_pos = image->cp;
   /* seek to the level offset */
   xcf_seek_pos(offset);
   /* read in the level */
   if (!xcf_load_level(tiles, width, height, *bpp, num_rows, num_cols))
      return 0;
   /* restore the saved position so we'll be ready to
    *  read the next offset. */
   xcf_seek_pos (saved_pos);
   D("Loaded hierarchy successfully.\n");
   return 1;
}

static char
xcf_load_level(Tile **tiles_p, int hierarchy_width, int hierarchy_height,
               int bpp, int *num_rows, int *num_cols)
{
   DATA32 saved_pos;
   DATA32 offset, offset2;
   int ntiles;
   int width;
   int height;
   int i;
   int fail;
   Tile *tiles;
   Tile *current_tile;

   image->cp += xcf_read_int32(image->file, (DATA32*) &width, 1);
   image->cp += xcf_read_int32(image->file, (DATA32*) &height, 1);

   if ((width != hierarchy_width) || (height != hierarchy_height)) return 0;

   D("Loading level of size %ix%i.\n", width, height);
   (*tiles_p) = allocate_tiles(width, height, bpp, num_rows, num_cols);
   tiles = (*tiles_p);

   image->cp += xcf_read_int32(image->file, &offset, 1);
   if (offset == 0) return 1;

   ntiles = (*num_rows) * (*num_cols);
   for (i = 0; i < ntiles; i++)
     {
        current_tile = &(tiles[i]);
        fail = 0;

        if (offset == 0)
          {
             D("Not enough tiles found in level\n");
             return 0;
          }

        /* save the current position as it is where the
         *  next tile offset is stored.
         */
        saved_pos = image->cp;

        /* read in the offset of the next tile so we can calculate the amount
	 of data needed for this tile*/
        image->cp += xcf_read_int32(image->file, &offset2, 1);

        /* if the offset is 0 then we need to read in the maximum possible
	 allowing for negative compression */
        if (offset2 == 0)
           offset2 = offset + (TILE_WIDTH * TILE_WIDTH * 4 * 1.5);
        /* 1.5 is probably more than we need to allow */

        /* seek to the tile offset */
        xcf_seek_pos(offset);

        /* read in the current_tile */
        switch (image->compression)
          {
           case COMPRESS_NONE:
             if (!xcf_load_tile(current_tile)) fail = 1;
             break;
           case COMPRESS_RLE:
             if (!xcf_load_tile_rle(current_tile, offset2 - offset)) fail = 1;
             break;
           case COMPRESS_ZLIB:
             fprintf (stderr, "xcf: zlib compression unimplemented\n");
             fail = 1;
             break;
           case COMPRESS_FRACTAL:
             fprintf (stderr, "xcf: fractal compression unimplemented\n");
             fail = 1;
             break;
          }

        if (fail)
          {
             D("Couldn't load tiles.\n");
             free_tiles(tiles, (*num_rows) * (*num_cols));
             return 0;
          }
        /* restore the saved position so we'll be ready to
         *  read the next offset.
         */
        xcf_seek_pos(saved_pos);
        /* read in the offset of the next tile */
        image->cp += xcf_read_int32(image->file, &offset, 1);
     }

   if (offset != 0)
     {
        D("encountered garbage after reading level: %d\n", offset);
        return 0;
     }

   D("Loaded level successfully.\n");
   return 1;
}

static char
xcf_load_tile(Tile *tile)
{
   image->cp += xcf_read_int8(image->file, tile->data,
                              tile->ewidth * tile->eheight * tile->bpp);
   return 1;
}

static char
xcf_load_tile_rle(Tile    *tile,
                  int     data_length)
{
   DATA8 *data;
   DATA8 val;
   int size;
   int count;
   int length;
   int bpp;
   int i, j;
   int nmemb_read_successfully;
   DATA8 *xcfdata, *xcfodata, *xcfdatalimit;

   data = tile->data;
   bpp = tile->bpp;

   /*printf ("Reading encrypted tile %ix%ix%i, data_length %i\n", tile->ewidth, tile->eheight, tile->bpp, data_length);*/

   xcfdata = xcfodata = malloc(sizeof(DATA8) * data_length);
   if (!xcfdata) return 0;

   /* we have to use fread instead of xcf_read_* because we may be
    reading past the end of the file here */
   nmemb_read_successfully = f_read(image->file, xcfdata, data_length);
   image->cp += nmemb_read_successfully;

   xcfdatalimit = &xcfodata[nmemb_read_successfully - 1];

   for (i = 0; i < bpp; i++)
     {
        data = (tile->data) + i;
        size = tile->ewidth * tile->eheight;
        count = 0;

        while (size > 0)
          {
             if (xcfdata > xcfdatalimit) goto bogus_rle;

             val = *xcfdata++;

             length = val;
             if (length >= 128)
               {
                  length = 255 - (length - 1);
                  if (length == 128)
                    {
                       if (xcfdata >= xcfdatalimit) goto bogus_rle;

                       length = (*xcfdata << 8) + xcfdata[1];
                       xcfdata += 2;
                    }

                  count += length;
                  size -= length;

                  if (size < 0) goto bogus_rle;
                  if (&xcfdata[length-1] > xcfdatalimit) goto bogus_rle;

                  while (length-- > 0)
                    {
                       *data = *xcfdata++;
                       data += bpp;
                    }
               }
             else
               {
                  length += 1;
                  if (length == 128)
                    {
                       if (xcfdata >= xcfdatalimit) goto bogus_rle;

                       length = (*xcfdata << 8) + xcfdata[1];
                       xcfdata += 2;
                    }

                  count += length;
                  size -= length;

                  if (size < 0) goto bogus_rle;
                  if (xcfdata > xcfdatalimit) goto bogus_rle;

                  val = *xcfdata++;

                  for (j = 0; j < length; j++)
                    {
                       *data = val;
                       data += bpp;
                    }
               }
          }
     }
   FREE(xcfodata);
   return 1;

bogus_rle:
   fprintf(stderr, "WHOOOOOP -- bogus rle? Highly unlikely, blame cK for this one :) \n");
   if (xcfodata) FREE(xcfodata);
   return 0;
}

static Layer *
new_layer(int width, int height, GimpImageType type, int opacity, LayerModeEffects mode)
{
   Layer *layer;

   layer = calloc(1, sizeof(Layer));
   if (!layer)
     {
        D("Couldn't allocate layer.\n");
        return NULL;
     }

   layer->width = width;
   layer->height = height;
   layer->type = type;
   layer->opacity = opacity;
   layer->mode = mode;
   layer->tiles = NULL;
   layer->next = NULL;
   layer->mask = NULL;
   return layer;
}

static void
free_layer(Layer *layer)
{
   if (layer)
     {
        if (layer->tiles)
           free_tiles(layer->tiles, layer->num_rows * layer->num_cols);
        if (layer->mask) free_layer(layer->mask);
        if (layer->data) FREE(layer->data);
        FREE(layer);
     }
}

static Tile *
allocate_tiles(int width, int height, int bpp, int* num_rows, int* num_cols)
{
   Tile* tiles;
   int i, j, k, right_tile, bottom_tile;
   int tile_width, tile_height;

   (*num_rows) = (height + TILE_HEIGHT - 1) / TILE_HEIGHT;
   (*num_cols) = (width + TILE_WIDTH - 1) / TILE_WIDTH;

   tiles = malloc(sizeof(Tile) * (*num_rows) * (*num_cols));
   if (!tiles)
     {
        D("Couldn't allocate tiles.\n");
        return NULL;
     }

   right_tile = width - (((*num_cols) - 1) * TILE_WIDTH);
   bottom_tile = height - (((*num_rows) - 1) * TILE_HEIGHT);

   for (i = 0, k = 0; i < (*num_rows); i++)
     {
        for (j = 0; j < (*num_cols); j++, k++)
          {
             tile_width = ((j == (*num_cols) - 1) ? right_tile : TILE_WIDTH);
             tile_height = ((i == (*num_rows) - 1) ? bottom_tile : TILE_HEIGHT);
             init_tile(&(tiles[k]), tile_width, tile_height, bpp);
          }
     }
   D("Allocated %ix%i tiles.\n", (*num_cols), (*num_rows));
  return tiles;
}

static void
init_tile(Tile *tile, int width, int height, int bpp)
{
   if (tile)
     {
        tile->bpp = bpp;
        tile->ewidth = width;
        tile->eheight = height;
        tile->data = malloc(sizeof(DATA8) * width * height * bpp);
        if (!tile->data)
          {
             D("Couldn't allocate tile.\n");
          }
     }
}

static void
free_tiles(Tile *tiles, int num_tiles)
{
   int i;

   for (i = 0; i < num_tiles; i++)
     {
        if (tiles[i].data) FREE(tiles[i].data);
     }
   FREE(tiles);
}

static void
add_layer_to_image(Layer *layer)
{
   if (layer)
     {
        if (image->last_layer)
          {
             image->last_layer->next = layer;
             layer->prev = image->last_layer;
          }
        else
          {
             image->layers = layer;
             layer->prev = NULL;
          }
        layer->next = NULL;
        image->last_layer = layer;
     }
}

static void
set_layer_opacity(Layer *layer)
{
   int i;
   DATA8* ptr;

   if (layer)
     {
        if (layer->opacity != 255)
          {
             for (i = 0, ptr = layer->data; i < layer->width * layer->height; i++, ptr += 4)
               {
                  *(ptr + 3) = (*(ptr + 3) * layer->opacity) >> 8;
               }
          }
     }
}

static void
apply_layer_mask(Layer *layer)
{
   DATA8* ptr1;
   DATA8* ptr2;
   int i, tmp;

   D("Applying layer mask.\n");
   if (layer)
     {
        if (layer->mask)
          {
             ptr1 = layer->data;
             ptr2 = layer->mask->data;
             for (i = 0; i < layer->width * layer->height; i++)
               {
                  tmp = (*(ptr1 + 3) * *(ptr2)) / 256;
                  if (tmp > 255) tmp = 255;
                  *(ptr1 + 3) = (DATA8)tmp;
                  ptr1 += 4;
                  ptr2 += 4;
               }
          }
     }
}

static void
flatten_image(void)
{
   Layer* l = image->last_layer;
   Layer* lp;
   int  layer_index;

   shm_alloc(image->width * image->height * sizeof(DATA32));
   if (!shm_addr) return;
   image->data = shm_addr;
   memset(image->data, 0, image->width * image->height * sizeof(DATA32));

   layer_index = 0;

   while (l)
     {
        /* Ok, paste each layer on top of the image, using the mode's merging type.
	 We're moving upward through the layer stack.
         --cK.
         */
        if ((image->single_layer_index < 0) ||
            (layer_index == image->single_layer_index))
          {
             // FIXME: not all modes are implemented right
             // xcf's may not render right :)
             switch (l->mode)
               {
                case MULTIPLY_MODE:
                  D("MULTIPLY\n");
                  combine_pixels_mult(l->data, l->width, l->height,
                                      image->data, image->width, image->height,
                                      l->offset_x, l->offset_y);
                  break;
                case DIVIDE_MODE:
                  D("DIVIDE\n");
                  combine_pixels_div(l->data, l->width, l->height,
                                     image->data, image->width, image->height,
                                     l->offset_x, l->offset_y);
                  break;
                case SCREEN_MODE:
                  D("SCREEN\n");
                  combine_pixels_screen(l->data, l->width, l->height,
                                        image->data, image->width, image->height,
                                        l->offset_x, l->offset_y);
                  break;
                case OVERLAY_MODE:
                  D("OVERLAY\n");
                  combine_pixels_overlay(l->data, l->width, l->height,
                                         image->data, image->width, image->height,
                                         l->offset_x, l->offset_y);
                  break;
                case DIFFERENCE_MODE:
                  D("DIFF\n");
                  combine_pixels_diff(l->data, l->width, l->height,
                                      image->data, image->width, image->height,
                                      l->offset_x, l->offset_y);
                  break;
                case ADDITION_MODE:
                  D("ADD\n");
                  combine_pixels_add(l->data, l->width, l->height,
                                     image->data, image->width, image->height,
                                     l->offset_x, l->offset_y);
                  break;
                case SUBTRACT_MODE:
                  D("SUB\n");
                  combine_pixels_sub(l->data, l->width, l->height,
                                     image->data, image->width, image->height,
                                     l->offset_x, l->offset_y);
                  break;
                case DARKEN_ONLY_MODE:
                  D("DARKEN\n");
                  combine_pixels_darken(l->data, l->width, l->height,
                                        image->data, image->width, image->height,
                                        l->offset_x, l->offset_y);
                  break;
                case LIGHTEN_ONLY_MODE:
                  D("LIGHTEN\n");
                  combine_pixels_lighten(l->data, l->width, l->height,
                                         image->data, image->width, image->height,
                                         l->offset_x, l->offset_y);
                  break;
                case HUE_MODE:
                  D("HUE\n");
                  combine_pixels_hue(l->data, l->width, l->height,
                                     image->data, image->width, image->height,
                                     l->offset_x, l->offset_y);
                  break;
                case SATURATION_MODE:
                  D("SATURATION\n");
                  combine_pixels_sat(l->data, l->width, l->height,
                                     image->data, image->width, image->height,
                                     l->offset_x, l->offset_y);
                  break;
                case VALUE_MODE:
                  D("VALUE\n");
                  combine_pixels_val(l->data, l->width, l->height,
                                     image->data, image->width, image->height,
                                     l->offset_x, l->offset_y);
                  break;
                case COLOR_MODE:
                  D("COLOR\n");
                  combine_pixels_col(l->data, l->width, l->height,
                                     image->data, image->width, image->height,
                                     l->offset_x, l->offset_y);
                  break;
                case DISSOLVE_MODE:
                  D("DISSOLVE\n");
                  combine_pixels_diss(l->data, l->width, l->height,
                                      image->data, image->width, image->height,
                                      l->offset_x, l->offset_y);
                  break;
                  /* None of the following is actually valid for layer blending, fall through: */
                case BEHIND_MODE:
                case REPLACE_MODE:
                case ERASE_MODE:
                case ANTI_ERASE_MODE:
                  D("EEEEEK -- this mode shouldn't be here\n");

                case NORMAL_MODE:
                  D("NORMAL\n");
                  combine_pixels_normal(l->data, l->width, l->height,
                                        image->data, image->width, image->height,
                                        l->offset_x, l->offset_y);
                  break;

                default:
                  D("Unknown layer mode: %i. Skipping.\n", l->mode);
               }
          }

        lp = l->prev;
        /* free the layer now, since it's not needed anymore */
        free_layer(l);

        l = lp;
        layer_index++;
     }

   /* We've used up all the layers now, so set them to NULL in the image: */
   image->layers = NULL;
   image->last_layer = NULL;
}

static char
xcf_file_init(char *filename)
{
   char success = 1;
   char id[14];
   int width;
   int height;
   int image_type;

   image->single_layer_index = -1;
   image->file = f_open(filename);
   D("image->file = %p\n", image->file);
   if (!image->file) return 0;

   image->filename = filename;
   image->layers = NULL;
   image->last_layer = NULL;
   image->cmap = NULL;
   image->num_cols = 0;
   image->data = NULL;

   image->cp = 0;

   image->cp += xcf_read_int8(image->file, (DATA8 *)id, 14);
   if (strncmp(id, "gimp xcf ", 9))
     {
        success = 0;
        f_close(image->file);
     }
   else if (!strcmp(id + 9, "file"))
     {
        image->file_version = 0;
     }
   else if (id[9] == 'v')
     {
        image->file_version = atoi(id + 10);
     }
   else
     {
        success = 0;
        f_close(image->file);
     }

   if (success)
     {
        image->cp += xcf_read_int32(image->file, (DATA32 *)&width, 1);
        image->cp += xcf_read_int32(image->file, (DATA32 *)&height, 1);
        image->cp += xcf_read_int32(image->file, (DATA32 *)&image_type, 1);

        image->width = width;
        image->height = height;
        image->base_type = image_type;

        D("Loading %ix%i image.\n", width, height);
     }

   return success;
}

static void
xcf_cleanup(void)
{
   Layer *l, *lp;

   if (image->file) f_close(image->file);
   for (l = image->last_layer; l; l = lp)
     {
        lp = l->prev;
        free_layer(l);
     }
   if (image->cmap) FREE(image->cmap);
}

static void
premul_image(void)
{
   DATA32 *p, *end;

   end =  (DATA32 *)image->data + (image->width * image->height);
   for (p = (DATA32 *)image->data; p < end; p++)
     {
        unsigned int r, g, b, a;

        a = A_VAL(p);
        r = (R_VAL(p) * a) / 255;
        R_VAL(p) = r;
        g = (G_VAL(p) * a) / 255;
        G_VAL(p) = g;
        b = (B_VAL(p) * a) / 255;
        B_VAL(p) = b;
     }
}

int
main(int argc, char **argv)
{
   char *file;
   int w, h, i;
   int head_only = 0;

   if (argc < 2) return -1;
   // file is ALWAYS first arg, other options come after
   file = argv[1];
   for (i = 2; i < argc; i++)
     {
        if      (!strcmp(argv[i], "-head"))
           // asked to only load header, not body/data
           head_only = 1;
        else if (!strcmp(argv[i], "-key"))
          { // not used by xcf loader
             i++;
             // const char *key = argv[i];
          }
        else if (!strcmp(argv[i], "-opt-scale-down-by"))
          { // not used by xcf loader
             i++;
             // int scale_down = atoi(argv[i]);
          }
        else if (!strcmp(argv[i], "-opt-dpi"))
          { // not used by xcf loader
             i++;
             // double dpi = ((double)atoi(argv[i])) / 1000.0;
          }
        else if (!strcmp(argv[i], "-opt-size"))
          { // not used by xcf loader
             i++;
             // int size_w = atoi(argv[i]);
             i++;
             // int size_h = atoi(argv[i]);
          }
     }
   
   timeout_init(8);
   
   D("xcf_file_init\n");
   if (!xcf_file_init(file)) return -1;
   
   D("size %i %i\n", image->width, image->height);
   if (!head_only)
     {
        xcf_load_image();
        premul_image();
     }
   w = image->width;
   h = image->height;
   printf("size %i %i\n", w, h);
   printf("alpha 1\n");
   if (!head_only)
     {
        if (shm_fd >= 0) printf("shmfile %s\n", shmfile);
        else
          {
             // could also to "tmpfile %s\n" like shmfile but just
             // a mmaped tmp file on the system
             printf("data\n");
             fwrite(image->data, w * h * sizeof(DATA32), 1, stdout);
          }
        shm_free();
     }
   else
      printf("done\n");
   xcf_cleanup();
   return 0;
}