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