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