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