93ba670da6d130f17de807ea1b4fe08348d12f89
[rocksndiamonds.git] / src / libgame / misc.c
1 /***********************************************************
2 * Artsoft Retro-Game Library                               *
3 *----------------------------------------------------------*
4 * (c) 1994-2001 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * misc.c                                                   *
12 ***********************************************************/
13
14 #include <time.h>
15 #include <sys/time.h>
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <stdarg.h>
19 #include <ctype.h>
20 #include <string.h>
21 #include <unistd.h>
22
23 #include "platform.h"
24
25 #if !defined(PLATFORM_WIN32)
26 #include <pwd.h>
27 #include <sys/param.h>
28 #endif
29
30 #include "misc.h"
31 #include "random.h"
32
33
34 #if defined(PLATFORM_MSDOS)
35 volatile unsigned long counter = 0;
36
37 void increment_counter()
38 {
39   counter++;
40 }
41
42 END_OF_FUNCTION(increment_counter);
43 #endif
44
45
46 /* maximal allowed length of a command line option */
47 #define MAX_OPTION_LEN          256
48
49 #ifdef TARGET_SDL
50 static unsigned long mainCounter(int mode)
51 {
52   static unsigned long base_ms = 0;
53   unsigned long current_ms;
54   unsigned long counter_ms;
55
56   current_ms = SDL_GetTicks();
57
58   /* reset base time in case of counter initializing or wrap-around */
59   if (mode == INIT_COUNTER || current_ms < base_ms)
60     base_ms = current_ms;
61
62   counter_ms = current_ms - base_ms;
63
64   return counter_ms;            /* return milliseconds since last init */
65 }
66
67 #else /* !TARGET_SDL */
68
69 #if defined(PLATFORM_UNIX)
70 static unsigned long mainCounter(int mode)
71 {
72   static struct timeval base_time = { 0, 0 };
73   struct timeval current_time;
74   unsigned long counter_ms;
75
76   gettimeofday(&current_time, NULL);
77
78   /* reset base time in case of counter initializing or wrap-around */
79   if (mode == INIT_COUNTER || current_time.tv_sec < base_time.tv_sec)
80     base_time = current_time;
81
82   counter_ms = (current_time.tv_sec  - base_time.tv_sec)  * 1000
83              + (current_time.tv_usec - base_time.tv_usec) / 1000;
84
85   return counter_ms;            /* return milliseconds since last init */
86 }
87 #endif /* PLATFORM_UNIX */
88 #endif /* !TARGET_SDL */
89
90 void InitCounter()              /* set counter back to zero */
91 {
92 #if !defined(PLATFORM_MSDOS)
93   mainCounter(INIT_COUNTER);
94 #else
95   LOCK_VARIABLE(counter);
96   LOCK_FUNCTION(increment_counter);
97   install_int_ex(increment_counter, BPS_TO_TIMER(100));
98 #endif
99 }
100
101 unsigned long Counter() /* get milliseconds since last call of InitCounter() */
102 {
103 #if !defined(PLATFORM_MSDOS)
104   return mainCounter(READ_COUNTER);
105 #else
106   return (counter * 10);
107 #endif
108 }
109
110 static void sleep_milliseconds(unsigned long milliseconds_delay)
111 {
112   boolean do_busy_waiting = (milliseconds_delay < 5 ? TRUE : FALSE);
113
114 #if defined(PLATFORM_MSDOS)
115   /* don't use select() to perform waiting operations under DOS/Windows
116      environment; always use a busy loop for waiting instead */
117   do_busy_waiting = TRUE;
118 #endif
119
120   if (do_busy_waiting)
121   {
122     /* we want to wait only a few ms -- if we assume that we have a
123        kernel timer resolution of 10 ms, we would wait far to long;
124        therefore it's better to do a short interval of busy waiting
125        to get our sleeping time more accurate */
126
127     unsigned long base_counter = Counter(), actual_counter = Counter();
128
129     while (actual_counter < base_counter + milliseconds_delay &&
130            actual_counter >= base_counter)
131       actual_counter = Counter();
132   }
133   else
134   {
135 #if defined(TARGET_SDL)
136     SDL_Delay(milliseconds_delay);
137 #else
138     struct timeval delay;
139
140     delay.tv_sec  = milliseconds_delay / 1000;
141     delay.tv_usec = 1000 * (milliseconds_delay % 1000);
142
143     if (select(0, NULL, NULL, NULL, &delay) != 0)
144       Error(ERR_WARN, "sleep_milliseconds(): select() failed");
145 #endif
146   }
147 }
148
149 void Delay(unsigned long delay) /* Sleep specified number of milliseconds */
150 {
151   sleep_milliseconds(delay);
152 }
153
154 boolean FrameReached(unsigned long *frame_counter_var,
155                      unsigned long frame_delay)
156 {
157   unsigned long actual_frame_counter = FrameCounter;
158
159   if (actual_frame_counter < *frame_counter_var+frame_delay &&
160       actual_frame_counter >= *frame_counter_var)
161     return(FALSE);
162
163   *frame_counter_var = actual_frame_counter;
164   return(TRUE);
165 }
166
167 boolean DelayReached(unsigned long *counter_var,
168                      unsigned long delay)
169 {
170   unsigned long actual_counter = Counter();
171
172   if (actual_counter < *counter_var + delay &&
173       actual_counter >= *counter_var)
174     return(FALSE);
175
176   *counter_var = actual_counter;
177   return(TRUE);
178 }
179
180 void WaitUntilDelayReached(unsigned long *counter_var, unsigned long delay)
181 {
182   unsigned long actual_counter;
183
184   while(1)
185   {
186     actual_counter = Counter();
187
188     if (actual_counter < *counter_var + delay &&
189         actual_counter >= *counter_var)
190       sleep_milliseconds((*counter_var + delay - actual_counter) / 2);
191     else
192       break;
193   }
194
195   *counter_var = actual_counter;
196 }
197
198 /* int2str() returns a number converted to a string;
199    the used memory is static, but will be overwritten by later calls,
200    so if you want to save the result, copy it to a private string buffer;
201    there can be 10 local calls of int2str() without buffering the result --
202    the 11th call will then destroy the result from the first call and so on.
203 */
204
205 char *int2str(int number, int size)
206 {
207   static char shift_array[10][40];
208   static int shift_counter = 0;
209   char *s = shift_array[shift_counter];
210
211   shift_counter = (shift_counter + 1) % 10;
212
213   if (size > 20)
214     size = 20;
215
216   if (size)
217   {
218     sprintf(s, "                    %09d", number);
219     return &s[strlen(s) - size];
220   }
221   else
222   {
223     sprintf(s, "%d", number);
224     return s;
225   }
226 }
227
228 unsigned int SimpleRND(unsigned int max)
229 {
230 #if defined(TARGET_SDL)
231   static unsigned long root = 654321;
232   unsigned long current_ms;
233
234   current_ms = SDL_GetTicks();
235   root = root * 4253261 + current_ms;
236   return (root % max);
237 #else
238   static unsigned long root = 654321;
239   struct timeval current_time;
240
241   gettimeofday(&current_time, NULL);
242   root = root * 4253261 + current_time.tv_sec + current_time.tv_usec;
243   return (root % max);
244 #endif
245 }
246
247 #ifdef DEBUG
248 static unsigned int last_RND_value = 0;
249
250 unsigned int last_RND()
251 {
252   return last_RND_value;
253 }
254 #endif
255
256 unsigned int RND(unsigned int max)
257 {
258 #ifdef DEBUG
259   return (last_RND_value = random_linux_libc() % max);
260 #else
261   return (random_linux_libc() % max);
262 #endif
263 }
264
265 unsigned int InitRND(long seed)
266 {
267 #if defined(TARGET_SDL)
268   unsigned long current_ms;
269
270   if (seed == NEW_RANDOMIZE)
271   {
272     current_ms = SDL_GetTicks();
273     srandom_linux_libc((unsigned int) current_ms);
274     return (unsigned int) current_ms;
275   }
276   else
277   {
278     srandom_linux_libc((unsigned int) seed);
279     return (unsigned int) seed;
280   }
281 #else
282   struct timeval current_time;
283
284   if (seed == NEW_RANDOMIZE)
285   {
286     gettimeofday(&current_time, NULL);
287     srandom_linux_libc((unsigned int) current_time.tv_usec);
288     return (unsigned int) current_time.tv_usec;
289   }
290   else
291   {
292     srandom_linux_libc((unsigned int) seed);
293     return (unsigned int) seed;
294   }
295 #endif
296 }
297
298 char *getLoginName()
299 {
300 #if defined(PLATFORM_WIN32)
301   return ANONYMOUS_NAME;
302 #else
303   struct passwd *pwd;
304
305   if ((pwd = getpwuid(getuid())) == NULL)
306     return ANONYMOUS_NAME;
307   else
308     return pwd->pw_name;
309 #endif
310 }
311
312 char *getRealName()
313 {
314 #if defined(PLATFORM_UNIX)
315   struct passwd *pwd;
316
317   if ((pwd = getpwuid(getuid())) == NULL || strlen(pwd->pw_gecos) == 0)
318     return ANONYMOUS_NAME;
319   else
320   {
321     static char real_name[1024];
322     char *from_ptr = pwd->pw_gecos, *to_ptr = real_name;
323
324     if (strchr(pwd->pw_gecos, 'ß') == NULL)
325       return pwd->pw_gecos;
326
327     /* the user's real name contains a 'ß' character (german sharp s),
328        which has no equivalent in upper case letters (which our fonts use) */
329     while (*from_ptr != '\0' && (long)(to_ptr - real_name) < 1024 - 2)
330     {
331       if (*from_ptr != 'ß')
332         *to_ptr++ = *from_ptr++;
333       else
334       {
335         from_ptr++;
336         *to_ptr++ = 's';
337         *to_ptr++ = 's';
338       }
339     }
340     *to_ptr = '\0';
341
342     return real_name;
343   }
344 #else /* !PLATFORM_UNIX */
345   return ANONYMOUS_NAME;
346 #endif
347 }
348
349 char *getHomeDir()
350 {
351 #if defined(PLATFORM_UNIX)
352   static char *home_dir = NULL;
353
354   if (!home_dir)
355   {
356     if (!(home_dir = getenv("HOME")))
357     {
358       struct passwd *pwd;
359
360       if ((pwd = getpwuid(getuid())))
361         home_dir = pwd->pw_dir;
362       else
363         home_dir = ".";
364     }
365   }
366
367   return home_dir;
368 #else
369   return ".";
370 #endif
371 }
372
373 char *getPath2(char *path1, char *path2)
374 {
375   char *complete_path = checked_malloc(strlen(path1) + 1 +
376                                        strlen(path2) + 1);
377
378   sprintf(complete_path, "%s/%s", path1, path2);
379   return complete_path;
380 }
381
382 char *getPath3(char *path1, char *path2, char *path3)
383 {
384   char *complete_path = checked_malloc(strlen(path1) + 1 +
385                                        strlen(path2) + 1 +
386                                        strlen(path3) + 1);
387
388   sprintf(complete_path, "%s/%s/%s", path1, path2, path3);
389   return complete_path;
390 }
391
392 char *getStringCopy(char *s)
393 {
394   char *s_copy;
395
396   if (s == NULL)
397     return NULL;
398
399   s_copy = checked_malloc(strlen(s) + 1);
400
401   strcpy(s_copy, s);
402   return s_copy;
403 }
404
405 char *getStringToLower(char *s)
406 {
407   char *s_copy = checked_malloc(strlen(s) + 1);
408   char *s_ptr = s_copy;
409
410   while (*s)
411     *s_ptr++ = tolower(*s++);
412   *s_ptr = '\0';
413
414   return s_copy;
415 }
416
417 void GetOptions(char *argv[])
418 {
419   char **options_left = &argv[1];
420
421   /* initialize global program options */
422   options.display_name = NULL;
423   options.server_host = NULL;
424   options.server_port = 0;
425   options.ro_base_directory = RO_BASE_PATH;
426   options.rw_base_directory = RW_BASE_PATH;
427   options.level_directory = RO_BASE_PATH "/" LEVELS_DIRECTORY;
428   options.serveronly = FALSE;
429   options.network = FALSE;
430   options.verbose = FALSE;
431   options.debug = FALSE;
432
433   while (*options_left)
434   {
435     char option_str[MAX_OPTION_LEN];
436     char *option = options_left[0];
437     char *next_option = options_left[1];
438     char *option_arg = NULL;
439     int option_len = strlen(option);
440
441     if (option_len >= MAX_OPTION_LEN)
442       Error(ERR_EXIT_HELP, "unrecognized option '%s'", option);
443
444     strcpy(option_str, option);                 /* copy argument into buffer */
445     option = option_str;
446
447     if (strcmp(option, "--") == 0)              /* stop scanning arguments */
448       break;
449
450     if (strncmp(option, "--", 2) == 0)          /* treat '--' like '-' */
451       option++;
452
453     option_arg = strchr(option, '=');
454     if (option_arg == NULL)                     /* no '=' in option */
455       option_arg = next_option;
456     else
457     {
458       *option_arg++ = '\0';                     /* cut argument from option */
459       if (*option_arg == '\0')                  /* no argument after '=' */
460         Error(ERR_EXIT_HELP, "option '%s' has invalid argument", option_str);
461     }
462
463     option_len = strlen(option);
464
465     if (strcmp(option, "-") == 0)
466       Error(ERR_EXIT_HELP, "unrecognized option '%s'", option);
467     else if (strncmp(option, "-help", option_len) == 0)
468     {
469       printf("Usage: %s [options] [server.name [port]]\n"
470              "Options:\n"
471              "  -d, --display machine:0       X server display\n"
472              "  -b, --basepath directory      alternative base directory\n"
473              "  -l, --level directory         alternative level directory\n"
474              "  -s, --serveronly              only start network server\n"
475              "  -n, --network                 network multiplayer game\n"
476              "  -v, --verbose                 verbose mode\n",
477              program.command_basename);
478       exit(0);
479     }
480     else if (strncmp(option, "-display", option_len) == 0)
481     {
482       if (option_arg == NULL)
483         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
484
485       options.display_name = option_arg;
486       if (option_arg == next_option)
487         options_left++;
488     }
489     else if (strncmp(option, "-basepath", option_len) == 0)
490     {
491       if (option_arg == NULL)
492         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
493
494       /* this should be extended to separate options for ro and rw data */
495       options.ro_base_directory = option_arg;
496       options.rw_base_directory = option_arg;
497       if (option_arg == next_option)
498         options_left++;
499
500       /* adjust path for level directory accordingly */
501       options.level_directory =
502         getPath2(options.ro_base_directory, LEVELS_DIRECTORY);
503     }
504     else if (strncmp(option, "-levels", option_len) == 0)
505     {
506       if (option_arg == NULL)
507         Error(ERR_EXIT_HELP, "option '%s' requires an argument", option_str);
508
509       options.level_directory = option_arg;
510       if (option_arg == next_option)
511         options_left++;
512     }
513     else if (strncmp(option, "-network", option_len) == 0)
514     {
515       options.network = TRUE;
516     }
517     else if (strncmp(option, "-serveronly", option_len) == 0)
518     {
519       options.serveronly = TRUE;
520     }
521     else if (strncmp(option, "-verbose", option_len) == 0)
522     {
523       options.verbose = TRUE;
524     }
525     else if (strncmp(option, "-debug", option_len) == 0)
526     {
527       options.debug = TRUE;
528     }
529     else if (*option == '-')
530     {
531       Error(ERR_EXIT_HELP, "unrecognized option '%s'", option_str);
532     }
533     else if (options.server_host == NULL)
534     {
535       options.server_host = *options_left;
536     }
537     else if (options.server_port == 0)
538     {
539       options.server_port = atoi(*options_left);
540       if (options.server_port < 1024)
541         Error(ERR_EXIT_HELP, "bad port number '%d'", options.server_port);
542     }
543     else
544       Error(ERR_EXIT_HELP, "too many arguments");
545
546     options_left++;
547   }
548 }
549
550 void Error(int mode, char *format, ...)
551 {
552   char *process_name = "";
553   FILE *error = stderr;
554   char *newline = "\n";
555
556   /* display warnings only when running in verbose mode */
557   if (mode & ERR_WARN && !options.verbose)
558     return;
559
560 #if !defined(PLATFORM_UNIX)
561   newline = "\r\n";
562
563   if ((error = openErrorFile()) == NULL)
564   {
565     printf("Cannot write to error output file!%s", newline);
566     program.exit_function(1);
567   }
568 #endif
569
570   if (mode & ERR_SOUND_SERVER)
571     process_name = " sound server";
572   else if (mode & ERR_NETWORK_SERVER)
573     process_name = " network server";
574   else if (mode & ERR_NETWORK_CLIENT)
575     process_name = " network client **";
576
577   if (format)
578   {
579     va_list ap;
580
581     fprintf(error, "%s%s: ", program.command_basename, process_name);
582
583     if (mode & ERR_WARN)
584       fprintf(error, "warning: ");
585
586     va_start(ap, format);
587     vfprintf(error, format, ap);
588     va_end(ap);
589   
590     fprintf(error, "%s", newline);
591   }
592   
593   if (mode & ERR_HELP)
594     fprintf(error, "%s: Try option '--help' for more information.%s",
595             program.command_basename, newline);
596
597   if (mode & ERR_EXIT)
598     fprintf(error, "%s%s: aborting%s",
599             program.command_basename, process_name, newline);
600
601   if (error != stderr)
602     fclose(error);
603
604   if (mode & ERR_EXIT)
605   {
606     if (mode & ERR_FROM_SERVER)
607       exit(1);                          /* child process: normal exit */
608     else
609       program.exit_function(1);         /* main process: clean up stuff */
610   }
611 }
612
613 void *checked_malloc(unsigned long size)
614 {
615   void *ptr;
616
617   ptr = malloc(size);
618
619   if (ptr == NULL)
620     Error(ERR_EXIT, "cannot allocate %d bytes -- out of memory", size);
621
622   return ptr;
623 }
624
625 void *checked_calloc(unsigned long size)
626 {
627   void *ptr;
628
629   ptr = calloc(1, size);
630
631   if (ptr == NULL)
632     Error(ERR_EXIT, "cannot allocate %d bytes -- out of memory", size);
633
634   return ptr;
635 }
636
637 void *checked_realloc(void *ptr, unsigned long size)
638 {
639   ptr = realloc(ptr, size);
640
641   if (ptr == NULL)
642     Error(ERR_EXIT, "cannot allocate %d bytes -- out of memory", size);
643
644   return ptr;
645 }
646
647 short getFile16BitInteger(FILE *file, int byte_order)
648 {
649   if (byte_order == BYTE_ORDER_BIG_ENDIAN)
650     return ((fgetc(file) <<  8) |
651             (fgetc(file) <<  0));
652   else           /* BYTE_ORDER_LITTLE_ENDIAN */
653     return ((fgetc(file) <<  0) |
654             (fgetc(file) <<  8));
655 }
656
657 void putFile16BitInteger(FILE *file, short value, int byte_order)
658 {
659   if (byte_order == BYTE_ORDER_BIG_ENDIAN)
660   {
661     fputc((value >>  8) & 0xff, file);
662     fputc((value >>  0) & 0xff, file);
663   }
664   else           /* BYTE_ORDER_LITTLE_ENDIAN */
665   {
666     fputc((value >>  0) & 0xff, file);
667     fputc((value >>  8) & 0xff, file);
668   }
669 }
670
671 int getFile32BitInteger(FILE *file, int byte_order)
672 {
673   if (byte_order == BYTE_ORDER_BIG_ENDIAN)
674     return ((fgetc(file) << 24) |
675             (fgetc(file) << 16) |
676             (fgetc(file) <<  8) |
677             (fgetc(file) <<  0));
678   else           /* BYTE_ORDER_LITTLE_ENDIAN */
679     return ((fgetc(file) <<  0) |
680             (fgetc(file) <<  8) |
681             (fgetc(file) << 16) |
682             (fgetc(file) << 24));
683 }
684
685 void putFile32BitInteger(FILE *file, int value, int byte_order)
686 {
687   if (byte_order == BYTE_ORDER_BIG_ENDIAN)
688   {
689     fputc((value >> 24) & 0xff, file);
690     fputc((value >> 16) & 0xff, file);
691     fputc((value >>  8) & 0xff, file);
692     fputc((value >>  0) & 0xff, file);
693   }
694   else           /* BYTE_ORDER_LITTLE_ENDIAN */
695   {
696     fputc((value >>  0) & 0xff, file);
697     fputc((value >>  8) & 0xff, file);
698     fputc((value >> 16) & 0xff, file);
699     fputc((value >> 24) & 0xff, file);
700   }
701 }
702
703 boolean getFileChunk(FILE *file, char *chunk_name, int *chunk_size,
704                      int byte_order)
705 {
706   const int chunk_name_length = 4;
707
708   /* read chunk name */
709   fgets(chunk_name, chunk_name_length + 1, file);
710
711   /* read chunk size */
712   *chunk_size = getFile32BitInteger(file, byte_order);
713
714   return (feof(file) || ferror(file) ? FALSE : TRUE);
715 }
716
717 void putFileChunk(FILE *file, char *chunk_name, int chunk_size,
718                   int byte_order)
719 {
720   /* write chunk name */
721   fputs(chunk_name, file);
722
723   /* write chunk size */
724   putFile32BitInteger(file, chunk_size, byte_order);
725 }
726
727 #define TRANSLATE_KEYSYM_TO_KEYNAME     0
728 #define TRANSLATE_KEYSYM_TO_X11KEYNAME  1
729 #define TRANSLATE_X11KEYNAME_TO_KEYSYM  2
730
731 void translate_keyname(Key *keysym, char **x11name, char **name, int mode)
732 {
733   static struct
734   {
735     Key key;
736     char *x11name;
737     char *name;
738   } translate_key[] =
739   {
740     /* normal cursor keys */
741     { KSYM_Left,        "XK_Left",              "cursor left" },
742     { KSYM_Right,       "XK_Right",             "cursor right" },
743     { KSYM_Up,          "XK_Up",                "cursor up" },
744     { KSYM_Down,        "XK_Down",              "cursor down" },
745
746     /* keypad cursor keys */
747 #ifdef KSYM_KP_Left
748     { KSYM_KP_Left,     "XK_KP_Left",           "keypad left" },
749     { KSYM_KP_Right,    "XK_KP_Right",          "keypad right" },
750     { KSYM_KP_Up,       "XK_KP_Up",             "keypad up" },
751     { KSYM_KP_Down,     "XK_KP_Down",           "keypad down" },
752 #endif
753
754     /* other keypad keys */
755 #ifdef KSYM_KP_Enter
756     { KSYM_KP_Enter,    "XK_KP_Enter",          "keypad enter" },
757     { KSYM_KP_Add,      "XK_KP_Add",            "keypad +" },
758     { KSYM_KP_Subtract, "XK_KP_Subtract",       "keypad -" },
759     { KSYM_KP_Multiply, "XK_KP_Multiply",       "keypad mltply" },
760     { KSYM_KP_Divide,   "XK_KP_Divide",         "keypad /" },
761     { KSYM_KP_Separator,"XK_KP_Separator",      "keypad ," },
762 #endif
763
764     /* modifier keys */
765     { KSYM_Shift_L,     "XK_Shift_L",           "left shift" },
766     { KSYM_Shift_R,     "XK_Shift_R",           "right shift" },
767     { KSYM_Control_L,   "XK_Control_L",         "left control" },
768     { KSYM_Control_R,   "XK_Control_R",         "right control" },
769     { KSYM_Meta_L,      "XK_Meta_L",            "left meta" },
770     { KSYM_Meta_R,      "XK_Meta_R",            "right meta" },
771     { KSYM_Alt_L,       "XK_Alt_L",             "left alt" },
772     { KSYM_Alt_R,       "XK_Alt_R",             "right alt" },
773     { KSYM_Super_L,     "XK_Super_L",           "left super" },  /* Win-L */
774     { KSYM_Super_R,     "XK_Super_R",           "right super" }, /* Win-R */
775     { KSYM_Mode_switch, "XK_Mode_switch",       "mode switch" }, /* Alt-R */
776     { KSYM_Multi_key,   "XK_Multi_key",         "multi key" },   /* Ctrl-R */
777
778     /* some special keys */
779     { KSYM_BackSpace,   "XK_BackSpace",         "backspace" },
780     { KSYM_Delete,      "XK_Delete",            "delete" },
781     { KSYM_Insert,      "XK_Insert",            "insert" },
782     { KSYM_Tab,         "XK_Tab",               "tab" },
783     { KSYM_Home,        "XK_Home",              "home" },
784     { KSYM_End,         "XK_End",               "end" },
785     { KSYM_Page_Up,     "XK_Page_Up",           "page up" },
786     { KSYM_Page_Down,   "XK_Page_Down",         "page down" },
787     { KSYM_Menu,        "XK_Menu",              "menu" },        /* Win-Menu */
788
789     /* ASCII 0x20 to 0x40 keys (except numbers) */
790     { KSYM_space,       "XK_space",             "space" },
791     { KSYM_exclam,      "XK_exclam",            "!" },
792     { KSYM_quotedbl,    "XK_quotedbl",          "\"" },
793     { KSYM_numbersign,  "XK_numbersign",        "#" },
794     { KSYM_dollar,      "XK_dollar",            "$" },
795     { KSYM_percent,     "XK_percent",           "%" },
796     { KSYM_ampersand,   "XK_ampersand",         "&" },
797     { KSYM_apostrophe,  "XK_apostrophe",        "'" },
798     { KSYM_parenleft,   "XK_parenleft",         "(" },
799     { KSYM_parenright,  "XK_parenright",        ")" },
800     { KSYM_asterisk,    "XK_asterisk",          "*" },
801     { KSYM_plus,        "XK_plus",              "+" },
802     { KSYM_comma,       "XK_comma",             "," },
803     { KSYM_minus,       "XK_minus",             "-" },
804     { KSYM_period,      "XK_period",            "." },
805     { KSYM_slash,       "XK_slash",             "/" },
806     { KSYM_colon,       "XK_colon",             ":" },
807     { KSYM_semicolon,   "XK_semicolon",         ";" },
808     { KSYM_less,        "XK_less",              "<" },
809     { KSYM_equal,       "XK_equal",             "=" },
810     { KSYM_greater,     "XK_greater",           ">" },
811     { KSYM_question,    "XK_question",          "?" },
812     { KSYM_at,          "XK_at",                "@" },
813
814     /* more ASCII keys */
815     { KSYM_bracketleft, "XK_bracketleft",       "[" },
816     { KSYM_backslash,   "XK_backslash",         "backslash" },
817     { KSYM_bracketright,"XK_bracketright",      "]" },
818     { KSYM_asciicircum, "XK_asciicircum",       "circumflex" },
819     { KSYM_underscore,  "XK_underscore",        "_" },
820     { KSYM_grave,       "XK_grave",             "grave" },
821     { KSYM_quoteleft,   "XK_quoteleft",         "quote left" },
822     { KSYM_braceleft,   "XK_braceleft",         "brace left" },
823     { KSYM_bar,         "XK_bar",               "bar" },
824     { KSYM_braceright,  "XK_braceright",        "brace right" },
825     { KSYM_asciitilde,  "XK_asciitilde",        "ascii tilde" },
826
827     /* special (non-ASCII) keys */
828     { KSYM_Adiaeresis,  "XK_Adiaeresis",        "Ä" },
829     { KSYM_Odiaeresis,  "XK_Odiaeresis",        "Ö" },
830     { KSYM_Udiaeresis,  "XK_Udiaeresis",        "Ãœ" },
831     { KSYM_adiaeresis,  "XK_adiaeresis",        "ä" },
832     { KSYM_odiaeresis,  "XK_odiaeresis",        "ö" },
833     { KSYM_udiaeresis,  "XK_udiaeresis",        "ü" },
834     { KSYM_ssharp,      "XK_ssharp",            "sharp s" },
835
836     /* end-of-array identifier */
837     { 0,                NULL,                   NULL }
838   };
839
840   int i;
841
842   if (mode == TRANSLATE_KEYSYM_TO_KEYNAME)
843   {
844     static char name_buffer[30];
845     Key key = *keysym;
846
847     if (key >= KSYM_A && key <= KSYM_Z)
848       sprintf(name_buffer, "%c", 'A' + (char)(key - KSYM_A));
849     else if (key >= KSYM_a && key <= KSYM_z)
850       sprintf(name_buffer, "%c", 'a' + (char)(key - KSYM_a));
851     else if (key >= KSYM_0 && key <= KSYM_9)
852       sprintf(name_buffer, "%c", '0' + (char)(key - KSYM_0));
853     else if (key >= KSYM_KP_0 && key <= KSYM_KP_9)
854       sprintf(name_buffer, "keypad %c", '0' + (char)(key - KSYM_KP_0));
855     else if (key >= KSYM_F1 && key <= KSYM_F24)
856       sprintf(name_buffer, "function F%d", (int)(key - KSYM_F1 + 1));
857     else if (key == KSYM_UNDEFINED)
858       strcpy(name_buffer, "(undefined)");
859     else
860     {
861       i = 0;
862
863       do
864       {
865         if (key == translate_key[i].key)
866         {
867           strcpy(name_buffer, translate_key[i].name);
868           break;
869         }
870       }
871       while (translate_key[++i].name);
872
873       if (!translate_key[i].name)
874         strcpy(name_buffer, "(unknown)");
875     }
876
877     *name = name_buffer;
878   }
879   else if (mode == TRANSLATE_KEYSYM_TO_X11KEYNAME)
880   {
881     static char name_buffer[30];
882     Key key = *keysym;
883
884     if (key >= KSYM_A && key <= KSYM_Z)
885       sprintf(name_buffer, "XK_%c", 'A' + (char)(key - KSYM_A));
886     else if (key >= KSYM_a && key <= KSYM_z)
887       sprintf(name_buffer, "XK_%c", 'a' + (char)(key - KSYM_a));
888     else if (key >= KSYM_0 && key <= KSYM_9)
889       sprintf(name_buffer, "XK_%c", '0' + (char)(key - KSYM_0));
890     else if (key >= KSYM_KP_0 && key <= KSYM_KP_9)
891       sprintf(name_buffer, "XK_KP_%c", '0' + (char)(key - KSYM_KP_0));
892     else if (key >= KSYM_F1 && key <= KSYM_F24)
893       sprintf(name_buffer, "XK_F%d", (int)(key - KSYM_F1 + 1));
894     else if (key == KSYM_UNDEFINED)
895       strcpy(name_buffer, "[undefined]");
896     else
897     {
898       i = 0;
899
900       do
901       {
902         if (key == translate_key[i].key)
903         {
904           strcpy(name_buffer, translate_key[i].x11name);
905           break;
906         }
907       }
908       while (translate_key[++i].x11name);
909
910       if (!translate_key[i].x11name)
911         sprintf(name_buffer, "0x%04lx", (unsigned long)key);
912     }
913
914     *x11name = name_buffer;
915   }
916   else if (mode == TRANSLATE_X11KEYNAME_TO_KEYSYM)
917   {
918     Key key = KSYM_UNDEFINED;
919     char *name_ptr = *x11name;
920
921     if (strncmp(name_ptr, "XK_", 3) == 0 && strlen(name_ptr) == 4)
922     {
923       char c = name_ptr[3];
924
925       if (c >= 'A' && c <= 'Z')
926         key = KSYM_A + (Key)(c - 'A');
927       else if (c >= 'a' && c <= 'z')
928         key = KSYM_a + (Key)(c - 'a');
929       else if (c >= '0' && c <= '9')
930         key = KSYM_0 + (Key)(c - '0');
931     }
932     else if (strncmp(name_ptr, "XK_KP_", 6) == 0 && strlen(name_ptr) == 7)
933     {
934       char c = name_ptr[6];
935
936       if (c >= '0' && c <= '9')
937         key = KSYM_0 + (Key)(c - '0');
938     }
939     else if (strncmp(name_ptr, "XK_F", 4) == 0 && strlen(name_ptr) <= 6)
940     {
941       char c1 = name_ptr[4];
942       char c2 = name_ptr[5];
943       int d = 0;
944
945       if ((c1 >= '0' && c1 <= '9') &&
946           ((c2 >= '0' && c1 <= '9') || c2 == '\0'))
947         d = atoi(&name_ptr[4]);
948
949       if (d >=1 && d <= 24)
950         key = KSYM_F1 + (Key)(d - 1);
951     }
952     else if (strncmp(name_ptr, "XK_", 3) == 0)
953     {
954       i = 0;
955
956       do
957       {
958         if (strcmp(name_ptr, translate_key[i].x11name) == 0)
959         {
960           key = translate_key[i].key;
961           break;
962         }
963       }
964       while (translate_key[++i].x11name);
965     }
966     else if (strncmp(name_ptr, "0x", 2) == 0)
967     {
968       unsigned long value = 0;
969
970       name_ptr += 2;
971
972       while (name_ptr)
973       {
974         char c = *name_ptr++;
975         int d = -1;
976
977         if (c >= '0' && c <= '9')
978           d = (int)(c - '0');
979         else if (c >= 'a' && c <= 'f')
980           d = (int)(c - 'a' + 10);
981         else if (c >= 'A' && c <= 'F')
982           d = (int)(c - 'A' + 10);
983
984         if (d == -1)
985         {
986           value = -1;
987           break;
988         }
989
990         value = value * 16 + d;
991       }
992
993       if (value != -1)
994         key = (Key)value;
995     }
996
997     *keysym = key;
998   }
999 }
1000
1001 char *getKeyNameFromKey(Key key)
1002 {
1003   char *name;
1004
1005   translate_keyname(&key, NULL, &name, TRANSLATE_KEYSYM_TO_KEYNAME);
1006   return name;
1007 }
1008
1009 char *getX11KeyNameFromKey(Key key)
1010 {
1011   char *x11name;
1012
1013   translate_keyname(&key, &x11name, NULL, TRANSLATE_KEYSYM_TO_X11KEYNAME);
1014   return x11name;
1015 }
1016
1017 Key getKeyFromX11KeyName(char *x11name)
1018 {
1019   Key key;
1020
1021   translate_keyname(&key, &x11name, NULL, TRANSLATE_X11KEYNAME_TO_KEYSYM);
1022   return key;
1023 }
1024
1025 char getCharFromKey(Key key)
1026 {
1027   char *keyname = getKeyNameFromKey(key);
1028   char letter = 0;
1029
1030   if (strlen(keyname) == 1)
1031     letter = keyname[0];
1032   else if (strcmp(keyname, "space") == 0)
1033     letter = ' ';
1034   else if (strcmp(keyname, "circumflex") == 0)
1035     letter = '^';
1036
1037   return letter;
1038 }
1039
1040 /* ------------------------------------------------------------------------- */
1041 /* some functions to handle lists of level directories                       */
1042 /* ------------------------------------------------------------------------- */
1043
1044 struct LevelDirInfo *newLevelDirInfo()
1045 {
1046   return checked_calloc(sizeof(struct LevelDirInfo));
1047 }
1048
1049 void pushLevelDirInfo(struct LevelDirInfo **node_first,
1050                       struct LevelDirInfo *node_new)
1051 {
1052   node_new->next = *node_first;
1053   *node_first = node_new;
1054 }
1055
1056 int numLevelDirInfo(struct LevelDirInfo *node)
1057 {
1058   int num = 0;
1059
1060   while (node)
1061   {
1062     num++;
1063     node = node->next;
1064   }
1065
1066   return num;
1067 }
1068
1069 boolean validLevelSeries(struct LevelDirInfo *node)
1070 {
1071   return (node != NULL && !node->node_group && !node->parent_link);
1072 }
1073
1074 struct LevelDirInfo *getFirstValidLevelSeries(struct LevelDirInfo *node)
1075 {
1076   if (node == NULL)
1077   {
1078     if (leveldir_first)         /* start with first level directory entry */
1079       return getFirstValidLevelSeries(leveldir_first);
1080     else
1081       return NULL;
1082   }
1083   else if (node->node_group)    /* enter level group (step down into tree) */
1084     return getFirstValidLevelSeries(node->node_group);
1085   else if (node->parent_link)   /* skip start entry of level group */
1086   {
1087     if (node->next)             /* get first real level series entry */
1088       return getFirstValidLevelSeries(node->next);
1089     else                        /* leave empty level group and go on */
1090       return getFirstValidLevelSeries(node->node_parent->next);
1091   }
1092   else                          /* this seems to be a regular level series */
1093     return node;
1094 }
1095
1096 struct LevelDirInfo *getLevelDirInfoFirstGroupEntry(struct LevelDirInfo *node)
1097 {
1098   if (node == NULL)
1099     return NULL;
1100
1101   if (node->node_parent == NULL)                /* top level group */
1102     return leveldir_first;
1103   else                                          /* sub level group */
1104     return node->node_parent->node_group;
1105 }
1106
1107 int numLevelDirInfoInGroup(struct LevelDirInfo *node)
1108 {
1109   return numLevelDirInfo(getLevelDirInfoFirstGroupEntry(node));
1110 }
1111
1112 int posLevelDirInfo(struct LevelDirInfo *node)
1113 {
1114   struct LevelDirInfo *node_cmp = getLevelDirInfoFirstGroupEntry(node);
1115   int pos = 0;
1116
1117   while (node_cmp)
1118   {
1119     if (node_cmp == node)
1120       return pos;
1121
1122     pos++;
1123     node_cmp = node_cmp->next;
1124   }
1125
1126   return 0;
1127 }
1128
1129 struct LevelDirInfo *getLevelDirInfoFromPos(struct LevelDirInfo *node, int pos)
1130 {
1131   struct LevelDirInfo *node_default = node;
1132   int pos_cmp = 0;
1133
1134   while (node)
1135   {
1136     if (pos_cmp == pos)
1137       return node;
1138
1139     pos_cmp++;
1140     node = node->next;
1141   }
1142
1143   return node_default;
1144 }
1145
1146 struct LevelDirInfo *getLevelDirInfoFromFilenameExt(struct LevelDirInfo *node,
1147                                                     char *filename)
1148 {
1149   if (filename == NULL)
1150     return NULL;
1151
1152   while (node)
1153   {
1154     if (node->node_group)
1155     {
1156       struct LevelDirInfo *node_group;
1157
1158       node_group = getLevelDirInfoFromFilenameExt(node->node_group, filename);
1159
1160       if (node_group)
1161         return node_group;
1162     }
1163     else if (!node->parent_link)
1164     {
1165       if (strcmp(filename, node->filename) == 0)
1166         return node;
1167     }
1168
1169     node = node->next;
1170   }
1171
1172   return NULL;
1173 }
1174
1175 struct LevelDirInfo *getLevelDirInfoFromFilename(char *filename)
1176 {
1177   return getLevelDirInfoFromFilenameExt(leveldir_first, filename);
1178 }
1179
1180 void dumpLevelDirInfo(struct LevelDirInfo *node, int depth)
1181 {
1182   int i;
1183
1184   while (node)
1185   {
1186     for (i=0; i<depth * 3; i++)
1187       printf(" ");
1188
1189     printf("filename == '%s'\n", node->filename);
1190
1191     if (node->node_group != NULL)
1192       dumpLevelDirInfo(node->node_group, depth + 1);
1193
1194     node = node->next;
1195   }
1196 }
1197
1198 void sortLevelDirInfo(struct LevelDirInfo **node_first,
1199                       int (*compare_function)(const void *, const void *))
1200 {
1201   int num_nodes = numLevelDirInfo(*node_first);
1202   struct LevelDirInfo **sort_array;
1203   struct LevelDirInfo *node = *node_first;
1204   int i = 0;
1205
1206   if (num_nodes == 0)
1207     return;
1208
1209   /* allocate array for sorting structure pointers */
1210   sort_array = checked_calloc(num_nodes * sizeof(struct LevelDirInfo *));
1211
1212   /* writing structure pointers to sorting array */
1213   while (i < num_nodes && node)         /* double boundary check... */
1214   {
1215     sort_array[i] = node;
1216
1217     i++;
1218     node = node->next;
1219   }
1220
1221   /* sorting the structure pointers in the sorting array */
1222   qsort(sort_array, num_nodes, sizeof(struct LevelDirInfo *),
1223         compare_function);
1224
1225   /* update the linkage of list elements with the sorted node array */
1226   for (i=0; i<num_nodes - 1; i++)
1227     sort_array[i]->next = sort_array[i + 1];
1228   sort_array[num_nodes - 1]->next = NULL;
1229
1230   /* update the linkage of the main list anchor pointer */
1231   *node_first = sort_array[0];
1232
1233   free(sort_array);
1234
1235   /* now recursively sort the level group structures */
1236   node = *node_first;
1237   while (node)
1238   {
1239     if (node->node_group != NULL)
1240       sortLevelDirInfo(&node->node_group, compare_function);
1241
1242     node = node->next;
1243   }
1244 }
1245
1246 inline void swap_numbers(int *i1, int *i2)
1247 {
1248   int help = *i1;
1249
1250   *i1 = *i2;
1251   *i2 = help;
1252 }
1253
1254 inline void swap_number_pairs(int *x1, int *y1, int *x2, int *y2)
1255 {
1256   int help_x = *x1;
1257   int help_y = *y1;
1258
1259   *x1 = *x2;
1260   *x2 = help_x;
1261
1262   *y1 = *y2;
1263   *y2 = help_y;
1264 }
1265
1266
1267 /* ========================================================================= */
1268 /* some stuff from "files.c"                                                 */
1269 /* ========================================================================= */
1270
1271 #define MODE_R_ALL              (S_IRUSR | S_IRGRP | S_IROTH)
1272 #define MODE_W_ALL              (S_IWUSR | S_IWGRP | S_IWOTH)
1273 #define MODE_X_ALL              (S_IXUSR | S_IXGRP | S_IXOTH)
1274 #define USERDATA_DIR_MODE       (MODE_R_ALL | MODE_X_ALL | S_IWUSR)
1275
1276 char *getUserDataDir(void)
1277 {
1278   static char *userdata_dir = NULL;
1279
1280   if (!userdata_dir)
1281   {
1282     char *home_dir = getHomeDir();
1283     char *data_dir = program.userdata_directory;
1284
1285     userdata_dir = getPath2(home_dir, data_dir);
1286   }
1287
1288   return userdata_dir;
1289 }
1290
1291 void createDirectory(char *dir, char *text)
1292 {
1293   if (access(dir, F_OK) != 0)
1294 #if defined(PLATFORM_WIN32)
1295     if (mkdir(dir) != 0)
1296 #else
1297     if (mkdir(dir, USERDATA_DIR_MODE) != 0)
1298 #endif
1299       Error(ERR_WARN, "cannot create %s directory '%s'", text, dir);
1300 }
1301
1302 void InitUserDataDirectory()
1303 {
1304   createDirectory(getUserDataDir(), "user data");
1305 }
1306
1307
1308 /* ========================================================================= */
1309 /* functions only needed for non-Unix (non-command-line) systems */
1310 /* ========================================================================= */
1311
1312 #if !defined(PLATFORM_UNIX)
1313
1314 #define ERROR_FILENAME          "error.out"
1315
1316 void initErrorFile()
1317 {
1318   char *filename;
1319
1320   InitUserDataDirectory();
1321
1322   filename = getPath2(getUserDataDir(), ERROR_FILENAME);
1323   unlink(filename);
1324   free(filename);
1325 }
1326
1327 FILE *openErrorFile()
1328 {
1329   char *filename;
1330   FILE *error_file;
1331
1332   filename = getPath2(getUserDataDir(), ERROR_FILENAME);
1333   error_file = fopen(filename, MODE_APPEND);
1334   free(filename);
1335
1336   return error_file;
1337 }
1338
1339 void dumpErrorFile()
1340 {
1341   char *filename;
1342   FILE *error_file;
1343
1344   filename = getPath2(getUserDataDir(), ERROR_FILENAME);
1345   error_file = fopen(filename, MODE_READ);
1346   free(filename);
1347
1348   if (error_file != NULL)
1349   {
1350     while (!feof(error_file))
1351       fputc(fgetc(error_file), stderr);
1352
1353     fclose(error_file);
1354   }
1355 }
1356 #endif
1357
1358
1359 /* ========================================================================= */
1360 /* the following is only for debugging purpose and normally not used         */
1361 /* ========================================================================= */
1362
1363 #define DEBUG_NUM_TIMESTAMPS    3
1364
1365 void debug_print_timestamp(int counter_nr, char *message)
1366 {
1367   static long counter[DEBUG_NUM_TIMESTAMPS][2];
1368
1369   if (counter_nr >= DEBUG_NUM_TIMESTAMPS)
1370     Error(ERR_EXIT, "debugging: increase DEBUG_NUM_TIMESTAMPS in misc.c");
1371
1372   counter[counter_nr][0] = Counter();
1373
1374   if (message)
1375     printf("%s %.2f seconds\n", message,
1376            (float)(counter[counter_nr][0] - counter[counter_nr][1]) / 1000);
1377
1378   counter[counter_nr][1] = Counter();
1379 }