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