summaryrefslogtreecommitdiff
path: root/src/load_gif.c
blob: a8cb6cc02a18623b5b2010d93b674ae9e83f8716 (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
/*
 * GIF Loader
 * by Paul Bartrum
 *
 * Comment by Eric Stevens (tome@eastevens.com):
 *
 * This file has been modified to work with Allegro 4.0.3 that comes with
 * DJGPP 2.0.3 for the use in compiling for ToME 2.2.7. This modification
 * changes a variable name to one that is not in conflict with Allegro
 * variable name. The variable 'empty_string' was changed to 'empty_str'.
 *
 */

#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <allegro.h>
#include <string.h>

int _color_load_depth(int depth);

struct LZW_STRING
{
	short base;
	char new;
	short length;
};

PACKFILE *f;
int empty_str, curr_bit_size, bit_overflow;
int bit_pos, data_pos, data_len, entire, code;
int cc, string_length, i, bit_size;
unsigned char string[4096];
struct LZW_STRING str[4096];
BITMAP *bmp;
int image_x, image_y, image_w, image_h, x, y;
int interlace;


void clear_table(void)
{
	empty_str = cc + 2;
	curr_bit_size = bit_size + 1;
	bit_overflow = 0;
}


void get_code(void)
{
	if (bit_pos + curr_bit_size > 8)
	{
		if (data_pos >= data_len)
		{
			data_len = pack_getc(f);
			data_pos = 0;
		}
		entire = (pack_getc(f) << 8) + entire;
		data_pos ++;
	}
	if (bit_pos + curr_bit_size > 16)
	{
		if (data_pos >= data_len)
		{
			data_len = pack_getc(f);
			data_pos = 0;
		}
		entire = (pack_getc(f) << 16) + entire;
		data_pos ++;
	}
	code = (entire >> bit_pos) & ((1 << curr_bit_size) - 1);
	if (bit_pos + curr_bit_size > 8)
		entire >>= 8;
	if (bit_pos + curr_bit_size > 16)
		entire >>= 8;
	bit_pos = (bit_pos + curr_bit_size) % 8;
	if (bit_pos == 0)
	{
		if (data_pos >= data_len)
		{
			data_len = pack_getc(f);
			data_pos = 0;
		}
		entire = pack_getc(f);
		data_pos ++;
	}
}


void input_string(int num)
{
	if (num < cc)
	{
		string_length = 1;
		string[0] = str[num].new;
	}
	else
	{
		i = str[num].length;
		string_length = i;
		while (i > 0)
		{
			i --;
			string[i] = str[num].new;
			num = str[num].base;
		}
		/* if(num != -1) **-{[ERROR]}-** */
	}
}


void output_string(void)
{
	for (i = 0; i < string_length; i ++)
	{
		putpixel(bmp, x, y, string[i]);
		x ++;
		if (x >= image_x + image_w)
		{
			x = image_x;
			y += interlace;
			if (interlace)
			{
				if (y >= image_y + image_h)
				{
					if (interlace == 8 && (y - image_y) % 8 == 0)
					{
						interlace = 8;
						y = image_y + 4;
					}
					else if (interlace == 8 && (y - image_y) % 8 == 4)
					{
						interlace = 4;
						y = image_y + 2;
					}
					else if (interlace == 4)
					{
						interlace = 2;
						y = image_y + 1;
					}
				}
			}
		}
	}
}


/* load_gif:
 *  Loads a 2-256 colour GIF file onto a bitmap, returning the bitmap
 *  structure and storing the pallete data in the specified pallete (this
 *  should be an array of at least 256 RGB structures).
 */
BITMAP *load_gif (char *filename, RGB *pal)
{
	int width, height, depth;
	int old;
	BITMAP *bmp2;
	int dest_depth;

	f = pack_fopen(filename, F_READ);
	if (!f) /* can't open file */
		return NULL;

	i = pack_mgetw(f) << 8;
	i += pack_getc(f);
	if (i != 0x474946) /* is it really a GIF? */
	{
		pack_fclose(f);
		return NULL;
	}
	pack_fseek(f, 3);  /* skip version */

	width = pack_igetw(f);
	height = pack_igetw(f);

	bmp = create_bitmap_ex(8, width, height);
	if (bmp == NULL)
	{
		pack_fclose(f);
		return NULL;
	}
	clear(bmp);

	i = pack_getc(f);
	if (i & 128) /* no global colour table? */
		depth = (i & 7) + 1;
	else
		depth = 0;

	pack_fseek(f, 2); 	/* skip background colour and aspect ratio */

	if (pal && depth) /* only read palette if pal and depth are not 0 */
	{
		for (i = 0; i < (1 << depth); i ++)
		{
			pal[i].r = pack_getc(f) / 4;
			pal[i].g = pack_getc(f) / 4;
			pal[i].b = pack_getc(f) / 4;
		}
	}
	else
		if (depth)
			pack_fseek(f, (1 << depth) * 3);

	do
	{
		i = pack_getc(f);
		switch (i)
		{
		case 0x2C:  /* Image Descriptor */
			image_x = pack_igetw(f);
			image_y = pack_igetw(f);  /* individual image dimensions */
			image_w = pack_igetw(f);
			image_h = pack_igetw(f);

			i = pack_getc(f);
			if (i & 64)
				interlace = 8;
			else
				interlace = 1;

			if (i & 128)
			{
				depth = (i & 7) + 1;
				if (pal)
				{
					for (i = 0; i < (1 << depth); i ++)
					{
						pal[i].r = pack_getc(f) / 4;
						pal[i].g = pack_getc(f) / 4;
						pal[i].b = pack_getc(f) / 4;
					}
				}
				else
					pack_fseek(f, (1 << depth) * 3);
			}

			/* lzw stream starts now */
			bit_size = pack_getc(f);
			cc = 1 << bit_size;

			/* initialise string table */
			for (i = 0; i < cc; i ++)
			{
				str[i].base = -1;
				str[i].new = i;
				str[i].length = 1;
			}

			/* initialise the variables */
			bit_pos = 0;
			data_len = pack_getc(f);
			data_pos = 0;
			entire = pack_getc(f);
			data_pos ++;
			string_length = 0;
			x = image_x;
			y = image_y;

			/* starting code */
			clear_table();
			get_code();
			if (code == cc)
				get_code();
			input_string(code);
			output_string();
			old = code;

			while (TRUE)
			{
				get_code();

				if (code == cc)
				{
					/* starting code */
					clear_table();
					get_code();
					input_string(code);
					output_string();
					old = code;
				}
				else if (code == cc + 1)
				{
					break;
				}
				else if (code < empty_str)
				{
					input_string(code);
					output_string();

					if (bit_overflow == 0)
					{
						str[empty_str].base = old;
						str[empty_str].new = string[0];
						str[empty_str].length = str[old].length + 1;
						empty_str ++;
						if (empty_str == (1 << curr_bit_size))
							curr_bit_size ++;
						if (curr_bit_size == 13)
						{
							curr_bit_size = 12;
							bit_overflow = 1;
						}
					}

					old = code;
				}
				else
				{
					input_string(old);
					string[str[old].length] = string[0];
					string_length ++;

					if (bit_overflow == 0)
					{
						str[empty_str].base = old;
						str[empty_str].new = string[0];
						str[empty_str].length = str[old].length + 1;
						empty_str ++;
						if (empty_str == (1 << curr_bit_size))
							curr_bit_size ++;
						if (curr_bit_size == 13)
						{
							curr_bit_size = 12;
							bit_overflow = 1;
						}
					}

					output_string();
					old = code;
				}
			}
			break;
		case 0x21:  /* Extension Introducer */
			i = pack_getc(f);
			if (i == 0xF9) /* Graphic Control Extension */
			{
				pack_fseek(f, 1);  /* skip size (it's 4) */
				i = pack_getc(f);
				if (i & 1) /* is transparency enabled? */
				{
					pack_fseek(f, 2);
					pack_getc(f);  /* transparent colour */
				}
				else
					pack_fseek(f, 3);
			}
			i = pack_getc(f);
			while (i) /* skip Data Sub-blocks */
			{
				pack_fseek(f, i);
				i = pack_getc(f);
			}
			break;
		case 0x3B:  /* Trailer - end of data */
			pack_fclose(f);

			/* convert to correct colour depth */
			dest_depth = _color_load_depth(8);

			if (dest_depth != 8)
			{
				bmp2 = create_bitmap_ex(dest_depth, bmp->w, bmp->h);
				if (!bmp2)
				{
					destroy_bitmap(bmp);
					return NULL;
				}

				select_palette(pal);
				blit(bmp, bmp2, 0, 0, 0, 0, bmp->w, bmp->h);
				unselect_palette();

				destroy_bitmap(bmp);
				bmp = bmp2;
			}

			return bmp;
		}
	}
	while (TRUE);

	/* this is never executed but DJGPP complains if you leave it out */
	return NULL;
}