File: liquidwarcol.c

package info (click to toggle)
liquidwar 5.6.3-3.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 15,964 kB
  • ctags: 2,584
  • sloc: ansic: 25,365; xml: 4,001; sh: 3,053; makefile: 1,357; asm: 1,344; python: 537; php: 486; sql: 22
file content (456 lines) | stat: -rw-r--r-- 13,400 bytes parent folder | download | duplicates (2)
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
/********************************************************************/
/*                                                                  */
/*            L   I  QQ  U U I DD    W   W  A  RR    555            */
/*            L   I Q  Q U U I D D   W   W A A R R   5              */
/*            L   I Q  Q U U I D D   W W W AAA RR    55             */
/*            L   I Q Q  U U I D D   WW WW A A R R     5            */
/*            LLL I  Q Q  U  I DD    W   W A A R R   55             */
/*                                                                  */
/*                             b                                    */
/*                             bb  y y                              */
/*                             b b yyy                              */
/*                             bb    y                              */
/*                                 yy                               */
/*                                                                  */
/*                     U U       FFF  O   O  TTT                    */
/*                     U U       F   O O O O  T                     */
/*                     U U TIRET FF  O O O O  T                     */
/*                     U U       F   O O O O  T                     */
/*                      U        F    O   O   T                     */
/*                                                                  */
/********************************************************************/

/*****************************************************************************/
/* Liquid War is a multiplayer wargame                                       */
/* Copyright (C) 1998-2005 Christian Mauduit                                 */
/*                                                                           */
/* 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 of the License, 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 */
/*                                                                           */
/* Liquid War homepage : http://www.ufoot.org/liquidwar                      */
/* Contact author      : ufoot@ufoot.org                                     */
/*****************************************************************************/

/********************************************************************/
/* nom           : liquidwarcol.c                                   */
/* contenu       : tools to convert files to 8 bits palettes        */
/* date de modif : 3 mai 98                                         */
/********************************************************************/

/*=================================================================*/
/* defines                                                         */
/*=================================================================*/

#define ALLEGRO_USE_CONSOLE

/*=================================================================*/
/* includes                                                        */
/*=================================================================*/

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

/*=================================================================*/
/* constants                                                       */
/*=================================================================*/

#define LW_TEXTURE_RANDOM_MAX_RETRIES 10000

/*=================================================================*/
/* variables globales                                              */
/*=================================================================*/

int ARGC;
char **ARGV;
int FLAG_BACKUP = 0;
int FLAG_HELP = 0;
int FLAG_SILENT = 0;
int FIRST_COLOR;
int NUMBER_OF_COLORS;
char *FILENAMES[65536];
int NUMBER_OF_FILES = 0;
PALETTE PALETTE_SRC;
PALETTE PALETTE_DST;
BITMAP *BITMAP_SRC = NULL;
BITMAP *BITMAP_DST = NULL;

/*=================================================================*/
/* fonctions                                                       */
/*=================================================================*/

/*-----------------------------------------------------------------*/
/* affichages d'aide                                               */
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
void
display_common_help (void)
{
  printf ("liquidwarcol by U-Foot (ufoot@ufoot.org).\n");
  printf ("This is a 'palette reducer' for 256 colors bitmaps.\n");
  printf ("It is free software, protected by the GPL.\n");
  printf ("It uses Allegro by Shawn Hargreaves.\n");
  printf ("\n");
}

/*-----------------------------------------------------------------*/
void
display_short_help (void)
{
  display_common_help ();
  printf ("Type \"liquidwarcol -?\" for more help.\n");
}

/*-----------------------------------------------------------------*/
void
display_long_help (void)
{
  display_common_help ();
  printf ("Syntax:\n");
  printf ("liquidwarcol [options] first_color number_of_colors filenames\n");
  printf ("\n");
  printf ("Options:\n");
  printf ("-? -h -H : displays this help.\n");
  printf ("-s -S :    silent mode, nothing written to the console.\n");
  printf ("\n");
  printf ("Warning: the source file will be replaced!\n");
}

/*-----------------------------------------------------------------*/
/* lecture des parametres de la ligne de commande                  */
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
int
acknowledge_flag (char *str)
{
  int found = 0;

  if (str[0] == '-' || str[0] == '/')
    {
      found = 1;
      switch (str[1])
	{
	case '?':
	case 'h':
	case 'H':
	  FLAG_HELP = 1;
	  break;
	case 'b':
	case 'B':
	  FLAG_BACKUP = 1;
	  break;
	case 's':
	case 'S':
	  FLAG_SILENT = 1;
	  break;
	default:
	  found = 0;
	}
    }
  return found;
}

/*-----------------------------------------------------------------*/
int
read_command_line (void)
{
  int i, j = 0, success = 1;

  for (i = 1; i < ARGC; ++i)
    {
      if ((!acknowledge_flag (ARGV[i])))
	{
	  if (j == 0)
	    FIRST_COLOR = atoi (ARGV[i]);
	  if (j == 1)
	    NUMBER_OF_COLORS = atoi (ARGV[i]);
	  if (j >= 2)
	    FILENAMES[j - 2] = ARGV[i];
	  j++;
	}
    }
  NUMBER_OF_FILES = j - 2;
  if (NUMBER_OF_FILES > 0)
    {
      if (FIRST_COLOR < 0)
	{
	  success = 0;
	  printf ("ERROR! First color number must be >= 0.\n");
	}
      if (FIRST_COLOR > 255)
	{
	  success = 0;
	  printf ("ERROR! First color number must be < 255.\n");
	}
      if (NUMBER_OF_COLORS < 1)
	{
	  success = 0;
	  printf ("ERROR! Number of colors must be > 1.\n");
	}
      if (NUMBER_OF_COLORS + FIRST_COLOR > 256)
	{
	  success = 0;
	  printf ("ERROR! Last color number must be < 256.\n");
	}
    }
  else
    {
      success = 0;
      if (!FLAG_HELP)
	printf ("ERROR! Two few arguments.\n");
    }
  return success;
}

/*-----------------------------------------------------------------*/
/* acces disque                                                    */
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
int
load_file (char *filename)
{
  int success;

  if (!FLAG_SILENT)
    printf ("Loading '%s'.\n", filename);

  if (BITMAP_SRC != NULL)
    destroy_bitmap (BITMAP_SRC);
  BITMAP_SRC = load_bitmap (filename, PALETTE_SRC);
  success = BITMAP_SRC != NULL;
  if (!success)
    printf ("ERROR! Unable to read '%s'.\n", filename);
  return success;
}

/*-----------------------------------------------------------------*/
void
save_backup (char *filename)
{
  char *bak_name = "faut encore le programmer";

  if (!FLAG_SILENT)
    printf ("Saving a copy of '%s' as '%s'.\n", filename, bak_name);
}

/*-----------------------------------------------------------------*/
void
save_file (char *filename)
{
  if (!FLAG_SILENT)
    printf ("Replacing '%s'.\n", filename);
  if (save_bitmap (filename, BITMAP_DST, PALETTE_DST))
    printf ("ERROR! Unable to save '%s'.\n", filename);
}

/*-----------------------------------------------------------------*/
/* operations de conversion                                        */
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
int
find_color (PALETTE pal, RGB rgb)
{
  int i, found = -1;

  for (i = 0; i < 256 && found < 0; ++i)
    if (pal[i].r == rgb.r && pal[i].g == rgb.g && pal[i].b == rgb.b)
      found = i;

  return found;
}

/*-----------------------------------------------------------------*/
int
exist_color (PALETTE pal, RGB rgb)
{
  return (find_color (pal, rgb) >= 0);
}

/*-----------------------------------------------------------------*/
void
recalculate_number_of_colors ()
{
  int i, x, y, n = 1;
  RGB color;
  PALETTE pal;

  //nb_of_colors=NUMBER_OF_COLORS;
  color = PALETTE_SRC[getpixel (BITMAP_SRC, 0, 0)];

  for (i = 0; i < 256; ++i)
    pal[i] = color;

  for (y = 0; y < BITMAP_SRC->h && n < NUMBER_OF_COLORS; ++y)
    for (x = 0; x < BITMAP_SRC->w && n < NUMBER_OF_COLORS; ++x)
      {
	color = PALETTE_SRC[getpixel (BITMAP_SRC, x, y)];
	if (!exist_color (pal, color))
	  pal[n++] = color;
      }
  NUMBER_OF_COLORS = n;
}

/*-----------------------------------------------------------------*/
void
create_new_palette (void)
{
  int i, x, y, index;
  int nb_retries = 0;
  RGB color;

  x = random () % BITMAP_SRC->w;
  y = random () % BITMAP_SRC->h;
  color = PALETTE_SRC[getpixel (BITMAP_SRC, x, y)];

  for (i = 0; i < 256; ++i)
    PALETTE_DST[i] = color;

  for (i = 1; i < NUMBER_OF_COLORS;)
    {
      x = random () % BITMAP_SRC->w;
      y = random () % BITMAP_SRC->h;
      index = getpixel (BITMAP_SRC, x, y);
      color = PALETTE_SRC[index];
      if ((!exist_color (PALETTE_DST, color)) ||
	  (nb_retries > LW_TEXTURE_RANDOM_MAX_RETRIES))
	{
	  PALETTE_DST[FIRST_COLOR + (i++)] = color;
	  nb_retries = 0;
	}
      else
	{
	  nb_retries++;
	}
    }
}

/*-----------------------------------------------------------------*/
void
correct_palette (void)
{
  int i;

  for (i = 0; i < FIRST_COLOR; ++i)
    {
      PALETTE_DST[i].r = 0;
      PALETTE_DST[i].g = 0;
      PALETTE_DST[i].b = 0;
    }
  for (i = FIRST_COLOR + NUMBER_OF_COLORS; i < 256; ++i)
    {
      PALETTE_DST[i].r = 63;
      PALETTE_DST[i].g = 63;
      PALETTE_DST[i].b = 63;
    }
}

/*-----------------------------------------------------------------*/
void
create_converted_bitmap (void)
{
  char corres[256];
  int i, x, y, index;

  for (i = 0; i < 256; ++i)
    corres[i] = bestfit_color (PALETTE_DST,
			       PALETTE_SRC[i].r,
			       PALETTE_SRC[i].g, PALETTE_SRC[i].b);
  BITMAP_DST = create_bitmap (BITMAP_SRC->w, BITMAP_SRC->h);
  for (y = 0; y < BITMAP_SRC->h; ++y)
    for (x = 0; x < BITMAP_SRC->w; ++x)
      {
	index = corres[getpixel (BITMAP_SRC, x, y)];
	index = (index < FIRST_COLOR ||
		 index >= FIRST_COLOR + NUMBER_OF_COLORS) ?
	  FIRST_COLOR : index;
	putpixel (BITMAP_DST, x, y, index);
      }
}

/*-----------------------------------------------------------------*/
void
convert_bitmap ()
{
  if (BITMAP_DST != NULL)
    destroy_bitmap (BITMAP_DST);

  recalculate_number_of_colors ();
  create_new_palette ();
  create_converted_bitmap ();
  correct_palette ();
}

/*=================================================================*/
/* fonctions main                                                  */
/*=================================================================*/

/*-----------------------------------------------------------------*/
int
main (int argc, char **argv)
{
  int i;

  ARGC = argc;
  ARGV = argv;

#ifdef ALLEGRO_UNIX
  install_allegro (SYSTEM_NONE, &errno, atexit);
#else
  allegro_init ();
#endif

  set_color_depth (8);
  set_color_conversion (COLORCONV_REDUCE_TO_256);

  srandom (time (NULL));
  // srandom(1);

  if (read_command_line ())
    {
      for (i = 0; i < NUMBER_OF_FILES; ++i)
	{
	  if (load_file (FILENAMES[i]))
	    {
	      if (FLAG_BACKUP)
		save_backup (FILENAMES[i]);
	      convert_bitmap (FILENAMES[i]);
	      save_file (FILENAMES[i]);
	    }
	}
    }
  else
    {
      if (FLAG_HELP)
	display_long_help ();
      else
	display_short_help ();
    }
  allegro_exit ();

  return 0;

}

#ifdef ALLEGRO_WINDOWS
END_OF_MAIN ()
#endif
#ifdef ALLEGRO_UNIX
  END_OF_MAIN ();
#endif