rnd-20060804-1-src
[rocksndiamonds.git] / src / libgame / misc.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 * misc.c                                                   *
12 ***********************************************************/
13
14 #include <time.h>
15 #include <sys/time.h>
16 #include <sys/types.h>
17 #include <stdarg.h>
18 #include <ctype.h>
19 #include <string.h>
20 #include <unistd.h>
21
22 #include "platform.h"
23
24 #if !defined(PLATFORM_WIN32)
25 #include <pwd.h>
26 #include <sys/param.h>
27 #endif
28
29 #include "misc.h"
30 #include "setup.h"
31 #include "random.h"
32 #include "text.h"
33 #include "image.h"
34
35
36 /* ========================================================================= */
37 /* some generic helper functions                                             */
38 /* ========================================================================= */
39
40 /* ------------------------------------------------------------------------- */
41 /* platform independent wrappers for printf() et al. (newline aware)         */
42 /* ------------------------------------------------------------------------- */
43
44 static void vfprintf_newline(FILE *stream, char *format, va_list ap)
45 {
46   char *newline = STRING_NEWLINE;
47
48   vfprintf(stream, format, ap);
49
50   fprintf(stream, "%s", newline);
51 }
52
53 static void fprintf_newline(FILE *stream, char *format, ...)
54 {
55   if (format)
56   {
57     va_list ap;
58
59     va_start(ap, format);
60     vfprintf_newline(stream, format, ap);
61     va_end(ap);
62   }
63 }
64
65 void fprintf_line(FILE *stream, char *line_chars, int line_length)
66 {
67   int i;
68
69   for (i = 0; i < line_length; i++)
70     fprintf(stream, "%s", line_chars);
71
72   fprintf_newline(stream, "");
73 }
74
75 void printf_line(char *line_chars, int line_length)
76 {
77   fprintf_line(stdout, line_chars, line_length);
78 }
79
80 void printf_line_with_prefix(char *prefix, char *line_chars, int line_length)
81 {
82   fprintf(stdout, "%s", prefix);
83   fprintf_line(stdout, line_chars, line_length);
84 }
85
86
87 /* ------------------------------------------------------------------------- */
88 /* string functions                                                          */
89 /* ------------------------------------------------------------------------- */
90
91 /* int2str() returns a number converted to a string;
92    the used memory is static, but will be overwritten by later calls,
93    so if you want to save the result, copy it to a private string buffer;
94    there can be 10 local calls of int2str() without buffering the result --
95    the 11th call will then destroy the result from the first call and so on.
96 */
97
98 char *int2str(int number, int size)
99 {
100   static char shift_array[10][40];
101   static int shift_counter = 0;
102   char *s = shift_array[shift_counter];
103
104   shift_counter = (shift_counter + 1) % 10;
105
106   if (size > 20)
107     size = 20;
108
109   if (size)
110   {
111     sprintf(s, "                    %09d", number);
112     return &s[strlen(s) - size];
113   }
114   else
115   {
116     sprintf(s, "%d", number);
117     return s;
118   }
119 }
120
121
122 /* something similar to "int2str()" above, but allocates its own memory
123    and has a different interface; we cannot use "itoa()", because this
124    seems to be already defined when cross-compiling to the win32 target */
125
126 char *i_to_a(unsigned int i)
127 {
128   static char *a = NULL;
129
130   checked_free(a);
131
132   if (i > 2147483647)   /* yes, this is a kludge */
133     i = 2147483647;
134
135   a = checked_malloc(10 + 1);
136
137   sprintf(a, "%d", i);
138
139   return a;
140 }
141
142
143 /* calculate base-2 logarithm of argument (rounded down to integer;
144    this function returns the number of the highest bit set in argument) */
145
146 int log_2(unsigned int x)
147 {
148   int e = 0;
149
150   while ((1 << e) < x)
151   {
152     x -= (1 << e);      /* for rounding down (rounding up: remove this line) */
153     e++;
154   }
155
156   return e;
157 }
158
159
160 /* ------------------------------------------------------------------------- */
161 /* counter functions                                                         */
162 /* ------------------------------------------------------------------------- */
163
164 #if defined(PLATFORM_MSDOS)
165 volatile unsigned long counter = 0;
166
167 void increment_counter()
168 {
169   counter++;
170 }
171
172 END_OF_FUNCTION(increment_counter);
173 #endif
174
175
176 /* maximal allowed length of a command line option */
177 #define MAX_OPTION_LEN          256
178
179 #ifdef TARGET_SDL
180 static unsigned long mainCounter(int mode)
181 {
182   static unsigned long base_ms = 0;
183   unsigned long current_ms;
184   unsigned long counter_ms;
185
186   current_ms = SDL_GetTicks();
187
188   /* reset base time in case of counter initializing or wrap-around */
189   if (mode == INIT_COUNTER || current_ms < base_ms)
190     base_ms = current_ms;
191
192   counter_ms = current_ms - base_ms;
193
194   return counter_ms;            /* return milliseconds since last init */
195 }
196
197 #else /* !TARGET_SDL */
198
199 #if defined(PLATFORM_UNIX)
200 static unsigned long mainCounter(int mode)
201 {
202   static struct timeval base_time = { 0, 0 };
203   struct timeval current_time;
204   unsigned long counter_ms;
205
206   gettimeofday(&current_time, NULL);
207
208   /* reset base time in case of counter initializing or wrap-around */
209   if (mode == INIT_COUNTER || current_time.tv_sec < base_time.tv_sec)
210     base_time = current_time;
211
212   counter_ms = (current_time.tv_sec  - base_time.tv_sec)  * 1000
213              + (current_time.tv_usec - base_time.tv_usec) / 1000;
214
215   return counter_ms;            /* return milliseconds since last init */
216 }
217 #endif /* PLATFORM_UNIX */
218 #endif /* !TARGET_SDL */
219
220 void InitCounter()              /* set counter back to zero */
221 {
222 #if !defined(PLATFORM_MSDOS)
223   mainCounter(INIT_COUNTER);
224 #else
225   LOCK_VARIABLE(counter);
226   LOCK_FUNCTION(increment_counter);
227   install_int_ex(increment_counter, BPS_TO_TIMER(100));
228 #endif
229 }
230
231 unsigned long Counter() /* get milliseconds since last call of InitCounter() */
232 {
233 #if !defined(PLATFORM_MSDOS)
234   return mainCounter(READ_COUNTER);
235 #else
236   return (counter * 10);
237 #endif
238 }
239
240 static void sleep_milliseconds(unsigned long milliseconds_delay)
241 {
242   boolean do_busy_waiting = (milliseconds_delay < 5 ? TRUE : FALSE);
243
244   if (do_busy_waiting)
245   {
246     /* we want to wait only a few ms -- if we assume that we have a
247        kernel timer resolution of 10 ms, we would wait far to long;
248        therefore it's better to do a short interval of busy waiting
249        to get our sleeping time more accurate */
250
251     unsigned long base_counter = Counter(), actual_counter = Counter();
252
253     while (actual_counter < base_counter + milliseconds_delay &&
254            actual_counter >= base_counter)
255       actual_counter = Counter();
256   }
257   else
258   {
259 #if defined(TARGET_SDL)
260     SDL_Delay(milliseconds_delay);
261 #elif defined(TARGET_ALLEGRO)
262     rest(milliseconds_delay);
263 #else
264     struct timeval delay;
265
266     delay.tv_sec  = milliseconds_delay / 1000;
267     delay.tv_usec = 1000 * (milliseconds_delay % 1000);
268
269     if (select(0, NULL, NULL, NULL, &delay) != 0)
270       Error(ERR_WARN, "sleep_milliseconds(): select() failed");
271 #endif
272   }
273 }
274
275 void Delay(unsigned long delay) /* Sleep specified number of milliseconds */
276 {
277   sleep_milliseconds(delay);
278 }
279
280 boolean FrameReached(unsigned long *frame_counter_var,
281                      unsigned long frame_delay)
282 {
283   unsigned long actual_frame_counter = FrameCounter;
284
285   if (actual_frame_counter >= *frame_counter_var &&
286       actual_frame_counter < *frame_counter_var + frame_delay)
287     return FALSE;
288
289   *frame_counter_var = actual_frame_counter;
290
291   return TRUE;
292 }
293
294 boolean DelayReached(unsigned long *counter_var,
295                      unsigned long delay)
296 {
297   unsigned long actual_counter = Counter();
298
299   if (actual_counter >= *counter_var &&
300       actual_counter < *counter_var + delay)
301     return FALSE;
302
303   *counter_var = actual_counter;
304
305   return TRUE;
306 }
307
308 void WaitUntilDelayReached(unsigned long *counter_var, unsigned long delay)
309 {
310   unsigned long actual_counter;
311
312   while (1)
313   {
314     actual_counter = Counter();
315
316     if (actual_counter >= *counter_var &&
317         actual_counter < *counter_var + delay)
318       sleep_milliseconds((*counter_var + delay - actual_counter) / 2);
319     else
320       break;
321   }
322
323   *counter_var = actual_counter;
324 }
325
326
327 /* ------------------------------------------------------------------------- */
328 /* random generator functions                                                */
329 /* ------------------------------------------------------------------------- */
330
331 unsigned int init_random_number(int nr, long seed)
332 {
333   if (seed == NEW_RANDOMIZE)
334   {
335 #if defined(TARGET_SDL)
336     seed = (long)SDL_GetTicks();
337 #else
338     struct timeval current_time;
339
340     gettimeofday(&current_time, NULL);
341     seed = (long)current_time.tv_usec;
342 #endif
343   }
344
345   srandom_linux_libc(nr, (unsigned int) seed);
346
347   return (unsigned int) seed;
348 }
349
350 unsigned int get_random_number(int nr, int max)
351 {
352   return (max > 0 ? random_linux_libc(nr) % max : 0);
353 }
354
355
356 /* ------------------------------------------------------------------------- */
357 /* system info functions                                                     */
358 /* ------------------------------------------------------------------------- */
359
360 #if !defined(PLATFORM_MSDOS)
361 static char *get_corrected_real_name(char *real_name)
362 {
363   char *real_name_new = checked_malloc(MAX_USERNAME_LEN + 1);
364   char *from_ptr = real_name;
365   char *to_ptr   = real_name_new;
366
367   /* copy the name string, but not more than MAX_USERNAME_LEN characters */
368   while (*from_ptr && (long)(to_ptr - real_name_new) < MAX_USERNAME_LEN - 1)
369   {
370     /* the name field read from "passwd" file may also contain additional
371        user information, separated by commas, which will be removed here */
372     if (*from_ptr == ',')
373       break;
374
375     /* the user's real name may contain 'ß' characters (german sharp s),
376        which have no equivalent in upper case letters (used by our fonts) */
377     if (*from_ptr == 'ß')
378     {
379       from_ptr++;
380       *to_ptr++ = 's';
381       *to_ptr++ = 's';
382     }
383     else
384       *to_ptr++ = *from_ptr++;
385   }
386
387   *to_ptr = '\0';
388
389   return real_name_new;
390 }
391 #endif
392
393 char *getLoginName()
394 {
395   static char *login_name = NULL;
396
397 #if defined(PLATFORM_WIN32)
398   if (login_name == NULL)
399   {
400     unsigned long buffer_size = MAX_USERNAME_LEN + 1;
401     login_name = checked_malloc(buffer_size);
402
403     if (GetUserName(login_name, &buffer_size) == 0)
404       strcpy(login_name, ANONYMOUS_NAME);
405   }
406 #else
407   if (login_name == NULL)
408   {
409     struct passwd *pwd;
410
411     if ((pwd = getpwuid(getuid())) == NULL)
412       login_name = ANONYMOUS_NAME;
413     else
414       login_name = getStringCopy(pwd->pw_name);
415   }
416 #endif
417
418   return login_name;
419 }
420
421 char *getRealName()
422 {
423   static char *real_name = NULL;
424
425 #if defined(PLATFORM_WIN32)
426   if (real_name == NULL)
427   {
428     static char buffer[MAX_USERNAME_LEN + 1];
429     unsigned long buffer_size = MAX_USERNAME_LEN + 1;
430
431     if (GetUserName(buffer, &buffer_size) != 0)
432       real_name = get_corrected_real_name(buffer);
433     else
434       real_name = ANONYMOUS_NAME;
435   }
436 #elif defined(PLATFORM_UNIX)
437   if (real_name == NULL)
438   {
439     struct passwd *pwd;
440
441     if ((pwd = getpwuid(getuid())) != NULL && strlen(pwd->pw_gecos) != 0)
442       real_name = get_corrected_real_name(pwd->pw_gecos);
443     else
444       real_name = ANONYMOUS_NAME;
445   }
446 #else
447   real_name = ANONYMOUS_NAME;
448 #endif
449
450   return real_name;
451 }
452
453
454 /* ------------------------------------------------------------------------- */
455 /* path manipulation functions                                               */
456 /* ------------------------------------------------------------------------- */
457
458 static char *getLastPathSeparatorPtr(char *filename)
459 {
460   char *last_separator = strrchr(filename, CHAR_PATH_SEPARATOR_UNIX);
461
462   if (last_separator == NULL)   /* also try DOS/Windows variant */
463     last_separator = strrchr(filename, CHAR_PATH_SEPARATOR_DOS);
464
465   return last_separator;
466 }
467
468 char *getBaseNamePtr(char *filename)
469 {
470   char *last_separator = getLastPathSeparatorPtr(filename);
471
472   if (last_separator != NULL)
473     return last_separator + 1;  /* separator found: strip base path */
474   else
475     return filename;            /* no separator found: filename has no path */
476 }
477
478 char *getBaseName(char *filename)
479 {
480   return getStringCopy(getBaseNamePtr(filename));
481 }
482
483 char *getBasePath(char *filename)
484 {
485   char *basepath = getStringCopy(filename);
486   char *last_separator = getLastPathSeparatorPtr(basepath);
487
488   if (last_separator != NULL)
489     *last_separator = '\0';     /* separator found: strip basename */
490   else
491     basepath = ".";             /* no separator found: use current path */
492
493   return basepath;
494 }
495
496
497 /* ------------------------------------------------------------------------- */
498 /* various string functions                                                  */
499 /* ------------------------------------------------------------------------- */
500
501 char *getPath2(char *path1, char *path2)
502 {
503   char *sep = STRING_PATH_SEPARATOR;
504   char *complete_path = checked_malloc(strlen(path1) + 1 +
505                                        strlen(path2) + 1);
506
507   sprintf(complete_path, "%s%s%s", path1, sep, path2);
508
509   return complete_path;
510 }
511
512 char *getPath3(char *path1, char *path2, char *path3)
513 {
514   char *sep = STRING_PATH_SEPARATOR;
515   char *complete_path = checked_malloc(strlen(path1) + 1 +
516                                        strlen(path2) + 1 +
517                                        strlen(path3) + 1);
518
519   sprintf(complete_path, "%s%s%s%s%s", path1, sep, path2, sep, path3);
520
521   return complete_path;
522 }
523
524 char *getStringCat2(char *s1, char *s2)
525 {
526   char *complete_string = checked_malloc(strlen(s1) + strlen(s2) + 1);
527
528   sprintf(complete_string, "%s%s", s1, s2);
529
530   return complete_string;
531 }
532
533 char *getStringCopy(char *s)
534 {
535   char *s_copy;
536
537   if (s == NULL)
538     return NULL;
539
540   s_copy = checked_malloc(strlen(s) + 1);
541   strcpy(s_copy, s);
542
543   return s_copy;
544 }
545
546 char *getStringToLower(char *s)
547 {
548   char *s_copy = checked_malloc(strlen(s) + 1);
549   char *s_ptr = s_copy;
550
551   while (*s)
552     *s_ptr++ = tolower(*s++);
553   *s_ptr = '\0';
554
555   return s_copy;
556 }
557
558 void setString(char **old_value, char *new_value)
559 {
560   checked_free(*old_value);
561
562   *old_value = getStringCopy(new_value);
563 }
564
565 boolean strEqual(char *s1, char *s2)
566 {
567   return (s1 == NULL && s2 == NULL ? TRUE  :
568           s1 == NULL && s2 != NULL ? FALSE :
569           s1 != NULL && s2 == NULL ? FALSE :
570           strcmp(s1, s2) == 0);
571 }
572
573
574 /* ------------------------------------------------------------------------- */
575 /* command line option handling functions                                    */
576 /* ------------------------------------------------------------------------- */
577
578 void GetOptions(char *argv[], void (*print_usage_function)(void))
579 {
580   char *ro_base_path = RO_BASE_PATH;
581   char *rw_base_path = RW_BASE_PATH;
582   char **options_left = &argv[1];
583
584 #if !defined(PLATFORM_MACOSX)
585   /* if the program is configured to start from current directory (default),
586      determine program package directory (KDE/Konqueror does not do this by
587      itself and fails otherwise); on Mac OS X, the program binary is stored
588      in an application package directory -- do not try to use this directory
589      as the program data directory (Mac OS X handles this correctly anyway) */
590
591   if (strEqual(ro_base_path, "."))
592     ro_base_path = program.command_basepath;
593   if (strEqual(rw_base_path, "."))
594     rw_base_path = program.command_basepath;
595 #endif
596
597   /* initialize global program options */
598   options.display_name = NULL;
599   options.server_host = NULL;
600   options.server_port = 0;
601   options.ro_base_directory = ro_base_path;
602   options.rw_base_directory = rw_base_path;
603   options.level_directory    = getPath2(ro_base_path, LEVELS_DIRECTORY);
604   options.graphics_directory = getPath2(ro_base_path, GRAPHICS_DIRECTORY);
605   options.sounds_directory   = getPath2(ro_base_path, SOUNDS_DIRECTORY);
606   options.music_directory    = getPath2(ro_base_path, MUSIC_DIRECTORY);
607   options.docs_directory     = getPath2(ro_base_path, DOCS_DIRECTORY);
608   options.execute_command = NULL;
609   options.serveronly = FALSE;
610   options.network = FALSE;
611   options.verbose = FALSE;
612   options.debug = FALSE;
613
614 #if !defined(PLATFORM_UNIX)
615   if (*options_left == NULL)    /* no options given -- enable verbose mode */
616     options.verbose = TRUE;
617 #endif
618
619   while (*options_left)
620   {
621     char option_str[MAX_OPTION_LEN];
622     char *option = options_left[0];
623     char *next_option = options_left[1];
624     char *option_arg = NULL;
625     int option_len = strlen(option);
626
627     if (option_len >= MAX_OPTION_LEN)
628       Error(ERR_EXIT_HELP, "unrecognized option '%s'", option);
629
630     strcpy(option_str, option);                 /* copy argument into buffer */
631     option = option_str;
632
633     if (strEqual(option, "--"))                 /* stop scanning arguments */
634       break;
635
636     if (strncmp(option, "--", 2) == 0)          /* treat '--' like '-' */
637       option++;
638
639     option_arg = strchr(option, '=');
640     if (option_arg == NULL)                     /* no '=' in option */
641       option_arg = next_option;
642     else
643     {
644       *option_arg++ = '\0';                     /* cut argument from option */
645       if (*option_arg == '\0')                  /* no argument after '=' */
646         Error(ERR_EXIT_HELP, "option '%s' has invalid argument", option_str);
647     }
648
649     option_len = strlen(option);
650
651     if (strEqual(option, "-"))
652       Error(ERR_EXIT_HELP, "unrecognized option '%s'", option);
653     else if (strncmp(option, "-help", option_len) == 0)
654     {
655       print_usage_function();
656
657       exit(0);
658     }
659     else if (strncmp(option, "-display", option_len) == 0)
660     {
661       if (option_arg == NULL)
662         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
663
664       options.display_name = option_arg;
665       if (option_arg == next_option)
666         options_left++;
667     }
668     else if (strncmp(option, "-basepath", option_len) == 0)
669     {
670       if (option_arg == NULL)
671         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
672
673       /* this should be extended to separate options for ro and rw data */
674       options.ro_base_directory = ro_base_path = option_arg;
675       options.rw_base_directory = rw_base_path = option_arg;
676       if (option_arg == next_option)
677         options_left++;
678
679       /* adjust paths for sub-directories in base directory accordingly */
680       options.level_directory    = getPath2(ro_base_path, LEVELS_DIRECTORY);
681       options.graphics_directory = getPath2(ro_base_path, GRAPHICS_DIRECTORY);
682       options.sounds_directory   = getPath2(ro_base_path, SOUNDS_DIRECTORY);
683       options.music_directory    = getPath2(ro_base_path, MUSIC_DIRECTORY);
684       options.docs_directory     = getPath2(ro_base_path, DOCS_DIRECTORY);
685     }
686     else if (strncmp(option, "-levels", option_len) == 0)
687     {
688       if (option_arg == NULL)
689         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
690
691       options.level_directory = option_arg;
692       if (option_arg == next_option)
693         options_left++;
694     }
695     else if (strncmp(option, "-graphics", option_len) == 0)
696     {
697       if (option_arg == NULL)
698         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
699
700       options.graphics_directory = option_arg;
701       if (option_arg == next_option)
702         options_left++;
703     }
704     else if (strncmp(option, "-sounds", option_len) == 0)
705     {
706       if (option_arg == NULL)
707         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
708
709       options.sounds_directory = option_arg;
710       if (option_arg == next_option)
711         options_left++;
712     }
713     else if (strncmp(option, "-music", option_len) == 0)
714     {
715       if (option_arg == NULL)
716         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
717
718       options.music_directory = option_arg;
719       if (option_arg == next_option)
720         options_left++;
721     }
722     else if (strncmp(option, "-network", option_len) == 0)
723     {
724       options.network = TRUE;
725     }
726     else if (strncmp(option, "-serveronly", option_len) == 0)
727     {
728       options.serveronly = TRUE;
729     }
730     else if (strncmp(option, "-verbose", option_len) == 0)
731     {
732       options.verbose = TRUE;
733     }
734     else if (strncmp(option, "-debug", option_len) == 0)
735     {
736       options.debug = TRUE;
737     }
738     else if (strncmp(option, "-execute", option_len) == 0)
739     {
740       if (option_arg == NULL)
741         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
742
743       options.execute_command = option_arg;
744       if (option_arg == next_option)
745         options_left++;
746
747       /* when doing batch processing, always enable verbose mode (warnings) */
748       options.verbose = TRUE;
749     }
750     else if (*option == '-')
751     {
752       Error(ERR_EXIT_HELP, "unrecognized option '%s'", option_str);
753     }
754     else if (options.server_host == NULL)
755     {
756       options.server_host = *options_left;
757     }
758     else if (options.server_port == 0)
759     {
760       options.server_port = atoi(*options_left);
761       if (options.server_port < 1024)
762         Error(ERR_EXIT_HELP, "bad port number '%d'", options.server_port);
763     }
764     else
765       Error(ERR_EXIT_HELP, "too many arguments");
766
767     options_left++;
768   }
769 }
770
771
772 /* ------------------------------------------------------------------------- */
773 /* error handling functions                                                  */
774 /* ------------------------------------------------------------------------- */
775
776 /* used by SetError() and GetError() to store internal error messages */
777 static char internal_error[1024];       /* this is bad */
778
779 void SetError(char *format, ...)
780 {
781   va_list ap;
782
783   va_start(ap, format);
784   vsprintf(internal_error, format, ap);
785   va_end(ap);
786 }
787
788 char *GetError()
789 {
790   return internal_error;
791 }
792
793 #if 1
794
795 void Error(int mode, char *format, ...)
796 {
797   static boolean last_line_was_separator = FALSE;
798   char *process_name = "";
799
800   /* display warnings only when running in verbose mode */
801   if (mode & ERR_WARN && !options.verbose)
802     return;
803
804   if (mode == ERR_RETURN_LINE)
805   {
806     if (!last_line_was_separator)
807       fprintf_line(program.error_file, format, 79);
808
809     last_line_was_separator = TRUE;
810
811     return;
812   }
813
814   last_line_was_separator = FALSE;
815
816   if (mode & ERR_SOUND_SERVER)
817     process_name = " sound server";
818   else if (mode & ERR_NETWORK_SERVER)
819     process_name = " network server";
820   else if (mode & ERR_NETWORK_CLIENT)
821     process_name = " network client **";
822
823   if (format)
824   {
825     va_list ap;
826
827     fprintf(program.error_file, "%s%s: ", program.command_basename,
828             process_name);
829
830     if (mode & ERR_WARN)
831       fprintf(program.error_file, "warning: ");
832
833     va_start(ap, format);
834     vfprintf_newline(program.error_file, format, ap);
835     va_end(ap);
836   }
837   
838   if (mode & ERR_HELP)
839     fprintf_newline(program.error_file,
840                     "%s: Try option '--help' for more information.",
841                     program.command_basename);
842
843   if (mode & ERR_EXIT)
844     fprintf_newline(program.error_file, "%s%s: aborting",
845                     program.command_basename, process_name);
846
847   if (mode & ERR_EXIT)
848   {
849     if (mode & ERR_FROM_SERVER)
850       exit(1);                          /* child process: normal exit */
851     else
852       program.exit_function(1);         /* main process: clean up stuff */
853   }
854 }
855
856 #else
857
858 void Error(int mode, char *format, ...)
859 {
860   static boolean last_line_was_separator = FALSE;
861   char *process_name = "";
862   FILE *error = stderr;
863   char *newline = "\n";
864
865   /* display warnings only when running in verbose mode */
866   if (mode & ERR_WARN && !options.verbose)
867     return;
868
869   if (mode == ERR_RETURN_LINE)
870   {
871     if (!last_line_was_separator)
872       fprintf_line(error, format, 79);
873
874     last_line_was_separator = TRUE;
875
876     return;
877   }
878
879   last_line_was_separator = FALSE;
880
881 #if defined(PLATFORM_WIN32) || defined(PLATFORM_MSDOS)
882   newline = "\r\n";
883
884   if ((error = openErrorFile()) == NULL)
885   {
886     printf("Cannot write to error output file!%s", newline);
887
888     program.exit_function(1);
889   }
890 #endif
891
892   if (mode & ERR_SOUND_SERVER)
893     process_name = " sound server";
894   else if (mode & ERR_NETWORK_SERVER)
895     process_name = " network server";
896   else if (mode & ERR_NETWORK_CLIENT)
897     process_name = " network client **";
898
899   if (format)
900   {
901     va_list ap;
902
903     fprintf(error, "%s%s: ", program.command_basename, process_name);
904
905     if (mode & ERR_WARN)
906       fprintf(error, "warning: ");
907
908     va_start(ap, format);
909     vfprintf(error, format, ap);
910     va_end(ap);
911   
912     fprintf(error, "%s", newline);
913   }
914   
915   if (mode & ERR_HELP)
916     fprintf(error, "%s: Try option '--help' for more information.%s",
917             program.command_basename, newline);
918
919   if (mode & ERR_EXIT)
920     fprintf(error, "%s%s: aborting%s",
921             program.command_basename, process_name, newline);
922
923   if (error != stderr)
924     fclose(error);
925
926   if (mode & ERR_EXIT)
927   {
928     if (mode & ERR_FROM_SERVER)
929       exit(1);                          /* child process: normal exit */
930     else
931       program.exit_function(1);         /* main process: clean up stuff */
932   }
933 }
934
935 #endif
936
937
938 /* ------------------------------------------------------------------------- */
939 /* checked memory allocation and freeing functions                           */
940 /* ------------------------------------------------------------------------- */
941
942 void *checked_malloc(unsigned long size)
943 {
944   void *ptr;
945
946   ptr = malloc(size);
947
948   if (ptr == NULL)
949     Error(ERR_EXIT, "cannot allocate %d bytes -- out of memory", size);
950
951   return ptr;
952 }
953
954 void *checked_calloc(unsigned long size)
955 {
956   void *ptr;
957
958   ptr = calloc(1, size);
959
960   if (ptr == NULL)
961     Error(ERR_EXIT, "cannot allocate %d bytes -- out of memory", size);
962
963   return ptr;
964 }
965
966 void *checked_realloc(void *ptr, unsigned long size)
967 {
968   ptr = realloc(ptr, size);
969
970   if (ptr == NULL)
971     Error(ERR_EXIT, "cannot allocate %d bytes -- out of memory", size);
972
973   return ptr;
974 }
975
976 void checked_free(void *ptr)
977 {
978   if (ptr != NULL)      /* this check should be done by free() anyway */
979     free(ptr);
980 }
981
982
983 /* ------------------------------------------------------------------------- */
984 /* various helper functions                                                  */
985 /* ------------------------------------------------------------------------- */
986
987 inline void swap_numbers(int *i1, int *i2)
988 {
989   int help = *i1;
990
991   *i1 = *i2;
992   *i2 = help;
993 }
994
995 inline void swap_number_pairs(int *x1, int *y1, int *x2, int *y2)
996 {
997   int help_x = *x1;
998   int help_y = *y1;
999
1000   *x1 = *x2;
1001   *x2 = help_x;
1002
1003   *y1 = *y2;
1004   *y2 = help_y;
1005 }
1006
1007 /* the "put" variants of the following file access functions check for the file
1008    pointer being != NULL and return the number of bytes they have or would have
1009    written; this allows for chunk writing functions to first determine the size
1010    of the (not yet written) chunk, write the correct chunk size and finally
1011    write the chunk itself */
1012
1013 int getFile8BitInteger(FILE *file)
1014 {
1015   return fgetc(file);
1016 }
1017
1018 int putFile8BitInteger(FILE *file, int value)
1019 {
1020   if (file != NULL)
1021     fputc(value, file);
1022
1023   return 1;
1024 }
1025
1026 int getFile16BitInteger(FILE *file, int byte_order)
1027 {
1028   if (byte_order == BYTE_ORDER_BIG_ENDIAN)
1029     return ((fgetc(file) << 8) |
1030             (fgetc(file) << 0));
1031   else           /* BYTE_ORDER_LITTLE_ENDIAN */
1032     return ((fgetc(file) << 0) |
1033             (fgetc(file) << 8));
1034 }
1035
1036 int putFile16BitInteger(FILE *file, int value, int byte_order)
1037 {
1038   if (file != NULL)
1039   {
1040     if (byte_order == BYTE_ORDER_BIG_ENDIAN)
1041     {
1042       fputc((value >> 8) & 0xff, file);
1043       fputc((value >> 0) & 0xff, file);
1044     }
1045     else           /* BYTE_ORDER_LITTLE_ENDIAN */
1046     {
1047       fputc((value >> 0) & 0xff, file);
1048       fputc((value >> 8) & 0xff, file);
1049     }
1050   }
1051
1052   return 2;
1053 }
1054
1055 int getFile32BitInteger(FILE *file, int byte_order)
1056 {
1057   if (byte_order == BYTE_ORDER_BIG_ENDIAN)
1058     return ((fgetc(file) << 24) |
1059             (fgetc(file) << 16) |
1060             (fgetc(file) <<  8) |
1061             (fgetc(file) <<  0));
1062   else           /* BYTE_ORDER_LITTLE_ENDIAN */
1063     return ((fgetc(file) <<  0) |
1064             (fgetc(file) <<  8) |
1065             (fgetc(file) << 16) |
1066             (fgetc(file) << 24));
1067 }
1068
1069 int putFile32BitInteger(FILE *file, int value, int byte_order)
1070 {
1071   if (file != NULL)
1072   {
1073     if (byte_order == BYTE_ORDER_BIG_ENDIAN)
1074     {
1075       fputc((value >> 24) & 0xff, file);
1076       fputc((value >> 16) & 0xff, file);
1077       fputc((value >>  8) & 0xff, file);
1078       fputc((value >>  0) & 0xff, file);
1079     }
1080     else           /* BYTE_ORDER_LITTLE_ENDIAN */
1081     {
1082       fputc((value >>  0) & 0xff, file);
1083       fputc((value >>  8) & 0xff, file);
1084       fputc((value >> 16) & 0xff, file);
1085       fputc((value >> 24) & 0xff, file);
1086     }
1087   }
1088
1089   return 4;
1090 }
1091
1092 boolean getFileChunk(FILE *file, char *chunk_name, int *chunk_size,
1093                      int byte_order)
1094 {
1095   const int chunk_name_length = 4;
1096
1097   /* read chunk name */
1098   fgets(chunk_name, chunk_name_length + 1, file);
1099
1100   if (chunk_size != NULL)
1101   {
1102     /* read chunk size */
1103     *chunk_size = getFile32BitInteger(file, byte_order);
1104   }
1105
1106   return (feof(file) || ferror(file) ? FALSE : TRUE);
1107 }
1108
1109 int putFileChunk(FILE *file, char *chunk_name, int chunk_size,
1110                  int byte_order)
1111 {
1112   int num_bytes = 0;
1113
1114   /* write chunk name */
1115   if (file != NULL)
1116     fputs(chunk_name, file);
1117
1118   num_bytes += strlen(chunk_name);
1119
1120   if (chunk_size >= 0)
1121   {
1122     /* write chunk size */
1123     if (file != NULL)
1124       putFile32BitInteger(file, chunk_size, byte_order);
1125
1126     num_bytes += 4;
1127   }
1128
1129   return num_bytes;
1130 }
1131
1132 int getFileVersion(FILE *file)
1133 {
1134   int version_major = fgetc(file);
1135   int version_minor = fgetc(file);
1136   int version_patch = fgetc(file);
1137   int version_build = fgetc(file);
1138
1139   return VERSION_IDENT(version_major, version_minor, version_patch,
1140                        version_build);
1141 }
1142
1143 int putFileVersion(FILE *file, int version)
1144 {
1145   if (file != NULL)
1146   {
1147     int version_major = VERSION_MAJOR(version);
1148     int version_minor = VERSION_MINOR(version);
1149     int version_patch = VERSION_PATCH(version);
1150     int version_build = VERSION_BUILD(version);
1151
1152     fputc(version_major, file);
1153     fputc(version_minor, file);
1154     fputc(version_patch, file);
1155     fputc(version_build, file);
1156   }
1157
1158   return 4;
1159 }
1160
1161 void ReadBytesFromFile(FILE *file, byte *buffer, unsigned long bytes)
1162 {
1163   int i;
1164
1165   for(i = 0; i < bytes && !feof(file); i++)
1166     buffer[i] = fgetc(file);
1167 }
1168
1169 void WriteBytesToFile(FILE *file, byte *buffer, unsigned long bytes)
1170 {
1171   int i;
1172
1173   for(i = 0; i < bytes; i++)
1174     fputc(buffer[i], file);
1175 }
1176
1177 void ReadUnusedBytesFromFile(FILE *file, unsigned long bytes)
1178 {
1179   while (bytes-- && !feof(file))
1180     fgetc(file);
1181 }
1182
1183 void WriteUnusedBytesToFile(FILE *file, unsigned long bytes)
1184 {
1185   while (bytes--)
1186     fputc(0, file);
1187 }
1188
1189
1190 /* ------------------------------------------------------------------------- */
1191 /* functions to translate key identifiers between different format           */
1192 /* ------------------------------------------------------------------------- */
1193
1194 #define TRANSLATE_KEYSYM_TO_KEYNAME     0
1195 #define TRANSLATE_KEYSYM_TO_X11KEYNAME  1
1196 #define TRANSLATE_KEYNAME_TO_KEYSYM     2
1197 #define TRANSLATE_X11KEYNAME_TO_KEYSYM  3
1198
1199 void translate_keyname(Key *keysym, char **x11name, char **name, int mode)
1200 {
1201   static struct
1202   {
1203     Key key;
1204     char *x11name;
1205     char *name;
1206   } translate_key[] =
1207   {
1208     /* normal cursor keys */
1209     { KSYM_Left,        "XK_Left",              "cursor left" },
1210     { KSYM_Right,       "XK_Right",             "cursor right" },
1211     { KSYM_Up,          "XK_Up",                "cursor up" },
1212     { KSYM_Down,        "XK_Down",              "cursor down" },
1213
1214     /* keypad cursor keys */
1215 #ifdef KSYM_KP_Left
1216     { KSYM_KP_Left,     "XK_KP_Left",           "keypad left" },
1217     { KSYM_KP_Right,    "XK_KP_Right",          "keypad right" },
1218     { KSYM_KP_Up,       "XK_KP_Up",             "keypad up" },
1219     { KSYM_KP_Down,     "XK_KP_Down",           "keypad down" },
1220 #endif
1221
1222     /* other keypad keys */
1223 #ifdef KSYM_KP_Enter
1224     { KSYM_KP_Enter,    "XK_KP_Enter",          "keypad enter" },
1225     { KSYM_KP_Add,      "XK_KP_Add",            "keypad +" },
1226     { KSYM_KP_Subtract, "XK_KP_Subtract",       "keypad -" },
1227     { KSYM_KP_Multiply, "XK_KP_Multiply",       "keypad mltply" },
1228     { KSYM_KP_Divide,   "XK_KP_Divide",         "keypad /" },
1229     { KSYM_KP_Separator,"XK_KP_Separator",      "keypad ," },
1230 #endif
1231
1232     /* modifier keys */
1233     { KSYM_Shift_L,     "XK_Shift_L",           "left shift" },
1234     { KSYM_Shift_R,     "XK_Shift_R",           "right shift" },
1235     { KSYM_Control_L,   "XK_Control_L",         "left control" },
1236     { KSYM_Control_R,   "XK_Control_R",         "right control" },
1237     { KSYM_Meta_L,      "XK_Meta_L",            "left meta" },
1238     { KSYM_Meta_R,      "XK_Meta_R",            "right meta" },
1239     { KSYM_Alt_L,       "XK_Alt_L",             "left alt" },
1240     { KSYM_Alt_R,       "XK_Alt_R",             "right alt" },
1241     { KSYM_Super_L,     "XK_Super_L",           "left super" },  /* Win-L */
1242     { KSYM_Super_R,     "XK_Super_R",           "right super" }, /* Win-R */
1243     { KSYM_Mode_switch, "XK_Mode_switch",       "mode switch" }, /* Alt-R */
1244     { KSYM_Multi_key,   "XK_Multi_key",         "multi key" },   /* Ctrl-R */
1245
1246     /* some special keys */
1247     { KSYM_BackSpace,   "XK_BackSpace",         "backspace" },
1248     { KSYM_Delete,      "XK_Delete",            "delete" },
1249     { KSYM_Insert,      "XK_Insert",            "insert" },
1250     { KSYM_Tab,         "XK_Tab",               "tab" },
1251     { KSYM_Home,        "XK_Home",              "home" },
1252     { KSYM_End,         "XK_End",               "end" },
1253     { KSYM_Page_Up,     "XK_Page_Up",           "page up" },
1254     { KSYM_Page_Down,   "XK_Page_Down",         "page down" },
1255     { KSYM_Menu,        "XK_Menu",              "menu" },        /* Win-Menu */
1256
1257     /* ASCII 0x20 to 0x40 keys (except numbers) */
1258     { KSYM_space,       "XK_space",             "space" },
1259     { KSYM_exclam,      "XK_exclam",            "!" },
1260     { KSYM_quotedbl,    "XK_quotedbl",          "\"" },
1261     { KSYM_numbersign,  "XK_numbersign",        "#" },
1262     { KSYM_dollar,      "XK_dollar",            "$" },
1263     { KSYM_percent,     "XK_percent",           "%" },
1264     { KSYM_ampersand,   "XK_ampersand",         "&" },
1265     { KSYM_apostrophe,  "XK_apostrophe",        "'" },
1266     { KSYM_parenleft,   "XK_parenleft",         "(" },
1267     { KSYM_parenright,  "XK_parenright",        ")" },
1268     { KSYM_asterisk,    "XK_asterisk",          "*" },
1269     { KSYM_plus,        "XK_plus",              "+" },
1270     { KSYM_comma,       "XK_comma",             "," },
1271     { KSYM_minus,       "XK_minus",             "-" },
1272     { KSYM_period,      "XK_period",            "." },
1273     { KSYM_slash,       "XK_slash",             "/" },
1274     { KSYM_colon,       "XK_colon",             ":" },
1275     { KSYM_semicolon,   "XK_semicolon",         ";" },
1276     { KSYM_less,        "XK_less",              "<" },
1277     { KSYM_equal,       "XK_equal",             "=" },
1278     { KSYM_greater,     "XK_greater",           ">" },
1279     { KSYM_question,    "XK_question",          "?" },
1280     { KSYM_at,          "XK_at",                "@" },
1281
1282     /* more ASCII keys */
1283     { KSYM_bracketleft, "XK_bracketleft",       "[" },
1284     { KSYM_backslash,   "XK_backslash",         "\\" },
1285     { KSYM_bracketright,"XK_bracketright",      "]" },
1286     { KSYM_asciicircum, "XK_asciicircum",       "^" },
1287     { KSYM_underscore,  "XK_underscore",        "_" },
1288     { KSYM_grave,       "XK_grave",             "grave" },
1289     { KSYM_quoteleft,   "XK_quoteleft",         "quote left" },
1290     { KSYM_braceleft,   "XK_braceleft",         "brace left" },
1291     { KSYM_bar,         "XK_bar",               "bar" },
1292     { KSYM_braceright,  "XK_braceright",        "brace right" },
1293     { KSYM_asciitilde,  "XK_asciitilde",        "~" },
1294
1295     /* special (non-ASCII) keys */
1296     { KSYM_Adiaeresis,  "XK_Adiaeresis",        "Ä" },
1297     { KSYM_Odiaeresis,  "XK_Odiaeresis",        "Ö" },
1298     { KSYM_Udiaeresis,  "XK_Udiaeresis",        "Ãœ" },
1299     { KSYM_adiaeresis,  "XK_adiaeresis",        "ä" },
1300     { KSYM_odiaeresis,  "XK_odiaeresis",        "ö" },
1301     { KSYM_udiaeresis,  "XK_udiaeresis",        "ü" },
1302     { KSYM_ssharp,      "XK_ssharp",            "sharp s" },
1303
1304     /* end-of-array identifier */
1305     { 0,                NULL,                   NULL }
1306   };
1307
1308   int i;
1309
1310   if (mode == TRANSLATE_KEYSYM_TO_KEYNAME)
1311   {
1312     static char name_buffer[30];
1313     Key key = *keysym;
1314
1315     if (key >= KSYM_A && key <= KSYM_Z)
1316       sprintf(name_buffer, "%c", 'A' + (char)(key - KSYM_A));
1317     else if (key >= KSYM_a && key <= KSYM_z)
1318       sprintf(name_buffer, "%c", 'a' + (char)(key - KSYM_a));
1319     else if (key >= KSYM_0 && key <= KSYM_9)
1320       sprintf(name_buffer, "%c", '0' + (char)(key - KSYM_0));
1321     else if (key >= KSYM_KP_0 && key <= KSYM_KP_9)
1322       sprintf(name_buffer, "keypad %c", '0' + (char)(key - KSYM_KP_0));
1323 #if 1
1324     else if (key >= KSYM_FKEY_FIRST && key <= KSYM_FKEY_LAST)
1325       sprintf(name_buffer, "F%d", (int)(key - KSYM_FKEY_FIRST + 1));
1326 #else
1327     else if (key >= KSYM_FKEY_FIRST && key <= KSYM_FKEY_LAST)
1328       sprintf(name_buffer, "function F%d", (int)(key - KSYM_FKEY_FIRST + 1));
1329 #endif
1330     else if (key == KSYM_UNDEFINED)
1331       strcpy(name_buffer, "(undefined)");
1332     else
1333     {
1334       i = 0;
1335
1336       do
1337       {
1338         if (key == translate_key[i].key)
1339         {
1340           strcpy(name_buffer, translate_key[i].name);
1341           break;
1342         }
1343       }
1344       while (translate_key[++i].name);
1345
1346       if (!translate_key[i].name)
1347         strcpy(name_buffer, "(unknown)");
1348     }
1349
1350     *name = name_buffer;
1351   }
1352   else if (mode == TRANSLATE_KEYSYM_TO_X11KEYNAME)
1353   {
1354     static char name_buffer[30];
1355     Key key = *keysym;
1356
1357     if (key >= KSYM_A && key <= KSYM_Z)
1358       sprintf(name_buffer, "XK_%c", 'A' + (char)(key - KSYM_A));
1359     else if (key >= KSYM_a && key <= KSYM_z)
1360       sprintf(name_buffer, "XK_%c", 'a' + (char)(key - KSYM_a));
1361     else if (key >= KSYM_0 && key <= KSYM_9)
1362       sprintf(name_buffer, "XK_%c", '0' + (char)(key - KSYM_0));
1363     else if (key >= KSYM_KP_0 && key <= KSYM_KP_9)
1364       sprintf(name_buffer, "XK_KP_%c", '0' + (char)(key - KSYM_KP_0));
1365     else if (key >= KSYM_FKEY_FIRST && key <= KSYM_FKEY_LAST)
1366       sprintf(name_buffer, "XK_F%d", (int)(key - KSYM_FKEY_FIRST + 1));
1367     else if (key == KSYM_UNDEFINED)
1368       strcpy(name_buffer, "[undefined]");
1369     else
1370     {
1371       i = 0;
1372
1373       do
1374       {
1375         if (key == translate_key[i].key)
1376         {
1377           strcpy(name_buffer, translate_key[i].x11name);
1378           break;
1379         }
1380       }
1381       while (translate_key[++i].x11name);
1382
1383       if (!translate_key[i].x11name)
1384         sprintf(name_buffer, "0x%04lx", (unsigned long)key);
1385     }
1386
1387     *x11name = name_buffer;
1388   }
1389   else if (mode == TRANSLATE_KEYNAME_TO_KEYSYM)
1390   {
1391     Key key = KSYM_UNDEFINED;
1392
1393     i = 0;
1394     do
1395     {
1396       if (strEqual(translate_key[i].name, *name))
1397       {
1398         key = translate_key[i].key;
1399         break;
1400       }
1401     }
1402     while (translate_key[++i].x11name);
1403
1404     if (key == KSYM_UNDEFINED)
1405       Error(ERR_WARN, "getKeyFromKeyName(): not completely implemented");
1406
1407     *keysym = key;
1408   }
1409   else if (mode == TRANSLATE_X11KEYNAME_TO_KEYSYM)
1410   {
1411     Key key = KSYM_UNDEFINED;
1412     char *name_ptr = *x11name;
1413
1414     if (strncmp(name_ptr, "XK_", 3) == 0 && strlen(name_ptr) == 4)
1415     {
1416       char c = name_ptr[3];
1417
1418       if (c >= 'A' && c <= 'Z')
1419         key = KSYM_A + (Key)(c - 'A');
1420       else if (c >= 'a' && c <= 'z')
1421         key = KSYM_a + (Key)(c - 'a');
1422       else if (c >= '0' && c <= '9')
1423         key = KSYM_0 + (Key)(c - '0');
1424     }
1425     else if (strncmp(name_ptr, "XK_KP_", 6) == 0 && strlen(name_ptr) == 7)
1426     {
1427       char c = name_ptr[6];
1428
1429       if (c >= '0' && c <= '9')
1430         key = KSYM_KP_0 + (Key)(c - '0');
1431     }
1432     else if (strncmp(name_ptr, "XK_F", 4) == 0 && strlen(name_ptr) <= 6)
1433     {
1434       char c1 = name_ptr[4];
1435       char c2 = name_ptr[5];
1436       int d = 0;
1437
1438       if ((c1 >= '0' && c1 <= '9') &&
1439           ((c2 >= '0' && c1 <= '9') || c2 == '\0'))
1440         d = atoi(&name_ptr[4]);
1441
1442       if (d >= 1 && d <= KSYM_NUM_FKEYS)
1443         key = KSYM_F1 + (Key)(d - 1);
1444     }
1445     else if (strncmp(name_ptr, "XK_", 3) == 0)
1446     {
1447       i = 0;
1448
1449       do
1450       {
1451         if (strEqual(name_ptr, translate_key[i].x11name))
1452         {
1453           key = translate_key[i].key;
1454           break;
1455         }
1456       }
1457       while (translate_key[++i].x11name);
1458     }
1459     else if (strncmp(name_ptr, "0x", 2) == 0)
1460     {
1461       unsigned long value = 0;
1462
1463       name_ptr += 2;
1464
1465       while (name_ptr)
1466       {
1467         char c = *name_ptr++;
1468         int d = -1;
1469
1470         if (c >= '0' && c <= '9')
1471           d = (int)(c - '0');
1472         else if (c >= 'a' && c <= 'f')
1473           d = (int)(c - 'a' + 10);
1474         else if (c >= 'A' && c <= 'F')
1475           d = (int)(c - 'A' + 10);
1476
1477         if (d == -1)
1478         {
1479           value = -1;
1480           break;
1481         }
1482
1483         value = value * 16 + d;
1484       }
1485
1486       if (value != -1)
1487         key = (Key)value;
1488     }
1489
1490     *keysym = key;
1491   }
1492 }
1493
1494 char *getKeyNameFromKey(Key key)
1495 {
1496   char *name;
1497
1498   translate_keyname(&key, NULL, &name, TRANSLATE_KEYSYM_TO_KEYNAME);
1499   return name;
1500 }
1501
1502 char *getX11KeyNameFromKey(Key key)
1503 {
1504   char *x11name;
1505
1506   translate_keyname(&key, &x11name, NULL, TRANSLATE_KEYSYM_TO_X11KEYNAME);
1507   return x11name;
1508 }
1509
1510 Key getKeyFromKeyName(char *name)
1511 {
1512   Key key;
1513
1514   translate_keyname(&key, NULL, &name, TRANSLATE_KEYNAME_TO_KEYSYM);
1515   return key;
1516 }
1517
1518 Key getKeyFromX11KeyName(char *x11name)
1519 {
1520   Key key;
1521
1522   translate_keyname(&key, &x11name, NULL, TRANSLATE_X11KEYNAME_TO_KEYSYM);
1523   return key;
1524 }
1525
1526 char getCharFromKey(Key key)
1527 {
1528   char *keyname = getKeyNameFromKey(key);
1529   char letter = 0;
1530
1531   if (strlen(keyname) == 1)
1532     letter = keyname[0];
1533   else if (strEqual(keyname, "space"))
1534     letter = ' ';
1535   else if (strEqual(keyname, "circumflex"))
1536     letter = '^';
1537
1538   return letter;
1539 }
1540
1541
1542 /* ------------------------------------------------------------------------- */
1543 /* functions to translate string identifiers to integer or boolean value     */
1544 /* ------------------------------------------------------------------------- */
1545
1546 int get_integer_from_string(char *s)
1547 {
1548   static char *number_text[][3] =
1549   {
1550     { "0",      "zero",         "null",         },
1551     { "1",      "one",          "first"         },
1552     { "2",      "two",          "second"        },
1553     { "3",      "three",        "third"         },
1554     { "4",      "four",         "fourth"        },
1555     { "5",      "five",         "fifth"         },
1556     { "6",      "six",          "sixth"         },
1557     { "7",      "seven",        "seventh"       },
1558     { "8",      "eight",        "eighth"        },
1559     { "9",      "nine",         "ninth"         },
1560     { "10",     "ten",          "tenth"         },
1561     { "11",     "eleven",       "eleventh"      },
1562     { "12",     "twelve",       "twelfth"       },
1563
1564     { NULL,     NULL,           NULL            },
1565   };
1566
1567   int i, j;
1568   char *s_lower = getStringToLower(s);
1569   int result = -1;
1570
1571   for (i = 0; number_text[i][0] != NULL; i++)
1572     for (j = 0; j < 3; j++)
1573       if (strEqual(s_lower, number_text[i][j]))
1574         result = i;
1575
1576   if (result == -1)
1577   {
1578     if (strEqual(s_lower, "false"))
1579       result = 0;
1580     else if (strEqual(s_lower, "true"))
1581       result = 1;
1582     else
1583       result = atoi(s);
1584   }
1585
1586   free(s_lower);
1587
1588   return result;
1589 }
1590
1591 boolean get_boolean_from_string(char *s)
1592 {
1593   char *s_lower = getStringToLower(s);
1594   boolean result = FALSE;
1595
1596   if (strEqual(s_lower, "true") ||
1597       strEqual(s_lower, "yes") ||
1598       strEqual(s_lower, "on") ||
1599       get_integer_from_string(s) == 1)
1600     result = TRUE;
1601
1602   free(s_lower);
1603
1604   return result;
1605 }
1606
1607
1608 /* ------------------------------------------------------------------------- */
1609 /* functions for generic lists                                               */
1610 /* ------------------------------------------------------------------------- */
1611
1612 ListNode *newListNode()
1613 {
1614   return checked_calloc(sizeof(ListNode));
1615 }
1616
1617 void addNodeToList(ListNode **node_first, char *key, void *content)
1618 {
1619   ListNode *node_new = newListNode();
1620
1621   node_new->key = getStringCopy(key);
1622   node_new->content = content;
1623   node_new->next = *node_first;
1624   *node_first = node_new;
1625 }
1626
1627 void deleteNodeFromList(ListNode **node_first, char *key,
1628                         void (*destructor_function)(void *))
1629 {
1630   if (node_first == NULL || *node_first == NULL)
1631     return;
1632
1633   if (strEqual((*node_first)->key, key))
1634   {
1635     free((*node_first)->key);
1636     if (destructor_function)
1637       destructor_function((*node_first)->content);
1638     *node_first = (*node_first)->next;
1639   }
1640   else
1641     deleteNodeFromList(&(*node_first)->next, key, destructor_function);
1642 }
1643
1644 ListNode *getNodeFromKey(ListNode *node_first, char *key)
1645 {
1646   if (node_first == NULL)
1647     return NULL;
1648
1649   if (strEqual(node_first->key, key))
1650     return node_first;
1651   else
1652     return getNodeFromKey(node_first->next, key);
1653 }
1654
1655 int getNumNodes(ListNode *node_first)
1656 {
1657   return (node_first ? 1 + getNumNodes(node_first->next) : 0);
1658 }
1659
1660 void dumpList(ListNode *node_first)
1661 {
1662   ListNode *node = node_first;
1663
1664   while (node)
1665   {
1666     printf("['%s' (%d)]\n", node->key,
1667            ((struct ListNodeInfo *)node->content)->num_references);
1668     node = node->next;
1669   }
1670
1671   printf("[%d nodes]\n", getNumNodes(node_first));
1672 }
1673
1674
1675 /* ------------------------------------------------------------------------- */
1676 /* functions for checking files and filenames                                */
1677 /* ------------------------------------------------------------------------- */
1678
1679 boolean fileExists(char *filename)
1680 {
1681   if (filename == NULL)
1682     return FALSE;
1683
1684   return (access(filename, F_OK) == 0);
1685 }
1686
1687 boolean fileHasPrefix(char *basename, char *prefix)
1688 {
1689   static char *basename_lower = NULL;
1690   int basename_length, prefix_length;
1691
1692   checked_free(basename_lower);
1693
1694   if (basename == NULL || prefix == NULL)
1695     return FALSE;
1696
1697   basename_lower = getStringToLower(basename);
1698   basename_length = strlen(basename_lower);
1699   prefix_length = strlen(prefix);
1700
1701   if (basename_length > prefix_length + 1 &&
1702       basename_lower[prefix_length] == '.' &&
1703       strncmp(basename_lower, prefix, prefix_length) == 0)
1704     return TRUE;
1705
1706   return FALSE;
1707 }
1708
1709 boolean fileHasSuffix(char *basename, char *suffix)
1710 {
1711   static char *basename_lower = NULL;
1712   int basename_length, suffix_length;
1713
1714   checked_free(basename_lower);
1715
1716   if (basename == NULL || suffix == NULL)
1717     return FALSE;
1718
1719   basename_lower = getStringToLower(basename);
1720   basename_length = strlen(basename_lower);
1721   suffix_length = strlen(suffix);
1722
1723   if (basename_length > suffix_length + 1 &&
1724       basename_lower[basename_length - suffix_length - 1] == '.' &&
1725       strEqual(&basename_lower[basename_length - suffix_length], suffix))
1726     return TRUE;
1727
1728   return FALSE;
1729 }
1730
1731 boolean FileIsGraphic(char *filename)
1732 {
1733   char *basename = getBaseNamePtr(filename);
1734
1735   return fileHasSuffix(basename, "pcx");
1736 }
1737
1738 boolean FileIsSound(char *filename)
1739 {
1740   char *basename = getBaseNamePtr(filename);
1741
1742   return fileHasSuffix(basename, "wav");
1743 }
1744
1745 boolean FileIsMusic(char *filename)
1746 {
1747   char *basename = getBaseNamePtr(filename);
1748
1749   if (FileIsSound(basename))
1750     return TRUE;
1751
1752 #if defined(TARGET_SDL)
1753   if (fileHasPrefix(basename, "mod") ||
1754       fileHasSuffix(basename, "mod") ||
1755       fileHasSuffix(basename, "s3m") ||
1756       fileHasSuffix(basename, "it") ||
1757       fileHasSuffix(basename, "xm") ||
1758       fileHasSuffix(basename, "midi") ||
1759       fileHasSuffix(basename, "mid") ||
1760       fileHasSuffix(basename, "mp3") ||
1761       fileHasSuffix(basename, "ogg"))
1762     return TRUE;
1763 #endif
1764
1765   return FALSE;
1766 }
1767
1768 boolean FileIsArtworkType(char *basename, int type)
1769 {
1770   if ((type == TREE_TYPE_GRAPHICS_DIR && FileIsGraphic(basename)) ||
1771       (type == TREE_TYPE_SOUNDS_DIR && FileIsSound(basename)) ||
1772       (type == TREE_TYPE_MUSIC_DIR && FileIsMusic(basename)))
1773     return TRUE;
1774
1775   return FALSE;
1776 }
1777
1778 /* ------------------------------------------------------------------------- */
1779 /* functions for loading artwork configuration information                   */
1780 /* ------------------------------------------------------------------------- */
1781
1782 char *get_mapped_token(char *token)
1783 {
1784   /* !!! make this dynamically configurable (init.c:InitArtworkConfig) !!! */
1785   static char *map_token_prefix[][2] =
1786   {
1787     { "char_procent",           "char_percent"  },
1788     { NULL,                                     }
1789   };
1790   int i;
1791
1792   for (i = 0; map_token_prefix[i][0] != NULL; i++)
1793   {
1794     int len_token_prefix = strlen(map_token_prefix[i][0]);
1795
1796     if (strncmp(token, map_token_prefix[i][0], len_token_prefix) == 0)
1797       return getStringCat2(map_token_prefix[i][1], &token[len_token_prefix]);
1798   }
1799
1800   return NULL;
1801 }
1802
1803 /* This function checks if a string <s> of the format "string1, string2, ..."
1804    exactly contains a string <s_contained>. */
1805
1806 static boolean string_has_parameter(char *s, char *s_contained)
1807 {
1808   char *substring;
1809
1810   if (s == NULL || s_contained == NULL)
1811     return FALSE;
1812
1813   if (strlen(s_contained) > strlen(s))
1814     return FALSE;
1815
1816   if (strncmp(s, s_contained, strlen(s_contained)) == 0)
1817   {
1818     char next_char = s[strlen(s_contained)];
1819
1820     /* check if next character is delimiter or whitespace */
1821     return (next_char == ',' || next_char == '\0' ||
1822             next_char == ' ' || next_char == '\t' ? TRUE : FALSE);
1823   }
1824
1825   /* check if string contains another parameter string after a comma */
1826   substring = strchr(s, ',');
1827   if (substring == NULL)        /* string does not contain a comma */
1828     return FALSE;
1829
1830   /* advance string pointer to next character after the comma */
1831   substring++;
1832
1833   /* skip potential whitespaces after the comma */
1834   while (*substring == ' ' || *substring == '\t')
1835     substring++;
1836
1837   return string_has_parameter(substring, s_contained);
1838 }
1839
1840 int get_parameter_value(char *value_raw, char *suffix, int type)
1841 {
1842   char *value = getStringToLower(value_raw);
1843   int result = 0;       /* probably a save default value */
1844
1845   if (strEqual(suffix, ".direction"))
1846   {
1847     result = (strEqual(value, "left")  ? MV_LEFT :
1848               strEqual(value, "right") ? MV_RIGHT :
1849               strEqual(value, "up")    ? MV_UP :
1850               strEqual(value, "down")  ? MV_DOWN : MV_NONE);
1851   }
1852   else if (strEqual(suffix, ".anim_mode"))
1853   {
1854     result = (string_has_parameter(value, "none")       ? ANIM_NONE :
1855               string_has_parameter(value, "loop")       ? ANIM_LOOP :
1856               string_has_parameter(value, "linear")     ? ANIM_LINEAR :
1857               string_has_parameter(value, "pingpong")   ? ANIM_PINGPONG :
1858               string_has_parameter(value, "pingpong2")  ? ANIM_PINGPONG2 :
1859               string_has_parameter(value, "random")     ? ANIM_RANDOM :
1860               string_has_parameter(value, "ce_value")   ? ANIM_CE_VALUE :
1861               string_has_parameter(value, "ce_score")   ? ANIM_CE_SCORE :
1862               string_has_parameter(value, "ce_delay")   ? ANIM_CE_DELAY :
1863               string_has_parameter(value, "horizontal") ? ANIM_HORIZONTAL :
1864               string_has_parameter(value, "vertical")   ? ANIM_VERTICAL :
1865               ANIM_DEFAULT);
1866
1867     if (string_has_parameter(value, "reverse"))
1868       result |= ANIM_REVERSE;
1869
1870     if (string_has_parameter(value, "opaque_player"))
1871       result |= ANIM_OPAQUE_PLAYER;
1872
1873     if (string_has_parameter(value, "static_panel"))
1874       result |= ANIM_STATIC_PANEL;
1875   }
1876   else          /* generic parameter of type integer or boolean */
1877   {
1878     result = (strEqual(value, ARG_UNDEFINED) ? ARG_UNDEFINED_VALUE :
1879               type == TYPE_INTEGER ? get_integer_from_string(value) :
1880               type == TYPE_BOOLEAN ? get_boolean_from_string(value) :
1881               ARG_UNDEFINED_VALUE);
1882   }
1883
1884   free(value);
1885
1886   return result;
1887 }
1888
1889 int get_auto_parameter_value(char *token, char *value_raw)
1890 {
1891   char *suffix;
1892
1893   if (token == NULL || value_raw == NULL)
1894     return ARG_UNDEFINED_VALUE;
1895
1896   suffix = strrchr(token, '.');
1897   if (suffix == NULL)
1898     suffix = token;
1899
1900   return get_parameter_value(value_raw, suffix, TYPE_INTEGER);
1901 }
1902
1903 struct ScreenModeInfo *get_screen_mode_from_string(char *screen_mode_string)
1904 {
1905   static struct ScreenModeInfo screen_mode;
1906   char *screen_mode_string_x = strchr(screen_mode_string, 'x');
1907   char *screen_mode_string_copy;
1908   char *screen_mode_string_pos_w;
1909   char *screen_mode_string_pos_h;
1910
1911   if (screen_mode_string_x == NULL)     /* invalid screen mode format */
1912     return NULL;
1913
1914   screen_mode_string_copy = getStringCopy(screen_mode_string);
1915
1916   screen_mode_string_pos_w = screen_mode_string_copy;
1917   screen_mode_string_pos_h = strchr(screen_mode_string_copy, 'x');
1918   *screen_mode_string_pos_h++ = '\0';
1919
1920   screen_mode.width  = atoi(screen_mode_string_pos_w);
1921   screen_mode.height = atoi(screen_mode_string_pos_h);
1922
1923   return &screen_mode;
1924 }
1925
1926 void get_aspect_ratio_from_screen_mode(struct ScreenModeInfo *screen_mode,
1927                                        int *x, int *y)
1928 {
1929   float aspect_ratio = (float)screen_mode->width / (float)screen_mode->height;
1930   float aspect_ratio_new;
1931   int i = 1;
1932
1933   do
1934   {
1935     *x = i * aspect_ratio + 0.000001;
1936     *y = i;
1937
1938     aspect_ratio_new = (float)*x / (float)*y;
1939
1940     i++;
1941   }
1942   while (aspect_ratio_new != aspect_ratio && *y < screen_mode->height);
1943 }
1944
1945 static void FreeCustomArtworkList(struct ArtworkListInfo *,
1946                                   struct ListNodeInfo ***, int *);
1947
1948 struct FileInfo *getFileListFromConfigList(struct ConfigInfo *config_list,
1949                                            struct ConfigTypeInfo *suffix_list,
1950                                            char **ignore_tokens,
1951                                            int num_file_list_entries)
1952 {
1953   struct FileInfo *file_list;
1954   int num_file_list_entries_found = 0;
1955   int num_suffix_list_entries = 0;
1956   int list_pos;
1957   int i, j;
1958
1959   file_list = checked_calloc(num_file_list_entries * sizeof(struct FileInfo));
1960
1961   for (i = 0; suffix_list[i].token != NULL; i++)
1962     num_suffix_list_entries++;
1963
1964   /* always start with reliable default values */
1965   for (i = 0; i < num_file_list_entries; i++)
1966   {
1967     file_list[i].token = NULL;
1968
1969     file_list[i].default_filename = NULL;
1970     file_list[i].filename = NULL;
1971
1972     if (num_suffix_list_entries > 0)
1973     {
1974       int parameter_array_size = num_suffix_list_entries * sizeof(char *);
1975
1976       file_list[i].default_parameter = checked_calloc(parameter_array_size);
1977       file_list[i].parameter = checked_calloc(parameter_array_size);
1978
1979       for (j = 0; j < num_suffix_list_entries; j++)
1980       {
1981         setString(&file_list[i].default_parameter[j], suffix_list[j].value);
1982         setString(&file_list[i].parameter[j], suffix_list[j].value);
1983       }
1984
1985       file_list[i].redefined = FALSE;
1986       file_list[i].fallback_to_default = FALSE;
1987     }
1988   }
1989
1990   list_pos = 0;
1991   for (i = 0; config_list[i].token != NULL; i++)
1992   {
1993     int len_config_token = strlen(config_list[i].token);
1994     int len_config_value = strlen(config_list[i].value);
1995     boolean is_file_entry = TRUE;
1996
1997     for (j = 0; suffix_list[j].token != NULL; j++)
1998     {
1999       int len_suffix = strlen(suffix_list[j].token);
2000
2001       if (len_suffix < len_config_token &&
2002           strEqual(&config_list[i].token[len_config_token - len_suffix],
2003                    suffix_list[j].token))
2004       {
2005         setString(&file_list[list_pos].default_parameter[j],
2006                   config_list[i].value);
2007
2008         is_file_entry = FALSE;
2009         break;
2010       }
2011     }
2012
2013     /* the following tokens are no file definitions, but other config tokens */
2014     for (j = 0; ignore_tokens[j] != NULL; j++)
2015       if (strEqual(config_list[i].token, ignore_tokens[j]))
2016         is_file_entry = FALSE;
2017
2018     if (is_file_entry)
2019     {
2020       if (i > 0)
2021         list_pos++;
2022
2023       if (list_pos >= num_file_list_entries)
2024         break;
2025
2026       /* simple sanity check if this is really a file definition */
2027       if (!strEqual(&config_list[i].value[len_config_value - 4], ".pcx") &&
2028           !strEqual(&config_list[i].value[len_config_value - 4], ".wav") &&
2029           !strEqual(config_list[i].value, UNDEFINED_FILENAME))
2030       {
2031         Error(ERR_RETURN, "Configuration directive '%s' -> '%s':",
2032               config_list[i].token, config_list[i].value);
2033         Error(ERR_EXIT, "This seems to be no valid definition -- please fix");
2034       }
2035
2036       file_list[list_pos].token = config_list[i].token;
2037       file_list[list_pos].default_filename = config_list[i].value;
2038     }
2039   }
2040
2041   num_file_list_entries_found = list_pos + 1;
2042   if (num_file_list_entries_found != num_file_list_entries)
2043   {
2044     Error(ERR_RETURN_LINE, "-");
2045     Error(ERR_RETURN, "inconsistant config list information:");
2046     Error(ERR_RETURN, "- should be:   %d (according to 'src/conf_gfx.h')",
2047           num_file_list_entries);
2048     Error(ERR_RETURN, "- found to be: %d (according to 'src/conf_gfx.c')",
2049           num_file_list_entries_found);
2050     Error(ERR_EXIT,   "please fix");
2051   }
2052
2053   return file_list;
2054 }
2055
2056 static boolean token_suffix_match(char *token, char *suffix, int start_pos)
2057 {
2058   int len_token = strlen(token);
2059   int len_suffix = strlen(suffix);
2060
2061   if (start_pos < 0)    /* compare suffix from end of string */
2062     start_pos += len_token;
2063
2064   if (start_pos < 0 || start_pos + len_suffix > len_token)
2065     return FALSE;
2066
2067   if (strncmp(&token[start_pos], suffix, len_suffix) != 0)
2068     return FALSE;
2069
2070   if (token[start_pos + len_suffix] == '\0')
2071     return TRUE;
2072
2073   if (token[start_pos + len_suffix] == '.')
2074     return TRUE;
2075
2076   return FALSE;
2077 }
2078
2079 #define KNOWN_TOKEN_VALUE       "[KNOWN_TOKEN_VALUE]"
2080
2081 static void read_token_parameters(SetupFileHash *setup_file_hash,
2082                                   struct ConfigTypeInfo *suffix_list,
2083                                   struct FileInfo *file_list_entry)
2084 {
2085   /* check for config token that is the base token without any suffixes */
2086   char *filename = getHashEntry(setup_file_hash, file_list_entry->token);
2087   char *known_token_value = KNOWN_TOKEN_VALUE;
2088   int i;
2089
2090   if (filename != NULL)
2091   {
2092     setString(&file_list_entry->filename, filename);
2093
2094     /* when file definition found, set all parameters to default values */
2095     for (i = 0; suffix_list[i].token != NULL; i++)
2096       setString(&file_list_entry->parameter[i], suffix_list[i].value);
2097
2098     file_list_entry->redefined = TRUE;
2099
2100     /* mark config file token as well known from default config */
2101     setHashEntry(setup_file_hash, file_list_entry->token, known_token_value);
2102   }
2103
2104   /* check for config tokens that can be build by base token and suffixes */
2105   for (i = 0; suffix_list[i].token != NULL; i++)
2106   {
2107     char *token = getStringCat2(file_list_entry->token, suffix_list[i].token);
2108     char *value = getHashEntry(setup_file_hash, token);
2109
2110     if (value != NULL)
2111     {
2112       setString(&file_list_entry->parameter[i], value);
2113
2114       /* mark config file token as well known from default config */
2115       setHashEntry(setup_file_hash, token, known_token_value);
2116     }
2117
2118     free(token);
2119   }
2120 }
2121
2122 static void add_dynamic_file_list_entry(struct FileInfo **list,
2123                                         int *num_list_entries,
2124                                         SetupFileHash *extra_file_hash,
2125                                         struct ConfigTypeInfo *suffix_list,
2126                                         int num_suffix_list_entries,
2127                                         char *token)
2128 {
2129   struct FileInfo *new_list_entry;
2130   int parameter_array_size = num_suffix_list_entries * sizeof(char *);
2131
2132   (*num_list_entries)++;
2133   *list = checked_realloc(*list, *num_list_entries * sizeof(struct FileInfo));
2134   new_list_entry = &(*list)[*num_list_entries - 1];
2135
2136   new_list_entry->token = getStringCopy(token);
2137   new_list_entry->default_filename = NULL;
2138   new_list_entry->filename = NULL;
2139   new_list_entry->parameter = checked_calloc(parameter_array_size);
2140
2141   new_list_entry->redefined = FALSE;
2142   new_list_entry->fallback_to_default = FALSE;
2143
2144   read_token_parameters(extra_file_hash, suffix_list, new_list_entry);
2145 }
2146
2147 static void add_property_mapping(struct PropertyMapping **list,
2148                                  int *num_list_entries,
2149                                  int base_index, int ext1_index,
2150                                  int ext2_index, int ext3_index,
2151                                  int artwork_index)
2152 {
2153   struct PropertyMapping *new_list_entry;
2154
2155   (*num_list_entries)++;
2156   *list = checked_realloc(*list,
2157                           *num_list_entries * sizeof(struct PropertyMapping));
2158   new_list_entry = &(*list)[*num_list_entries - 1];
2159
2160   new_list_entry->base_index = base_index;
2161   new_list_entry->ext1_index = ext1_index;
2162   new_list_entry->ext2_index = ext2_index;
2163   new_list_entry->ext3_index = ext3_index;
2164
2165   new_list_entry->artwork_index = artwork_index;
2166 }
2167
2168 static void LoadArtworkConfigFromFilename(struct ArtworkListInfo *artwork_info,
2169                                           char *filename)
2170 {
2171   struct FileInfo *file_list = artwork_info->file_list;
2172   struct ConfigTypeInfo *suffix_list = artwork_info->suffix_list;
2173   char **base_prefixes = artwork_info->base_prefixes;
2174   char **ext1_suffixes = artwork_info->ext1_suffixes;
2175   char **ext2_suffixes = artwork_info->ext2_suffixes;
2176   char **ext3_suffixes = artwork_info->ext3_suffixes;
2177   char **ignore_tokens = artwork_info->ignore_tokens;
2178   int num_file_list_entries = artwork_info->num_file_list_entries;
2179   int num_suffix_list_entries = artwork_info->num_suffix_list_entries;
2180   int num_base_prefixes = artwork_info->num_base_prefixes;
2181   int num_ext1_suffixes = artwork_info->num_ext1_suffixes;
2182   int num_ext2_suffixes = artwork_info->num_ext2_suffixes;
2183   int num_ext3_suffixes = artwork_info->num_ext3_suffixes;
2184   int num_ignore_tokens = artwork_info->num_ignore_tokens;
2185   SetupFileHash *setup_file_hash, *valid_file_hash;
2186   SetupFileHash *extra_file_hash, *empty_file_hash;
2187   char *known_token_value = KNOWN_TOKEN_VALUE;
2188   int i, j, k, l;
2189
2190   if (filename == NULL)
2191     return;
2192
2193 #if 0
2194   printf("LoadArtworkConfigFromFilename '%s' ...\n", filename);
2195 #endif
2196
2197   if ((setup_file_hash = loadSetupFileHash(filename)) == NULL)
2198     return;
2199
2200   /* separate valid (defined) from empty (undefined) config token values */
2201   valid_file_hash = newSetupFileHash();
2202   empty_file_hash = newSetupFileHash();
2203   BEGIN_HASH_ITERATION(setup_file_hash, itr)
2204   {
2205     char *value = HASH_ITERATION_VALUE(itr);
2206
2207     setHashEntry(*value ? valid_file_hash : empty_file_hash,
2208                  HASH_ITERATION_TOKEN(itr), value);
2209   }
2210   END_HASH_ITERATION(setup_file_hash, itr)
2211
2212   /* at this point, we do not need the setup file hash anymore -- free it */
2213   freeSetupFileHash(setup_file_hash);
2214
2215   /* map deprecated to current tokens (using prefix match and replace) */
2216   BEGIN_HASH_ITERATION(valid_file_hash, itr)
2217   {
2218     char *token = HASH_ITERATION_TOKEN(itr);
2219     char *mapped_token = get_mapped_token(token);
2220
2221     if (mapped_token != NULL)
2222     {
2223       char *value = HASH_ITERATION_VALUE(itr);
2224
2225       /* add mapped token */
2226       setHashEntry(valid_file_hash, mapped_token, value);
2227
2228       /* ignore old token (by setting it to "known" keyword) */
2229       setHashEntry(valid_file_hash, token, known_token_value);
2230
2231       free(mapped_token);
2232     }
2233   }
2234   END_HASH_ITERATION(valid_file_hash, itr)
2235
2236   /* read parameters for all known config file tokens */
2237   for (i = 0; i < num_file_list_entries; i++)
2238     read_token_parameters(valid_file_hash, suffix_list, &file_list[i]);
2239
2240   /* set all tokens that can be ignored here to "known" keyword */
2241   for (i = 0; i < num_ignore_tokens; i++)
2242     setHashEntry(valid_file_hash, ignore_tokens[i], known_token_value);
2243
2244   /* copy all unknown config file tokens to extra config hash */
2245   extra_file_hash = newSetupFileHash();
2246   BEGIN_HASH_ITERATION(valid_file_hash, itr)
2247   {
2248     char *value = HASH_ITERATION_VALUE(itr);
2249
2250     if (!strEqual(value, known_token_value))
2251       setHashEntry(extra_file_hash, HASH_ITERATION_TOKEN(itr), value);
2252   }
2253   END_HASH_ITERATION(valid_file_hash, itr)
2254
2255   /* at this point, we do not need the valid file hash anymore -- free it */
2256   freeSetupFileHash(valid_file_hash);
2257
2258   /* now try to determine valid, dynamically defined config tokens */
2259
2260   BEGIN_HASH_ITERATION(extra_file_hash, itr)
2261   {
2262     struct FileInfo **dynamic_file_list =
2263       &artwork_info->dynamic_file_list;
2264     int *num_dynamic_file_list_entries =
2265       &artwork_info->num_dynamic_file_list_entries;
2266     struct PropertyMapping **property_mapping =
2267       &artwork_info->property_mapping;
2268     int *num_property_mapping_entries =
2269       &artwork_info->num_property_mapping_entries;
2270     int current_summarized_file_list_entry =
2271       artwork_info->num_file_list_entries +
2272       artwork_info->num_dynamic_file_list_entries;
2273     char *token = HASH_ITERATION_TOKEN(itr);
2274     int len_token = strlen(token);
2275     int start_pos;
2276     boolean base_prefix_found = FALSE;
2277     boolean parameter_suffix_found = FALSE;
2278
2279 #if 0
2280     printf("::: examining '%s' -> '%s'\n", token, HASH_ITERATION_VALUE(itr));
2281 #endif
2282
2283     /* skip all parameter definitions (handled by read_token_parameters()) */
2284     for (i = 0; i < num_suffix_list_entries && !parameter_suffix_found; i++)
2285     {
2286       int len_suffix = strlen(suffix_list[i].token);
2287
2288       if (token_suffix_match(token, suffix_list[i].token, -len_suffix))
2289         parameter_suffix_found = TRUE;
2290     }
2291
2292     if (parameter_suffix_found)
2293       continue;
2294
2295     /* ---------- step 0: search for matching base prefix ---------- */
2296
2297     start_pos = 0;
2298     for (i = 0; i < num_base_prefixes && !base_prefix_found; i++)
2299     {
2300       char *base_prefix = base_prefixes[i];
2301       int len_base_prefix = strlen(base_prefix);
2302       boolean ext1_suffix_found = FALSE;
2303       boolean ext2_suffix_found = FALSE;
2304       boolean ext3_suffix_found = FALSE;
2305       boolean exact_match = FALSE;
2306       int base_index = -1;
2307       int ext1_index = -1;
2308       int ext2_index = -1;
2309       int ext3_index = -1;
2310
2311       base_prefix_found = token_suffix_match(token, base_prefix, start_pos);
2312
2313       if (!base_prefix_found)
2314         continue;
2315
2316       base_index = i;
2317
2318       if (start_pos + len_base_prefix == len_token)     /* exact match */
2319       {
2320         exact_match = TRUE;
2321
2322         add_dynamic_file_list_entry(dynamic_file_list,
2323                                     num_dynamic_file_list_entries,
2324                                     extra_file_hash,
2325                                     suffix_list,
2326                                     num_suffix_list_entries,
2327                                     token);
2328         add_property_mapping(property_mapping,
2329                              num_property_mapping_entries,
2330                              base_index, -1, -1, -1,
2331                              current_summarized_file_list_entry);
2332         continue;
2333       }
2334
2335 #if 0
2336       if (IS_PARENT_PROCESS())
2337         printf("---> examining token '%s': search 1st suffix ...\n", token);
2338 #endif
2339
2340       /* ---------- step 1: search for matching first suffix ---------- */
2341
2342       start_pos += len_base_prefix;
2343       for (j = 0; j < num_ext1_suffixes && !ext1_suffix_found; j++)
2344       {
2345         char *ext1_suffix = ext1_suffixes[j];
2346         int len_ext1_suffix = strlen(ext1_suffix);
2347
2348         ext1_suffix_found = token_suffix_match(token, ext1_suffix, start_pos);
2349
2350         if (!ext1_suffix_found)
2351           continue;
2352
2353         ext1_index = j;
2354
2355         if (start_pos + len_ext1_suffix == len_token)   /* exact match */
2356         {
2357           exact_match = TRUE;
2358
2359           add_dynamic_file_list_entry(dynamic_file_list,
2360                                       num_dynamic_file_list_entries,
2361                                       extra_file_hash,
2362                                       suffix_list,
2363                                       num_suffix_list_entries,
2364                                       token);
2365           add_property_mapping(property_mapping,
2366                                num_property_mapping_entries,
2367                                base_index, ext1_index, -1, -1,
2368                                current_summarized_file_list_entry);
2369           continue;
2370         }
2371
2372         start_pos += len_ext1_suffix;
2373       }
2374
2375       if (exact_match)
2376         break;
2377
2378 #if 0
2379       if (IS_PARENT_PROCESS())
2380         printf("---> examining token '%s': search 2nd suffix ...\n", token);
2381 #endif
2382
2383       /* ---------- step 2: search for matching second suffix ---------- */
2384
2385       for (k = 0; k < num_ext2_suffixes && !ext2_suffix_found; k++)
2386       {
2387         char *ext2_suffix = ext2_suffixes[k];
2388         int len_ext2_suffix = strlen(ext2_suffix);
2389
2390         ext2_suffix_found = token_suffix_match(token, ext2_suffix, start_pos);
2391
2392         if (!ext2_suffix_found)
2393           continue;
2394
2395         ext2_index = k;
2396
2397         if (start_pos + len_ext2_suffix == len_token)   /* exact match */
2398         {
2399           exact_match = TRUE;
2400
2401           add_dynamic_file_list_entry(dynamic_file_list,
2402                                       num_dynamic_file_list_entries,
2403                                       extra_file_hash,
2404                                       suffix_list,
2405                                       num_suffix_list_entries,
2406                                       token);
2407           add_property_mapping(property_mapping,
2408                                num_property_mapping_entries,
2409                                base_index, ext1_index, ext2_index, -1,
2410                                current_summarized_file_list_entry);
2411           continue;
2412         }
2413
2414         start_pos += len_ext2_suffix;
2415       }
2416
2417       if (exact_match)
2418         break;
2419
2420 #if 0
2421       if (IS_PARENT_PROCESS())
2422         printf("---> examining token '%s': search 3rd suffix ...\n",token);
2423 #endif
2424
2425       /* ---------- step 3: search for matching third suffix ---------- */
2426
2427       for (l = 0; l < num_ext3_suffixes && !ext3_suffix_found; l++)
2428       {
2429         char *ext3_suffix = ext3_suffixes[l];
2430         int len_ext3_suffix = strlen(ext3_suffix);
2431
2432         ext3_suffix_found = token_suffix_match(token, ext3_suffix, start_pos);
2433
2434         if (!ext3_suffix_found)
2435           continue;
2436
2437         ext3_index = l;
2438
2439         if (start_pos + len_ext3_suffix == len_token) /* exact match */
2440         {
2441           exact_match = TRUE;
2442
2443           add_dynamic_file_list_entry(dynamic_file_list,
2444                                       num_dynamic_file_list_entries,
2445                                       extra_file_hash,
2446                                       suffix_list,
2447                                       num_suffix_list_entries,
2448                                       token);
2449           add_property_mapping(property_mapping,
2450                                num_property_mapping_entries,
2451                                base_index, ext1_index, ext2_index, ext3_index,
2452                                current_summarized_file_list_entry);
2453           continue;
2454         }
2455       }
2456     }
2457   }
2458   END_HASH_ITERATION(extra_file_hash, itr)
2459
2460   if (artwork_info->num_dynamic_file_list_entries > 0)
2461   {
2462     artwork_info->dynamic_artwork_list =
2463       checked_calloc(artwork_info->num_dynamic_file_list_entries *
2464                      artwork_info->sizeof_artwork_list_entry);
2465   }
2466
2467   if (options.verbose && IS_PARENT_PROCESS())
2468   {
2469     SetupFileList *setup_file_list, *list;
2470     boolean dynamic_tokens_found = FALSE;
2471     boolean unknown_tokens_found = FALSE;
2472     boolean undefined_values_found = (hashtable_count(empty_file_hash) != 0);
2473
2474     if ((setup_file_list = loadSetupFileList(filename)) == NULL)
2475       Error(ERR_EXIT, "loadSetupFileHash works, but loadSetupFileList fails");
2476
2477     BEGIN_HASH_ITERATION(extra_file_hash, itr)
2478     {
2479       if (strEqual(HASH_ITERATION_VALUE(itr), known_token_value))
2480         dynamic_tokens_found = TRUE;
2481       else
2482         unknown_tokens_found = TRUE;
2483     }
2484     END_HASH_ITERATION(extra_file_hash, itr)
2485
2486     if (options.debug && dynamic_tokens_found)
2487     {
2488       Error(ERR_RETURN_LINE, "-");
2489       Error(ERR_RETURN, "dynamic token(s) found in config file:");
2490       Error(ERR_RETURN, "- config file: '%s'", filename);
2491
2492       for (list = setup_file_list; list != NULL; list = list->next)
2493       {
2494         char *value = getHashEntry(extra_file_hash, list->token);
2495
2496         if (value != NULL && strEqual(value, known_token_value))
2497           Error(ERR_RETURN, "- dynamic token: '%s'", list->token);
2498       }
2499
2500       Error(ERR_RETURN_LINE, "-");
2501     }
2502
2503     if (unknown_tokens_found)
2504     {
2505       Error(ERR_RETURN_LINE, "-");
2506       Error(ERR_RETURN, "warning: unknown token(s) found in config file:");
2507       Error(ERR_RETURN, "- config file: '%s'", filename);
2508
2509       for (list = setup_file_list; list != NULL; list = list->next)
2510       {
2511         char *value = getHashEntry(extra_file_hash, list->token);
2512
2513         if (value != NULL && !strEqual(value, known_token_value))
2514           Error(ERR_RETURN, "- dynamic token: '%s'", list->token);
2515       }
2516
2517       Error(ERR_RETURN_LINE, "-");
2518     }
2519
2520     if (undefined_values_found)
2521     {
2522       Error(ERR_RETURN_LINE, "-");
2523       Error(ERR_RETURN, "warning: undefined values found in config file:");
2524       Error(ERR_RETURN, "- config file: '%s'", filename);
2525
2526       for (list = setup_file_list; list != NULL; list = list->next)
2527       {
2528         char *value = getHashEntry(empty_file_hash, list->token);
2529
2530         if (value != NULL)
2531           Error(ERR_RETURN, "- undefined value for token: '%s'", list->token);
2532       }
2533
2534       Error(ERR_RETURN_LINE, "-");
2535     }
2536
2537     freeSetupFileList(setup_file_list);
2538   }
2539
2540   freeSetupFileHash(extra_file_hash);
2541   freeSetupFileHash(empty_file_hash);
2542
2543 #if 0
2544   for (i = 0; i < num_file_list_entries; i++)
2545   {
2546     printf("'%s' ", file_list[i].token);
2547     if (file_list[i].filename)
2548       printf("-> '%s'\n", file_list[i].filename);
2549     else
2550       printf("-> UNDEFINED [-> '%s']\n", file_list[i].default_filename);
2551   }
2552 #endif
2553 }
2554
2555 void LoadArtworkConfig(struct ArtworkListInfo *artwork_info)
2556 {
2557   struct FileInfo *file_list = artwork_info->file_list;
2558   int num_file_list_entries = artwork_info->num_file_list_entries;
2559   int num_suffix_list_entries = artwork_info->num_suffix_list_entries;
2560   char *filename_base = UNDEFINED_FILENAME, *filename_local;
2561   int i, j;
2562
2563   DrawInitText("Loading artwork config:", 120, FC_GREEN);
2564   DrawInitText(ARTWORKINFO_FILENAME(artwork_info->type), 150, FC_YELLOW);
2565
2566   /* always start with reliable default values */
2567   for (i = 0; i < num_file_list_entries; i++)
2568   {
2569     setString(&file_list[i].filename, file_list[i].default_filename);
2570
2571     for (j = 0; j < num_suffix_list_entries; j++)
2572       setString(&file_list[i].parameter[j], file_list[i].default_parameter[j]);
2573
2574     file_list[i].redefined = FALSE;
2575     file_list[i].fallback_to_default = FALSE;
2576   }
2577
2578   /* free previous dynamic artwork file array */
2579   if (artwork_info->dynamic_file_list != NULL)
2580   {
2581     for (i = 0; i < artwork_info->num_dynamic_file_list_entries; i++)
2582     {
2583       free(artwork_info->dynamic_file_list[i].token);
2584       free(artwork_info->dynamic_file_list[i].filename);
2585       free(artwork_info->dynamic_file_list[i].parameter);
2586     }
2587
2588     free(artwork_info->dynamic_file_list);
2589     artwork_info->dynamic_file_list = NULL;
2590
2591     FreeCustomArtworkList(artwork_info, &artwork_info->dynamic_artwork_list,
2592                           &artwork_info->num_dynamic_file_list_entries);
2593   }
2594
2595   /* free previous property mapping */
2596   if (artwork_info->property_mapping != NULL)
2597   {
2598     free(artwork_info->property_mapping);
2599
2600     artwork_info->property_mapping = NULL;
2601     artwork_info->num_property_mapping_entries = 0;
2602   }
2603
2604   if (!SETUP_OVERRIDE_ARTWORK(setup, artwork_info->type))
2605   {
2606     /* first look for special artwork configured in level series config */
2607     filename_base = getCustomArtworkLevelConfigFilename(artwork_info->type);
2608
2609     if (fileExists(filename_base))
2610       LoadArtworkConfigFromFilename(artwork_info, filename_base);
2611   }
2612
2613   filename_local = getCustomArtworkConfigFilename(artwork_info->type);
2614
2615   if (filename_local != NULL && !strEqual(filename_base, filename_local))
2616     LoadArtworkConfigFromFilename(artwork_info, filename_local);
2617 }
2618
2619 static void deleteArtworkListEntry(struct ArtworkListInfo *artwork_info,
2620                                    struct ListNodeInfo **listnode)
2621 {
2622   if (*listnode)
2623   {
2624     char *filename = (*listnode)->source_filename;
2625
2626     if (--(*listnode)->num_references <= 0)
2627       deleteNodeFromList(&artwork_info->content_list, filename,
2628                          artwork_info->free_artwork);
2629
2630     *listnode = NULL;
2631   }
2632 }
2633
2634 static void replaceArtworkListEntry(struct ArtworkListInfo *artwork_info,
2635                                     struct ListNodeInfo **listnode,
2636                                     struct FileInfo *file_list_entry)
2637 {
2638   char *init_text[] =
2639   {
2640     "Loading graphics:",
2641     "Loading sounds:",
2642     "Loading music:"
2643   };
2644
2645   ListNode *node;
2646   char *basename = file_list_entry->filename;
2647   char *filename = getCustomArtworkFilename(basename, artwork_info->type);
2648
2649   if (filename == NULL)
2650   {
2651     Error(ERR_WARN, "cannot find artwork file '%s'", basename);
2652
2653     basename = file_list_entry->default_filename;
2654
2655     /* dynamic artwork has no default filename / skip empty default artwork */
2656     if (basename == NULL || strEqual(basename, UNDEFINED_FILENAME))
2657       return;
2658
2659     file_list_entry->fallback_to_default = TRUE;
2660
2661     Error(ERR_WARN, "trying default artwork file '%s'", basename);
2662
2663     filename = getCustomArtworkFilename(basename, artwork_info->type);
2664
2665     if (filename == NULL)
2666     {
2667       int error_mode = ERR_WARN;
2668
2669       /* we can get away without sounds and music, but not without graphics */
2670       if (*listnode == NULL && artwork_info->type == ARTWORK_TYPE_GRAPHICS)
2671         error_mode = ERR_EXIT;
2672
2673       Error(error_mode, "cannot find default artwork file '%s'", basename);
2674
2675       return;
2676     }
2677   }
2678
2679   /* check if the old and the new artwork file are the same */
2680   if (*listnode && strEqual((*listnode)->source_filename, filename))
2681   {
2682     /* The old and new artwork are the same (have the same filename and path).
2683        This usually means that this artwork does not exist in this artwork set
2684        and a fallback to the existing artwork is done. */
2685
2686 #if 0
2687     printf("[artwork '%s' already exists (same list entry)]\n", filename);
2688 #endif
2689
2690     return;
2691   }
2692
2693   /* delete existing artwork file entry */
2694   deleteArtworkListEntry(artwork_info, listnode);
2695
2696   /* check if the new artwork file already exists in the list of artworks */
2697   if ((node = getNodeFromKey(artwork_info->content_list, filename)) != NULL)
2698   {
2699 #if 0
2700       printf("[artwork '%s' already exists (other list entry)]\n", filename);
2701 #endif
2702
2703       *listnode = (struct ListNodeInfo *)node->content;
2704       (*listnode)->num_references++;
2705
2706       return;
2707   }
2708
2709   DrawInitText(init_text[artwork_info->type], 120, FC_GREEN);
2710   DrawInitText(basename, 150, FC_YELLOW);
2711
2712   if ((*listnode = artwork_info->load_artwork(filename)) != NULL)
2713   {
2714 #if 0
2715       printf("[adding new artwork '%s']\n", filename);
2716 #endif
2717
2718     (*listnode)->num_references = 1;
2719     addNodeToList(&artwork_info->content_list, (*listnode)->source_filename,
2720                   *listnode);
2721   }
2722   else
2723   {
2724     int error_mode = ERR_WARN;
2725
2726     /* we can get away without sounds and music, but not without graphics */
2727     if (artwork_info->type == ARTWORK_TYPE_GRAPHICS)
2728       error_mode = ERR_EXIT;
2729
2730     Error(error_mode, "cannot load artwork file '%s'", basename);
2731     return;
2732   }
2733 }
2734
2735 static void LoadCustomArtwork(struct ArtworkListInfo *artwork_info,
2736                               struct ListNodeInfo **listnode,
2737                               struct FileInfo *file_list_entry)
2738 {
2739 #if 0
2740   printf("GOT CUSTOM ARTWORK FILE '%s'\n", filename);
2741 #endif
2742
2743   if (strEqual(file_list_entry->filename, UNDEFINED_FILENAME))
2744   {
2745     deleteArtworkListEntry(artwork_info, listnode);
2746     return;
2747   }
2748
2749   replaceArtworkListEntry(artwork_info, listnode, file_list_entry);
2750 }
2751
2752 void ReloadCustomArtworkList(struct ArtworkListInfo *artwork_info)
2753 {
2754   struct FileInfo *file_list = artwork_info->file_list;
2755   struct FileInfo *dynamic_file_list = artwork_info->dynamic_file_list;
2756   int num_file_list_entries = artwork_info->num_file_list_entries;
2757   int num_dynamic_file_list_entries =
2758     artwork_info->num_dynamic_file_list_entries;
2759   int i;
2760
2761   for (i = 0; i < num_file_list_entries; i++)
2762     LoadCustomArtwork(artwork_info, &artwork_info->artwork_list[i],
2763                       &file_list[i]);
2764
2765   for (i = 0; i < num_dynamic_file_list_entries; i++)
2766     LoadCustomArtwork(artwork_info, &artwork_info->dynamic_artwork_list[i],
2767                       &dynamic_file_list[i]);
2768
2769 #if 0
2770   dumpList(artwork_info->content_list);
2771 #endif
2772 }
2773
2774 static void FreeCustomArtworkList(struct ArtworkListInfo *artwork_info,
2775                                   struct ListNodeInfo ***list,
2776                                   int *num_list_entries)
2777 {
2778   int i;
2779
2780   if (*list == NULL)
2781     return;
2782
2783   for (i = 0; i < *num_list_entries; i++)
2784     deleteArtworkListEntry(artwork_info, &(*list)[i]);
2785   free(*list);
2786
2787   *list = NULL;
2788   *num_list_entries = 0;
2789 }
2790
2791 void FreeCustomArtworkLists(struct ArtworkListInfo *artwork_info)
2792 {
2793   if (artwork_info == NULL)
2794     return;
2795
2796   FreeCustomArtworkList(artwork_info, &artwork_info->artwork_list,
2797                         &artwork_info->num_file_list_entries);
2798
2799   FreeCustomArtworkList(artwork_info, &artwork_info->dynamic_artwork_list,
2800                         &artwork_info->num_dynamic_file_list_entries);
2801 }
2802
2803
2804 /* ------------------------------------------------------------------------- */
2805 /* functions only needed for non-Unix (non-command-line) systems             */
2806 /* (MS-DOS only; SDL/Windows creates files "stdout.txt" and "stderr.txt")    */
2807 /* (now also added for Windows, to create files in user data directory)      */
2808 /* ------------------------------------------------------------------------- */
2809
2810 char *getErrorFilename(char *basename)
2811 {
2812   return getPath2(getUserGameDataDir(), basename);
2813 }
2814
2815 void openErrorFile()
2816 {
2817   /* always start with reliable default values */
2818   program.error_file = stderr;
2819
2820 #if defined(PLATFORM_WIN32) || defined(PLATFORM_MSDOS)
2821   if ((program.error_file = fopen(program.error_filename, MODE_WRITE)) == NULL)
2822     fprintf_newline(stderr, "ERROR: cannot open file '%s' for writing!",
2823                     program.error_filename);
2824 #endif
2825 }
2826
2827 void closeErrorFile()
2828 {
2829   if (program.error_file != stderr)     /* do not close stream 'stderr' */
2830     fclose(program.error_file);
2831 }
2832
2833 void dumpErrorFile()
2834 {
2835   FILE *error_file = fopen(program.error_filename, MODE_READ);
2836
2837   if (error_file != NULL)
2838   {
2839     while (!feof(error_file))
2840       fputc(fgetc(error_file), stderr);
2841
2842     fclose(error_file);
2843   }
2844 }
2845
2846 void NotifyUserAboutErrorFile()
2847 {
2848 #if defined(PLATFORM_WIN32)
2849   char *title_text = getStringCat2(program.program_title, " Error Message");
2850   char *error_text = getStringCat2("The program was aborted due to an error; "
2851                                    "for details, see the following error file:"
2852                                    STRING_NEWLINE, program.error_filename);
2853
2854   MessageBox(NULL, error_text, title_text, MB_OK);
2855 #endif
2856 }
2857
2858
2859 /* ------------------------------------------------------------------------- */
2860 /* the following is only for debugging purpose and normally not used         */
2861 /* ------------------------------------------------------------------------- */
2862
2863 #define DEBUG_NUM_TIMESTAMPS    3
2864
2865 void debug_print_timestamp(int counter_nr, char *message)
2866 {
2867   static long counter[DEBUG_NUM_TIMESTAMPS][2];
2868
2869   if (counter_nr >= DEBUG_NUM_TIMESTAMPS)
2870     Error(ERR_EXIT, "debugging: increase DEBUG_NUM_TIMESTAMPS in misc.c");
2871
2872   counter[counter_nr][0] = Counter();
2873
2874   if (message)
2875     printf("%s %.2f seconds\n", message,
2876            (float)(counter[counter_nr][0] - counter[counter_nr][1]) / 1000);
2877
2878   counter[counter_nr][1] = Counter();
2879 }
2880
2881 void debug_print_parent_only(char *format, ...)
2882 {
2883   if (!IS_PARENT_PROCESS())
2884     return;
2885
2886   if (format)
2887   {
2888     va_list ap;
2889
2890     va_start(ap, format);
2891     vprintf(format, ap);
2892     va_end(ap);
2893
2894     printf("\n");
2895   }
2896 }