7756b240f1831041170475fd12a52277043d3ee1
[rocksndiamonds.git] / src / libgame / pcx.c
1 /***********************************************************
2 * Artsoft Retro-Game Library                               *
3 *----------------------------------------------------------*
4 * (c) 1994-2002 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * pcx.c                                                    *
12 ***********************************************************/
13
14 #ifndef TARGET_SDL
15
16 #include <stdio.h>
17
18 #include "pcx.h"
19 #include "misc.h"
20
21
22 #define PCX_DEBUG               FALSE
23
24 #define PCX_MAGIC               0x0a    /* first byte in a PCX image file    */
25 #define PCX_SUPPORTED_VERSION   5       /* last acceptable version number    */
26 #define PCX_ENCODING            1       /* PCX encoding method               */
27 #define PCX_256COLORS_MAGIC     0x0c    /* first byte of a PCX 256 color map */
28 #define PCX_MAXCOLORS           256     /* maximum number of colors          */
29
30 #define PCX_HEADER_SIZE         128
31 #define PCX_COLORMAP_SIZE       (3 * PCX_MAXCOLORS)
32
33 struct PCX_Header
34 {
35   unsigned char signature;      /* PCX file identifier                 */
36   unsigned char version;        /* version compatibility level         */
37   unsigned char encoding;       /* encoding method                     */
38   unsigned char bits_per_pixel; /* bits per pixel (not depth!)         */
39   unsigned short xmin;          /* X position of left edge             */
40   unsigned short ymin;          /* Y position of top edge              */
41   unsigned short xmax;          /* X position of right edge            */
42   unsigned short ymax;          /* Y position of bottom edge           */
43   unsigned short hres;          /* X screen resolution of source image */
44   unsigned short vres;          /* Y screen resolution of source image */
45   unsigned char palette[16][3]; /* PCX color map                       */
46   unsigned char reserved;       /* should be 0, 1 if std res fax       */
47   unsigned char color_planes;   /* "color planes" in image             */
48   unsigned short bytes_per_line;/* byte delta between scanlines        */
49   unsigned short palette_type;  /* 0 = undef, 1 = color, 2 = grayscale */
50   unsigned char filler[58];     /* fill to struct size of 128          */
51 };
52
53 /* global PCX error value */
54 int errno_pcx = PCX_Success;
55
56 #if 0
57 static byte *PCX_ReadBitmap(Image *image, byte *buffer_ptr, byte *buffer_last)
58 {
59   /* Run Length Encoding: If the two high bits are set,
60    * then the low 6 bits contain a repeat count, and the byte to
61    * repeat is the next byte in the file.  If the two high bits are
62    * not set, then this is the byte to write.
63    */
64
65   unsigned int bytes_per_pixel = (image->depth + 7) / 8;
66   register byte *bitmap_ptr, *bitmap_last;
67   register byte value, count;
68
69   bitmap_ptr = image->data;
70   bitmap_last = bitmap_ptr + (image->width * image->height * bytes_per_pixel);
71
72   while (bitmap_ptr < bitmap_last && buffer_ptr < buffer_last)
73   {
74     value = *buffer_ptr++;
75
76     if ((value & 0xc0) == 0xc0)         /* this is a repeat count byte */
77     {
78       count = value & 0x3f;             /* extract repeat count from byte */
79       value = *buffer_ptr++;            /* next byte is value to repeat */
80
81       for (; count && bitmap_ptr < bitmap_last; count--)
82         *bitmap_ptr++ = value;
83
84       if (count)                        /* repeat count spans end of bitmap */
85         return NULL;
86     }
87     else
88       *bitmap_ptr++ = value;
89
90     image->rgb.color_used[value] = TRUE;
91   }
92
93   /* check if end of buffer was reached before end of bitmap */
94   if (bitmap_ptr < bitmap_last)
95     return NULL;
96
97   /* return current buffer position for next decoding function */
98   return buffer_ptr;
99 }
100 #endif
101
102 static boolean PCX_ReadBitmap(FILE *file, struct PCX_Header *pcx, Image *image)
103 {
104   int width = image->width;
105   int height = image->height;
106   int pcx_depth = pcx->bits_per_pixel * pcx->color_planes;
107   int bytes_per_row = pcx->color_planes * pcx->bytes_per_line;
108   byte *row_buffer = checked_malloc(bytes_per_row);
109   byte *bitmap_ptr = image->data;
110   int y;
111
112   for (y = 0; y < height; y++)
113   {
114     /* decode a scan line into a temporary buffer first */
115     byte *dst_ptr = (pcx_depth == 8 ? bitmap_ptr : row_buffer);
116     byte value = 0, count = 0;
117     int value_int;
118     int i;
119
120     for (i = 0; i < bytes_per_row; i++)
121     {
122       if (count == 0)
123       {
124         if ((value_int = fgetc(file)) == EOF)
125         {
126           free(row_buffer);
127           return FALSE;
128         }
129
130         value = (byte)value_int;
131
132         if ((value & 0xc0) == 0xc0)     /* this is a repeat count byte */
133         {
134           count = value & 0x3f;         /* extract repeat count from byte */
135
136           if ((value_int = fgetc(file)) == EOF)
137           {
138             free(row_buffer);
139             return FALSE;
140           }
141
142           value = (byte)value_int;
143         }
144         else
145           count = 1;
146       }
147
148       dst_ptr[i] = value;
149       count--;
150
151       if (pcx_depth == 8)
152         image->rgb.color_used[value] = TRUE;
153     }
154
155     if (pcx_depth <= 4)                 /* expand planes to 1 byte/pixel */
156     {
157       byte *src_ptr = row_buffer;
158       int plane;
159
160       for (plane = 0; plane < pcx->color_planes; plane++)
161       {
162         int i, j, x = 0;
163
164         for (i = 0; i < pcx->bytes_per_line; i++)
165         {
166           byte value = *src_ptr++;
167
168           for (j = 7; j >= 0; j--)
169           {
170             byte bit = (value >> j) & 1;
171
172             bitmap_ptr[x++] |= bit << plane;
173           }
174         }
175       }
176     }
177     else if (pcx_depth == 24)           /* de-interlace planes */
178     {
179       byte *src_ptr = row_buffer;
180       int plane;
181
182       for (plane = 0; plane < pcx->color_planes; plane++)
183       {
184         int x;
185
186         dst_ptr = bitmap_ptr + plane;
187         for (x = 0; x < width; x++)
188         {
189           *dst_ptr = *src_ptr++;
190           dst_ptr += pcx->color_planes;
191         }
192       }
193     }
194
195     bitmap_ptr += image->bytes_per_row;
196   }
197
198   free(row_buffer);
199
200   return TRUE;
201 }
202
203 #if 0
204 static byte *PCX_ReadColormap(Image *image,byte *buffer_ptr, byte *buffer_last)
205 {
206   int i, magic;
207
208   /* read colormap magic byte */
209   magic = *buffer_ptr++;
210
211   /* check magic colormap header byte */
212   if (magic != PCX_256COLORS_MAGIC)
213     return NULL;
214
215   /* check if enough bytes left for a complete colormap */
216   if (buffer_ptr + PCX_COLORMAP_SIZE > buffer_last)
217     return NULL;
218
219   /* read 256 colors from PCX colormap */
220   for (i=0; i<PCX_MAXCOLORS; i++)
221   {
222     image->rgb.red[i]   = *buffer_ptr++ << 8;
223     image->rgb.green[i] = *buffer_ptr++ << 8;
224     image->rgb.blue[i]  = *buffer_ptr++ << 8;
225   }
226
227   /* return current buffer position for next decoding function */
228   return buffer_ptr;
229 }
230 #endif
231
232 static boolean PCX_ReadColormap(FILE *file,struct PCX_Header *pcx,Image *image)
233 {
234   int pcx_depth = pcx->bits_per_pixel * pcx->color_planes;
235   int num_colors = (1 << pcx_depth);
236   int i;
237
238   if (image->depth != 8)
239     return TRUE;
240
241   if (pcx_depth == 8)
242   {
243     byte value;
244     int value_int;
245
246     /* look for a 256-colour palette */
247     do
248     {
249       if ((value_int = fgetc(file)) == EOF)
250         return FALSE;
251       value = (byte)value_int;
252     }
253     while (value != PCX_256COLORS_MAGIC);
254
255     /* read 256 colors from PCX colormap */
256     for(i = 0; i < PCX_MAXCOLORS; i++)
257     {
258       image->rgb.red[i]   = (byte)fgetc(file) << 8;
259       image->rgb.green[i] = (byte)fgetc(file) << 8;
260       image->rgb.blue[i]  = (byte)fgetc(file) << 8;
261     }
262   }
263   else
264   {
265     for(i = 0; i < num_colors; i++)
266     {
267       image->rgb.red[i]   = pcx->palette[i][0] << 8;
268       image->rgb.green[i] = pcx->palette[i][1] << 8;
269       image->rgb.blue[i]  = pcx->palette[i][2] << 8;
270     }
271   }
272
273   return TRUE;
274 }
275
276 Image *Read_PCX_to_Image(char *filename)
277 {
278   FILE *file;
279   byte header_buffer[PCX_HEADER_SIZE];
280   struct PCX_Header pcx;
281   Image *image;
282   int width, height, depth, pcx_depth;
283   int i;
284
285   errno_pcx = PCX_Success;
286
287   if (!(file = fopen(filename, MODE_READ)))
288   {
289     errno_pcx = PCX_OpenFailed;
290     return NULL;
291   }
292
293   if (fread(header_buffer, 1, PCX_HEADER_SIZE, file) != PCX_HEADER_SIZE)
294   {
295     fclose(file);
296
297     errno_pcx = PCX_ReadFailed;
298     return NULL;
299   }
300
301   pcx.signature      = header_buffer[0];
302   pcx.version        = header_buffer[1];
303   pcx.encoding       = header_buffer[2];
304   pcx.bits_per_pixel = header_buffer[3];
305   pcx.xmin           = (header_buffer[5]  << 8) | header_buffer[4];
306   pcx.ymin           = (header_buffer[7]  << 8) | header_buffer[6];
307   pcx.xmax           = (header_buffer[9]  << 8) | header_buffer[8];
308   pcx.ymax           = (header_buffer[11] << 8) | header_buffer[10];
309   pcx.color_planes   = header_buffer[65];
310   pcx.bytes_per_line = (header_buffer[67] << 8) | header_buffer[66];
311   pcx.palette_type   = (header_buffer[69] << 8) | header_buffer[68];
312
313   for (i = 0; i < 48; i++)
314     pcx.palette[i / 3][i % 3] = header_buffer[16 + i];
315
316   width  = pcx.xmax - pcx.xmin + 1;
317   height = pcx.ymax - pcx.ymin + 1;
318   pcx_depth = pcx.bits_per_pixel * pcx.color_planes;
319   depth = ((pcx_depth + 7) / 8) * 8;
320
321   if (pcx.signature != PCX_MAGIC ||
322       pcx.version != PCX_SUPPORTED_VERSION ||
323       pcx.encoding != PCX_ENCODING ||
324       width < 0 || height < 0)
325   {
326     fclose(file);
327
328     errno_pcx = PCX_FileInvalid;
329     return NULL;
330   }
331
332 #if PCX_DEBUG
333   if (options.verbose)
334   {
335     printf("%s is a %dx%d PC Paintbrush image\n", filename, width, height);
336     printf("depth: %d\n", depth);
337     printf("bits_per_pixel: %d\n", pcx.bits_per_pixel);
338     printf("color_planes: %d\n", pcx.color_planes);
339     printf("bytes_per_line: %d\n", pcx.bytes_per_line);
340     printf("palette type: %s\n",
341            (pcx.palette_type == 1 ? "color" :
342             pcx.palette_type == 2 ? "grayscale" : "undefined"));
343   }
344 #endif
345
346   /* allocate new image structure */
347   image = newImage(width, height, depth);
348
349   /* read compressed bitmap data */
350   if (!PCX_ReadBitmap(file, &pcx, image))
351   {
352     fclose(file);
353     freeImage(image);
354
355     errno_pcx = PCX_FileInvalid;
356     return NULL;
357   }
358
359   /* read colormap data */
360   if (!PCX_ReadColormap(file, &pcx, image))
361   {
362     fclose(file);
363     freeImage(image);
364
365     errno_pcx = PCX_ColorFailed;
366     return NULL;
367   }
368
369   fclose(file);
370
371   if (pcx_depth == 8)
372   {
373     /* determine number of used colormap entries for 8-bit PCX images */
374     image->rgb.used = 0;
375     for (i=0; i<PCX_MAXCOLORS; i++)
376       if (image->rgb.color_used[i])
377         image->rgb.used++;
378   }
379
380 #if PCX_DEBUG
381   if (options.verbose)
382     printf("Read_PCX_to_Image: %d colors found\n", image->rgb.used);
383 #endif
384
385   return image;
386 }
387
388 #endif /* !TARGET_SDL */