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