b56ffe585e015b786223fd9257dd9702146405c7
[rocksndiamonds.git] / src / screens.c
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2006 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * screens.c                                                *
12 ***********************************************************/
13
14 #include "libgame/libgame.h"
15
16 #include "screens.h"
17 #include "events.h"
18 #include "game.h"
19 #include "tools.h"
20 #include "editor.h"
21 #include "files.h"
22 #include "tape.h"
23 #include "cartoons.h"
24 #include "network.h"
25 #include "init.h"
26 #include "config.h"
27
28 /* screens on the info screen */
29 #define INFO_MODE_MAIN                  0
30 #define INFO_MODE_TITLE                 1
31 #define INFO_MODE_ELEMENTS              2
32 #define INFO_MODE_MUSIC                 3
33 #define INFO_MODE_CREDITS               4
34 #define INFO_MODE_PROGRAM               5
35 #define INFO_MODE_VERSION               6
36 #define INFO_MODE_LEVELSET              7
37
38 #define MAX_INFO_MODES                  8
39
40 /* screens on the setup screen */
41 #define SETUP_MODE_MAIN                 0
42 #define SETUP_MODE_GAME                 1
43 #define SETUP_MODE_EDITOR               2
44 #define SETUP_MODE_GRAPHICS             3
45 #define SETUP_MODE_SOUND                4
46 #define SETUP_MODE_ARTWORK              5
47 #define SETUP_MODE_INPUT                6
48 #define SETUP_MODE_SHORTCUTS            7
49 #define SETUP_MODE_SHORTCUTS_1          8
50 #define SETUP_MODE_SHORTCUTS_2          9
51 #define SETUP_MODE_SHORTCUTS_3          10
52 #define SETUP_MODE_SHORTCUTS_4          11
53 #define SETUP_MODE_SHORTCUTS_5          12
54
55 /* sub-screens on the setup screen (generic) */
56 #define SETUP_MODE_CHOOSE_ARTWORK       13
57 #define SETUP_MODE_CHOOSE_OTHER         14
58
59 /* sub-screens on the setup screen (specific) */
60 #define SETUP_MODE_CHOOSE_GAME_SPEED    15
61 #define SETUP_MODE_CHOOSE_SCREEN_MODE   16
62 #define SETUP_MODE_CHOOSE_SCROLL_DELAY  17
63 #define SETUP_MODE_CHOOSE_GRAPHICS      18
64 #define SETUP_MODE_CHOOSE_SOUNDS        19
65 #define SETUP_MODE_CHOOSE_MUSIC         20
66 #define SETUP_MODE_CHOOSE_VOLUME_SIMPLE 21
67 #define SETUP_MODE_CHOOSE_VOLUME_LOOPS  22
68 #define SETUP_MODE_CHOOSE_VOLUME_MUSIC  23
69
70 #define MAX_SETUP_MODES                 24
71
72 /* for input setup functions */
73 #define SETUPINPUT_SCREEN_POS_START     0
74 #define SETUPINPUT_SCREEN_POS_END       (SCR_FIELDY - 4)
75 #define SETUPINPUT_SCREEN_POS_EMPTY1    (SETUPINPUT_SCREEN_POS_START + 3)
76 #define SETUPINPUT_SCREEN_POS_EMPTY2    (SETUPINPUT_SCREEN_POS_END - 1)
77
78 /* for various menu stuff  */
79 #define MENU_SCREEN_START_XPOS          1
80 #define MENU_SCREEN_START_YPOS          2
81 #define MENU_SCREEN_VALUE_XPOS          14
82 #define MENU_SCREEN_MAX_XPOS            (SCR_FIELDX - 1)
83 #define MENU_TITLE1_YPOS                8
84 #define MENU_TITLE2_YPOS                46
85 #define MAX_INFO_ELEMENTS_ON_SCREEN     10
86 #define MAX_MENU_ENTRIES_ON_SCREEN      (SCR_FIELDY - MENU_SCREEN_START_YPOS)
87 #define MAX_MENU_TEXT_LENGTH_BIG        (MENU_SCREEN_VALUE_XPOS -       \
88                                          MENU_SCREEN_START_XPOS)
89 #define MAX_MENU_TEXT_LENGTH_MEDIUM     (MAX_MENU_TEXT_LENGTH_BIG * 2)
90
91 /* buttons and scrollbars identifiers */
92 #define SCREEN_CTRL_ID_PREV_LEVEL       0
93 #define SCREEN_CTRL_ID_NEXT_LEVEL       1
94 #define SCREEN_CTRL_ID_PREV_PLAYER      2
95 #define SCREEN_CTRL_ID_NEXT_PLAYER      3
96 #define SCREEN_CTRL_ID_SCROLL_UP        4
97 #define SCREEN_CTRL_ID_SCROLL_DOWN      5
98 #define SCREEN_CTRL_ID_SCROLL_VERTICAL  6
99
100 #define NUM_SCREEN_GADGETS              7
101
102 #define NUM_SCREEN_MENUBUTTONS          4
103 #define NUM_SCREEN_SCROLLBUTTONS        2
104 #define NUM_SCREEN_SCROLLBARS           1
105
106 #define SCREEN_MASK_MAIN                (1 << 0)
107 #define SCREEN_MASK_INPUT               (1 << 1)
108
109 /* graphic position and size values for buttons and scrollbars */
110 #define SC_MENUBUTTON_XSIZE             TILEX
111 #define SC_MENUBUTTON_YSIZE             TILEY
112
113 #define SC_SCROLLBUTTON_XSIZE           TILEX
114 #define SC_SCROLLBUTTON_YSIZE           TILEY
115
116 #define SC_SCROLLBAR_XPOS               (SXSIZE - SC_SCROLLBUTTON_XSIZE)
117
118 #define SC_SCROLL_VERTICAL_XSIZE        SC_SCROLLBUTTON_XSIZE
119 #define SC_SCROLL_VERTICAL_YSIZE        ((MAX_MENU_ENTRIES_ON_SCREEN - 2) * \
120                                          SC_SCROLLBUTTON_YSIZE)
121
122 #define SC_SCROLL_UP_XPOS               SC_SCROLLBAR_XPOS
123 #define SC_SCROLL_UP_YPOS               (2 * SC_SCROLLBUTTON_YSIZE)
124
125 #define SC_SCROLL_VERTICAL_XPOS         SC_SCROLLBAR_XPOS
126 #define SC_SCROLL_VERTICAL_YPOS         (SC_SCROLL_UP_YPOS + \
127                                          SC_SCROLLBUTTON_YSIZE)
128
129 #define SC_SCROLL_DOWN_XPOS             SC_SCROLLBAR_XPOS
130 #define SC_SCROLL_DOWN_YPOS             (SC_SCROLL_VERTICAL_YPOS + \
131                                          SC_SCROLL_VERTICAL_YSIZE)
132
133 #define SC_BORDER_SIZE                  14
134
135
136 /* forward declarations of internal functions */
137 static void HandleScreenGadgets(struct GadgetInfo *);
138 static void HandleSetupScreen_Generic(int, int, int, int, int);
139 static void HandleSetupScreen_Input(int, int, int, int, int);
140 static void CustomizeKeyboard(int);
141 static void CalibrateJoystick(int);
142 static void execSetupGame(void);
143 static void execSetupGraphics(void);
144 static void execSetupSound(void);
145 static void execSetupArtwork(void);
146 static void HandleChooseTree(int, int, int, int, int, TreeInfo **);
147
148 static void DrawChooseLevelSet(void);
149 static void DrawChooseLevelNr(void);
150 static void DrawInfoScreen(void);
151 static void DrawAndFadeInInfoScreen(int);
152 static void DrawSetupScreen(void);
153
154 static void DrawInfoScreenExt(int, int);
155 static void DrawInfoScreen_NotAvailable(char *, char *);
156 static void DrawInfoScreen_HelpAnim(int, int, boolean);
157 static void DrawInfoScreen_HelpText(int, int, int, int);
158 static void HandleInfoScreen_Main(int, int, int, int, int);
159 static void HandleInfoScreen_TitleScreen(int);
160 static void HandleInfoScreen_Elements(int);
161 static void HandleInfoScreen_Music(int);
162 static void HandleInfoScreen_Credits(int);
163 static void HandleInfoScreen_Program(int);
164 static void HandleInfoScreen_Version(int);
165
166 static void MapScreenMenuGadgets(int);
167 static void MapScreenTreeGadgets(TreeInfo *);
168
169 static struct GadgetInfo *screen_gadget[NUM_SCREEN_GADGETS];
170
171 static int info_mode = INFO_MODE_MAIN;
172 static int setup_mode = SETUP_MODE_MAIN;
173
174 static TreeInfo *screen_modes = NULL;
175 static TreeInfo *screen_mode_current = NULL;
176
177 static TreeInfo *scroll_delays = NULL;
178 static TreeInfo *scroll_delay_current = NULL;
179
180 static TreeInfo *game_speeds = NULL;
181 static TreeInfo *game_speed_current = NULL;
182
183 static TreeInfo *volumes_simple = NULL;
184 static TreeInfo *volume_simple_current = NULL;
185
186 static TreeInfo *volumes_loops = NULL;
187 static TreeInfo *volume_loops_current = NULL;
188
189 static TreeInfo *volumes_music = NULL;
190 static TreeInfo *volume_music_current = NULL;
191
192 static TreeInfo *level_number = NULL;
193 static TreeInfo *level_number_current = NULL;
194
195 static struct
196 {
197   int value;
198   char *text;
199 } game_speeds_list[] =
200 {
201 #if 1
202   {     30,     "Very Slow"                     },
203   {     25,     "Slow"                          },
204   {     20,     "Normal"                        },
205   {     15,     "Fast"                          },
206   {     10,     "Very Fast"                     },
207 #else
208   {     1000,   "1/1s (Extremely Slow)"         },
209   {     500,    "1/2s"                          },
210   {     200,    "1/5s"                          },
211   {     100,    "1/10s"                         },
212   {     50,     "1/20s"                         },
213   {     29,     "1/35s (Original Supaplex)"     },
214   {     25,     "1/40s"                         },
215   {     20,     "1/50s (Normal Speed)"          },
216   {     14,     "1/70s (Maximum Supaplex)"      },
217   {     10,     "1/100s"                        },
218   {     5,      "1/200s"                        },
219   {     2,      "1/500s"                        },
220   {     1,      "1/1000s (Extremely Fast)"      },
221 #endif
222
223   {     -1,     NULL                            },
224 };
225
226 static struct
227 {
228   int value;
229   char *text;
230 } scroll_delays_list[] =
231 {
232   {     0,      "0 Tiles (No Scroll Delay)"     },
233   {     1,      "1 Tile"                        },
234   {     2,      "2 Tiles"                       },
235   {     3,      "3 Tiles (Default)"             },
236   {     4,      "4 Tiles"                       },
237   {     5,      "5 Tiles"                       },
238   {     6,      "6 Tiles"                       },
239   {     7,      "7 Tiles"                       },
240   {     8,      "8 Tiles (Maximum Scroll Delay)"},
241
242   {     -1,     NULL                            },
243 };
244
245 static struct
246 {
247   int value;
248   char *text;
249 } volumes_list[] =
250 {
251   {     0,      "0 %"                           },
252   {     10,     "10 %"                          },
253   {     20,     "20 %"                          },
254   {     30,     "30 %"                          },
255   {     40,     "40 %"                          },
256   {     50,     "50 %"                          },
257   {     60,     "60 %"                          },
258   {     70,     "70 %"                          },
259   {     80,     "80 %"                          },
260   {     90,     "90 %"                          },
261   {     100,    "100 %"                         },
262
263   {     -1,     NULL                            },
264 };
265
266 #define DRAW_MODE(s)            ((s) >= GAME_MODE_MAIN &&               \
267                                  (s) <= GAME_MODE_SETUP ? (s) :         \
268                                  (s) == GAME_MODE_PSEUDO_TYPENAME ?     \
269                                  GAME_MODE_MAIN : GAME_MODE_DEFAULT)
270
271 /* (there are no draw offset definitions needed for INFO_MODE_TITLE) */
272 #define DRAW_MODE_INFO(i)       ((i) >= INFO_MODE_ELEMENTS &&           \
273                                  (i) <= INFO_MODE_LEVELSET ? (i) :      \
274                                  INFO_MODE_MAIN)
275
276 #define DRAW_MODE_SETUP(i)      ((i) >= SETUP_MODE_MAIN &&              \
277                                  (i) <= SETUP_MODE_SHORTCUTS_5 ? (i) :  \
278                                  (i) >= SETUP_MODE_CHOOSE_GRAPHICS &&   \
279                                  (i) <= SETUP_MODE_CHOOSE_MUSIC ?       \
280                                  SETUP_MODE_CHOOSE_ARTWORK :            \
281                                  SETUP_MODE_CHOOSE_OTHER)
282
283 #define DRAW_XOFFSET_INFO(i)    (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ?  \
284                                  menu.draw_xoffset[GAME_MODE_INFO] :    \
285                                  menu.draw_xoffset_info[DRAW_MODE_INFO(i)])
286 #define DRAW_YOFFSET_INFO(i)    (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ?  \
287                                  menu.draw_yoffset[GAME_MODE_INFO] :    \
288                                  menu.draw_yoffset_info[DRAW_MODE_INFO(i)])
289
290 #define DRAW_XOFFSET_SETUP(i)   (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
291                                  menu.draw_xoffset[GAME_MODE_SETUP] :   \
292                                  menu.draw_xoffset_setup[DRAW_MODE_SETUP(i)])
293 #define DRAW_YOFFSET_SETUP(i)   (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
294                                  menu.draw_yoffset[GAME_MODE_SETUP] :   \
295                                  menu.draw_yoffset_setup[DRAW_MODE_SETUP(i)])
296
297 #define DRAW_XOFFSET(s)         ((s) == GAME_MODE_INFO ?                \
298                                  DRAW_XOFFSET_INFO(info_mode) :         \
299                                  (s) == GAME_MODE_SETUP ?               \
300                                  DRAW_XOFFSET_SETUP(setup_mode) :       \
301                                  menu.draw_xoffset[DRAW_MODE(s)])
302 #define DRAW_YOFFSET(s)         ((s) == GAME_MODE_INFO ?                \
303                                  DRAW_YOFFSET_INFO(info_mode) :         \
304                                  (s) == GAME_MODE_SETUP ?               \
305                                  DRAW_YOFFSET_SETUP(setup_mode) :       \
306                                  menu.draw_yoffset[DRAW_MODE(s)])
307
308 #define mSX                     (SX + DRAW_XOFFSET(game_status))
309 #define mSY                     (SY + DRAW_YOFFSET(game_status))
310
311 #define NUM_MENU_ENTRIES_ON_SCREEN (menu.list_size[game_status] > 2 ?   \
312                                     menu.list_size[game_status] :       \
313                                     MAX_MENU_ENTRIES_ON_SCREEN)
314
315 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
316 #define NUM_SCROLLBAR_BITMAPS           2
317 static Bitmap *scrollbar_bitmap[NUM_SCROLLBAR_BITMAPS];
318 #endif
319
320
321 /* title display and control definitions */
322
323 #define MAX_NUM_TITLE_SCREENS   (2 * MAX_NUM_TITLE_IMAGES +             \
324                                  2 * MAX_NUM_TITLE_MESSAGES)
325
326 static int num_title_screens = 0;
327
328 struct TitleControlInfo
329 {
330   boolean is_image;
331   boolean initial;
332   int local_nr;
333   int sort_priority;
334 };
335
336 struct TitleControlInfo title_controls[MAX_NUM_TITLE_SCREENS];
337
338 /* main menu display and control definitions */
339
340 #define MAIN_CONTROL_NAME                       0
341 #define MAIN_CONTROL_LEVELS                     1
342 #define MAIN_CONTROL_SCORES                     2
343 #define MAIN_CONTROL_EDITOR                     3
344 #define MAIN_CONTROL_INFO                       4
345 #define MAIN_CONTROL_GAME                       5
346 #define MAIN_CONTROL_SETUP                      6
347 #define MAIN_CONTROL_QUIT                       7
348 #define MAIN_CONTROL_PREV_LEVEL                 8
349 #define MAIN_CONTROL_NEXT_LEVEL                 9
350 #define MAIN_CONTROL_FIRST_LEVEL                10
351 #define MAIN_CONTROL_LAST_LEVEL                 11
352 #define MAIN_CONTROL_LEVEL_NUMBER               12
353 #define MAIN_CONTROL_LEVEL_INFO_1               13
354 #define MAIN_CONTROL_LEVEL_INFO_2               14
355 #define MAIN_CONTROL_LEVEL_NAME                 15
356 #define MAIN_CONTROL_LEVEL_AUTHOR               16
357 #define MAIN_CONTROL_LEVEL_YEAR                 17
358 #define MAIN_CONTROL_LEVEL_IMPORTED_FROM        18
359 #define MAIN_CONTROL_LEVEL_IMPORTED_BY          19
360 #define MAIN_CONTROL_LEVEL_TESTED_BY            20
361 #define MAIN_CONTROL_TITLE_1                    21
362 #define MAIN_CONTROL_TITLE_2                    22
363 #define MAIN_CONTROL_TITLE_3                    23
364
365 static char str_main_text_name[10];
366 static char str_main_text_first_level[10];
367 static char str_main_text_last_level[10];
368 static char str_main_text_level_number[10];
369
370 static char *main_text_name                     = str_main_text_name;
371 static char *main_text_first_level              = str_main_text_first_level;
372 static char *main_text_last_level               = str_main_text_last_level;
373 static char *main_text_level_number             = str_main_text_level_number;
374 static char *main_text_levels                   = "Levelset";
375 static char *main_text_scores                   = "Hall Of Fame";
376 static char *main_text_editor                   = "Level Creator";
377 static char *main_text_info                     = "Info Screen";
378 static char *main_text_game                     = "Start Game";
379 static char *main_text_setup                    = "Setup";
380 static char *main_text_quit                     = "Quit";
381 static char *main_text_level_name               = level.name;
382 static char *main_text_level_author             = level.author;
383 static char *main_text_level_year               = NULL;
384 static char *main_text_level_imported_from      = NULL;
385 static char *main_text_level_imported_by        = NULL;
386 static char *main_text_level_tested_by          = NULL;
387 static char *main_text_title_1                  = PROGRAM_TITLE_STRING;
388 static char *main_text_title_2                  = PROGRAM_COPYRIGHT_STRING;
389 static char *main_text_title_3                  = PROGRAM_GAME_BY_STRING;
390
391 struct MainControlInfo
392 {
393   int nr;
394
395   struct MenuPosInfo *pos_button;
396   int button_graphic;
397
398   struct TextPosInfo *pos_text;
399   char **text;
400
401   struct TextPosInfo *pos_input;
402   char **input;
403 };
404
405 static struct MainControlInfo main_controls[] =
406 {
407   {
408     MAIN_CONTROL_NAME,
409     &menu.main.button.name,             IMG_MENU_BUTTON_NAME,
410     &menu.main.text.name,               &main_text_name,
411     &menu.main.input.name,              &setup.player_name,
412   },
413   {
414     MAIN_CONTROL_LEVELS,
415     &menu.main.button.levels,           IMG_MENU_BUTTON_LEVELS,
416     &menu.main.text.levels,             &main_text_levels,
417     NULL,                               NULL,
418   },
419   {
420     MAIN_CONTROL_SCORES,
421     &menu.main.button.scores,           IMG_MENU_BUTTON_SCORES,
422     &menu.main.text.scores,             &main_text_scores,
423     NULL,                               NULL,
424   },
425   {
426     MAIN_CONTROL_EDITOR,
427     &menu.main.button.editor,           IMG_MENU_BUTTON_EDITOR,
428     &menu.main.text.editor,             &main_text_editor,
429     NULL,                               NULL,
430   },
431   {
432     MAIN_CONTROL_INFO,
433     &menu.main.button.info,             IMG_MENU_BUTTON_INFO,
434     &menu.main.text.info,               &main_text_info,
435     NULL,                               NULL,
436   },
437   {
438     MAIN_CONTROL_GAME,
439     &menu.main.button.game,             IMG_MENU_BUTTON_GAME,
440     &menu.main.text.game,               &main_text_game,
441     NULL,                               NULL,
442   },
443   {
444     MAIN_CONTROL_SETUP,
445     &menu.main.button.setup,            IMG_MENU_BUTTON_SETUP,
446     &menu.main.text.setup,              &main_text_setup,
447     NULL,                               NULL,
448   },
449   {
450     MAIN_CONTROL_QUIT,
451     &menu.main.button.quit,             IMG_MENU_BUTTON_QUIT,
452     &menu.main.text.quit,               &main_text_quit,
453     NULL,                               NULL,
454   },
455 #if 0
456   /* (these two buttons are real gadgets) */
457   {
458     MAIN_CONTROL_PREV_LEVEL,
459     &menu.main.button.prev_level,       IMG_MENU_BUTTON_PREV_LEVEL,
460     NULL,                               NULL,
461     NULL,                               NULL,
462   },
463   {
464     MAIN_CONTROL_NEXT_LEVEL,
465     &menu.main.button.next_level,       IMG_MENU_BUTTON_NEXT_LEVEL,
466     NULL,                               NULL,
467     NULL,                               NULL,
468   },
469 #endif
470   {
471     MAIN_CONTROL_FIRST_LEVEL,
472     NULL,                               -1,
473     &menu.main.text.first_level,        &main_text_first_level,
474     NULL,                               NULL,
475   },
476   {
477     MAIN_CONTROL_LAST_LEVEL,
478     NULL,                               -1,
479     &menu.main.text.last_level,         &main_text_last_level,
480     NULL,                               NULL,
481   },
482   {
483     MAIN_CONTROL_LEVEL_NUMBER,
484     NULL,                               -1,
485     &menu.main.text.level_number,       &main_text_level_number,
486     NULL,                               NULL,
487   },
488   {
489     MAIN_CONTROL_LEVEL_INFO_1,
490     NULL,                               -1,
491     &menu.main.text.level_info_1,       NULL,
492     NULL,                               NULL,
493   },
494   {
495     MAIN_CONTROL_LEVEL_INFO_2,
496     NULL,                               -1,
497     &menu.main.text.level_info_2,       NULL,
498     NULL,                               NULL,
499   },
500   {
501     MAIN_CONTROL_LEVEL_NAME,
502     NULL,                               -1,
503     &menu.main.text.level_name,         &main_text_level_name,
504     NULL,                               NULL,
505   },
506   {
507     MAIN_CONTROL_LEVEL_AUTHOR,
508     NULL,                               -1,
509     &menu.main.text.level_author,       &main_text_level_author,
510     NULL,                               NULL,
511   },
512   {
513     MAIN_CONTROL_LEVEL_YEAR,
514     NULL,                               -1,
515     &menu.main.text.level_year,         &main_text_level_year,
516     NULL,                               NULL,
517   },
518   {
519     MAIN_CONTROL_LEVEL_IMPORTED_FROM,
520     NULL,                               -1,
521     &menu.main.text.level_imported_from, &main_text_level_imported_from,
522     NULL,                               NULL,
523   },
524   {
525     MAIN_CONTROL_LEVEL_IMPORTED_BY,
526     NULL,                               -1,
527     &menu.main.text.level_imported_by,  &main_text_level_imported_by,
528     NULL,                               NULL,
529   },
530   {
531     MAIN_CONTROL_LEVEL_TESTED_BY,
532     NULL,                               -1,
533     &menu.main.text.level_tested_by,    &main_text_level_tested_by,
534     NULL,                               NULL,
535   },
536   {
537     MAIN_CONTROL_TITLE_1,
538     NULL,                               -1,
539     &menu.main.text.title_1,            &main_text_title_1,
540     NULL,                               NULL,
541   },
542   {
543     MAIN_CONTROL_TITLE_2,
544     NULL,                               -1,
545     &menu.main.text.title_2,            &main_text_title_2,
546     NULL,                               NULL,
547   },
548   {
549     MAIN_CONTROL_TITLE_3,
550     NULL,                               -1,
551     &menu.main.text.title_3,            &main_text_title_3,
552     NULL,                               NULL,
553   },
554
555   {
556     -1,
557     NULL,                               -1,
558     NULL,                               NULL,
559     NULL,                               NULL,
560   }
561 };
562
563
564 static int getTitleScreenGraphic(int nr, boolean initial)
565 {
566   return (initial ? IMG_TITLESCREEN_INITIAL_1 : IMG_TITLESCREEN_1) + nr;
567 }
568
569 static struct TitleMessageInfo *getTitleMessageInfo(int nr, boolean initial)
570 {
571   return (initial ? &titlemessage_initial[nr] : &titlemessage[nr]);
572 }
573
574 #if 0
575 static int getTitleScreenGameMode(boolean initial)
576 {
577   return (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
578 }
579 #endif
580
581 static int getTitleMessageGameMode(boolean initial)
582 {
583   return (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
584 }
585
586 #if 0
587 static int getTitleScreenBackground(boolean initial)
588 {
589   return (initial ? IMG_BACKGROUND_TITLE_INITIAL : IMG_BACKGROUND_TITLE);
590 }
591 #endif
592
593 #if 0
594 static int getTitleMessageBackground(int nr, boolean initial)
595 {
596   return (initial ? IMG_BACKGROUND_TITLE_INITIAL : IMG_BACKGROUND_TITLE);
597 }
598 #endif
599
600 static int getTitleBackground(int nr, boolean initial, boolean is_image)
601 {
602   int base = (is_image ?
603               (initial ? IMG_BACKGROUND_TITLESCREEN_INITIAL_1 :
604                          IMG_BACKGROUND_TITLESCREEN_1) :
605               (initial ? IMG_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
606                          IMG_BACKGROUND_TITLEMESSAGE_1));
607   int graphic_global = (initial ? IMG_BACKGROUND_TITLE_INITIAL :
608                                   IMG_BACKGROUND_TITLE);
609   int graphic_local = base + nr;
610
611   if (graphic_info[graphic_local].bitmap != NULL)
612     return graphic_local;
613
614   if (graphic_info[graphic_global].bitmap != NULL)
615     return graphic_global;
616
617   return IMG_UNDEFINED;
618 }
619
620 static int getTitleSound(struct TitleControlInfo *tci)
621 {
622   boolean is_image = tci->is_image;
623   int initial = tci->initial;
624   int nr = tci->local_nr;
625   int mode = (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
626   int base = (is_image ?
627               (initial ? SND_BACKGROUND_TITLESCREEN_INITIAL_1 :
628                          SND_BACKGROUND_TITLESCREEN_1) :
629               (initial ? SND_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
630                          SND_BACKGROUND_TITLEMESSAGE_1));
631   int sound_global = menu.sound[mode];
632   int sound_local = base + nr;
633
634 #if 0
635   printf("::: %d, %d, %d: %d ['%s'], %d ['%s']\n",
636          nr, initial, is_image,
637          sound_global, getSoundListEntry(sound_global)->filename,
638          sound_local, getSoundListEntry(sound_local)->filename);
639 #endif
640
641   if (!strEqual(getSoundListEntry(sound_local)->filename, UNDEFINED_FILENAME))
642     return sound_local;
643
644   if (!strEqual(getSoundListEntry(sound_global)->filename, UNDEFINED_FILENAME))
645     return sound_global;
646
647   return SND_UNDEFINED;
648 }
649
650 static int getTitleMusic(struct TitleControlInfo *tci)
651 {
652   boolean is_image = tci->is_image;
653   int initial = tci->initial;
654   int nr = tci->local_nr;
655   int mode = (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
656   int base = (is_image ?
657               (initial ? MUS_BACKGROUND_TITLESCREEN_INITIAL_1 :
658                          MUS_BACKGROUND_TITLESCREEN_1) :
659               (initial ? MUS_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
660                          MUS_BACKGROUND_TITLEMESSAGE_1));
661   int music_global = menu.music[mode];
662   int music_local = base + nr;
663
664 #if 0
665   printf("::: %d, %d, %d: %d ['%s'], %d ['%s']\n",
666          nr, initial, is_image,
667          music_global, getMusicListEntry(music_global)->filename,
668          music_local, getMusicListEntry(music_local)->filename);
669 #endif
670
671   if (!strEqual(getMusicListEntry(music_local)->filename, UNDEFINED_FILENAME))
672     return music_local;
673
674   if (!strEqual(getMusicListEntry(music_global)->filename, UNDEFINED_FILENAME))
675     return music_global;
676
677   return MUS_UNDEFINED;
678 }
679
680 static struct TitleFadingInfo getTitleFading(struct TitleControlInfo *tci)
681 {
682   boolean is_image = tci->is_image;
683   int initial = tci->initial;
684   int nr = tci->local_nr;
685   struct TitleFadingInfo ti;
686
687   if (is_image)
688   {
689     int graphic = getTitleScreenGraphic(nr, initial);
690
691     /* initialize fading control values to default title config settings */
692     ti = (initial ? title_initial_default : title_default);
693
694     /* override default settings with image config settings, if defined */
695     if (graphic_info[graphic].fade_mode != FADE_MODE_DEFAULT)
696       ti.fade_mode = graphic_info[graphic].fade_mode;
697     if (graphic_info[graphic].fade_delay > -1)
698       ti.fade_delay = graphic_info[graphic].fade_delay;
699     if (graphic_info[graphic].post_delay > -1)
700       ti.post_delay = graphic_info[graphic].post_delay;
701     if (graphic_info[graphic].auto_delay > -1)
702       ti.auto_delay = graphic_info[graphic].auto_delay;
703   }
704   else
705   {
706     if (initial)
707     {
708       ti.fade_mode  = titlemessage_initial[nr].fade_mode;
709       ti.fade_delay = titlemessage_initial[nr].fade_delay;
710       ti.post_delay = titlemessage_initial[nr].post_delay;
711       ti.auto_delay = titlemessage_initial[nr].auto_delay;
712     }
713     else
714     {
715       ti.fade_mode  = titlemessage[nr].fade_mode;
716       ti.fade_delay = titlemessage[nr].fade_delay;
717       ti.post_delay = titlemessage[nr].post_delay;
718       ti.auto_delay = titlemessage[nr].auto_delay;
719     }
720   }
721
722 #if 0
723   if (ti.anim_mode == ANIM_NONE)
724     ti.fade_delay = ti.post_delay = 0;
725 #endif
726
727   return ti;
728 }
729
730 static int compareTitleControlInfo(const void *object1, const void *object2)
731 {
732   const struct TitleControlInfo *tci1 = (struct TitleControlInfo *)object1;
733   const struct TitleControlInfo *tci2 = (struct TitleControlInfo *)object2;
734   int compare_result;
735
736   if (tci1->initial != tci2->initial)
737     compare_result = (tci1->initial ? -1 : +1);
738   else if (tci1->sort_priority != tci2->sort_priority)
739     compare_result = tci1->sort_priority - tci2->sort_priority;
740   else if (tci1->is_image != tci2->is_image)
741     compare_result = (tci1->is_image ? -1 : +1);
742   else
743     compare_result = tci1->local_nr - tci2->local_nr;
744
745   return compare_result;
746 }
747
748 static void InitializeTitleControlsExt_AddTitleInfo(boolean is_image,
749                                                     boolean initial,
750                                                     int nr, int sort_priority)
751 {
752   title_controls[num_title_screens].is_image = is_image;
753   title_controls[num_title_screens].initial = initial;
754   title_controls[num_title_screens].local_nr = nr;
755   title_controls[num_title_screens].sort_priority = sort_priority;
756
757   num_title_screens++;
758 }
759
760 static void InitializeTitleControls_CheckTitleInfo(boolean initial)
761 {
762   int i;
763
764   for (i = 0; i < MAX_NUM_TITLE_IMAGES; i++)
765   {
766     int graphic = getTitleScreenGraphic(i, initial);
767     Bitmap *bitmap = graphic_info[graphic].bitmap;
768     int sort_priority = graphic_info[graphic].sort_priority;
769
770 #if 0
771     /* skip images and messages (fonts!) when using forced custom graphics */
772     if (setup.override_level_graphics && !initial)
773       continue;
774 #endif
775
776     if (bitmap != NULL)
777       InitializeTitleControlsExt_AddTitleInfo(TRUE, initial, i, sort_priority);
778   }
779
780   for (i = 0; i < MAX_NUM_TITLE_MESSAGES; i++)
781   {
782     struct TitleMessageInfo *tmi = getTitleMessageInfo(i, initial);
783     char *filename = getLevelSetTitleMessageFilename(i, initial);
784     int sort_priority = tmi->sort_priority;
785
786 #if 0
787     /* skip images and messages (fonts!) when using forced custom graphics */
788     if (setup.override_level_graphics)
789       continue;
790 #endif
791
792     if (filename != NULL)
793       InitializeTitleControlsExt_AddTitleInfo(FALSE, initial, i, sort_priority);
794   }
795 }
796
797 static void InitializeTitleControls(boolean show_title_initial)
798 {
799   num_title_screens = 0;
800
801 #if 1
802   /* 1st step: initialize title screens for game start (only when starting) */
803   if (show_title_initial)
804     InitializeTitleControls_CheckTitleInfo(TRUE);
805 #endif
806
807   /* 2nd step: initialize title screens for current level set */
808   InitializeTitleControls_CheckTitleInfo(FALSE);
809
810   /* sort title screens according to sort_priority and title number */
811   qsort(title_controls, num_title_screens, sizeof(struct TitleControlInfo),
812         compareTitleControlInfo);
813 }
814
815 static boolean visibleMenuPos(struct MenuPosInfo *pos)
816 {
817   return (pos != NULL && pos->x != -1 && pos->y != -1);
818 }
819
820 static boolean visibleTextPos(struct TextPosInfo *pos)
821 {
822   return (pos != NULL && pos->x != -1 && pos->y != -1);
823 }
824
825 static void InitializeMainControls()
826 {
827   boolean local_team_mode = (!options.network && setup.team_mode);
828   int i;
829
830   /* set main control text values to dynamically determined values */
831   sprintf(main_text_name,         "%s",   local_team_mode ? "Team:" : "Name:");
832
833   strcpy(main_text_first_level,  int2str(leveldir_current->first_level,
834                                          menu.main.text.first_level.size));
835   strcpy(main_text_last_level,   int2str(leveldir_current->last_level,
836                                          menu.main.text.last_level.size));
837   strcpy(main_text_level_number, int2str(level_nr,
838                                          menu.main.text.level_number.size));
839
840   main_text_level_year          = leveldir_current->year;
841   main_text_level_imported_from = leveldir_current->imported_from;
842   main_text_level_imported_by   = leveldir_current->imported_by;
843   main_text_level_tested_by     = leveldir_current->tested_by;
844
845   /* set main control screen positions to dynamically determined values */
846   for (i = 0; main_controls[i].nr != -1; i++)
847   {
848     struct MainControlInfo *mci = &main_controls[i];
849     int nr                         = mci->nr;
850     struct MenuPosInfo *pos_button = mci->pos_button;
851     struct TextPosInfo *pos_text   = mci->pos_text;
852     struct TextPosInfo *pos_input  = mci->pos_input;
853     char *text                     = (mci->text  ? *mci->text  : NULL);
854     char *input                    = (mci->input ? *mci->input : NULL);
855     int button_graphic             = mci->button_graphic;
856 #if 1
857     int font_text                  = (pos_text  ? pos_text->font  : -1);
858     int font_input                 = (pos_input ? pos_input->font : -1);
859 #else
860     int font_text                  = mci->font_text;
861     int font_input                 = mci->font_input;
862 #endif
863
864     int font_text_width   = (font_text  != -1 ? getFontWidth(font_text)   : 0);
865     int font_text_height  = (font_text  != -1 ? getFontHeight(font_text)  : 0);
866     int font_input_width  = (font_input != -1 ? getFontWidth(font_input)  : 0);
867     int font_input_height = (font_input != -1 ? getFontHeight(font_input) : 0);
868     int text_chars  = (text  != NULL ? strlen(text)  : 0);
869     int input_chars = (input != NULL ? strlen(input) : 0);
870
871     int button_width =
872       (button_graphic != -1 ? graphic_info[button_graphic].width  : 0);
873     int button_height =
874       (button_graphic != -1 ? graphic_info[button_graphic].height : 0);
875     int text_width   = font_text_width * text_chars;
876     int text_height  = font_text_height;
877     int input_width  = font_input_width * input_chars;
878     int input_height = font_input_height;
879
880     if (nr == MAIN_CONTROL_NAME)
881     {
882 #if 0
883       if (menu.main.input.name.x == -1)
884         menu.main.input.name.x = menu.main.text.name.x + text_width;
885       if (menu.main.input.name.y == -1)
886         menu.main.input.name.y = menu.main.text.name.y;
887 #endif
888
889 #if 1
890       menu.main.input.name.width  = input_width;
891       menu.main.input.name.height = input_height;
892 #else
893       menu.main.input.name.width  = font_input_width * MAX_PLAYER_NAME_LEN;
894       menu.main.input.name.height = font_input_height;
895 #endif
896     }
897
898     if (pos_button != NULL)             /* (x/y may be -1/-1 here) */
899     {
900       if (pos_button->width == 0)
901         pos_button->width = button_width;
902       if (pos_button->height == 0)
903         pos_button->height = button_height;
904     }
905
906     if (pos_text != NULL)               /* (x/y may be -1/-1 here) */
907     {
908 #if 1
909       /* calculate size for non-clickable text -- needed for text alignment */
910       boolean calculate_text_size = (pos_button == NULL && text != NULL);
911 #else
912       /* calculate width for non-clickable text -- needed for text alignment */
913       boolean calculate_text_width = (pos_button == NULL && text != NULL);
914 #endif
915
916       if (visibleMenuPos(pos_button))
917       {
918         if (pos_text->x == -1)
919           pos_text->x = pos_button->x + pos_button->width;
920         if (pos_text->y == -1)
921           pos_text->y = pos_button->y;
922       }
923
924 #if 1
925       if (pos_text->width == -1 || calculate_text_size)
926         pos_text->width = text_width;
927       if (pos_text->height == -1 || calculate_text_size)
928         pos_text->height = text_height;
929 #else
930       if (pos_text->width == -1 || calculate_text_width)
931         pos_text->width = text_width;
932       if (pos_text->height == -1)
933         pos_text->height = text_height;
934 #endif
935     }
936
937     if (pos_input != NULL)              /* (x/y may be -1/-1 here) */
938     {
939       if (visibleTextPos(pos_text))
940       {
941         if (pos_input->x == -1)
942           pos_input->x = pos_text->x + pos_text->width;
943         if (pos_input->y == -1)
944           pos_input->y = pos_text->y;
945       }
946
947       if (pos_input->width == -1)
948         pos_input->width = input_width;
949       if (pos_input->height == -1)
950         pos_input->height = input_height;
951     }
952   }
953 }
954
955 static void DrawCursorAndText_Main_Ext(int nr, boolean active_text,
956                                        boolean active_input)
957 {
958   int i;
959
960   for (i = 0; main_controls[i].nr != -1; i++)
961   {
962     struct MainControlInfo *mci = &main_controls[i];
963
964     if (mci->nr == nr || nr == -1)
965     {
966       struct MenuPosInfo *pos_button = mci->pos_button;
967       struct TextPosInfo *pos_text   = mci->pos_text;
968       struct TextPosInfo *pos_input  = mci->pos_input;
969       char *text                     = (mci->text  ? *mci->text  : NULL);
970       char *input                    = (mci->input ? *mci->input : NULL);
971       int button_graphic             = mci->button_graphic;
972 #if 1
973       int font_text                  = (pos_text  ? pos_text->font  : -1);
974       int font_input                 = (pos_input ? pos_input->font : -1);
975 #else
976       int font_text                  = mci->font_text;
977       int font_input                 = mci->font_input;
978 #endif
979
980       if (active_text)
981       {
982         button_graphic = BUTTON_ACTIVE(button_graphic);
983         font_text = FONT_ACTIVE(font_text);
984       }
985
986       if (active_input)
987       {
988         font_input = FONT_ACTIVE(font_input);
989       }
990
991       if (visibleMenuPos(pos_button))
992       {
993         struct MenuPosInfo *pos = pos_button;
994         int x = mSX + pos->x;
995         int y = mSY + pos->y;
996
997         DrawBackgroundForGraphic(x, y, pos->width, pos->height, button_graphic);
998         DrawFixedGraphicThruMaskExt(drawto, x, y, button_graphic, 0);
999       }
1000
1001       if (visibleTextPos(pos_text) && text != NULL)
1002       {
1003         struct TextPosInfo *pos = pos_text;
1004         int x = mSX + ALIGNED_TEXT_XPOS(pos);
1005         int y = mSY + ALIGNED_TEXT_YPOS(pos);
1006
1007 #if 1
1008         /* (check why/if this is needed) */
1009         DrawBackgroundForFont(x, y, pos->width, pos->height, font_text);
1010 #endif
1011         DrawText(x, y, text, font_text);
1012       }
1013
1014       if (visibleTextPos(pos_input) && input != NULL)
1015       {
1016         struct TextPosInfo *pos = pos_input;
1017         int x = mSX + ALIGNED_TEXT_XPOS(pos);
1018         int y = mSY + ALIGNED_TEXT_YPOS(pos);
1019
1020 #if 1
1021         /* (check why/if this is needed) */
1022         DrawBackgroundForFont(x, y, pos->width, pos->height, font_input);
1023 #endif
1024         DrawText(x, y, input, font_input);
1025       }
1026     }
1027   }
1028 }
1029
1030 static void DrawCursorAndText_Main(int nr, boolean active_text)
1031 {
1032   DrawCursorAndText_Main_Ext(nr, active_text, FALSE);
1033 }
1034
1035 #if 0
1036 static void DrawCursorAndText_Main_Input(int nr, boolean active_text)
1037 {
1038   DrawCursorAndText_Main_Ext(nr, active_text, TRUE);
1039 }
1040 #endif
1041
1042 static struct MainControlInfo *getMainControlInfo(int nr)
1043 {
1044   int i;
1045
1046   for (i = 0; main_controls[i].nr != -1; i++)
1047     if (main_controls[i].nr == nr)
1048       return &main_controls[i];
1049
1050   return NULL;
1051 }
1052
1053 static boolean insideMenuPosRect(struct MenuPosInfo *rect, int x, int y)
1054 {
1055   if (rect == NULL)
1056     return FALSE;
1057
1058   int rect_x = ALIGNED_TEXT_XPOS(rect);
1059   int rect_y = ALIGNED_TEXT_YPOS(rect);
1060
1061   return (x >= rect_x && x < rect_x + rect->width &&
1062           y >= rect_y && y < rect_y + rect->height);
1063 }
1064
1065 static boolean insideTextPosRect(struct TextPosInfo *rect, int x, int y)
1066 {
1067   if (rect == NULL)
1068     return FALSE;
1069
1070   int rect_x = ALIGNED_TEXT_XPOS(rect);
1071   int rect_y = ALIGNED_TEXT_YPOS(rect);
1072
1073 #if 0
1074   printf("::: insideTextPosRect: (%d, %d), (%d, %d) [%d, %d] (%d, %d) => %d\n",
1075          x, y, rect_x, rect_y, rect->x, rect->y, rect->width, rect->height,
1076          (x >= rect_x && x < rect_x + rect->width &&
1077           y >= rect_y && y < rect_y + rect->height));
1078 #endif
1079
1080   return (x >= rect_x && x < rect_x + rect->width &&
1081           y >= rect_y && y < rect_y + rect->height);
1082 }
1083
1084 static void drawCursorExt(int xpos, int ypos, boolean active, int graphic)
1085 {
1086 #if 1
1087   static int cursor_array[MAX_LEV_FIELDY];
1088 #else
1089   static int cursor_array[SCR_FIELDY];
1090 #endif
1091   int x = mSX + TILEX * xpos;
1092   int y = mSY + TILEY * (MENU_SCREEN_START_YPOS + ypos);
1093
1094   if (xpos == 0)
1095   {
1096     if (graphic != -1)
1097       cursor_array[ypos] = graphic;
1098     else
1099       graphic = cursor_array[ypos];
1100   }
1101
1102   if (active)
1103     graphic = BUTTON_ACTIVE(graphic);
1104
1105   DrawBackgroundForGraphic(x, y, TILEX, TILEY, graphic);
1106   DrawFixedGraphicThruMaskExt(drawto, x, y, graphic, 0);
1107 }
1108
1109 static void initCursor(int ypos, int graphic)
1110 {
1111   drawCursorExt(0, ypos, FALSE, graphic);
1112 }
1113
1114 static void drawCursor(int ypos, boolean active)
1115 {
1116   drawCursorExt(0, ypos, active, -1);
1117 }
1118
1119 static void drawCursorXY(int xpos, int ypos, int graphic)
1120 {
1121   drawCursorExt(xpos, ypos, FALSE, graphic);
1122 }
1123
1124 static void drawChooseTreeCursor(int ypos, boolean active)
1125 {
1126   int last_game_status = game_status;   /* save current game status */
1127
1128 #if 0
1129   /* force LEVELS draw offset on artwork setup screen */
1130   game_status = GAME_MODE_LEVELS;
1131 #endif
1132
1133   drawCursorExt(0, ypos, active, -1);
1134
1135   game_status = last_game_status;       /* restore current game status */
1136 }
1137
1138 void DrawHeadline()
1139 {
1140   DrawTextSCentered(MENU_TITLE1_YPOS, FONT_TITLE_1, PROGRAM_TITLE_STRING);
1141   DrawTextSCentered(MENU_TITLE2_YPOS, FONT_TITLE_2, PROGRAM_COPYRIGHT_STRING);
1142 }
1143
1144 #if 0
1145 static int getPrevlevelButtonPos()
1146 {
1147   return 10;
1148 }
1149
1150 static int getCurrentLevelTextPos()
1151 {
1152   return (getPrevlevelButtonPos() + 1);
1153 }
1154
1155 static int getNextLevelButtonPos()
1156 {
1157   return getPrevlevelButtonPos() + 3 + 1;
1158 }
1159
1160 static int getLevelRangeTextPos()
1161 {
1162   return getNextLevelButtonPos() + 1;
1163 }
1164 #endif
1165
1166 int effectiveGameStatus()
1167 {
1168   if (game_status == GAME_MODE_INFO && info_mode == INFO_MODE_TITLE)
1169     return GAME_MODE_TITLE;
1170
1171   return game_status;
1172 }
1173
1174 void DrawTitleScreenImage(int nr, boolean initial)
1175 {
1176   int graphic = getTitleScreenGraphic(nr, initial);
1177   Bitmap *bitmap = graphic_info[graphic].bitmap;
1178   int width  = graphic_info[graphic].width;
1179   int height = graphic_info[graphic].height;
1180   int src_x = graphic_info[graphic].src_x;
1181   int src_y = graphic_info[graphic].src_y;
1182   int dst_x, dst_y;
1183
1184   if (bitmap == NULL)
1185     return;
1186
1187   if (width > WIN_XSIZE)
1188   {
1189     /* image width too large for window => center image horizontally */
1190     src_x = (width - WIN_XSIZE) / 2;
1191     width = WIN_XSIZE;
1192   }
1193
1194   if (height > WIN_YSIZE)
1195   {
1196     /* image height too large for window => center image vertically */
1197     src_y = (height - WIN_YSIZE) / 2;
1198     height = WIN_YSIZE;
1199   }
1200
1201   /* always display title screens centered */
1202   dst_x = (WIN_XSIZE - width) / 2;
1203   dst_y = (WIN_YSIZE - height) / 2;
1204
1205   SetDrawBackgroundMask(REDRAW_ALL);
1206   SetWindowBackgroundImage(getTitleBackground(nr, initial, TRUE));
1207
1208   ClearRectangleOnBackground(drawto, 0, 0, WIN_XSIZE, WIN_YSIZE);
1209
1210   if (DrawingOnBackground(dst_x, dst_y))
1211   {
1212     SetClipOrigin(bitmap, bitmap->stored_clip_gc, dst_x - src_x, dst_y - src_y);
1213     BlitBitmapMasked(bitmap, drawto, src_x, src_y, width, height, dst_x, dst_y);
1214   }
1215   else
1216     BlitBitmap(bitmap, drawto, src_x, src_y, width, height, dst_x, dst_y);
1217
1218   redraw_mask = REDRAW_ALL;
1219 }
1220
1221 void DrawTitleScreenMessage(int nr, boolean initial)
1222 {
1223   char *filename = getLevelSetTitleMessageFilename(nr, initial);
1224   struct TitleMessageInfo *tmi = getTitleMessageInfo(nr, initial);
1225   int last_game_status = game_status;   /* save current game status */
1226
1227   if (filename == NULL)
1228     return;
1229
1230   /* force TITLE font on title message screen */
1231   game_status = getTitleMessageGameMode(initial);
1232
1233   /* if chars set to "-1", automatically determine by text and font width */
1234   if (tmi->chars == -1)
1235     tmi->chars = tmi->width / getFontWidth(tmi->font);
1236   else
1237     tmi->width = tmi->chars * getFontWidth(tmi->font);
1238
1239   /* if lines set to "-1", automatically determine by text and font height */
1240   if (tmi->lines == -1)
1241     tmi->lines = tmi->height / getFontHeight(tmi->font);
1242   else
1243     tmi->height = tmi->lines * getFontHeight(tmi->font);
1244
1245   SetDrawBackgroundMask(REDRAW_ALL);
1246   SetWindowBackgroundImage(getTitleBackground(nr, initial, FALSE));
1247
1248   ClearRectangleOnBackground(drawto, 0, 0, WIN_XSIZE, WIN_YSIZE);
1249
1250   DrawTextFile(ALIGNED_TEXT_XPOS(tmi), ALIGNED_TEXT_YPOS(tmi),
1251                filename, tmi->font, tmi->chars, -1, tmi->lines, 0, -1,
1252                tmi->autowrap, tmi->centered, tmi->parse_comments);
1253
1254   game_status = last_game_status;       /* restore current game status */
1255 }
1256
1257 void DrawTitleScreen()
1258 {
1259   KeyboardAutoRepeatOff();
1260
1261 #if 0
1262   SetMainBackgroundImage(IMG_BACKGROUND_TITLE);
1263 #endif
1264
1265   HandleTitleScreen(0, 0, 0, 0, MB_MENU_INITIALIZE);
1266
1267   StopAnimation();
1268 }
1269
1270 boolean CheckTitleScreen(boolean levelset_has_changed)
1271 {
1272   static boolean show_title_initial = TRUE;
1273   boolean show_titlescreen = FALSE;
1274
1275   /* needed to be able to skip title screen, if no image or message defined */
1276   InitializeTitleControls(show_title_initial);
1277
1278   if (setup.show_titlescreen && (show_title_initial || levelset_has_changed))
1279     show_titlescreen = TRUE;
1280
1281   /* show initial title images and messages only once at program start */
1282   show_title_initial = FALSE;
1283
1284   return (show_titlescreen && num_title_screens > 0);
1285 }
1286
1287 void DrawMainMenuExt(int fade_mask, boolean do_fading)
1288 {
1289   static LevelDirTree *leveldir_last_valid = NULL;
1290   boolean levelset_has_changed = FALSE;
1291
1292   FadeSetLeaveScreen();
1293
1294   /* do not fade out here -- function may continue and fade on editor screen */
1295
1296   UnmapAllGadgets();
1297   FadeSoundsAndMusic();
1298
1299   KeyboardAutoRepeatOn();
1300   ActivateJoystick();
1301
1302   SetDrawDeactivationMask(REDRAW_NONE);
1303   SetDrawBackgroundMask(REDRAW_FIELD);
1304
1305   audio.sound_deactivated = FALSE;
1306
1307   GetPlayerConfig();
1308
1309   /* needed if last screen was the playing screen, invoked from level editor */
1310   if (level_editor_test_game)
1311   {
1312     game_status = GAME_MODE_EDITOR;
1313     DrawLevelEd();
1314
1315     return;
1316   }
1317
1318   /* needed if last screen was the setup screen and fullscreen state changed */
1319   ToggleFullscreenIfNeeded();
1320
1321   /* leveldir_current may be invalid (level group, parent link) */
1322   if (!validLevelSeries(leveldir_current))
1323     leveldir_current = getFirstValidTreeInfoEntry(leveldir_last_valid);
1324
1325   if (leveldir_current != leveldir_last_valid)
1326     levelset_has_changed = TRUE;
1327
1328   /* store valid level series information */
1329   leveldir_last_valid = leveldir_current;
1330
1331   init_last = init;                     /* switch to new busy animation */
1332
1333   /* needed if last screen (level choice) changed graphics, sounds or music */
1334   ReloadCustomArtwork(0);
1335
1336   if (redraw_mask & REDRAW_ALL)
1337     fade_mask = REDRAW_ALL;
1338
1339 #if 1
1340   FadeOut(fade_mask);
1341
1342   /* needed if last screen was the editor screen */
1343   UndrawSpecialEditorDoor();
1344 #if 0
1345   if (fade_mask == REDRAW_FIELD)
1346     BackToFront();
1347 #endif
1348 #endif
1349
1350 #if 1
1351   /* needed if different viewport properties defined for menues */
1352   ChangeViewportPropertiesIfNeeded();
1353 #endif
1354
1355 #if defined(TARGET_SDL)
1356   SetDrawtoField(DRAW_BACKBUFFER);
1357 #endif
1358
1359   if (CheckTitleScreen(levelset_has_changed))
1360   {
1361     game_status = GAME_MODE_TITLE;
1362
1363     DrawTitleScreen();
1364
1365     return;
1366   }
1367
1368   /* level_nr may have been set to value over handicap with level editor */
1369   if (setup.handicap && level_nr > leveldir_current->handicap_level)
1370     level_nr = leveldir_current->handicap_level;
1371
1372   LoadLevel(level_nr);
1373   LoadScore(level_nr);
1374
1375   SetMainBackgroundImage(IMG_BACKGROUND_MAIN);
1376
1377 #if 1
1378   if (fade_mask == REDRAW_ALL)
1379   {
1380     // int door_state = GetDoorState();
1381
1382     RedrawBackground();
1383
1384     // OpenDoor(door_state | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
1385   }
1386 #endif
1387
1388   ClearField();
1389
1390   InitializeMainControls();
1391
1392   DrawCursorAndText_Main(-1, FALSE);
1393   DrawPreviewLevel(TRUE);
1394
1395   HandleMainMenu(0, 0, 0, 0, MB_MENU_INITIALIZE);
1396
1397   TapeStop();
1398   if (TAPE_IS_EMPTY(tape))
1399     LoadTape(level_nr);
1400   DrawCompleteVideoDisplay();
1401
1402   PlayMenuSound();
1403   PlayMenuMusic();
1404
1405   /* create gadgets for main menu screen */
1406   FreeScreenGadgets();
1407   CreateScreenGadgets();
1408
1409   /* map gadgets for main menu screen */
1410   MapTapeButtons();
1411   MapScreenMenuGadgets(SCREEN_MASK_MAIN);
1412
1413 #if 1
1414   if (fade_mask == REDRAW_ALL)
1415   {
1416     int door_state = GetDoorState();
1417
1418     // RedrawBackground();
1419
1420     OpenDoor(door_state | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
1421   }
1422 #endif
1423
1424   DrawMaskedBorder(REDRAW_ALL);
1425
1426   FadeIn(fade_mask);
1427   FadeSetEnterMenu();
1428
1429 #if 1
1430   /* update screen area with special editor door */
1431   redraw_mask |= REDRAW_ALL;
1432   BackToFront();
1433 #endif
1434
1435   SetMouseCursor(CURSOR_DEFAULT);
1436
1437   InitAnimation();
1438
1439   OpenDoor(DOOR_CLOSE_1 | DOOR_OPEN_2);
1440 }
1441
1442 void DrawAndFadeInMainMenu(int fade_mask)
1443 {
1444   DrawMainMenuExt(fade_mask, TRUE);
1445 }
1446
1447 void DrawMainMenu()
1448 {
1449   DrawMainMenuExt(REDRAW_ALL, FALSE);
1450 }
1451
1452 #if defined(CREATE_SPECIAL_EDITION_RND_JUE)
1453 static void gotoTopLevelDir()
1454 {
1455   /* move upwards to top level directory */
1456   while (leveldir_current->node_parent)
1457   {
1458     /* write a "path" into level tree for easy navigation to last level */
1459     if (leveldir_current->node_parent->node_group->cl_first == -1)
1460     {
1461       int num_leveldirs = numTreeInfoInGroup(leveldir_current);
1462       int leveldir_pos = posTreeInfo(leveldir_current);
1463       int num_page_entries;
1464       int cl_first, cl_cursor;
1465
1466       if (num_leveldirs <= NUM_MENU_ENTRIES_ON_SCREEN)
1467         num_page_entries = num_leveldirs;
1468       else
1469         num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
1470
1471       cl_first = MAX(0, leveldir_pos - num_page_entries + 1);
1472       cl_cursor = leveldir_pos - cl_first;
1473
1474       leveldir_current->node_parent->node_group->cl_first = cl_first;
1475       leveldir_current->node_parent->node_group->cl_cursor = cl_cursor;
1476     }
1477
1478     leveldir_current = leveldir_current->node_parent;
1479   }
1480 }
1481 #endif
1482
1483 void HandleTitleScreen(int mx, int my, int dx, int dy, int button)
1484 {
1485   static unsigned int title_delay = 0;
1486   static int title_screen_nr = 0;
1487   static int last_sound = -1, last_music = -1;
1488   boolean return_to_main_menu = FALSE;
1489   boolean use_fading_main_menu = TRUE;
1490   struct TitleControlInfo *tci;
1491   struct TitleFadingInfo fading_default;
1492   struct TitleFadingInfo fading_last = fading;
1493   struct TitleFadingInfo fading_next;
1494   int sound, music;
1495
1496   if (button == MB_MENU_INITIALIZE)
1497   {
1498     title_delay = 0;
1499     title_screen_nr = 0;
1500     tci = &title_controls[title_screen_nr];
1501
1502     last_sound = SND_UNDEFINED;
1503     last_music = MUS_UNDEFINED;
1504
1505     if (game_status == GAME_MODE_INFO)
1506     {
1507       if (num_title_screens == 0)
1508       {
1509         DrawInfoScreen_NotAvailable("Title screen information:",
1510                                     "No title screen for this level set.");
1511
1512         return;
1513       }
1514
1515       FadeSoundsAndMusic();
1516
1517 #if 1
1518       FadeOut(REDRAW_ALL);
1519 #endif
1520     }
1521
1522     if (tci->is_image)
1523       DrawTitleScreenImage(tci->local_nr, tci->initial);
1524     else
1525       DrawTitleScreenMessage(tci->local_nr, tci->initial);
1526
1527     fading_default = (tci->initial ? title_initial_default : title_default);
1528
1529     fading = fading_next = getTitleFading(tci);
1530
1531 #if 1
1532 #if 1
1533     if (!(fading_last.fade_mode & FADE_TYPE_TRANSFORM) &&
1534         fading_next.fade_mode & FADE_TYPE_TRANSFORM)
1535     {
1536       fading.fade_mode = FADE_MODE_FADE;
1537       fading.fade_delay = fading_default.fade_delay;
1538     }
1539 #else
1540     if (fading_last.fade_mode != FADE_MODE_CROSSFADE &&
1541         fading_next.fade_mode == FADE_MODE_CROSSFADE)
1542       fading.fade_mode = FADE_MODE_FADE;
1543 #endif
1544 #endif
1545
1546 #if 1
1547     sound = getTitleSound(tci);
1548     music = getTitleMusic(tci);
1549
1550     if (sound != last_sound)
1551       PlayMenuSoundExt(sound);
1552     if (music != last_music)
1553       PlayMenuMusicExt(music);
1554
1555     last_sound = sound;
1556     last_music = music;
1557 #endif
1558
1559     SetMouseCursor(CURSOR_NONE);
1560
1561 #if 1
1562     FadeIn(REDRAW_ALL);
1563 #endif
1564
1565     fading = fading_next;
1566
1567     DelayReached(&title_delay, 0);      /* reset delay counter */
1568
1569     return;
1570   }
1571
1572 #if 1
1573   if (fading.auto_delay > 0 && DelayReached(&title_delay, fading.auto_delay))
1574     button = MB_MENU_CHOICE;
1575 #else
1576   if (fading.auto_delay > -1 && DelayReached(&title_delay, fading.auto_delay))
1577     button = MB_MENU_CHOICE;
1578 #endif
1579
1580   if (button == MB_MENU_LEAVE)
1581   {
1582     return_to_main_menu = TRUE;
1583     use_fading_main_menu = FALSE;
1584   }
1585   else if (button == MB_MENU_CHOICE)
1586   {
1587     if (game_status == GAME_MODE_INFO && num_title_screens == 0)
1588     {
1589 #if 0
1590       FadeOut(REDRAW_FIELD);
1591 #endif
1592
1593       FadeSetEnterScreen();
1594
1595       info_mode = INFO_MODE_MAIN;
1596       DrawAndFadeInInfoScreen(REDRAW_FIELD);
1597
1598       return;
1599     }
1600
1601     title_screen_nr++;
1602     tci = &title_controls[title_screen_nr];
1603
1604     if (title_screen_nr < num_title_screens)
1605     {
1606       sound = getTitleSound(tci);
1607       music = getTitleMusic(tci);
1608
1609       if (sound == SND_UNDEFINED || sound != last_sound)
1610         FadeSounds();
1611       if (music == MUS_UNDEFINED || music != last_music)
1612         FadeMusic();
1613
1614 #if 1
1615       FadeOut(REDRAW_ALL);
1616 #endif
1617
1618       if (tci->is_image)
1619         DrawTitleScreenImage(tci->local_nr, tci->initial);
1620       else
1621         DrawTitleScreenMessage(tci->local_nr, tci->initial);
1622
1623       fading_next = getTitleFading(tci);
1624
1625 #if 1
1626       sound = getTitleSound(tci);
1627       music = getTitleMusic(tci);
1628
1629       if (sound != last_sound)
1630         PlayMenuSoundExt(sound);
1631       if (music != last_music)
1632         PlayMenuMusicExt(music);
1633
1634       last_sound = sound;
1635       last_music = music;
1636 #endif
1637
1638 #if 1
1639       /* last screen already faded out, next screen has no animation */
1640       if (!(fading.fade_mode & FADE_TYPE_TRANSFORM) &&
1641           fading_next.fade_mode == FADE_MODE_NONE)
1642         fading = fading_next;
1643 #else
1644       /* last screen already faded out, next screen has no animation */
1645       if (fading.fade_mode      != FADE_MODE_CROSSFADE &&
1646           fading_next.fade_mode == FADE_MODE_NONE)
1647         fading = fading_next;
1648 #endif
1649
1650 #if 1
1651       FadeIn(REDRAW_ALL);
1652 #endif
1653
1654       fading = fading_next;
1655
1656       DelayReached(&title_delay, 0);    /* reset delay counter */
1657     }
1658     else
1659     {
1660       FadeSoundsAndMusic();
1661
1662       return_to_main_menu = TRUE;
1663     }
1664   }
1665
1666   if (return_to_main_menu)
1667   {
1668 #if 0
1669     RedrawBackground();
1670 #endif
1671
1672     SetMouseCursor(CURSOR_DEFAULT);
1673
1674     if (game_status == GAME_MODE_INFO)
1675     {
1676 #if 0
1677       OpenDoor(DOOR_CLOSE_1 | DOOR_CLOSE_2 | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
1678 #endif
1679
1680       info_mode = INFO_MODE_MAIN;
1681       DrawInfoScreenExt(REDRAW_ALL, use_fading_main_menu);
1682     }
1683     else        /* default: return to main menu */
1684     {
1685 #if 0
1686       OpenDoor(DOOR_CLOSE_1 | DOOR_OPEN_2 | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
1687 #endif
1688
1689       game_status = GAME_MODE_MAIN;
1690       DrawMainMenuExt(REDRAW_ALL, use_fading_main_menu);
1691     }
1692   }
1693 }
1694
1695 void HandleMainMenu_SelectLevel(int step, int direction)
1696 {
1697   int old_level_nr = level_nr;
1698   int new_level_nr;
1699
1700   new_level_nr = old_level_nr + step * direction;
1701   if (new_level_nr < leveldir_current->first_level)
1702     new_level_nr = leveldir_current->first_level;
1703   if (new_level_nr > leveldir_current->last_level)
1704     new_level_nr = leveldir_current->last_level;
1705
1706   if (setup.handicap && new_level_nr > leveldir_current->handicap_level)
1707   {
1708     /* skipping levels is only allowed when trying to skip single level */
1709     if (setup.skip_levels && step == 1 &&
1710         Request("Level still unsolved ! Skip despite handicap ?", REQ_ASK))
1711     {
1712       leveldir_current->handicap_level++;
1713       SaveLevelSetup_SeriesInfo();
1714     }
1715
1716     new_level_nr = leveldir_current->handicap_level;
1717   }
1718
1719   if (new_level_nr != old_level_nr)
1720   {
1721     struct MainControlInfo *mci= getMainControlInfo(MAIN_CONTROL_LEVEL_NUMBER);
1722
1723     PlaySound(SND_MENU_ITEM_SELECTING);
1724
1725     level_nr = new_level_nr;
1726
1727     DrawText(mSX + mci->pos_text->x, mSY + mci->pos_text->y,
1728              int2str(level_nr, menu.main.text.level_number.size),
1729              mci->pos_text->font);
1730
1731     LoadLevel(level_nr);
1732     DrawPreviewLevel(TRUE);
1733
1734     TapeErase();
1735     LoadTape(level_nr);
1736     DrawCompleteVideoDisplay();
1737
1738     /* needed because DrawPreviewLevel() takes some time */
1739     BackToFront();
1740     SyncDisplay();
1741   }
1742 }
1743
1744 void HandleMainMenu(int mx, int my, int dx, int dy, int button)
1745 {
1746   static int choice = MAIN_CONTROL_GAME;
1747   int pos = choice;
1748   int i;
1749
1750   if (button == MB_MENU_INITIALIZE)
1751   {
1752     DrawCursorAndText_Main(choice, TRUE);
1753
1754     return;
1755   }
1756
1757   if (mx || my)         /* mouse input */
1758   {
1759     pos = -1;
1760
1761     for (i = 0; main_controls[i].nr != -1; i++)
1762     {
1763 #if 0
1764       printf("::: check click (%d, %d) for %d [%d] ...\n",
1765              mx - mSX, my - mSY, i, main_controls[i].nr);
1766 #endif
1767
1768       if (insideMenuPosRect(main_controls[i].pos_button, mx - mSX, my - mSY) ||
1769           insideTextPosRect(main_controls[i].pos_text,   mx - mSX, my - mSY) ||
1770           insideTextPosRect(main_controls[i].pos_input,  mx - mSX, my - mSY))
1771       {
1772 #if 0
1773         printf("::: inside %d\n", i);
1774 #endif
1775
1776         pos = main_controls[i].nr;
1777
1778         break;
1779       }
1780     }
1781   }
1782   else if (dx || dy)    /* keyboard input */
1783   {
1784     if (dx > 0 && (choice == MAIN_CONTROL_INFO ||
1785                    choice == MAIN_CONTROL_SETUP))
1786       button = MB_MENU_CHOICE;
1787     else if (dy)
1788       pos = choice + dy;
1789   }
1790
1791   if (pos == MAIN_CONTROL_LEVELS && dx != 0 && button)
1792   {
1793     HandleMainMenu_SelectLevel(1, dx < 0 ? -1 : +1);
1794   }
1795   else if (pos == MAIN_CONTROL_FIRST_LEVEL && !button)
1796   {
1797     HandleMainMenu_SelectLevel(MAX_LEVELS, -1);
1798   }
1799   else if (pos == MAIN_CONTROL_LAST_LEVEL && !button)
1800   {
1801     HandleMainMenu_SelectLevel(MAX_LEVELS, +1);
1802   }
1803   else if (pos == MAIN_CONTROL_LEVEL_NUMBER && !button)
1804   {
1805     game_status = GAME_MODE_LEVELNR;
1806
1807     DrawChooseLevelNr();
1808   }
1809   else if (pos >= MAIN_CONTROL_NAME && pos <= MAIN_CONTROL_QUIT)
1810   {
1811     if (button)
1812     {
1813       if (pos != choice)
1814       {
1815         PlaySound(SND_MENU_ITEM_ACTIVATING);
1816
1817         DrawCursorAndText_Main(choice, FALSE);
1818         DrawCursorAndText_Main(pos, TRUE);
1819
1820         choice = pos;
1821       }
1822     }
1823     else
1824     {
1825       PlaySound(SND_MENU_ITEM_SELECTING);
1826
1827       if (pos == MAIN_CONTROL_NAME)
1828       {
1829         game_status = GAME_MODE_PSEUDO_TYPENAME;
1830
1831         HandleTypeName(strlen(setup.player_name), 0);
1832       }
1833       else if (pos == MAIN_CONTROL_LEVELS)
1834       {
1835         if (leveldir_first)
1836         {
1837           game_status = GAME_MODE_LEVELS;
1838
1839           SaveLevelSetup_LastSeries();
1840           SaveLevelSetup_SeriesInfo();
1841
1842 #if defined(CREATE_SPECIAL_EDITION_RND_JUE)
1843           gotoTopLevelDir();
1844 #endif
1845
1846           DrawChooseLevelSet();
1847         }
1848       }
1849       else if (pos == MAIN_CONTROL_SCORES)
1850       {
1851         game_status = GAME_MODE_SCORES;
1852
1853         DrawHallOfFame(-1);
1854       }
1855       else if (pos == MAIN_CONTROL_EDITOR)
1856       {
1857         if (leveldir_current->readonly &&
1858             !strEqual(setup.player_name, "Artsoft"))
1859           Request("This level is read only !", REQ_CONFIRM);
1860
1861         game_status = GAME_MODE_EDITOR;
1862
1863         FadeSetEnterScreen();
1864
1865 #if 0
1866         /* needed if different viewport properties defined for editor */
1867         ChangeViewportPropertiesIfNeeded();
1868 #endif
1869
1870         DrawLevelEd();
1871       }
1872       else if (pos == MAIN_CONTROL_INFO)
1873       {
1874         game_status = GAME_MODE_INFO;
1875         info_mode = INFO_MODE_MAIN;
1876
1877         DrawInfoScreen();
1878       }
1879       else if (pos == MAIN_CONTROL_GAME)
1880       {
1881         StartGameActions(options.network, setup.autorecord, level.random_seed);
1882       }
1883       else if (pos == MAIN_CONTROL_SETUP)
1884       {
1885         game_status = GAME_MODE_SETUP;
1886         setup_mode = SETUP_MODE_MAIN;
1887
1888         DrawSetupScreen();
1889       }
1890       else if (pos == MAIN_CONTROL_QUIT)
1891       {
1892         SaveLevelSetup_LastSeries();
1893         SaveLevelSetup_SeriesInfo();
1894
1895         if (Request("Do you really want to quit ?", REQ_ASK | REQ_STAY_CLOSED))
1896           game_status = GAME_MODE_QUIT;
1897       }
1898     }
1899   }
1900
1901   if (game_status == GAME_MODE_MAIN)
1902   {
1903     DrawPreviewLevel(FALSE);
1904     DoAnimation();
1905   }
1906 }
1907
1908
1909 /* ========================================================================= */
1910 /* info screen functions                                                     */
1911 /* ========================================================================= */
1912
1913 static struct TokenInfo *info_info;
1914 static int num_info_info;
1915
1916 static void execInfoTitleScreen()
1917 {
1918   info_mode = INFO_MODE_TITLE;
1919
1920   DrawInfoScreen();
1921 }
1922
1923 static void execInfoElements()
1924 {
1925   info_mode = INFO_MODE_ELEMENTS;
1926
1927   DrawInfoScreen();
1928 }
1929
1930 static void execInfoMusic()
1931 {
1932   info_mode = INFO_MODE_MUSIC;
1933
1934   DrawInfoScreen();
1935 }
1936
1937 static void execInfoCredits()
1938 {
1939   info_mode = INFO_MODE_CREDITS;
1940
1941   DrawInfoScreen();
1942 }
1943
1944 static void execInfoProgram()
1945 {
1946   info_mode = INFO_MODE_PROGRAM;
1947
1948   DrawInfoScreen();
1949 }
1950
1951 static void execInfoVersion()
1952 {
1953   info_mode = INFO_MODE_VERSION;
1954
1955   DrawInfoScreen();
1956 }
1957
1958 static void execInfoLevelSet()
1959 {
1960   info_mode = INFO_MODE_LEVELSET;
1961
1962   DrawInfoScreen();
1963 }
1964
1965 static void execExitInfo()
1966 {
1967   game_status = GAME_MODE_MAIN;
1968
1969   DrawMainMenuExt(REDRAW_FIELD, FALSE);
1970 }
1971
1972 static struct TokenInfo info_info_main[] =
1973 {
1974   { TYPE_ENTER_SCREEN,  execInfoTitleScreen,    "Title Screen"          },
1975   { TYPE_ENTER_SCREEN,  execInfoElements,       "Elements Info"         },
1976   { TYPE_ENTER_SCREEN,  execInfoMusic,          "Music Info"            },
1977   { TYPE_ENTER_SCREEN,  execInfoCredits,        "Credits"               },
1978   { TYPE_ENTER_SCREEN,  execInfoProgram,        "Program Info"          },
1979   { TYPE_ENTER_SCREEN,  execInfoVersion,        "Version Info"          },
1980   { TYPE_ENTER_SCREEN,  execInfoLevelSet,       "Level Set Info"        },
1981   { TYPE_EMPTY,         NULL,                   ""                      },
1982   { TYPE_LEAVE_MENU,    execExitInfo,           "Exit"                  },
1983
1984   { 0,                  NULL,                   NULL                    }
1985 };
1986
1987 static void DrawCursorAndText_Info(int pos, boolean active)
1988 {
1989   int xpos = MENU_SCREEN_START_XPOS;
1990   int ypos = MENU_SCREEN_START_YPOS + pos;
1991   int font_nr = FONT_MENU_1;
1992
1993   if (active)
1994     font_nr = FONT_ACTIVE(font_nr);
1995
1996   DrawText(mSX + xpos * 32, mSY + ypos * 32, info_info[pos].text, font_nr);
1997
1998   if (info_info[pos].type & ~TYPE_SKIP_ENTRY)
1999     drawCursor(pos, active);
2000 }
2001
2002 static void DrawInfoScreen_Main(int fade_mask, boolean do_fading)
2003 {
2004   int i;
2005
2006   UnmapAllGadgets();
2007   CloseDoor(DOOR_CLOSE_2);
2008
2009   /* (needed after displaying title screens which disable auto repeat) */
2010   KeyboardAutoRepeatOn();
2011
2012   FadeSetLeaveScreen();
2013
2014 #if 1
2015   FadeOut(fade_mask);
2016 #endif
2017
2018 #if 1
2019   if (fade_mask == REDRAW_ALL)
2020   {
2021     RedrawBackground();
2022
2023     OpenDoor(DOOR_CLOSE_1 | DOOR_CLOSE_2 | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
2024   }
2025 #endif
2026
2027   ClearField();
2028
2029   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Info Screen");
2030
2031   info_info = info_info_main;
2032   num_info_info = 0;
2033
2034 #if 1
2035   for (i = 0; info_info[i].type != 0 && i < MAX_MENU_ENTRIES_ON_SCREEN; i++)
2036 #else
2037   for (i = 0; info_info[i].type != 0 && i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
2038 #endif
2039   {
2040     if (info_info[i].type & (TYPE_ENTER_MENU|TYPE_ENTER_LIST))
2041       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
2042     else if (info_info[i].type & (TYPE_LEAVE_MENU|TYPE_LEAVE_LIST))
2043       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
2044     else if (info_info[i].type & ~TYPE_SKIP_ENTRY)
2045       initCursor(i, IMG_MENU_BUTTON);
2046
2047     DrawCursorAndText_Info(i, FALSE);
2048
2049     num_info_info++;
2050   }
2051
2052   HandleInfoScreen_Main(0, 0, 0, 0, MB_MENU_INITIALIZE);
2053
2054   PlayMenuSound();
2055   PlayMenuMusic();
2056
2057   DrawMaskedBorder(fade_mask);
2058
2059   FadeIn(fade_mask);
2060
2061   InitAnimation();
2062 }
2063
2064 void HandleInfoScreen_Main(int mx, int my, int dx, int dy, int button)
2065 {
2066   static int choice_store[MAX_INFO_MODES];
2067   int choice = choice_store[info_mode];         /* always starts with 0 */
2068   int x = 0;
2069   int y = choice;
2070
2071   if (button == MB_MENU_INITIALIZE)
2072   {
2073     /* advance to first valid menu entry */
2074     while (choice < num_info_info &&
2075            info_info[choice].type & TYPE_SKIP_ENTRY)
2076       choice++;
2077     choice_store[info_mode] = choice;
2078
2079     DrawCursorAndText_Info(choice, TRUE);
2080
2081     return;
2082   }
2083   else if (button == MB_MENU_LEAVE)
2084   {
2085     for (y = 0; y < num_info_info; y++)
2086     {
2087       if (info_info[y].type & TYPE_LEAVE_MENU)
2088       {
2089         void (*menu_callback_function)(void) = info_info[y].value;
2090
2091         FadeSetLeaveMenu();
2092
2093         menu_callback_function();
2094
2095         break;  /* absolutely needed because function changes 'info_info'! */
2096       }
2097     }
2098
2099     return;
2100   }
2101
2102   if (mx || my)         /* mouse input */
2103   {
2104     x = (mx - mSX) / 32;
2105     y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
2106   }
2107   else if (dx || dy)    /* keyboard input */
2108   {
2109     if (dx)
2110     {
2111       int menu_navigation_type = (dx < 0 ? TYPE_LEAVE : TYPE_ENTER);
2112
2113       if (info_info[choice].type & menu_navigation_type ||
2114           info_info[choice].type & TYPE_ENTER_SCREEN ||
2115           info_info[choice].type & TYPE_BOOLEAN_STYLE ||
2116           info_info[choice].type & TYPE_YES_NO_AUTO)
2117         button = MB_MENU_CHOICE;
2118     }
2119     else if (dy)
2120       y = choice + dy;
2121
2122     /* jump to next non-empty menu entry (up or down) */
2123     while (y > 0 && y < num_info_info - 1 &&
2124            info_info[y].type & TYPE_SKIP_ENTRY)
2125       y += dy;
2126   }
2127
2128   if (IN_VIS_FIELD(x, y) &&
2129       y >= 0 && y < num_info_info && info_info[y].type & ~TYPE_SKIP_ENTRY)
2130   {
2131     if (button)
2132     {
2133       if (y != choice)
2134       {
2135         PlaySound(SND_MENU_ITEM_ACTIVATING);
2136
2137         DrawCursorAndText_Info(choice, FALSE);
2138         DrawCursorAndText_Info(y, TRUE);
2139
2140         choice = choice_store[info_mode] = y;
2141       }
2142     }
2143     else if (!(info_info[y].type & TYPE_GHOSTED))
2144     {
2145       PlaySound(SND_MENU_ITEM_SELECTING);
2146
2147       if (info_info[y].type & TYPE_ENTER_OR_LEAVE)
2148       {
2149         void (*menu_callback_function)(void) = info_info[choice].value;
2150
2151         FadeSetFromType(info_info[y].type);
2152
2153         menu_callback_function();
2154       }
2155     }
2156   }
2157 }
2158
2159 void DrawInfoScreen_NotAvailable(char *text_title, char *text_error)
2160 {
2161   int ystart1 = mSY - SY + 100;
2162   int ystart2 = mSY - SY + 150;
2163   int ybottom = mSY - SY + SYSIZE - 20;
2164
2165   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_LEVELSET);
2166
2167   FadeOut(REDRAW_FIELD);
2168
2169   ClearField();
2170   DrawHeadline();
2171
2172   DrawTextSCentered(ystart1, FONT_TEXT_1, text_title);
2173   DrawTextSCentered(ystart2, FONT_TEXT_2, text_error);
2174
2175   DrawTextSCentered(ybottom, FONT_TEXT_4,
2176                     "Press any key or button for info menu");
2177
2178   FadeIn(REDRAW_FIELD);
2179 }
2180
2181 void DrawInfoScreen_HelpAnim(int start, int max_anims, boolean init)
2182 {
2183   static int infoscreen_step[MAX_INFO_ELEMENTS_ON_SCREEN];
2184   static int infoscreen_frame[MAX_INFO_ELEMENTS_ON_SCREEN];
2185   int xstart = mSX + 16;
2186   int ystart1 = mSY - SY + 100;
2187   int ystart2 = mSY + 64 + 2 * 32;
2188   int ybottom = mSY - SY + SYSIZE - 20;
2189   int ystep = TILEY + 4;
2190   int element, action, direction;
2191   int graphic;
2192   int delay;
2193   int sync_frame;
2194   int i, j;
2195
2196   if (init)
2197   {
2198     for (i = 0; i < MAX_INFO_ELEMENTS_ON_SCREEN; i++)
2199       infoscreen_step[i] = infoscreen_frame[i] = 0;
2200
2201     ClearField();
2202     DrawHeadline();
2203
2204     DrawTextSCentered(ystart1, FONT_TEXT_1, "The Game Elements:");
2205
2206     DrawTextSCentered(ybottom, FONT_TEXT_4,
2207                       "Press any key or button for next page");
2208
2209     FrameCounter = 0;
2210   }
2211
2212   i = j = 0;
2213   while (helpanim_info[j].element != HELPANIM_LIST_END)
2214   {
2215     if (i >= start + MAX_INFO_ELEMENTS_ON_SCREEN ||
2216         i >= max_anims)
2217       break;
2218     else if (i < start)
2219     {
2220       while (helpanim_info[j].element != HELPANIM_LIST_NEXT)
2221         j++;
2222
2223       j++;
2224       i++;
2225
2226       continue;
2227     }
2228
2229     j += infoscreen_step[i - start];
2230
2231     element = helpanim_info[j].element;
2232     action = helpanim_info[j].action;
2233     direction = helpanim_info[j].direction;
2234
2235     if (element < 0)
2236       element = EL_UNKNOWN;
2237
2238     if (action != -1 && direction != -1)
2239       graphic = el_act_dir2img(element, action, direction);
2240     else if (action != -1)
2241       graphic = el_act2img(element, action);
2242     else if (direction != -1)
2243       graphic = el_dir2img(element, direction);
2244     else
2245       graphic = el2img(element);
2246
2247     delay = helpanim_info[j++].delay;
2248
2249     if (delay == -1)
2250       delay = 1000000;
2251
2252     if (infoscreen_frame[i - start] == 0)
2253     {
2254       sync_frame = 0;
2255       infoscreen_frame[i - start] = delay - 1;
2256     }
2257     else
2258     {
2259       sync_frame = delay - infoscreen_frame[i - start];
2260       infoscreen_frame[i - start]--;
2261     }
2262
2263     if (helpanim_info[j].element == HELPANIM_LIST_NEXT)
2264     {
2265       if (!infoscreen_frame[i - start])
2266         infoscreen_step[i - start] = 0;
2267     }
2268     else
2269     {
2270       if (!infoscreen_frame[i - start])
2271         infoscreen_step[i - start]++;
2272       while (helpanim_info[j].element != HELPANIM_LIST_NEXT)
2273         j++;
2274     }
2275
2276     j++;
2277
2278     ClearRectangleOnBackground(drawto, xstart, ystart2 + (i - start) * ystep,
2279                                TILEX, TILEY);
2280     DrawFixedGraphicAnimationExt(drawto, xstart, ystart2 + (i - start) * ystep,
2281                                  graphic, sync_frame, USE_MASKING);
2282
2283     if (init)
2284       DrawInfoScreen_HelpText(element, action, direction, i - start);
2285
2286     i++;
2287   }
2288
2289   redraw_mask |= REDRAW_FIELD;
2290
2291   FrameCounter++;
2292 }
2293
2294 static char *getHelpText(int element, int action, int direction)
2295 {
2296   char token[MAX_LINE_LEN];
2297
2298   strcpy(token, element_info[element].token_name);
2299
2300   if (action != -1)
2301     strcat(token, element_action_info[action].suffix);
2302
2303   if (direction != -1)
2304     strcat(token, element_direction_info[MV_DIR_TO_BIT(direction)].suffix);
2305
2306   return getHashEntry(helptext_info, token);
2307 }
2308
2309 void DrawInfoScreen_HelpText(int element, int action, int direction, int ypos)
2310 {
2311   int font_nr = FONT_INFO_ELEMENTS;
2312   int font_width = getFontWidth(font_nr);
2313   int sx = mSX + MINI_TILEX + TILEX + MINI_TILEX;
2314   int sy = mSY + 65 + 2 * 32 + 1;
2315   int ystep = TILEY + 4;
2316   int pad_x = sx - SX;
2317   int max_chars_per_line = (SXSIZE - pad_x - MINI_TILEX) / font_width;
2318   int max_lines_per_text = 2;    
2319   char *text = NULL;
2320
2321   if (action != -1 && direction != -1)          /* element.action.direction */
2322     text = getHelpText(element, action, direction);
2323
2324   if (text == NULL && action != -1)             /* element.action */
2325     text = getHelpText(element, action, -1);
2326
2327   if (text == NULL && direction != -1)          /* element.direction */
2328     text = getHelpText(element, -1, direction);
2329
2330   if (text == NULL)                             /* base element */
2331     text = getHelpText(element, -1, -1);
2332
2333   if (text == NULL)                             /* not found */
2334     text = "No description available";
2335
2336   if (strlen(text) <= max_chars_per_line)       /* only one line of text */
2337     sy += getFontHeight(font_nr) / 2;
2338
2339   DrawTextBuffer(sx, sy + ypos * ystep, text, font_nr,
2340                  max_chars_per_line, -1, max_lines_per_text, 0, -1,
2341                  TRUE, FALSE, FALSE);
2342 }
2343
2344 void DrawInfoScreen_TitleScreen()
2345 {
2346   DrawTitleScreen();
2347 }
2348
2349 void HandleInfoScreen_TitleScreen(int button)
2350 {
2351   HandleTitleScreen(0, 0, 0, 0, button);
2352 }
2353
2354 void DrawInfoScreen_Elements()
2355 {
2356   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_ELEMENTS);
2357
2358   FadeOut(REDRAW_FIELD);
2359
2360   LoadHelpAnimInfo();
2361   LoadHelpTextInfo();
2362
2363   HandleInfoScreen_Elements(MB_MENU_INITIALIZE);
2364
2365   FadeIn(REDRAW_FIELD);
2366
2367   InitAnimation();
2368 }
2369
2370 void HandleInfoScreen_Elements(int button)
2371 {
2372   static unsigned int info_delay = 0;
2373   static int num_anims;
2374   static int num_pages;
2375   static int page;
2376   int anims_per_page = MAX_INFO_ELEMENTS_ON_SCREEN;
2377   int i;
2378
2379   if (button == MB_MENU_INITIALIZE)
2380   {
2381     boolean new_element = TRUE;
2382
2383     num_anims = 0;
2384
2385     for (i = 0; helpanim_info[i].element != HELPANIM_LIST_END; i++)
2386     {
2387       if (helpanim_info[i].element == HELPANIM_LIST_NEXT)
2388         new_element = TRUE;
2389       else if (new_element)
2390       {
2391         num_anims++;
2392         new_element = FALSE;
2393       }
2394     }
2395
2396     num_pages = (num_anims + anims_per_page - 1) / anims_per_page;
2397     page = 0;
2398   }
2399
2400   if (button == MB_MENU_LEAVE)
2401   {
2402     PlaySound(SND_MENU_ITEM_SELECTING);
2403
2404     info_mode = INFO_MODE_MAIN;
2405     DrawInfoScreen();
2406
2407     return;
2408   }
2409   else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE)
2410   {
2411     if (button != MB_MENU_INITIALIZE)
2412     {
2413       PlaySound(SND_MENU_ITEM_SELECTING);
2414
2415       page++;
2416     }
2417
2418     if (page >= num_pages)
2419     {
2420       FadeSoundsAndMusic();
2421
2422       info_mode = INFO_MODE_MAIN;
2423       DrawAndFadeInInfoScreen(REDRAW_FIELD);
2424
2425       return;
2426     }
2427
2428 #if 1
2429     if (page > 0)
2430       FadeSetNextScreen();
2431 #endif
2432
2433     if (button != MB_MENU_INITIALIZE)
2434       FadeOut(REDRAW_FIELD);
2435
2436     DrawInfoScreen_HelpAnim(page * anims_per_page, num_anims, TRUE);
2437
2438     if (button != MB_MENU_INITIALIZE)
2439       FadeIn(REDRAW_FIELD);
2440   }
2441   else
2442   {
2443     if (DelayReached(&info_delay, GameFrameDelay))
2444       if (page < num_pages)
2445         DrawInfoScreen_HelpAnim(page * anims_per_page, num_anims, FALSE);
2446
2447     PlayMenuSoundIfLoop();
2448   }
2449 }
2450
2451 void DrawInfoScreen_Music()
2452 {
2453   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_MUSIC);
2454
2455 #if 1
2456   FadeOut(REDRAW_FIELD);
2457 #endif
2458
2459   ClearField();
2460   DrawHeadline();
2461
2462   LoadMusicInfo();
2463
2464   HandleInfoScreen_Music(MB_MENU_INITIALIZE);
2465
2466 #if 1
2467   FadeIn(REDRAW_FIELD);
2468 #endif
2469 }
2470
2471 void HandleInfoScreen_Music(int button)
2472 {
2473   static struct MusicFileInfo *list = NULL;
2474   int ystart1 = mSY - SY + 100;
2475   int ystart2 = mSY - SY + 150;
2476   int ybottom = mSY - SY + SYSIZE - 20;
2477   int dy = 30;
2478
2479   if (button == MB_MENU_INITIALIZE)
2480   {
2481     list = music_file_info;
2482
2483     if (list == NULL)
2484     {
2485       FadeSoundsAndMusic();
2486
2487       ClearField();
2488       DrawHeadline();
2489
2490       DrawTextSCentered(ystart1, FONT_TEXT_1,
2491                         "No music info for this level set.");
2492
2493       DrawTextSCentered(ybottom, FONT_TEXT_4,
2494                         "Press any key or button for info menu");
2495
2496       return;
2497     }
2498   }
2499
2500   if (button == MB_MENU_LEAVE)
2501   {
2502     PlaySound(SND_MENU_ITEM_SELECTING);
2503
2504     FadeSoundsAndMusic();
2505
2506     info_mode = INFO_MODE_MAIN;
2507     DrawInfoScreen();
2508
2509     return;
2510   }
2511   else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE)
2512   {
2513     int y = 0;
2514
2515     if (button != MB_MENU_INITIALIZE)
2516     {
2517       PlaySound(SND_MENU_ITEM_SELECTING);
2518
2519       if (list != NULL)
2520         list = list->next;
2521     }
2522
2523     if (list == NULL)
2524     {
2525       FadeSoundsAndMusic();
2526
2527       info_mode = INFO_MODE_MAIN;
2528       DrawAndFadeInInfoScreen(REDRAW_FIELD);
2529
2530       return;
2531     }
2532
2533     FadeSoundsAndMusic();
2534
2535 #if 1
2536     if (list != music_file_info)
2537       FadeSetNextScreen();
2538 #endif
2539
2540     if (button != MB_MENU_INITIALIZE)
2541       FadeOut(REDRAW_FIELD);
2542
2543     ClearField();
2544     DrawHeadline();
2545
2546     if (list->is_sound)
2547     {
2548       int sound = list->music;
2549
2550       if (sound_info[sound].loop)
2551         PlaySoundLoop(sound);
2552       else
2553         PlaySound(sound);
2554
2555       DrawTextSCentered(ystart1, FONT_TEXT_1, "The Game Background Sounds:");
2556     }
2557     else
2558     {
2559       PlayMusic(list->music);
2560
2561       DrawTextSCentered(ystart1, FONT_TEXT_1, "The Game Background Music:");
2562     }
2563
2564     if (!strEqual(list->title, UNKNOWN_NAME))
2565     {
2566       if (!strEqual(list->title_header, UNKNOWN_NAME))
2567         DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, list->title_header);
2568
2569       DrawTextFCentered(ystart2 + y++ * dy, FONT_TEXT_3, "\"%s\"", list->title);
2570     }
2571
2572     if (!strEqual(list->artist, UNKNOWN_NAME))
2573     {
2574       if (!strEqual(list->artist_header, UNKNOWN_NAME))
2575         DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, list->artist_header);
2576       else
2577         DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, "by");
2578
2579       DrawTextFCentered(ystart2 + y++ * dy, FONT_TEXT_3, "%s", list->artist);
2580     }
2581
2582     if (!strEqual(list->album, UNKNOWN_NAME))
2583     {
2584       if (!strEqual(list->album_header, UNKNOWN_NAME))
2585         DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, list->album_header);
2586       else
2587         DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, "from the album");
2588
2589       DrawTextFCentered(ystart2 + y++ * dy, FONT_TEXT_3, "\"%s\"", list->album);
2590     }
2591
2592     if (!strEqual(list->year, UNKNOWN_NAME))
2593     {
2594       if (!strEqual(list->year_header, UNKNOWN_NAME))
2595         DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, list->year_header);
2596       else
2597         DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, "from the year");
2598
2599       DrawTextFCentered(ystart2 + y++ * dy, FONT_TEXT_3, "%s", list->year);
2600     }
2601
2602     DrawTextSCentered(ybottom, FONT_TEXT_4,
2603                       "Press any key or button for next page");
2604
2605     if (button != MB_MENU_INITIALIZE)
2606       FadeIn(REDRAW_FIELD);
2607   }
2608
2609   if (list != NULL && list->is_sound && sound_info[list->music].loop)
2610     PlaySoundLoop(list->music);
2611 }
2612
2613 static void DrawInfoScreen_CreditsScreen(int screen_nr)
2614 {
2615   int ystart1 = mSY - SY + 100;
2616   int ystart2 = mSY - SY + 150;
2617   int ybottom = mSY - SY + SYSIZE - 20;
2618   int ystep = 30;
2619
2620   ClearField();
2621   DrawHeadline();
2622
2623   DrawTextSCentered(ystart1, FONT_TEXT_1, "Credits:");
2624
2625   if (screen_nr == 0)
2626   {
2627     DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2628                       "Special thanks to");
2629     DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2630                       "Peter Liepa");
2631     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2632                       "for creating");
2633     DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2634                       "\"Boulder Dash\"");
2635     DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
2636                       "in the year");
2637     DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
2638                       "1984");
2639     DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
2640                       "published by");
2641     DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_3,
2642                       "First Star Software");
2643   }
2644   else if (screen_nr == 1)
2645   {
2646     DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2647                       "Special thanks to");
2648     DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2649                       "Klaus Heinz & Volker Wertich");
2650     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2651                       "for creating");
2652     DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2653                       "\"Emerald Mine\"");
2654     DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
2655                       "in the year");
2656     DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
2657                       "1987");
2658     DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
2659                       "published by");
2660     DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_3,
2661                       "Kingsoft");
2662   }
2663   else if (screen_nr == 2)
2664   {
2665     DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2666                       "Special thanks to");
2667     DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2668                       "Michael Stopp & Philip Jespersen");
2669     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2670                       "for creating");
2671     DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2672                       "\"Supaplex\"");
2673     DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
2674                       "in the year");
2675     DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
2676                       "1991");
2677     DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
2678                       "published by");
2679     DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_3,
2680                       "Digital Integration");
2681   }
2682   else if (screen_nr == 3)
2683   {
2684     DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2685                       "Special thanks to");
2686     DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2687                       "Hiroyuki Imabayashi");
2688     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2689                       "for creating");
2690     DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2691                       "\"Sokoban\"");
2692     DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
2693                       "in the year");
2694     DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
2695                       "1982");
2696     DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
2697                       "published by");
2698     DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_3,
2699                       "Thinking Rabbit");
2700   }
2701   else if (screen_nr == 4)
2702   {
2703     DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2704                       "Special thanks to");
2705     DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2706                       "Alan Bond");
2707     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2708                       "and");
2709     DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2710                       "Jürgen Bonhagen");
2711     DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
2712                       "for the continuous creation");
2713     DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_2,
2714                       "of outstanding level sets");
2715   }
2716   else if (screen_nr == 5)
2717   {
2718     DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2719                       "Thanks to");
2720     DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2721                       "Peter Elzner");
2722     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2723                       "for ideas and inspiration by");
2724     DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2725                       "Diamond Caves");
2726
2727     DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_2,
2728                       "Thanks to");
2729     DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_3,
2730                       "Steffest");
2731     DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_2,
2732                       "for ideas and inspiration by");
2733     DrawTextSCentered(ystart2 + 8 * ystep, FONT_TEXT_3,
2734                       "DX-Boulderdash");
2735   }
2736   else if (screen_nr == 6)
2737   {
2738     DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2739                       "Thanks to");
2740     DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2741                       "David Tritscher");
2742 #if 1
2743     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2744                       "for the code base used for the");
2745     DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_2,
2746                       "native Emerald Mine engine");
2747 #else
2748     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2749                       "for the new Emerald Mine engine");
2750 #endif
2751   }
2752   else if (screen_nr == 7)
2753   {
2754     DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2755                       "Thanks to");
2756     DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2757                       "Guido Schulz");
2758     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2759                       "for the initial DOS port");
2760
2761     DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
2762                       "Thanks to");
2763     DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
2764                       "Karl Hörnell");
2765     DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
2766                       "for some additional toons");
2767   }
2768   else if (screen_nr == 8)
2769   {
2770     DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2771                       "And not to forget:");
2772     DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_2,
2773                       "Many thanks to");
2774     DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_3,
2775                       "All those who contributed");
2776     DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2777                       "levels to this game");
2778     DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_3,
2779                       "since 1995");
2780   }
2781
2782   DrawTextSCentered(ybottom, FONT_TEXT_4,
2783                     "Press any key or button for next page");
2784 }
2785
2786 void DrawInfoScreen_Credits()
2787 {
2788   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_CREDITS);
2789
2790   FadeSoundsAndMusic();
2791
2792 #if 1
2793   FadeOut(REDRAW_FIELD);
2794 #endif
2795
2796   HandleInfoScreen_Credits(MB_MENU_INITIALIZE);
2797
2798 #if 1
2799   FadeIn(REDRAW_FIELD);
2800 #endif
2801 }
2802
2803 void HandleInfoScreen_Credits(int button)
2804 {
2805   static int screen_nr = 0;
2806   int num_screens = 9;
2807
2808   if (button == MB_MENU_INITIALIZE)
2809   {
2810     screen_nr = 0;
2811
2812     // DrawInfoScreen_CreditsScreen(screen_nr);
2813   }
2814
2815   if (button == MB_MENU_LEAVE)
2816   {
2817     PlaySound(SND_MENU_ITEM_SELECTING);
2818
2819     info_mode = INFO_MODE_MAIN;
2820     DrawInfoScreen();
2821
2822     return;
2823   }
2824   else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE)
2825   {
2826     if (button != MB_MENU_INITIALIZE)
2827     {
2828       PlaySound(SND_MENU_ITEM_SELECTING);
2829
2830       screen_nr++;
2831     }
2832
2833     if (screen_nr >= num_screens)
2834     {
2835       FadeSoundsAndMusic();
2836
2837       info_mode = INFO_MODE_MAIN;
2838       DrawAndFadeInInfoScreen(REDRAW_FIELD);
2839
2840       return;
2841     }
2842
2843 #if 1
2844     if (screen_nr > 0)
2845       FadeSetNextScreen();
2846 #endif
2847
2848     if (button != MB_MENU_INITIALIZE)
2849       FadeOut(REDRAW_FIELD);
2850
2851     DrawInfoScreen_CreditsScreen(screen_nr);
2852
2853     if (button != MB_MENU_INITIALIZE)
2854       FadeIn(REDRAW_FIELD);
2855   }
2856   else
2857   {
2858     PlayMenuSoundIfLoop();
2859   }
2860 }
2861
2862 void DrawInfoScreen_Program()
2863 {
2864   int ystart1 = mSY - SY + 100;
2865   int ystart2 = mSY - SY + 150;
2866   int ybottom = mSY - SY + SYSIZE - 20;
2867   int ystep = 30;
2868
2869   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_PROGRAM);
2870
2871 #if 1
2872   FadeOut(REDRAW_FIELD);
2873 #endif
2874
2875   ClearField();
2876   DrawHeadline();
2877
2878   DrawTextSCentered(ystart1, FONT_TEXT_1, "Program Information:");
2879
2880   DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2881                     "This game is Freeware!");
2882   DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_2,
2883                     "If you like it, send e-mail to:");
2884   DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_3,
2885                     PROGRAM_EMAIL_STRING);
2886   DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_2,
2887                     "or SnailMail to:");
2888   DrawTextSCentered(ystart2 + 4 * ystep + 0, FONT_TEXT_3,
2889                     "Holger Schemel");
2890   DrawTextSCentered(ystart2 + 4 * ystep + 20, FONT_TEXT_3,
2891                     "Detmolder Strasse 189");
2892   DrawTextSCentered(ystart2 + 4 * ystep + 40, FONT_TEXT_3,
2893                     "33604 Bielefeld");
2894   DrawTextSCentered(ystart2 + 4 * ystep + 60, FONT_TEXT_3,
2895                     "Germany");
2896   DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_2,
2897                     "More information and levels:");
2898   DrawTextSCentered(ystart2 + 8 * ystep, FONT_TEXT_3,
2899                     PROGRAM_WEBSITE_STRING);
2900   DrawTextSCentered(ystart2 + 9 * ystep, FONT_TEXT_2,
2901                     "If you have created new levels,");
2902   DrawTextSCentered(ystart2 + 10 * ystep, FONT_TEXT_2,
2903                     "send them to me to include them!");
2904   DrawTextSCentered(ystart2 + 11 * ystep, FONT_TEXT_2,
2905                     ":-)");
2906
2907   DrawTextSCentered(ybottom, FONT_TEXT_4,
2908                     "Press any key or button for info menu");
2909
2910 #if 1
2911   FadeIn(REDRAW_FIELD);
2912 #endif
2913 }
2914
2915 void HandleInfoScreen_Program(int button)
2916 {
2917   if (button == MB_MENU_LEAVE)
2918   {
2919     PlaySound(SND_MENU_ITEM_SELECTING);
2920
2921     info_mode = INFO_MODE_MAIN;
2922     DrawInfoScreen();
2923
2924     return;
2925   }
2926   else if (button == MB_MENU_CHOICE)
2927   {
2928     PlaySound(SND_MENU_ITEM_SELECTING);
2929
2930     FadeSoundsAndMusic();
2931
2932 #if 0
2933     FadeOut(REDRAW_FIELD);
2934 #endif
2935
2936     info_mode = INFO_MODE_MAIN;
2937     DrawAndFadeInInfoScreen(REDRAW_FIELD);
2938   }
2939   else
2940   {
2941     PlayMenuSoundIfLoop();
2942   }
2943 }
2944
2945 void DrawInfoScreen_Version()
2946 {
2947   int font_header = FONT_TEXT_3;
2948   int font_text = FONT_TEXT_2;
2949   int xstep = getFontWidth(font_text);
2950   int ystep = getFontHeight(font_text);
2951   int ystart1 = mSY - SY + 100;
2952   int ystart2 = mSY - SY + 150;
2953   int ybottom = mSY - SY + SYSIZE - 20;
2954   int xstart1 = mSX + 2 * xstep;
2955   int xstart2 = mSX + 19 * xstep;
2956 #if defined(TARGET_SDL)
2957   int xstart3 = mSX + 29 * xstep;
2958   SDL_version sdl_version_compiled;
2959   const SDL_version *sdl_version_linked;
2960   int driver_name_len = 8;
2961   char driver_name[driver_name_len];
2962 #endif
2963
2964   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_VERSION);
2965
2966 #if 1
2967   FadeOut(REDRAW_FIELD);
2968 #endif
2969
2970   ClearField();
2971   DrawHeadline();
2972
2973   DrawTextSCentered(ystart1, FONT_TEXT_1, "Version Information:");
2974
2975   DrawTextF(xstart1, ystart2, font_header, "Name");
2976   DrawTextF(xstart2, ystart2, font_text, PROGRAM_TITLE_STRING);
2977
2978   ystart2 += ystep;
2979   DrawTextF(xstart1, ystart2, font_header, "Version");
2980   DrawTextF(xstart2, ystart2, font_text, getProgramFullVersionString());
2981
2982   ystart2 += ystep;
2983   DrawTextF(xstart1, ystart2, font_header, "Platform");
2984   DrawTextF(xstart2, ystart2, font_text, PLATFORM_STRING);
2985
2986   ystart2 += ystep;
2987   DrawTextF(xstart1, ystart2, font_header, "Target");
2988   DrawTextF(xstart2, ystart2, font_text, TARGET_STRING);
2989
2990   ystart2 += ystep;
2991   DrawTextF(xstart1, ystart2, font_header, "Compile time");
2992   DrawTextF(xstart2, ystart2, font_text, getCompileDateString());
2993
2994 #if defined(TARGET_SDL)
2995   ystart2 += 3 * ystep;
2996   DrawTextF(xstart1, ystart2, font_header, "Library");
2997   DrawTextF(xstart2, ystart2, font_header, "compiled");
2998   DrawTextF(xstart3, ystart2, font_header, "linked");
2999
3000   SDL_VERSION(&sdl_version_compiled);
3001   sdl_version_linked = SDL_Linked_Version();
3002
3003   ystart2 += 2 * ystep;
3004   DrawTextF(xstart1, ystart2, font_text, "SDL");
3005   DrawTextF(xstart2, ystart2, font_text, "%d.%d.%d",
3006             sdl_version_compiled.major,
3007             sdl_version_compiled.minor,
3008             sdl_version_compiled.patch);
3009   DrawTextF(xstart3, ystart2, font_text, "%d.%d.%d",
3010             sdl_version_linked->major,
3011             sdl_version_linked->minor,
3012             sdl_version_linked->patch);
3013
3014   SDL_IMAGE_VERSION(&sdl_version_compiled);
3015   sdl_version_linked = IMG_Linked_Version();
3016
3017   ystart2 += ystep;
3018   DrawTextF(xstart1, ystart2, font_text, "SDL_image");
3019   DrawTextF(xstart2, ystart2, font_text, "%d.%d.%d",
3020             sdl_version_compiled.major,
3021             sdl_version_compiled.minor,
3022             sdl_version_compiled.patch);
3023   DrawTextF(xstart3, ystart2, font_text, "%d.%d.%d",
3024             sdl_version_linked->major,
3025             sdl_version_linked->minor,
3026             sdl_version_linked->patch);
3027
3028   SDL_MIXER_VERSION(&sdl_version_compiled);
3029   sdl_version_linked = Mix_Linked_Version();
3030
3031   ystart2 += ystep;
3032   DrawTextF(xstart1, ystart2, font_text, "SDL_mixer");
3033   DrawTextF(xstart2, ystart2, font_text, "%d.%d.%d",
3034             sdl_version_compiled.major,
3035             sdl_version_compiled.minor,
3036             sdl_version_compiled.patch);
3037   DrawTextF(xstart3, ystart2, font_text, "%d.%d.%d",
3038             sdl_version_linked->major,
3039             sdl_version_linked->minor,
3040             sdl_version_linked->patch);
3041
3042   SDL_NET_VERSION(&sdl_version_compiled);
3043   sdl_version_linked = SDLNet_Linked_Version();
3044
3045   ystart2 += ystep;
3046   DrawTextF(xstart1, ystart2, font_text, "SDL_net");
3047   DrawTextF(xstart2, ystart2, font_text, "%d.%d.%d",
3048             sdl_version_compiled.major,
3049             sdl_version_compiled.minor,
3050             sdl_version_compiled.patch);
3051   DrawTextF(xstart3, ystart2, font_text, "%d.%d.%d",
3052             sdl_version_linked->major,
3053             sdl_version_linked->minor,
3054             sdl_version_linked->patch);
3055
3056   ystart2 += 3 * ystep;
3057   DrawTextF(xstart1, ystart2, font_header, "Driver");
3058   DrawTextF(xstart2, ystart2, font_header, "Requested");
3059   DrawTextF(xstart3, ystart2, font_header, "Used");
3060
3061   SDL_VideoDriverName(driver_name, driver_name_len);
3062
3063   ystart2 += 2 * ystep;
3064   DrawTextF(xstart1, ystart2, font_text, "SDL_VideoDriver");
3065   DrawTextF(xstart2, ystart2, font_text, "%s", setup.system.sdl_videodriver);
3066   DrawTextF(xstart3, ystart2, font_text, "%s", driver_name);
3067
3068   SDL_AudioDriverName(driver_name, driver_name_len);
3069
3070   ystart2 += ystep;
3071   DrawTextF(xstart1, ystart2, font_text, "SDL_AudioDriver");
3072   DrawTextF(xstart2, ystart2, font_text, "%s", setup.system.sdl_audiodriver);
3073   DrawTextF(xstart3, ystart2, font_text, "%s", driver_name);
3074 #endif
3075
3076   DrawTextSCentered(ybottom, FONT_TEXT_4,
3077                     "Press any key or button for info menu");
3078
3079 #if 1
3080   FadeIn(REDRAW_FIELD);
3081 #endif
3082 }
3083
3084 void HandleInfoScreen_Version(int button)
3085 {
3086   if (button == MB_MENU_LEAVE)
3087   {
3088     PlaySound(SND_MENU_ITEM_SELECTING);
3089
3090     info_mode = INFO_MODE_MAIN;
3091     DrawInfoScreen();
3092
3093     return;
3094   }
3095   else if (button == MB_MENU_CHOICE)
3096   {
3097     PlaySound(SND_MENU_ITEM_SELECTING);
3098
3099     FadeSoundsAndMusic();
3100
3101 #if 0
3102     FadeOut(REDRAW_FIELD);
3103 #endif
3104
3105     info_mode = INFO_MODE_MAIN;
3106     DrawAndFadeInInfoScreen(REDRAW_FIELD);
3107   }
3108   else
3109   {
3110     PlayMenuSoundIfLoop();
3111   }
3112 }
3113
3114 void DrawInfoScreen_LevelSet()
3115 {
3116   struct TitleMessageInfo *tmi = &readme;
3117   char *filename = getLevelSetInfoFilename();
3118
3119   /* if chars set to "-1", automatically determine by text and font width */
3120   if (tmi->chars == -1)
3121     tmi->chars = tmi->width / getFontWidth(tmi->font);
3122   else
3123     tmi->width = tmi->chars * getFontWidth(tmi->font);
3124
3125   /* if lines set to "-1", automatically determine by text and font height */
3126   if (tmi->lines == -1)
3127     tmi->lines = tmi->height / getFontHeight(tmi->font);
3128   else
3129     tmi->height = tmi->lines * getFontHeight(tmi->font);
3130
3131   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_LEVELSET);
3132
3133 #if 1
3134   FadeOut(REDRAW_FIELD);
3135 #endif
3136
3137   ClearField();
3138   DrawHeadline();
3139
3140   DrawTextCentered(mSY + 100, FONT_TEXT_1, "Level Set Information:");
3141
3142   if (filename != NULL)
3143     DrawTextFile(mSX + ALIGNED_TEXT_XPOS(tmi), mSY + ALIGNED_TEXT_YPOS(tmi),
3144                  filename, tmi->font, tmi->chars, -1, tmi->lines, 0, -1,
3145                  tmi->autowrap, tmi->centered, tmi->parse_comments);
3146   else
3147     DrawTextCentered(mSY + ALIGNED_TEXT_YPOS(tmi), FONT_TEXT_2,
3148                      "No information for this level set.");
3149
3150   DrawTextCentered(mSY + SYSIZE - 20, FONT_TEXT_4,
3151                    "Press any key or button for info menu");
3152
3153 #if 1
3154   FadeIn(REDRAW_FIELD);
3155 #endif
3156 }
3157
3158 void HandleInfoScreen_LevelSet(int button)
3159 {
3160   if (button == MB_MENU_LEAVE)
3161   {
3162     PlaySound(SND_MENU_ITEM_SELECTING);
3163
3164     info_mode = INFO_MODE_MAIN;
3165     DrawInfoScreen();
3166
3167     return;
3168   }
3169   else if (button == MB_MENU_CHOICE)
3170   {
3171     PlaySound(SND_MENU_ITEM_SELECTING);
3172
3173     FadeSoundsAndMusic();
3174
3175 #if 0
3176     FadeOut(REDRAW_FIELD);
3177 #endif
3178
3179     info_mode = INFO_MODE_MAIN;
3180     DrawAndFadeInInfoScreen(REDRAW_FIELD);
3181   }
3182   else
3183   {
3184     PlayMenuSoundIfLoop();
3185   }
3186 }
3187
3188 static void DrawInfoScreenExt(int fade_mask, boolean do_fading)
3189 {
3190   SetMainBackgroundImage(IMG_BACKGROUND_INFO);
3191
3192   if (info_mode == INFO_MODE_TITLE)
3193     DrawInfoScreen_TitleScreen();
3194   else if (info_mode == INFO_MODE_ELEMENTS)
3195     DrawInfoScreen_Elements();
3196   else if (info_mode == INFO_MODE_MUSIC)
3197     DrawInfoScreen_Music();
3198   else if (info_mode == INFO_MODE_CREDITS)
3199     DrawInfoScreen_Credits();
3200   else if (info_mode == INFO_MODE_PROGRAM)
3201     DrawInfoScreen_Program();
3202   else if (info_mode == INFO_MODE_VERSION)
3203     DrawInfoScreen_Version();
3204   else if (info_mode == INFO_MODE_LEVELSET)
3205     DrawInfoScreen_LevelSet();
3206   else
3207     DrawInfoScreen_Main(fade_mask, do_fading);
3208
3209   if (info_mode != INFO_MODE_MAIN &&
3210       info_mode != INFO_MODE_TITLE &&
3211       info_mode != INFO_MODE_MUSIC)
3212   {
3213     PlayMenuSound();
3214     PlayMenuMusic();
3215   }
3216 }
3217
3218 void DrawAndFadeInInfoScreen(int fade_mask)
3219 {
3220   DrawInfoScreenExt(fade_mask, TRUE);
3221 }
3222
3223 void DrawInfoScreen()
3224 {
3225   DrawInfoScreenExt(REDRAW_FIELD, FALSE);
3226 }
3227
3228 void HandleInfoScreen(int mx, int my, int dx, int dy, int button)
3229 {
3230   if (info_mode == INFO_MODE_TITLE)
3231     HandleInfoScreen_TitleScreen(button);
3232   else if (info_mode == INFO_MODE_ELEMENTS)
3233     HandleInfoScreen_Elements(button);
3234   else if (info_mode == INFO_MODE_MUSIC)
3235     HandleInfoScreen_Music(button);
3236   else if (info_mode == INFO_MODE_CREDITS)
3237     HandleInfoScreen_Credits(button);
3238   else if (info_mode == INFO_MODE_PROGRAM)
3239     HandleInfoScreen_Program(button);
3240   else if (info_mode == INFO_MODE_VERSION)
3241     HandleInfoScreen_Version(button);
3242   else if (info_mode == INFO_MODE_LEVELSET)
3243     HandleInfoScreen_LevelSet(button);
3244   else
3245     HandleInfoScreen_Main(mx, my, dx, dy, button);
3246
3247   DoAnimation();
3248 }
3249
3250
3251 /* ========================================================================= */
3252 /* type name functions                                                       */
3253 /* ========================================================================= */
3254
3255 void HandleTypeName(int newxpos, Key key)
3256 {
3257   static char last_player_name[MAX_PLAYER_NAME_LEN + 1];
3258   struct MainControlInfo *mci = getMainControlInfo(MAIN_CONTROL_NAME);
3259   struct TextPosInfo *pos = mci->pos_input;
3260   int startx = mSX + ALIGNED_TEXT_XPOS(pos);
3261   int starty = mSY + ALIGNED_TEXT_YPOS(pos);
3262   static int xpos = 0;
3263   int font_nr = pos->font;
3264   int font_active_nr = FONT_ACTIVE(font_nr);
3265   int font_width = getFontWidth(font_active_nr);
3266   char key_char = getValidConfigValueChar(getCharFromKey(key));
3267   boolean is_valid_key_char = (key_char != 0 && (key_char != ' ' || xpos > 0));
3268   boolean is_active = TRUE;
3269
3270   DrawBackgroundForFont(startx,starty, pos->width, pos->height, font_active_nr);
3271
3272   if (newxpos)
3273   {
3274     strcpy(last_player_name, setup.player_name);
3275
3276     xpos = newxpos;
3277   }
3278   else if (is_valid_key_char && xpos < MAX_PLAYER_NAME_LEN)
3279   {
3280     setup.player_name[xpos] = key_char;
3281     setup.player_name[xpos + 1] = 0;
3282
3283     xpos++;
3284   }
3285   else if ((key == KSYM_Delete || key == KSYM_BackSpace) && xpos > 0)
3286   {
3287     xpos--;
3288
3289     setup.player_name[xpos] = 0;
3290   }
3291   else if (key == KSYM_Return && xpos > 0)
3292   {
3293     SaveSetup();
3294
3295     is_active = FALSE;
3296
3297     game_status = GAME_MODE_MAIN;
3298   }
3299   else if (key == KSYM_Escape)
3300   {
3301     strcpy(setup.player_name, last_player_name);
3302
3303     is_active = FALSE;
3304
3305     game_status = GAME_MODE_MAIN;
3306   }
3307
3308   if (is_active)
3309   {
3310     pos->width = (strlen(setup.player_name) + 1) * font_width;
3311     startx = mSX + ALIGNED_TEXT_XPOS(pos);
3312
3313     DrawText(startx, starty, setup.player_name, font_active_nr);
3314     DrawText(startx + xpos * font_width, starty, "_", font_active_nr);
3315   }
3316   else
3317   {
3318     pos->width = strlen(setup.player_name) * font_width;
3319     startx = mSX + ALIGNED_TEXT_XPOS(pos);
3320
3321     DrawText(startx, starty, setup.player_name, font_nr);
3322   }
3323 }
3324
3325
3326 /* ========================================================================= */
3327 /* tree menu functions                                                       */
3328 /* ========================================================================= */
3329
3330 static void DrawChooseTree(TreeInfo **ti_ptr)
3331 {
3332   UnmapAllGadgets();
3333
3334   FreeScreenGadgets();
3335   CreateScreenGadgets();
3336
3337   CloseDoor(DOOR_CLOSE_2);
3338
3339 #if 1
3340   FadeOut(REDRAW_FIELD);
3341 #endif
3342
3343   ClearField();
3344
3345   HandleChooseTree(0, 0, 0, 0, MB_MENU_INITIALIZE, ti_ptr);
3346   MapScreenTreeGadgets(*ti_ptr);
3347
3348 #if 1
3349   FadeIn(REDRAW_FIELD);
3350 #endif
3351
3352   InitAnimation();
3353 }
3354
3355 static void AdjustChooseTreeScrollbar(int id, int first_entry, TreeInfo *ti)
3356 {
3357   struct GadgetInfo *gi = screen_gadget[id];
3358   int items_max, items_visible, item_position;
3359
3360   items_max = numTreeInfoInGroup(ti);
3361   items_visible = NUM_MENU_ENTRIES_ON_SCREEN;
3362   item_position = first_entry;
3363
3364   if (item_position > items_max - items_visible)
3365     item_position = items_max - items_visible;
3366
3367   ModifyGadget(gi, GDI_SCROLLBAR_ITEMS_MAX, items_max,
3368                GDI_SCROLLBAR_ITEMS_VISIBLE, items_visible,
3369                GDI_SCROLLBAR_ITEM_POSITION, item_position, GDI_END);
3370 }
3371
3372 static void drawChooseTreeList(int first_entry, int num_page_entries,
3373                                TreeInfo *ti)
3374 {
3375   int i;
3376   char *title_string = NULL;
3377   int yoffset_sets = MENU_TITLE1_YPOS;
3378   int yoffset_setup = 16;
3379   int yoffset = (ti->type == TREE_TYPE_LEVEL_DIR ||
3380                  ti->type == TREE_TYPE_LEVEL_NR ? yoffset_sets : yoffset_setup);
3381   int last_game_status = game_status;   /* save current game status */
3382
3383   title_string = ti->infotext;
3384
3385   DrawTextSCentered(mSY - SY + yoffset, FONT_TITLE_1, title_string);
3386
3387 #if 0
3388   /* force LEVELS font on artwork setup screen */
3389   game_status = GAME_MODE_LEVELS;
3390 #endif
3391
3392 #if 1
3393   /* clear tree list area, but not title or scrollbar */
3394   DrawBackground(mSX, mSY + MENU_SCREEN_START_YPOS * 32,
3395                  SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset,
3396                  NUM_MENU_ENTRIES_ON_SCREEN * 32);
3397 #else
3398   /* clear tree list area, but not title or scrollbar */
3399   DrawBackground(mSX, mSY + MENU_SCREEN_START_YPOS * 32,
3400                  SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset,
3401                  MAX_MENU_ENTRIES_ON_SCREEN * 32);
3402 #endif
3403
3404   for (i = 0; i < num_page_entries; i++)
3405   {
3406     TreeInfo *node, *node_first;
3407     int entry_pos = first_entry + i;
3408     int xpos = MENU_SCREEN_START_XPOS;
3409     int ypos = MENU_SCREEN_START_YPOS + i;
3410     int startx = mSX + xpos * 32;
3411     int starty = mSY + ypos * 32;
3412     int font_nr = FONT_TEXT_1;
3413     int font_xoffset = getFontBitmapInfo(font_nr)->draw_xoffset;
3414     int startx_text = startx + font_xoffset;
3415     int startx_scrollbar = mSX + SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset;
3416     int text_size = startx_scrollbar - startx_text;
3417     int max_buffer_len = text_size / getFontWidth(font_nr);
3418     char buffer[max_buffer_len + 1];
3419
3420     node_first = getTreeInfoFirstGroupEntry(ti);
3421     node = getTreeInfoFromPos(node_first, entry_pos);
3422
3423     strncpy(buffer, node->name, max_buffer_len);
3424     buffer[max_buffer_len] = '\0';
3425
3426     DrawText(startx, starty, buffer, font_nr + node->color);
3427
3428     if (node->parent_link)
3429       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
3430     else if (node->level_group)
3431       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
3432     else
3433       initCursor(i, IMG_MENU_BUTTON);
3434   }
3435
3436   game_status = last_game_status;       /* restore current game status */
3437
3438   redraw_mask |= REDRAW_FIELD;
3439 }
3440
3441 static void drawChooseTreeInfo(int entry_pos, TreeInfo *ti)
3442 {
3443   TreeInfo *node, *node_first;
3444   int x, last_redraw_mask = redraw_mask;
3445   int ypos = MENU_TITLE2_YPOS;
3446   int font_nr = FONT_TITLE_2;
3447
3448   if (ti->type == TREE_TYPE_LEVEL_NR)
3449     DrawTextFCentered(ypos, font_nr, leveldir_current->name);
3450
3451   if (ti->type != TREE_TYPE_LEVEL_DIR)
3452     return;
3453
3454   node_first = getTreeInfoFirstGroupEntry(ti);
3455   node = getTreeInfoFromPos(node_first, entry_pos);
3456
3457   DrawBackgroundForFont(SX, SY + ypos, SXSIZE, getFontHeight(font_nr), font_nr);
3458
3459 #if 1
3460   if (node->parent_link)
3461     DrawTextFCentered(ypos, font_nr, "leave \"%s\"",
3462                       node->node_parent->name);
3463   else if (node->level_group)
3464     DrawTextFCentered(ypos, font_nr, "enter \"%s\"",
3465                       node->name);
3466   else if (ti->type == TREE_TYPE_LEVEL_DIR)
3467     DrawTextFCentered(ypos, font_nr, "%3d %s (%s)",
3468                       node->levels, (node->levels > 1 ? "levels" : "level"),
3469                       node->class_desc);
3470 #else
3471   if (node->parent_link)
3472     DrawTextFCentered(ypos, font_nr, "leave group \"%s\"",
3473                       node->class_desc);
3474   else if (node->level_group)
3475     DrawTextFCentered(ypos, font_nr, "enter group \"%s\"",
3476                       node->class_desc);
3477   else if (ti->type == TREE_TYPE_LEVEL_DIR)
3478     DrawTextFCentered(ypos, font_nr, "%3d levels (%s)",
3479                       node->levels, node->class_desc);
3480 #endif
3481
3482   /* let BackToFront() redraw only what is needed */
3483   redraw_mask = last_redraw_mask | REDRAW_TILES;
3484   for (x = 0; x < SCR_FIELDX; x++)
3485     MarkTileDirty(x, 1);
3486 }
3487
3488 static void HandleChooseTree(int mx, int my, int dx, int dy, int button,
3489                              TreeInfo **ti_ptr)
3490 {
3491   TreeInfo *ti = *ti_ptr;
3492   int x = 0;
3493   int y = ti->cl_cursor;
3494   int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
3495   int num_entries = numTreeInfoInGroup(ti);
3496   int num_page_entries;
3497   int last_game_status = game_status;   /* save current game status */
3498   boolean position_set_by_scrollbar = (dx == 999);
3499
3500 #if 0
3501   /* force LEVELS draw offset on choose level and artwork setup screen */
3502   game_status = GAME_MODE_LEVELS;
3503 #endif
3504
3505   if (num_entries <= NUM_MENU_ENTRIES_ON_SCREEN)
3506     num_page_entries = num_entries;
3507   else
3508     num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
3509
3510   game_status = last_game_status;       /* restore current game status */
3511
3512   if (button == MB_MENU_INITIALIZE)
3513   {
3514     int num_entries = numTreeInfoInGroup(ti);
3515     int entry_pos = posTreeInfo(ti);
3516
3517     if (ti->cl_first == -1)
3518     {
3519       /* only on initialization */
3520       ti->cl_first = MAX(0, entry_pos - num_page_entries + 1);
3521       ti->cl_cursor = entry_pos - ti->cl_first;
3522     }
3523     else if (ti->cl_cursor >= num_page_entries ||
3524              (num_entries > num_page_entries &&
3525               num_entries - ti->cl_first < num_page_entries))
3526     {
3527       /* only after change of list size (by custom graphic configuration) */
3528       ti->cl_first = MAX(0, entry_pos - num_page_entries + 1);
3529       ti->cl_cursor = entry_pos - ti->cl_first;
3530     }
3531
3532     if (position_set_by_scrollbar)
3533       ti->cl_first = dy;
3534     else
3535       AdjustChooseTreeScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL,
3536                                 ti->cl_first, ti);
3537
3538     drawChooseTreeList(ti->cl_first, num_page_entries, ti);
3539     drawChooseTreeInfo(ti->cl_first + ti->cl_cursor, ti);
3540     drawChooseTreeCursor(ti->cl_cursor, TRUE);
3541
3542     return;
3543   }
3544   else if (button == MB_MENU_LEAVE)
3545   {
3546     FadeSetLeaveMenu();
3547
3548     PlaySound(SND_MENU_ITEM_SELECTING);
3549
3550     if (ti->node_parent)
3551     {
3552       *ti_ptr = ti->node_parent;
3553       DrawChooseTree(ti_ptr);
3554     }
3555     else if (game_status == GAME_MODE_SETUP)
3556     {
3557       if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
3558         execSetupGame();
3559       else if (setup_mode == SETUP_MODE_CHOOSE_SCREEN_MODE ||
3560                setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
3561         execSetupGraphics();
3562       else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
3563                setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
3564                setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
3565         execSetupSound();
3566       else
3567         execSetupArtwork();
3568     }
3569     else
3570     {
3571       if (game_status == GAME_MODE_LEVELNR)
3572         level_nr = atoi(level_number_current->identifier);
3573
3574       game_status = GAME_MODE_MAIN;
3575
3576       DrawMainMenuExt(REDRAW_FIELD, FALSE);
3577     }
3578
3579     return;
3580   }
3581
3582   if (mx || my)         /* mouse input */
3583   {
3584     int last_game_status = game_status; /* save current game status */
3585
3586 #if 0
3587     /* force LEVELS draw offset on artwork setup screen */
3588     game_status = GAME_MODE_LEVELS;
3589 #endif
3590
3591     x = (mx - mSX) / 32;
3592     y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
3593
3594     game_status = last_game_status;     /* restore current game status */
3595   }
3596   else if (dx || dy)    /* keyboard or scrollbar/scrollbutton input */
3597   {
3598     /* move cursor instead of scrolling when already at start/end of list */
3599     if (dy == -1 * SCROLL_LINE && ti->cl_first == 0)
3600       dy = -1;
3601     else if (dy == +1 * SCROLL_LINE &&
3602              ti->cl_first + num_page_entries == num_entries)
3603       dy = 1;
3604
3605     /* handle scrolling screen one line or page */
3606     if (ti->cl_cursor + dy < 0 ||
3607         ti->cl_cursor + dy > num_page_entries - 1)
3608     {
3609       if (ABS(dy) == SCROLL_PAGE)
3610         step = num_page_entries - 1;
3611
3612       if (dy < 0 && ti->cl_first > 0)
3613       {
3614         /* scroll page/line up */
3615
3616         ti->cl_first -= step;
3617         if (ti->cl_first < 0)
3618           ti->cl_first = 0;
3619
3620         drawChooseTreeList(ti->cl_first, num_page_entries, ti);
3621         drawChooseTreeInfo(ti->cl_first + ti->cl_cursor, ti);
3622         drawChooseTreeCursor(ti->cl_cursor, TRUE);
3623
3624         AdjustChooseTreeScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL,
3625                                   ti->cl_first, ti);
3626       }
3627       else if (dy > 0 && ti->cl_first + num_page_entries < num_entries)
3628       {
3629         /* scroll page/line down */
3630
3631         ti->cl_first += step;
3632         if (ti->cl_first + num_page_entries > num_entries)
3633           ti->cl_first = MAX(0, num_entries - num_page_entries);
3634
3635         drawChooseTreeList(ti->cl_first, num_page_entries, ti);
3636         drawChooseTreeInfo(ti->cl_first + ti->cl_cursor, ti);
3637         drawChooseTreeCursor(ti->cl_cursor, TRUE);
3638
3639         AdjustChooseTreeScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL,
3640                                   ti->cl_first, ti);
3641       }
3642
3643       return;
3644     }
3645
3646     /* handle moving cursor one line */
3647     y = ti->cl_cursor + dy;
3648   }
3649
3650   if (dx == 1)
3651   {
3652     TreeInfo *node_first, *node_cursor;
3653     int entry_pos = ti->cl_first + y;
3654
3655     node_first = getTreeInfoFirstGroupEntry(ti);
3656     node_cursor = getTreeInfoFromPos(node_first, entry_pos);
3657
3658     if (node_cursor->node_group)
3659     {
3660       FadeSetEnterMenu();
3661
3662       PlaySound(SND_MENU_ITEM_SELECTING);
3663
3664       node_cursor->cl_first = ti->cl_first;
3665       node_cursor->cl_cursor = ti->cl_cursor;
3666       *ti_ptr = node_cursor->node_group;
3667       DrawChooseTree(ti_ptr);
3668
3669       return;
3670     }
3671   }
3672   else if (dx == -1 && ti->node_parent)
3673   {
3674     FadeSetLeaveMenu();
3675
3676     PlaySound(SND_MENU_ITEM_SELECTING);
3677
3678     *ti_ptr = ti->node_parent;
3679     DrawChooseTree(ti_ptr);
3680
3681     return;
3682   }
3683
3684   if (!anyScrollbarGadgetActive() &&
3685       IN_VIS_FIELD(x, y) &&
3686       mx < screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->x &&
3687       y >= 0 && y < num_page_entries)
3688   {
3689     if (button)
3690     {
3691       if (y != ti->cl_cursor)
3692       {
3693         PlaySound(SND_MENU_ITEM_ACTIVATING);
3694
3695         drawChooseTreeCursor(ti->cl_cursor, FALSE);
3696         drawChooseTreeCursor(y, TRUE);
3697         drawChooseTreeInfo(ti->cl_first + y, ti);
3698
3699         ti->cl_cursor = y;
3700       }
3701     }
3702     else
3703     {
3704       TreeInfo *node_first, *node_cursor;
3705       int entry_pos = ti->cl_first + y;
3706
3707       PlaySound(SND_MENU_ITEM_SELECTING);
3708
3709       node_first = getTreeInfoFirstGroupEntry(ti);
3710       node_cursor = getTreeInfoFromPos(node_first, entry_pos);
3711
3712       if (node_cursor->node_group)
3713       {
3714         FadeSetEnterMenu();
3715
3716         node_cursor->cl_first = ti->cl_first;
3717         node_cursor->cl_cursor = ti->cl_cursor;
3718         *ti_ptr = node_cursor->node_group;
3719         DrawChooseTree(ti_ptr);
3720       }
3721       else if (node_cursor->parent_link)
3722       {
3723         FadeSetLeaveMenu();
3724
3725         *ti_ptr = node_cursor->node_parent;
3726         DrawChooseTree(ti_ptr);
3727       }
3728       else
3729       {
3730         FadeSetEnterScreen();
3731
3732         node_cursor->cl_first = ti->cl_first;
3733         node_cursor->cl_cursor = ti->cl_cursor;
3734         *ti_ptr = node_cursor;
3735
3736         if (ti->type == TREE_TYPE_LEVEL_DIR)
3737         {
3738           LoadLevelSetup_SeriesInfo();
3739
3740           SaveLevelSetup_LastSeries();
3741           SaveLevelSetup_SeriesInfo();
3742           TapeErase();
3743         }
3744
3745         if (game_status == GAME_MODE_SETUP)
3746         {
3747           if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
3748             execSetupGame();
3749           else if (setup_mode == SETUP_MODE_CHOOSE_SCREEN_MODE ||
3750                    setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
3751             execSetupGraphics();
3752           else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
3753                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
3754                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
3755             execSetupSound();
3756           else
3757             execSetupArtwork();
3758         }
3759         else
3760         {
3761           if (game_status == GAME_MODE_LEVELNR)
3762             level_nr = atoi(level_number_current->identifier);
3763
3764           game_status = GAME_MODE_MAIN;
3765
3766           DrawMainMenu();
3767         }
3768       }
3769     }
3770   }
3771 }
3772
3773 void DrawChooseLevelSet()
3774 {
3775   SetMainBackgroundImage(IMG_BACKGROUND_LEVELS);
3776
3777   DrawChooseTree(&leveldir_current);
3778
3779   PlayMenuSound();
3780   PlayMenuMusic();
3781 }
3782
3783 void HandleChooseLevelSet(int mx, int my, int dx, int dy, int button)
3784 {
3785   HandleChooseTree(mx, my, dx, dy, button, &leveldir_current);
3786
3787   DoAnimation();
3788 }
3789
3790 void DrawChooseLevelNr()
3791 {
3792   int i;
3793
3794   if (level_number != NULL)
3795   {
3796     freeTreeInfo(level_number);
3797
3798     level_number = NULL;
3799   }
3800
3801   for (i = leveldir_current->first_level; i <= leveldir_current->last_level;i++)
3802   {
3803     TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_LEVEL_NR);
3804     char identifier[32], name[32];
3805     int value = i;
3806
3807     /* temporarily load level info to get level name */
3808     LoadLevelInfoOnly(i);
3809
3810     ti->node_top = &level_number;
3811     ti->sort_priority = 10000 + value;
3812     ti->color = (level.no_valid_file ? FC_BLUE :
3813                  LevelStats_getSolved(i) ? FC_GREEN :
3814                  LevelStats_getPlayed(i) ? FC_YELLOW : FC_RED);
3815
3816     sprintf(identifier, "%d", value);
3817     sprintf(name, "%03d: %s", value,
3818             (level.no_valid_file ? "(no file)" : level.name));
3819
3820     setString(&ti->identifier, identifier);
3821     setString(&ti->name, name);
3822     setString(&ti->name_sorting, name);
3823
3824     pushTreeInfo(&level_number, ti);
3825   }
3826
3827   /* sort level number values to start with lowest level number */
3828   sortTreeInfo(&level_number);
3829
3830   /* set current level number to current level number */
3831   level_number_current =
3832     getTreeInfoFromIdentifier(level_number, i_to_a(level_nr));
3833
3834   /* if that also fails, set current level number to first available level */
3835   if (level_number_current == NULL)
3836     level_number_current = level_number;
3837
3838   SetMainBackgroundImage(IMG_BACKGROUND_LEVELNR);
3839
3840 #if 1
3841   DrawChooseTree(&level_number_current);
3842 #else
3843   DrawChooseTree(&leveldir_current);
3844 #endif
3845
3846   PlayMenuSound();
3847   PlayMenuMusic();
3848 }
3849
3850 void HandleChooseLevelNr(int mx, int my, int dx, int dy, int button)
3851 {
3852 #if 1
3853   HandleChooseTree(mx, my, dx, dy, button, &level_number_current);
3854 #else
3855   HandleChooseTree(mx, my, dx, dy, button, &leveldir_current);
3856 #endif
3857
3858   DoAnimation();
3859 }
3860
3861 void DrawHallOfFame(int highlight_position)
3862 {
3863   UnmapAllGadgets();
3864   FadeSoundsAndMusic();
3865
3866   /* (this is needed when called from GameEnd() after winning a game) */
3867   KeyboardAutoRepeatOn();
3868   ActivateJoystick();
3869
3870   /* (this is needed when called from GameEnd() after winning a game) */
3871   SetDrawDeactivationMask(REDRAW_NONE);
3872   SetDrawBackgroundMask(REDRAW_FIELD);
3873
3874   CloseDoor(DOOR_CLOSE_2);
3875
3876   if (highlight_position < 0) 
3877     LoadScore(level_nr);
3878
3879   FadeSetEnterScreen();
3880
3881   // printf("::: %d: %d\n", game_status, menu.enter_screen[game_status]);
3882
3883 #if 1
3884   FadeOut(REDRAW_FIELD);
3885 #endif
3886
3887   InitAnimation();
3888
3889   PlayMenuSound();
3890   PlayMenuMusic();
3891
3892   HandleHallOfFame(highlight_position, 0, 0, 0, MB_MENU_INITIALIZE);
3893
3894 #if 1
3895   FadeIn(REDRAW_FIELD);
3896 #endif
3897 }
3898
3899 static void drawHallOfFameList(int first_entry, int highlight_position)
3900 {
3901   int i;
3902
3903   SetMainBackgroundImage(IMG_BACKGROUND_SCORES);
3904   ClearField();
3905
3906   DrawTextSCentered(MENU_TITLE1_YPOS, FONT_TITLE_1, "Hall Of Fame");
3907   DrawTextFCentered(MENU_TITLE2_YPOS, FONT_TITLE_2,
3908                     "HighScores of Level %d", level_nr);
3909
3910   for (i = 0; i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
3911   {
3912     int entry = first_entry + i;
3913     boolean active = (entry == highlight_position);
3914     int font_nr1 = (active ? FONT_TEXT_1_ACTIVE : FONT_TEXT_1);
3915     int font_nr2 = (active ? FONT_TEXT_2_ACTIVE : FONT_TEXT_2);
3916     int font_nr3 = (active ? FONT_TEXT_3_ACTIVE : FONT_TEXT_3);
3917     int font_nr4 = (active ? FONT_TEXT_4_ACTIVE : FONT_TEXT_4);
3918     int dx1 = 3 * getFontWidth(font_nr1);
3919     int dx2 = dx1 + getFontWidth(font_nr1);
3920     int dx3 = dx2 + 25 * getFontWidth(font_nr3);
3921     int sy = mSY + 64 + i * 32;
3922
3923     DrawText(mSX, sy, int2str(entry + 1, 3), font_nr1);
3924     DrawText(mSX + dx1, sy, ".", font_nr1);
3925     DrawText(mSX + dx2, sy, ".........................", font_nr3);
3926
3927     if (!strEqual(highscore[entry].Name, EMPTY_PLAYER_NAME))
3928       DrawText(mSX + dx2, sy, highscore[entry].Name, font_nr2);
3929
3930     DrawText(mSX + dx3, sy, int2str(highscore[entry].Score, 5), font_nr4);
3931   }
3932
3933   redraw_mask |= REDRAW_FIELD;
3934 }
3935
3936 void HandleHallOfFame(int mx, int my, int dx, int dy, int button)
3937 {
3938   static int first_entry = 0;
3939   static int highlight_position = 0;
3940   int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
3941
3942   if (button == MB_MENU_INITIALIZE)
3943   {
3944     first_entry = 0;
3945     highlight_position = mx;
3946     drawHallOfFameList(first_entry, highlight_position);
3947
3948     return;
3949   }
3950
3951   if (ABS(dy) == SCROLL_PAGE)           /* handle scrolling one page */
3952     step = NUM_MENU_ENTRIES_ON_SCREEN - 1;
3953
3954   if (dy < 0)
3955   {
3956     if (first_entry > 0)
3957     {
3958       first_entry -= step;
3959       if (first_entry < 0)
3960         first_entry = 0;
3961
3962       drawHallOfFameList(first_entry, highlight_position);
3963     }
3964   }
3965   else if (dy > 0)
3966   {
3967     if (first_entry + NUM_MENU_ENTRIES_ON_SCREEN < MAX_SCORE_ENTRIES)
3968     {
3969       first_entry += step;
3970       if (first_entry + NUM_MENU_ENTRIES_ON_SCREEN > MAX_SCORE_ENTRIES)
3971         first_entry = MAX(0, MAX_SCORE_ENTRIES - NUM_MENU_ENTRIES_ON_SCREEN);
3972
3973       drawHallOfFameList(first_entry, highlight_position);
3974     }
3975   }
3976   else if (button == MB_MENU_LEAVE)
3977   {
3978     PlaySound(SND_MENU_ITEM_SELECTING);
3979
3980     FadeSound(SND_BACKGROUND_SCORES);
3981
3982     game_status = GAME_MODE_MAIN;
3983
3984     DrawMainMenu();
3985   }
3986   else if (button == MB_MENU_CHOICE)
3987   {
3988     PlaySound(SND_MENU_ITEM_SELECTING);
3989
3990     FadeSound(SND_BACKGROUND_SCORES);
3991
3992 #if 0
3993     FadeOut(REDRAW_FIELD);
3994 #endif
3995
3996     game_status = GAME_MODE_MAIN;
3997
3998     DrawAndFadeInMainMenu(REDRAW_FIELD);
3999   }
4000
4001   if (game_status == GAME_MODE_SCORES)
4002     PlayMenuSoundIfLoop();
4003
4004   DoAnimation();
4005 }
4006
4007
4008 /* ========================================================================= */
4009 /* setup screen functions                                                    */
4010 /* ========================================================================= */
4011
4012 static struct TokenInfo *setup_info;
4013 static int num_setup_info;
4014
4015 static char *screen_mode_text;
4016 static char *scroll_delay_text;
4017 static char *game_speed_text;
4018 static char *graphics_set_name;
4019 static char *sounds_set_name;
4020 static char *music_set_name;
4021 static char *volume_simple_text;
4022 static char *volume_loops_text;
4023 static char *volume_music_text;
4024
4025 static void execSetupMain()
4026 {
4027   setup_mode = SETUP_MODE_MAIN;
4028
4029   DrawSetupScreen();
4030 }
4031
4032 static void execSetupGame()
4033 {
4034   if (game_speeds == NULL)
4035   {
4036     int i;
4037
4038     for (i = 0; game_speeds_list[i].value != -1; i++)
4039     {
4040       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4041       char identifier[32], name[32];
4042       int value = game_speeds_list[i].value;
4043       char *text = game_speeds_list[i].text;
4044
4045       ti->node_top = &game_speeds;
4046       ti->sort_priority = 10000 - value;
4047
4048       sprintf(identifier, "%d", value);
4049       sprintf(name, "%s", text);
4050
4051       setString(&ti->identifier, identifier);
4052       setString(&ti->name, name);
4053       setString(&ti->name_sorting, name);
4054       setString(&ti->infotext, "Game Speed");
4055
4056       pushTreeInfo(&game_speeds, ti);
4057     }
4058
4059     /* sort game speed values to start with slowest game speed */
4060     sortTreeInfo(&game_speeds);
4061
4062     /* set current game speed to configured game speed value */
4063     game_speed_current =
4064       getTreeInfoFromIdentifier(game_speeds, i_to_a(setup.game_frame_delay));
4065
4066     /* if that fails, set current game speed to reliable default value */
4067     if (game_speed_current == NULL)
4068       game_speed_current =
4069         getTreeInfoFromIdentifier(game_speeds, i_to_a(GAME_FRAME_DELAY));
4070
4071     /* if that also fails, set current game speed to first available speed */
4072     if (game_speed_current == NULL)
4073       game_speed_current = game_speeds;
4074   }
4075
4076   setup.game_frame_delay = atoi(game_speed_current->identifier);
4077
4078   /* needed for displaying game speed text instead of identifier */
4079   game_speed_text = game_speed_current->name;
4080
4081   setup_mode = SETUP_MODE_GAME;
4082
4083   DrawSetupScreen();
4084 }
4085
4086 static void execSetupChooseGameSpeed()
4087 {
4088   setup_mode = SETUP_MODE_CHOOSE_GAME_SPEED;
4089
4090   DrawSetupScreen();
4091 }
4092
4093 static void execSetupEditor()
4094 {
4095   setup_mode = SETUP_MODE_EDITOR;
4096
4097   DrawSetupScreen();
4098 }
4099
4100 static void execSetupGraphics()
4101 {
4102   if (video.fullscreen_available && screen_modes == NULL)
4103   {
4104     int i;
4105
4106     for (i = 0; video.fullscreen_modes[i].width != -1; i++)
4107     {
4108       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4109       char identifier[32], name[32];
4110       int x = video.fullscreen_modes[i].width;
4111       int y = video.fullscreen_modes[i].height;
4112       int xx, yy;
4113
4114       get_aspect_ratio_from_screen_mode(&video.fullscreen_modes[i], &xx, &yy);
4115
4116       ti->node_top = &screen_modes;
4117       ti->sort_priority = x * 10000 + y;
4118
4119       sprintf(identifier, "%dx%d", x, y);
4120       sprintf(name, "%d x %d [%d:%d]", x, y, xx, yy);
4121
4122       setString(&ti->identifier, identifier);
4123       setString(&ti->name, name);
4124       setString(&ti->name_sorting, name);
4125       setString(&ti->infotext, "Fullscreen Mode");
4126
4127       pushTreeInfo(&screen_modes, ti);
4128     }
4129
4130     /* sort fullscreen modes to start with lowest available screen resolution */
4131     sortTreeInfo(&screen_modes);
4132
4133     /* set current screen mode for fullscreen mode to configured setup value */
4134     screen_mode_current = getTreeInfoFromIdentifier(screen_modes,
4135                                                     setup.fullscreen_mode);
4136
4137     /* if that fails, set current screen mode to reliable default value */
4138     if (screen_mode_current == NULL)
4139       screen_mode_current = getTreeInfoFromIdentifier(screen_modes,
4140                                                       DEFAULT_FULLSCREEN_MODE);
4141
4142     /* if that also fails, set current screen mode to first available mode */
4143     if (screen_mode_current == NULL)
4144       screen_mode_current = screen_modes;
4145
4146     if (screen_mode_current == NULL)
4147       video.fullscreen_available = FALSE;
4148   }
4149
4150   if (video.fullscreen_available)
4151   {
4152     setup.fullscreen_mode = screen_mode_current->identifier;
4153
4154     /* needed for displaying screen mode name instead of identifier */
4155     screen_mode_text = screen_mode_current->name;
4156   }
4157
4158 #if 1
4159   if (scroll_delays == NULL)
4160   {
4161     int i;
4162
4163     for (i = 0; scroll_delays_list[i].value != -1; i++)
4164     {
4165       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4166       char identifier[32], name[32];
4167       int value = scroll_delays_list[i].value;
4168       char *text = scroll_delays_list[i].text;
4169
4170       ti->node_top = &scroll_delays;
4171       ti->sort_priority = value;
4172
4173       sprintf(identifier, "%d", value);
4174       sprintf(name, "%s", text);
4175
4176       setString(&ti->identifier, identifier);
4177       setString(&ti->name, name);
4178       setString(&ti->name_sorting, name);
4179       setString(&ti->infotext, "Scroll Delay");
4180
4181       pushTreeInfo(&scroll_delays, ti);
4182     }
4183
4184     /* sort scroll delay values to start with lowest scroll delay value */
4185     sortTreeInfo(&scroll_delays);
4186
4187     /* set current scroll delay value to configured scroll delay value */
4188     scroll_delay_current =
4189       getTreeInfoFromIdentifier(scroll_delays,i_to_a(setup.scroll_delay_value));
4190
4191     /* if that fails, set current scroll delay to reliable default value */
4192     if (scroll_delay_current == NULL)
4193       scroll_delay_current =
4194         getTreeInfoFromIdentifier(scroll_delays, i_to_a(STD_SCROLL_DELAY));
4195
4196     /* if that also fails, set current scroll delay to first available value */
4197     if (scroll_delay_current == NULL)
4198       scroll_delay_current = scroll_delays;
4199   }
4200
4201   setup.scroll_delay_value = atoi(scroll_delay_current->identifier);
4202
4203   /* needed for displaying scroll delay text instead of identifier */
4204   scroll_delay_text = scroll_delay_current->name;
4205 #endif
4206
4207   setup_mode = SETUP_MODE_GRAPHICS;
4208
4209   DrawSetupScreen();
4210 }
4211
4212 static void execSetupChooseScreenMode()
4213 {
4214   if (!video.fullscreen_available)
4215     return;
4216
4217   setup_mode = SETUP_MODE_CHOOSE_SCREEN_MODE;
4218
4219   DrawSetupScreen();
4220 }
4221
4222 static void execSetupChooseScrollDelay()
4223 {
4224   setup_mode = SETUP_MODE_CHOOSE_SCROLL_DELAY;
4225
4226   DrawSetupScreen();
4227 }
4228
4229 static void execSetupChooseVolumeSimple()
4230 {
4231   setup_mode = SETUP_MODE_CHOOSE_VOLUME_SIMPLE;
4232
4233   DrawSetupScreen();
4234 }
4235
4236 static void execSetupChooseVolumeLoops()
4237 {
4238   setup_mode = SETUP_MODE_CHOOSE_VOLUME_LOOPS;
4239
4240   DrawSetupScreen();
4241 }
4242
4243 static void execSetupChooseVolumeMusic()
4244 {
4245   setup_mode = SETUP_MODE_CHOOSE_VOLUME_MUSIC;
4246
4247   DrawSetupScreen();
4248 }
4249
4250 static void execSetupSound()
4251 {
4252 #if 1
4253   if (volumes_simple == NULL)
4254   {
4255     int i;
4256
4257     for (i = 0; volumes_list[i].value != -1; i++)
4258     {
4259       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4260       char identifier[32], name[32];
4261       int value = volumes_list[i].value;
4262       char *text = volumes_list[i].text;
4263
4264       ti->node_top = &volumes_simple;
4265       ti->sort_priority = value;
4266
4267       sprintf(identifier, "%d", value);
4268       sprintf(name, "%s", text);
4269
4270       setString(&ti->identifier, identifier);
4271       setString(&ti->name, name);
4272       setString(&ti->name_sorting, name);
4273       setString(&ti->infotext, "Sound Volume");
4274
4275       pushTreeInfo(&volumes_simple, ti);
4276     }
4277
4278     /* sort volume values to start with lowest volume value */
4279     sortTreeInfo(&volumes_simple);
4280
4281     /* set current volume value to configured volume value */
4282     volume_simple_current =
4283       getTreeInfoFromIdentifier(volumes_simple,i_to_a(setup.volume_simple));
4284
4285     /* if that fails, set current volume to reliable default value */
4286     if (volume_simple_current == NULL)
4287       volume_simple_current =
4288         getTreeInfoFromIdentifier(volumes_simple, i_to_a(100));
4289
4290     /* if that also fails, set current volume to first available value */
4291     if (volume_simple_current == NULL)
4292       volume_simple_current = volumes_simple;
4293   }
4294
4295   if (volumes_loops == NULL)
4296   {
4297     int i;
4298
4299     for (i = 0; volumes_list[i].value != -1; i++)
4300     {
4301       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4302       char identifier[32], name[32];
4303       int value = volumes_list[i].value;
4304       char *text = volumes_list[i].text;
4305
4306       ti->node_top = &volumes_loops;
4307       ti->sort_priority = value;
4308
4309       sprintf(identifier, "%d", value);
4310       sprintf(name, "%s", text);
4311
4312       setString(&ti->identifier, identifier);
4313       setString(&ti->name, name);
4314       setString(&ti->name_sorting, name);
4315       setString(&ti->infotext, "Loops Volume");
4316
4317       pushTreeInfo(&volumes_loops, ti);
4318     }
4319
4320     /* sort volume values to start with lowest volume value */
4321     sortTreeInfo(&volumes_loops);
4322
4323     /* set current volume value to configured volume value */
4324     volume_loops_current =
4325       getTreeInfoFromIdentifier(volumes_loops,i_to_a(setup.volume_loops));
4326
4327     /* if that fails, set current volume to reliable default value */
4328     if (volume_loops_current == NULL)
4329       volume_loops_current =
4330         getTreeInfoFromIdentifier(volumes_loops, i_to_a(100));
4331
4332     /* if that also fails, set current volume to first available value */
4333     if (volume_loops_current == NULL)
4334       volume_loops_current = volumes_loops;
4335   }
4336
4337   if (volumes_music == NULL)
4338   {
4339     int i;
4340
4341     for (i = 0; volumes_list[i].value != -1; i++)
4342     {
4343       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4344       char identifier[32], name[32];
4345       int value = volumes_list[i].value;
4346       char *text = volumes_list[i].text;
4347
4348       ti->node_top = &volumes_music;
4349       ti->sort_priority = value;
4350
4351       sprintf(identifier, "%d", value);
4352       sprintf(name, "%s", text);
4353
4354       setString(&ti->identifier, identifier);
4355       setString(&ti->name, name);
4356       setString(&ti->name_sorting, name);
4357       setString(&ti->infotext, "Music Volume");
4358
4359       pushTreeInfo(&volumes_music, ti);
4360     }
4361
4362     /* sort volume values to start with lowest volume value */
4363     sortTreeInfo(&volumes_music);
4364
4365     /* set current volume value to configured volume value */
4366     volume_music_current =
4367       getTreeInfoFromIdentifier(volumes_music,i_to_a(setup.volume_music));
4368
4369     /* if that fails, set current volume to reliable default value */
4370     if (volume_music_current == NULL)
4371       volume_music_current =
4372         getTreeInfoFromIdentifier(volumes_music, i_to_a(100));
4373
4374     /* if that also fails, set current volume to first available value */
4375     if (volume_music_current == NULL)
4376       volume_music_current = volumes_music;
4377   }
4378
4379   setup.volume_simple = atoi(volume_simple_current->identifier);
4380   setup.volume_loops  = atoi(volume_loops_current->identifier);
4381   setup.volume_music  = atoi(volume_music_current->identifier);
4382
4383   /* needed for displaying volume text instead of identifier */
4384   volume_simple_text = volume_simple_current->name;
4385   volume_loops_text = volume_loops_current->name;
4386   volume_music_text = volume_music_current->name;
4387 #endif
4388
4389   setup_mode = SETUP_MODE_SOUND;
4390
4391   DrawSetupScreen();
4392 }
4393
4394 static void execSetupArtwork()
4395 {
4396 #if 0
4397   printf("::: '%s', '%s', '%s'\n",
4398          artwork.gfx_current->subdir,
4399          artwork.gfx_current->fullpath,
4400          artwork.gfx_current->basepath);
4401 #endif
4402
4403   setup.graphics_set = artwork.gfx_current->identifier;
4404   setup.sounds_set = artwork.snd_current->identifier;
4405   setup.music_set = artwork.mus_current->identifier;
4406
4407   /* needed if last screen (setup choice) changed graphics, sounds or music */
4408   ReloadCustomArtwork(0);
4409
4410   /* needed for displaying artwork name instead of artwork identifier */
4411   graphics_set_name = artwork.gfx_current->name;
4412   sounds_set_name = artwork.snd_current->name;
4413   music_set_name = artwork.mus_current->name;
4414
4415   setup_mode = SETUP_MODE_ARTWORK;
4416
4417   DrawSetupScreen();
4418 }
4419
4420 static void execSetupChooseGraphics()
4421 {
4422   setup_mode = SETUP_MODE_CHOOSE_GRAPHICS;
4423
4424   DrawSetupScreen();
4425 }
4426
4427 static void execSetupChooseSounds()
4428 {
4429   setup_mode = SETUP_MODE_CHOOSE_SOUNDS;
4430
4431   DrawSetupScreen();
4432 }
4433
4434 static void execSetupChooseMusic()
4435 {
4436   setup_mode = SETUP_MODE_CHOOSE_MUSIC;
4437
4438   DrawSetupScreen();
4439 }
4440
4441 static void execSetupInput()
4442 {
4443   setup_mode = SETUP_MODE_INPUT;
4444
4445   DrawSetupScreen();
4446 }
4447
4448 static void execSetupShortcuts()
4449 {
4450   setup_mode = SETUP_MODE_SHORTCUTS;
4451
4452   DrawSetupScreen();
4453 }
4454
4455 static void execSetupShortcuts1()
4456 {
4457   setup_mode = SETUP_MODE_SHORTCUTS_1;
4458
4459   DrawSetupScreen();
4460 }
4461
4462 static void execSetupShortcuts2()
4463 {
4464   setup_mode = SETUP_MODE_SHORTCUTS_2;
4465
4466   DrawSetupScreen();
4467 }
4468
4469 static void execSetupShortcuts3()
4470 {
4471   setup_mode = SETUP_MODE_SHORTCUTS_3;
4472
4473   DrawSetupScreen();
4474 }
4475
4476 static void execSetupShortcuts4()
4477 {
4478   setup_mode = SETUP_MODE_SHORTCUTS_4;
4479
4480   DrawSetupScreen();
4481 }
4482
4483 static void execSetupShortcuts5()
4484 {
4485   setup_mode = SETUP_MODE_SHORTCUTS_5;
4486
4487   DrawSetupScreen();
4488 }
4489
4490 static void execExitSetup()
4491 {
4492   game_status = GAME_MODE_MAIN;
4493
4494   DrawMainMenuExt(REDRAW_FIELD, FALSE);
4495 }
4496
4497 static void execSaveAndExitSetup()
4498 {
4499   SaveSetup();
4500   execExitSetup();
4501 }
4502
4503 static struct TokenInfo setup_info_main[] =
4504 {
4505   { TYPE_ENTER_MENU,    execSetupGame,          "Game & Menu"           },
4506   { TYPE_ENTER_MENU,    execSetupEditor,        "Editor"                },
4507   { TYPE_ENTER_MENU,    execSetupGraphics,      "Graphics"              },
4508   { TYPE_ENTER_MENU,    execSetupSound,         "Sound & Music"         },
4509   { TYPE_ENTER_MENU,    execSetupArtwork,       "Custom Artwork"        },
4510   { TYPE_ENTER_MENU,    execSetupInput,         "Input Devices"         },
4511   { TYPE_ENTER_MENU,    execSetupShortcuts,     "Key Shortcuts"         },
4512   { TYPE_EMPTY,         NULL,                   ""                      },
4513   { TYPE_LEAVE_MENU,    execExitSetup,          "Exit"                  },
4514   { TYPE_LEAVE_MENU,    execSaveAndExitSetup,   "Save and Exit"         },
4515
4516   { 0,                  NULL,                   NULL                    }
4517 };
4518
4519 static struct TokenInfo setup_info_game[] =
4520 {
4521   { TYPE_SWITCH,        &setup.team_mode,       "Team-Mode (Multi-Player):" },
4522   { TYPE_YES_NO,        &setup.input_on_focus,  "Only Move Focussed Player:" },
4523   { TYPE_SWITCH,        &setup.handicap,        "Handicap:"             },
4524   { TYPE_SWITCH,        &setup.skip_levels,     "Skip Unsolved Levels:" },
4525   { TYPE_SWITCH,        &setup.time_limit,      "Time Limit:"           },
4526   { TYPE_SWITCH,        &setup.autorecord,      "Auto-Record Tapes:"    },
4527   { TYPE_ENTER_LIST,    execSetupChooseGameSpeed, "Game Speed:"         },
4528   { TYPE_STRING,        &game_speed_text,       ""                      },
4529   { TYPE_EMPTY,         NULL,                   ""                      },
4530   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
4531
4532   { 0,                  NULL,                   NULL                    }
4533 };
4534
4535 static struct TokenInfo setup_info_editor[] =
4536 {
4537 #if 0
4538   { TYPE_SWITCH,        &setup.editor.el_boulderdash,   "Boulder Dash:" },
4539   { TYPE_SWITCH,        &setup.editor.el_emerald_mine,  "Emerald Mine:" },
4540   { TYPE_SWITCH, &setup.editor.el_emerald_mine_club,    "Emerald Mine Club:" },
4541   { TYPE_SWITCH,        &setup.editor.el_more,          "Rocks'n'Diamonds:" },
4542   { TYPE_SWITCH,        &setup.editor.el_sokoban,       "Sokoban:"      },
4543   { TYPE_SWITCH,        &setup.editor.el_supaplex,      "Supaplex:"     },
4544   { TYPE_SWITCH,        &setup.editor.el_diamond_caves, "Diamond Caves II:" },
4545   { TYPE_SWITCH,        &setup.editor.el_dx_boulderdash,"DX-Boulderdash:" },
4546 #endif
4547   { TYPE_SWITCH,        &setup.editor.el_chars,         "Text Characters:" },
4548   { TYPE_SWITCH, &setup.editor.el_steel_chars, "Text Characters (Steel):" },
4549   { TYPE_SWITCH,        &setup.editor.el_custom,  "Custom & Group Elements:" },
4550 #if 0
4551   { TYPE_SWITCH,        &setup.editor.el_headlines,     "Headlines:"    },
4552 #endif
4553   { TYPE_SWITCH, &setup.editor.el_user_defined, "User defined element list:" },
4554   { TYPE_SWITCH,        &setup.editor.el_dynamic,  "Dynamic level elements:" },
4555   { TYPE_EMPTY,         NULL,                   ""                      },
4556 #if 0
4557   { TYPE_SWITCH,        &setup.editor.el_by_game,   "Show elements by game:" },
4558   { TYPE_SWITCH,        &setup.editor.el_by_type,   "Show elements by type:" },
4559   { TYPE_EMPTY,         NULL,                   ""                      },
4560 #endif
4561   { TYPE_SWITCH, &setup.editor.show_element_token,      "Show element token:" },
4562   { TYPE_EMPTY,         NULL,                   ""                      },
4563   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
4564
4565   { 0,                  NULL,                   NULL                    }
4566 };
4567
4568 static struct TokenInfo setup_info_graphics[] =
4569 {
4570   { TYPE_SWITCH,        &setup.fullscreen,      "Fullscreen:"           },
4571   { TYPE_ENTER_LIST,    execSetupChooseScreenMode, "Fullscreen Mode:"   },
4572   { TYPE_STRING,        &screen_mode_text,      ""                      },
4573 #if 0
4574   { TYPE_SWITCH,        &setup.scroll_delay,    "Scroll Delay:"         },
4575 #endif
4576   { TYPE_ENTER_LIST,    execSetupChooseScrollDelay, "Scroll Delay Value:" },
4577   { TYPE_STRING,        &scroll_delay_text,     ""                      },
4578 #if 0
4579   { TYPE_SWITCH,        &setup.soft_scrolling,  "Soft Scrolling:"       },
4580 #endif
4581   { TYPE_SWITCH,        &setup.fade_screens,    "Fade Screens:"         },
4582   { TYPE_SWITCH,        &setup.quick_switch,    "Quick Player Focus Switch:" },
4583   { TYPE_SWITCH,        &setup.quick_doors,     "Quick Menu Doors:"     },
4584   { TYPE_SWITCH,        &setup.show_titlescreen,"Show Title Screens:"   },
4585   { TYPE_SWITCH,        &setup.toons,           "Show Toons:"           },
4586   { TYPE_ECS_AGA,       &setup.prefer_aga_graphics,"EMC graphics preference:" },
4587   { TYPE_SWITCH, &setup.sp_show_border_elements,"Supaplex Border Elements:" },
4588   { TYPE_SWITCH,        &setup.small_game_graphics, "Small Game Graphics:" },
4589   { TYPE_EMPTY,         NULL,                   ""                      },
4590   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
4591
4592   { 0,                  NULL,                   NULL                    }
4593 };
4594
4595 static struct TokenInfo setup_info_sound[] =
4596 {
4597   { TYPE_SWITCH,        &setup.sound_simple,    "Sound Effects (Normal):"  },
4598   { TYPE_SWITCH,        &setup.sound_loops,     "Sound Effects (Looping):" },
4599   { TYPE_SWITCH,        &setup.sound_music,     "Music:"                },
4600   { TYPE_EMPTY,         NULL,                   ""                      },
4601   { TYPE_ENTER_LIST,    execSetupChooseVolumeSimple, "Sound Volume (Normal):" },
4602   { TYPE_STRING,        &volume_simple_text,    ""                      },
4603   { TYPE_ENTER_LIST,    execSetupChooseVolumeLoops, "Sound Volume (Looping):" },
4604   { TYPE_STRING,        &volume_loops_text,     ""                      },
4605   { TYPE_ENTER_LIST,    execSetupChooseVolumeMusic, "Music Volume:"     },
4606   { TYPE_STRING,        &volume_music_text,     ""                      },
4607   { TYPE_EMPTY,         NULL,                   ""                      },
4608   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
4609
4610   { 0,                  NULL,                   NULL                    }
4611 };
4612
4613 static struct TokenInfo setup_info_artwork[] =
4614 {
4615   { TYPE_ENTER_LIST,    execSetupChooseGraphics,"Custom Graphics:"      },
4616   { TYPE_STRING,        &graphics_set_name,     ""                      },
4617   { TYPE_ENTER_LIST,    execSetupChooseSounds,  "Custom Sounds:"        },
4618   { TYPE_STRING,        &sounds_set_name,       ""                      },
4619   { TYPE_ENTER_LIST,    execSetupChooseMusic,   "Custom Music:"         },
4620   { TYPE_STRING,        &music_set_name,        ""                      },
4621   { TYPE_EMPTY,         NULL,                   ""                      },
4622 #if 1
4623 #if 1
4624   { TYPE_YES_NO_AUTO,&setup.override_level_graphics,"Override Level Graphics:"},
4625   { TYPE_YES_NO_AUTO,&setup.override_level_sounds,  "Override Level Sounds:"  },
4626   { TYPE_YES_NO_AUTO,&setup.override_level_music,   "Override Level Music:"   },
4627 #else
4628   { TYPE_YES_NO, &setup.override_level_graphics,"Override Level Graphics:" },
4629   { TYPE_YES_NO, &setup.override_level_sounds,  "Override Level Sounds:"   },
4630   { TYPE_YES_NO, &setup.override_level_music,   "Override Level Music:"    },
4631   { TYPE_YES_NO, &setup.auto_override_artwork,  "Auto-Override Non-CE Sets:" },
4632 #endif
4633 #else
4634   { TYPE_STRING,        NULL,                   "Override Level Artwork:"},
4635   { TYPE_YES_NO,        &setup.override_level_graphics, "Graphics:"     },
4636   { TYPE_YES_NO,        &setup.override_level_sounds,   "Sounds:"       },
4637   { TYPE_YES_NO,        &setup.override_level_music,    "Music:"        },
4638 #endif
4639   { TYPE_EMPTY,         NULL,                   ""                      },
4640   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
4641
4642   { 0,                  NULL,                   NULL                    }
4643 };
4644
4645 static struct TokenInfo setup_info_input[] =
4646 {
4647   { TYPE_SWITCH,        NULL,                   "Player:"               },
4648   { TYPE_SWITCH,        NULL,                   "Device:"               },
4649   { TYPE_ENTER_MENU,    NULL,                   ""                      },
4650   { TYPE_EMPTY,         NULL,                   ""                      },
4651   { TYPE_EMPTY,         NULL,                   ""                      },
4652   { TYPE_EMPTY,         NULL,                   ""                      },
4653   { TYPE_EMPTY,         NULL,                   ""                      },
4654   { TYPE_EMPTY,         NULL,                   ""                      },
4655   { TYPE_EMPTY,         NULL,                   ""                      },
4656   { TYPE_EMPTY,         NULL,                   ""                      },
4657   { TYPE_EMPTY,         NULL,                   ""                      },
4658   { TYPE_EMPTY,         NULL,                   ""                      },
4659   { TYPE_EMPTY,         NULL,                   ""                      },
4660   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
4661
4662   { 0,                  NULL,                   NULL                    }
4663 };
4664
4665 static struct TokenInfo setup_info_shortcuts[] =
4666 {
4667   { TYPE_ENTER_MENU,    execSetupShortcuts1,    "Various Keys"          },
4668   { TYPE_ENTER_MENU,    execSetupShortcuts2,    "Player Focus"          },
4669   { TYPE_ENTER_MENU,    execSetupShortcuts3,    "Tape Buttons"          },
4670   { TYPE_ENTER_MENU,    execSetupShortcuts4,    "Sound & Music"         },
4671   { TYPE_ENTER_MENU,    execSetupShortcuts5,    "TAS Snap Keys"         },
4672   { TYPE_EMPTY,         NULL,                   ""                      },
4673   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
4674
4675   { 0,                  NULL,                   NULL                    }
4676 };
4677
4678 static struct TokenInfo setup_info_shortcuts_1[] =
4679 {
4680   { TYPE_KEYTEXT,       NULL,           "Quick Save Game to Tape:",     },
4681   { TYPE_KEY,           &setup.shortcut.save_game, ""                   },
4682   { TYPE_KEYTEXT,       NULL,           "Quick Load Game from Tape:",   },
4683   { TYPE_KEY,           &setup.shortcut.load_game, ""                   },
4684   { TYPE_KEYTEXT,       NULL,           "Start Game & Toggle Pause:",   },
4685   { TYPE_KEY,           &setup.shortcut.toggle_pause, ""                },
4686   { TYPE_EMPTY,         NULL,                   ""                      },
4687   { TYPE_YES_NO,        &setup.ask_on_escape,   "Ask on 'Esc' Key:"     },
4688   { TYPE_YES_NO, &setup.ask_on_escape_editor,   "Ask on 'Esc' Key (Editor):" },
4689   { TYPE_EMPTY,         NULL,                   ""                      },
4690   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
4691
4692   { 0,                  NULL,                   NULL                    }
4693 };
4694
4695 static struct TokenInfo setup_info_shortcuts_2[] =
4696 {
4697   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 1:",       },
4698   { TYPE_KEY,           &setup.shortcut.focus_player[0], ""             },
4699   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 2:",       },
4700   { TYPE_KEY,           &setup.shortcut.focus_player[1], ""             },
4701   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 3:",       },
4702   { TYPE_KEY,           &setup.shortcut.focus_player[2], ""             },
4703   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 4:",       },
4704   { TYPE_KEY,           &setup.shortcut.focus_player[3], ""             },
4705   { TYPE_KEYTEXT,       NULL,           "Set Focus to All Players:",    },
4706   { TYPE_KEY,           &setup.shortcut.focus_player_all, ""            },
4707   { TYPE_EMPTY,         NULL,                   ""                      },
4708   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
4709
4710   { 0,                  NULL,                   NULL                    }
4711 };
4712
4713 static struct TokenInfo setup_info_shortcuts_3[] =
4714 {
4715   { TYPE_KEYTEXT,       NULL,                   "Eject Tape:",          },
4716   { TYPE_KEY,           &setup.shortcut.tape_eject, ""                  },
4717   { TYPE_KEYTEXT,       NULL,                   "Warp / Single Step:",  },
4718   { TYPE_KEY,           &setup.shortcut.tape_extra, ""                  },
4719   { TYPE_KEYTEXT,       NULL,                   "Stop Tape:",           },
4720   { TYPE_KEY,           &setup.shortcut.tape_stop, ""                   },
4721   { TYPE_KEYTEXT,       NULL,                   "Pause / Unpause Tape:",},
4722   { TYPE_KEY,           &setup.shortcut.tape_pause, ""                  },
4723   { TYPE_KEYTEXT,       NULL,                   "Record Tape:",         },
4724   { TYPE_KEY,           &setup.shortcut.tape_record, ""                 },
4725   { TYPE_KEYTEXT,       NULL,                   "Play Tape:",           },
4726   { TYPE_KEY,           &setup.shortcut.tape_play, ""                   },
4727   { TYPE_EMPTY,         NULL,                   ""                      },
4728   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
4729
4730   { 0,                  NULL,                   NULL                    }
4731 };
4732
4733 static struct TokenInfo setup_info_shortcuts_4[] =
4734 {
4735   { TYPE_KEYTEXT,       NULL,           "Toggle Sound Effects (Normal):", },
4736   { TYPE_KEY,           &setup.shortcut.sound_simple, ""                },
4737   { TYPE_KEYTEXT,       NULL,           "Toggle Sound Effects (Looping):", },
4738   { TYPE_KEY,           &setup.shortcut.sound_loops, ""                 },
4739   { TYPE_KEYTEXT,       NULL,           "Toggle Music:",                },
4740   { TYPE_KEY,           &setup.shortcut.sound_music, ""                 },
4741   { TYPE_EMPTY,         NULL,                   ""                      },
4742   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
4743
4744   { 0,                  NULL,                   NULL                    }
4745 };
4746
4747 static struct TokenInfo setup_info_shortcuts_5[] =
4748 {
4749   { TYPE_KEYTEXT,       NULL,                   "Snap Left:",           },
4750   { TYPE_KEY,           &setup.shortcut.snap_left, ""                   },
4751   { TYPE_KEYTEXT,       NULL,                   "Snap Right:",          },
4752   { TYPE_KEY,           &setup.shortcut.snap_right, ""                  },
4753   { TYPE_KEYTEXT,       NULL,                   "Snap Up:",             },
4754   { TYPE_KEY,           &setup.shortcut.snap_up, ""                     },
4755   { TYPE_KEYTEXT,       NULL,                   "Snap Down:",           },
4756   { TYPE_KEY,           &setup.shortcut.snap_down, ""                   },
4757   { TYPE_EMPTY,         NULL,                   ""                      },
4758   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
4759
4760   { 0,                  NULL,                   NULL                    }
4761 };
4762
4763 static Key getSetupKey()
4764 {
4765   Key key = KSYM_UNDEFINED;
4766   boolean got_key_event = FALSE;
4767
4768   while (!got_key_event)
4769   {
4770     if (PendingEvent())         /* got event */
4771     {
4772       Event event;
4773
4774       NextEvent(&event);
4775
4776       switch (event.type)
4777       {
4778         case EVENT_KEYPRESS:
4779           {
4780             key = GetEventKey((KeyEvent *)&event, TRUE);
4781
4782             /* press 'Escape' or 'Enter' to keep the existing key binding */
4783             if (key == KSYM_Escape || key == KSYM_Return)
4784               key = KSYM_UNDEFINED;     /* keep old value */
4785
4786             got_key_event = TRUE;
4787           }
4788           break;
4789
4790         case EVENT_KEYRELEASE:
4791           key_joystick_mapping = 0;
4792           break;
4793
4794         default:
4795           HandleOtherEvents(&event);
4796           break;
4797       }
4798     }
4799
4800     DoAnimation();
4801     BackToFront();
4802
4803     /* don't eat all CPU time */
4804     Delay(10);
4805   }
4806
4807   return key;
4808 }
4809
4810 static int getSetupTextFont(int type)
4811 {
4812   if (type & (TYPE_SWITCH       |
4813               TYPE_YES_NO       |
4814               TYPE_YES_NO_AUTO  |
4815               TYPE_STRING       |
4816               TYPE_ECS_AGA      |
4817               TYPE_KEYTEXT      |
4818               TYPE_ENTER_LIST))
4819     return FONT_MENU_2;
4820   else
4821     return FONT_MENU_1;
4822 }
4823
4824 static int getSetupValueFont(int type, void *value)
4825 {
4826   if (type & TYPE_KEY)
4827     return (type & TYPE_QUERY ? FONT_INPUT_1_ACTIVE : FONT_VALUE_1);
4828   else if (type & TYPE_STRING)
4829     return FONT_VALUE_2;
4830   else if (type & TYPE_ECS_AGA)
4831     return FONT_VALUE_1;
4832   else if (type & TYPE_BOOLEAN_STYLE)
4833     return (*(boolean *)value ? FONT_OPTION_ON : FONT_OPTION_OFF);
4834   else if (type & TYPE_YES_NO_AUTO)
4835     return (*(int *)value == AUTO  ? FONT_OPTION_ON :
4836             *(int *)value == FALSE ? FONT_OPTION_OFF : FONT_OPTION_ON);
4837   else
4838     return FONT_VALUE_1;
4839 }
4840
4841 static void drawSetupValue(int pos)
4842 {
4843   boolean font_draw_xoffset_modified = FALSE;
4844   int font_draw_xoffset_old = -1;
4845   int xpos = MENU_SCREEN_VALUE_XPOS;
4846   int ypos = MENU_SCREEN_START_YPOS + pos;
4847   int startx = mSX + xpos * 32;
4848   int starty = mSY + ypos * 32;
4849   int font_nr, font_width;
4850 #if 0
4851   int font_height;
4852 #endif
4853   int type = setup_info[pos].type;
4854   void *value = setup_info[pos].value;
4855   char *value_string = getSetupValue(type, value);
4856 #if 1
4857   int i;
4858 #endif
4859
4860   if (value_string == NULL)
4861     return;
4862
4863   if (type & TYPE_KEY)
4864   {
4865     xpos = MENU_SCREEN_START_XPOS;
4866
4867     if (type & TYPE_QUERY)
4868       value_string = "<press key>";
4869   }
4870   else if (type & TYPE_STRING)
4871   {
4872     int max_value_len = (SCR_FIELDX - 2) * 2;
4873
4874     xpos = MENU_SCREEN_START_XPOS;
4875
4876     if (strlen(value_string) > max_value_len)
4877       value_string[max_value_len] = '\0';
4878   }
4879   else if (type & TYPE_YES_NO_AUTO)
4880   {
4881     xpos = MENU_SCREEN_VALUE_XPOS - 1;
4882   }
4883
4884   startx = mSX + xpos * 32;
4885   starty = mSY + ypos * 32;
4886   font_nr = getSetupValueFont(type, value);
4887   font_width = getFontWidth(font_nr);
4888 #if 0
4889   font_height = getFontHeight(font_nr);
4890 #endif
4891
4892   /* downward compatibility correction for Juergen Bonhagen's menu settings */
4893   if (setup_mode != SETUP_MODE_INPUT)
4894   {
4895     int check_font_nr = FONT_OPTION_ON; /* known font that needs correction */
4896     int font1_xoffset = getFontBitmapInfo(font_nr)->draw_xoffset;
4897     int font2_xoffset = getFontBitmapInfo(check_font_nr)->draw_xoffset;
4898     int text_startx = mSX + MENU_SCREEN_START_XPOS * 32;
4899     int text_font_nr = getSetupTextFont(FONT_MENU_2);
4900     int text_font_xoffset = getFontBitmapInfo(text_font_nr)->draw_xoffset;
4901     int text_width = MAX_MENU_TEXT_LENGTH_MEDIUM * getFontWidth(text_font_nr);
4902     boolean correct_font_draw_xoffset = FALSE;
4903
4904     if (xpos == MENU_SCREEN_START_XPOS &&
4905         startx + font1_xoffset < text_startx + text_font_xoffset)
4906       correct_font_draw_xoffset = TRUE;
4907
4908     if (xpos == MENU_SCREEN_VALUE_XPOS &&
4909         startx + font2_xoffset < text_startx + text_width + text_font_xoffset)
4910       correct_font_draw_xoffset = TRUE;
4911
4912     /* check if setup value would overlap with setup text when printed */
4913     /* (this can happen for extreme/wrong values for font draw offset) */
4914     if (correct_font_draw_xoffset)
4915     {
4916       font_draw_xoffset_old = getFontBitmapInfo(font_nr)->draw_xoffset;
4917       font_draw_xoffset_modified = TRUE;
4918
4919       if (type & TYPE_KEY)
4920         getFontBitmapInfo(font_nr)->draw_xoffset += 2 * getFontWidth(font_nr);
4921       else if (!(type & TYPE_STRING))
4922         getFontBitmapInfo(font_nr)->draw_xoffset = text_font_xoffset + 20 -
4923           MAX_MENU_TEXT_LENGTH_MEDIUM * (16 - getFontWidth(text_font_nr));
4924     }
4925   }
4926
4927 #if 0
4928   DrawBackground(startx, starty, SX + SXSIZE - startx, font_height);
4929 #else
4930   for (i = 0; i <= MENU_SCREEN_MAX_XPOS - xpos; i++)
4931     DrawText(startx + i * font_width, starty, " ", font_nr);
4932 #endif
4933
4934   DrawText(startx, starty, value_string, font_nr);
4935
4936   if (font_draw_xoffset_modified)
4937     getFontBitmapInfo(font_nr)->draw_xoffset = font_draw_xoffset_old;
4938 }
4939
4940 static void changeSetupValue(int pos, int dx)
4941 {
4942   if (setup_info[pos].type & TYPE_BOOLEAN_STYLE)
4943   {
4944     *(boolean *)setup_info[pos].value ^= TRUE;
4945   }
4946   else if (setup_info[pos].type & TYPE_YES_NO_AUTO)
4947   {
4948     *(int *)setup_info[pos].value =
4949       (dx == -1 ?
4950        (*(int *)setup_info[pos].value == AUTO ? TRUE :
4951         *(int *)setup_info[pos].value == TRUE ? FALSE : AUTO) :
4952        (*(int *)setup_info[pos].value == TRUE ? AUTO :
4953         *(int *)setup_info[pos].value == AUTO ? FALSE : TRUE));
4954   }
4955   else if (setup_info[pos].type & TYPE_KEY)
4956   {
4957     Key key;
4958
4959     setup_info[pos].type |= TYPE_QUERY;
4960     drawSetupValue(pos);
4961     setup_info[pos].type &= ~TYPE_QUERY;
4962
4963     key = getSetupKey();
4964     if (key != KSYM_UNDEFINED)
4965       *(Key *)setup_info[pos].value = key;
4966   }
4967
4968   drawSetupValue(pos);
4969 }
4970
4971 static void DrawCursorAndText_Setup(int pos, boolean active)
4972 {
4973   int xpos = MENU_SCREEN_START_XPOS;
4974   int ypos = MENU_SCREEN_START_YPOS + pos;
4975   int font_nr = getSetupTextFont(setup_info[pos].type);
4976
4977   if (setup_info == setup_info_input)
4978     font_nr = FONT_MENU_1;
4979
4980   if (active)
4981     font_nr = FONT_ACTIVE(font_nr);
4982
4983   DrawText(mSX + xpos * 32, mSY + ypos * 32, setup_info[pos].text, font_nr);
4984
4985   if (setup_info[pos].type & ~TYPE_SKIP_ENTRY)
4986     drawCursor(pos, active);
4987 }
4988
4989 static void DrawSetupScreen_Generic()
4990 {
4991   boolean redraw_all = FALSE;
4992   char *title_string = NULL;
4993   int i;
4994
4995   UnmapAllGadgets();
4996   CloseDoor(DOOR_CLOSE_2);
4997
4998   if (redraw_mask & REDRAW_ALL)
4999     redraw_all = TRUE;
5000
5001 #if 0
5002   printf("::: %s\n", (redraw_mask & REDRAW_FIELD ? "REDRAW_FIELD" :
5003                       redraw_mask & REDRAW_ALL ? "REDRAW_ALL" :
5004                       int2str(0, redraw_mask)));
5005 #endif
5006
5007 #if 0
5008   /* !!! usually REDRAW_NONE => DOES NOT WORK (with fade) => CHECK THIS !!! */
5009   FadeOut(redraw_mask);
5010 #else
5011   FadeOut(REDRAW_FIELD);
5012 #endif
5013
5014   ClearField();
5015
5016   if (setup_mode == SETUP_MODE_MAIN)
5017   {
5018     setup_info = setup_info_main;
5019     title_string = "Setup";
5020   }
5021   else if (setup_mode == SETUP_MODE_GAME)
5022   {
5023     setup_info = setup_info_game;
5024     title_string = "Setup Game";
5025   }
5026   else if (setup_mode == SETUP_MODE_EDITOR)
5027   {
5028     setup_info = setup_info_editor;
5029     title_string = "Setup Editor";
5030   }
5031   else if (setup_mode == SETUP_MODE_GRAPHICS)
5032   {
5033     setup_info = setup_info_graphics;
5034     title_string = "Setup Graphics";
5035   }
5036   else if (setup_mode == SETUP_MODE_SOUND)
5037   {
5038     setup_info = setup_info_sound;
5039     title_string = "Setup Sound";
5040   }
5041   else if (setup_mode == SETUP_MODE_ARTWORK)
5042   {
5043     setup_info = setup_info_artwork;
5044     title_string = "Custom Artwork";
5045   }
5046   else if (setup_mode == SETUP_MODE_SHORTCUTS)
5047   {
5048     setup_info = setup_info_shortcuts;
5049     title_string = "Setup Shortcuts";
5050   }
5051   else if (setup_mode == SETUP_MODE_SHORTCUTS_1)
5052   {
5053     setup_info = setup_info_shortcuts_1;
5054     title_string = "Setup Shortcuts";
5055   }
5056   else if (setup_mode == SETUP_MODE_SHORTCUTS_2)
5057   {
5058     setup_info = setup_info_shortcuts_2;
5059     title_string = "Setup Shortcuts";
5060   }
5061   else if (setup_mode == SETUP_MODE_SHORTCUTS_3)
5062   {
5063     setup_info = setup_info_shortcuts_3;
5064     title_string = "Setup Shortcuts";
5065   }
5066   else if (setup_mode == SETUP_MODE_SHORTCUTS_4)
5067   {
5068     setup_info = setup_info_shortcuts_4;
5069     title_string = "Setup Shortcuts";
5070   }
5071   else if (setup_mode == SETUP_MODE_SHORTCUTS_5)
5072   {
5073     setup_info = setup_info_shortcuts_5;
5074     title_string = "Setup Shortcuts";
5075   }
5076
5077   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, title_string);
5078
5079   num_setup_info = 0;
5080 #if 1
5081   for (i = 0; setup_info[i].type != 0 && i < MAX_MENU_ENTRIES_ON_SCREEN; i++)
5082 #else
5083   for (i = 0; setup_info[i].type != 0 && i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
5084 #endif
5085   {
5086     void *value_ptr = setup_info[i].value;
5087
5088     /* set some entries to "unchangeable" according to other variables */
5089     if ((value_ptr == &setup.sound_simple && !audio.sound_available) ||
5090         (value_ptr == &setup.sound_loops  && !audio.loops_available) ||
5091         (value_ptr == &setup.sound_music  && !audio.music_available) ||
5092         (value_ptr == &setup.fullscreen   && !video.fullscreen_available) ||
5093         (value_ptr == &screen_mode_text   && !video.fullscreen_available))
5094       setup_info[i].type |= TYPE_GHOSTED;
5095
5096     if (setup_info[i].type & (TYPE_ENTER_MENU|TYPE_ENTER_LIST))
5097       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
5098     else if (setup_info[i].type & (TYPE_LEAVE_MENU|TYPE_LEAVE_LIST))
5099       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
5100     else if (setup_info[i].type & ~TYPE_SKIP_ENTRY)
5101       initCursor(i, IMG_MENU_BUTTON);
5102
5103     DrawCursorAndText_Setup(i, FALSE);
5104
5105     if (setup_info[i].type & TYPE_VALUE)
5106       drawSetupValue(i);
5107
5108     num_setup_info++;
5109   }
5110
5111 #if 0
5112   DrawTextSCentered(SYSIZE - 20, FONT_TEXT_4,
5113                     "Joysticks deactivated in setup menu");
5114 #endif
5115
5116 #if 1
5117   HandleSetupScreen_Generic(0, 0, 0, 0, MB_MENU_INITIALIZE);
5118 #endif
5119
5120   if (redraw_all)
5121     redraw_mask = REDRAW_ALL;
5122
5123 #if 1
5124   FadeIn(redraw_mask);
5125 #else
5126   FadeIn(REDRAW_FIELD);
5127 #endif
5128
5129   InitAnimation();
5130 #if 0
5131   HandleSetupScreen_Generic(0, 0, 0, 0, MB_MENU_INITIALIZE);
5132 #endif
5133 }
5134
5135 void HandleSetupScreen_Generic(int mx, int my, int dx, int dy, int button)
5136 {
5137   static int choice_store[MAX_SETUP_MODES];
5138   int choice = choice_store[setup_mode];        /* always starts with 0 */
5139   int x = 0;
5140   int y = choice;
5141
5142   if (button == MB_MENU_INITIALIZE)
5143   {
5144     /* advance to first valid menu entry */
5145     while (choice < num_setup_info &&
5146            setup_info[choice].type & TYPE_SKIP_ENTRY)
5147       choice++;
5148     choice_store[setup_mode] = choice;
5149
5150     DrawCursorAndText_Setup(choice, TRUE);
5151
5152     return;
5153   }
5154   else if (button == MB_MENU_LEAVE)
5155   {
5156     PlaySound(SND_MENU_ITEM_SELECTING);
5157
5158     for (y = 0; y < num_setup_info; y++)
5159     {
5160       if (setup_info[y].type & TYPE_LEAVE_MENU)
5161       {
5162         void (*menu_callback_function)(void) = setup_info[y].value;
5163
5164         FadeSetLeaveMenu();
5165
5166         menu_callback_function();
5167
5168         break;  /* absolutely needed because function changes 'setup_info'! */
5169       }
5170     }
5171
5172     return;
5173   }
5174
5175   if (mx || my)         /* mouse input */
5176   {
5177     x = (mx - mSX) / 32;
5178     y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
5179   }
5180   else if (dx || dy)    /* keyboard input */
5181   {
5182     if (dx)
5183     {
5184       int menu_navigation_type = (dx < 0 ? TYPE_LEAVE : TYPE_ENTER);
5185
5186       if (setup_info[choice].type & menu_navigation_type ||
5187           setup_info[choice].type & TYPE_BOOLEAN_STYLE ||
5188           setup_info[choice].type & TYPE_YES_NO_AUTO)
5189         button = MB_MENU_CHOICE;
5190     }
5191     else if (dy)
5192       y = choice + dy;
5193
5194     /* jump to next non-empty menu entry (up or down) */
5195     while (y > 0 && y < num_setup_info - 1 &&
5196            setup_info[y].type & TYPE_SKIP_ENTRY)
5197       y += dy;
5198   }
5199
5200   if (IN_VIS_FIELD(x, y) && y >= 0 && y < num_setup_info)
5201   {
5202     if (button)
5203     {
5204       if (y != choice && setup_info[y].type & ~TYPE_SKIP_ENTRY)
5205       {
5206         PlaySound(SND_MENU_ITEM_ACTIVATING);
5207
5208         DrawCursorAndText_Setup(choice, FALSE);
5209         DrawCursorAndText_Setup(y, TRUE);
5210
5211         choice = choice_store[setup_mode] = y;
5212       }
5213     }
5214     else if (!(setup_info[y].type & TYPE_GHOSTED))
5215     {
5216       PlaySound(SND_MENU_ITEM_SELECTING);
5217
5218       /* when selecting key headline, execute function for key value change */
5219       if (setup_info[y].type & TYPE_KEYTEXT &&
5220           setup_info[y + 1].type & TYPE_KEY)
5221         y++;
5222
5223       /* when selecting string value, execute function for list selection */
5224       if (setup_info[y].type & TYPE_STRING && y > 0 &&
5225           setup_info[y - 1].type & TYPE_ENTER_LIST)
5226         y--;
5227
5228       if (setup_info[y].type & TYPE_ENTER_OR_LEAVE)
5229       {
5230         void (*menu_callback_function)(void) = setup_info[y].value;
5231
5232         FadeSetFromType(setup_info[y].type);
5233
5234         menu_callback_function();
5235       }
5236       else
5237       {
5238         if (setup_info[y].type & TYPE_VALUE)
5239           changeSetupValue(y, dx);
5240       }
5241     }
5242   }
5243 }
5244
5245 void DrawSetupScreen_Input()
5246 {
5247   int i;
5248
5249 #if 1
5250   FadeOut(REDRAW_FIELD);
5251 #endif
5252
5253   ClearField();
5254
5255 #if 1
5256   setup_info = setup_info_input;
5257 #endif
5258
5259   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Setup Input");
5260
5261 #if 1
5262 #if 1
5263   DrawTextSCentered(SYSIZE - 20, FONT_TITLE_2,
5264                     "Joysticks deactivated on this screen");
5265 #else
5266   DrawTextSCentered(SYSIZE - 20, FONT_TEXT_4,
5267                     "Joysticks deactivated on this screen");
5268 #endif
5269 #endif
5270
5271 #if 1
5272   for (i = 0; setup_info[i].type != 0 && i < MAX_MENU_ENTRIES_ON_SCREEN; i++)
5273 #else
5274   for (i = 0; setup_info[i].type != 0 && i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
5275 #endif
5276   {
5277     if (setup_info[i].type & (TYPE_ENTER_MENU|TYPE_ENTER_LIST))
5278       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
5279     else if (setup_info[i].type & (TYPE_LEAVE_MENU|TYPE_LEAVE_LIST))
5280       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
5281     else if (setup_info[i].type & ~TYPE_SKIP_ENTRY)
5282       initCursor(i, IMG_MENU_BUTTON);
5283
5284     DrawCursorAndText_Setup(i, FALSE);
5285   }
5286
5287 #if 0
5288   DeactivateJoystickForCalibration();
5289 #endif
5290
5291 #if 0
5292 #if 1
5293   DrawTextSCentered(SYSIZE - 20, FONT_TITLE_2,
5294                     "Joysticks deactivated on this screen");
5295 #else
5296   DrawTextSCentered(SYSIZE - 20, FONT_TEXT_4,
5297                     "Joysticks deactivated on this screen");
5298 #endif
5299 #endif
5300
5301   /* create gadgets for setup input menu screen */
5302   FreeScreenGadgets();
5303   CreateScreenGadgets();
5304
5305   /* map gadgets for setup input menu screen */
5306   MapScreenMenuGadgets(SCREEN_MASK_INPUT);
5307
5308   HandleSetupScreen_Input(0, 0, 0, 0, MB_MENU_INITIALIZE);
5309
5310 #if 1
5311   FadeIn(REDRAW_FIELD);
5312 #endif
5313
5314   InitAnimation();
5315 }
5316
5317 static void setJoystickDeviceToNr(char *device_name, int device_nr)
5318 {
5319   if (device_name == NULL)
5320     return;
5321
5322   if (device_nr < 0 || device_nr >= MAX_PLAYERS)
5323     device_nr = 0;
5324
5325   if (strlen(device_name) > 1)
5326   {
5327     char c1 = device_name[strlen(device_name) - 1];
5328     char c2 = device_name[strlen(device_name) - 2];
5329
5330     if (c1 >= '0' && c1 <= '9' && !(c2 >= '0' && c2 <= '9'))
5331       device_name[strlen(device_name) - 1] = '0' + (char)(device_nr % 10);
5332   }
5333   else
5334     strncpy(device_name, getDeviceNameFromJoystickNr(device_nr),
5335             strlen(device_name));
5336 }
5337
5338 static void drawPlayerSetupInputInfo(int player_nr, boolean active)
5339 {
5340   int i;
5341   static struct SetupKeyboardInfo custom_key;
5342   static struct
5343   {
5344     Key *key;
5345     char *text;
5346   } custom[] =
5347   {
5348     { &custom_key.left,  "Joystick Left"  },
5349     { &custom_key.right, "Joystick Right" },
5350     { &custom_key.up,    "Joystick Up"    },
5351     { &custom_key.down,  "Joystick Down"  },
5352     { &custom_key.snap,  "Button 1"       },
5353     { &custom_key.drop,  "Button 2"       }
5354   };
5355   static char *joystick_name[MAX_PLAYERS] =
5356   {
5357     "Joystick1",
5358     "Joystick2",
5359     "Joystick3",
5360     "Joystick4"
5361   };
5362   int text_font_nr = (active ? FONT_MENU_1_ACTIVE : FONT_MENU_1);
5363
5364   InitJoysticks();
5365
5366   custom_key = setup.input[player_nr].key;
5367
5368   DrawText(mSX + 11 * 32, mSY + 2 * 32, int2str(player_nr + 1, 1),
5369            FONT_INPUT_1_ACTIVE);
5370
5371   ClearRectangleOnBackground(drawto, mSX + 8 * TILEX, mSY + 2 * TILEY,
5372                              TILEX, TILEY);
5373   DrawFixedGraphicThruMaskExt(drawto, mSX + 8 * TILEX, mSY + 2 * TILEY,
5374                               PLAYER_NR_GFX(IMG_PLAYER_1, player_nr), 0);
5375
5376   if (setup.input[player_nr].use_joystick)
5377   {
5378     char *device_name = setup.input[player_nr].joy.device_name;
5379     char *text = joystick_name[getJoystickNrFromDeviceName(device_name)];
5380     int font_nr = (joystick.fd[player_nr] < 0 ? FONT_VALUE_OLD : FONT_VALUE_1);
5381
5382     DrawText(mSX + 8 * 32, mSY + 3 * 32, text, font_nr);
5383     DrawText(mSX + 32, mSY + 4 * 32, "Calibrate", text_font_nr);
5384   }
5385   else
5386   {
5387     DrawText(mSX + 8 * 32, mSY + 3 * 32, "Keyboard ", FONT_VALUE_1);
5388     DrawText(mSX + 1 * 32, mSY + 4 * 32, "Customize", text_font_nr);
5389   }
5390
5391   DrawText(mSX + 32, mSY + 5 * 32, "Actual Settings:", FONT_MENU_1);
5392
5393   drawCursorXY(1, 4, IMG_MENU_BUTTON_LEFT);
5394   drawCursorXY(1, 5, IMG_MENU_BUTTON_RIGHT);
5395   drawCursorXY(1, 6, IMG_MENU_BUTTON_UP);
5396   drawCursorXY(1, 7, IMG_MENU_BUTTON_DOWN);
5397
5398   DrawText(mSX + 2 * 32, mSY +  6 * 32, ":", FONT_VALUE_OLD);
5399   DrawText(mSX + 2 * 32, mSY +  7 * 32, ":", FONT_VALUE_OLD);
5400   DrawText(mSX + 2 * 32, mSY +  8 * 32, ":", FONT_VALUE_OLD);
5401   DrawText(mSX + 2 * 32, mSY +  9 * 32, ":", FONT_VALUE_OLD);
5402   DrawText(mSX + 1 * 32, mSY + 10 * 32, "Snap Field:", FONT_VALUE_OLD);
5403   DrawText(mSX + 1 * 32, mSY + 12 * 32, "Drop Element:", FONT_VALUE_OLD);
5404
5405   for (i = 0; i < 6; i++)
5406   {
5407     int ypos = 6 + i + (i > 3 ? i-3 : 0);
5408
5409     DrawText(mSX + 3 * 32, mSY + ypos * 32,
5410              "              ", FONT_VALUE_1);
5411     DrawText(mSX + 3 * 32, mSY + ypos * 32,
5412              (setup.input[player_nr].use_joystick ?
5413               custom[i].text :
5414               getKeyNameFromKey(*custom[i].key)), FONT_VALUE_1);
5415   }
5416 }
5417
5418 static int input_player_nr = 0;
5419
5420 void HandleSetupScreen_Input_Player(int step, int direction)
5421 {
5422   int old_player_nr = input_player_nr;
5423   int new_player_nr;
5424
5425   new_player_nr = old_player_nr + step * direction;
5426   if (new_player_nr < 0)
5427     new_player_nr = 0;
5428   if (new_player_nr > MAX_PLAYERS - 1)
5429     new_player_nr = MAX_PLAYERS - 1;
5430
5431   if (new_player_nr != old_player_nr)
5432   {
5433     input_player_nr = new_player_nr;
5434
5435     drawPlayerSetupInputInfo(input_player_nr, FALSE);
5436   }
5437 }
5438
5439 void HandleSetupScreen_Input(int mx, int my, int dx, int dy, int button)
5440 {
5441   static int choice = 0;
5442   int x = 0;
5443   int y = choice;
5444   int pos_start  = SETUPINPUT_SCREEN_POS_START;
5445   int pos_empty1 = SETUPINPUT_SCREEN_POS_EMPTY1;
5446   int pos_empty2 = SETUPINPUT_SCREEN_POS_EMPTY2;
5447   int pos_end    = SETUPINPUT_SCREEN_POS_END;
5448
5449   if (button == MB_MENU_INITIALIZE)
5450   {
5451     drawPlayerSetupInputInfo(input_player_nr, (choice == 2));
5452
5453     DrawCursorAndText_Setup(choice, TRUE);
5454
5455     return;
5456   }
5457   else if (button == MB_MENU_LEAVE)
5458   {
5459     setup_mode = SETUP_MODE_MAIN;
5460     DrawSetupScreen();
5461     InitJoysticks();
5462
5463     return;
5464   }
5465
5466   if (mx || my)         /* mouse input */
5467   {
5468     x = (mx - mSX) / 32;
5469     y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
5470   }
5471   else if (dx || dy)    /* keyboard input */
5472   {
5473     if (dx && choice == 0)
5474       x = (dx < 0 ? 10 : 12);
5475     else if ((dx && choice == 1) ||
5476              (dx == +1 && choice == 2) ||
5477              (dx == -1 && choice == pos_end))
5478       button = MB_MENU_CHOICE;
5479     else if (dy)
5480       y = choice + dy;
5481
5482     if (y >= pos_empty1 && y <= pos_empty2)
5483       y = (dy > 0 ? pos_empty2 + 1 : pos_empty1 - 1);
5484   }
5485
5486   if (y == 0 && dx != 0 && button)
5487   {
5488     HandleSetupScreen_Input_Player(1, dx < 0 ? -1 : +1);
5489   }
5490   else if (IN_VIS_FIELD(x, y) &&
5491            y >= pos_start && y <= pos_end &&
5492            !(y >= pos_empty1 && y <= pos_empty2))
5493   {
5494     if (button)
5495     {
5496       if (y != choice)
5497       {
5498         DrawCursorAndText_Setup(choice, FALSE);
5499         DrawCursorAndText_Setup(y, TRUE);
5500
5501         drawPlayerSetupInputInfo(input_player_nr, (y == 2));
5502
5503         choice = y;
5504       }
5505     }
5506     else
5507     {
5508       if (y == 1)
5509       {
5510         char *device_name = setup.input[input_player_nr].joy.device_name;
5511
5512         if (!setup.input[input_player_nr].use_joystick)
5513         {
5514           int new_device_nr = (dx >= 0 ? 0 : MAX_PLAYERS - 1);
5515
5516           setJoystickDeviceToNr(device_name, new_device_nr);
5517           setup.input[input_player_nr].use_joystick = TRUE;
5518         }
5519         else
5520         {
5521           int device_nr = getJoystickNrFromDeviceName(device_name);
5522           int new_device_nr = device_nr + (dx >= 0 ? +1 : -1);
5523
5524           if (new_device_nr < 0 || new_device_nr >= MAX_PLAYERS)
5525             setup.input[input_player_nr].use_joystick = FALSE;
5526           else
5527             setJoystickDeviceToNr(device_name, new_device_nr);
5528         }
5529
5530         drawPlayerSetupInputInfo(input_player_nr, FALSE);
5531       }
5532       else if (y == 2)
5533       {
5534         if (setup.input[input_player_nr].use_joystick)
5535         {
5536           InitJoysticks();
5537           CalibrateJoystick(input_player_nr);
5538         }
5539         else
5540           CustomizeKeyboard(input_player_nr);
5541       }
5542       else if (y == pos_end)
5543       {
5544         InitJoysticks();
5545
5546         FadeSetLeaveMenu();
5547
5548         setup_mode = SETUP_MODE_MAIN;
5549         DrawSetupScreen();
5550       }
5551     }
5552   }
5553 }
5554
5555 void CustomizeKeyboard(int player_nr)
5556 {
5557   int i;
5558   int step_nr;
5559   boolean finished = FALSE;
5560   static struct SetupKeyboardInfo custom_key;
5561   static struct
5562   {
5563     Key *key;
5564     char *text;
5565   } customize_step[] =
5566   {
5567     { &custom_key.left,  "Move Left"    },
5568     { &custom_key.right, "Move Right"   },
5569     { &custom_key.up,    "Move Up"      },
5570     { &custom_key.down,  "Move Down"    },
5571     { &custom_key.snap,  "Snap Field"   },
5572     { &custom_key.drop,  "Drop Element" }
5573   };
5574
5575   /* read existing key bindings from player setup */
5576   custom_key = setup.input[player_nr].key;
5577
5578   FadeSetEnterMenu();
5579   FadeOut(REDRAW_FIELD);
5580
5581   ClearField();
5582
5583   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Keyboard Input");
5584
5585 #if 0
5586   BackToFront();
5587   InitAnimation();
5588 #endif
5589
5590   step_nr = 0;
5591   DrawText(mSX, mSY + (2 + 2 * step_nr) * 32,
5592            customize_step[step_nr].text, FONT_INPUT_1_ACTIVE);
5593   DrawText(mSX, mSY + (2 + 2 * step_nr + 1) * 32,
5594            "Key:", FONT_INPUT_1_ACTIVE);
5595   DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
5596            getKeyNameFromKey(*customize_step[step_nr].key), FONT_VALUE_OLD);
5597
5598 #if 1
5599   FadeIn(REDRAW_FIELD);
5600
5601   InitAnimation();
5602 #endif
5603
5604   while (!finished)
5605   {
5606     if (PendingEvent())         /* got event */
5607     {
5608       Event event;
5609
5610       NextEvent(&event);
5611
5612       switch (event.type)
5613       {
5614         case EVENT_KEYPRESS:
5615           {
5616             Key key = GetEventKey((KeyEvent *)&event, FALSE);
5617
5618             if (key == KSYM_Escape || (key == KSYM_Return && step_nr == 6))
5619             {
5620               if (key == KSYM_Escape)
5621                 FadeSkipNextFadeIn();
5622
5623               finished = TRUE;
5624               break;
5625             }
5626
5627             /* all keys configured -- wait for "Escape" or "Return" key */
5628             if (step_nr == 6)
5629               break;
5630
5631             /* press 'Enter' to keep the existing key binding */
5632             if (key == KSYM_Return)
5633               key = *customize_step[step_nr].key;
5634
5635             /* check if key already used */
5636             for (i = 0; i < step_nr; i++)
5637               if (*customize_step[i].key == key)
5638                 break;
5639             if (i < step_nr)
5640               break;
5641
5642             /* got new key binding */
5643             *customize_step[step_nr].key = key;
5644             DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
5645                      "             ", FONT_VALUE_1);
5646             DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
5647                      getKeyNameFromKey(key), FONT_VALUE_1);
5648             step_nr++;
5649
5650             /* un-highlight last query */
5651             DrawText(mSX, mSY + (2 + 2 * (step_nr - 1)) * 32,
5652                      customize_step[step_nr - 1].text, FONT_MENU_1);
5653             DrawText(mSX, mSY + (2 + 2 * (step_nr - 1) + 1) * 32,
5654                      "Key:", FONT_MENU_1);
5655
5656             /* press 'Enter' to leave */
5657             if (step_nr == 6)
5658             {
5659               DrawText(mSX + 16, mSY + 15 * 32 + 16,
5660                        "Press Enter", FONT_TITLE_1);
5661               break;
5662             }
5663
5664             /* query next key binding */
5665             DrawText(mSX, mSY + (2 + 2 * step_nr) * 32,
5666                      customize_step[step_nr].text, FONT_INPUT_1_ACTIVE);
5667             DrawText(mSX, mSY + (2 + 2 * step_nr + 1) * 32,
5668                      "Key:", FONT_INPUT_1_ACTIVE);
5669             DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
5670                      getKeyNameFromKey(*customize_step[step_nr].key),
5671                      FONT_VALUE_OLD);
5672           }
5673           break;
5674
5675         case EVENT_KEYRELEASE:
5676           key_joystick_mapping = 0;
5677           break;
5678
5679         default:
5680           HandleOtherEvents(&event);
5681           break;
5682       }
5683     }
5684
5685     DoAnimation();
5686     BackToFront();
5687
5688     /* don't eat all CPU time */
5689     Delay(10);
5690   }
5691
5692   /* write new key bindings back to player setup */
5693   setup.input[player_nr].key = custom_key;
5694
5695   StopAnimation();
5696   DrawSetupScreen_Input();
5697 }
5698
5699 static boolean CalibrateJoystickMain(int player_nr)
5700 {
5701   int new_joystick_xleft = JOYSTICK_XMIDDLE;
5702   int new_joystick_xright = JOYSTICK_XMIDDLE;
5703   int new_joystick_yupper = JOYSTICK_YMIDDLE;
5704   int new_joystick_ylower = JOYSTICK_YMIDDLE;
5705   int new_joystick_xmiddle, new_joystick_ymiddle;
5706
5707   int joystick_fd = joystick.fd[player_nr];
5708   int x, y, last_x, last_y, xpos = 8, ypos = 3;
5709   boolean check[3][3];
5710   int check_remaining = 3 * 3;
5711   int joy_x, joy_y;
5712   int joy_value;
5713   int result = -1;
5714
5715   if (joystick.status == JOYSTICK_NOT_AVAILABLE)
5716     return FALSE;
5717
5718   if (joystick_fd < 0 || !setup.input[player_nr].use_joystick)
5719     return FALSE;
5720
5721   FadeSetEnterMenu();
5722   FadeOut(REDRAW_FIELD);
5723
5724   ClearField();
5725
5726   for (y = 0; y < 3; y++)
5727   {
5728     for (x = 0; x < 3; x++)
5729     {
5730       DrawFixedGraphic(xpos + x - 1, ypos + y - 1, IMG_MENU_CALIBRATE_BLUE, 0);
5731       check[x][y] = FALSE;
5732     }
5733   }
5734
5735   DrawTextSCentered(mSY - SY +  6 * 32, FONT_TITLE_1, "Rotate joystick");
5736   DrawTextSCentered(mSY - SY +  7 * 32, FONT_TITLE_1, "in all directions");
5737   DrawTextSCentered(mSY - SY +  9 * 32, FONT_TITLE_1, "if all balls");
5738   DrawTextSCentered(mSY - SY + 10 * 32, FONT_TITLE_1, "are marked,");
5739   DrawTextSCentered(mSY - SY + 11 * 32, FONT_TITLE_1, "center joystick");
5740   DrawTextSCentered(mSY - SY + 12 * 32, FONT_TITLE_1, "and");
5741   DrawTextSCentered(mSY - SY + 13 * 32, FONT_TITLE_1, "press any button!");
5742
5743   joy_value = Joystick(player_nr);
5744   last_x = (joy_value & JOY_LEFT ? -1 : joy_value & JOY_RIGHT ? +1 : 0);
5745   last_y = (joy_value & JOY_UP   ? -1 : joy_value & JOY_DOWN  ? +1 : 0);
5746
5747   /* eventually uncalibrated center position (joystick could be uncentered) */
5748   if (!ReadJoystick(joystick_fd, &joy_x, &joy_y, NULL, NULL))
5749     return FALSE;
5750
5751   new_joystick_xmiddle = joy_x;
5752   new_joystick_ymiddle = joy_y;
5753
5754   DrawFixedGraphic(xpos + last_x, ypos + last_y, IMG_MENU_CALIBRATE_RED, 0);
5755
5756   FadeIn(REDRAW_FIELD);
5757
5758   while (Joystick(player_nr) & JOY_BUTTON);     /* wait for released button */
5759   InitAnimation();
5760
5761   while (result < 0)
5762   {
5763     if (PendingEvent())         /* got event */
5764     {
5765       Event event;
5766
5767       NextEvent(&event);
5768
5769       switch (event.type)
5770       {
5771         case EVENT_KEYPRESS:
5772           switch (GetEventKey((KeyEvent *)&event, TRUE))
5773           {
5774             case KSYM_Return:
5775               if (check_remaining == 0)
5776                 result = 1;
5777               break;
5778
5779             case KSYM_Escape:
5780               FadeSkipNextFadeIn();
5781               result = 0;
5782               break;
5783
5784             default:
5785               break;
5786           }
5787           break;
5788
5789         case EVENT_KEYRELEASE:
5790           key_joystick_mapping = 0;
5791           break;
5792
5793         default:
5794           HandleOtherEvents(&event);
5795           break;
5796       }
5797     }
5798
5799     if (!ReadJoystick(joystick_fd, &joy_x, &joy_y, NULL, NULL))
5800       return FALSE;
5801
5802     new_joystick_xleft  = MIN(new_joystick_xleft,  joy_x);
5803     new_joystick_xright = MAX(new_joystick_xright, joy_x);
5804     new_joystick_yupper = MIN(new_joystick_yupper, joy_y);
5805     new_joystick_ylower = MAX(new_joystick_ylower, joy_y);
5806
5807     setup.input[player_nr].joy.xleft = new_joystick_xleft;
5808     setup.input[player_nr].joy.yupper = new_joystick_yupper;
5809     setup.input[player_nr].joy.xright = new_joystick_xright;
5810     setup.input[player_nr].joy.ylower = new_joystick_ylower;
5811     setup.input[player_nr].joy.xmiddle = new_joystick_xmiddle;
5812     setup.input[player_nr].joy.ymiddle = new_joystick_ymiddle;
5813
5814     CheckJoystickData();
5815
5816     joy_value = Joystick(player_nr);
5817
5818     if (joy_value & JOY_BUTTON && check_remaining == 0)
5819       result = 1;
5820
5821     x = (joy_value & JOY_LEFT ? -1 : joy_value & JOY_RIGHT ? +1 : 0);
5822     y = (joy_value & JOY_UP   ? -1 : joy_value & JOY_DOWN  ? +1 : 0);
5823
5824     if (x != last_x || y != last_y)
5825     {
5826       DrawFixedGraphic(xpos + last_x, ypos + last_y,
5827                        IMG_MENU_CALIBRATE_YELLOW, 0);
5828       DrawFixedGraphic(xpos + x,      ypos + y,
5829                        IMG_MENU_CALIBRATE_RED,    0);
5830
5831       last_x = x;
5832       last_y = y;
5833
5834       if (check_remaining > 0 && !check[x+1][y+1])
5835       {
5836         check[x+1][y+1] = TRUE;
5837         check_remaining--;
5838       }
5839
5840 #if 0
5841 #ifdef DEBUG
5842       printf("LEFT / MIDDLE / RIGHT == %d / %d / %d\n",
5843              setup.input[player_nr].joy.xleft,
5844              setup.input[player_nr].joy.xmiddle,
5845              setup.input[player_nr].joy.xright);
5846       printf("UP / MIDDLE / DOWN == %d / %d / %d\n",
5847              setup.input[player_nr].joy.yupper,
5848              setup.input[player_nr].joy.ymiddle,
5849              setup.input[player_nr].joy.ylower);
5850 #endif
5851 #endif
5852
5853     }
5854
5855     DoAnimation();
5856     BackToFront();
5857
5858     /* don't eat all CPU time */
5859     Delay(10);
5860   }
5861
5862   /* calibrated center position (joystick should now be centered) */
5863   if (!ReadJoystick(joystick_fd, &joy_x, &joy_y, NULL, NULL))
5864     return FALSE;
5865
5866   new_joystick_xmiddle = joy_x;
5867   new_joystick_ymiddle = joy_y;
5868
5869   StopAnimation();
5870
5871 #if 0
5872   DrawSetupScreen_Input();
5873 #endif
5874
5875   /* wait until the last pressed button was released */
5876   while (Joystick(player_nr) & JOY_BUTTON)
5877   {
5878     if (PendingEvent())         /* got event */
5879     {
5880       Event event;
5881
5882       NextEvent(&event);
5883       HandleOtherEvents(&event);
5884
5885       Delay(10);
5886     }
5887   }
5888
5889   return TRUE;
5890 }
5891
5892 void CalibrateJoystick(int player_nr)
5893 {
5894   if (!CalibrateJoystickMain(player_nr))
5895   {
5896     char *device_name = setup.input[player_nr].joy.device_name;
5897     int nr = getJoystickNrFromDeviceName(device_name) + 1;
5898     int xpos = mSX - SX;
5899     int ypos = mSY - SY;
5900
5901     ClearField();
5902
5903     DrawTextF(xpos + 16, ypos + 6 * 32, FONT_TITLE_1, "   JOYSTICK %d   ", nr);
5904     DrawTextF(xpos + 16, ypos + 7 * 32, FONT_TITLE_1, " NOT AVAILABLE! ");
5905     BackToFront();
5906
5907     Delay(2000);                /* show error message for a short time */
5908
5909     ClearEventQueue();
5910   }
5911
5912 #if 1
5913   DrawSetupScreen_Input();
5914 #endif
5915 }
5916
5917 void DrawSetupScreen()
5918 {
5919   DeactivateJoystick();
5920
5921   SetMainBackgroundImage(IMG_BACKGROUND_SETUP);
5922
5923   if (setup_mode == SETUP_MODE_INPUT)
5924     DrawSetupScreen_Input();
5925   else if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
5926     DrawChooseTree(&game_speed_current);
5927   else if (setup_mode == SETUP_MODE_CHOOSE_SCREEN_MODE)
5928     DrawChooseTree(&screen_mode_current);
5929   else if (setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
5930     DrawChooseTree(&scroll_delay_current);
5931   else if (setup_mode == SETUP_MODE_CHOOSE_GRAPHICS)
5932     DrawChooseTree(&artwork.gfx_current);
5933   else if (setup_mode == SETUP_MODE_CHOOSE_SOUNDS)
5934     DrawChooseTree(&artwork.snd_current);
5935   else if (setup_mode == SETUP_MODE_CHOOSE_MUSIC)
5936     DrawChooseTree(&artwork.mus_current);
5937   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE)
5938     DrawChooseTree(&volume_simple_current);
5939   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS)
5940     DrawChooseTree(&volume_loops_current);
5941   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
5942     DrawChooseTree(&volume_music_current);
5943   else
5944     DrawSetupScreen_Generic();
5945
5946   PlayMenuSound();
5947   PlayMenuMusic();
5948 }
5949
5950 void RedrawSetupScreenAfterFullscreenToggle()
5951 {
5952   if (setup_mode == SETUP_MODE_GRAPHICS)
5953     DrawSetupScreen();
5954 }
5955
5956 void HandleSetupScreen(int mx, int my, int dx, int dy, int button)
5957 {
5958   if (setup_mode == SETUP_MODE_INPUT)
5959     HandleSetupScreen_Input(mx, my, dx, dy, button);
5960   else if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
5961     HandleChooseTree(mx, my, dx, dy, button, &game_speed_current);
5962   else if (setup_mode == SETUP_MODE_CHOOSE_SCREEN_MODE)
5963     HandleChooseTree(mx, my, dx, dy, button, &screen_mode_current);
5964   else if (setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
5965     HandleChooseTree(mx, my, dx, dy, button, &scroll_delay_current);
5966   else if (setup_mode == SETUP_MODE_CHOOSE_GRAPHICS)
5967     HandleChooseTree(mx, my, dx, dy, button, &artwork.gfx_current);
5968   else if (setup_mode == SETUP_MODE_CHOOSE_SOUNDS)
5969     HandleChooseTree(mx, my, dx, dy, button, &artwork.snd_current);
5970   else if (setup_mode == SETUP_MODE_CHOOSE_MUSIC)
5971     HandleChooseTree(mx, my, dx, dy, button, &artwork.mus_current);
5972   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE)
5973     HandleChooseTree(mx, my, dx, dy, button, &volume_simple_current);
5974   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS)
5975     HandleChooseTree(mx, my, dx, dy, button, &volume_loops_current);
5976   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
5977     HandleChooseTree(mx, my, dx, dy, button, &volume_music_current);
5978   else
5979     HandleSetupScreen_Generic(mx, my, dx, dy, button);
5980
5981   DoAnimation();
5982 }
5983
5984 void HandleGameActions()
5985 {
5986   if (game_status != GAME_MODE_PLAYING)
5987     return;
5988
5989   GameActions();        /* main game loop */
5990
5991   if (tape.auto_play && !tape.playing)
5992     AutoPlayTape();     /* continue automatically playing next tape */
5993 }
5994
5995
5996 /* ---------- new screen button stuff -------------------------------------- */
5997
5998 static void getScreenMenuButtonPos(int *x, int *y, int gadget_id)
5999 {
6000   switch (gadget_id)
6001   {
6002 #if 1
6003     case SCREEN_CTRL_ID_PREV_LEVEL:
6004       *x = mSX + menu.main.button.prev_level.x;
6005       *y = mSY + menu.main.button.prev_level.y;
6006       break;
6007
6008     case SCREEN_CTRL_ID_NEXT_LEVEL:
6009       *x = mSX + menu.main.button.next_level.x;
6010       *y = mSY + menu.main.button.next_level.y;
6011       break;
6012 #else
6013     case SCREEN_CTRL_ID_PREV_LEVEL:
6014       *x = mSX + TILEX * getPrevlevelButtonPos();
6015       *y = mSY + TILEY * (MENU_SCREEN_START_YPOS + 1);
6016       break;
6017
6018     case SCREEN_CTRL_ID_NEXT_LEVEL:
6019       *x = mSX + TILEX * getNextLevelButtonPos();
6020       *y = mSY + TILEY * (MENU_SCREEN_START_YPOS + 1);
6021       break;
6022 #endif
6023
6024     case SCREEN_CTRL_ID_PREV_PLAYER:
6025       *x = mSX + TILEX * 10;
6026       *y = mSY + TILEY * MENU_SCREEN_START_YPOS;
6027       break;
6028
6029     case SCREEN_CTRL_ID_NEXT_PLAYER:
6030       *x = mSX + TILEX * 12;
6031       *y = mSY + TILEY * MENU_SCREEN_START_YPOS;
6032       break;
6033
6034     default:
6035       Error(ERR_EXIT, "unknown gadget ID %d", gadget_id);
6036   }
6037 }
6038
6039 static struct
6040 {
6041   int gfx_unpressed, gfx_pressed;
6042   void (*get_gadget_position)(int *, int *, int);
6043   int gadget_id;
6044   int screen_mask;
6045   char *infotext;
6046 } menubutton_info[NUM_SCREEN_MENUBUTTONS] =
6047 {
6048   {
6049     IMG_MENU_BUTTON_PREV_LEVEL, IMG_MENU_BUTTON_PREV_LEVEL_ACTIVE,
6050     getScreenMenuButtonPos,
6051     SCREEN_CTRL_ID_PREV_LEVEL,
6052     SCREEN_MASK_MAIN,
6053     "last level"
6054   },
6055   {
6056     IMG_MENU_BUTTON_NEXT_LEVEL, IMG_MENU_BUTTON_NEXT_LEVEL_ACTIVE,
6057     getScreenMenuButtonPos,
6058     SCREEN_CTRL_ID_NEXT_LEVEL,
6059     SCREEN_MASK_MAIN,
6060     "next level"
6061   },
6062   {
6063     IMG_MENU_BUTTON_LEFT, IMG_MENU_BUTTON_LEFT_ACTIVE,
6064     getScreenMenuButtonPos,
6065     SCREEN_CTRL_ID_PREV_PLAYER,
6066     SCREEN_MASK_INPUT,
6067     "last player"
6068   },
6069   {
6070     IMG_MENU_BUTTON_RIGHT, IMG_MENU_BUTTON_RIGHT_ACTIVE,
6071     getScreenMenuButtonPos,
6072     SCREEN_CTRL_ID_NEXT_PLAYER,
6073     SCREEN_MASK_INPUT,
6074     "next player"
6075   },
6076 };
6077
6078 static struct
6079 {
6080   int gfx_unpressed, gfx_pressed;
6081   int x, y;
6082   int gadget_id;
6083   char *infotext;
6084 } scrollbutton_info[NUM_SCREEN_SCROLLBUTTONS] =
6085 {
6086   {
6087     IMG_MENU_BUTTON_UP, IMG_MENU_BUTTON_UP_ACTIVE,
6088 #if 1
6089     -1, -1,     /* these values are not constant, but can change at runtime */
6090 #else
6091     SC_SCROLL_UP_XPOS, SC_SCROLL_UP_YPOS,
6092 #endif
6093     SCREEN_CTRL_ID_SCROLL_UP,
6094     "scroll up"
6095   },
6096   {
6097     IMG_MENU_BUTTON_DOWN, IMG_MENU_BUTTON_DOWN_ACTIVE,
6098 #if 1
6099     -1, -1,     /* these values are not constant, but can change at runtime */
6100 #else
6101     SC_SCROLL_DOWN_XPOS, SC_SCROLL_DOWN_YPOS,
6102 #endif
6103     SCREEN_CTRL_ID_SCROLL_DOWN,
6104     "scroll down"
6105   }
6106 };
6107
6108 static struct
6109 {
6110 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
6111   Bitmap **gfx_unpressed, **gfx_pressed;
6112 #else
6113   int gfx_unpressed, gfx_pressed;
6114 #endif
6115   int x, y;
6116   int width, height;
6117   int type;
6118   int gadget_id;
6119   char *infotext;
6120 } scrollbar_info[NUM_SCREEN_SCROLLBARS] =
6121 {
6122   {
6123 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
6124     &scrollbar_bitmap[0], &scrollbar_bitmap[1],
6125 #else
6126     IMG_MENU_SCROLLBAR, IMG_MENU_SCROLLBAR_ACTIVE,
6127 #endif
6128 #if 1
6129     -1, -1,     /* these values are not constant, but can change at runtime */
6130     -1, -1,     /* these values are not constant, but can change at runtime */
6131 #else
6132     SC_SCROLL_VERTICAL_XPOS, SC_SCROLL_VERTICAL_YPOS,
6133     SC_SCROLL_VERTICAL_XSIZE, SC_SCROLL_VERTICAL_YSIZE,
6134 #endif
6135     GD_TYPE_SCROLLBAR_VERTICAL,
6136     SCREEN_CTRL_ID_SCROLL_VERTICAL,
6137     "scroll level series vertically"
6138   }
6139 };
6140
6141 static void CreateScreenMenubuttons()
6142 {
6143   struct GadgetInfo *gi;
6144   unsigned int event_mask;
6145   int i;
6146
6147   for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
6148   {
6149     Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
6150     int gfx_unpressed, gfx_pressed;
6151     int x, y, width, height;
6152     int gd_x1, gd_x2, gd_y1, gd_y2;
6153     int id = menubutton_info[i].gadget_id;
6154
6155     event_mask = GD_EVENT_PRESSED | GD_EVENT_REPEATED;
6156
6157     menubutton_info[i].get_gadget_position(&x, &y, id);
6158
6159     width = SC_MENUBUTTON_XSIZE;
6160     height = SC_MENUBUTTON_YSIZE;
6161
6162     gfx_unpressed = menubutton_info[i].gfx_unpressed;
6163     gfx_pressed   = menubutton_info[i].gfx_pressed;
6164     gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
6165     gd_bitmap_pressed   = graphic_info[gfx_pressed].bitmap;
6166     gd_x1 = graphic_info[gfx_unpressed].src_x;
6167     gd_y1 = graphic_info[gfx_unpressed].src_y;
6168     gd_x2 = graphic_info[gfx_pressed].src_x;
6169     gd_y2 = graphic_info[gfx_pressed].src_y;
6170
6171     gi = CreateGadget(GDI_CUSTOM_ID, id,
6172                       GDI_CUSTOM_TYPE_ID, i,
6173                       GDI_INFO_TEXT, menubutton_info[i].infotext,
6174                       GDI_X, x,
6175                       GDI_Y, y,
6176                       GDI_WIDTH, width,
6177                       GDI_HEIGHT, height,
6178                       GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
6179                       GDI_STATE, GD_BUTTON_UNPRESSED,
6180                       GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
6181                       GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
6182                       GDI_DIRECT_DRAW, FALSE,
6183                       GDI_EVENT_MASK, event_mask,
6184                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
6185                       GDI_END);
6186
6187     if (gi == NULL)
6188       Error(ERR_EXIT, "cannot create gadget");
6189
6190     screen_gadget[id] = gi;
6191   }
6192 }
6193
6194 static void CreateScreenScrollbuttons()
6195 {
6196   struct GadgetInfo *gi;
6197   unsigned int event_mask;
6198   int i;
6199
6200   /* these values are not constant, but can change at runtime */
6201   scrollbutton_info[0].x = SC_SCROLL_UP_XPOS;
6202   scrollbutton_info[0].y = SC_SCROLL_UP_YPOS;
6203   scrollbutton_info[1].x = SC_SCROLL_DOWN_XPOS;
6204   scrollbutton_info[1].y = SC_SCROLL_DOWN_YPOS;
6205
6206   for (i = 0; i < NUM_SCREEN_SCROLLBUTTONS; i++)
6207   {
6208     Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
6209     int gfx_unpressed, gfx_pressed;
6210     int x, y, width, height;
6211     int gd_x1, gd_x2, gd_y1, gd_y2;
6212     int id = scrollbutton_info[i].gadget_id;
6213
6214     event_mask = GD_EVENT_PRESSED | GD_EVENT_REPEATED;
6215
6216     x = mSX + scrollbutton_info[i].x + menu.scrollbar_xoffset;
6217     y = mSY + scrollbutton_info[i].y;
6218     width = SC_SCROLLBUTTON_XSIZE;
6219     height = SC_SCROLLBUTTON_YSIZE;
6220
6221     if (id == SCREEN_CTRL_ID_SCROLL_DOWN)
6222       y = mSY + (SC_SCROLL_VERTICAL_YPOS +
6223                  (NUM_MENU_ENTRIES_ON_SCREEN - 2) * SC_SCROLLBUTTON_YSIZE);
6224
6225     gfx_unpressed = scrollbutton_info[i].gfx_unpressed;
6226     gfx_pressed   = scrollbutton_info[i].gfx_pressed;
6227     gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
6228     gd_bitmap_pressed   = graphic_info[gfx_pressed].bitmap;
6229     gd_x1 = graphic_info[gfx_unpressed].src_x;
6230     gd_y1 = graphic_info[gfx_unpressed].src_y;
6231     gd_x2 = graphic_info[gfx_pressed].src_x;
6232     gd_y2 = graphic_info[gfx_pressed].src_y;
6233
6234     gi = CreateGadget(GDI_CUSTOM_ID, id,
6235                       GDI_CUSTOM_TYPE_ID, i,
6236                       GDI_INFO_TEXT, scrollbutton_info[i].infotext,
6237                       GDI_X, x,
6238                       GDI_Y, y,
6239                       GDI_WIDTH, width,
6240                       GDI_HEIGHT, height,
6241                       GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
6242                       GDI_STATE, GD_BUTTON_UNPRESSED,
6243                       GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
6244                       GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
6245                       GDI_DIRECT_DRAW, FALSE,
6246                       GDI_EVENT_MASK, event_mask,
6247                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
6248                       GDI_END);
6249
6250     if (gi == NULL)
6251       Error(ERR_EXIT, "cannot create gadget");
6252
6253     screen_gadget[id] = gi;
6254   }
6255 }
6256
6257 static void CreateScreenScrollbars()
6258 {
6259   int i;
6260
6261   /* these values are not constant, but can change at runtime */
6262   scrollbar_info[0].x = SC_SCROLL_VERTICAL_XPOS;
6263   scrollbar_info[0].y = SC_SCROLL_VERTICAL_YPOS;
6264   scrollbar_info[0].width  = SC_SCROLL_VERTICAL_XSIZE;
6265   scrollbar_info[0].height = SC_SCROLL_VERTICAL_YSIZE;
6266
6267   for (i = 0; i < NUM_SCREEN_SCROLLBARS; i++)
6268   {
6269     Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
6270 #if !defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
6271     int gfx_unpressed, gfx_pressed;
6272 #endif
6273     int x, y, width, height;
6274     int gd_x1, gd_x2, gd_y1, gd_y2;
6275     struct GadgetInfo *gi;
6276     int items_max, items_visible, item_position;
6277     unsigned int event_mask;
6278     int num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
6279     int id = scrollbar_info[i].gadget_id;
6280
6281     event_mask = GD_EVENT_MOVING | GD_EVENT_OFF_BORDERS;
6282
6283     x = mSX + scrollbar_info[i].x + menu.scrollbar_xoffset;
6284     y = mSY + scrollbar_info[i].y;
6285     width  = scrollbar_info[i].width;
6286     height = scrollbar_info[i].height;
6287
6288     if (id == SCREEN_CTRL_ID_SCROLL_VERTICAL)
6289       height = (NUM_MENU_ENTRIES_ON_SCREEN - 2) * SC_SCROLLBUTTON_YSIZE;
6290
6291     items_max = num_page_entries;
6292     items_visible = num_page_entries;
6293     item_position = 0;
6294
6295 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
6296     gd_bitmap_unpressed = *scrollbar_info[i].gfx_unpressed;
6297     gd_bitmap_pressed   = *scrollbar_info[i].gfx_pressed;
6298     gd_x1 = 0;
6299     gd_y1 = 0;
6300     gd_x2 = 0;
6301     gd_y2 = 0;
6302 #else
6303     gfx_unpressed = scrollbar_info[i].gfx_unpressed;
6304     gfx_pressed   = scrollbar_info[i].gfx_pressed;
6305     gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
6306     gd_bitmap_pressed   = graphic_info[gfx_pressed].bitmap;
6307     gd_x1 = graphic_info[gfx_unpressed].src_x;
6308     gd_y1 = graphic_info[gfx_unpressed].src_y;
6309     gd_x2 = graphic_info[gfx_pressed].src_x;
6310     gd_y2 = graphic_info[gfx_pressed].src_y;
6311 #endif
6312
6313     gi = CreateGadget(GDI_CUSTOM_ID, id,
6314                       GDI_CUSTOM_TYPE_ID, i,
6315                       GDI_INFO_TEXT, scrollbar_info[i].infotext,
6316                       GDI_X, x,
6317                       GDI_Y, y,
6318                       GDI_WIDTH, width,
6319                       GDI_HEIGHT, height,
6320                       GDI_TYPE, scrollbar_info[i].type,
6321                       GDI_SCROLLBAR_ITEMS_MAX, items_max,
6322                       GDI_SCROLLBAR_ITEMS_VISIBLE, items_visible,
6323                       GDI_SCROLLBAR_ITEM_POSITION, item_position,
6324 #if 1
6325                       GDI_WHEEL_AREA_X, SX,
6326                       GDI_WHEEL_AREA_Y, SY,
6327                       GDI_WHEEL_AREA_WIDTH, SXSIZE,
6328                       GDI_WHEEL_AREA_HEIGHT, SYSIZE,
6329 #else
6330                       GDI_WHEEL_AREA_X, 0,
6331                       GDI_WHEEL_AREA_Y, 0,
6332                       GDI_WHEEL_AREA_WIDTH, WIN_XSIZE,
6333                       GDI_WHEEL_AREA_HEIGHT, WIN_YSIZE,
6334 #endif
6335                       GDI_STATE, GD_BUTTON_UNPRESSED,
6336                       GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
6337                       GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
6338                       GDI_BORDER_SIZE, SC_BORDER_SIZE, SC_BORDER_SIZE,
6339                       GDI_DIRECT_DRAW, FALSE,
6340                       GDI_EVENT_MASK, event_mask,
6341                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
6342                       GDI_END);
6343
6344     if (gi == NULL)
6345       Error(ERR_EXIT, "cannot create gadget");
6346
6347     screen_gadget[id] = gi;
6348   }
6349 }
6350
6351 void CreateScreenGadgets()
6352 {
6353   int last_game_status = game_status;   /* save current game status */
6354
6355 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
6356   int i;
6357
6358   for (i = 0; i < NUM_SCROLLBAR_BITMAPS; i++)
6359   {
6360     scrollbar_bitmap[i] = CreateBitmap(TILEX, TILEY, DEFAULT_DEPTH);
6361
6362     /* copy pointers to clip mask and GC */
6363     scrollbar_bitmap[i]->clip_mask =
6364       graphic_info[IMG_MENU_SCROLLBAR + i].clip_mask;
6365     scrollbar_bitmap[i]->stored_clip_gc =
6366       graphic_info[IMG_MENU_SCROLLBAR + i].clip_gc;
6367
6368     BlitBitmap(graphic_info[IMG_MENU_SCROLLBAR + i].bitmap,
6369                scrollbar_bitmap[i],
6370                graphic_info[IMG_MENU_SCROLLBAR + i].src_x,
6371                graphic_info[IMG_MENU_SCROLLBAR + i].src_y,
6372                TILEX, TILEY, 0, 0);
6373   }
6374 #endif
6375
6376   CreateScreenMenubuttons();
6377
6378 #if 0
6379   /* force LEVELS draw offset for scrollbar / scrollbutton gadgets */
6380   game_status = GAME_MODE_LEVELS;
6381 #endif
6382
6383   CreateScreenScrollbuttons();
6384   CreateScreenScrollbars();
6385
6386   game_status = last_game_status;       /* restore current game status */
6387 }
6388
6389 void FreeScreenGadgets()
6390 {
6391   int i;
6392
6393 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
6394   for (i = 0; i < NUM_SCROLLBAR_BITMAPS; i++)
6395   {
6396     /* prevent freeing clip mask and GC twice */
6397     scrollbar_bitmap[i]->clip_mask = None;
6398     scrollbar_bitmap[i]->stored_clip_gc = None;
6399
6400     FreeBitmap(scrollbar_bitmap[i]);
6401   }
6402 #endif
6403
6404   for (i = 0; i < NUM_SCREEN_GADGETS; i++)
6405     FreeGadget(screen_gadget[i]);
6406 }
6407
6408 void MapScreenMenuGadgets(int screen_mask)
6409 {
6410   int i;
6411
6412   for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
6413     if (screen_mask & menubutton_info[i].screen_mask)
6414       MapGadget(screen_gadget[menubutton_info[i].gadget_id]);
6415 }
6416
6417 void MapScreenTreeGadgets(TreeInfo *ti)
6418 {
6419   int num_entries = numTreeInfoInGroup(ti);
6420   int i;
6421
6422   if (num_entries <= NUM_MENU_ENTRIES_ON_SCREEN)
6423     return;
6424
6425   for (i = 0; i < NUM_SCREEN_SCROLLBUTTONS; i++)
6426     MapGadget(screen_gadget[scrollbutton_info[i].gadget_id]);
6427
6428   for (i = 0; i < NUM_SCREEN_SCROLLBARS; i++)
6429     MapGadget(screen_gadget[scrollbar_info[i].gadget_id]);
6430 }
6431
6432 static void HandleScreenGadgets(struct GadgetInfo *gi)
6433 {
6434   int id = gi->custom_id;
6435   int button = gi->event.button;
6436   int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
6437
6438   switch (id)
6439   {
6440     case SCREEN_CTRL_ID_PREV_LEVEL:
6441       HandleMainMenu_SelectLevel(step, -1);
6442       break;
6443
6444     case SCREEN_CTRL_ID_NEXT_LEVEL:
6445       HandleMainMenu_SelectLevel(step, +1);
6446       break;
6447
6448     case SCREEN_CTRL_ID_PREV_PLAYER:
6449       HandleSetupScreen_Input_Player(step, -1);
6450       break;
6451
6452     case SCREEN_CTRL_ID_NEXT_PLAYER:
6453       HandleSetupScreen_Input_Player(step, +1);
6454       break;
6455
6456     case SCREEN_CTRL_ID_SCROLL_UP:
6457       if (game_status == GAME_MODE_LEVELS)
6458         HandleChooseLevelSet(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
6459       else if (game_status == GAME_MODE_LEVELNR)
6460         HandleChooseLevelNr(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
6461       else if (game_status == GAME_MODE_SETUP)
6462         HandleSetupScreen(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
6463       break;
6464
6465     case SCREEN_CTRL_ID_SCROLL_DOWN:
6466       if (game_status == GAME_MODE_LEVELS)
6467         HandleChooseLevelSet(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
6468       else if (game_status == GAME_MODE_LEVELNR)
6469         HandleChooseLevelNr(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
6470       else if (game_status == GAME_MODE_SETUP)
6471         HandleSetupScreen(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
6472       break;
6473
6474     case SCREEN_CTRL_ID_SCROLL_VERTICAL:
6475       if (game_status == GAME_MODE_LEVELS)
6476         HandleChooseLevelSet(0,0,999,gi->event.item_position,MB_MENU_INITIALIZE);
6477       else if (game_status == GAME_MODE_LEVELNR)
6478         HandleChooseLevelNr(0,0,999,gi->event.item_position,MB_MENU_INITIALIZE);
6479       else if (game_status == GAME_MODE_SETUP)
6480         HandleSetupScreen(0,0, 999,gi->event.item_position,MB_MENU_INITIALIZE);
6481       break;
6482
6483     default:
6484       break;
6485   }
6486 }