swapped condition logic for better readability
[rocksndiamonds.git] / src / screens.c
1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // screens.c
10 // ============================================================================
11
12 #include "libgame/libgame.h"
13
14 #include "screens.h"
15 #include "events.h"
16 #include "game.h"
17 #include "tools.h"
18 #include "editor.h"
19 #include "files.h"
20 #include "tape.h"
21 #include "anim.h"
22 #include "network.h"
23 #include "init.h"
24 #include "config.h"
25
26
27 #define DEBUG_JOYSTICKS         0
28
29
30 /* screens on the info screen */
31 #define INFO_MODE_MAIN                  0
32 #define INFO_MODE_TITLE                 1
33 #define INFO_MODE_ELEMENTS              2
34 #define INFO_MODE_MUSIC                 3
35 #define INFO_MODE_CREDITS               4
36 #define INFO_MODE_PROGRAM               5
37 #define INFO_MODE_VERSION               6
38 #define INFO_MODE_LEVELSET              7
39
40 #define MAX_INFO_MODES                  8
41
42 /* screens on the setup screen */
43 /* (must match GFX_SPECIAL_ARG_SETUP_* values as defined in src/main.h) */
44 /* (should also match corresponding entries in src/conf_gfx.c) */
45 #define SETUP_MODE_MAIN                 0
46 #define SETUP_MODE_GAME                 1
47 #define SETUP_MODE_EDITOR               2
48 #define SETUP_MODE_GRAPHICS             3
49 #define SETUP_MODE_SOUND                4
50 #define SETUP_MODE_ARTWORK              5
51 #define SETUP_MODE_INPUT                6
52 #define SETUP_MODE_TOUCH                7
53 #define SETUP_MODE_SHORTCUTS            8
54 #define SETUP_MODE_SHORTCUTS_1          9
55 #define SETUP_MODE_SHORTCUTS_2          10
56 #define SETUP_MODE_SHORTCUTS_3          11
57 #define SETUP_MODE_SHORTCUTS_4          12
58 #define SETUP_MODE_SHORTCUTS_5          13
59
60 /* sub-screens on the setup screen (generic) */
61 #define SETUP_MODE_CHOOSE_ARTWORK       14
62 #define SETUP_MODE_CHOOSE_OTHER         15
63
64 /* sub-screens on the setup screen (specific) */
65 #define SETUP_MODE_CHOOSE_GAME_SPEED    16
66 #define SETUP_MODE_CHOOSE_SCROLL_DELAY  17
67 #define SETUP_MODE_CHOOSE_SNAPSHOT_MODE 18
68 #define SETUP_MODE_CHOOSE_WINDOW_SIZE   19
69 #define SETUP_MODE_CHOOSE_SCALING_TYPE  20
70 #define SETUP_MODE_CHOOSE_RENDERING     21
71 #define SETUP_MODE_CHOOSE_GRAPHICS      22
72 #define SETUP_MODE_CHOOSE_SOUNDS        23
73 #define SETUP_MODE_CHOOSE_MUSIC         24
74 #define SETUP_MODE_CHOOSE_VOLUME_SIMPLE 25
75 #define SETUP_MODE_CHOOSE_VOLUME_LOOPS  26
76 #define SETUP_MODE_CHOOSE_VOLUME_MUSIC  27
77 #define SETUP_MODE_CHOOSE_TOUCH_CONTROL 28
78 #define SETUP_MODE_CHOOSE_MOVE_DISTANCE 29
79 #define SETUP_MODE_CHOOSE_DROP_DISTANCE 30
80 #define SETUP_MODE_CHOOSE_TRANSPARENCY  31
81 #define SETUP_MODE_CHOOSE_GRID_XSIZE_0  32
82 #define SETUP_MODE_CHOOSE_GRID_YSIZE_0  33
83 #define SETUP_MODE_CHOOSE_GRID_XSIZE_1  34
84 #define SETUP_MODE_CHOOSE_GRID_YSIZE_1  35
85 #define SETUP_MODE_CONFIG_VIRT_BUTTONS  36
86
87 #define MAX_SETUP_MODES                 37
88
89 #define MAX_MENU_MODES                  MAX(MAX_INFO_MODES, MAX_SETUP_MODES)
90
91 /* setup screen titles */
92 #define STR_SETUP_MAIN                  "Setup"
93 #define STR_SETUP_GAME                  "Game & Menu"
94 #define STR_SETUP_EDITOR                "Editor"
95 #define STR_SETUP_GRAPHICS              "Graphics"
96 #define STR_SETUP_SOUND                 "Sound & Music"
97 #define STR_SETUP_ARTWORK               "Custom Artwork"
98 #define STR_SETUP_INPUT                 "Input Devices"
99 #define STR_SETUP_TOUCH                 "Touch Controls"
100 #define STR_SETUP_SHORTCUTS             "Key Shortcuts"
101 #define STR_SETUP_EXIT                  "Exit"
102 #define STR_SETUP_SAVE_AND_EXIT         "Save and Exit"
103
104 #define STR_SETUP_CHOOSE_GAME_SPEED     "Game Speed"
105 #define STR_SETUP_CHOOSE_SCROLL_DELAY   "Scroll Delay"
106 #define STR_SETUP_CHOOSE_SNAPSHOT_MODE  "Snapshot Mode"
107 #define STR_SETUP_CHOOSE_WINDOW_SIZE    "Window Scaling"
108 #define STR_SETUP_CHOOSE_SCALING_TYPE   "Anti-Aliasing"
109 #define STR_SETUP_CHOOSE_RENDERING      "Rendering Mode"
110 #define STR_SETUP_CHOOSE_VOLUME_SIMPLE  "Sound Volume"
111 #define STR_SETUP_CHOOSE_VOLUME_LOOPS   "Loops Volume"
112 #define STR_SETUP_CHOOSE_VOLUME_MUSIC   "Music Volume"
113 #define STR_SETUP_CHOOSE_TOUCH_CONTROL  "Control Type"
114 #define STR_SETUP_CHOOSE_MOVE_DISTANCE  "Move Distance"
115 #define STR_SETUP_CHOOSE_DROP_DISTANCE  "Drop Distance"
116 #define STR_SETUP_CHOOSE_TRANSPARENCY   "Transparency"
117 #define STR_SETUP_CHOOSE_GRID_XSIZE_0   "Horiz. Buttons"
118 #define STR_SETUP_CHOOSE_GRID_YSIZE_0   "Vert. Buttons"
119 #define STR_SETUP_CHOOSE_GRID_XSIZE_1   "Horiz. Buttons"
120 #define STR_SETUP_CHOOSE_GRID_YSIZE_1   "Vert. Buttons"
121
122 /* for input setup functions */
123 #define SETUPINPUT_SCREEN_POS_START     0
124 #define SETUPINPUT_SCREEN_POS_EMPTY1    3
125 #define SETUPINPUT_SCREEN_POS_EMPTY2    12
126 #define SETUPINPUT_SCREEN_POS_END       13
127
128 #define MENU_SETUP_FONT_TITLE           FONT_TEXT_1
129 #define MENU_SETUP_FONT_TEXT            FONT_TITLE_2
130
131 /* for various menu stuff  */
132 #define MENU_SCREEN_START_XPOS          1
133 #define MENU_SCREEN_START_YPOS          2
134 #define MENU_SCREEN_VALUE_XPOS          (SCR_FIELDX - 3)
135 #define MENU_SCREEN_MAX_XPOS            (SCR_FIELDX - 1)
136 #define MENU_TITLE1_YPOS                8
137 #define MENU_TITLE2_YPOS                46
138 #define MENU_INFO_FONT_TITLE            FONT_TEXT_1
139 #define MENU_INFO_FONT_HEAD             FONT_TEXT_2
140 #define MENU_INFO_FONT_TEXT             FONT_TEXT_3
141 #define MENU_INFO_FONT_FOOT             FONT_TEXT_4
142 #define MENU_INFO_SPACE_HEAD            (menu.headline2_spacing_info[info_mode])
143 #define MENU_SCREEN_INFO_SPACE_LEFT     (menu.left_spacing_info[info_mode])
144 #define MENU_SCREEN_INFO_SPACE_RIGHT    (menu.right_spacing_info[info_mode])
145 #define MENU_SCREEN_INFO_SPACE_TOP      (menu.top_spacing_info[info_mode])
146 #define MENU_SCREEN_INFO_SPACE_BOTTOM   (menu.bottom_spacing_info[info_mode])
147 #define MENU_SCREEN_INFO_YSTART1        MENU_SCREEN_INFO_SPACE_TOP
148 #define MENU_SCREEN_INFO_YSTART2        (MENU_SCREEN_INFO_YSTART1 +            \
149                                          getMenuTextStep(MENU_INFO_SPACE_HEAD, \
150                                                          MENU_INFO_FONT_TITLE))
151 #define MENU_SCREEN_INFO_YSTEP          (TILEY + 4)
152 #define MENU_SCREEN_INFO_YBOTTOM        (SYSIZE - MENU_SCREEN_INFO_SPACE_BOTTOM)
153 #define MENU_SCREEN_INFO_YSIZE          (MENU_SCREEN_INFO_YBOTTOM -     \
154                                          MENU_SCREEN_INFO_YSTART2 -     \
155                                          TILEY / 2)
156 #define MAX_INFO_ELEMENTS_ON_SCREEN     128
157 #define STD_INFO_ELEMENTS_ON_SCREEN     (MENU_SCREEN_INFO_YSIZE /       \
158                                          MENU_SCREEN_INFO_YSTEP)
159 #define NUM_INFO_ELEMENTS_FROM_CONF     \
160   (menu.list_size_info[GFX_SPECIAL_ARG_INFO_ELEMENTS] > 0 ?             \
161    menu.list_size_info[GFX_SPECIAL_ARG_INFO_ELEMENTS] :                 \
162    MAX_MENU_ENTRIES_ON_SCREEN)
163 #define NUM_INFO_ELEMENTS_ON_SCREEN     MIN(MIN(STD_INFO_ELEMENTS_ON_SCREEN, \
164                                                 MAX_INFO_ELEMENTS_ON_SCREEN), \
165                                             NUM_INFO_ELEMENTS_FROM_CONF)
166 #define MAX_MENU_ENTRIES_ON_SCREEN      (SCR_FIELDY - MENU_SCREEN_START_YPOS)
167 #define MAX_MENU_TEXT_LENGTH_BIG        13
168 #define MAX_MENU_TEXT_LENGTH_MEDIUM     (MAX_MENU_TEXT_LENGTH_BIG * 2)
169
170 /* buttons and scrollbars identifiers */
171 #define SCREEN_CTRL_ID_PREV_LEVEL       0
172 #define SCREEN_CTRL_ID_NEXT_LEVEL       1
173 #define SCREEN_CTRL_ID_PREV_PLAYER      2
174 #define SCREEN_CTRL_ID_NEXT_PLAYER      3
175 #define SCREEN_CTRL_ID_INSERT_SOLUTION  4
176 #define SCREEN_CTRL_ID_PLAY_SOLUTION    5
177 #define SCREEN_CTRL_ID_SCROLL_UP        6
178 #define SCREEN_CTRL_ID_SCROLL_DOWN      7
179 #define SCREEN_CTRL_ID_SCROLL_VERTICAL  8
180
181 #define NUM_SCREEN_GADGETS              9
182
183 #define NUM_SCREEN_MENUBUTTONS          6
184 #define NUM_SCREEN_SCROLLBUTTONS        2
185 #define NUM_SCREEN_SCROLLBARS           1
186
187 #define SCREEN_MASK_MAIN                (1 << 0)
188 #define SCREEN_MASK_MAIN_HAS_SOLUTION   (1 << 1)
189 #define SCREEN_MASK_INPUT               (1 << 2)
190
191 /* graphic position and size values for buttons and scrollbars */
192 #define SC_MENUBUTTON_XSIZE             TILEX
193 #define SC_MENUBUTTON_YSIZE             TILEY
194
195 #define SC_SCROLLBUTTON_XSIZE           TILEX
196 #define SC_SCROLLBUTTON_YSIZE           TILEY
197
198 #define SC_SCROLLBAR_XPOS               (SXSIZE - SC_SCROLLBUTTON_XSIZE)
199
200 #define SC_SCROLL_VERTICAL_XSIZE        SC_SCROLLBUTTON_XSIZE
201 #define SC_SCROLL_VERTICAL_YSIZE        ((MAX_MENU_ENTRIES_ON_SCREEN - 2) * \
202                                          SC_SCROLLBUTTON_YSIZE)
203
204 #define SC_SCROLL_UP_XPOS               SC_SCROLLBAR_XPOS
205 #define SC_SCROLL_UP_YPOS               (2 * SC_SCROLLBUTTON_YSIZE)
206
207 #define SC_SCROLL_VERTICAL_XPOS         SC_SCROLLBAR_XPOS
208 #define SC_SCROLL_VERTICAL_YPOS         (SC_SCROLL_UP_YPOS + \
209                                          SC_SCROLLBUTTON_YSIZE)
210
211 #define SC_SCROLL_DOWN_XPOS             SC_SCROLLBAR_XPOS
212 #define SC_SCROLL_DOWN_YPOS             (SC_SCROLL_VERTICAL_YPOS + \
213                                          SC_SCROLL_VERTICAL_YSIZE)
214
215 #define SC_BORDER_SIZE                  14
216
217
218 /* forward declarations of internal functions */
219 static void HandleScreenGadgets(struct GadgetInfo *);
220 static void HandleSetupScreen_Generic(int, int, int, int, int);
221 static void HandleSetupScreen_Input(int, int, int, int, int);
222 static void CustomizeKeyboard(int);
223 static void ConfigureJoystick(int);
224 static void ConfigureVirtualButtons();
225 static void execSetupGame(void);
226 static void execSetupGraphics(void);
227 static void execSetupSound(void);
228 static void execSetupTouch(void);
229 static void execSetupArtwork(void);
230 static void HandleChooseTree(int, int, int, int, int, TreeInfo **);
231
232 static void DrawChooseLevelSet(void);
233 static void DrawChooseLevelNr(void);
234 static void DrawInfoScreen(void);
235 static void DrawSetupScreen(void);
236
237 static void DrawInfoScreen_NotAvailable(char *, char *);
238 static void DrawInfoScreen_HelpAnim(int, int, boolean);
239 static void DrawInfoScreen_HelpText(int, int, int, int);
240 static void HandleInfoScreen_Main(int, int, int, int, int);
241 static void HandleInfoScreen_TitleScreen(int);
242 static void HandleInfoScreen_Elements(int);
243 static void HandleInfoScreen_Music(int);
244 static void HandleInfoScreen_Credits(int);
245 static void HandleInfoScreen_Program(int);
246 static void HandleInfoScreen_Version(int);
247
248 static void MapScreenMenuGadgets(int);
249 static void MapScreenGadgets(int);
250 static void MapScreenTreeGadgets(TreeInfo *);
251
252 static void UpdateScreenMenuGadgets(int, boolean);
253
254 static struct GadgetInfo *screen_gadget[NUM_SCREEN_GADGETS];
255
256 static int info_mode = INFO_MODE_MAIN;
257 static int setup_mode = SETUP_MODE_MAIN;
258
259 static TreeInfo *window_sizes = NULL;
260 static TreeInfo *window_size_current = NULL;
261
262 static TreeInfo *scaling_types = NULL;
263 static TreeInfo *scaling_type_current = NULL;
264
265 static TreeInfo *rendering_modes = NULL;
266 static TreeInfo *rendering_mode_current = NULL;
267
268 static TreeInfo *scroll_delays = NULL;
269 static TreeInfo *scroll_delay_current = NULL;
270
271 static TreeInfo *snapshot_modes = NULL;
272 static TreeInfo *snapshot_mode_current = NULL;
273
274 static TreeInfo *game_speeds = NULL;
275 static TreeInfo *game_speed_current = NULL;
276
277 static TreeInfo *volumes_simple = NULL;
278 static TreeInfo *volume_simple_current = NULL;
279
280 static TreeInfo *volumes_loops = NULL;
281 static TreeInfo *volume_loops_current = NULL;
282
283 static TreeInfo *volumes_music = NULL;
284 static TreeInfo *volume_music_current = NULL;
285
286 static TreeInfo *touch_controls = NULL;
287 static TreeInfo *touch_control_current = NULL;
288
289 static TreeInfo *move_distances = NULL;
290 static TreeInfo *move_distance_current = NULL;
291
292 static TreeInfo *drop_distances = NULL;
293 static TreeInfo *drop_distance_current = NULL;
294
295 static TreeInfo *transparencies = NULL;
296 static TreeInfo *transparency_current = NULL;
297
298 static TreeInfo *grid_sizes[2][2] = { { NULL, NULL }, { NULL, NULL } };
299 static TreeInfo *grid_size_current[2][2] = { { NULL, NULL }, { NULL, NULL } };
300
301 static TreeInfo *level_number = NULL;
302 static TreeInfo *level_number_current = NULL;
303
304 static struct
305 {
306   int value;
307   char *text;
308 } window_sizes_list[] =
309 {
310   {     50,     "50 %"                          },
311   {     80,     "80 %"                          },
312   {     90,     "90 %"                          },
313   {     100,    "100 % (Default)"               },
314   {     110,    "110 %"                         },
315   {     120,    "120 %"                         },
316   {     130,    "130 %"                         },
317   {     140,    "140 %"                         },
318   {     150,    "150 %"                         },
319   {     200,    "200 %"                         },
320   {     250,    "250 %"                         },
321   {     300,    "300 %"                         },
322
323   {     -1,     NULL                            },
324 };
325
326 static struct
327 {
328   char *value;
329   char *text;
330 } scaling_types_list[] =
331 {
332   {     SCALING_QUALITY_NEAREST, "Off"          },
333   {     SCALING_QUALITY_LINEAR,  "Linear"       },
334   {     SCALING_QUALITY_BEST,    "Anisotropic"  },
335
336   {     NULL,                    NULL           },
337 };
338
339 static struct
340 {
341   char *value;
342   char *text;
343 } rendering_modes_list[] =
344 {
345   {     STR_SPECIAL_RENDERING_OFF,      "Off (May show artifacts, fast)" },
346   {     STR_SPECIAL_RENDERING_BITMAP,   "Bitmap/Texture mode (slower)"   },
347 #if DEBUG
348   // this mode may work under certain conditions, but does not work on Windows
349   {     STR_SPECIAL_RENDERING_TARGET,   "Target Texture mode (slower)"   },
350 #endif
351   {     STR_SPECIAL_RENDERING_DOUBLE,   "Double Texture mode (slower)"   },
352
353   {     NULL,                            NULL                            },
354 };
355
356 static struct
357 {
358   int value;
359   char *text;
360 } game_speeds_list[] =
361 {
362 #if 1
363   {     30,     "Very Slow"                     },
364   {     25,     "Slow"                          },
365   {     20,     "Normal"                        },
366   {     15,     "Fast"                          },
367   {     10,     "Very Fast"                     },
368 #else
369   {     1000,   "1/1s (Extremely Slow)"         },
370   {     500,    "1/2s"                          },
371   {     200,    "1/5s"                          },
372   {     100,    "1/10s"                         },
373   {     50,     "1/20s"                         },
374   {     29,     "1/35s (Original Supaplex)"     },
375   {     25,     "1/40s"                         },
376   {     20,     "1/50s (Normal Speed)"          },
377   {     14,     "1/70s (Maximum Supaplex)"      },
378   {     10,     "1/100s"                        },
379   {     5,      "1/200s"                        },
380   {     2,      "1/500s"                        },
381   {     1,      "1/1000s (Extremely Fast)"      },
382 #endif
383
384   {     -1,     NULL                            },
385 };
386
387 static struct
388 {
389   int value;
390   char *text;
391 } scroll_delays_list[] =
392 {
393   {     0,      "0 Tiles (No Scroll Delay)"     },
394   {     1,      "1 Tile"                        },
395   {     2,      "2 Tiles"                       },
396   {     3,      "3 Tiles (Default)"             },
397   {     4,      "4 Tiles"                       },
398   {     5,      "5 Tiles"                       },
399   {     6,      "6 Tiles"                       },
400   {     7,      "7 Tiles"                       },
401   {     8,      "8 Tiles (Maximum Scroll Delay)"},
402
403   {     -1,     NULL                            },
404 };
405
406 static struct
407 {
408   char *value;
409   char *text;
410 } snapshot_modes_list[] =
411 {
412   {     STR_SNAPSHOT_MODE_OFF,                  "Off"           },
413   {     STR_SNAPSHOT_MODE_EVERY_STEP,           "Every Step"    },
414   {     STR_SNAPSHOT_MODE_EVERY_MOVE,           "Every Move"    },
415   {     STR_SNAPSHOT_MODE_EVERY_COLLECT,        "Every Collect" },
416
417   {     NULL,                                   NULL            },
418 };
419
420 static struct
421 {
422   int value;
423   char *text;
424 } volumes_list[] =
425 {
426   {     0,      "0 %"                           },
427   {     1,      "1 %"                           },
428   {     2,      "2 %"                           },
429   {     5,      "5 %"                           },
430   {     10,     "10 %"                          },
431   {     20,     "20 %"                          },
432   {     30,     "30 %"                          },
433   {     40,     "40 %"                          },
434   {     50,     "50 %"                          },
435   {     60,     "60 %"                          },
436   {     70,     "70 %"                          },
437   {     80,     "80 %"                          },
438   {     90,     "90 %"                          },
439   {     100,    "100 %"                         },
440
441   {     -1,     NULL                            },
442 };
443
444 static struct
445 {
446   char *value;
447   char *text;
448 } touch_controls_list[] =
449 {
450   {     TOUCH_CONTROL_OFF,              "Off"                   },
451   {     TOUCH_CONTROL_VIRTUAL_BUTTONS,  "Virtual Buttons"       },
452   {     TOUCH_CONTROL_WIPE_GESTURES,    "Wipe Gestures"         },
453   {     TOUCH_CONTROL_FOLLOW_FINGER,    "Follow Finger"         },
454
455   {     NULL,                           NULL                    },
456 };
457
458 static struct
459 {
460   int value;
461   char *text;
462 } distances_list[] =
463 {
464   {     1,      "1 %"                           },
465   {     2,      "2 %"                           },
466   {     3,      "3 %"                           },
467   {     4,      "4 %"                           },
468   {     5,      "5 %"                           },
469   {     10,     "10 %"                          },
470   {     15,     "15 %"                          },
471   {     20,     "20 %"                          },
472   {     25,     "25 %"                          },
473
474   {     -1,     NULL                            },
475 };
476
477 static struct
478 {
479   int value;
480   char *text;
481 } transparencies_list[] =
482 {
483   {     0,      "0 % (Opaque)"                  },
484   {     10,     "10 %"                          },
485   {     20,     "20 %"                          },
486   {     30,     "30 %"                          },
487   {     40,     "40 %"                          },
488   {     50,     "50 %"                          },
489   {     60,     "60 %"                          },
490   {     70,     "70 %"                          },
491   {     80,     "80 %"                          },
492   {     90,     "90 %"                          },
493   {     100,    "100 % (Invisible)"             },
494
495   {     -1,     NULL                            },
496 };
497
498 static struct
499 {
500   int value;
501   char *text;
502 } grid_sizes_list[] =
503 {
504   {     3,      "3"                             },
505   {     4,      "4"                             },
506   {     5,      "5"                             },
507   {     6,      "6"                             },
508   {     7,      "7"                             },
509   {     8,      "8"                             },
510   {     9,      "9"                             },
511   {     10,     "10"                            },
512   {     11,     "11"                            },
513   {     12,     "12"                            },
514   {     13,     "13"                            },
515   {     14,     "14"                            },
516   {     15,     "15"                            },
517   {     16,     "16"                            },
518   {     17,     "17"                            },
519   {     18,     "18"                            },
520   {     19,     "19"                            },
521   {     20,     "20"                            },
522   {     21,     "21"                            },
523   {     22,     "22"                            },
524   {     23,     "23"                            },
525   {     24,     "24"                            },
526   {     25,     "25"                            },
527   {     26,     "26"                            },
528   {     27,     "27"                            },
529   {     28,     "28"                            },
530   {     29,     "29"                            },
531   {     30,     "30"                            },
532   {     31,     "31"                            },
533   {     32,     "32"                            },
534
535   {     -1,     NULL                            },
536 };
537
538 #define DRAW_MODE(s)            ((s) >= GAME_MODE_MAIN &&               \
539                                  (s) <= GAME_MODE_SETUP ? (s) :         \
540                                  (s) == GAME_MODE_PSEUDO_TYPENAME ?     \
541                                  GAME_MODE_MAIN : GAME_MODE_DEFAULT)
542
543 /* (there are no draw offset definitions needed for INFO_MODE_TITLE) */
544 #define DRAW_MODE_INFO(i)       ((i) >= INFO_MODE_TITLE &&              \
545                                  (i) <= INFO_MODE_LEVELSET ? (i) :      \
546                                  INFO_MODE_MAIN)
547
548 #define DRAW_MODE_SETUP(i)      ((i) >= SETUP_MODE_MAIN &&              \
549                                  (i) <= SETUP_MODE_SHORTCUTS_5 ? (i) :  \
550                                  (i) >= SETUP_MODE_CHOOSE_GRAPHICS &&   \
551                                  (i) <= SETUP_MODE_CHOOSE_MUSIC ?       \
552                                  SETUP_MODE_CHOOSE_ARTWORK :            \
553                                  SETUP_MODE_CHOOSE_OTHER)
554
555 #define DRAW_XOFFSET_INFO(i)    (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ?  \
556                                  menu.draw_xoffset[GAME_MODE_INFO] :    \
557                                  menu.draw_xoffset_info[DRAW_MODE_INFO(i)])
558 #define DRAW_YOFFSET_INFO(i)    (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ?  \
559                                  menu.draw_yoffset[GAME_MODE_INFO] :    \
560                                  menu.draw_yoffset_info[DRAW_MODE_INFO(i)])
561 #define EXTRA_SPACING_INFO(i)   (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ? \
562                                  menu.extra_spacing[GAME_MODE_INFO] :   \
563                                  menu.extra_spacing_info[DRAW_MODE_INFO(i)])
564
565 #define DRAW_XOFFSET_SETUP(i)   (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
566                                  menu.draw_xoffset[GAME_MODE_SETUP] :   \
567                                  menu.draw_xoffset_setup[DRAW_MODE_SETUP(i)])
568 #define DRAW_YOFFSET_SETUP(i)   (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
569                                  menu.draw_yoffset[GAME_MODE_SETUP] :   \
570                                  menu.draw_yoffset_setup[DRAW_MODE_SETUP(i)])
571 #define EXTRA_SPACING_SETUP(i)  (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
572                                  menu.extra_spacing[GAME_MODE_SETUP] :  \
573                                  menu.extra_spacing_setup[DRAW_MODE_SETUP(i)])
574
575 #define DRAW_XOFFSET(s)         ((s) == GAME_MODE_INFO ?                \
576                                  DRAW_XOFFSET_INFO(info_mode) :         \
577                                  (s) == GAME_MODE_SETUP ?               \
578                                  DRAW_XOFFSET_SETUP(setup_mode) :       \
579                                  menu.draw_xoffset[DRAW_MODE(s)])
580 #define DRAW_YOFFSET(s)         ((s) == GAME_MODE_INFO ?                \
581                                  DRAW_YOFFSET_INFO(info_mode) :         \
582                                  (s) == GAME_MODE_SETUP ?               \
583                                  DRAW_YOFFSET_SETUP(setup_mode) :       \
584                                  menu.draw_yoffset[DRAW_MODE(s)])
585 #define EXTRA_SPACING(s)        ((s) == GAME_MODE_INFO ?                \
586                                  EXTRA_SPACING_INFO(info_mode) :        \
587                                  (s) == GAME_MODE_SETUP ?               \
588                                  EXTRA_SPACING_SETUP(setup_mode) :      \
589                                  menu.extra_spacing[DRAW_MODE(s)])
590
591 #define mSX                     (SX + DRAW_XOFFSET(game_status))
592 #define mSY                     (SY + DRAW_YOFFSET(game_status))
593
594 #define NUM_MENU_ENTRIES_ON_SCREEN (menu.list_size[game_status] > 2 ?   \
595                                     menu.list_size[game_status] :       \
596                                     MAX_MENU_ENTRIES_ON_SCREEN)
597
598 #define IN_VIS_MENU(x, y)       IN_FIELD(x, y, SCR_FIELDX,              \
599                                          NUM_MENU_ENTRIES_ON_SCREEN)
600
601
602 /* title display and control definitions */
603
604 #define MAX_NUM_TITLE_SCREENS   (2 * MAX_NUM_TITLE_IMAGES +             \
605                                  2 * MAX_NUM_TITLE_MESSAGES)
606
607 #define NO_DIRECT_LEVEL_SELECT  (-1)
608
609
610 static int num_title_screens = 0;
611
612 struct TitleControlInfo
613 {
614   boolean is_image;
615   boolean initial;
616   boolean first;
617   int local_nr;
618   int sort_priority;
619 };
620
621 struct TitleControlInfo title_controls[MAX_NUM_TITLE_SCREENS];
622
623 /* main menu display and control definitions */
624
625 #define MAIN_CONTROL_NAME                       0
626 #define MAIN_CONTROL_LEVELS                     1
627 #define MAIN_CONTROL_SCORES                     2
628 #define MAIN_CONTROL_EDITOR                     3
629 #define MAIN_CONTROL_INFO                       4
630 #define MAIN_CONTROL_GAME                       5
631 #define MAIN_CONTROL_SETUP                      6
632 #define MAIN_CONTROL_QUIT                       7
633 #define MAIN_CONTROL_PREV_LEVEL                 8
634 #define MAIN_CONTROL_NEXT_LEVEL                 9
635 #define MAIN_CONTROL_FIRST_LEVEL                10
636 #define MAIN_CONTROL_LAST_LEVEL                 11
637 #define MAIN_CONTROL_LEVEL_NUMBER               12
638 #define MAIN_CONTROL_LEVEL_INFO_1               13
639 #define MAIN_CONTROL_LEVEL_INFO_2               14
640 #define MAIN_CONTROL_LEVEL_NAME                 15
641 #define MAIN_CONTROL_LEVEL_AUTHOR               16
642 #define MAIN_CONTROL_LEVEL_YEAR                 17
643 #define MAIN_CONTROL_LEVEL_IMPORTED_FROM        18
644 #define MAIN_CONTROL_LEVEL_IMPORTED_BY          19
645 #define MAIN_CONTROL_LEVEL_TESTED_BY            20
646 #define MAIN_CONTROL_TITLE_1                    21
647 #define MAIN_CONTROL_TITLE_2                    22
648 #define MAIN_CONTROL_TITLE_3                    23
649
650 static char str_main_text_name[10];
651 static char str_main_text_first_level[10];
652 static char str_main_text_last_level[10];
653 static char str_main_text_level_number[10];
654
655 static char *main_text_name                     = str_main_text_name;
656 static char *main_text_first_level              = str_main_text_first_level;
657 static char *main_text_last_level               = str_main_text_last_level;
658 static char *main_text_level_number             = str_main_text_level_number;
659 static char *main_text_levels                   = "Levelset";
660 static char *main_text_scores                   = "Hall Of Fame";
661 static char *main_text_editor                   = "Level Creator";
662 static char *main_text_info                     = "Info Screen";
663 static char *main_text_game                     = "Start Game";
664 static char *main_text_setup                    = "Setup";
665 static char *main_text_quit                     = "Quit";
666 static char *main_text_level_name               = level.name;
667 static char *main_text_level_author             = level.author;
668 static char *main_text_level_year               = NULL;
669 static char *main_text_level_imported_from      = NULL;
670 static char *main_text_level_imported_by        = NULL;
671 static char *main_text_level_tested_by          = NULL;
672 static char *main_text_title_1                  = NULL;
673 static char *main_text_title_2                  = NULL;
674 static char *main_text_title_3                  = NULL;
675
676 struct MainControlInfo
677 {
678   int nr;
679
680   struct MenuPosInfo *pos_button;
681   int button_graphic;
682
683   struct TextPosInfo *pos_text;
684   char **text;
685
686   struct TextPosInfo *pos_input;
687   char **input;
688 };
689
690 static struct MainControlInfo main_controls[] =
691 {
692   {
693     MAIN_CONTROL_NAME,
694     &menu.main.button.name,             IMG_MENU_BUTTON_NAME,
695     &menu.main.text.name,               &main_text_name,
696     &menu.main.input.name,              &setup.player_name,
697   },
698   {
699     MAIN_CONTROL_LEVELS,
700     &menu.main.button.levels,           IMG_MENU_BUTTON_LEVELS,
701     &menu.main.text.levels,             &main_text_levels,
702     NULL,                               NULL,
703   },
704   {
705     MAIN_CONTROL_SCORES,
706     &menu.main.button.scores,           IMG_MENU_BUTTON_SCORES,
707     &menu.main.text.scores,             &main_text_scores,
708     NULL,                               NULL,
709   },
710   {
711     MAIN_CONTROL_EDITOR,
712     &menu.main.button.editor,           IMG_MENU_BUTTON_EDITOR,
713     &menu.main.text.editor,             &main_text_editor,
714     NULL,                               NULL,
715   },
716   {
717     MAIN_CONTROL_INFO,
718     &menu.main.button.info,             IMG_MENU_BUTTON_INFO,
719     &menu.main.text.info,               &main_text_info,
720     NULL,                               NULL,
721   },
722   {
723     MAIN_CONTROL_GAME,
724     &menu.main.button.game,             IMG_MENU_BUTTON_GAME,
725     &menu.main.text.game,               &main_text_game,
726     NULL,                               NULL,
727   },
728   {
729     MAIN_CONTROL_SETUP,
730     &menu.main.button.setup,            IMG_MENU_BUTTON_SETUP,
731     &menu.main.text.setup,              &main_text_setup,
732     NULL,                               NULL,
733   },
734   {
735     MAIN_CONTROL_QUIT,
736     &menu.main.button.quit,             IMG_MENU_BUTTON_QUIT,
737     &menu.main.text.quit,               &main_text_quit,
738     NULL,                               NULL,
739   },
740 #if 0
741   /* (these two buttons are real gadgets) */
742   {
743     MAIN_CONTROL_PREV_LEVEL,
744     &menu.main.button.prev_level,       IMG_MENU_BUTTON_PREV_LEVEL,
745     NULL,                               NULL,
746     NULL,                               NULL,
747   },
748   {
749     MAIN_CONTROL_NEXT_LEVEL,
750     &menu.main.button.next_level,       IMG_MENU_BUTTON_NEXT_LEVEL,
751     NULL,                               NULL,
752     NULL,                               NULL,
753   },
754 #endif
755   {
756     MAIN_CONTROL_FIRST_LEVEL,
757     &menu.main.button.first_level,      IMG_MENU_BUTTON_FIRST_LEVEL,
758     &menu.main.text.first_level,        &main_text_first_level,
759     NULL,                               NULL,
760   },
761   {
762     MAIN_CONTROL_LAST_LEVEL,
763     &menu.main.button.last_level,       IMG_MENU_BUTTON_LAST_LEVEL,
764     &menu.main.text.last_level,         &main_text_last_level,
765     NULL,                               NULL,
766   },
767   {
768     MAIN_CONTROL_LEVEL_NUMBER,
769     &menu.main.button.level_number,     IMG_MENU_BUTTON_LEVEL_NUMBER,
770     &menu.main.text.level_number,       &main_text_level_number,
771     NULL,                               NULL,
772   },
773   {
774     MAIN_CONTROL_LEVEL_INFO_1,
775     NULL,                               -1,
776     &menu.main.text.level_info_1,       NULL,
777     NULL,                               NULL,
778   },
779   {
780     MAIN_CONTROL_LEVEL_INFO_2,
781     NULL,                               -1,
782     &menu.main.text.level_info_2,       NULL,
783     NULL,                               NULL,
784   },
785   {
786     MAIN_CONTROL_LEVEL_NAME,
787     NULL,                               -1,
788     &menu.main.text.level_name,         &main_text_level_name,
789     NULL,                               NULL,
790   },
791   {
792     MAIN_CONTROL_LEVEL_AUTHOR,
793     NULL,                               -1,
794     &menu.main.text.level_author,       &main_text_level_author,
795     NULL,                               NULL,
796   },
797   {
798     MAIN_CONTROL_LEVEL_YEAR,
799     NULL,                               -1,
800     &menu.main.text.level_year,         &main_text_level_year,
801     NULL,                               NULL,
802   },
803   {
804     MAIN_CONTROL_LEVEL_IMPORTED_FROM,
805     NULL,                               -1,
806     &menu.main.text.level_imported_from, &main_text_level_imported_from,
807     NULL,                               NULL,
808   },
809   {
810     MAIN_CONTROL_LEVEL_IMPORTED_BY,
811     NULL,                               -1,
812     &menu.main.text.level_imported_by,  &main_text_level_imported_by,
813     NULL,                               NULL,
814   },
815   {
816     MAIN_CONTROL_LEVEL_TESTED_BY,
817     NULL,                               -1,
818     &menu.main.text.level_tested_by,    &main_text_level_tested_by,
819     NULL,                               NULL,
820   },
821   {
822     MAIN_CONTROL_TITLE_1,
823     NULL,                               -1,
824     &menu.main.text.title_1,            &main_text_title_1,
825     NULL,                               NULL,
826   },
827   {
828     MAIN_CONTROL_TITLE_2,
829     NULL,                               -1,
830     &menu.main.text.title_2,            &main_text_title_2,
831     NULL,                               NULL,
832   },
833   {
834     MAIN_CONTROL_TITLE_3,
835     NULL,                               -1,
836     &menu.main.text.title_3,            &main_text_title_3,
837     NULL,                               NULL,
838   },
839
840   {
841     -1,
842     NULL,                               -1,
843     NULL,                               NULL,
844     NULL,                               NULL,
845   }
846 };
847
848
849 static int getTitleScreenGraphic(int nr, boolean initial)
850 {
851   return (initial ? IMG_TITLESCREEN_INITIAL_1 : IMG_TITLESCREEN_1) + nr;
852 }
853
854 static struct TitleMessageInfo *getTitleMessageInfo(int nr, boolean initial)
855 {
856   return (initial ? &titlemessage_initial[nr] : &titlemessage[nr]);
857 }
858
859 #if 0
860 static int getTitleScreenGameMode(boolean initial)
861 {
862   return (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
863 }
864 #endif
865
866 static int getTitleMessageGameMode(boolean initial)
867 {
868   return (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
869 }
870
871 static int getTitleAnimMode(struct TitleControlInfo *tci)
872 {
873   int base = (tci->initial ? GAME_MODE_TITLE_INITIAL_1 : GAME_MODE_TITLE_1);
874
875   return base + tci->local_nr;
876 }
877
878 #if 0
879 static int getTitleScreenBackground(boolean initial)
880 {
881   return (initial ? IMG_BACKGROUND_TITLE_INITIAL : IMG_BACKGROUND_TITLE);
882 }
883 #endif
884
885 #if 0
886 static int getTitleMessageBackground(int nr, boolean initial)
887 {
888   return (initial ? IMG_BACKGROUND_TITLE_INITIAL : IMG_BACKGROUND_TITLE);
889 }
890 #endif
891
892 static int getTitleBackground(int nr, boolean initial, boolean is_image)
893 {
894   int base = (is_image ?
895               (initial ? IMG_BACKGROUND_TITLESCREEN_INITIAL_1 :
896                          IMG_BACKGROUND_TITLESCREEN_1) :
897               (initial ? IMG_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
898                          IMG_BACKGROUND_TITLEMESSAGE_1));
899   int graphic_global = (initial ? IMG_BACKGROUND_TITLE_INITIAL :
900                                   IMG_BACKGROUND_TITLE);
901   int graphic_local = base + nr;
902
903   if (graphic_info[graphic_local].bitmap != NULL)
904     return graphic_local;
905
906   if (graphic_info[graphic_global].bitmap != NULL)
907     return graphic_global;
908
909   return IMG_UNDEFINED;
910 }
911
912 static int getTitleSound(struct TitleControlInfo *tci)
913 {
914   boolean is_image = tci->is_image;
915   int initial = tci->initial;
916   int nr = tci->local_nr;
917   int mode = (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
918   int base = (is_image ?
919               (initial ? SND_BACKGROUND_TITLESCREEN_INITIAL_1 :
920                          SND_BACKGROUND_TITLESCREEN_1) :
921               (initial ? SND_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
922                          SND_BACKGROUND_TITLEMESSAGE_1));
923   int sound_global = menu.sound[mode];
924   int sound_local = base + nr;
925
926 #if 0
927   printf("::: %d, %d, %d: %d ['%s'], %d ['%s']\n",
928          nr, initial, is_image,
929          sound_global, getSoundListEntry(sound_global)->filename,
930          sound_local, getSoundListEntry(sound_local)->filename);
931 #endif
932
933   if (!strEqual(getSoundListEntry(sound_local)->filename, UNDEFINED_FILENAME))
934     return sound_local;
935
936   if (!strEqual(getSoundListEntry(sound_global)->filename, UNDEFINED_FILENAME))
937     return sound_global;
938
939   return SND_UNDEFINED;
940 }
941
942 static int getTitleMusic(struct TitleControlInfo *tci)
943 {
944   boolean is_image = tci->is_image;
945   int initial = tci->initial;
946   int nr = tci->local_nr;
947   int mode = (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
948   int base = (is_image ?
949               (initial ? MUS_BACKGROUND_TITLESCREEN_INITIAL_1 :
950                          MUS_BACKGROUND_TITLESCREEN_1) :
951               (initial ? MUS_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
952                          MUS_BACKGROUND_TITLEMESSAGE_1));
953   int music_global = menu.music[mode];
954   int music_local = base + nr;
955
956 #if 0
957   printf("::: %d, %d, %d: %d ['%s'], %d ['%s']\n",
958          nr, initial, is_image,
959          music_global, getMusicListEntry(music_global)->filename,
960          music_local, getMusicListEntry(music_local)->filename);
961 #endif
962
963   if (!strEqual(getMusicListEntry(music_local)->filename, UNDEFINED_FILENAME))
964     return music_local;
965
966   if (!strEqual(getMusicListEntry(music_global)->filename, UNDEFINED_FILENAME))
967     return music_global;
968
969   return MUS_UNDEFINED;
970 }
971
972 static struct TitleFadingInfo getTitleFading(struct TitleControlInfo *tci)
973 {
974   boolean is_image = tci->is_image;
975   boolean initial = tci->initial;
976   boolean first = tci->first;
977   int nr = tci->local_nr;
978   struct TitleMessageInfo tmi;
979   struct TitleFadingInfo ti;
980
981   tmi = (is_image ? (initial ? (first ?
982                                 titlescreen_initial_first[nr] :
983                                 titlescreen_initial[nr])
984                              : (first ?
985                                 titlescreen_first[nr] :
986                                 titlescreen[nr]))
987                   : (initial ? (first ?
988                                 titlemessage_initial_first[nr] :
989                                 titlemessage_initial[nr])
990                              : (first ?
991                                 titlemessage_first[nr] :
992                                 titlemessage[nr])));
993
994   ti.fade_mode  = tmi.fade_mode;
995   ti.fade_delay = tmi.fade_delay;
996   ti.post_delay = tmi.post_delay;
997   ti.auto_delay = tmi.auto_delay;
998
999   return ti;
1000 }
1001
1002 static int compareTitleControlInfo(const void *object1, const void *object2)
1003 {
1004   const struct TitleControlInfo *tci1 = (struct TitleControlInfo *)object1;
1005   const struct TitleControlInfo *tci2 = (struct TitleControlInfo *)object2;
1006   int compare_result;
1007
1008   if (tci1->initial != tci2->initial)
1009     compare_result = (tci1->initial ? -1 : +1);
1010   else if (tci1->sort_priority != tci2->sort_priority)
1011     compare_result = tci1->sort_priority - tci2->sort_priority;
1012   else if (tci1->is_image != tci2->is_image)
1013     compare_result = (tci1->is_image ? -1 : +1);
1014   else
1015     compare_result = tci1->local_nr - tci2->local_nr;
1016
1017   return compare_result;
1018 }
1019
1020 static void InitializeTitleControlsExt_AddTitleInfo(boolean is_image,
1021                                                     boolean initial,
1022                                                     int nr, int sort_priority)
1023 {
1024   title_controls[num_title_screens].is_image = is_image;
1025   title_controls[num_title_screens].initial = initial;
1026   title_controls[num_title_screens].local_nr = nr;
1027   title_controls[num_title_screens].sort_priority = sort_priority;
1028
1029   title_controls[num_title_screens].first = FALSE;      /* will be set later */
1030
1031   num_title_screens++;
1032 }
1033
1034 static void InitializeTitleControls_CheckTitleInfo(boolean initial)
1035 {
1036   int i;
1037
1038   for (i = 0; i < MAX_NUM_TITLE_IMAGES; i++)
1039   {
1040     int graphic = getTitleScreenGraphic(i, initial);
1041     Bitmap *bitmap = graphic_info[graphic].bitmap;
1042     int sort_priority = graphic_info[graphic].sort_priority;
1043
1044     if (bitmap != NULL)
1045       InitializeTitleControlsExt_AddTitleInfo(TRUE, initial, i, sort_priority);
1046   }
1047
1048   for (i = 0; i < MAX_NUM_TITLE_MESSAGES; i++)
1049   {
1050     struct TitleMessageInfo *tmi = getTitleMessageInfo(i, initial);
1051     char *filename = getLevelSetTitleMessageFilename(i, initial);
1052     int sort_priority = tmi->sort_priority;
1053
1054     if (filename != NULL)
1055       InitializeTitleControlsExt_AddTitleInfo(FALSE, initial, i, sort_priority);
1056   }
1057 }
1058
1059 static void InitializeTitleControls(boolean show_title_initial)
1060 {
1061   num_title_screens = 0;
1062
1063   /* 1st step: initialize title screens for game start (only when starting) */
1064   if (show_title_initial)
1065     InitializeTitleControls_CheckTitleInfo(TRUE);
1066
1067   /* 2nd step: initialize title screens for current level set */
1068   InitializeTitleControls_CheckTitleInfo(FALSE);
1069
1070   /* sort title screens according to sort_priority and title number */
1071   qsort(title_controls, num_title_screens, sizeof(struct TitleControlInfo),
1072         compareTitleControlInfo);
1073
1074   /* mark first title screen */
1075   title_controls[0].first = TRUE;
1076 }
1077
1078 static boolean visibleMenuPos(struct MenuPosInfo *pos)
1079 {
1080   return (pos != NULL && pos->x != -1 && pos->y != -1);
1081 }
1082
1083 static boolean visibleTextPos(struct TextPosInfo *pos)
1084 {
1085   return (pos != NULL && pos->x != -1 && pos->y != -1);
1086 }
1087
1088 static void InitializeMainControls()
1089 {
1090   boolean local_team_mode = (!network.enabled && setup.team_mode);
1091   int i;
1092
1093   /* set main control text values to dynamically determined values */
1094   sprintf(main_text_name,         "%s",   local_team_mode ? "Team:" : "Name:");
1095
1096   strcpy(main_text_first_level,  int2str(leveldir_current->first_level,
1097                                          menu.main.text.first_level.size));
1098   strcpy(main_text_last_level,   int2str(leveldir_current->last_level,
1099                                          menu.main.text.last_level.size));
1100   strcpy(main_text_level_number, int2str(level_nr,
1101                                          menu.main.text.level_number.size));
1102
1103   main_text_level_year          = leveldir_current->year;
1104   main_text_level_imported_from = leveldir_current->imported_from;
1105   main_text_level_imported_by   = leveldir_current->imported_by;
1106   main_text_level_tested_by     = leveldir_current->tested_by;
1107
1108   main_text_title_1 = getConfigProgramTitleString();
1109   main_text_title_2 = getConfigProgramCopyrightString();
1110   main_text_title_3 = getConfigProgramCompanyString();
1111
1112   /* set main control screen positions to dynamically determined values */
1113   for (i = 0; main_controls[i].nr != -1; i++)
1114   {
1115     struct MainControlInfo *mci = &main_controls[i];
1116     int nr                         = mci->nr;
1117     struct MenuPosInfo *pos_button = mci->pos_button;
1118     struct TextPosInfo *pos_text   = mci->pos_text;
1119     struct TextPosInfo *pos_input  = mci->pos_input;
1120     char *text                     = (mci->text  ? *mci->text  : NULL);
1121     char *input                    = (mci->input ? *mci->input : NULL);
1122     int button_graphic             = mci->button_graphic;
1123     int font_text                  = (pos_text  ? pos_text->font  : -1);
1124     int font_input                 = (pos_input ? pos_input->font : -1);
1125
1126     int font_text_width   = (font_text  != -1 ? getFontWidth(font_text)   : 0);
1127     int font_text_height  = (font_text  != -1 ? getFontHeight(font_text)  : 0);
1128     int font_input_width  = (font_input != -1 ? getFontWidth(font_input)  : 0);
1129     int font_input_height = (font_input != -1 ? getFontHeight(font_input) : 0);
1130     int text_chars  = (text  != NULL ? strlen(text)  : 0);
1131     int input_chars = (input != NULL ? strlen(input) : 0);
1132
1133     int button_width =
1134       (button_graphic != -1 ? graphic_info[button_graphic].width  : 0);
1135     int button_height =
1136       (button_graphic != -1 ? graphic_info[button_graphic].height : 0);
1137     int text_width   = font_text_width * text_chars;
1138     int text_height  = font_text_height;
1139     int input_width  = font_input_width * input_chars;
1140     int input_height = font_input_height;
1141
1142     if (nr == MAIN_CONTROL_NAME)
1143     {
1144       menu.main.input.name.width  = input_width;
1145       menu.main.input.name.height = input_height;
1146     }
1147
1148     if (pos_button != NULL)             /* (x/y may be -1/-1 here) */
1149     {
1150       pos_button->width  = button_width;
1151       pos_button->height = button_height;
1152     }
1153
1154     if (pos_text != NULL)               /* (x/y may be -1/-1 here) */
1155     {
1156       /* calculate text size -- needed for text alignment */
1157       boolean calculate_text_size = (text != NULL);
1158
1159       if (pos_text->width == -1 || calculate_text_size)
1160         pos_text->width = text_width;
1161       if (pos_text->height == -1 || calculate_text_size)
1162         pos_text->height = text_height;
1163
1164       if (visibleMenuPos(pos_button))
1165       {
1166         if (pos_text->x == -1)
1167           pos_text->x = pos_button->x + pos_button->width;
1168         if (pos_text->y == -1)
1169           pos_text->y =
1170             pos_button->y + (pos_button->height - pos_text->height) / 2;
1171       }
1172     }
1173
1174     if (pos_input != NULL)              /* (x/y may be -1/-1 here) */
1175     {
1176       if (visibleTextPos(pos_text))
1177       {
1178         if (pos_input->x == -1)
1179           pos_input->x = pos_text->x + pos_text->width;
1180         if (pos_input->y == -1)
1181           pos_input->y = pos_text->y;
1182       }
1183
1184       if (pos_input->width == -1)
1185         pos_input->width = input_width;
1186       if (pos_input->height == -1)
1187         pos_input->height = input_height;
1188     }
1189   }
1190 }
1191
1192 static void DrawPressedGraphicThruMask(int dst_x, int dst_y,
1193                                        int graphic, boolean pressed)
1194 {
1195   struct GraphicInfo *g = &graphic_info[graphic];
1196   Bitmap *src_bitmap;
1197   int src_x, src_y;
1198   int xoffset = (pressed ? g->pressed_xoffset : 0);
1199   int yoffset = (pressed ? g->pressed_yoffset : 0);
1200
1201   getFixedGraphicSource(graphic, 0, &src_bitmap, &src_x, &src_y);
1202
1203   BlitBitmapMasked(src_bitmap, drawto, src_x + xoffset, src_y + yoffset,
1204                    g->width, g->height, dst_x, dst_y);
1205 }
1206
1207 static void DrawCursorAndText_Main_Ext(int nr, boolean active_text,
1208                                        boolean active_input,
1209                                        boolean pressed_button)
1210 {
1211   int i;
1212
1213   for (i = 0; main_controls[i].nr != -1; i++)
1214   {
1215     struct MainControlInfo *mci = &main_controls[i];
1216
1217     if (mci->nr == nr || nr == -1)
1218     {
1219       struct MenuPosInfo *pos_button = mci->pos_button;
1220       struct TextPosInfo *pos_text   = mci->pos_text;
1221       struct TextPosInfo *pos_input  = mci->pos_input;
1222       char *text                     = (mci->text  ? *mci->text  : NULL);
1223       char *input                    = (mci->input ? *mci->input : NULL);
1224       int button_graphic             = mci->button_graphic;
1225       int font_text                  = (pos_text  ? pos_text->font  : -1);
1226       int font_input                 = (pos_input ? pos_input->font : -1);
1227
1228       if (active_text)
1229       {
1230         button_graphic = BUTTON_ACTIVE(button_graphic);
1231         font_text = FONT_ACTIVE(font_text);
1232       }
1233
1234       if (active_input)
1235       {
1236         font_input = FONT_ACTIVE(font_input);
1237       }
1238
1239       if (visibleMenuPos(pos_button))
1240       {
1241         struct MenuPosInfo *pos = pos_button;
1242         int x = mSX + pos->x;
1243         int y = mSY + pos->y;
1244
1245         DrawBackgroundForGraphic(x, y, pos->width, pos->height, button_graphic);
1246         DrawPressedGraphicThruMask(x, y, button_graphic, pressed_button);
1247       }
1248
1249       if (visibleTextPos(pos_text) && text != NULL)
1250       {
1251         struct TextPosInfo *pos = pos_text;
1252         int x = mSX + ALIGNED_TEXT_XPOS(pos);
1253         int y = mSY + ALIGNED_TEXT_YPOS(pos);
1254
1255 #if 1
1256         /* (check why/if this is needed) */
1257         DrawBackgroundForFont(x, y, pos->width, pos->height, font_text);
1258 #endif
1259         DrawText(x, y, text, font_text);
1260       }
1261
1262       if (visibleTextPos(pos_input) && input != NULL)
1263       {
1264         struct TextPosInfo *pos = pos_input;
1265         int x = mSX + ALIGNED_TEXT_XPOS(pos);
1266         int y = mSY + ALIGNED_TEXT_YPOS(pos);
1267
1268 #if 1
1269         /* (check why/if this is needed) */
1270         DrawBackgroundForFont(x, y, pos->width, pos->height, font_input);
1271 #endif
1272         DrawText(x, y, input, font_input);
1273       }
1274     }
1275   }
1276 }
1277
1278 static void DrawCursorAndText_Main(int nr, boolean active_text,
1279                                    boolean pressed_button)
1280 {
1281   DrawCursorAndText_Main_Ext(nr, active_text, FALSE, pressed_button);
1282 }
1283
1284 #if 0
1285 static void DrawCursorAndText_Main_Input(int nr, boolean active_text,
1286                                          boolean pressed_button)
1287 {
1288   DrawCursorAndText_Main_Ext(nr, active_text, TRUE, pressed_button);
1289 }
1290 #endif
1291
1292 static struct MainControlInfo *getMainControlInfo(int nr)
1293 {
1294   int i;
1295
1296   for (i = 0; main_controls[i].nr != -1; i++)
1297     if (main_controls[i].nr == nr)
1298       return &main_controls[i];
1299
1300   return NULL;
1301 }
1302
1303 static boolean insideMenuPosRect(struct MenuPosInfo *rect, int x, int y)
1304 {
1305   if (rect == NULL)
1306     return FALSE;
1307
1308   int rect_x = ALIGNED_TEXT_XPOS(rect);
1309   int rect_y = ALIGNED_TEXT_YPOS(rect);
1310
1311   return (x >= rect_x && x < rect_x + rect->width &&
1312           y >= rect_y && y < rect_y + rect->height);
1313 }
1314
1315 static boolean insideTextPosRect(struct TextPosInfo *rect, int x, int y)
1316 {
1317   if (rect == NULL)
1318     return FALSE;
1319
1320   int rect_x = ALIGNED_TEXT_XPOS(rect);
1321   int rect_y = ALIGNED_TEXT_YPOS(rect);
1322
1323 #if 0
1324   printf("::: insideTextPosRect: (%d, %d), (%d, %d) [%d, %d] (%d, %d) => %d\n",
1325          x, y, rect_x, rect_y, rect->x, rect->y, rect->width, rect->height,
1326          (x >= rect_x && x < rect_x + rect->width &&
1327           y >= rect_y && y < rect_y + rect->height));
1328 #endif
1329
1330   return (x >= rect_x && x < rect_x + rect->width &&
1331           y >= rect_y && y < rect_y + rect->height);
1332 }
1333
1334 static boolean insidePreviewRect(struct PreviewInfo *preview, int x, int y)
1335 {
1336   int rect_width  = preview->xsize * preview->tile_size;
1337   int rect_height = preview->ysize * preview->tile_size;
1338   int rect_x = ALIGNED_XPOS(preview->x, rect_width,  preview->align);
1339   int rect_y = ALIGNED_YPOS(preview->y, rect_height, preview->valign);
1340
1341   return (x >= rect_x && x < rect_x + rect_width &&
1342           y >= rect_y && y < rect_y + rect_height);
1343 }
1344
1345 static void AdjustScrollbar(int id, int items_max, int items_visible,
1346                             int item_position)
1347 {
1348   struct GadgetInfo *gi = screen_gadget[id];
1349
1350   if (item_position > items_max - items_visible)
1351     item_position = items_max - items_visible;
1352
1353   ModifyGadget(gi, GDI_SCROLLBAR_ITEMS_MAX, items_max,
1354                GDI_SCROLLBAR_ITEMS_VISIBLE, items_visible,
1355                GDI_SCROLLBAR_ITEM_POSITION, item_position, GDI_END);
1356 }
1357
1358 static void AdjustChooseTreeScrollbar(int id, int first_entry, TreeInfo *ti)
1359 {
1360   AdjustScrollbar(id, numTreeInfoInGroup(ti), NUM_MENU_ENTRIES_ON_SCREEN,
1361                   first_entry);
1362 }
1363
1364 static void clearMenuListArea()
1365 {
1366   int scrollbar_xpos = mSX + SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset;
1367
1368   /* correct scrollbar position if placed outside menu (playfield) area */
1369   if (scrollbar_xpos > SX + SC_SCROLLBAR_XPOS)
1370     scrollbar_xpos = SX + SC_SCROLLBAR_XPOS;
1371
1372   /* clear menu list area, but not title or scrollbar */
1373   DrawBackground(mSX, mSY + MENU_SCREEN_START_YPOS * 32,
1374                  scrollbar_xpos - mSX, NUM_MENU_ENTRIES_ON_SCREEN * 32);
1375 }
1376
1377 static void drawCursorExt(int xpos, int ypos, boolean active, int graphic)
1378 {
1379   static int cursor_array[MAX_LEV_FIELDY];
1380   int x = mSX + TILEX * xpos;
1381   int y = mSY + TILEY * (MENU_SCREEN_START_YPOS + ypos);
1382
1383   if (xpos == 0)
1384   {
1385     if (graphic != -1)
1386       cursor_array[ypos] = graphic;
1387     else
1388       graphic = cursor_array[ypos];
1389   }
1390
1391   if (active)
1392     graphic = BUTTON_ACTIVE(graphic);
1393
1394   DrawBackgroundForGraphic(x, y, TILEX, TILEY, graphic);
1395   DrawFixedGraphicThruMaskExt(drawto, x, y, graphic, 0);
1396 }
1397
1398 static void initCursor(int ypos, int graphic)
1399 {
1400   drawCursorExt(0, ypos, FALSE, graphic);
1401 }
1402
1403 static void drawCursor(int ypos, boolean active)
1404 {
1405   drawCursorExt(0, ypos, active, -1);
1406 }
1407
1408 static void drawCursorXY(int xpos, int ypos, int graphic)
1409 {
1410   drawCursorExt(xpos, ypos, FALSE, graphic);
1411 }
1412
1413 static void drawChooseTreeCursor(int ypos, boolean active)
1414 {
1415   drawCursorExt(0, ypos, active, -1);
1416 }
1417
1418 void DrawHeadline()
1419 {
1420   DrawTextSCentered(MENU_TITLE1_YPOS, FONT_TITLE_1, main_text_title_1);
1421   DrawTextSCentered(MENU_TITLE2_YPOS, FONT_TITLE_2, main_text_title_2);
1422 }
1423
1424 void DrawTitleScreenImage(int nr, boolean initial)
1425 {
1426   int graphic = getTitleScreenGraphic(nr, initial);
1427   Bitmap *bitmap = graphic_info[graphic].bitmap;
1428   int width  = graphic_info[graphic].width;
1429   int height = graphic_info[graphic].height;
1430   int src_x = graphic_info[graphic].src_x;
1431   int src_y = graphic_info[graphic].src_y;
1432   int dst_x, dst_y;
1433
1434   if (bitmap == NULL)
1435     return;
1436
1437   if (width > WIN_XSIZE)
1438   {
1439     /* image width too large for window => center image horizontally */
1440     src_x = (width - WIN_XSIZE) / 2;
1441     width = WIN_XSIZE;
1442   }
1443
1444   if (height > WIN_YSIZE)
1445   {
1446     /* image height too large for window => center image vertically */
1447     src_y = (height - WIN_YSIZE) / 2;
1448     height = WIN_YSIZE;
1449   }
1450
1451   /* always display title screens centered */
1452   dst_x = (WIN_XSIZE - width) / 2;
1453   dst_y = (WIN_YSIZE - height) / 2;
1454
1455   SetDrawBackgroundMask(REDRAW_ALL);
1456   SetWindowBackgroundImage(getTitleBackground(nr, initial, TRUE));
1457
1458   ClearRectangleOnBackground(drawto, 0, 0, WIN_XSIZE, WIN_YSIZE);
1459
1460   if (DrawingOnBackground(dst_x, dst_y))
1461     BlitBitmapMasked(bitmap, drawto, src_x, src_y, width, height, dst_x, dst_y);
1462   else
1463     BlitBitmap(bitmap, drawto, src_x, src_y, width, height, dst_x, dst_y);
1464
1465   redraw_mask = REDRAW_ALL;
1466 }
1467
1468 void DrawTitleScreenMessage(int nr, boolean initial)
1469 {
1470   char *filename = getLevelSetTitleMessageFilename(nr, initial);
1471   struct TitleMessageInfo *tmi = getTitleMessageInfo(nr, initial);
1472
1473   if (filename == NULL)
1474     return;
1475
1476   /* force TITLE font on title message screen */
1477   SetFontStatus(getTitleMessageGameMode(initial));
1478
1479   /* if chars *and* width set to "-1", automatically determine width */
1480   if (tmi->chars == -1 && tmi->width == -1)
1481     tmi->width = viewport.window[game_status].width;
1482
1483   /* if lines *and* height set to "-1", automatically determine height */
1484   if (tmi->lines == -1 && tmi->height == -1)
1485     tmi->height = viewport.window[game_status].height;
1486
1487   /* if chars set to "-1", automatically determine by text and font width */
1488   if (tmi->chars == -1)
1489     tmi->chars = tmi->width / getFontWidth(tmi->font);
1490   else
1491     tmi->width = tmi->chars * getFontWidth(tmi->font);
1492
1493   /* if lines set to "-1", automatically determine by text and font height */
1494   if (tmi->lines == -1)
1495     tmi->lines = tmi->height / getFontHeight(tmi->font);
1496   else
1497     tmi->height = tmi->lines * getFontHeight(tmi->font);
1498
1499   /* if x set to "-1", automatically determine by width and alignment */
1500   if (tmi->x == -1)
1501     tmi->x = -1 * ALIGNED_XPOS(0, tmi->width, tmi->align);
1502
1503   /* if y set to "-1", automatically determine by height and alignment */
1504   if (tmi->y == -1)
1505     tmi->y = -1 * ALIGNED_YPOS(0, tmi->height, tmi->valign);
1506
1507   SetDrawBackgroundMask(REDRAW_ALL);
1508   SetWindowBackgroundImage(getTitleBackground(nr, initial, FALSE));
1509
1510   ClearRectangleOnBackground(drawto, 0, 0, WIN_XSIZE, WIN_YSIZE);
1511
1512   DrawTextFile(ALIGNED_TEXT_XPOS(tmi), ALIGNED_TEXT_YPOS(tmi),
1513                filename, tmi->font, tmi->chars, -1, tmi->lines, 0, -1,
1514                tmi->autowrap, tmi->centered, tmi->parse_comments);
1515
1516   ResetFontStatus();
1517 }
1518
1519 void DrawTitleScreen()
1520 {
1521   KeyboardAutoRepeatOff();
1522
1523   HandleTitleScreen(0, 0, 0, 0, MB_MENU_INITIALIZE);
1524 }
1525
1526 boolean CheckTitleScreen(boolean levelset_has_changed)
1527 {
1528   static boolean show_title_initial = TRUE;
1529   boolean show_titlescreen = FALSE;
1530
1531   /* needed to be able to skip title screen, if no image or message defined */
1532   InitializeTitleControls(show_title_initial);
1533
1534   if (setup.show_titlescreen && (show_title_initial || levelset_has_changed))
1535     show_titlescreen = TRUE;
1536
1537   /* show initial title images and messages only once at program start */
1538   show_title_initial = FALSE;
1539
1540   return (show_titlescreen && num_title_screens > 0);
1541 }
1542
1543 void DrawMainMenu()
1544 {
1545   static LevelDirTree *leveldir_last_valid = NULL;
1546   boolean levelset_has_changed = FALSE;
1547   int fade_mask = REDRAW_FIELD;
1548
1549   LimitScreenUpdates(FALSE);
1550
1551   FadeSetLeaveScreen();
1552
1553   /* do not fade out here -- function may continue and fade on editor screen */
1554
1555   UnmapAllGadgets();
1556   FadeMenuSoundsAndMusic();
1557
1558   ExpireSoundLoops(FALSE);
1559
1560   KeyboardAutoRepeatOn();
1561
1562   audio.sound_deactivated = FALSE;
1563
1564   GetPlayerConfig();
1565
1566   /* needed if last screen was the playing screen, invoked from level editor */
1567   if (level_editor_test_game)
1568   {
1569     CloseDoor(DOOR_CLOSE_ALL);
1570
1571     SetGameStatus(GAME_MODE_EDITOR);
1572
1573     DrawLevelEd();
1574
1575     return;
1576   }
1577
1578   /* needed if last screen was the setup screen and fullscreen state changed */
1579   // (moved to "execSetupGraphics()" to change fullscreen state directly)
1580   // ToggleFullscreenOrChangeWindowScalingIfNeeded();
1581
1582   /* leveldir_current may be invalid (level group, parent link) */
1583   if (!validLevelSeries(leveldir_current))
1584     leveldir_current = getFirstValidTreeInfoEntry(leveldir_last_valid);
1585
1586   if (leveldir_current != leveldir_last_valid)
1587     levelset_has_changed = TRUE;
1588
1589   /* store valid level series information */
1590   leveldir_last_valid = leveldir_current;
1591
1592   init_last = init;                     /* switch to new busy animation */
1593
1594   /* needed if last screen (level choice) changed graphics, sounds or music */
1595   ReloadCustomArtwork(0);
1596
1597   if (CheckTitleScreen(levelset_has_changed))
1598   {
1599     SetGameStatus(GAME_MODE_TITLE);
1600
1601     DrawTitleScreen();
1602
1603     return;
1604   }
1605
1606   if (redraw_mask & REDRAW_ALL)
1607     fade_mask = REDRAW_ALL;
1608
1609   if (CheckIfGlobalBorderOrPlayfieldViewportHasChanged())
1610     fade_mask = REDRAW_ALL;
1611
1612   FadeOut(fade_mask);
1613
1614   /* needed if different viewport properties defined for menues */
1615   ChangeViewportPropertiesIfNeeded();
1616
1617   SetDrawtoField(DRAW_TO_BACKBUFFER);
1618
1619   /* level_nr may have been set to value over handicap with level editor */
1620   if (setup.handicap && level_nr > leveldir_current->handicap_level)
1621     level_nr = leveldir_current->handicap_level;
1622
1623   LoadLevel(level_nr);
1624   LoadScore(level_nr);
1625
1626   SaveLevelSetup_SeriesInfo();
1627
1628   // set this after "ChangeViewportPropertiesIfNeeded()" (which may reset it)
1629   SetDrawDeactivationMask(REDRAW_NONE);
1630   SetDrawBackgroundMask(REDRAW_FIELD);
1631
1632   SetMainBackgroundImage(IMG_BACKGROUND_MAIN);
1633
1634 #if 0
1635   if (fade_mask == REDRAW_ALL)
1636     RedrawGlobalBorder();
1637 #endif
1638
1639   ClearField();
1640
1641   InitializeMainControls();
1642
1643   DrawCursorAndText_Main(-1, FALSE, FALSE);
1644   DrawPreviewLevelInitial();
1645   DrawNetworkPlayers();
1646
1647   HandleMainMenu(0, 0, 0, 0, MB_MENU_INITIALIZE);
1648
1649   TapeStop();
1650   if (TAPE_IS_EMPTY(tape))
1651     LoadTape(level_nr);
1652   DrawCompleteVideoDisplay();
1653
1654   PlayMenuSoundsAndMusic();
1655
1656   /* create gadgets for main menu screen */
1657   FreeScreenGadgets();
1658   CreateScreenGadgets();
1659
1660   /* may be required if audio buttons shown on tape and changed in setup menu */
1661   FreeGameButtons();
1662   CreateGameButtons();
1663
1664   /* map gadgets for main menu screen */
1665   MapTapeButtons();
1666   MapScreenMenuGadgets(SCREEN_MASK_MAIN);
1667   UpdateScreenMenuGadgets(SCREEN_MASK_MAIN_HAS_SOLUTION, hasSolutionTape());
1668
1669   /* copy actual game door content to door double buffer for OpenDoor() */
1670   BlitBitmap(drawto, bitmap_db_door_1, DX, DY, DXSIZE, DYSIZE, 0, 0);
1671   BlitBitmap(drawto, bitmap_db_door_2, VX, VY, VXSIZE, VYSIZE, 0, 0);
1672
1673   OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
1674
1675   DrawMaskedBorder(fade_mask);
1676
1677   FadeIn(fade_mask);
1678   FadeSetEnterMenu();
1679
1680   /* update screen area with special editor door */
1681   redraw_mask |= REDRAW_ALL;
1682   BackToFront();
1683
1684   SetMouseCursor(CURSOR_DEFAULT);
1685
1686   OpenDoor(DOOR_CLOSE_1 | DOOR_OPEN_2);
1687 }
1688
1689 static void gotoTopLevelDir()
1690 {
1691   /* move upwards until inside (but not above) top level directory */
1692   while (leveldir_current->node_parent &&
1693          !strEqual(leveldir_current->node_parent->subdir, STRING_TOP_DIRECTORY))
1694   {
1695     /* write a "path" into level tree for easy navigation to last level */
1696     if (leveldir_current->node_parent->node_group->cl_first == -1)
1697     {
1698       int num_leveldirs = numTreeInfoInGroup(leveldir_current);
1699       int leveldir_pos = posTreeInfo(leveldir_current);
1700       int num_page_entries;
1701       int cl_first, cl_cursor;
1702
1703       if (num_leveldirs <= NUM_MENU_ENTRIES_ON_SCREEN)
1704         num_page_entries = num_leveldirs;
1705       else
1706         num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
1707
1708       cl_first = MAX(0, leveldir_pos - num_page_entries + 1);
1709       cl_cursor = leveldir_pos - cl_first;
1710
1711       leveldir_current->node_parent->node_group->cl_first = cl_first;
1712       leveldir_current->node_parent->node_group->cl_cursor = cl_cursor;
1713     }
1714
1715     leveldir_current = leveldir_current->node_parent;
1716   }
1717 }
1718
1719 void HandleTitleScreen(int mx, int my, int dx, int dy, int button)
1720 {
1721   static unsigned int title_delay = 0;
1722   static int title_screen_nr = 0;
1723   static int last_sound = -1, last_music = -1;
1724   boolean return_to_main_menu = FALSE;
1725   struct TitleControlInfo *tci;
1726   int sound, music;
1727
1728   if (button == MB_MENU_INITIALIZE)
1729   {
1730     title_delay = 0;
1731     title_screen_nr = 0;
1732     tci = &title_controls[title_screen_nr];
1733
1734     SetAnimStatus(getTitleAnimMode(tci));
1735
1736     last_sound = SND_UNDEFINED;
1737     last_music = MUS_UNDEFINED;
1738
1739     if (num_title_screens != 0)
1740     {
1741       FadeSetEnterScreen();
1742
1743       /* use individual title fading instead of global "enter screen" fading */
1744       fading = getTitleFading(tci);
1745     }
1746
1747     if (game_status_last_screen == GAME_MODE_INFO)
1748     {
1749       if (num_title_screens == 0)
1750       {
1751         /* switch game mode from title screen mode back to info screen mode */
1752         SetGameStatus(GAME_MODE_INFO);
1753
1754         /* store that last screen was info screen, not main menu screen */
1755         game_status_last_screen = GAME_MODE_INFO;
1756
1757         DrawInfoScreen_NotAvailable("Title screen information:",
1758                                     "No title screen for this level set.");
1759         return;
1760       }
1761
1762       FadeMenuSoundsAndMusic();
1763     }
1764
1765     FadeOut(REDRAW_ALL);
1766
1767     /* title screens may have different window size */
1768     ChangeViewportPropertiesIfNeeded();
1769
1770     /* only required to update logic for redrawing global border */
1771     ClearField();
1772
1773     if (tci->is_image)
1774       DrawTitleScreenImage(tci->local_nr, tci->initial);
1775     else
1776       DrawTitleScreenMessage(tci->local_nr, tci->initial);
1777
1778     sound = getTitleSound(tci);
1779     music = getTitleMusic(tci);
1780
1781     if (sound != last_sound)
1782       PlayMenuSoundExt(sound);
1783     if (music != last_music)
1784       PlayMenuMusicExt(music);
1785
1786     last_sound = sound;
1787     last_music = music;
1788
1789     SetMouseCursor(CURSOR_NONE);
1790
1791     FadeIn(REDRAW_ALL);
1792
1793     DelayReached(&title_delay, 0);      /* reset delay counter */
1794
1795     return;
1796   }
1797
1798   if (fading.auto_delay > 0 && DelayReached(&title_delay, fading.auto_delay))
1799     button = MB_MENU_CHOICE;
1800
1801   if (button == MB_MENU_LEAVE)
1802   {
1803     return_to_main_menu = TRUE;
1804   }
1805   else if (button == MB_MENU_CHOICE)
1806   {
1807     if (game_status_last_screen == GAME_MODE_INFO && num_title_screens == 0)
1808     {
1809       SetGameStatus(GAME_MODE_INFO);
1810
1811       info_mode = INFO_MODE_MAIN;
1812
1813       DrawInfoScreen();
1814
1815       return;
1816     }
1817
1818     title_screen_nr++;
1819
1820     if (title_screen_nr < num_title_screens)
1821     {
1822       tci = &title_controls[title_screen_nr];
1823
1824       SetAnimStatus(getTitleAnimMode(tci));
1825
1826       sound = getTitleSound(tci);
1827       music = getTitleMusic(tci);
1828
1829       if (last_sound != SND_UNDEFINED && sound != last_sound)
1830         FadeSound(last_sound);
1831       if (last_music != MUS_UNDEFINED && music != last_music)
1832         FadeMusic();
1833
1834       fading = getTitleFading(tci);
1835
1836       FadeOut(REDRAW_ALL);
1837
1838       if (tci->is_image)
1839         DrawTitleScreenImage(tci->local_nr, tci->initial);
1840       else
1841         DrawTitleScreenMessage(tci->local_nr, tci->initial);
1842
1843       sound = getTitleSound(tci);
1844       music = getTitleMusic(tci);
1845
1846       if (sound != last_sound)
1847         PlayMenuSoundExt(sound);
1848       if (music != last_music)
1849         PlayMenuMusicExt(music);
1850
1851       last_sound = sound;
1852       last_music = music;
1853
1854       FadeIn(REDRAW_ALL);
1855
1856       DelayReached(&title_delay, 0);    /* reset delay counter */
1857     }
1858     else
1859     {
1860       FadeMenuSoundsAndMusic();
1861
1862       return_to_main_menu = TRUE;
1863     }
1864   }
1865
1866   if (return_to_main_menu)
1867   {
1868     SetMouseCursor(CURSOR_DEFAULT);
1869
1870     /* force full menu screen redraw after displaying title screens */
1871     redraw_mask = REDRAW_ALL;
1872
1873     if (game_status_last_screen == GAME_MODE_INFO)
1874     {
1875       SetGameStatus(GAME_MODE_INFO);
1876
1877       info_mode = INFO_MODE_MAIN;
1878
1879       DrawInfoScreen();
1880     }
1881     else        /* default: return to main menu */
1882     {
1883       SetGameStatus(GAME_MODE_MAIN);
1884
1885       DrawMainMenu();
1886     }
1887   }
1888 }
1889
1890 void HandleMainMenu_SelectLevel(int step, int direction, int selected_level_nr)
1891 {
1892   int old_level_nr = level_nr;
1893   int new_level_nr;
1894
1895   if (selected_level_nr != NO_DIRECT_LEVEL_SELECT)
1896     new_level_nr = selected_level_nr;
1897   else
1898     new_level_nr = old_level_nr + step * direction;
1899
1900   if (new_level_nr < leveldir_current->first_level)
1901     new_level_nr = leveldir_current->first_level;
1902   if (new_level_nr > leveldir_current->last_level)
1903     new_level_nr = leveldir_current->last_level;
1904
1905   if (setup.handicap && new_level_nr > leveldir_current->handicap_level)
1906   {
1907     /* skipping levels is only allowed when trying to skip single level */
1908     if (setup.skip_levels && new_level_nr == old_level_nr + 1 &&
1909         Request("Level still unsolved! Skip despite handicap?", REQ_ASK))
1910     {
1911       leveldir_current->handicap_level++;
1912       SaveLevelSetup_SeriesInfo();
1913     }
1914
1915     new_level_nr = leveldir_current->handicap_level;
1916   }
1917
1918   if (new_level_nr != old_level_nr)
1919   {
1920     struct MainControlInfo *mci= getMainControlInfo(MAIN_CONTROL_LEVEL_NUMBER);
1921
1922     PlaySound(SND_MENU_ITEM_SELECTING);
1923
1924     level_nr = new_level_nr;
1925
1926     DrawText(mSX + mci->pos_text->x, mSY + mci->pos_text->y,
1927              int2str(level_nr, menu.main.text.level_number.size),
1928              mci->pos_text->font);
1929
1930     LoadLevel(level_nr);
1931     DrawPreviewLevelInitial();
1932
1933     TapeErase();
1934     LoadTape(level_nr);
1935     DrawCompleteVideoDisplay();
1936
1937     SaveLevelSetup_SeriesInfo();
1938
1939     UpdateScreenMenuGadgets(SCREEN_MASK_MAIN_HAS_SOLUTION, hasSolutionTape());
1940
1941     /* needed because DrawPreviewLevelInitial() takes some time */
1942     BackToFront();
1943     /* SyncDisplay(); */
1944   }
1945 }
1946
1947 void HandleMainMenu(int mx, int my, int dx, int dy, int button)
1948 {
1949   static int choice = MAIN_CONTROL_GAME;
1950   static boolean button_pressed_last = FALSE;
1951   boolean button_pressed = FALSE;
1952   int pos = choice;
1953   int i;
1954
1955   if (button == MB_MENU_INITIALIZE)
1956   {
1957     DrawCursorAndText_Main(choice, TRUE, FALSE);
1958
1959     return;
1960   }
1961
1962   if (mx || my)         /* mouse input */
1963   {
1964     pos = -1;
1965
1966     for (i = 0; main_controls[i].nr != -1; i++)
1967     {
1968       if (insideMenuPosRect(main_controls[i].pos_button, mx - mSX, my - mSY) ||
1969           insideTextPosRect(main_controls[i].pos_text,   mx - mSX, my - mSY) ||
1970           insideTextPosRect(main_controls[i].pos_input,  mx - mSX, my - mSY))
1971       {
1972         pos = main_controls[i].nr;
1973
1974         break;
1975       }
1976     }
1977
1978     /* check if level preview was clicked */
1979     if (insidePreviewRect(&preview, mx - SX, my - SY))
1980       pos = MAIN_CONTROL_GAME;
1981
1982     // handle pressed/unpressed state for active/inactive menu buttons
1983     // (if pos != -1, "i" contains index position corresponding to "pos")
1984     if (button &&
1985         pos >= MAIN_CONTROL_NAME && pos <= MAIN_CONTROL_QUIT &&
1986         insideMenuPosRect(main_controls[i].pos_button, mx - mSX, my - mSY))
1987       button_pressed = TRUE;
1988
1989     if (button_pressed != button_pressed_last)
1990     {
1991       DrawCursorAndText_Main(choice, TRUE, button_pressed);
1992
1993       if (button_pressed)
1994         PlaySound(SND_MENU_BUTTON_PRESSING);
1995       else
1996         PlaySound(SND_MENU_BUTTON_RELEASING);
1997     }
1998   }
1999   else if (dx || dy)    /* keyboard input */
2000   {
2001     if (dx > 0 && (choice == MAIN_CONTROL_INFO ||
2002                    choice == MAIN_CONTROL_SETUP))
2003       button = MB_MENU_CHOICE;
2004     else if (dy)
2005       pos = choice + dy;
2006   }
2007
2008   if (pos == MAIN_CONTROL_FIRST_LEVEL && !button)
2009   {
2010     HandleMainMenu_SelectLevel(MAX_LEVELS, -1, NO_DIRECT_LEVEL_SELECT);
2011   }
2012   else if (pos == MAIN_CONTROL_LAST_LEVEL && !button)
2013   {
2014     HandleMainMenu_SelectLevel(MAX_LEVELS, +1, NO_DIRECT_LEVEL_SELECT);
2015   }
2016   else if (pos == MAIN_CONTROL_LEVEL_NUMBER && !button)
2017   {
2018     CloseDoor(DOOR_CLOSE_2);
2019
2020     SetGameStatus(GAME_MODE_LEVELNR);
2021
2022     DrawChooseLevelNr();
2023   }
2024   else if (pos >= MAIN_CONTROL_NAME && pos <= MAIN_CONTROL_QUIT)
2025   {
2026     if (button)
2027     {
2028       if (pos != choice)
2029       {
2030         PlaySound(SND_MENU_ITEM_ACTIVATING);
2031
2032         DrawCursorAndText_Main(choice, FALSE, FALSE);
2033         DrawCursorAndText_Main(pos, TRUE, button_pressed);
2034
2035         choice = pos;
2036       }
2037       else if (dx != 0)
2038       {
2039         if (choice != MAIN_CONTROL_INFO &&
2040             choice != MAIN_CONTROL_SETUP)
2041           HandleMainMenu_SelectLevel(1, dx, NO_DIRECT_LEVEL_SELECT);
2042       }
2043     }
2044     else
2045     {
2046       PlaySound(SND_MENU_ITEM_SELECTING);
2047
2048       if (pos == MAIN_CONTROL_NAME)
2049       {
2050         SetGameStatus(GAME_MODE_PSEUDO_TYPENAME);
2051
2052         HandleTypeName(strlen(setup.player_name), 0);
2053       }
2054       else if (pos == MAIN_CONTROL_LEVELS)
2055       {
2056         if (leveldir_first)
2057         {
2058           CloseDoor(DOOR_CLOSE_2);
2059
2060           SetGameStatus(GAME_MODE_LEVELS);
2061
2062           SaveLevelSetup_LastSeries();
2063           SaveLevelSetup_SeriesInfo();
2064
2065           if (setup.internal.choose_from_top_leveldir)
2066             gotoTopLevelDir();
2067
2068           DrawChooseLevelSet();
2069         }
2070       }
2071       else if (pos == MAIN_CONTROL_SCORES)
2072       {
2073         CloseDoor(DOOR_CLOSE_2);
2074
2075         SetGameStatus(GAME_MODE_SCORES);
2076
2077         DrawHallOfFame(level_nr, -1);
2078       }
2079       else if (pos == MAIN_CONTROL_EDITOR)
2080       {
2081         if (leveldir_current->readonly &&
2082             !strEqual(setup.player_name, "Artsoft"))
2083           Request("This level is read only!", REQ_CONFIRM);
2084
2085         CloseDoor(DOOR_CLOSE_2);
2086
2087         SetGameStatus(GAME_MODE_EDITOR);
2088
2089         FadeSetEnterScreen();
2090
2091         DrawLevelEd();
2092       }
2093       else if (pos == MAIN_CONTROL_INFO)
2094       {
2095         CloseDoor(DOOR_CLOSE_2);
2096
2097         SetGameStatus(GAME_MODE_INFO);
2098
2099         info_mode = INFO_MODE_MAIN;
2100
2101         DrawInfoScreen();
2102       }
2103       else if (pos == MAIN_CONTROL_GAME)
2104       {
2105         StartGameActions(network.enabled, setup.autorecord, level.random_seed);
2106       }
2107       else if (pos == MAIN_CONTROL_SETUP)
2108       {
2109         CloseDoor(DOOR_CLOSE_2);
2110
2111         SetGameStatus(GAME_MODE_SETUP);
2112
2113         setup_mode = SETUP_MODE_MAIN;
2114
2115         DrawSetupScreen();
2116       }
2117       else if (pos == MAIN_CONTROL_QUIT)
2118       {
2119         SaveLevelSetup_LastSeries();
2120         SaveLevelSetup_SeriesInfo();
2121
2122         if (Request("Do you really want to quit?", REQ_ASK | REQ_STAY_CLOSED))
2123           SetGameStatus(GAME_MODE_QUIT);
2124       }
2125     }
2126   }
2127
2128   button_pressed_last = button_pressed;
2129 }
2130
2131
2132 /* ========================================================================= */
2133 /* info screen functions                                                     */
2134 /* ========================================================================= */
2135
2136 static struct TokenInfo *info_info;
2137 static int num_info_info;       /* number of info entries shown on screen */
2138 static int max_info_info;       /* total number of info entries in list */
2139
2140 static void execInfoTitleScreen()
2141 {
2142   info_mode = INFO_MODE_TITLE;
2143
2144   DrawInfoScreen();
2145 }
2146
2147 static void execInfoElements()
2148 {
2149   info_mode = INFO_MODE_ELEMENTS;
2150
2151   DrawInfoScreen();
2152 }
2153
2154 static void execInfoMusic()
2155 {
2156   info_mode = INFO_MODE_MUSIC;
2157
2158   DrawInfoScreen();
2159 }
2160
2161 static void execInfoCredits()
2162 {
2163   info_mode = INFO_MODE_CREDITS;
2164
2165   DrawInfoScreen();
2166 }
2167
2168 static void execInfoProgram()
2169 {
2170   info_mode = INFO_MODE_PROGRAM;
2171
2172   DrawInfoScreen();
2173 }
2174
2175 static void execInfoVersion()
2176 {
2177   info_mode = INFO_MODE_VERSION;
2178
2179   DrawInfoScreen();
2180 }
2181
2182 static void execInfoLevelSet()
2183 {
2184   info_mode = INFO_MODE_LEVELSET;
2185
2186   DrawInfoScreen();
2187 }
2188
2189 static void execExitInfo()
2190 {
2191   SetGameStatus(GAME_MODE_MAIN);
2192
2193   DrawMainMenu();
2194 }
2195
2196 static struct TokenInfo info_info_main[] =
2197 {
2198   { TYPE_ENTER_SCREEN,  execInfoTitleScreen,    "Title Screen"          },
2199   { TYPE_ENTER_SCREEN,  execInfoElements,       "Elements Info"         },
2200   { TYPE_ENTER_SCREEN,  execInfoMusic,          "Music Info"            },
2201   { TYPE_ENTER_SCREEN,  execInfoCredits,        "Credits"               },
2202   { TYPE_ENTER_SCREEN,  execInfoProgram,        "Program Info"          },
2203   { TYPE_ENTER_SCREEN,  execInfoVersion,        "Version Info"          },
2204   { TYPE_ENTER_SCREEN,  execInfoLevelSet,       "Level Set Info"        },
2205   { TYPE_EMPTY,         NULL,                   ""                      },
2206   { TYPE_LEAVE_MENU,    execExitInfo,           "Exit"                  },
2207
2208   { 0,                  NULL,                   NULL                    }
2209 };
2210
2211 static int getMenuTextFont(int type)
2212 {
2213   if (type & (TYPE_SWITCH       |
2214               TYPE_YES_NO       |
2215               TYPE_YES_NO_AUTO  |
2216               TYPE_STRING       |
2217               TYPE_PLAYER       |
2218               TYPE_ECS_AGA      |
2219               TYPE_KEYTEXT      |
2220               TYPE_ENTER_LIST))
2221     return FONT_MENU_2;
2222   else
2223     return FONT_MENU_1;
2224 }
2225
2226 static struct TokenInfo *setup_info;
2227 static struct TokenInfo setup_info_input[];
2228
2229 static struct TokenInfo *menu_info;
2230
2231 static void DrawCursorAndText_Menu_Ext(struct TokenInfo *token_info,
2232                                        int screen_pos, int menu_info_pos_raw,
2233                                        boolean active)
2234 {
2235   int pos = (menu_info_pos_raw < 0 ? screen_pos : menu_info_pos_raw);
2236   struct TokenInfo *ti = &token_info[pos];
2237   int xpos = MENU_SCREEN_START_XPOS;
2238   int ypos = MENU_SCREEN_START_YPOS + screen_pos;
2239   int font_nr = getMenuTextFont(ti->type);
2240
2241   if (setup_mode == SETUP_MODE_INPUT)
2242     font_nr = FONT_MENU_1;
2243
2244   if (active)
2245     font_nr = FONT_ACTIVE(font_nr);
2246
2247   DrawText(mSX + xpos * 32, mSY + ypos * 32, ti->text, font_nr);
2248
2249   if (ti->type & ~TYPE_SKIP_ENTRY)
2250     drawCursor(screen_pos, active);
2251 }
2252
2253 static void DrawCursorAndText_Menu(int screen_pos, int menu_info_pos_raw,
2254                                    boolean active)
2255 {
2256   DrawCursorAndText_Menu_Ext(menu_info, screen_pos, menu_info_pos_raw, active);
2257 }
2258
2259 static void DrawCursorAndText_Setup(int screen_pos, int menu_info_pos_raw,
2260                                     boolean active)
2261 {
2262   DrawCursorAndText_Menu_Ext(setup_info, screen_pos, menu_info_pos_raw, active);
2263 }
2264
2265 static char *window_size_text;
2266 static char *scaling_type_text;
2267
2268 static void drawSetupValue(int, int);
2269
2270 static void drawMenuInfoList(int first_entry, int num_page_entries,
2271                              int max_page_entries)
2272 {
2273   int i;
2274
2275   if (first_entry + num_page_entries > max_page_entries)
2276     first_entry = 0;
2277
2278   clearMenuListArea();
2279
2280   for (i = 0; i < num_page_entries; i++)
2281   {
2282     int menu_info_pos = first_entry + i;
2283     struct TokenInfo *si = &menu_info[menu_info_pos];
2284     void *value_ptr = si->value;
2285
2286     /* set some entries to "unchangeable" according to other variables */
2287     if ((value_ptr == &setup.sound_simple && !audio.sound_available) ||
2288         (value_ptr == &setup.sound_loops  && !audio.loops_available) ||
2289         (value_ptr == &setup.sound_music  && !audio.music_available) ||
2290         (value_ptr == &setup.fullscreen   && !video.fullscreen_available) ||
2291         (value_ptr == &window_size_text   && !video.window_scaling_available) ||
2292         (value_ptr == &scaling_type_text  && !video.window_scaling_available))
2293       si->type |= TYPE_GHOSTED;
2294
2295     if (si->type & (TYPE_ENTER_MENU|TYPE_ENTER_LIST))
2296       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
2297     else if (si->type & (TYPE_LEAVE_MENU|TYPE_LEAVE_LIST))
2298       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
2299     else if (si->type & ~TYPE_SKIP_ENTRY)
2300       initCursor(i, IMG_MENU_BUTTON);
2301
2302     DrawCursorAndText_Menu(i, menu_info_pos, FALSE);
2303
2304     if (si->type & TYPE_VALUE &&
2305         menu_info == setup_info)
2306       drawSetupValue(i, menu_info_pos);
2307   }
2308 }
2309
2310 static void DrawInfoScreen_Main()
2311 {
2312   int fade_mask = REDRAW_FIELD;
2313   int i;
2314
2315   if (redraw_mask & REDRAW_ALL)
2316     fade_mask = REDRAW_ALL;
2317
2318   if (CheckIfGlobalBorderOrPlayfieldViewportHasChanged())
2319     fade_mask = REDRAW_ALL;
2320
2321   UnmapAllGadgets();
2322   FadeMenuSoundsAndMusic();
2323
2324   FreeScreenGadgets();
2325   CreateScreenGadgets();
2326
2327   /* (needed after displaying title screens which disable auto repeat) */
2328   KeyboardAutoRepeatOn();
2329
2330   FadeSetLeaveScreen();
2331
2332   FadeOut(fade_mask);
2333
2334   /* needed if different viewport properties defined for info screen */
2335   ChangeViewportPropertiesIfNeeded();
2336
2337   SetMainBackgroundImage(IMG_BACKGROUND_INFO);
2338
2339   ClearField();
2340
2341   OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
2342
2343   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Info Screen");
2344
2345   info_info = info_info_main;
2346
2347   // determine maximal number of info entries that can be displayed on screen
2348   num_info_info = 0;
2349   for (i = 0; info_info[i].type != 0 && i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
2350     num_info_info++;
2351
2352   // determine maximal number of info entries available for menu of info screen
2353   max_info_info = 0;
2354   for (i = 0; info_info[i].type != 0; i++)
2355     max_info_info++;
2356
2357   HandleInfoScreen_Main(0, 0, 0, 0, MB_MENU_INITIALIZE);
2358
2359   MapScreenGadgets(max_info_info);
2360
2361   PlayMenuSoundsAndMusic();
2362
2363   DrawMaskedBorder(fade_mask);
2364
2365   FadeIn(fade_mask);
2366 }
2367
2368 static void changeSetupValue(int, int, int);
2369
2370 void HandleMenuScreen(int mx, int my, int dx, int dy, int button,
2371                       int mode, int num_page_entries, int max_page_entries)
2372 {
2373   static int num_page_entries_all_last[NUM_SPECIAL_GFX_ARGS][MAX_MENU_MODES];
2374   static int choice_stores[NUM_SPECIAL_GFX_ARGS][MAX_MENU_MODES];
2375   static int first_entry_stores[NUM_SPECIAL_GFX_ARGS][MAX_MENU_MODES];
2376   int *num_page_entries_last = num_page_entries_all_last[game_status];
2377   int *choice_store = choice_stores[game_status];
2378   int *first_entry_store = first_entry_stores[game_status];
2379   int choice = choice_store[mode];              /* starts with 0 */
2380   int first_entry = first_entry_store[mode];    /* starts with 0 */
2381   int x = 0;
2382   int y = choice - first_entry;
2383   int y_old = y;
2384   boolean position_set_by_scrollbar = (dx == 999);
2385   int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
2386   int i;
2387
2388   if (button == MB_MENU_INITIALIZE)
2389   {
2390     // check if number of menu page entries has changed (may happen by change
2391     // of custom artwork definition value for 'list_size' for this menu screen)
2392     // (in this case, the last menu position most probably has to be corrected)
2393     if (num_page_entries != num_page_entries_last[mode])
2394     {
2395       choice_store[mode] = first_entry_store[mode] = 0;
2396
2397       choice = first_entry = 0;
2398       y = y_old = 0;
2399
2400       num_page_entries_last[mode] = num_page_entries;
2401     }
2402
2403     /* advance to first valid menu entry */
2404     while (choice < num_page_entries &&
2405            menu_info[choice].type & TYPE_SKIP_ENTRY)
2406       choice++;
2407
2408     if (position_set_by_scrollbar)
2409       first_entry = first_entry_store[mode] = dy;
2410     else
2411       AdjustScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL, max_page_entries,
2412                       NUM_MENU_ENTRIES_ON_SCREEN, first_entry);
2413
2414     drawMenuInfoList(first_entry, num_page_entries, max_page_entries);
2415
2416     if (choice < first_entry)
2417     {
2418       choice = first_entry;
2419
2420       if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2421         choice++;
2422     }
2423     else if (choice > first_entry + num_page_entries - 1)
2424     {
2425       choice = first_entry + num_page_entries - 1;
2426
2427       if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2428         choice--;
2429     }
2430
2431     choice_store[mode] = choice;
2432
2433     DrawCursorAndText_Menu(choice - first_entry, choice, TRUE);
2434
2435     return;
2436   }
2437   else if (button == MB_MENU_LEAVE)
2438   {
2439     PlaySound(SND_MENU_ITEM_SELECTING);
2440
2441     for (i = 0; i < max_page_entries; i++)
2442     {
2443       if (menu_info[i].type & TYPE_LEAVE_MENU)
2444       {
2445         void (*menu_callback_function)(void) = menu_info[i].value;
2446
2447         FadeSetLeaveMenu();
2448
2449         menu_callback_function();
2450
2451         break;  /* absolutely needed because function changes 'menu_info'! */
2452       }
2453     }
2454
2455     return;
2456   }
2457
2458   if (mx || my)         /* mouse input */
2459   {
2460     x = (mx - mSX) / 32;
2461     y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
2462   }
2463   else if (dx || dy)    /* keyboard or scrollbar/scrollbutton input */
2464   {
2465     /* move cursor instead of scrolling when already at start/end of list */
2466     if (dy == -1 * SCROLL_LINE && first_entry == 0)
2467       dy = -1;
2468     else if (dy == +1 * SCROLL_LINE &&
2469              first_entry + num_page_entries == max_page_entries)
2470       dy = 1;
2471
2472     /* handle scrolling screen one line or page */
2473     if (y + dy < 0 ||
2474         y + dy > num_page_entries - 1)
2475     {
2476       boolean redraw = FALSE;
2477
2478       if (ABS(dy) == SCROLL_PAGE)
2479         step = num_page_entries - 1;
2480
2481       if (dy < 0 && first_entry > 0)
2482       {
2483         /* scroll page/line up */
2484
2485         first_entry -= step;
2486         if (first_entry < 0)
2487           first_entry = 0;
2488
2489         redraw = TRUE;
2490       }
2491       else if (dy > 0 && first_entry + num_page_entries < max_page_entries)
2492       {
2493         /* scroll page/line down */
2494
2495         first_entry += step;
2496         if (first_entry + num_page_entries > max_page_entries)
2497           first_entry = MAX(0, max_page_entries - num_page_entries);
2498
2499         redraw = TRUE;
2500       }
2501
2502       if (redraw)
2503       {
2504         choice += first_entry - first_entry_store[mode];
2505
2506         if (choice < first_entry)
2507         {
2508           choice = first_entry;
2509
2510           if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2511             choice++;
2512         }
2513         else if (choice > first_entry + num_page_entries - 1)
2514         {
2515           choice = first_entry + num_page_entries - 1;
2516
2517           if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2518             choice--;
2519         }
2520         else if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2521         {
2522           choice += SIGN(dy);
2523
2524           if (choice < first_entry ||
2525               choice > first_entry + num_page_entries - 1)
2526           first_entry += SIGN(dy);
2527         }
2528
2529         first_entry_store[mode] = first_entry;
2530         choice_store[mode] = choice;
2531
2532         drawMenuInfoList(first_entry, num_page_entries, max_page_entries);
2533
2534         DrawCursorAndText_Menu(choice - first_entry, choice, TRUE);
2535
2536         AdjustScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL, max_page_entries,
2537                         NUM_MENU_ENTRIES_ON_SCREEN, first_entry);
2538       }
2539
2540       return;
2541     }
2542
2543     if (dx)
2544     {
2545       int menu_navigation_type = (dx < 0 ? TYPE_LEAVE : TYPE_ENTER);
2546
2547       if (menu_info[choice].type & menu_navigation_type ||
2548           menu_info[choice].type & TYPE_BOOLEAN_STYLE ||
2549           menu_info[choice].type & TYPE_YES_NO_AUTO ||
2550           menu_info[choice].type & TYPE_PLAYER)
2551         button = MB_MENU_CHOICE;
2552     }
2553     else if (dy)
2554       y += dy;
2555
2556     /* jump to next non-empty menu entry (up or down) */
2557     while (first_entry + y > 0 &&
2558            first_entry + y < max_page_entries - 1 &&
2559            menu_info[first_entry + y].type & TYPE_SKIP_ENTRY)
2560       y += dy;
2561
2562     if (!IN_VIS_MENU(x, y))
2563     {
2564       choice += y - y_old;
2565
2566       if (choice < first_entry)
2567         first_entry = choice;
2568       else if (choice > first_entry + num_page_entries - 1)
2569         first_entry = choice - num_page_entries + 1;
2570
2571       if (first_entry >= 0 &&
2572           first_entry + num_page_entries <= max_page_entries)
2573       {
2574         first_entry_store[mode] = first_entry;
2575
2576         if (choice < first_entry)
2577           choice = first_entry;
2578         else if (choice > first_entry + num_page_entries - 1)
2579           choice = first_entry + num_page_entries - 1;
2580
2581         choice_store[mode] = choice;
2582
2583         drawMenuInfoList(first_entry, num_page_entries, max_page_entries);
2584
2585         DrawCursorAndText_Menu(choice - first_entry, choice, TRUE);
2586
2587         AdjustScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL, max_page_entries,
2588                         NUM_MENU_ENTRIES_ON_SCREEN, first_entry);
2589       }
2590
2591       return;
2592     }
2593   }
2594
2595   if (!anyScrollbarGadgetActive() &&
2596       IN_VIS_MENU(x, y) &&
2597       mx < screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->x &&
2598       y >= 0 && y < num_page_entries)
2599   {
2600     if (button)
2601     {
2602       if (first_entry + y != choice &&
2603           menu_info[first_entry + y].type & ~TYPE_SKIP_ENTRY)
2604       {
2605         PlaySound(SND_MENU_ITEM_ACTIVATING);
2606
2607         DrawCursorAndText_Menu(choice - first_entry, choice, FALSE);
2608         DrawCursorAndText_Menu(y, first_entry + y, TRUE);
2609
2610         choice = choice_store[mode] = first_entry + y;
2611       }
2612       else if (dx < 0)
2613       {
2614         PlaySound(SND_MENU_ITEM_SELECTING);
2615
2616         for (i = 0; menu_info[i].type != 0; i++)
2617         {
2618           if (menu_info[i].type & TYPE_LEAVE_MENU)
2619           {
2620             void (*menu_callback_function)(void) = menu_info[i].value;
2621
2622             FadeSetLeaveMenu();
2623
2624             menu_callback_function();
2625
2626             /* absolutely needed because function changes 'menu_info'! */
2627             break;
2628           }
2629         }
2630
2631         return;
2632       }
2633     }
2634     else if (!(menu_info[first_entry + y].type & TYPE_GHOSTED))
2635     {
2636       PlaySound(SND_MENU_ITEM_SELECTING);
2637
2638       /* when selecting key headline, execute function for key value change */
2639       if (menu_info[first_entry + y].type & TYPE_KEYTEXT &&
2640           menu_info[first_entry + y + 1].type & TYPE_KEY)
2641         y++;
2642
2643       /* when selecting string value, execute function for list selection */
2644       if (menu_info[first_entry + y].type & TYPE_STRING && y > 0 &&
2645           menu_info[first_entry + y - 1].type & TYPE_ENTER_LIST)
2646         y--;
2647
2648       if (menu_info[first_entry + y].type & TYPE_ENTER_OR_LEAVE)
2649       {
2650         void (*menu_callback_function)(void) =
2651           menu_info[first_entry + y].value;
2652
2653         FadeSetFromType(menu_info[first_entry + y].type);
2654
2655         menu_callback_function();
2656       }
2657       else if (menu_info[first_entry + y].type & TYPE_VALUE &&
2658                menu_info == setup_info)
2659       {
2660         changeSetupValue(y, first_entry + y, dx);
2661       }
2662     }
2663   }
2664 }
2665
2666 void HandleInfoScreen_Main(int mx, int my, int dx, int dy, int button)
2667 {
2668   menu_info = info_info;
2669
2670   HandleMenuScreen(mx, my, dx, dy, button,
2671                    info_mode, num_info_info, max_info_info);
2672 }
2673
2674 static int getMenuFontSpacing(int spacing_height, int font_nr)
2675 {
2676   int font_spacing = getFontHeight(font_nr) + EXTRA_SPACING(game_status);
2677
2678   return (spacing_height < 0 ? ABS(spacing_height) * font_spacing :
2679           spacing_height);
2680 }
2681
2682 static int getMenuTextSpacing(int spacing_height, int font_nr)
2683 {
2684   return (getMenuFontSpacing(spacing_height, font_nr) +
2685           EXTRA_SPACING(game_status));
2686 }
2687
2688 static int getMenuTextStep(int spacing_height, int font_nr)
2689 {
2690   return getFontHeight(font_nr) + getMenuTextSpacing(spacing_height, font_nr);
2691 }
2692
2693 void DrawInfoScreen_NotAvailable(char *text_title, char *text_error)
2694 {
2695   int font_title = MENU_INFO_FONT_TITLE;
2696   int font_error = FONT_TEXT_2;
2697   int font_foot  = MENU_INFO_FONT_FOOT;
2698   int spacing_title = menu.headline1_spacing_info[info_mode];
2699   int ystep_title = getMenuTextStep(spacing_title, font_title);
2700   int ystart1 = mSY - SY + MENU_SCREEN_INFO_YSTART1;
2701   int ystart2 = ystart1 + ystep_title;
2702   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
2703
2704   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO);
2705
2706   FadeOut(REDRAW_FIELD);
2707
2708   ClearField();
2709   DrawHeadline();
2710
2711   DrawTextSCentered(ystart1, font_title, text_title);
2712   DrawTextSCentered(ystart2, font_error, text_error);
2713
2714   DrawTextSCentered(ybottom, font_foot,
2715                     "Press any key or button for info menu");
2716
2717   FadeIn(REDRAW_FIELD);
2718 }
2719
2720 void DrawInfoScreen_HelpAnim(int start, int max_anims, boolean init)
2721 {
2722   static int infoscreen_step[MAX_INFO_ELEMENTS_ON_SCREEN];
2723   static int infoscreen_frame[MAX_INFO_ELEMENTS_ON_SCREEN];
2724   int font_title = MENU_INFO_FONT_TITLE;
2725   int font_foot  = MENU_INFO_FONT_FOOT;
2726   int xstart  = mSX + MENU_SCREEN_INFO_SPACE_LEFT;
2727   int ystart1 = mSY - SY + MENU_SCREEN_INFO_YSTART1;
2728   int ystart2 = mSY + MENU_SCREEN_INFO_YSTART2;
2729   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
2730   int ystep = MENU_SCREEN_INFO_YSTEP;
2731   int element, action, direction;
2732   int graphic;
2733   int delay;
2734   int sync_frame;
2735   int i, j;
2736
2737   if (init)
2738   {
2739     for (i = 0; i < NUM_INFO_ELEMENTS_ON_SCREEN; i++)
2740       infoscreen_step[i] = infoscreen_frame[i] = 0;
2741
2742     ClearField();
2743     DrawHeadline();
2744
2745     DrawTextSCentered(ystart1, font_title, "The Game Elements:");
2746
2747     DrawTextSCentered(ybottom, font_foot,
2748                       "Press any key or button for next page");
2749
2750     FrameCounter = 0;
2751   }
2752
2753   i = j = 0;
2754   while (helpanim_info[j].element != HELPANIM_LIST_END)
2755   {
2756     if (i >= start + NUM_INFO_ELEMENTS_ON_SCREEN ||
2757         i >= max_anims)
2758       break;
2759     else if (i < start)
2760     {
2761       while (helpanim_info[j].element != HELPANIM_LIST_NEXT)
2762         j++;
2763
2764       j++;
2765       i++;
2766
2767       continue;
2768     }
2769
2770     j += infoscreen_step[i - start];
2771
2772     element = helpanim_info[j].element;
2773     action = helpanim_info[j].action;
2774     direction = helpanim_info[j].direction;
2775
2776     if (element < 0)
2777       element = EL_UNKNOWN;
2778
2779     if (action != -1 && direction != -1)
2780       graphic = el_act_dir2img(element, action, direction);
2781     else if (action != -1)
2782       graphic = el_act2img(element, action);
2783     else if (direction != -1)
2784       graphic = el_dir2img(element, direction);
2785     else
2786       graphic = el2img(element);
2787
2788     delay = helpanim_info[j++].delay;
2789
2790     if (delay == -1)
2791       delay = 1000000;
2792
2793     if (infoscreen_frame[i - start] == 0)
2794     {
2795       sync_frame = 0;
2796       infoscreen_frame[i - start] = delay - 1;
2797     }
2798     else
2799     {
2800       sync_frame = delay - infoscreen_frame[i - start];
2801       infoscreen_frame[i - start]--;
2802     }
2803
2804     if (helpanim_info[j].element == HELPANIM_LIST_NEXT)
2805     {
2806       if (!infoscreen_frame[i - start])
2807         infoscreen_step[i - start] = 0;
2808     }
2809     else
2810     {
2811       if (!infoscreen_frame[i - start])
2812         infoscreen_step[i - start]++;
2813       while (helpanim_info[j].element != HELPANIM_LIST_NEXT)
2814         j++;
2815     }
2816
2817     j++;
2818
2819     ClearRectangleOnBackground(drawto, xstart, ystart2 + (i - start) * ystep,
2820                                TILEX, TILEY);
2821     DrawFixedGraphicAnimationExt(drawto, xstart, ystart2 + (i - start) * ystep,
2822                                  graphic, sync_frame, USE_MASKING);
2823
2824     if (init)
2825       DrawInfoScreen_HelpText(element, action, direction, i - start);
2826
2827     i++;
2828   }
2829
2830   redraw_mask |= REDRAW_FIELD;
2831
2832   FrameCounter++;
2833 }
2834
2835 static char *getHelpText(int element, int action, int direction)
2836 {
2837   char token[MAX_LINE_LEN];
2838
2839   strcpy(token, element_info[element].token_name);
2840
2841   if (action != -1)
2842     strcat(token, element_action_info[action].suffix);
2843
2844   if (direction != -1)
2845     strcat(token, element_direction_info[MV_DIR_TO_BIT(direction)].suffix);
2846
2847   return getHashEntry(helptext_info, token);
2848 }
2849
2850 void DrawInfoScreen_HelpText(int element, int action, int direction, int ypos)
2851 {
2852   int font_nr = FONT_INFO_ELEMENTS;
2853   int font_width = getFontWidth(font_nr);
2854   int font_height = getFontHeight(font_nr);
2855   int yoffset = (TILEX - 2 * font_height) / 2;
2856   int xstart = mSX + MENU_SCREEN_INFO_SPACE_LEFT + TILEX + MINI_TILEX;
2857   int ystart = mSY + MENU_SCREEN_INFO_YSTART2 + yoffset;
2858   int ystep = TILEY + 4;
2859   int pad_left = xstart - SX;
2860   int pad_right = MENU_SCREEN_INFO_SPACE_RIGHT;
2861   int max_chars_per_line = (SXSIZE - pad_left - pad_right) / font_width;
2862   int max_lines_per_text = 2;    
2863   char *text = NULL;
2864
2865   if (action != -1 && direction != -1)          /* element.action.direction */
2866     text = getHelpText(element, action, direction);
2867
2868   if (text == NULL && action != -1)             /* element.action */
2869     text = getHelpText(element, action, -1);
2870
2871   if (text == NULL && direction != -1)          /* element.direction */
2872     text = getHelpText(element, -1, direction);
2873
2874   if (text == NULL)                             /* base element */
2875     text = getHelpText(element, -1, -1);
2876
2877   if (text == NULL)                             /* not found */
2878     text = "No description available";
2879
2880   if (strlen(text) <= max_chars_per_line)       /* only one line of text */
2881     ystart += getFontHeight(font_nr) / 2;
2882
2883   DrawTextBuffer(xstart, ystart + ypos * ystep, text, font_nr,
2884                  max_chars_per_line, -1, max_lines_per_text, 0, -1,
2885                  TRUE, FALSE, FALSE);
2886 }
2887
2888 void DrawInfoScreen_TitleScreen()
2889 {
2890   SetGameStatus(GAME_MODE_TITLE);
2891
2892   DrawTitleScreen();
2893 }
2894
2895 void HandleInfoScreen_TitleScreen(int button)
2896 {
2897   HandleTitleScreen(0, 0, 0, 0, button);
2898 }
2899
2900 void DrawInfoScreen_Elements()
2901 {
2902   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_ELEMENTS);
2903
2904   FadeOut(REDRAW_FIELD);
2905
2906   LoadHelpAnimInfo();
2907   LoadHelpTextInfo();
2908
2909   HandleInfoScreen_Elements(MB_MENU_INITIALIZE);
2910
2911   FadeIn(REDRAW_FIELD);
2912 }
2913
2914 void HandleInfoScreen_Elements(int button)
2915 {
2916   static unsigned int info_delay = 0;
2917   static int num_anims;
2918   static int num_pages;
2919   static int page;
2920   int anims_per_page = NUM_INFO_ELEMENTS_ON_SCREEN;
2921   int i;
2922
2923   if (button == MB_MENU_INITIALIZE)
2924   {
2925     boolean new_element = TRUE;
2926
2927     num_anims = 0;
2928
2929     for (i = 0; helpanim_info[i].element != HELPANIM_LIST_END; i++)
2930     {
2931       if (helpanim_info[i].element == HELPANIM_LIST_NEXT)
2932         new_element = TRUE;
2933       else if (new_element)
2934       {
2935         num_anims++;
2936         new_element = FALSE;
2937       }
2938     }
2939
2940     num_pages = (num_anims + anims_per_page - 1) / anims_per_page;
2941     page = 0;
2942   }
2943
2944   if (button == MB_MENU_LEAVE)
2945   {
2946     PlaySound(SND_MENU_ITEM_SELECTING);
2947
2948     info_mode = INFO_MODE_MAIN;
2949     DrawInfoScreen();
2950
2951     return;
2952   }
2953   else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE)
2954   {
2955     if (button != MB_MENU_INITIALIZE)
2956     {
2957       PlaySound(SND_MENU_ITEM_SELECTING);
2958
2959       page++;
2960     }
2961
2962     if (page >= num_pages)
2963     {
2964       FadeMenuSoundsAndMusic();
2965
2966       info_mode = INFO_MODE_MAIN;
2967       DrawInfoScreen();
2968
2969       return;
2970     }
2971
2972     if (page > 0)
2973       FadeSetNextScreen();
2974
2975     if (button != MB_MENU_INITIALIZE)
2976       FadeOut(REDRAW_FIELD);
2977
2978     DrawInfoScreen_HelpAnim(page * anims_per_page, num_anims, TRUE);
2979
2980     if (button != MB_MENU_INITIALIZE)
2981       FadeIn(REDRAW_FIELD);
2982   }
2983   else
2984   {
2985     if (DelayReached(&info_delay, GameFrameDelay))
2986       if (page < num_pages)
2987         DrawInfoScreen_HelpAnim(page * anims_per_page, num_anims, FALSE);
2988
2989     PlayMenuSoundIfLoop();
2990   }
2991 }
2992
2993 void DrawInfoScreen_Music()
2994 {
2995   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_MUSIC);
2996
2997   FadeOut(REDRAW_FIELD);
2998
2999   ClearField();
3000   DrawHeadline();
3001
3002   LoadMusicInfo();
3003
3004   HandleInfoScreen_Music(MB_MENU_INITIALIZE);
3005
3006   FadeIn(REDRAW_FIELD);
3007 }
3008
3009 void HandleInfoScreen_Music(int button)
3010 {
3011   static struct MusicFileInfo *list = NULL;
3012   int font_title = MENU_INFO_FONT_TITLE;
3013   int font_head  = MENU_INFO_FONT_HEAD;
3014   int font_text  = MENU_INFO_FONT_TEXT;
3015   int font_foot  = MENU_INFO_FONT_FOOT;
3016   int spacing_title = menu.headline1_spacing_info[info_mode];
3017   int spacing_head  = menu.headline2_spacing_info[info_mode];
3018   int ystep_title = getMenuTextStep(spacing_title, font_title);
3019   int ystep_head  = getMenuTextStep(spacing_head,  font_head);
3020   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3021   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3022
3023   if (button == MB_MENU_INITIALIZE)
3024   {
3025     list = music_file_info;
3026
3027     if (list == NULL)
3028     {
3029       FadeMenuSoundsAndMusic();
3030
3031       ClearField();
3032       DrawHeadline();
3033
3034       DrawTextSCentered(ystart, font_title,
3035                         "No music info for this level set.");
3036
3037       DrawTextSCentered(ybottom, font_foot,
3038                         "Press any key or button for info menu");
3039
3040       return;
3041     }
3042   }
3043
3044   if (button == MB_MENU_LEAVE)
3045   {
3046     PlaySound(SND_MENU_ITEM_SELECTING);
3047
3048     FadeMenuSoundsAndMusic();
3049
3050     info_mode = INFO_MODE_MAIN;
3051     DrawInfoScreen();
3052
3053     return;
3054   }
3055   else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE)
3056   {
3057     if (button != MB_MENU_INITIALIZE)
3058     {
3059       PlaySound(SND_MENU_ITEM_SELECTING);
3060
3061       if (list != NULL)
3062         list = list->next;
3063     }
3064
3065     if (list == NULL)
3066     {
3067       FadeMenuSoundsAndMusic();
3068
3069       info_mode = INFO_MODE_MAIN;
3070       DrawInfoScreen();
3071
3072       return;
3073     }
3074
3075     FadeMenuSoundsAndMusic();
3076
3077     if (list != music_file_info)
3078       FadeSetNextScreen();
3079
3080     if (button != MB_MENU_INITIALIZE)
3081       FadeOut(REDRAW_FIELD);
3082
3083     ClearField();
3084     DrawHeadline();
3085
3086     if (list->is_sound)
3087     {
3088       int sound = list->music;
3089
3090       if (sound_info[sound].loop)
3091         PlaySoundLoop(sound);
3092       else
3093         PlaySound(sound);
3094
3095       DrawTextSCentered(ystart, font_title, "The Game Background Sounds:");
3096     }
3097     else
3098     {
3099       PlayMusic(list->music);
3100
3101       DrawTextSCentered(ystart, font_title, "The Game Background Music:");
3102     }
3103
3104     ystart += ystep_title;
3105
3106     if (!strEqual(list->title, UNKNOWN_NAME))
3107     {
3108       if (!strEqual(list->title_header, UNKNOWN_NAME))
3109       {
3110         DrawTextSCentered(ystart, font_head, list->title_header);
3111         ystart += ystep_head;
3112       }
3113
3114       DrawTextFCentered(ystart, font_text, "\"%s\"", list->title);
3115       ystart += ystep_head;
3116     }
3117
3118     if (!strEqual(list->artist, UNKNOWN_NAME))
3119     {
3120       if (!strEqual(list->artist_header, UNKNOWN_NAME))
3121         DrawTextSCentered(ystart, font_head, list->artist_header);
3122       else
3123         DrawTextSCentered(ystart, font_head, "by");
3124
3125       ystart += ystep_head;
3126
3127       DrawTextFCentered(ystart, font_text, "%s", list->artist);
3128       ystart += ystep_head;
3129     }
3130
3131     if (!strEqual(list->album, UNKNOWN_NAME))
3132     {
3133       if (!strEqual(list->album_header, UNKNOWN_NAME))
3134         DrawTextSCentered(ystart, font_head, list->album_header);
3135       else
3136         DrawTextSCentered(ystart, font_head, "from the album");
3137
3138       ystart += ystep_head;
3139
3140       DrawTextFCentered(ystart, font_text, "\"%s\"", list->album);
3141       ystart += ystep_head;
3142     }
3143
3144     if (!strEqual(list->year, UNKNOWN_NAME))
3145     {
3146       if (!strEqual(list->year_header, UNKNOWN_NAME))
3147         DrawTextSCentered(ystart, font_head, list->year_header);
3148       else
3149         DrawTextSCentered(ystart, font_head, "from the year");
3150
3151       ystart += ystep_head;
3152
3153       DrawTextFCentered(ystart, font_text, "%s", list->year);
3154       ystart += ystep_head;
3155     }
3156
3157     DrawTextSCentered(ybottom, FONT_TEXT_4,
3158                       "Press any key or button for next page");
3159
3160     if (button != MB_MENU_INITIALIZE)
3161       FadeIn(REDRAW_FIELD);
3162   }
3163
3164   if (list != NULL && list->is_sound && sound_info[list->music].loop)
3165     PlaySoundLoop(list->music);
3166 }
3167
3168 static void DrawInfoScreen_CreditsScreen(int screen_nr)
3169 {
3170   int font_title = MENU_INFO_FONT_TITLE;
3171   int font_head  = MENU_INFO_FONT_HEAD;
3172   int font_text  = MENU_INFO_FONT_TEXT;
3173   int font_foot  = MENU_INFO_FONT_FOOT;
3174   int spacing_title = menu.headline1_spacing_info[info_mode];
3175   int spacing_head  = menu.headline2_spacing_info[info_mode];
3176   int spacing_para  = menu.paragraph_spacing_info[info_mode];
3177   int spacing_line  = menu.line_spacing_info[info_mode];
3178   int ystep_title = getMenuTextStep(spacing_title, font_title);
3179   int ystep_head  = getMenuTextStep(spacing_head,  font_head);
3180   int ystep_para  = getMenuTextStep(spacing_para,  font_text);
3181   int ystep_line  = getMenuTextStep(spacing_line,  font_text);
3182   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3183   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3184
3185   ClearField();
3186   DrawHeadline();
3187
3188   DrawTextSCentered(ystart, font_title, "Credits:");
3189   ystart += ystep_title;
3190
3191   if (screen_nr == 0)
3192   {
3193     DrawTextSCentered(ystart, font_head,
3194                       "Special thanks to");
3195     ystart += ystep_head;
3196     DrawTextSCentered(ystart, font_text,
3197                       "Peter Liepa");
3198     ystart += ystep_head;
3199     DrawTextSCentered(ystart, font_head,
3200                       "for creating");
3201     ystart += ystep_head;
3202     DrawTextSCentered(ystart, font_text,
3203                       "\"Boulder Dash\"");
3204     ystart += ystep_head;
3205     DrawTextSCentered(ystart, font_head,
3206                       "in the year");
3207     ystart += ystep_head;
3208     DrawTextSCentered(ystart, font_text,
3209                       "1984");
3210     ystart += ystep_head;
3211     DrawTextSCentered(ystart, font_head,
3212                       "published by");
3213     ystart += ystep_head;
3214     DrawTextSCentered(ystart, font_text,
3215                       "First Star Software");
3216   }
3217   else if (screen_nr == 1)
3218   {
3219     DrawTextSCentered(ystart, font_head,
3220                       "Special thanks to");
3221     ystart += ystep_head;
3222     DrawTextSCentered(ystart, font_text,
3223                       "Klaus Heinz & Volker Wertich");
3224     ystart += ystep_head;
3225     DrawTextSCentered(ystart, font_head,
3226                       "for creating");
3227     ystart += ystep_head;
3228     DrawTextSCentered(ystart, font_text,
3229                       "\"Emerald Mine\"");
3230     ystart += ystep_head;
3231     DrawTextSCentered(ystart, font_head,
3232                       "in the year");
3233     ystart += ystep_head;
3234     DrawTextSCentered(ystart, font_text,
3235                       "1987");
3236     ystart += ystep_head;
3237     DrawTextSCentered(ystart, font_head,
3238                       "published by");
3239     ystart += ystep_head;
3240     DrawTextSCentered(ystart, font_text,
3241                       "Kingsoft");
3242   }
3243   else if (screen_nr == 2)
3244   {
3245     DrawTextSCentered(ystart, font_head,
3246                       "Special thanks to");
3247     ystart += ystep_head;
3248     DrawTextSCentered(ystart, font_text,
3249                       "Michael Stopp & Philip Jespersen");
3250     ystart += ystep_head;
3251     DrawTextSCentered(ystart, font_head,
3252                       "for creating");
3253     ystart += ystep_head;
3254     DrawTextSCentered(ystart, font_text,
3255                       "\"Supaplex\"");
3256     ystart += ystep_head;
3257     DrawTextSCentered(ystart, font_head,
3258                       "in the year");
3259     ystart += ystep_head;
3260     DrawTextSCentered(ystart, font_text,
3261                       "1991");
3262     ystart += ystep_head;
3263     DrawTextSCentered(ystart, font_head,
3264                       "published by");
3265     ystart += ystep_head;
3266     DrawTextSCentered(ystart, font_text,
3267                       "Digital Integration");
3268   }
3269   else if (screen_nr == 3)
3270   {
3271     DrawTextSCentered(ystart, font_head,
3272                       "Special thanks to");
3273     ystart += ystep_head;
3274     DrawTextSCentered(ystart, font_text,
3275                       "Hiroyuki Imabayashi");
3276     ystart += ystep_head;
3277     DrawTextSCentered(ystart, font_head,
3278                       "for creating");
3279     ystart += ystep_head;
3280     DrawTextSCentered(ystart, font_text,
3281                       "\"Sokoban\"");
3282     ystart += ystep_head;
3283     DrawTextSCentered(ystart, font_head,
3284                       "in the year");
3285     ystart += ystep_head;
3286     DrawTextSCentered(ystart, font_text,
3287                       "1982");
3288     ystart += ystep_head;
3289     DrawTextSCentered(ystart, font_head,
3290                       "published by");
3291     ystart += ystep_head;
3292     DrawTextSCentered(ystart, font_text,
3293                       "Thinking Rabbit");
3294   }
3295   else if (screen_nr == 4)
3296   {
3297     DrawTextSCentered(ystart, font_head,
3298                       "Special thanks to");
3299     ystart += ystep_head;
3300     DrawTextSCentered(ystart, font_text,
3301                       "Alan Bond");
3302     ystart += ystep_head;
3303     DrawTextSCentered(ystart, font_head,
3304                       "and");
3305     ystart += ystep_head;
3306     DrawTextSCentered(ystart, font_text,
3307                       "J\xfcrgen Bonhagen");
3308     ystart += ystep_head;
3309     DrawTextSCentered(ystart, font_head,
3310                       "for the continuous creation");
3311     ystart += ystep_line;
3312     DrawTextSCentered(ystart, font_head,
3313                       "of outstanding level sets");
3314   }
3315   else if (screen_nr == 5)
3316   {
3317     DrawTextSCentered(ystart, font_head,
3318                       "Thanks to");
3319     ystart += ystep_head;
3320     DrawTextSCentered(ystart, font_text,
3321                       "Peter Elzner");
3322     ystart += ystep_head;
3323     DrawTextSCentered(ystart, font_head,
3324                       "for ideas and inspiration by");
3325     ystart += ystep_head;
3326     DrawTextSCentered(ystart, font_text,
3327                       "Diamond Caves");
3328     ystart += ystep_para;
3329
3330     DrawTextSCentered(ystart, font_head,
3331                       "Thanks to");
3332     ystart += ystep_head;
3333     DrawTextSCentered(ystart, font_text,
3334                       "Steffest");
3335     ystart += ystep_head;
3336     DrawTextSCentered(ystart, font_head,
3337                       "for ideas and inspiration by");
3338     ystart += ystep_head;
3339     DrawTextSCentered(ystart, font_text,
3340                       "DX-Boulderdash");
3341   }
3342   else if (screen_nr == 6)
3343   {
3344     DrawTextSCentered(ystart, font_head,
3345                       "Thanks to");
3346     ystart += ystep_head;
3347     DrawTextSCentered(ystart, font_text,
3348                       "David Tritscher");
3349     ystart += ystep_head;
3350     DrawTextSCentered(ystart, font_head,
3351                       "for the code base used for the");
3352     ystart += ystep_line;
3353     DrawTextSCentered(ystart, font_head,
3354                       "native Emerald Mine engine");
3355   }
3356   else if (screen_nr == 7)
3357   {
3358     DrawTextSCentered(ystart, font_head,
3359                       "Thanks to");
3360     ystart += ystep_head;
3361     DrawTextSCentered(ystart, font_text,
3362                       "Guido Schulz");
3363     ystart += ystep_head;
3364     DrawTextSCentered(ystart, font_head,
3365                       "for the initial DOS port");
3366     ystart += ystep_para;
3367
3368     DrawTextSCentered(ystart, font_head,
3369                       "Thanks to");
3370     ystart += ystep_head;
3371     DrawTextSCentered(ystart, font_text,
3372                       "Karl H\xf6rnell");
3373     ystart += ystep_head;
3374     DrawTextSCentered(ystart, font_head,
3375                       "for some additional toons");
3376   }
3377   else if (screen_nr == 8)
3378   {
3379     DrawTextSCentered(ystart, font_head,
3380                       "And not to forget:");
3381     ystart += ystep_head;
3382     DrawTextSCentered(ystart, font_head,
3383                       "Many thanks to");
3384     ystart += ystep_head;
3385     DrawTextSCentered(ystart, font_text,
3386                       "All those who contributed");
3387     ystart += ystep_line;
3388     DrawTextSCentered(ystart, font_text,
3389                       "levels to this game");
3390     ystart += ystep_line;
3391     DrawTextSCentered(ystart, font_text,
3392                       "since 1995");
3393   }
3394
3395   DrawTextSCentered(ybottom, font_foot,
3396                     "Press any key or button for next page");
3397 }
3398
3399 void DrawInfoScreen_Credits()
3400 {
3401   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_CREDITS);
3402
3403   FadeMenuSoundsAndMusic();
3404
3405   FadeOut(REDRAW_FIELD);
3406
3407   HandleInfoScreen_Credits(MB_MENU_INITIALIZE);
3408
3409   FadeIn(REDRAW_FIELD);
3410 }
3411
3412 void HandleInfoScreen_Credits(int button)
3413 {
3414   static int screen_nr = 0;
3415   int num_screens = 9;
3416
3417   if (button == MB_MENU_INITIALIZE)
3418   {
3419     screen_nr = 0;
3420
3421     // DrawInfoScreen_CreditsScreen(screen_nr);
3422   }
3423
3424   if (button == MB_MENU_LEAVE)
3425   {
3426     PlaySound(SND_MENU_ITEM_SELECTING);
3427
3428     info_mode = INFO_MODE_MAIN;
3429     DrawInfoScreen();
3430
3431     return;
3432   }
3433   else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE)
3434   {
3435     if (button != MB_MENU_INITIALIZE)
3436     {
3437       PlaySound(SND_MENU_ITEM_SELECTING);
3438
3439       screen_nr++;
3440     }
3441
3442     if (screen_nr >= num_screens)
3443     {
3444       FadeMenuSoundsAndMusic();
3445
3446       info_mode = INFO_MODE_MAIN;
3447       DrawInfoScreen();
3448
3449       return;
3450     }
3451
3452     if (screen_nr > 0)
3453       FadeSetNextScreen();
3454
3455     if (button != MB_MENU_INITIALIZE)
3456       FadeOut(REDRAW_FIELD);
3457
3458     DrawInfoScreen_CreditsScreen(screen_nr);
3459
3460     if (button != MB_MENU_INITIALIZE)
3461       FadeIn(REDRAW_FIELD);
3462   }
3463   else
3464   {
3465     PlayMenuSoundIfLoop();
3466   }
3467 }
3468
3469 void DrawInfoScreen_Program()
3470 {
3471   int font_title = MENU_INFO_FONT_TITLE;
3472   int font_head  = MENU_INFO_FONT_HEAD;
3473   int font_text  = MENU_INFO_FONT_TEXT;
3474   int font_foot  = MENU_INFO_FONT_FOOT;
3475   int spacing_title = menu.headline1_spacing_info[info_mode];
3476   int spacing_head  = menu.headline2_spacing_info[info_mode];
3477   int spacing_para  = menu.paragraph_spacing_info[info_mode];
3478   int spacing_line  = menu.line_spacing_info[info_mode];
3479   int ystep_title = getMenuTextStep(spacing_title, font_title);
3480   int ystep_head  = getMenuTextStep(spacing_head,  font_head);
3481   int ystep_para  = getMenuTextStep(spacing_para,  font_text);
3482   int ystep_line  = getMenuTextStep(spacing_line,  font_text);
3483   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3484   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3485
3486   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_PROGRAM);
3487
3488   FadeOut(REDRAW_FIELD);
3489
3490   ClearField();
3491   DrawHeadline();
3492
3493   DrawTextSCentered(ystart, font_title, "Program Information:");
3494   ystart += ystep_title;
3495
3496   DrawTextSCentered(ystart, font_head,
3497                     "This game is Freeware!");
3498   ystart += ystep_head;
3499   DrawTextSCentered(ystart, font_head,
3500                     "If you like it, send e-mail to:");
3501   ystart += ystep_head;
3502   DrawTextSCentered(ystart, font_text,
3503                     setup.internal.program_email);
3504   ystart += ystep_para;
3505
3506   DrawTextSCentered(ystart, font_head,
3507                     "More information and levels:");
3508   ystart += ystep_head;
3509   DrawTextSCentered(ystart, font_text,
3510                     setup.internal.program_website);
3511   ystart += ystep_para;
3512
3513   DrawTextSCentered(ystart, font_head,
3514                     "If you have created new levels,");
3515   ystart += ystep_line;
3516   DrawTextSCentered(ystart, font_head,
3517                     "send them to me to include them!");
3518   ystart += ystep_head;
3519   DrawTextSCentered(ystart, font_head,
3520                     ":-)");
3521
3522   DrawTextSCentered(ybottom, font_foot,
3523                     "Press any key or button for info menu");
3524
3525   FadeIn(REDRAW_FIELD);
3526 }
3527
3528 void HandleInfoScreen_Program(int button)
3529 {
3530   if (button == MB_MENU_LEAVE)
3531   {
3532     PlaySound(SND_MENU_ITEM_SELECTING);
3533
3534     info_mode = INFO_MODE_MAIN;
3535     DrawInfoScreen();
3536
3537     return;
3538   }
3539   else if (button == MB_MENU_CHOICE)
3540   {
3541     PlaySound(SND_MENU_ITEM_SELECTING);
3542
3543     FadeMenuSoundsAndMusic();
3544
3545     info_mode = INFO_MODE_MAIN;
3546     DrawInfoScreen();
3547   }
3548   else
3549   {
3550     PlayMenuSoundIfLoop();
3551   }
3552 }
3553
3554 void DrawInfoScreen_Version()
3555 {
3556   int font_title = MENU_INFO_FONT_TITLE;
3557   int font_head  = MENU_INFO_FONT_HEAD;
3558   int font_text  = MENU_INFO_FONT_TEXT;
3559   int font_foot  = MENU_INFO_FONT_FOOT;
3560   int spacing_title = menu.headline1_spacing_info[info_mode];
3561   int spacing_head  = menu.headline2_spacing_info[info_mode];
3562   int spacing_para  = menu.paragraph_spacing_info[info_mode];
3563   int spacing_line  = menu.line_spacing_info[info_mode];
3564   int xstep = getFontWidth(font_text);
3565   int ystep_title = getMenuTextStep(spacing_title, font_title);
3566   int ystep_head  = getMenuTextStep(spacing_head,  font_head);
3567   int ystep_para  = getMenuTextStep(spacing_para,  font_text);
3568   int ystep_line  = getMenuTextStep(spacing_line,  font_text);
3569   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3570   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3571   int xstart1 = mSX - SX + 2 * xstep;
3572   int xstart2 = mSX - SX + 18 * xstep;
3573   int xstart3 = mSX - SX + 28 * xstep;
3574   SDL_version sdl_version_compiled;
3575   const SDL_version *sdl_version_linked;
3576   int driver_name_len = 10;
3577 #if defined(TARGET_SDL2)
3578   SDL_version sdl_version_linked_ext;
3579   const char *driver_name = NULL;
3580 #else
3581   char driver_name[driver_name_len];
3582 #endif
3583
3584   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_VERSION);
3585
3586   FadeOut(REDRAW_FIELD);
3587
3588   ClearField();
3589   DrawHeadline();
3590
3591   DrawTextSCentered(ystart, font_title, "Version Information:");
3592   ystart += ystep_title;
3593
3594   DrawTextF(xstart1, ystart, font_head, "Name");
3595   DrawTextF(xstart2, ystart, font_text, getProgramTitleString());
3596   ystart += ystep_line;
3597
3598   if (!strEqual(getProgramVersionString(), getProgramRealVersionString()))
3599   {
3600     DrawTextF(xstart1, ystart, font_head, "Version (fake)");
3601     DrawTextF(xstart2, ystart, font_text, getProgramVersionString());
3602     ystart += ystep_line;
3603
3604     DrawTextF(xstart1, ystart, font_head, "Version (real)");
3605     DrawTextF(xstart2, ystart, font_text, getProgramRealVersionString());
3606     ystart += ystep_line;
3607   }
3608   else
3609   {
3610     DrawTextF(xstart1, ystart, font_head, "Version");
3611     DrawTextF(xstart2, ystart, font_text, getProgramVersionString());
3612     ystart += ystep_line;
3613   }
3614
3615   DrawTextF(xstart1, ystart, font_head, "Platform");
3616   DrawTextF(xstart2, ystart, font_text, PLATFORM_STRING);
3617   ystart += ystep_line;
3618
3619   DrawTextF(xstart1, ystart, font_head, "Target");
3620   DrawTextF(xstart2, ystart, font_text, TARGET_STRING);
3621   ystart += ystep_line;
3622
3623   DrawTextF(xstart1, ystart, font_head, "Source date");
3624   DrawTextF(xstart2, ystart, font_text, getSourceDateString());
3625   ystart += ystep_para;
3626
3627   DrawTextF(xstart1, ystart, font_head, "Library");
3628   DrawTextF(xstart2, ystart, font_head, "compiled");
3629   DrawTextF(xstart3, ystart, font_head, "linked");
3630   ystart += ystep_head;
3631
3632   SDL_VERSION(&sdl_version_compiled);
3633 #if defined(TARGET_SDL2)
3634   SDL_GetVersion(&sdl_version_linked_ext);
3635   sdl_version_linked = &sdl_version_linked_ext;
3636 #else
3637   sdl_version_linked = SDL_Linked_Version();
3638 #endif
3639
3640   DrawTextF(xstart1, ystart, font_text, "SDL");
3641   DrawTextF(xstart2, ystart, font_text, "%d.%d.%d",
3642             sdl_version_compiled.major,
3643             sdl_version_compiled.minor,
3644             sdl_version_compiled.patch);
3645   DrawTextF(xstart3, ystart, font_text, "%d.%d.%d",
3646             sdl_version_linked->major,
3647             sdl_version_linked->minor,
3648             sdl_version_linked->patch);
3649   ystart += ystep_line;
3650
3651   SDL_IMAGE_VERSION(&sdl_version_compiled);
3652   sdl_version_linked = IMG_Linked_Version();
3653
3654   DrawTextF(xstart1, ystart, font_text, "SDL_image");
3655   DrawTextF(xstart2, ystart, font_text, "%d.%d.%d",
3656             sdl_version_compiled.major,
3657             sdl_version_compiled.minor,
3658             sdl_version_compiled.patch);
3659   DrawTextF(xstart3, ystart, font_text, "%d.%d.%d",
3660             sdl_version_linked->major,
3661             sdl_version_linked->minor,
3662             sdl_version_linked->patch);
3663   ystart += ystep_line;
3664
3665   SDL_MIXER_VERSION(&sdl_version_compiled);
3666   sdl_version_linked = Mix_Linked_Version();
3667
3668   DrawTextF(xstart1, ystart, font_text, "SDL_mixer");
3669   DrawTextF(xstart2, ystart, font_text, "%d.%d.%d",
3670             sdl_version_compiled.major,
3671             sdl_version_compiled.minor,
3672             sdl_version_compiled.patch);
3673   DrawTextF(xstart3, ystart, font_text, "%d.%d.%d",
3674             sdl_version_linked->major,
3675             sdl_version_linked->minor,
3676             sdl_version_linked->patch);
3677   ystart += ystep_line;
3678
3679   SDL_NET_VERSION(&sdl_version_compiled);
3680   sdl_version_linked = SDLNet_Linked_Version();
3681
3682   DrawTextF(xstart1, ystart, font_text, "SDL_net");
3683   DrawTextF(xstart2, ystart, font_text, "%d.%d.%d",
3684             sdl_version_compiled.major,
3685             sdl_version_compiled.minor,
3686             sdl_version_compiled.patch);
3687   DrawTextF(xstart3, ystart, font_text, "%d.%d.%d",
3688             sdl_version_linked->major,
3689             sdl_version_linked->minor,
3690             sdl_version_linked->patch);
3691   ystart += ystep_para;
3692
3693   DrawTextF(xstart1, ystart, font_head, "Driver");
3694   DrawTextF(xstart2, ystart, font_head, "Requested");
3695   DrawTextF(xstart3, ystart, font_head, "Used");
3696   ystart += ystep_head;
3697
3698 #if defined(TARGET_SDL2)
3699   driver_name = getStringCopyNStatic(SDL_GetVideoDriver(0), driver_name_len);
3700 #else
3701   SDL_VideoDriverName(driver_name, driver_name_len);
3702 #endif
3703
3704   DrawTextF(xstart1, ystart, font_text, "SDL_VideoDriver");
3705   DrawTextF(xstart2, ystart, font_text, "%s", setup.system.sdl_videodriver);
3706   DrawTextF(xstart3, ystart, font_text, "%s", driver_name);
3707   ystart += ystep_line;
3708
3709 #if defined(TARGET_SDL2)
3710   driver_name = getStringCopyNStatic(SDL_GetAudioDriver(0), driver_name_len);
3711 #else
3712   SDL_AudioDriverName(driver_name, driver_name_len);
3713 #endif
3714
3715   DrawTextF(xstart1, ystart, font_text, "SDL_AudioDriver");
3716   DrawTextF(xstart2, ystart, font_text, "%s", setup.system.sdl_audiodriver);
3717   DrawTextF(xstart3, ystart, font_text, "%s", driver_name);
3718
3719   DrawTextSCentered(ybottom, font_foot,
3720                     "Press any key or button for info menu");
3721
3722   FadeIn(REDRAW_FIELD);
3723 }
3724
3725 void HandleInfoScreen_Version(int button)
3726 {
3727   if (button == MB_MENU_LEAVE)
3728   {
3729     PlaySound(SND_MENU_ITEM_SELECTING);
3730
3731     info_mode = INFO_MODE_MAIN;
3732     DrawInfoScreen();
3733
3734     return;
3735   }
3736   else if (button == MB_MENU_CHOICE)
3737   {
3738     PlaySound(SND_MENU_ITEM_SELECTING);
3739
3740     FadeMenuSoundsAndMusic();
3741
3742     info_mode = INFO_MODE_MAIN;
3743     DrawInfoScreen();
3744   }
3745   else
3746   {
3747     PlayMenuSoundIfLoop();
3748   }
3749 }
3750
3751 void DrawInfoScreen_LevelSet()
3752 {
3753   struct TitleMessageInfo *tmi = &readme;
3754   char *filename = getLevelSetInfoFilename();
3755   char *title = "Level Set Information:";
3756   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3757   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3758
3759   if (filename == NULL)
3760   {
3761     DrawInfoScreen_NotAvailable(title, "No information for this level set.");
3762
3763     return;
3764   }
3765
3766   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_LEVELSET);
3767
3768   FadeOut(REDRAW_FIELD);
3769
3770   ClearField();
3771   DrawHeadline();
3772
3773   DrawTextSCentered(ystart, FONT_TEXT_1, title);
3774
3775   /* if x position set to "-1", automatically determine by playfield width */
3776   if (tmi->x == -1)
3777     tmi->x = SXSIZE / 2;
3778
3779   /* if y position set to "-1", use static default value */
3780   if (tmi->y == -1)
3781     tmi->y = 150;
3782
3783   /* if width set to "-1", automatically determine by playfield width */
3784   if (tmi->width == -1)
3785     tmi->width = SXSIZE - 2 * TILEX;
3786
3787   /* if height set to "-1", automatically determine by playfield height */
3788   if (tmi->height == -1)
3789     tmi->height = MENU_SCREEN_INFO_YBOTTOM - tmi->y - 10;
3790
3791   /* if chars set to "-1", automatically determine by text and font width */
3792   if (tmi->chars == -1)
3793     tmi->chars = tmi->width / getFontWidth(tmi->font);
3794   else
3795     tmi->width = tmi->chars * getFontWidth(tmi->font);
3796
3797   /* if lines set to "-1", automatically determine by text and font height */
3798   if (tmi->lines == -1)
3799     tmi->lines = tmi->height / getFontHeight(tmi->font);
3800   else
3801     tmi->height = tmi->lines * getFontHeight(tmi->font);
3802
3803   DrawTextFile(mSX + ALIGNED_TEXT_XPOS(tmi), mSY + ALIGNED_TEXT_YPOS(tmi),
3804                filename, tmi->font, tmi->chars, -1, tmi->lines, 0, -1,
3805                tmi->autowrap, tmi->centered, tmi->parse_comments);
3806
3807   DrawTextSCentered(ybottom, FONT_TEXT_4,
3808                     "Press any key or button for info menu");
3809
3810   FadeIn(REDRAW_FIELD);
3811 }
3812
3813 void HandleInfoScreen_LevelSet(int button)
3814 {
3815   if (button == MB_MENU_LEAVE)
3816   {
3817     PlaySound(SND_MENU_ITEM_SELECTING);
3818
3819     info_mode = INFO_MODE_MAIN;
3820     DrawInfoScreen();
3821
3822     return;
3823   }
3824   else if (button == MB_MENU_CHOICE)
3825   {
3826     PlaySound(SND_MENU_ITEM_SELECTING);
3827
3828     FadeMenuSoundsAndMusic();
3829
3830     info_mode = INFO_MODE_MAIN;
3831     DrawInfoScreen();
3832   }
3833   else
3834   {
3835     PlayMenuSoundIfLoop();
3836   }
3837 }
3838
3839 static void DrawInfoScreen()
3840 {
3841   if (info_mode == INFO_MODE_TITLE)
3842     DrawInfoScreen_TitleScreen();
3843   else if (info_mode == INFO_MODE_ELEMENTS)
3844     DrawInfoScreen_Elements();
3845   else if (info_mode == INFO_MODE_MUSIC)
3846     DrawInfoScreen_Music();
3847   else if (info_mode == INFO_MODE_CREDITS)
3848     DrawInfoScreen_Credits();
3849   else if (info_mode == INFO_MODE_PROGRAM)
3850     DrawInfoScreen_Program();
3851   else if (info_mode == INFO_MODE_VERSION)
3852     DrawInfoScreen_Version();
3853   else if (info_mode == INFO_MODE_LEVELSET)
3854     DrawInfoScreen_LevelSet();
3855   else
3856     DrawInfoScreen_Main();
3857
3858   if (info_mode != INFO_MODE_MAIN &&
3859       info_mode != INFO_MODE_TITLE &&
3860       info_mode != INFO_MODE_MUSIC)
3861     PlayMenuSoundsAndMusic();
3862 }
3863
3864 void HandleInfoScreen(int mx, int my, int dx, int dy, int button)
3865 {
3866   if (info_mode == INFO_MODE_TITLE)
3867     HandleInfoScreen_TitleScreen(button);
3868   else if (info_mode == INFO_MODE_ELEMENTS)
3869     HandleInfoScreen_Elements(button);
3870   else if (info_mode == INFO_MODE_MUSIC)
3871     HandleInfoScreen_Music(button);
3872   else if (info_mode == INFO_MODE_CREDITS)
3873     HandleInfoScreen_Credits(button);
3874   else if (info_mode == INFO_MODE_PROGRAM)
3875     HandleInfoScreen_Program(button);
3876   else if (info_mode == INFO_MODE_VERSION)
3877     HandleInfoScreen_Version(button);
3878   else if (info_mode == INFO_MODE_LEVELSET)
3879     HandleInfoScreen_LevelSet(button);
3880   else
3881     HandleInfoScreen_Main(mx, my, dx, dy, button);
3882 }
3883
3884
3885 /* ========================================================================= */
3886 /* type name functions                                                       */
3887 /* ========================================================================= */
3888
3889 void HandleTypeName(int newxpos, Key key)
3890 {
3891   static char last_player_name[MAX_PLAYER_NAME_LEN + 1];
3892   struct MainControlInfo *mci = getMainControlInfo(MAIN_CONTROL_NAME);
3893   struct TextPosInfo *pos = mci->pos_input;
3894   int startx = mSX + ALIGNED_TEXT_XPOS(pos);
3895   int starty = mSY + ALIGNED_TEXT_YPOS(pos);
3896   static int xpos = 0;
3897   int font_nr = pos->font;
3898   int font_active_nr = FONT_ACTIVE(font_nr);
3899   int font_width = getFontWidth(font_active_nr);
3900   char key_char = getValidConfigValueChar(getCharFromKey(key));
3901   boolean is_valid_key_char = (key_char != 0 && (key_char != ' ' || xpos > 0));
3902   boolean is_active = TRUE;
3903
3904   DrawBackgroundForFont(startx,starty, pos->width, pos->height, font_active_nr);
3905
3906   if (newxpos)
3907   {
3908     strcpy(last_player_name, setup.player_name);
3909
3910     xpos = newxpos;
3911
3912     StartTextInput(startx, starty, pos->width, pos->height);
3913   }
3914   else if (is_valid_key_char && xpos < MAX_PLAYER_NAME_LEN)
3915   {
3916     setup.player_name[xpos] = key_char;
3917     setup.player_name[xpos + 1] = 0;
3918
3919     xpos++;
3920   }
3921   else if ((key == KSYM_Delete || key == KSYM_BackSpace) && xpos > 0)
3922   {
3923     xpos--;
3924
3925     setup.player_name[xpos] = 0;
3926   }
3927   else if (key == KSYM_Return && xpos > 0)
3928   {
3929     SaveSetup();
3930
3931     is_active = FALSE;
3932
3933     SetGameStatus(GAME_MODE_MAIN);
3934   }
3935   else if (key == KSYM_Escape)
3936   {
3937     strcpy(setup.player_name, last_player_name);
3938
3939     is_active = FALSE;
3940
3941     SetGameStatus(GAME_MODE_MAIN);
3942   }
3943
3944   if (is_active)
3945   {
3946     pos->width = (strlen(setup.player_name) + 1) * font_width;
3947     startx = mSX + ALIGNED_TEXT_XPOS(pos);
3948
3949     DrawText(startx, starty, setup.player_name, font_active_nr);
3950     DrawText(startx + xpos * font_width, starty, "_", font_active_nr);
3951   }
3952   else
3953   {
3954     pos->width = strlen(setup.player_name) * font_width;
3955     startx = mSX + ALIGNED_TEXT_XPOS(pos);
3956
3957     DrawText(startx, starty, setup.player_name, font_nr);
3958
3959     StopTextInput();
3960   }
3961 }
3962
3963
3964 /* ========================================================================= */
3965 /* tree menu functions                                                       */
3966 /* ========================================================================= */
3967
3968 static void DrawChooseTree(TreeInfo **ti_ptr)
3969 {
3970   int fade_mask = REDRAW_FIELD;
3971
3972   if (CheckIfGlobalBorderOrPlayfieldViewportHasChanged())
3973     fade_mask = REDRAW_ALL;
3974
3975   if (strEqual((*ti_ptr)->subdir, STRING_TOP_DIRECTORY))
3976   {
3977     SetGameStatus(GAME_MODE_MAIN);
3978
3979     DrawMainMenu();
3980
3981     return;
3982   }
3983
3984   UnmapAllGadgets();
3985
3986   FreeScreenGadgets();
3987   CreateScreenGadgets();
3988
3989   FadeOut(fade_mask);
3990
3991   /* needed if different viewport properties defined for choosing level (set) */
3992   ChangeViewportPropertiesIfNeeded();
3993
3994   if (game_status == GAME_MODE_LEVELNR)
3995     SetMainBackgroundImage(IMG_BACKGROUND_LEVELNR);
3996   else if (game_status == GAME_MODE_LEVELS)
3997     SetMainBackgroundImage(IMG_BACKGROUND_LEVELS);
3998
3999   ClearField();
4000
4001   OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
4002
4003   HandleChooseTree(0, 0, 0, 0, MB_MENU_INITIALIZE, ti_ptr);
4004   MapScreenTreeGadgets(*ti_ptr);
4005
4006   DrawMaskedBorder(fade_mask);
4007
4008   FadeIn(fade_mask);
4009 }
4010
4011 static void drawChooseTreeList(int first_entry, int num_page_entries,
4012                                TreeInfo *ti)
4013 {
4014   int i;
4015   char *title_string = NULL;
4016   int yoffset_sets = MENU_TITLE1_YPOS;
4017   int yoffset_setup = 16;
4018   int yoffset = (ti->type == TREE_TYPE_LEVEL_DIR ||
4019                  ti->type == TREE_TYPE_LEVEL_NR ? yoffset_sets : yoffset_setup);
4020
4021   title_string = ti->infotext;
4022
4023   DrawTextSCentered(mSY - SY + yoffset, FONT_TITLE_1, title_string);
4024
4025   clearMenuListArea();
4026
4027   for (i = 0; i < num_page_entries; i++)
4028   {
4029     TreeInfo *node, *node_first;
4030     int entry_pos = first_entry + i;
4031     int xpos = MENU_SCREEN_START_XPOS;
4032     int ypos = MENU_SCREEN_START_YPOS + i;
4033     int startx = mSX + xpos * 32;
4034     int starty = mSY + ypos * 32;
4035     int font_nr = FONT_TEXT_1;
4036     int font_xoffset = getFontBitmapInfo(font_nr)->draw_xoffset;
4037     int startx_text = startx + font_xoffset;
4038     int startx_scrollbar = mSX + SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset;
4039     int text_size = startx_scrollbar - startx_text;
4040     int max_buffer_len = text_size / getFontWidth(font_nr);
4041     char buffer[max_buffer_len + 1];
4042
4043     node_first = getTreeInfoFirstGroupEntry(ti);
4044     node = getTreeInfoFromPos(node_first, entry_pos);
4045
4046     strncpy(buffer, node->name, max_buffer_len);
4047     buffer[max_buffer_len] = '\0';
4048
4049     DrawText(startx, starty, buffer, font_nr + node->color);
4050
4051     if (node->parent_link)
4052       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
4053     else if (node->level_group)
4054       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
4055     else
4056       initCursor(i, IMG_MENU_BUTTON);
4057   }
4058
4059   redraw_mask |= REDRAW_FIELD;
4060 }
4061
4062 static void drawChooseTreeInfo(int entry_pos, TreeInfo *ti)
4063 {
4064   TreeInfo *node, *node_first;
4065   int x, last_redraw_mask = redraw_mask;
4066   int ypos = MENU_TITLE2_YPOS;
4067   int font_nr = FONT_TITLE_2;
4068
4069   if (ti->type == TREE_TYPE_LEVEL_NR)
4070     DrawTextFCentered(ypos, font_nr, leveldir_current->name);
4071
4072   if (ti->type != TREE_TYPE_LEVEL_DIR)
4073     return;
4074
4075   node_first = getTreeInfoFirstGroupEntry(ti);
4076   node = getTreeInfoFromPos(node_first, entry_pos);
4077
4078   DrawBackgroundForFont(SX, SY + ypos, SXSIZE, getFontHeight(font_nr), font_nr);
4079
4080   if (node->parent_link)
4081     DrawTextFCentered(ypos, font_nr, "leave \"%s\"",
4082                       node->node_parent->name);
4083   else if (node->level_group)
4084     DrawTextFCentered(ypos, font_nr, "enter \"%s\"",
4085                       node->name);
4086   else if (ti->type == TREE_TYPE_LEVEL_DIR)
4087     DrawTextFCentered(ypos, font_nr, "%3d %s (%s)",
4088                       node->levels, (node->levels > 1 ? "levels" : "level"),
4089                       node->class_desc);
4090
4091   /* let BackToFront() redraw only what is needed */
4092   redraw_mask = last_redraw_mask;
4093   for (x = 0; x < SCR_FIELDX; x++)
4094     MarkTileDirty(x, 1);
4095 }
4096
4097 static void HandleChooseTree(int mx, int my, int dx, int dy, int button,
4098                              TreeInfo **ti_ptr)
4099 {
4100   TreeInfo *ti = *ti_ptr;
4101   int x = 0;
4102   int y = ti->cl_cursor;
4103   int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
4104   int num_entries = numTreeInfoInGroup(ti);
4105   int num_page_entries;
4106   boolean position_set_by_scrollbar = (dx == 999);
4107
4108   if (num_entries <= NUM_MENU_ENTRIES_ON_SCREEN)
4109     num_page_entries = num_entries;
4110   else
4111     num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
4112
4113   if (button == MB_MENU_INITIALIZE)
4114   {
4115     int num_entries = numTreeInfoInGroup(ti);
4116     int entry_pos = posTreeInfo(ti);
4117
4118     if (ti->cl_first == -1)
4119     {
4120       /* only on initialization */
4121       ti->cl_first = MAX(0, entry_pos - num_page_entries + 1);
4122       ti->cl_cursor = entry_pos - ti->cl_first;
4123     }
4124     else if (ti->cl_cursor >= num_page_entries ||
4125              (num_entries > num_page_entries &&
4126               num_entries - ti->cl_first < num_page_entries))
4127     {
4128       /* only after change of list size (by custom graphic configuration) */
4129       ti->cl_first = MAX(0, entry_pos - num_page_entries + 1);
4130       ti->cl_cursor = entry_pos - ti->cl_first;
4131     }
4132
4133     if (position_set_by_scrollbar)
4134       ti->cl_first = dy;
4135     else
4136       AdjustChooseTreeScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL,
4137                                 ti->cl_first, ti);
4138
4139     drawChooseTreeList(ti->cl_first, num_page_entries, ti);
4140     drawChooseTreeInfo(ti->cl_first + ti->cl_cursor, ti);
4141     drawChooseTreeCursor(ti->cl_cursor, TRUE);
4142
4143     return;
4144   }
4145   else if (button == MB_MENU_LEAVE)
4146   {
4147     FadeSetLeaveMenu();
4148
4149     PlaySound(SND_MENU_ITEM_SELECTING);
4150
4151     if (ti->node_parent)
4152     {
4153       *ti_ptr = ti->node_parent;
4154       DrawChooseTree(ti_ptr);
4155     }
4156     else if (game_status == GAME_MODE_SETUP)
4157     {
4158       if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED ||
4159           setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY ||
4160           setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
4161         execSetupGame();
4162       else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE ||
4163                setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE ||
4164                setup_mode == SETUP_MODE_CHOOSE_RENDERING)
4165         execSetupGraphics();
4166       else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
4167                setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
4168                setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
4169         execSetupSound();
4170       else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL ||
4171                setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE ||
4172                setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE ||
4173                setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY ||
4174                setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0 ||
4175                setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0 ||
4176                setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1 ||
4177                setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
4178         execSetupTouch();
4179       else
4180         execSetupArtwork();
4181     }
4182     else
4183     {
4184       if (game_status == GAME_MODE_LEVELNR)
4185       {
4186         int new_level_nr = atoi(level_number_current->identifier);
4187
4188         HandleMainMenu_SelectLevel(0, 0, new_level_nr);
4189       }
4190
4191       SetGameStatus(GAME_MODE_MAIN);
4192
4193       DrawMainMenu();
4194     }
4195
4196     return;
4197   }
4198
4199   if (mx || my)         /* mouse input */
4200   {
4201     x = (mx - mSX) / 32;
4202     y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
4203   }
4204   else if (dx || dy)    /* keyboard or scrollbar/scrollbutton input */
4205   {
4206     /* move cursor instead of scrolling when already at start/end of list */
4207     if (dy == -1 * SCROLL_LINE && ti->cl_first == 0)
4208       dy = -1;
4209     else if (dy == +1 * SCROLL_LINE &&
4210              ti->cl_first + num_page_entries == num_entries)
4211       dy = 1;
4212
4213     /* handle scrolling screen one line or page */
4214     if (ti->cl_cursor + dy < 0 ||
4215         ti->cl_cursor + dy > num_page_entries - 1)
4216     {
4217       boolean redraw = FALSE;
4218
4219       if (ABS(dy) == SCROLL_PAGE)
4220         step = num_page_entries - 1;
4221
4222       if (dy < 0 && ti->cl_first > 0)
4223       {
4224         /* scroll page/line up */
4225
4226         ti->cl_first -= step;
4227         if (ti->cl_first < 0)
4228           ti->cl_first = 0;
4229
4230         redraw = TRUE;
4231       }
4232       else if (dy > 0 && ti->cl_first + num_page_entries < num_entries)
4233       {
4234         /* scroll page/line down */
4235
4236         ti->cl_first += step;
4237         if (ti->cl_first + num_page_entries > num_entries)
4238           ti->cl_first = MAX(0, num_entries - num_page_entries);
4239
4240         redraw = TRUE;
4241       }
4242
4243       if (redraw)
4244       {
4245         drawChooseTreeList(ti->cl_first, num_page_entries, ti);
4246         drawChooseTreeInfo(ti->cl_first + ti->cl_cursor, ti);
4247         drawChooseTreeCursor(ti->cl_cursor, TRUE);
4248
4249         AdjustChooseTreeScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL,
4250                                   ti->cl_first, ti);
4251       }
4252
4253       return;
4254     }
4255
4256     /* handle moving cursor one line */
4257     y = ti->cl_cursor + dy;
4258   }
4259
4260   if (dx == 1)
4261   {
4262     TreeInfo *node_first, *node_cursor;
4263     int entry_pos = ti->cl_first + y;
4264
4265     node_first = getTreeInfoFirstGroupEntry(ti);
4266     node_cursor = getTreeInfoFromPos(node_first, entry_pos);
4267
4268     if (node_cursor->node_group)
4269     {
4270       FadeSetEnterMenu();
4271
4272       PlaySound(SND_MENU_ITEM_SELECTING);
4273
4274       node_cursor->cl_first = ti->cl_first;
4275       node_cursor->cl_cursor = ti->cl_cursor;
4276       *ti_ptr = node_cursor->node_group;
4277       DrawChooseTree(ti_ptr);
4278
4279       return;
4280     }
4281   }
4282   else if (dx == -1 && ti->node_parent)
4283   {
4284     FadeSetLeaveMenu();
4285
4286     PlaySound(SND_MENU_ITEM_SELECTING);
4287
4288     *ti_ptr = ti->node_parent;
4289     DrawChooseTree(ti_ptr);
4290
4291     return;
4292   }
4293
4294   if (!anyScrollbarGadgetActive() &&
4295       IN_VIS_MENU(x, y) &&
4296       mx < screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->x &&
4297       y >= 0 && y < num_page_entries)
4298   {
4299     if (button)
4300     {
4301       if (y != ti->cl_cursor)
4302       {
4303         PlaySound(SND_MENU_ITEM_ACTIVATING);
4304
4305         drawChooseTreeCursor(ti->cl_cursor, FALSE);
4306         drawChooseTreeCursor(y, TRUE);
4307         drawChooseTreeInfo(ti->cl_first + y, ti);
4308
4309         ti->cl_cursor = y;
4310       }
4311       else if (dx < 0)
4312       {
4313         if (game_status == GAME_MODE_SETUP)
4314         {
4315           if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED ||
4316               setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY ||
4317               setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
4318             execSetupGame();
4319           else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE ||
4320                    setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE ||
4321                    setup_mode == SETUP_MODE_CHOOSE_RENDERING)
4322             execSetupGraphics();
4323           else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
4324                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
4325                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
4326             execSetupSound();
4327           else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL ||
4328                    setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE ||
4329                    setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE ||
4330                    setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY ||
4331                    setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0 ||
4332                    setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0 ||
4333                    setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1 ||
4334                    setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
4335             execSetupTouch();
4336           else
4337             execSetupArtwork();
4338         }
4339       }
4340     }
4341     else
4342     {
4343       TreeInfo *node_first, *node_cursor;
4344       int entry_pos = ti->cl_first + y;
4345
4346       PlaySound(SND_MENU_ITEM_SELECTING);
4347
4348       node_first = getTreeInfoFirstGroupEntry(ti);
4349       node_cursor = getTreeInfoFromPos(node_first, entry_pos);
4350
4351       if (node_cursor->node_group)
4352       {
4353         FadeSetEnterMenu();
4354
4355         node_cursor->cl_first = ti->cl_first;
4356         node_cursor->cl_cursor = ti->cl_cursor;
4357         *ti_ptr = node_cursor->node_group;
4358         DrawChooseTree(ti_ptr);
4359       }
4360       else if (node_cursor->parent_link)
4361       {
4362         FadeSetLeaveMenu();
4363
4364         *ti_ptr = node_cursor->node_parent;
4365         DrawChooseTree(ti_ptr);
4366       }
4367       else
4368       {
4369         FadeSetEnterMenu();
4370
4371         node_cursor->cl_first = ti->cl_first;
4372         node_cursor->cl_cursor = ti->cl_cursor;
4373         *ti_ptr = node_cursor;
4374
4375         if (ti->type == TREE_TYPE_LEVEL_DIR)
4376         {
4377           LoadLevelSetup_SeriesInfo();
4378
4379           SaveLevelSetup_LastSeries();
4380           SaveLevelSetup_SeriesInfo();
4381           TapeErase();
4382         }
4383
4384         if (game_status == GAME_MODE_SETUP)
4385         {
4386           if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED ||
4387               setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY ||
4388               setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
4389             execSetupGame();
4390           else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE ||
4391                    setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE ||
4392                    setup_mode == SETUP_MODE_CHOOSE_RENDERING)
4393             execSetupGraphics();
4394           else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
4395                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
4396                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
4397             execSetupSound();
4398           else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL ||
4399                    setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE ||
4400                    setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE ||
4401                    setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY ||
4402                    setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0 ||
4403                    setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0 ||
4404                    setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1 ||
4405                    setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
4406             execSetupTouch();
4407           else
4408             execSetupArtwork();
4409         }
4410         else
4411         {
4412           if (game_status == GAME_MODE_LEVELNR)
4413           {
4414             int new_level_nr = atoi(level_number_current->identifier);
4415
4416             HandleMainMenu_SelectLevel(0, 0, new_level_nr);
4417           }
4418
4419           SetGameStatus(GAME_MODE_MAIN);
4420
4421           DrawMainMenu();
4422         }
4423       }
4424     }
4425   }
4426 }
4427
4428 void DrawChooseLevelSet()
4429 {
4430   FadeMenuSoundsAndMusic();
4431
4432   DrawChooseTree(&leveldir_current);
4433
4434   PlayMenuSoundsAndMusic();
4435 }
4436
4437 void HandleChooseLevelSet(int mx, int my, int dx, int dy, int button)
4438 {
4439   HandleChooseTree(mx, my, dx, dy, button, &leveldir_current);
4440 }
4441
4442 void DrawChooseLevelNr()
4443 {
4444   int i;
4445
4446   FadeMenuSoundsAndMusic();
4447
4448   if (level_number != NULL)
4449   {
4450     freeTreeInfo(level_number);
4451
4452     level_number = NULL;
4453   }
4454
4455   for (i = leveldir_current->first_level; i <= leveldir_current->last_level;i++)
4456   {
4457     TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_LEVEL_NR);
4458     char identifier[32], name[32];
4459     int value = i;
4460
4461     /* temporarily load level info to get level name */
4462     LoadLevelInfoOnly(i);
4463
4464     ti->node_top = &level_number;
4465     ti->sort_priority = 10000 + value;
4466     ti->color = (level.no_level_file ? FC_BLUE :
4467                  LevelStats_getSolved(i) ? FC_GREEN :
4468                  LevelStats_getPlayed(i) ? FC_YELLOW : FC_RED);
4469
4470     snprintf(identifier, sizeof(identifier), "%d", value);
4471     snprintf(name, sizeof(name), "%03d: %s", value,
4472              (level.no_level_file ? "(no file)" : level.name));
4473
4474     setString(&ti->identifier, identifier);
4475     setString(&ti->name, name);
4476     setString(&ti->name_sorting, name);
4477
4478     pushTreeInfo(&level_number, ti);
4479   }
4480
4481   /* sort level number values to start with lowest level number */
4482   sortTreeInfo(&level_number);
4483
4484   /* set current level number to current level number */
4485   level_number_current =
4486     getTreeInfoFromIdentifier(level_number, i_to_a(level_nr));
4487
4488   /* if that also fails, set current level number to first available level */
4489   if (level_number_current == NULL)
4490     level_number_current = level_number;
4491
4492   DrawChooseTree(&level_number_current);
4493
4494   PlayMenuSoundsAndMusic();
4495 }
4496
4497 void HandleChooseLevelNr(int mx, int my, int dx, int dy, int button)
4498 {
4499   HandleChooseTree(mx, my, dx, dy, button, &level_number_current);
4500 }
4501
4502 void DrawHallOfFame(int level_nr, int highlight_position)
4503 {
4504   int fade_mask = REDRAW_FIELD;
4505
4506   if (CheckIfGlobalBorderOrPlayfieldViewportHasChanged())
4507     fade_mask = REDRAW_ALL;
4508
4509   UnmapAllGadgets();
4510   FadeMenuSoundsAndMusic();
4511
4512   /* (this is needed when called from GameEnd() after winning a game) */
4513   KeyboardAutoRepeatOn();
4514
4515   /* (this is needed when called from GameEnd() after winning a game) */
4516   SetDrawDeactivationMask(REDRAW_NONE);
4517   SetDrawBackgroundMask(REDRAW_FIELD);
4518
4519   if (highlight_position < 0) 
4520     LoadScore(level_nr);
4521   else
4522     SetAnimStatus(GAME_MODE_PSEUDO_SCORESNEW);
4523
4524   FadeSetEnterScreen();
4525
4526   FadeOut(fade_mask);
4527
4528   /* needed if different viewport properties defined for scores */
4529   ChangeViewportPropertiesIfNeeded();
4530
4531   PlayMenuSoundsAndMusic();
4532
4533   OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
4534
4535   HandleHallOfFame(level_nr, highlight_position, 0, 0, MB_MENU_INITIALIZE);
4536
4537   DrawMaskedBorder(fade_mask);
4538
4539   FadeIn(fade_mask);
4540 }
4541
4542 static void drawHallOfFameList(int level_nr, int first_entry,
4543                                int highlight_position)
4544 {
4545   int i, j;
4546
4547   SetMainBackgroundImage(IMG_BACKGROUND_SCORES);
4548   ClearField();
4549
4550   DrawTextSCentered(MENU_TITLE1_YPOS, FONT_TITLE_1, "Hall Of Fame");
4551   DrawTextFCentered(MENU_TITLE2_YPOS, FONT_TITLE_2,
4552                     "HighScores of Level %d", level_nr);
4553
4554   for (i = 0; i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
4555   {
4556     int entry = first_entry + i;
4557     boolean active = (entry == highlight_position);
4558     int font_nr1 = (active ? FONT_TEXT_1_ACTIVE : FONT_TEXT_1);
4559     int font_nr2 = (active ? FONT_TEXT_2_ACTIVE : FONT_TEXT_2);
4560     int font_nr3 = (active ? FONT_TEXT_3_ACTIVE : FONT_TEXT_3);
4561     int font_nr4 = (active ? FONT_TEXT_4_ACTIVE : FONT_TEXT_4);
4562     int dxoff = getFontDrawOffsetX(font_nr1);
4563     int dx1 = 3 * getFontWidth(font_nr1);
4564     int dx2 = dx1 + getFontWidth(font_nr1);
4565     int dx3 = SXSIZE - 2 * (mSX - SX + dxoff) - 5 * getFontWidth(font_nr4);
4566     int num_dots = (dx3 - dx2) / getFontWidth(font_nr3);
4567     int sy = mSY + 64 + i * 32;
4568
4569     DrawText(mSX, sy, int2str(entry + 1, 3), font_nr1);
4570     DrawText(mSX + dx1, sy, ".", font_nr1);
4571
4572     for (j = 0; j < num_dots; j++)
4573       DrawText(mSX + dx2 + j * getFontWidth(font_nr3), sy, ".", font_nr3);
4574
4575     if (!strEqual(highscore[entry].Name, EMPTY_PLAYER_NAME))
4576       DrawText(mSX + dx2, sy, highscore[entry].Name, font_nr2);
4577
4578     DrawText(mSX + dx3, sy, int2str(highscore[entry].Score, 5), font_nr4);
4579   }
4580
4581   redraw_mask |= REDRAW_FIELD;
4582 }
4583
4584 void HandleHallOfFame(int mx, int my, int dx, int dy, int button)
4585 {
4586   static int level_nr = 0;
4587   static int first_entry = 0;
4588   static int highlight_position = 0;
4589   int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
4590
4591   if (button == MB_MENU_INITIALIZE)
4592   {
4593     level_nr = mx;
4594     first_entry = 0;
4595     highlight_position = my;
4596
4597     drawHallOfFameList(level_nr, first_entry, highlight_position);
4598
4599     return;
4600   }
4601
4602   if (ABS(dy) == SCROLL_PAGE)           /* handle scrolling one page */
4603     step = NUM_MENU_ENTRIES_ON_SCREEN - 1;
4604
4605   if (dy < 0)
4606   {
4607     if (first_entry > 0)
4608     {
4609       first_entry -= step;
4610       if (first_entry < 0)
4611         first_entry = 0;
4612
4613       drawHallOfFameList(level_nr, first_entry, highlight_position);
4614     }
4615   }
4616   else if (dy > 0)
4617   {
4618     if (first_entry + NUM_MENU_ENTRIES_ON_SCREEN < MAX_SCORE_ENTRIES)
4619     {
4620       first_entry += step;
4621       if (first_entry + NUM_MENU_ENTRIES_ON_SCREEN > MAX_SCORE_ENTRIES)
4622         first_entry = MAX(0, MAX_SCORE_ENTRIES - NUM_MENU_ENTRIES_ON_SCREEN);
4623
4624       drawHallOfFameList(level_nr, first_entry, highlight_position);
4625     }
4626   }
4627   else if (button == MB_MENU_LEAVE || button == MB_MENU_CHOICE)
4628   {
4629     PlaySound(SND_MENU_ITEM_SELECTING);
4630
4631     FadeSound(SND_BACKGROUND_SCORES);
4632
4633     if (game_status_last_screen == GAME_MODE_PLAYING &&
4634         setup.auto_play_next_level && setup.increment_levels)
4635     {
4636       StartGameActions(network.enabled, setup.autorecord, level.random_seed);
4637     }
4638     else
4639     {
4640       SetGameStatus(GAME_MODE_MAIN);
4641
4642       DrawMainMenu();
4643     }
4644   }
4645
4646   if (game_status == GAME_MODE_SCORES)
4647     PlayMenuSoundIfLoop();
4648 }
4649
4650
4651 /* ========================================================================= */
4652 /* setup screen functions                                                    */
4653 /* ========================================================================= */
4654
4655 static struct TokenInfo *setup_info;
4656 static int num_setup_info;      /* number of setup entries shown on screen */
4657 static int max_setup_info;      /* total number of setup entries in list */
4658
4659 static char *window_size_text;
4660 static char *scaling_type_text;
4661 static char *rendering_mode_text;
4662 static char *scroll_delay_text;
4663 static char *snapshot_mode_text;
4664 static char *game_speed_text;
4665 static char *graphics_set_name;
4666 static char *sounds_set_name;
4667 static char *music_set_name;
4668 static char *volume_simple_text;
4669 static char *volume_loops_text;
4670 static char *volume_music_text;
4671 static char *touch_controls_text;
4672 static char *move_distance_text;
4673 static char *drop_distance_text;
4674 static char *transparency_text;
4675 static char *grid_size_text[2][2];
4676
4677 static void execSetupMain()
4678 {
4679   setup_mode = SETUP_MODE_MAIN;
4680
4681   DrawSetupScreen();
4682 }
4683
4684 static void execSetupGame_setGameSpeeds()
4685 {
4686   if (game_speeds == NULL)
4687   {
4688     int i;
4689
4690     for (i = 0; game_speeds_list[i].value != -1; i++)
4691     {
4692       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4693       char identifier[32], name[32];
4694       int value = game_speeds_list[i].value;
4695       char *text = game_speeds_list[i].text;
4696
4697       ti->node_top = &game_speeds;
4698       ti->sort_priority = 10000 - value;
4699
4700       sprintf(identifier, "%d", value);
4701       sprintf(name, "%s", text);
4702
4703       setString(&ti->identifier, identifier);
4704       setString(&ti->name, name);
4705       setString(&ti->name_sorting, name);
4706       setString(&ti->infotext, STR_SETUP_CHOOSE_GAME_SPEED);
4707
4708       pushTreeInfo(&game_speeds, ti);
4709     }
4710
4711     /* sort game speed values to start with slowest game speed */
4712     sortTreeInfo(&game_speeds);
4713
4714     /* set current game speed to configured game speed value */
4715     game_speed_current =
4716       getTreeInfoFromIdentifier(game_speeds, i_to_a(setup.game_frame_delay));
4717
4718     /* if that fails, set current game speed to reliable default value */
4719     if (game_speed_current == NULL)
4720       game_speed_current =
4721         getTreeInfoFromIdentifier(game_speeds, i_to_a(GAME_FRAME_DELAY));
4722
4723     /* if that also fails, set current game speed to first available speed */
4724     if (game_speed_current == NULL)
4725       game_speed_current = game_speeds;
4726   }
4727
4728   setup.game_frame_delay = atoi(game_speed_current->identifier);
4729
4730   /* needed for displaying game speed text instead of identifier */
4731   game_speed_text = game_speed_current->name;
4732 }
4733
4734 static void execSetupGame_setScrollDelays()
4735 {
4736   if (scroll_delays == NULL)
4737   {
4738     int i;
4739
4740     for (i = 0; scroll_delays_list[i].value != -1; i++)
4741     {
4742       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4743       char identifier[32], name[32];
4744       int value = scroll_delays_list[i].value;
4745       char *text = scroll_delays_list[i].text;
4746
4747       ti->node_top = &scroll_delays;
4748       ti->sort_priority = value;
4749
4750       sprintf(identifier, "%d", value);
4751       sprintf(name, "%s", text);
4752
4753       setString(&ti->identifier, identifier);
4754       setString(&ti->name, name);
4755       setString(&ti->name_sorting, name);
4756       setString(&ti->infotext, STR_SETUP_CHOOSE_SCROLL_DELAY);
4757
4758       pushTreeInfo(&scroll_delays, ti);
4759     }
4760
4761     /* sort scroll delay values to start with lowest scroll delay value */
4762     sortTreeInfo(&scroll_delays);
4763
4764     /* set current scroll delay value to configured scroll delay value */
4765     scroll_delay_current =
4766       getTreeInfoFromIdentifier(scroll_delays,i_to_a(setup.scroll_delay_value));
4767
4768     /* if that fails, set current scroll delay to reliable default value */
4769     if (scroll_delay_current == NULL)
4770       scroll_delay_current =
4771         getTreeInfoFromIdentifier(scroll_delays, i_to_a(STD_SCROLL_DELAY));
4772
4773     /* if that also fails, set current scroll delay to first available value */
4774     if (scroll_delay_current == NULL)
4775       scroll_delay_current = scroll_delays;
4776   }
4777
4778   setup.scroll_delay_value = atoi(scroll_delay_current->identifier);
4779
4780   /* needed for displaying scroll delay text instead of identifier */
4781   scroll_delay_text = scroll_delay_current->name;
4782 }
4783
4784 static void execSetupGame_setSnapshotModes()
4785 {
4786   if (snapshot_modes == NULL)
4787   {
4788     int i;
4789
4790     for (i = 0; snapshot_modes_list[i].value != NULL; i++)
4791     {
4792       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4793       char identifier[32], name[32];
4794       char *value = snapshot_modes_list[i].value;
4795       char *text = snapshot_modes_list[i].text;
4796
4797       ti->node_top = &snapshot_modes;
4798       ti->sort_priority = i;
4799
4800       sprintf(identifier, "%s", value);
4801       sprintf(name, "%s", text);
4802
4803       setString(&ti->identifier, identifier);
4804       setString(&ti->name, name);
4805       setString(&ti->name_sorting, name);
4806       setString(&ti->infotext, STR_SETUP_CHOOSE_SNAPSHOT_MODE);
4807
4808       pushTreeInfo(&snapshot_modes, ti);
4809     }
4810
4811     /* sort snapshot mode values to start with lowest snapshot mode value */
4812     sortTreeInfo(&snapshot_modes);
4813
4814     /* set current snapshot mode value to configured snapshot mode value */
4815     snapshot_mode_current =
4816       getTreeInfoFromIdentifier(snapshot_modes, setup.engine_snapshot_mode);
4817
4818     /* if that fails, set current snapshot mode to reliable default value */
4819     if (snapshot_mode_current == NULL)
4820       snapshot_mode_current =
4821         getTreeInfoFromIdentifier(snapshot_modes, STR_SNAPSHOT_MODE_DEFAULT);
4822
4823     /* if that also fails, set current snapshot mode to first available value */
4824     if (snapshot_mode_current == NULL)
4825       snapshot_mode_current = snapshot_modes;
4826   }
4827
4828   setup.engine_snapshot_mode = snapshot_mode_current->identifier;
4829
4830   /* needed for displaying snapshot mode text instead of identifier */
4831   snapshot_mode_text = snapshot_mode_current->name;
4832 }
4833
4834 static void execSetupGame()
4835 {
4836   execSetupGame_setGameSpeeds();
4837   execSetupGame_setScrollDelays();
4838   execSetupGame_setSnapshotModes();
4839
4840   setup_mode = SETUP_MODE_GAME;
4841
4842   DrawSetupScreen();
4843 }
4844
4845 static void execSetupChooseGameSpeed()
4846 {
4847   setup_mode = SETUP_MODE_CHOOSE_GAME_SPEED;
4848
4849   DrawSetupScreen();
4850 }
4851
4852 static void execSetupChooseScrollDelay()
4853 {
4854   setup_mode = SETUP_MODE_CHOOSE_SCROLL_DELAY;
4855
4856   DrawSetupScreen();
4857 }
4858
4859 static void execSetupChooseSnapshotMode()
4860 {
4861   setup_mode = SETUP_MODE_CHOOSE_SNAPSHOT_MODE;
4862
4863   DrawSetupScreen();
4864 }
4865
4866 static void execSetupEditor()
4867 {
4868   setup_mode = SETUP_MODE_EDITOR;
4869
4870   DrawSetupScreen();
4871 }
4872
4873 static void execSetupGraphics_setWindowSizes(boolean update_list)
4874 {
4875   if (window_sizes != NULL && update_list)
4876   {
4877     freeTreeInfo(window_sizes);
4878
4879     window_sizes = NULL;
4880   }
4881
4882   if (window_sizes == NULL)
4883   {
4884     boolean current_window_size_found = FALSE;
4885     int i;
4886
4887     for (i = 0; window_sizes_list[i].value != -1; i++)
4888     {
4889       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4890       char identifier[32], name[32];
4891       int value = window_sizes_list[i].value;
4892       char *text = window_sizes_list[i].text;
4893
4894       ti->node_top = &window_sizes;
4895       ti->sort_priority = value;
4896
4897       sprintf(identifier, "%d", value);
4898       sprintf(name, "%s", text);
4899
4900       setString(&ti->identifier, identifier);
4901       setString(&ti->name, name);
4902       setString(&ti->name_sorting, name);
4903       setString(&ti->infotext, STR_SETUP_CHOOSE_WINDOW_SIZE);
4904
4905       pushTreeInfo(&window_sizes, ti);
4906
4907       if (value == setup.window_scaling_percent)
4908         current_window_size_found = TRUE;
4909     }
4910
4911     if (!current_window_size_found)
4912     {
4913       // add entry for non-preset window scaling value
4914
4915       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4916       char identifier[32], name[32];
4917       int value = setup.window_scaling_percent;
4918
4919       ti->node_top = &window_sizes;
4920       ti->sort_priority = value;
4921
4922       sprintf(identifier, "%d", value);
4923       sprintf(name, "%d %% (Current)", value);
4924
4925       setString(&ti->identifier, identifier);
4926       setString(&ti->name, name);
4927       setString(&ti->name_sorting, name);
4928       setString(&ti->infotext, STR_SETUP_CHOOSE_WINDOW_SIZE);
4929
4930       pushTreeInfo(&window_sizes, ti);
4931     }
4932
4933     /* sort window size values to start with lowest window size value */
4934     sortTreeInfo(&window_sizes);
4935
4936     /* set current window size value to configured window size value */
4937     window_size_current =
4938       getTreeInfoFromIdentifier(window_sizes,
4939                                 i_to_a(setup.window_scaling_percent));
4940
4941     /* if that fails, set current window size to reliable default value */
4942     if (window_size_current == NULL)
4943       window_size_current =
4944         getTreeInfoFromIdentifier(window_sizes,
4945                                   i_to_a(STD_WINDOW_SCALING_PERCENT));
4946
4947     /* if that also fails, set current window size to first available value */
4948     if (window_size_current == NULL)
4949       window_size_current = window_sizes;
4950   }
4951
4952   setup.window_scaling_percent = atoi(window_size_current->identifier);
4953
4954   /* needed for displaying window size text instead of identifier */
4955   window_size_text = window_size_current->name;
4956 }
4957
4958 static void execSetupGraphics_setScalingTypes()
4959 {
4960   if (scaling_types == NULL)
4961   {
4962     int i;
4963
4964     for (i = 0; scaling_types_list[i].value != NULL; i++)
4965     {
4966       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4967       char identifier[32], name[32];
4968       char *value = scaling_types_list[i].value;
4969       char *text = scaling_types_list[i].text;
4970
4971       ti->node_top = &scaling_types;
4972       ti->sort_priority = i;
4973
4974       sprintf(identifier, "%s", value);
4975       sprintf(name, "%s", text);
4976
4977       setString(&ti->identifier, identifier);
4978       setString(&ti->name, name);
4979       setString(&ti->name_sorting, name);
4980       setString(&ti->infotext, STR_SETUP_CHOOSE_SCALING_TYPE);
4981
4982       pushTreeInfo(&scaling_types, ti);
4983     }
4984
4985     /* sort scaling type values to start with lowest scaling type value */
4986     sortTreeInfo(&scaling_types);
4987
4988     /* set current scaling type value to configured scaling type value */
4989     scaling_type_current =
4990       getTreeInfoFromIdentifier(scaling_types, setup.window_scaling_quality);
4991
4992     /* if that fails, set current scaling type to reliable default value */
4993     if (scaling_type_current == NULL)
4994       scaling_type_current =
4995         getTreeInfoFromIdentifier(scaling_types, SCALING_QUALITY_DEFAULT);
4996
4997     /* if that also fails, set current scaling type to first available value */
4998     if (scaling_type_current == NULL)
4999       scaling_type_current = scaling_types;
5000   }
5001
5002   setup.window_scaling_quality = scaling_type_current->identifier;
5003
5004   /* needed for displaying scaling type text instead of identifier */
5005   scaling_type_text = scaling_type_current->name;
5006 }
5007
5008 static void execSetupGraphics_setRenderingModes()
5009 {
5010   if (rendering_modes == NULL)
5011   {
5012     int i;
5013
5014     for (i = 0; rendering_modes_list[i].value != NULL; i++)
5015     {
5016       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5017       char identifier[32], name[32];
5018       char *value = rendering_modes_list[i].value;
5019       char *text = rendering_modes_list[i].text;
5020
5021       ti->node_top = &rendering_modes;
5022       ti->sort_priority = i;
5023
5024       sprintf(identifier, "%s", value);
5025       sprintf(name, "%s", text);
5026
5027       setString(&ti->identifier, identifier);
5028       setString(&ti->name, name);
5029       setString(&ti->name_sorting, name);
5030       setString(&ti->infotext, STR_SETUP_CHOOSE_RENDERING);
5031
5032       pushTreeInfo(&rendering_modes, ti);
5033     }
5034
5035     /* sort rendering mode values to start with lowest rendering mode value */
5036     sortTreeInfo(&rendering_modes);
5037
5038     /* set current rendering mode value to configured rendering mode value */
5039     rendering_mode_current =
5040       getTreeInfoFromIdentifier(rendering_modes, setup.screen_rendering_mode);
5041
5042     /* if that fails, set current rendering mode to reliable default value */
5043     if (rendering_mode_current == NULL)
5044       rendering_mode_current =
5045         getTreeInfoFromIdentifier(rendering_modes,
5046                                   STR_SPECIAL_RENDERING_DEFAULT);
5047
5048     /* if that also fails, set current rendering mode to first available one */
5049     if (rendering_mode_current == NULL)
5050       rendering_mode_current = rendering_modes;
5051   }
5052
5053   setup.screen_rendering_mode = rendering_mode_current->identifier;
5054
5055   /* needed for displaying rendering mode text instead of identifier */
5056   rendering_mode_text = rendering_mode_current->name;
5057 }
5058
5059 static void execSetupGraphics()
5060 {
5061   // update "setup.window_scaling_percent" from list selection
5062   // (in this case, window scaling was changed on setup screen)
5063   if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
5064     execSetupGraphics_setWindowSizes(FALSE);
5065
5066   // update list selection from "setup.window_scaling_percent"
5067   // (window scaling may have changed by resizing the window)
5068   execSetupGraphics_setWindowSizes(TRUE);
5069
5070   execSetupGraphics_setScalingTypes();
5071   execSetupGraphics_setRenderingModes();
5072
5073   setup_mode = SETUP_MODE_GRAPHICS;
5074
5075   DrawSetupScreen();
5076
5077 #if defined(TARGET_SDL2)
5078   // window scaling may have changed at this point
5079   ToggleFullscreenOrChangeWindowScalingIfNeeded();
5080
5081   // window scaling quality may have changed at this point
5082   if (!strEqual(setup.window_scaling_quality, video.window_scaling_quality))
5083     SDLSetWindowScalingQuality(setup.window_scaling_quality);
5084
5085   // screen rendering mode may have changed at this point
5086   SDLSetScreenRenderingMode(setup.screen_rendering_mode);
5087 #endif
5088 }
5089
5090 static void execSetupChooseWindowSize()
5091 {
5092   setup_mode = SETUP_MODE_CHOOSE_WINDOW_SIZE;
5093
5094   DrawSetupScreen();
5095 }
5096
5097 static void execSetupChooseScalingType()
5098 {
5099   setup_mode = SETUP_MODE_CHOOSE_SCALING_TYPE;
5100
5101   DrawSetupScreen();
5102 }
5103
5104 static void execSetupChooseRenderingMode()
5105 {
5106   setup_mode = SETUP_MODE_CHOOSE_RENDERING;
5107
5108   DrawSetupScreen();
5109 }
5110
5111 static void execSetupChooseVolumeSimple()
5112 {
5113   setup_mode = SETUP_MODE_CHOOSE_VOLUME_SIMPLE;
5114
5115   DrawSetupScreen();
5116 }
5117
5118 static void execSetupChooseVolumeLoops()
5119 {
5120   setup_mode = SETUP_MODE_CHOOSE_VOLUME_LOOPS;
5121
5122   DrawSetupScreen();
5123 }
5124
5125 static void execSetupChooseVolumeMusic()
5126 {
5127   setup_mode = SETUP_MODE_CHOOSE_VOLUME_MUSIC;
5128
5129   DrawSetupScreen();
5130 }
5131
5132 static void execSetupSound()
5133 {
5134   if (volumes_simple == NULL)
5135   {
5136     boolean current_volume_simple_found = FALSE;
5137     int i;
5138
5139     for (i = 0; volumes_list[i].value != -1; i++)
5140     {
5141       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5142       char identifier[32], name[32];
5143       int value = volumes_list[i].value;
5144       char *text = volumes_list[i].text;
5145
5146       ti->node_top = &volumes_simple;
5147       ti->sort_priority = value;
5148
5149       sprintf(identifier, "%d", value);
5150       sprintf(name, "%s", text);
5151
5152       setString(&ti->identifier, identifier);
5153       setString(&ti->name, name);
5154       setString(&ti->name_sorting, name);
5155       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_SIMPLE);
5156
5157       pushTreeInfo(&volumes_simple, ti);
5158
5159       if (value == setup.volume_simple)
5160         current_volume_simple_found = TRUE;
5161     }
5162
5163     if (!current_volume_simple_found)
5164     {
5165       // add entry for non-preset volume value
5166
5167       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5168       char identifier[32], name[32];
5169       int value = setup.volume_simple;
5170
5171       ti->node_top = &volumes_simple;
5172       ti->sort_priority = value;
5173
5174       sprintf(identifier, "%d", value);
5175       sprintf(name, "%d %% (Current)", value);
5176
5177       setString(&ti->identifier, identifier);
5178       setString(&ti->name, name);
5179       setString(&ti->name_sorting, name);
5180       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_SIMPLE);
5181
5182       pushTreeInfo(&volumes_simple, ti);
5183     }
5184
5185     /* sort volume values to start with lowest volume value */
5186     sortTreeInfo(&volumes_simple);
5187
5188     /* set current volume value to configured volume value */
5189     volume_simple_current =
5190       getTreeInfoFromIdentifier(volumes_simple,i_to_a(setup.volume_simple));
5191
5192     /* if that fails, set current volume to reliable default value */
5193     if (volume_simple_current == NULL)
5194       volume_simple_current =
5195         getTreeInfoFromIdentifier(volumes_simple, i_to_a(100));
5196
5197     /* if that also fails, set current volume to first available value */
5198     if (volume_simple_current == NULL)
5199       volume_simple_current = volumes_simple;
5200   }
5201
5202   if (volumes_loops == NULL)
5203   {
5204     boolean current_volume_loops_found = FALSE;
5205     int i;
5206
5207     for (i = 0; volumes_list[i].value != -1; i++)
5208     {
5209       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5210       char identifier[32], name[32];
5211       int value = volumes_list[i].value;
5212       char *text = volumes_list[i].text;
5213
5214       ti->node_top = &volumes_loops;
5215       ti->sort_priority = value;
5216
5217       sprintf(identifier, "%d", value);
5218       sprintf(name, "%s", text);
5219
5220       setString(&ti->identifier, identifier);
5221       setString(&ti->name, name);
5222       setString(&ti->name_sorting, name);
5223       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_LOOPS);
5224
5225       pushTreeInfo(&volumes_loops, ti);
5226
5227       if (value == setup.volume_loops)
5228         current_volume_loops_found = TRUE;
5229     }
5230
5231     if (!current_volume_loops_found)
5232     {
5233       // add entry for non-preset volume value
5234
5235       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5236       char identifier[32], name[32];
5237       int value = setup.volume_loops;
5238
5239       ti->node_top = &volumes_loops;
5240       ti->sort_priority = value;
5241
5242       sprintf(identifier, "%d", value);
5243       sprintf(name, "%d %% (Current)", value);
5244
5245       setString(&ti->identifier, identifier);
5246       setString(&ti->name, name);
5247       setString(&ti->name_sorting, name);
5248       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_LOOPS);
5249
5250       pushTreeInfo(&volumes_loops, ti);
5251     }
5252
5253     /* sort volume values to start with lowest volume value */
5254     sortTreeInfo(&volumes_loops);
5255
5256     /* set current volume value to configured volume value */
5257     volume_loops_current =
5258       getTreeInfoFromIdentifier(volumes_loops,i_to_a(setup.volume_loops));
5259
5260     /* if that fails, set current volume to reliable default value */
5261     if (volume_loops_current == NULL)
5262       volume_loops_current =
5263         getTreeInfoFromIdentifier(volumes_loops, i_to_a(100));
5264
5265     /* if that also fails, set current volume to first available value */
5266     if (volume_loops_current == NULL)
5267       volume_loops_current = volumes_loops;
5268   }
5269
5270   if (volumes_music == NULL)
5271   {
5272     boolean current_volume_music_found = FALSE;
5273     int i;
5274
5275     for (i = 0; volumes_list[i].value != -1; i++)
5276     {
5277       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5278       char identifier[32], name[32];
5279       int value = volumes_list[i].value;
5280       char *text = volumes_list[i].text;
5281
5282       ti->node_top = &volumes_music;
5283       ti->sort_priority = value;
5284
5285       sprintf(identifier, "%d", value);
5286       sprintf(name, "%s", text);
5287
5288       setString(&ti->identifier, identifier);
5289       setString(&ti->name, name);
5290       setString(&ti->name_sorting, name);
5291       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_MUSIC);
5292
5293       pushTreeInfo(&volumes_music, ti);
5294
5295       if (value == setup.volume_music)
5296         current_volume_music_found = TRUE;
5297     }
5298
5299     if (!current_volume_music_found)
5300     {
5301       // add entry for non-preset volume value
5302
5303       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5304       char identifier[32], name[32];
5305       int value = setup.volume_music;
5306
5307       ti->node_top = &volumes_music;
5308       ti->sort_priority = value;
5309
5310       sprintf(identifier, "%d", value);
5311       sprintf(name, "%d %% (Current)", value);
5312
5313       setString(&ti->identifier, identifier);
5314       setString(&ti->name, name);
5315       setString(&ti->name_sorting, name);
5316       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_MUSIC);
5317
5318       pushTreeInfo(&volumes_music, ti);
5319     }
5320
5321     /* sort volume values to start with lowest volume value */
5322     sortTreeInfo(&volumes_music);
5323
5324     /* set current volume value to configured volume value */
5325     volume_music_current =
5326       getTreeInfoFromIdentifier(volumes_music,i_to_a(setup.volume_music));
5327
5328     /* if that fails, set current volume to reliable default value */
5329     if (volume_music_current == NULL)
5330       volume_music_current =
5331         getTreeInfoFromIdentifier(volumes_music, i_to_a(100));
5332
5333     /* if that also fails, set current volume to first available value */
5334     if (volume_music_current == NULL)
5335       volume_music_current = volumes_music;
5336   }
5337
5338   setup.volume_simple = atoi(volume_simple_current->identifier);
5339   setup.volume_loops  = atoi(volume_loops_current->identifier);
5340   setup.volume_music  = atoi(volume_music_current->identifier);
5341
5342   /* needed for displaying volume text instead of identifier */
5343   volume_simple_text = volume_simple_current->name;
5344   volume_loops_text = volume_loops_current->name;
5345   volume_music_text = volume_music_current->name;
5346
5347   setup_mode = SETUP_MODE_SOUND;
5348
5349   DrawSetupScreen();
5350 }
5351
5352 static void execSetupChooseTouchControls()
5353 {
5354   setup_mode = SETUP_MODE_CHOOSE_TOUCH_CONTROL;
5355
5356   DrawSetupScreen();
5357 }
5358
5359 static void execSetupChooseMoveDistance()
5360 {
5361   setup_mode = SETUP_MODE_CHOOSE_MOVE_DISTANCE;
5362
5363   DrawSetupScreen();
5364 }
5365
5366 static void execSetupChooseDropDistance()
5367 {
5368   setup_mode = SETUP_MODE_CHOOSE_DROP_DISTANCE;
5369
5370   DrawSetupScreen();
5371 }
5372
5373 static void execSetupChooseTransparency()
5374 {
5375   setup_mode = SETUP_MODE_CHOOSE_TRANSPARENCY;
5376
5377   DrawSetupScreen();
5378 }
5379
5380 static void execSetupChooseGridXSize_0()
5381 {
5382   setup_mode = SETUP_MODE_CHOOSE_GRID_XSIZE_0;
5383
5384   DrawSetupScreen();
5385 }
5386
5387 static void execSetupChooseGridYSize_0()
5388 {
5389   setup_mode = SETUP_MODE_CHOOSE_GRID_YSIZE_0;
5390
5391   DrawSetupScreen();
5392 }
5393
5394 static void execSetupChooseGridXSize_1()
5395 {
5396   setup_mode = SETUP_MODE_CHOOSE_GRID_XSIZE_1;
5397
5398   DrawSetupScreen();
5399 }
5400
5401 static void execSetupChooseGridYSize_1()
5402 {
5403   setup_mode = SETUP_MODE_CHOOSE_GRID_YSIZE_1;
5404
5405   DrawSetupScreen();
5406 }
5407
5408 static void execSetupConfigureVirtualButtons()
5409 {
5410   setup_mode = SETUP_MODE_CONFIG_VIRT_BUTTONS;
5411
5412   ConfigureVirtualButtons();
5413
5414   setup_mode = SETUP_MODE_TOUCH;
5415
5416   DrawSetupScreen();
5417 }
5418
5419 static void execSetupTouch()
5420 {
5421   int i, j, k;
5422
5423   if (touch_controls == NULL)
5424   {
5425     for (i = 0; touch_controls_list[i].value != NULL; i++)
5426     {
5427       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5428       char identifier[32], name[32];
5429       char *value = touch_controls_list[i].value;
5430       char *text = touch_controls_list[i].text;
5431
5432       ti->node_top = &touch_controls;
5433       ti->sort_priority = i;
5434
5435       sprintf(identifier, "%s", value);
5436       sprintf(name, "%s", text);
5437
5438       setString(&ti->identifier, identifier);
5439       setString(&ti->name, name);
5440       setString(&ti->name_sorting, name);
5441       setString(&ti->infotext, STR_SETUP_CHOOSE_TOUCH_CONTROL);
5442
5443       pushTreeInfo(&touch_controls, ti);
5444     }
5445
5446     /* sort touch control values to start with lowest touch control value */
5447     sortTreeInfo(&touch_controls);
5448
5449     /* set current touch control value to configured touch control value */
5450     touch_control_current =
5451       getTreeInfoFromIdentifier(touch_controls, setup.touch.control_type);
5452
5453     /* if that fails, set current touch control to reliable default value */
5454     if (touch_control_current == NULL)
5455       touch_control_current =
5456         getTreeInfoFromIdentifier(touch_controls, TOUCH_CONTROL_DEFAULT);
5457
5458     /* if that also fails, set current touch control to first available value */
5459     if (touch_control_current == NULL)
5460       touch_control_current = touch_controls;
5461   }
5462
5463   if (move_distances == NULL)
5464   {
5465     for (i = 0; distances_list[i].value != -1; i++)
5466     {
5467       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5468       char identifier[32], name[32];
5469       int value = distances_list[i].value;
5470       char *text = distances_list[i].text;
5471
5472       ti->node_top = &move_distances;
5473       ti->sort_priority = value;
5474
5475       sprintf(identifier, "%d", value);
5476       sprintf(name, "%s", text);
5477
5478       setString(&ti->identifier, identifier);
5479       setString(&ti->name, name);
5480       setString(&ti->name_sorting, name);
5481       setString(&ti->infotext, STR_SETUP_CHOOSE_MOVE_DISTANCE);
5482
5483       pushTreeInfo(&move_distances, ti);
5484     }
5485
5486     /* sort distance values to start with lowest distance value */
5487     sortTreeInfo(&move_distances);
5488
5489     /* set current distance value to configured distance value */
5490     move_distance_current =
5491       getTreeInfoFromIdentifier(move_distances,
5492                                 i_to_a(setup.touch.move_distance));
5493
5494     /* if that fails, set current distance to reliable default value */
5495     if (move_distance_current == NULL)
5496       move_distance_current =
5497         getTreeInfoFromIdentifier(move_distances,
5498                                   i_to_a(TOUCH_MOVE_DISTANCE_DEFAULT));
5499
5500     /* if that also fails, set current distance to first available value */
5501     if (move_distance_current == NULL)
5502       move_distance_current = move_distances;
5503   }
5504
5505   if (drop_distances == NULL)
5506   {
5507     for (i = 0; distances_list[i].value != -1; i++)
5508     {
5509       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5510       char identifier[32], name[32];
5511       int value = distances_list[i].value;
5512       char *text = distances_list[i].text;
5513
5514       ti->node_top = &drop_distances;
5515       ti->sort_priority = value;
5516
5517       sprintf(identifier, "%d", value);
5518       sprintf(name, "%s", text);
5519
5520       setString(&ti->identifier, identifier);
5521       setString(&ti->name, name);
5522       setString(&ti->name_sorting, name);
5523       setString(&ti->infotext, STR_SETUP_CHOOSE_DROP_DISTANCE);
5524
5525       pushTreeInfo(&drop_distances, ti);
5526     }
5527
5528     /* sort distance values to start with lowest distance value */
5529     sortTreeInfo(&drop_distances);
5530
5531     /* set current distance value to configured distance value */
5532     drop_distance_current =
5533       getTreeInfoFromIdentifier(drop_distances,
5534                                 i_to_a(setup.touch.drop_distance));
5535
5536     /* if that fails, set current distance to reliable default value */
5537     if (drop_distance_current == NULL)
5538       drop_distance_current =
5539         getTreeInfoFromIdentifier(drop_distances,
5540                                   i_to_a(TOUCH_DROP_DISTANCE_DEFAULT));
5541
5542     /* if that also fails, set current distance to first available value */
5543     if (drop_distance_current == NULL)
5544       drop_distance_current = drop_distances;
5545   }
5546
5547   if (transparencies == NULL)
5548   {
5549     for (i = 0; transparencies_list[i].value != -1; i++)
5550     {
5551       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5552       char identifier[32], name[32];
5553       int value = transparencies_list[i].value;
5554       char *text = transparencies_list[i].text;
5555
5556       ti->node_top = &transparencies;
5557       ti->sort_priority = value;
5558
5559       sprintf(identifier, "%d", value);
5560       sprintf(name, "%s", text);
5561
5562       setString(&ti->identifier, identifier);
5563       setString(&ti->name, name);
5564       setString(&ti->name_sorting, name);
5565       setString(&ti->infotext, STR_SETUP_CHOOSE_TRANSPARENCY);
5566
5567       pushTreeInfo(&transparencies, ti);
5568     }
5569
5570     /* sort transparency values to start with lowest transparency value */
5571     sortTreeInfo(&transparencies);
5572
5573     /* set current transparency value to configured transparency value */
5574     transparency_current =
5575       getTreeInfoFromIdentifier(transparencies,
5576                                 i_to_a(setup.touch.transparency));
5577
5578     /* if that fails, set current transparency to reliable default value */
5579     if (transparency_current == NULL)
5580       transparency_current =
5581         getTreeInfoFromIdentifier(transparencies,
5582                                   i_to_a(TOUCH_TRANSPARENCY_DEFAULT));
5583
5584     /* if that also fails, set current transparency to first available value */
5585     if (transparency_current == NULL)
5586       transparency_current = transparencies;
5587   }
5588
5589   for (i = 0; i < 2; i++)
5590   {
5591     for (j = 0; j < 2; j++)
5592     {
5593       if (grid_sizes[i][j] == NULL)
5594       {
5595         for (k = 0; grid_sizes_list[k].value != -1; k++)
5596         {
5597           TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5598           char identifier[32], name[32];
5599           int value = grid_sizes_list[k].value;
5600           char *text = grid_sizes_list[k].text;
5601
5602           ti->node_top = &grid_sizes[i][j];
5603           ti->sort_priority = value;
5604
5605           sprintf(identifier, "%d", value);
5606           sprintf(name, "%s", text);
5607
5608           setString(&ti->identifier, identifier);
5609           setString(&ti->name, name);
5610           setString(&ti->name_sorting, name);
5611           setString(&ti->infotext,
5612                     (i == 0 ?
5613                      (j == 0 ?
5614                       STR_SETUP_CHOOSE_GRID_XSIZE_0 :
5615                       STR_SETUP_CHOOSE_GRID_YSIZE_0) :
5616                      (j == 0 ?
5617                       STR_SETUP_CHOOSE_GRID_XSIZE_1 :
5618                       STR_SETUP_CHOOSE_GRID_YSIZE_1)));
5619
5620           pushTreeInfo(&grid_sizes[i][j], ti);
5621         }
5622
5623         /* sort grid size values to start with lowest grid size value */
5624         sortTreeInfo(&grid_sizes[i][j]);
5625
5626         /* set current grid size value to configured grid size value */
5627         grid_size_current[i][j] =
5628           getTreeInfoFromIdentifier(grid_sizes[i][j],
5629                                     i_to_a(j == 0 ?
5630                                            setup.touch.grid_xsize[i] :
5631                                            setup.touch.grid_ysize[i]));
5632
5633         /* if that fails, set current grid size to reliable default value */
5634         if (grid_size_current[i][j] == NULL)
5635           grid_size_current[i][j] =
5636             getTreeInfoFromIdentifier(grid_sizes[i][j],
5637                                       i_to_a(j == 0 ?
5638                                              DEFAULT_GRID_XSIZE(i) :
5639                                              DEFAULT_GRID_YSIZE(i)));
5640
5641         /* if that also fails, set current grid size to first available value */
5642         if (grid_size_current[i][j] == NULL)
5643           grid_size_current[i][j] = grid_sizes[i][j];
5644       }
5645     }
5646   }
5647
5648   setup.touch.control_type = touch_control_current->identifier;
5649   setup.touch.move_distance = atoi(move_distance_current->identifier);
5650   setup.touch.drop_distance = atoi(drop_distance_current->identifier);
5651   setup.touch.transparency = atoi(transparency_current->identifier);
5652
5653   for (i = 0; i < 2; i++)
5654   {
5655     setup.touch.grid_xsize[i] = atoi(grid_size_current[i][0]->identifier);
5656     setup.touch.grid_ysize[i] = atoi(grid_size_current[i][1]->identifier);
5657
5658     if (i == GRID_ACTIVE_NR())
5659     {
5660       overlay.grid_xsize = setup.touch.grid_xsize[i];
5661       overlay.grid_ysize = setup.touch.grid_ysize[i];
5662     }
5663   }
5664
5665   /* needed for displaying value text instead of identifier */
5666   touch_controls_text = touch_control_current->name;
5667   move_distance_text = move_distance_current->name;
5668   drop_distance_text = drop_distance_current->name;
5669   transparency_text = transparency_current->name;
5670
5671   for (i = 0; i < 2; i++)
5672     for (j = 0; j < 2; j++)
5673       grid_size_text[i][j] = grid_size_current[i][j]->name;
5674
5675   setup_mode = SETUP_MODE_TOUCH;
5676
5677   DrawSetupScreen();
5678 }
5679
5680 static void execSetupArtwork()
5681 {
5682 #if 0
5683   printf("::: '%s', '%s', '%s'\n",
5684          artwork.gfx_current->subdir,
5685          artwork.gfx_current->fullpath,
5686          artwork.gfx_current->basepath);
5687 #endif
5688
5689   setup.graphics_set = artwork.gfx_current->identifier;
5690   setup.sounds_set = artwork.snd_current->identifier;
5691   setup.music_set = artwork.mus_current->identifier;
5692
5693   /* needed if last screen (setup choice) changed graphics, sounds or music */
5694   ReloadCustomArtwork(0);
5695
5696   /* needed for displaying artwork name instead of artwork identifier */
5697   graphics_set_name = artwork.gfx_current->name;
5698   sounds_set_name = artwork.snd_current->name;
5699   music_set_name = artwork.mus_current->name;
5700
5701   setup_mode = SETUP_MODE_ARTWORK;
5702
5703   DrawSetupScreen();
5704 }
5705
5706 static void execSetupChooseGraphics()
5707 {
5708   setup_mode = SETUP_MODE_CHOOSE_GRAPHICS;
5709
5710   DrawSetupScreen();
5711 }
5712
5713 static void execSetupChooseSounds()
5714 {
5715   setup_mode = SETUP_MODE_CHOOSE_SOUNDS;
5716
5717   DrawSetupScreen();
5718 }
5719
5720 static void execSetupChooseMusic()
5721 {
5722   setup_mode = SETUP_MODE_CHOOSE_MUSIC;
5723
5724   DrawSetupScreen();
5725 }
5726
5727 static void execSetupInput()
5728 {
5729   setup_mode = SETUP_MODE_INPUT;
5730
5731   DrawSetupScreen();
5732 }
5733
5734 static void execSetupShortcuts()
5735 {
5736   setup_mode = SETUP_MODE_SHORTCUTS;
5737
5738   DrawSetupScreen();
5739 }
5740
5741 static void execSetupShortcuts1()
5742 {
5743   setup_mode = SETUP_MODE_SHORTCUTS_1;
5744
5745   DrawSetupScreen();
5746 }
5747
5748 static void execSetupShortcuts2()
5749 {
5750   setup_mode = SETUP_MODE_SHORTCUTS_2;
5751
5752   DrawSetupScreen();
5753 }
5754
5755 static void execSetupShortcuts3()
5756 {
5757   setup_mode = SETUP_MODE_SHORTCUTS_3;
5758
5759   DrawSetupScreen();
5760 }
5761
5762 static void execSetupShortcuts4()
5763 {
5764   setup_mode = SETUP_MODE_SHORTCUTS_4;
5765
5766   DrawSetupScreen();
5767 }
5768
5769 static void execSetupShortcuts5()
5770 {
5771   setup_mode = SETUP_MODE_SHORTCUTS_5;
5772
5773   DrawSetupScreen();
5774 }
5775
5776 static void execExitSetup()
5777 {
5778   SetGameStatus(GAME_MODE_MAIN);
5779
5780   DrawMainMenu();
5781 }
5782
5783 static void execSaveAndExitSetup()
5784 {
5785   SaveSetup();
5786   execExitSetup();
5787 }
5788
5789 static struct
5790 {
5791   void *value;
5792   void *related_value;
5793 } hide_related_entry_list[] =
5794 {
5795   { &setup.game_frame_delay,            execSetupChooseGameSpeed        },
5796   { &setup.game_frame_delay,            &game_speed_text                },
5797
5798   { &setup.scroll_delay_value,          execSetupChooseScrollDelay      },
5799   { &setup.scroll_delay_value,          &scroll_delay_text              },
5800
5801   { &setup.engine_snapshot_mode,        execSetupChooseSnapshotMode     },
5802   { &setup.engine_snapshot_mode,        &snapshot_mode_text             },
5803
5804   { &setup.window_scaling_percent,      execSetupChooseWindowSize       },
5805   { &setup.window_scaling_percent,      &window_size_text               },
5806
5807   { &setup.window_scaling_quality,      execSetupChooseScalingType      },
5808   { &setup.window_scaling_quality,      &scaling_type_text              },
5809
5810   { &setup.screen_rendering_mode,       execSetupChooseRenderingMode    },
5811   { &setup.screen_rendering_mode,       &rendering_mode_text            },
5812
5813   { &setup.graphics_set,                execSetupChooseGraphics         },
5814   { &setup.graphics_set,                &graphics_set_name              },
5815
5816   { &setup.sounds_set,                  execSetupChooseSounds           },
5817   { &setup.sounds_set,                  &sounds_set_name                },
5818
5819   { &setup.music_set,                   execSetupChooseMusic            },
5820   { &setup.music_set,                   &music_set_name                 },
5821
5822   { &setup.volume_simple,               execSetupChooseVolumeSimple     },
5823   { &setup.volume_simple,               &volume_simple_text             },
5824
5825   { &setup.volume_loops,                execSetupChooseVolumeLoops      },
5826   { &setup.volume_loops,                &volume_loops_text              },
5827
5828   { &setup.volume_music,                execSetupChooseVolumeMusic      },
5829   { &setup.volume_music,                &volume_music_text              },
5830
5831   { &setup.touch.control_type,          execSetupChooseTouchControls    },
5832   { &setup.touch.control_type,          &touch_controls_text            },
5833
5834   { &setup.touch.move_distance,         execSetupChooseMoveDistance     },
5835   { &setup.touch.move_distance,         &move_distance_text             },
5836
5837   { &setup.touch.drop_distance,         execSetupChooseDropDistance     },
5838   { &setup.touch.drop_distance,         &drop_distance_text             },
5839
5840   { &setup.touch.transparency,          execSetupChooseTransparency     },
5841   { &setup.touch.transparency,          &transparency_text              },
5842
5843   { &setup.touch.grid_xsize[0],         execSetupChooseGridXSize_0      },
5844   { &setup.touch.grid_xsize[0],         &grid_size_text[0][0]           },
5845
5846   { &setup.touch.grid_ysize[0],         execSetupChooseGridYSize_0      },
5847   { &setup.touch.grid_ysize[0],         &grid_size_text[0][1]           },
5848
5849   { &setup.touch.grid_xsize[1],         execSetupChooseGridXSize_1      },
5850   { &setup.touch.grid_xsize[1],         &grid_size_text[1][0]           },
5851
5852   { &setup.touch.grid_ysize[1],         execSetupChooseGridYSize_1      },
5853   { &setup.touch.grid_ysize[1],         &grid_size_text[1][1]           },
5854
5855   { NULL,                               NULL                            }
5856 };
5857
5858 void setHideRelatedSetupEntries()
5859 {
5860   int i;
5861
5862   for (i = 0; hide_related_entry_list[i].value != NULL; i++)
5863     if (hideSetupEntry(hide_related_entry_list[i].value))
5864       setHideSetupEntry(hide_related_entry_list[i].related_value);
5865 }
5866
5867 static struct TokenInfo setup_info_main[] =
5868 {
5869   { TYPE_ENTER_MENU,    execSetupGame,          STR_SETUP_GAME          },
5870   { TYPE_ENTER_MENU,    execSetupEditor,        STR_SETUP_EDITOR        },
5871   { TYPE_ENTER_MENU,    execSetupGraphics,      STR_SETUP_GRAPHICS      },
5872   { TYPE_ENTER_MENU,    execSetupSound,         STR_SETUP_SOUND         },
5873   { TYPE_ENTER_MENU,    execSetupArtwork,       STR_SETUP_ARTWORK       },
5874   { TYPE_ENTER_MENU,    execSetupInput,         STR_SETUP_INPUT         },
5875   { TYPE_ENTER_MENU,    execSetupTouch,         STR_SETUP_TOUCH         },
5876   { TYPE_ENTER_MENU,    execSetupShortcuts,     STR_SETUP_SHORTCUTS     },
5877   { TYPE_EMPTY,         NULL,                   ""                      },
5878   { TYPE_LEAVE_MENU,    execExitSetup,          STR_SETUP_EXIT          },
5879   { TYPE_LEAVE_MENU,    execSaveAndExitSetup,   STR_SETUP_SAVE_AND_EXIT },
5880
5881   { 0,                  NULL,                   NULL                    }
5882 };
5883
5884 static struct TokenInfo setup_info_game[] =
5885 {
5886   { TYPE_SWITCH,        &setup.team_mode,       "Team-Mode (Multi-Player):" },
5887   { TYPE_SWITCH,        &setup.network_mode,    "Network Multi-Player Mode:" },
5888   { TYPE_PLAYER,        &setup.network_player_nr,"Preferred Network Player:" },
5889   { TYPE_YES_NO,        &setup.input_on_focus,  "Only Move Focussed Player:" },
5890   { TYPE_SWITCH,        &setup.time_limit,      "Time Limit:"           },
5891   { TYPE_SWITCH,        &setup.handicap,        "Handicap:"             },
5892   { TYPE_SWITCH,        &setup.skip_levels,     "Skip Unsolved Levels:" },
5893   { TYPE_SWITCH,        &setup.increment_levels,"Increment Solved Levels:" },
5894   { TYPE_SWITCH,        &setup.auto_play_next_level,"Auto-play Next Level:" },
5895   { TYPE_SWITCH,        &setup.skip_scores_after_game,"Skip Scores After Game:" },
5896   { TYPE_SWITCH,        &setup.autorecord,      "Auto-Record Tapes:"    },
5897   { TYPE_ENTER_LIST,    execSetupChooseGameSpeed, "Game Speed:"         },
5898   { TYPE_STRING,        &game_speed_text,       ""                      },
5899 #if 1
5900   { TYPE_ENTER_LIST,    execSetupChooseScrollDelay, "Scroll Delay:"     },
5901   { TYPE_STRING,        &scroll_delay_text,     ""                      },
5902 #endif
5903   { TYPE_ENTER_LIST, execSetupChooseSnapshotMode,"Game Engine Snapshot Mode:" },
5904   { TYPE_STRING,        &snapshot_mode_text,    ""                      },
5905   { TYPE_SWITCH,        &setup.show_snapshot_buttons,"Show Snapshot Buttons:" },
5906   { TYPE_EMPTY,         NULL,                   ""                      },
5907   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
5908
5909   { 0,                  NULL,                   NULL                    }
5910 };
5911
5912 static struct TokenInfo setup_info_editor[] =
5913 {
5914 #if 0
5915   { TYPE_SWITCH,        &setup.editor.el_boulderdash,   "Boulder Dash:" },
5916   { TYPE_SWITCH,        &setup.editor.el_emerald_mine,  "Emerald Mine:" },
5917   { TYPE_SWITCH, &setup.editor.el_emerald_mine_club,    "Emerald Mine Club:" },
5918   { TYPE_SWITCH,        &setup.editor.el_more,          "Rocks'n'Diamonds:" },
5919   { TYPE_SWITCH,        &setup.editor.el_sokoban,       "Sokoban:"      },
5920   { TYPE_SWITCH,        &setup.editor.el_supaplex,      "Supaplex:"     },
5921   { TYPE_SWITCH,        &setup.editor.el_diamond_caves, "Diamond Caves II:" },
5922   { TYPE_SWITCH,        &setup.editor.el_dx_boulderdash,"DX-Boulderdash:" },
5923   { TYPE_SWITCH,        &setup.editor.el_chars,         "Text Characters:" },
5924   { TYPE_SWITCH, &setup.editor.el_steel_chars, "Text Characters (Steel):" },
5925 #endif
5926   { TYPE_SWITCH,        &setup.editor.el_classic,  "Classic Elements:" },
5927   { TYPE_SWITCH,        &setup.editor.el_custom,  "Custom & Group Elements:" },
5928 #if 0
5929   { TYPE_SWITCH,        &setup.editor.el_headlines,     "Headlines:"    },
5930 #endif
5931   { TYPE_SWITCH, &setup.editor.el_user_defined, "User defined element list:" },
5932   { TYPE_SWITCH,        &setup.editor.el_dynamic,  "Dynamic level elements:" },
5933   { TYPE_EMPTY,         NULL,                   ""                      },
5934 #if 0
5935   { TYPE_SWITCH,        &setup.editor.el_by_game,   "Show elements by game:" },
5936   { TYPE_SWITCH,        &setup.editor.el_by_type,   "Show elements by type:" },
5937   { TYPE_EMPTY,         NULL,                   ""                      },
5938 #endif
5939   { TYPE_SWITCH, &setup.editor.show_element_token,      "Show element token:" },
5940   { TYPE_EMPTY,         NULL,                   ""                      },
5941   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
5942
5943   { 0,                  NULL,                   NULL                    }
5944 };
5945
5946 static struct TokenInfo setup_info_graphics[] =
5947 {
5948 #if defined(TARGET_SDL2) && !defined(PLATFORM_ANDROID)
5949   { TYPE_SWITCH,        &setup.fullscreen,      "Fullscreen:"           },
5950   { TYPE_ENTER_LIST,    execSetupChooseWindowSize, "Window Scaling:"    },
5951   { TYPE_STRING,        &window_size_text,      ""                      },
5952   { TYPE_ENTER_LIST,    execSetupChooseScalingType, "Anti-Aliasing:"    },
5953   { TYPE_STRING,        &scaling_type_text,     ""                      },
5954   { TYPE_ENTER_LIST,    execSetupChooseRenderingMode, "Special Rendering:" },
5955   { TYPE_STRING,        &rendering_mode_text,   ""                      },
5956 #endif
5957 #if 0
5958   { TYPE_ENTER_LIST,    execSetupChooseScrollDelay, "Scroll Delay:"     },
5959   { TYPE_STRING,        &scroll_delay_text,     ""                      },
5960 #endif
5961   { TYPE_SWITCH,        &setup.fade_screens,    "Fade Screens:"         },
5962   { TYPE_SWITCH,        &setup.quick_switch,    "Quick Player Focus Switch:" },
5963   { TYPE_SWITCH,        &setup.quick_doors,     "Quick Menu Doors:"     },
5964   { TYPE_SWITCH,        &setup.show_titlescreen,"Show Title Screens:"   },
5965   { TYPE_SWITCH,        &setup.toons,           "Show Menu Animations:" },
5966   { TYPE_ECS_AGA,       &setup.prefer_aga_graphics,"EMC graphics preference:" },
5967   { TYPE_SWITCH, &setup.sp_show_border_elements,"Supaplex Border Elements:" },
5968   { TYPE_SWITCH,        &setup.small_game_graphics, "Small Game Graphics:" },
5969   { TYPE_EMPTY,         NULL,                   ""                      },
5970   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
5971
5972   { 0,                  NULL,                   NULL                    }
5973 };
5974
5975 static struct TokenInfo setup_info_sound[] =
5976 {
5977   { TYPE_SWITCH,        &setup.sound_simple,    "Sound Effects (Normal):"  },
5978   { TYPE_SWITCH,        &setup.sound_loops,     "Sound Effects (Looping):" },
5979   { TYPE_SWITCH,        &setup.sound_music,     "Music:"                },
5980   { TYPE_EMPTY,         NULL,                   ""                      },
5981   { TYPE_ENTER_LIST,    execSetupChooseVolumeSimple, "Sound Volume (Normal):" },
5982   { TYPE_STRING,        &volume_simple_text,    ""                      },
5983   { TYPE_ENTER_LIST,    execSetupChooseVolumeLoops, "Sound Volume (Looping):" },
5984   { TYPE_STRING,        &volume_loops_text,     ""                      },
5985   { TYPE_ENTER_LIST,    execSetupChooseVolumeMusic, "Music Volume:"     },
5986   { TYPE_STRING,        &volume_music_text,     ""                      },
5987   { TYPE_EMPTY,         NULL,                   ""                      },
5988   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
5989
5990   { 0,                  NULL,                   NULL                    }
5991 };
5992
5993 static struct TokenInfo setup_info_artwork[] =
5994 {
5995   { TYPE_ENTER_LIST,    execSetupChooseGraphics,"Custom Graphics:"      },
5996   { TYPE_STRING,        &graphics_set_name,     ""                      },
5997   { TYPE_ENTER_LIST,    execSetupChooseSounds,  "Custom Sounds:"        },
5998   { TYPE_STRING,        &sounds_set_name,       ""                      },
5999   { TYPE_ENTER_LIST,    execSetupChooseMusic,   "Custom Music:"         },
6000   { TYPE_STRING,        &music_set_name,        ""                      },
6001   { TYPE_EMPTY,         NULL,                   ""                      },
6002   { TYPE_YES_NO_AUTO,&setup.override_level_graphics,"Override Level Graphics:"},
6003   { TYPE_YES_NO_AUTO,&setup.override_level_sounds,  "Override Level Sounds:"  },
6004   { TYPE_YES_NO_AUTO,&setup.override_level_music,   "Override Level Music:"   },
6005   { TYPE_EMPTY,         NULL,                   ""                      },
6006   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
6007
6008   { 0,                  NULL,                   NULL                    }
6009 };
6010
6011 static struct TokenInfo setup_info_input[] =
6012 {
6013   { TYPE_SWITCH,        NULL,                   "Player:"               },
6014   { TYPE_SWITCH,        NULL,                   "Device:"               },
6015   { TYPE_SWITCH,        NULL,                   ""                      },
6016   { TYPE_SKIPPABLE,     NULL,                   ""                      },
6017   { TYPE_EMPTY,         NULL,                   ""                      },
6018   { TYPE_EMPTY,         NULL,                   ""                      },
6019   { TYPE_EMPTY,         NULL,                   ""                      },
6020   { TYPE_EMPTY,         NULL,                   ""                      },
6021   { TYPE_EMPTY,         NULL,                   ""                      },
6022   { TYPE_EMPTY,         NULL,                   ""                      },
6023   { TYPE_EMPTY,         NULL,                   ""                      },
6024   { TYPE_EMPTY,         NULL,                   ""                      },
6025   { TYPE_SKIPPABLE,     NULL,                   ""                      },
6026   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
6027
6028   { 0,                  NULL,                   NULL                    }
6029 };
6030
6031 static struct TokenInfo setup_info_touch[] =
6032 {
6033   { TYPE_ENTER_LIST,    execSetupChooseTouchControls, "Touch Control Type:" },
6034   { TYPE_STRING,        &touch_controls_text,   ""                      },
6035   { TYPE_EMPTY,         NULL,                   ""                      },
6036   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
6037
6038   { 0,                  NULL,                   NULL                    }
6039 };
6040
6041 static struct TokenInfo setup_info_touch_virtual_buttons_0[] =
6042 {
6043   { TYPE_ENTER_LIST,    execSetupChooseTouchControls, "Touch Control Type:" },
6044   { TYPE_STRING,        &touch_controls_text,   ""                      },
6045   { TYPE_EMPTY,         NULL,                   ""                      },
6046   { TYPE_ENTER_LIST,    execSetupChooseGridXSize_0, "Horizontal Buttons (Landscape):"   },
6047   { TYPE_STRING,        &grid_size_text[0][0],  ""                      },
6048   { TYPE_ENTER_LIST,    execSetupChooseGridYSize_0, "Vertical Buttons (Landscape):"     },
6049   { TYPE_STRING,        &grid_size_text[0][1],  ""                      },
6050   { TYPE_ENTER_LIST,    execSetupChooseTransparency, "Button Transparency:" },
6051   { TYPE_STRING,        &transparency_text,     ""                      },
6052   { TYPE_SWITCH,        &setup.touch.draw_outlined, "Draw Buttons Outlined:" },
6053   { TYPE_SWITCH,        &setup.touch.draw_pressed, "Highlight Pressed Buttons:" },
6054   { TYPE_EMPTY,         NULL,                   ""                      },
6055   { TYPE_ENTER_LIST,    execSetupConfigureVirtualButtons, "Configure Virtual Buttons" },
6056   { TYPE_EMPTY,         NULL,                   ""                      },
6057   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
6058
6059   { 0,                  NULL,                   NULL                    }
6060 };
6061
6062 static struct TokenInfo setup_info_touch_virtual_buttons_1[] =
6063 {
6064   { TYPE_ENTER_LIST,    execSetupChooseTouchControls, "Touch Control Type:" },
6065   { TYPE_STRING,        &touch_controls_text,   ""                      },
6066   { TYPE_EMPTY,         NULL,                   ""                      },
6067   { TYPE_ENTER_LIST,    execSetupChooseGridXSize_1, "Horizontal Buttons (Portrait):"    },
6068   { TYPE_STRING,        &grid_size_text[1][0],  ""                      },
6069   { TYPE_ENTER_LIST,    execSetupChooseGridYSize_1, "Vertical Buttons (Portrait):"      },
6070   { TYPE_STRING,        &grid_size_text[1][1],  ""                      },
6071   { TYPE_ENTER_LIST,    execSetupChooseTransparency, "Button Transparency:" },
6072   { TYPE_STRING,        &transparency_text,     ""                      },
6073   { TYPE_SWITCH,        &setup.touch.draw_outlined, "Draw Buttons Outlined:" },
6074   { TYPE_SWITCH,        &setup.touch.draw_pressed, "Highlight Pressed Buttons:" },
6075   { TYPE_EMPTY,         NULL,                   ""                      },
6076   { TYPE_ENTER_LIST,    execSetupConfigureVirtualButtons, "Configure Virtual Buttons" },
6077   { TYPE_EMPTY,         NULL,                   ""                      },
6078   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
6079
6080   { 0,                  NULL,                   NULL                    }
6081 };
6082
6083 static struct TokenInfo *setup_info_touch_virtual_buttons[] =
6084 {
6085   setup_info_touch_virtual_buttons_0,
6086   setup_info_touch_virtual_buttons_1
6087 };
6088
6089 static struct TokenInfo setup_info_touch_wipe_gestures[] =
6090 {
6091   { TYPE_ENTER_LIST,    execSetupChooseTouchControls, "Touch Control Type:" },
6092   { TYPE_STRING,        &touch_controls_text,   ""                      },
6093   { TYPE_EMPTY,         NULL,                   ""                      },
6094   { TYPE_ENTER_LIST,    execSetupChooseMoveDistance, "Move Trigger Distance:" },
6095   { TYPE_STRING,        &move_distance_text,    ""                      },
6096   { TYPE_ENTER_LIST,    execSetupChooseDropDistance, "Drop Trigger Distance:" },
6097   { TYPE_STRING,        &drop_distance_text,    ""                      },
6098   { TYPE_EMPTY,         NULL,                   ""                      },
6099   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
6100
6101   { 0,                  NULL,                   NULL                    }
6102 };
6103
6104 static struct TokenInfo setup_info_shortcuts[] =
6105 {
6106   { TYPE_ENTER_MENU,    execSetupShortcuts1,    "Various Keys"          },
6107   { TYPE_ENTER_MENU,    execSetupShortcuts2,    "Player Focus"          },
6108   { TYPE_ENTER_MENU,    execSetupShortcuts3,    "Tape Buttons"          },
6109   { TYPE_ENTER_MENU,    execSetupShortcuts4,    "Sound & Music"         },
6110   { TYPE_ENTER_MENU,    execSetupShortcuts5,    "TAS Snap Keys"         },
6111   { TYPE_EMPTY,         NULL,                   ""                      },
6112   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
6113
6114   { 0,                  NULL,                   NULL                    }
6115 };
6116
6117 static struct TokenInfo setup_info_shortcuts_1[] =
6118 {
6119   { TYPE_KEYTEXT,       NULL,           "Quick Save Game to Tape:",     },
6120   { TYPE_KEY,           &setup.shortcut.save_game, ""                   },
6121   { TYPE_KEYTEXT,       NULL,           "Quick Load Game from Tape:",   },
6122   { TYPE_KEY,           &setup.shortcut.load_game, ""                   },
6123   { TYPE_KEYTEXT,       NULL,           "Start Game & Toggle Pause:",   },
6124   { TYPE_KEY,           &setup.shortcut.toggle_pause, ""                },
6125   { TYPE_EMPTY,         NULL,                   ""                      },
6126   { TYPE_YES_NO,        &setup.ask_on_escape,   "Ask on 'Esc' Key:"     },
6127   { TYPE_YES_NO, &setup.ask_on_escape_editor,   "Ask on 'Esc' Key (Editor):" },
6128   { TYPE_EMPTY,         NULL,                   ""                      },
6129   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
6130
6131   { 0,                  NULL,                   NULL                    }
6132 };
6133
6134 static struct TokenInfo setup_info_shortcuts_2[] =
6135 {
6136   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 1:",       },
6137   { TYPE_KEY,           &setup.shortcut.focus_player[0], ""             },
6138   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 2:",       },
6139   { TYPE_KEY,           &setup.shortcut.focus_player[1], ""             },
6140   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 3:",       },
6141   { TYPE_KEY,           &setup.shortcut.focus_player[2], ""             },
6142   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 4:",       },
6143   { TYPE_KEY,           &setup.shortcut.focus_player[3], ""             },
6144   { TYPE_KEYTEXT,       NULL,           "Set Focus to All Players:",    },
6145   { TYPE_KEY,           &setup.shortcut.focus_player_all, ""            },
6146   { TYPE_EMPTY,         NULL,                   ""                      },
6147   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
6148
6149   { 0,                  NULL,                   NULL                    }
6150 };
6151
6152 static struct TokenInfo setup_info_shortcuts_3[] =
6153 {
6154   { TYPE_KEYTEXT,       NULL,                   "Eject Tape:",          },
6155   { TYPE_KEY,           &setup.shortcut.tape_eject, ""                  },
6156   { TYPE_KEYTEXT,       NULL,                   "Warp / Single Step:",  },
6157   { TYPE_KEY,           &setup.shortcut.tape_extra, ""                  },
6158   { TYPE_KEYTEXT,       NULL,                   "Stop Tape:",           },
6159   { TYPE_KEY,           &setup.shortcut.tape_stop, ""                   },
6160   { TYPE_KEYTEXT,       NULL,                   "Pause / Unpause Tape:",},
6161   { TYPE_KEY,           &setup.shortcut.tape_pause, ""                  },
6162   { TYPE_KEYTEXT,       NULL,                   "Record Tape:",         },
6163   { TYPE_KEY,           &setup.shortcut.tape_record, ""                 },
6164   { TYPE_KEYTEXT,       NULL,                   "Play Tape:",           },
6165   { TYPE_KEY,           &setup.shortcut.tape_play, ""                   },
6166   { TYPE_EMPTY,         NULL,                   ""                      },
6167   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
6168
6169   { 0,                  NULL,                   NULL                    }
6170 };
6171
6172 static struct TokenInfo setup_info_shortcuts_4[] =
6173 {
6174   { TYPE_KEYTEXT,       NULL,           "Toggle Sound Effects (Normal):", },
6175   { TYPE_KEY,           &setup.shortcut.sound_simple, ""                },
6176   { TYPE_KEYTEXT,       NULL,           "Toggle Sound Effects (Looping):", },
6177   { TYPE_KEY,           &setup.shortcut.sound_loops, ""                 },
6178   { TYPE_KEYTEXT,       NULL,           "Toggle Music:",                },
6179   { TYPE_KEY,           &setup.shortcut.sound_music, ""                 },
6180   { TYPE_EMPTY,         NULL,                   ""                      },
6181   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
6182
6183   { 0,                  NULL,                   NULL                    }
6184 };
6185
6186 static struct TokenInfo setup_info_shortcuts_5[] =
6187 {
6188   { TYPE_KEYTEXT,       NULL,                   "Snap Left:",           },
6189   { TYPE_KEY,           &setup.shortcut.snap_left, ""                   },
6190   { TYPE_KEYTEXT,       NULL,                   "Snap Right:",          },
6191   { TYPE_KEY,           &setup.shortcut.snap_right, ""                  },
6192   { TYPE_KEYTEXT,       NULL,                   "Snap Up:",             },
6193   { TYPE_KEY,           &setup.shortcut.snap_up, ""                     },
6194   { TYPE_KEYTEXT,       NULL,                   "Snap Down:",           },
6195   { TYPE_KEY,           &setup.shortcut.snap_down, ""                   },
6196   { TYPE_EMPTY,         NULL,                   ""                      },
6197   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
6198
6199   { 0,                  NULL,                   NULL                    }
6200 };
6201
6202 static Key getSetupKey()
6203 {
6204   Key key = KSYM_UNDEFINED;
6205   boolean got_key_event = FALSE;
6206
6207   while (!got_key_event)
6208   {
6209     Event event;
6210
6211     if (NextValidEvent(&event))
6212     {
6213       switch (event.type)
6214       {
6215         case EVENT_KEYPRESS:
6216           {
6217             key = GetEventKey((KeyEvent *)&event, TRUE);
6218
6219             /* press 'Escape' or 'Enter' to keep the existing key binding */
6220             if (key == KSYM_Escape || key == KSYM_Return)
6221               key = KSYM_UNDEFINED;     /* keep old value */
6222
6223             got_key_event = TRUE;
6224           }
6225           break;
6226
6227         case EVENT_KEYRELEASE:
6228           key_joystick_mapping = 0;
6229           break;
6230
6231         default:
6232           HandleOtherEvents(&event);
6233           break;
6234       }
6235     }
6236
6237     BackToFront();
6238   }
6239
6240   return key;
6241 }
6242
6243 static int getSetupValueFont(int type, void *value)
6244 {
6245   if (type & TYPE_GHOSTED)
6246     return FONT_OPTION_OFF;
6247   else if (type & TYPE_KEY)
6248     return (type & TYPE_QUERY ? FONT_INPUT_1_ACTIVE : FONT_VALUE_1);
6249   else if (type & TYPE_STRING)
6250     return FONT_VALUE_2;
6251   else if (type & TYPE_ECS_AGA)
6252     return FONT_VALUE_1;
6253   else if (type & TYPE_BOOLEAN_STYLE)
6254     return (*(boolean *)value ? FONT_OPTION_ON : FONT_OPTION_OFF);
6255   else if (type & TYPE_YES_NO_AUTO)
6256     return (*(int *)value == AUTO  ? FONT_OPTION_ON :
6257             *(int *)value == FALSE ? FONT_OPTION_OFF : FONT_OPTION_ON);
6258   else if (type & TYPE_PLAYER)
6259     return FONT_VALUE_1;
6260   else
6261     return FONT_VALUE_1;
6262 }
6263
6264 static int getSetupValueFontNarrow(int type, int font_nr)
6265 {
6266   return (font_nr == FONT_VALUE_1    ? FONT_VALUE_NARROW :
6267           font_nr == FONT_OPTION_ON  ? FONT_OPTION_ON_NARROW :
6268           font_nr == FONT_OPTION_OFF ? FONT_OPTION_OFF_NARROW :
6269           font_nr);
6270 }
6271
6272 static void drawSetupValue(int screen_pos, int setup_info_pos_raw)
6273 {
6274   int si_pos = (setup_info_pos_raw < 0 ? screen_pos : setup_info_pos_raw);
6275   struct TokenInfo *si = &setup_info[si_pos];
6276   boolean font_draw_xoffset_modified = FALSE;
6277   boolean scrollbar_needed = (num_setup_info < max_setup_info);
6278   int font_draw_xoffset_old = -1;
6279   int xoffset = (scrollbar_needed ? -1 : 0);
6280   int menu_screen_value_xpos = MENU_SCREEN_VALUE_XPOS + xoffset;
6281   int menu_screen_max_xpos = MENU_SCREEN_MAX_XPOS + xoffset;
6282   int xpos = menu_screen_value_xpos;
6283   int ypos = MENU_SCREEN_START_YPOS + screen_pos;
6284   int startx = mSX + xpos * 32;
6285   int starty = mSY + ypos * 32;
6286   int font_nr, font_nr_default, font_width_default;
6287   int type = si->type;
6288   void *value = si->value;
6289   char *value_string = getSetupValue(type, value);
6290   int i;
6291
6292   if (value_string == NULL)
6293     return;
6294
6295   if (type & TYPE_KEY)
6296   {
6297     xpos = MENU_SCREEN_START_XPOS;
6298
6299     if (type & TYPE_QUERY)
6300       value_string = "<press key>";
6301   }
6302   else if (type & TYPE_STRING)
6303   {
6304     int max_value_len = (SCR_FIELDX - 2) * 2;
6305
6306     xpos = MENU_SCREEN_START_XPOS;
6307
6308     if (strlen(value_string) > max_value_len)
6309       value_string[max_value_len] = '\0';
6310   }
6311   else if (type & TYPE_YES_NO_AUTO)
6312   {
6313     xpos = menu_screen_value_xpos - 1;
6314   }
6315   else if (type & TYPE_PLAYER)
6316   {
6317     int displayed_player_nr = *(int *)value + 1;
6318
6319     value_string = getSetupValue(TYPE_INTEGER, (void *)&displayed_player_nr);
6320   }
6321
6322   startx = mSX + xpos * 32;
6323   starty = mSY + ypos * 32;
6324   font_nr_default = getSetupValueFont(type, value);
6325   font_width_default = getFontWidth(font_nr_default);
6326
6327   font_nr = font_nr_default;
6328
6329   // special check if right-side setup values moved left due to scrollbar
6330   if (scrollbar_needed && xpos > MENU_SCREEN_START_XPOS)
6331   {
6332     int max_menu_text_length = 26;      // maximum text length for classic menu
6333     int font_xoffset = getFontBitmapInfo(font_nr)->draw_xoffset;
6334     int text_startx = mSX + MENU_SCREEN_START_XPOS * 32;
6335     int text_font_nr = getMenuTextFont(FONT_MENU_2);
6336     int text_font_xoffset = getFontBitmapInfo(text_font_nr)->draw_xoffset;
6337     int text_width = max_menu_text_length * getFontWidth(text_font_nr);
6338
6339     if (startx + font_xoffset < text_startx + text_width + text_font_xoffset)
6340     {
6341       xpos += 1;
6342       startx = mSX + xpos * 32;
6343
6344       font_nr = getSetupValueFontNarrow(type, font_nr);
6345     }
6346   }
6347
6348   /* downward compatibility correction for Juergen Bonhagen's menu settings */
6349   if (setup_mode != SETUP_MODE_INPUT)
6350   {
6351     int max_menu_text_length_big = (menu_screen_value_xpos -
6352                                     MENU_SCREEN_START_XPOS);
6353     int max_menu_text_length_medium = max_menu_text_length_big * 2;
6354     int check_font_nr = FONT_OPTION_ON; /* known font that needs correction */
6355     int font1_xoffset = getFontBitmapInfo(font_nr)->draw_xoffset;
6356     int font2_xoffset = getFontBitmapInfo(check_font_nr)->draw_xoffset;
6357     int text_startx = mSX + MENU_SCREEN_START_XPOS * 32;
6358     int text_font_nr = getMenuTextFont(FONT_MENU_2);
6359     int text_font_xoffset = getFontBitmapInfo(text_font_nr)->draw_xoffset;
6360     int text_width = max_menu_text_length_medium * getFontWidth(text_font_nr);
6361     boolean correct_font_draw_xoffset = FALSE;
6362
6363     if (xpos == MENU_SCREEN_START_XPOS &&
6364         startx + font1_xoffset < text_startx + text_font_xoffset)
6365       correct_font_draw_xoffset = TRUE;
6366
6367     if (xpos == menu_screen_value_xpos &&
6368         startx + font2_xoffset < text_startx + text_width + text_font_xoffset)
6369       correct_font_draw_xoffset = TRUE;
6370
6371     /* check if setup value would overlap with setup text when printed */
6372     /* (this can happen for extreme/wrong values for font draw offset) */
6373     if (correct_font_draw_xoffset)
6374     {
6375       font_draw_xoffset_old = getFontBitmapInfo(font_nr)->draw_xoffset;
6376       font_draw_xoffset_modified = TRUE;
6377
6378       if (type & TYPE_KEY)
6379         getFontBitmapInfo(font_nr)->draw_xoffset += 2 * getFontWidth(font_nr);
6380       else if (!(type & TYPE_STRING))
6381         getFontBitmapInfo(font_nr)->draw_xoffset = text_font_xoffset + 20 -
6382           max_menu_text_length_medium * (16 - getFontWidth(text_font_nr));
6383     }
6384   }
6385
6386   for (i = 0; i <= menu_screen_max_xpos - xpos; i++)
6387     DrawText(startx + i * font_width_default, starty, " ", font_nr_default);
6388
6389   DrawText(startx, starty, value_string, font_nr);
6390
6391   if (type & TYPE_PLAYER)
6392   {
6393     int player_nr = *(int *)value;
6394     int xoff = getFontWidth(font_nr);
6395
6396     DrawFixedGraphicThruMaskExt(drawto, startx + xoff, starty,
6397                                 PLAYER_NR_GFX(IMG_PLAYER_1, player_nr), 0);
6398   }
6399
6400   if (font_draw_xoffset_modified)
6401     getFontBitmapInfo(font_nr)->draw_xoffset = font_draw_xoffset_old;
6402 }
6403
6404 static void changeSetupValue(int screen_pos, int setup_info_pos_raw, int dx)
6405 {
6406   int si_pos = (setup_info_pos_raw < 0 ? screen_pos : setup_info_pos_raw);
6407   struct TokenInfo *si = &setup_info[si_pos];
6408
6409   if (si->type & TYPE_BOOLEAN_STYLE)
6410   {
6411     *(boolean *)si->value ^= TRUE;
6412   }
6413   else if (si->type & TYPE_YES_NO_AUTO)
6414   {
6415     *(int *)si->value =
6416       (dx == -1 ?
6417        (*(int *)si->value == AUTO ? TRUE :
6418         *(int *)si->value == TRUE ? FALSE : AUTO) :
6419        (*(int *)si->value == TRUE ? AUTO :
6420         *(int *)si->value == AUTO ? FALSE : TRUE));
6421   }
6422   else if (si->type & TYPE_KEY)
6423   {
6424     Key key;
6425
6426     si->type |= TYPE_QUERY;
6427     drawSetupValue(screen_pos, setup_info_pos_raw);
6428     si->type &= ~TYPE_QUERY;
6429
6430     key = getSetupKey();
6431     if (key != KSYM_UNDEFINED)
6432       *(Key *)si->value = key;
6433   }
6434   else if (si->type & TYPE_PLAYER)
6435   {
6436     int player_nr = *(int *)si->value;
6437
6438     if (dx)
6439       player_nr += dx;
6440     else
6441       player_nr = Request("Choose player", REQ_PLAYER) - 1;
6442
6443     *(int *)si->value = MIN(MAX(0, player_nr), MAX_PLAYERS - 1);
6444   }
6445
6446   drawSetupValue(screen_pos, setup_info_pos_raw);
6447
6448   // fullscreen state may have changed at this point
6449   if (si->value == &setup.fullscreen)
6450     ToggleFullscreenOrChangeWindowScalingIfNeeded();
6451
6452   if (si->value == &setup.network_mode &&
6453       setup.network_mode != network.enabled)
6454   {
6455     network.enabled = setup.network_mode;
6456
6457     FadeOut(REDRAW_ALL);
6458
6459     ClearField();
6460
6461     FadeIn(REDRAW_ALL);
6462
6463     if (network.enabled)
6464       InitNetworkServer();
6465     else
6466       DisconnectFromNetworkServer();
6467
6468     DrawSetupScreen();
6469   }
6470 }
6471
6472 static struct TokenInfo *getSetupInfoFinal(struct TokenInfo *setup_info_orig)
6473 {
6474   static struct TokenInfo *setup_info_final = NULL;
6475   int list_size = 0;
6476   int list_pos = 0;
6477   int i;
6478
6479   /* determine maximum list size of target list */
6480   while (setup_info_orig[list_size++].type != 0);
6481
6482   /* free, allocate and clear memory for target list */
6483   checked_free(setup_info_final);
6484   setup_info_final = checked_calloc(list_size * sizeof(struct TokenInfo));
6485
6486   /* copy setup info list without setup entries marked as hidden */
6487   for (i = 0; setup_info_orig[i].type != 0; i++)
6488   {
6489     /* skip setup entries configured to be hidden */
6490     if (hideSetupEntry(setup_info_orig[i].value))
6491       continue;
6492
6493     /* skip skippable setup entries if screen is lower than usual */
6494     if (SCR_FIELDY < SCR_FIELDY_DEFAULT &&
6495         setup_info_orig[i].type == TYPE_SKIPPABLE)
6496       continue;
6497
6498     setup_info_final[list_pos++] = setup_info_orig[i];
6499   }
6500
6501   return setup_info_final;
6502 }
6503
6504 static void DrawSetupScreen_Generic()
6505 {
6506   int fade_mask = REDRAW_FIELD;
6507   boolean redraw_all = FALSE;
6508   char *title_string = NULL;
6509   int i;
6510
6511   if (CheckIfGlobalBorderOrPlayfieldViewportHasChanged())
6512     fade_mask = REDRAW_ALL;
6513
6514   UnmapAllGadgets();
6515   FadeMenuSoundsAndMusic();
6516
6517   FreeScreenGadgets();
6518   CreateScreenGadgets();
6519
6520   if (redraw_mask & REDRAW_ALL)
6521     redraw_all = TRUE;
6522
6523   FadeOut(fade_mask);
6524
6525   /* needed if different viewport properties defined for setup screen */
6526   ChangeViewportPropertiesIfNeeded();
6527
6528   SetMainBackgroundImage(IMG_BACKGROUND_SETUP);
6529
6530   ClearField();
6531
6532   OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
6533
6534   if (setup_mode == SETUP_MODE_MAIN)
6535   {
6536     setup_info = setup_info_main;
6537     title_string = STR_SETUP_MAIN;
6538   }
6539   else if (setup_mode == SETUP_MODE_GAME)
6540   {
6541     setup_info = setup_info_game;
6542     title_string = STR_SETUP_GAME;
6543   }
6544   else if (setup_mode == SETUP_MODE_EDITOR)
6545   {
6546     setup_info = setup_info_editor;
6547     title_string = STR_SETUP_EDITOR;
6548   }
6549   else if (setup_mode == SETUP_MODE_GRAPHICS)
6550   {
6551     setup_info = setup_info_graphics;
6552     title_string = STR_SETUP_GRAPHICS;
6553   }
6554   else if (setup_mode == SETUP_MODE_SOUND)
6555   {
6556     setup_info = setup_info_sound;
6557     title_string = STR_SETUP_SOUND;
6558   }
6559   else if (setup_mode == SETUP_MODE_ARTWORK)
6560   {
6561     setup_info = setup_info_artwork;
6562     title_string = STR_SETUP_ARTWORK;
6563   }
6564   else if (setup_mode == SETUP_MODE_TOUCH)
6565   {
6566     setup_info = setup_info_touch;
6567     title_string = STR_SETUP_TOUCH;
6568
6569     if (strEqual(setup.touch.control_type, TOUCH_CONTROL_VIRTUAL_BUTTONS))
6570       setup_info = setup_info_touch_virtual_buttons[GRID_ACTIVE_NR()];
6571     else if (strEqual(setup.touch.control_type, TOUCH_CONTROL_WIPE_GESTURES))
6572       setup_info = setup_info_touch_wipe_gestures;
6573   }
6574   else if (setup_mode == SETUP_MODE_SHORTCUTS)
6575   {
6576     setup_info = setup_info_shortcuts;
6577     title_string = STR_SETUP_SHORTCUTS;
6578   }
6579   else if (setup_mode == SETUP_MODE_SHORTCUTS_1)
6580   {
6581     setup_info = setup_info_shortcuts_1;
6582     title_string = STR_SETUP_SHORTCUTS;
6583   }
6584   else if (setup_mode == SETUP_MODE_SHORTCUTS_2)
6585   {
6586     setup_info = setup_info_shortcuts_2;
6587     title_string = STR_SETUP_SHORTCUTS;
6588   }
6589   else if (setup_mode == SETUP_MODE_SHORTCUTS_3)
6590   {
6591     setup_info = setup_info_shortcuts_3;
6592     title_string = STR_SETUP_SHORTCUTS;
6593   }
6594   else if (setup_mode == SETUP_MODE_SHORTCUTS_4)
6595   {
6596     setup_info = setup_info_shortcuts_4;
6597     title_string = STR_SETUP_SHORTCUTS;
6598   }
6599   else if (setup_mode == SETUP_MODE_SHORTCUTS_5)
6600   {
6601     setup_info = setup_info_shortcuts_5;
6602     title_string = STR_SETUP_SHORTCUTS;
6603   }
6604
6605   /* use modified setup info without setup entries marked as hidden */
6606   setup_info = getSetupInfoFinal(setup_info);
6607
6608   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, title_string);
6609
6610   // determine maximal number of setup entries that can be displayed on screen
6611   num_setup_info = 0;
6612   for (i = 0; setup_info[i].type != 0 && i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
6613     num_setup_info++;
6614
6615   // determine maximal number of setup entries available for this setup screen
6616   max_setup_info = 0;
6617   for (i = 0; setup_info[i].type != 0; i++)
6618     max_setup_info++;
6619
6620   HandleSetupScreen_Generic(0, 0, 0, 0, MB_MENU_INITIALIZE);
6621
6622   MapScreenGadgets(max_setup_info);
6623
6624   if (redraw_all)
6625     redraw_mask = fade_mask = REDRAW_ALL;
6626
6627   DrawMaskedBorder(fade_mask);
6628
6629   FadeIn(fade_mask);
6630 }
6631
6632 void HandleSetupScreen_Generic(int mx, int my, int dx, int dy, int button)
6633 {
6634   menu_info = setup_info;
6635
6636   HandleMenuScreen(mx, my, dx, dy, button,
6637                    setup_mode, num_setup_info, max_setup_info);
6638 }
6639
6640 void DrawSetupScreen_Input()
6641 {
6642   int i;
6643
6644   FadeOut(REDRAW_FIELD);
6645
6646   ClearField();
6647
6648   setup_info = getSetupInfoFinal(setup_info_input);
6649
6650   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, STR_SETUP_INPUT);
6651
6652   for (i = 0; setup_info[i].type != 0; i++)
6653   {
6654     if (setup_info[i].type & (TYPE_ENTER_MENU|TYPE_ENTER_LIST))
6655       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
6656     else if (setup_info[i].type & (TYPE_LEAVE_MENU|TYPE_LEAVE_LIST))
6657       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
6658     else if (setup_info[i].type & ~TYPE_SKIP_ENTRY)
6659       initCursor(i, IMG_MENU_BUTTON);
6660
6661     DrawCursorAndText_Setup(i, -1, FALSE);
6662   }
6663
6664   /* create gadgets for setup input menu screen */
6665   FreeScreenGadgets();
6666   CreateScreenGadgets();
6667
6668   /* map gadgets for setup input menu screen */
6669   MapScreenMenuGadgets(SCREEN_MASK_INPUT);
6670
6671   HandleSetupScreen_Input(0, 0, 0, 0, MB_MENU_INITIALIZE);
6672
6673   FadeIn(REDRAW_FIELD);
6674 }
6675
6676 static void setJoystickDeviceToNr(char *device_name, int device_nr)
6677 {
6678   if (device_name == NULL)
6679     return;
6680
6681   if (device_nr < 0 || device_nr >= MAX_PLAYERS)
6682     device_nr = 0;
6683
6684   if (strlen(device_name) > 1)
6685   {
6686     char c1 = device_name[strlen(device_name) - 1];
6687     char c2 = device_name[strlen(device_name) - 2];
6688
6689     if (c1 >= '0' && c1 <= '9' && !(c2 >= '0' && c2 <= '9'))
6690       device_name[strlen(device_name) - 1] = '0' + (char)(device_nr % 10);
6691   }
6692   else
6693     strncpy(device_name, getDeviceNameFromJoystickNr(device_nr),
6694             strlen(device_name));
6695 }
6696
6697 static void drawPlayerSetupInputInfo(int player_nr, boolean active)
6698 {
6699   int i;
6700   static struct SetupKeyboardInfo custom_key;
6701   static struct
6702   {
6703     Key *key;
6704     char *text;
6705   } custom[] =
6706   {
6707     { &custom_key.left,  "Axis/Pad Left"  },
6708     { &custom_key.right, "Axis/Pad Right" },
6709     { &custom_key.up,    "Axis/Pad Up"    },
6710     { &custom_key.down,  "Axis/Pad Down"  },
6711     { &custom_key.snap,  "Button 1/A/X"   },
6712     { &custom_key.drop,  "Button 2/B/Y"   }
6713   };
6714   static char *joystick_name[MAX_PLAYERS] =
6715   {
6716     "Joystick1",
6717     "Joystick2",
6718     "Joystick3",
6719     "Joystick4"
6720   };
6721   int font_nr_menu = (active ? FONT_MENU_1_ACTIVE : FONT_MENU_1);
6722   int font_nr_info = FONT_MENU_1;
6723   int font_nr_name = FONT_VALUE_OLD;
6724   int font_nr_on   = FONT_VALUE_1;
6725   int font_nr_off  = FONT_VALUE_OLD;
6726   int pos = 4;
6727
6728   if (SCR_FIELDX < SCR_FIELDX_DEFAULT)
6729   {
6730     font_nr_info = FONT_MENU_2;
6731     font_nr_on   = FONT_VALUE_NARROW;
6732     font_nr_off  = FONT_VALUE_OLD_NARROW;
6733   }
6734
6735   custom_key = setup.input[player_nr].key;
6736
6737   DrawText(mSX + 11 * 32, mSY + 2 * 32, int2str(player_nr + 1, 1),
6738            FONT_INPUT_1_ACTIVE);
6739
6740   ClearRectangleOnBackground(drawto, mSX + 8 * TILEX, mSY + 2 * TILEY,
6741                              TILEX, TILEY);
6742   DrawFixedGraphicThruMaskExt(drawto, mSX + 8 * TILEX, mSY + 2 * TILEY,
6743                               PLAYER_NR_GFX(IMG_PLAYER_1, player_nr), 0);
6744
6745   if (setup.input[player_nr].use_joystick)
6746   {
6747     char *device_name = setup.input[player_nr].joy.device_name;
6748     int joystick_nr = getJoystickNrFromDeviceName(device_name);
6749     boolean joystick_active = CheckJoystickOpened(joystick_nr);
6750     char *text = joystick_name[joystick_nr];
6751     int font_nr = (joystick_active ? font_nr_on : font_nr_off);
6752
6753     DrawText(mSX + 8 * 32, mSY + 3 * 32, text, font_nr);
6754     DrawText(mSX + 32, mSY + 4 * 32, "Configure", font_nr_menu);
6755   }
6756   else
6757   {
6758     DrawText(mSX + 8 * 32, mSY + 3 * 32, "Keyboard ", font_nr_on);
6759     DrawText(mSX + 1 * 32, mSY + 4 * 32, "Customize", font_nr_menu);
6760   }
6761
6762   if (SCR_FIELDY >= SCR_FIELDY_DEFAULT)
6763     DrawText(mSX + 32, mSY + 5 * 32, "Actual Settings:", font_nr_info);
6764   else
6765     pos = 3;
6766
6767   drawCursorXY(1, pos + 0, IMG_MENU_BUTTON_LEFT);
6768   drawCursorXY(1, pos + 1, IMG_MENU_BUTTON_RIGHT);
6769   drawCursorXY(1, pos + 2, IMG_MENU_BUTTON_UP);
6770   drawCursorXY(1, pos + 3, IMG_MENU_BUTTON_DOWN);
6771
6772   DrawText(mSX + 2 * 32, mSY + (pos + 2) * 32, ":", font_nr_name);
6773   DrawText(mSX + 2 * 32, mSY + (pos + 3) * 32, ":", font_nr_name);
6774   DrawText(mSX + 2 * 32, mSY + (pos + 4) * 32, ":", font_nr_name);
6775   DrawText(mSX + 2 * 32, mSY + (pos + 5) * 32, ":", font_nr_name);
6776   DrawText(mSX + 1 * 32, mSY + (pos + 6) * 32, "Snap Field:", font_nr_name);
6777   DrawText(mSX + 1 * 32, mSY + (pos + 8) * 32, "Drop Element:", font_nr_name);
6778
6779   for (i = 0; i < 6; i++)
6780   {
6781     int ypos = (pos + 2) + i + (i > 3 ? i - 3 : 0);
6782
6783     DrawText(mSX + 3 * 32, mSY + ypos * 32,
6784              "              ", font_nr_on);
6785     DrawText(mSX + 3 * 32, mSY + ypos * 32,
6786              (setup.input[player_nr].use_joystick ?
6787               custom[i].text :
6788               getKeyNameFromKey(*custom[i].key)), font_nr_on);
6789   }
6790 }
6791
6792 static int input_player_nr = 0;
6793
6794 void HandleSetupScreen_Input_Player(int step, int direction)
6795 {
6796   int old_player_nr = input_player_nr;
6797   int new_player_nr;
6798
6799   new_player_nr = old_player_nr + step * direction;
6800   if (new_player_nr < 0)
6801     new_player_nr = 0;
6802   if (new_player_nr > MAX_PLAYERS - 1)
6803     new_player_nr = MAX_PLAYERS - 1;
6804
6805   if (new_player_nr != old_player_nr)
6806   {
6807     input_player_nr = new_player_nr;
6808
6809     drawPlayerSetupInputInfo(input_player_nr, FALSE);
6810   }
6811 }
6812
6813 void HandleSetupScreen_Input(int mx, int my, int dx, int dy, int button)
6814 {
6815   static int choice = 0;
6816   int x = 0;
6817   int y = choice;
6818   int pos_start  = SETUPINPUT_SCREEN_POS_START;
6819   int pos_empty1 = SETUPINPUT_SCREEN_POS_EMPTY1;
6820   int pos_empty2 = SETUPINPUT_SCREEN_POS_EMPTY2;
6821   int pos_end    = SETUPINPUT_SCREEN_POS_END;
6822
6823   if (SCR_FIELDY < SCR_FIELDY_DEFAULT)
6824   {
6825     int i;
6826
6827     for (i = 0; setup_info_input[i].type != 0; i++)
6828     {
6829       /* adjust menu structure according to skipped setup entries */
6830       if (setup_info_input[i].type == TYPE_SKIPPABLE)
6831       {
6832         pos_empty2--;
6833         pos_end--;
6834       }
6835     }
6836   }
6837
6838   if (button == MB_MENU_INITIALIZE)
6839   {
6840     /* input setup menu may have changed size due to graphics configuration */
6841     if (choice >= pos_empty1)
6842       choice = pos_end;
6843
6844     drawPlayerSetupInputInfo(input_player_nr, (choice == 2));
6845
6846     DrawCursorAndText_Setup(choice, -1, TRUE);
6847
6848     return;
6849   }
6850   else if (button == MB_MENU_LEAVE)
6851   {
6852     setup_mode = SETUP_MODE_MAIN;
6853     DrawSetupScreen();
6854     InitJoysticks();
6855
6856     return;
6857   }
6858
6859   if (mx || my)         /* mouse input */
6860   {
6861     x = (mx - mSX) / 32;
6862     y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
6863   }
6864   else if (dx || dy)    /* keyboard input */
6865   {
6866     if (dx && choice == 0)
6867       x = (dx < 0 ? 10 : 12);
6868     else if ((dx && choice == 1) ||
6869              (dx == -1 && choice == pos_end))
6870       button = MB_MENU_CHOICE;
6871     else if (dy)
6872       y = choice + dy;
6873
6874     if (y >= pos_empty1 && y <= pos_empty2)
6875       y = (dy > 0 ? pos_empty2 + 1 : pos_empty1 - 1);
6876   }
6877
6878   if (y == 0 && dx != 0 && button)
6879   {
6880     HandleSetupScreen_Input_Player(1, dx < 0 ? -1 : +1);
6881   }
6882   else if (IN_VIS_FIELD(x, y) &&        // (does not use "IN_VIS_MENU()" yet)
6883            y >= pos_start && y <= pos_end &&
6884            !(y >= pos_empty1 && y <= pos_empty2))
6885   {
6886     if (button)
6887     {
6888       if (y != choice)
6889       {
6890         DrawCursorAndText_Setup(choice, -1, FALSE);
6891         DrawCursorAndText_Setup(y, -1, TRUE);
6892
6893         drawPlayerSetupInputInfo(input_player_nr, (y == 2));
6894
6895         choice = y;
6896       }
6897     }
6898     else
6899     {
6900       if (y == 1)
6901       {
6902         char *device_name = setup.input[input_player_nr].joy.device_name;
6903
6904         if (!setup.input[input_player_nr].use_joystick)
6905         {
6906           int new_device_nr = (dx >= 0 ? 0 : MAX_PLAYERS - 1);
6907
6908           setJoystickDeviceToNr(device_name, new_device_nr);
6909           setup.input[input_player_nr].use_joystick = TRUE;
6910         }
6911         else
6912         {
6913           int device_nr = getJoystickNrFromDeviceName(device_name);
6914           int new_device_nr = device_nr + (dx >= 0 ? +1 : -1);
6915
6916           if (new_device_nr < 0 || new_device_nr >= MAX_PLAYERS)
6917             setup.input[input_player_nr].use_joystick = FALSE;
6918           else
6919             setJoystickDeviceToNr(device_name, new_device_nr);
6920         }
6921
6922         drawPlayerSetupInputInfo(input_player_nr, FALSE);
6923       }
6924       else if (y == 2)
6925       {
6926         if (setup.input[input_player_nr].use_joystick)
6927           ConfigureJoystick(input_player_nr);
6928         else
6929           CustomizeKeyboard(input_player_nr);
6930       }
6931       else if (y == pos_end)
6932       {
6933         InitJoysticks();
6934
6935         FadeSetLeaveMenu();
6936
6937         setup_mode = SETUP_MODE_MAIN;
6938         DrawSetupScreen();
6939       }
6940     }
6941   }
6942 }
6943
6944 static boolean CustomizeKeyboardMain(int player_nr)
6945 {
6946   int i;
6947   int step_nr;
6948   boolean finished = FALSE;
6949   static struct SetupKeyboardInfo custom_key;
6950   static struct
6951   {
6952     Key *key;
6953     char *text;
6954   } customize_step[] =
6955   {
6956     { &custom_key.left,  "Move Left"    },
6957     { &custom_key.right, "Move Right"   },
6958     { &custom_key.up,    "Move Up"      },
6959     { &custom_key.down,  "Move Down"    },
6960     { &custom_key.snap,  "Snap Field"   },
6961     { &custom_key.drop,  "Drop Element" }
6962   };
6963   int font_nr_old = FONT_VALUE_OLD;
6964   int font_nr_new = FONT_VALUE_1;
6965   boolean success = FALSE;
6966
6967   if (SCR_FIELDX < SCR_FIELDX_DEFAULT)
6968   {
6969     font_nr_old = FONT_VALUE_OLD_NARROW;
6970     font_nr_new = FONT_VALUE_NARROW;
6971   }
6972
6973   /* read existing key bindings from player setup */
6974   custom_key = setup.input[player_nr].key;
6975
6976   FadeSetEnterMenu();
6977   FadeOut(REDRAW_FIELD);
6978
6979   ClearField();
6980
6981   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Keyboard Input");
6982
6983   step_nr = 0;
6984   DrawText(mSX, mSY + (2 + 2 * step_nr) * 32,
6985            customize_step[step_nr].text, FONT_INPUT_1_ACTIVE);
6986   DrawText(mSX, mSY + (2 + 2 * step_nr + 1) * 32,
6987            "Key:", FONT_INPUT_1_ACTIVE);
6988   DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
6989            getKeyNameFromKey(*customize_step[step_nr].key), font_nr_old);
6990
6991   FadeIn(REDRAW_FIELD);
6992
6993   while (!finished)
6994   {
6995     Event event;
6996
6997     if (NextValidEvent(&event))
6998     {
6999       switch (event.type)
7000       {
7001         case EVENT_KEYPRESS:
7002           {
7003             Key key = GetEventKey((KeyEvent *)&event, FALSE);
7004
7005             /* press 'Escape' to abort and keep the old key bindings */
7006             if (key == KSYM_Escape)
7007             {
7008               FadeSkipNextFadeIn();
7009
7010               finished = TRUE;
7011
7012               break;
7013             }
7014
7015             /* press 'Enter' to keep the existing key binding */
7016             if (key == KSYM_Return)
7017               key = *customize_step[step_nr].key;
7018
7019             /* check if key already used */
7020             for (i = 0; i < step_nr; i++)
7021               if (*customize_step[i].key == key)
7022                 break;
7023             if (i < step_nr)
7024               break;
7025
7026             /* got new key binding */
7027             *customize_step[step_nr].key = key;
7028             DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
7029                      "             ", font_nr_new);
7030             DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
7031                      getKeyNameFromKey(key), font_nr_new);
7032             step_nr++;
7033
7034             /* un-highlight last query */
7035             DrawText(mSX, mSY + (2 + 2 * (step_nr - 1)) * 32,
7036                      customize_step[step_nr - 1].text, FONT_MENU_1);
7037             DrawText(mSX, mSY + (2 + 2 * (step_nr - 1) + 1) * 32,
7038                      "Key:", FONT_MENU_1);
7039
7040             /* all keys configured */
7041             if (step_nr == 6)
7042             {
7043               finished = TRUE;
7044               success = TRUE;
7045
7046               break;
7047             }
7048
7049             /* query next key binding */
7050             DrawText(mSX, mSY + (2 + 2 * step_nr) * 32,
7051                      customize_step[step_nr].text, FONT_INPUT_1_ACTIVE);
7052             DrawText(mSX, mSY + (2 + 2 * step_nr + 1) * 32,
7053                      "Key:", FONT_INPUT_1_ACTIVE);
7054             DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
7055                      getKeyNameFromKey(*customize_step[step_nr].key),
7056                      font_nr_old);
7057           }
7058           break;
7059
7060         case EVENT_KEYRELEASE:
7061           key_joystick_mapping = 0;
7062           break;
7063
7064         default:
7065           HandleOtherEvents(&event);
7066           break;
7067       }
7068     }
7069
7070     BackToFront();
7071   }
7072
7073   /* write new key bindings back to player setup, if successfully finished */
7074   if (success)
7075     setup.input[player_nr].key = custom_key;
7076
7077   return success;
7078 }
7079
7080 void CustomizeKeyboard(int player_nr)
7081 {
7082   boolean success = CustomizeKeyboardMain(player_nr);
7083
7084   if (success)
7085   {
7086     int font_nr = FONT_TITLE_1;
7087     int font_height = getFontHeight(font_nr);
7088     int ypos1 = SYSIZE / 2 - font_height * 2;
7089     int ypos2 = SYSIZE / 2 - font_height * 1;
7090     unsigned int wait_frame_delay = 0;
7091     unsigned int wait_frame_delay_value = 2000;
7092
7093     ResetDelayCounter(&wait_frame_delay);
7094
7095     ClearField();
7096
7097     DrawTextSCentered(ypos1, font_nr, "Keyboard");
7098     DrawTextSCentered(ypos2, font_nr, "configured!");
7099
7100     while (!DelayReached(&wait_frame_delay, wait_frame_delay_value))
7101       BackToFront();
7102
7103     ClearEventQueue();
7104   }
7105
7106   DrawSetupScreen_Input();
7107 }
7108
7109 /* game controller mapping generator by Gabriel Jacobo <gabomdq@gmail.com> */
7110
7111 #define MARKER_BUTTON           1
7112 #define MARKER_AXIS_X           2
7113 #define MARKER_AXIS_Y           3
7114
7115 static boolean ConfigureJoystickMapButtonsAndAxes(SDL_Joystick *joystick)
7116 {
7117 #if defined(TARGET_SDL2)
7118   static boolean bitmaps_initialized = FALSE;
7119   boolean screen_initialized = FALSE;
7120   static Bitmap *controller, *button, *axis_x, *axis_y;
7121   char *name;
7122   boolean success = TRUE;
7123   boolean done = FALSE, next = FALSE;
7124   Event event;
7125   int alpha = 200, alpha_step = -1;
7126   int alpha_ticks = 0;
7127   char mapping[4096], temp[4096];
7128   int font_name = MENU_SETUP_FONT_TITLE;
7129   int font_info = MENU_SETUP_FONT_TEXT;
7130   int spacing_name = menu.line_spacing_setup[SETUP_MODE_INPUT];
7131   int spacing_line = menu.line_spacing_setup[SETUP_MODE_INPUT];
7132   int spacing_para = menu.paragraph_spacing_setup[SETUP_MODE_INPUT];
7133   int ystep_name = getMenuTextStep(spacing_name, font_name);
7134   int ystep_line = getMenuTextStep(spacing_line, font_info);
7135   int ystep_para = getMenuTextStep(spacing_para, font_info);
7136   int i, j;
7137
7138   struct
7139   {
7140     int x, y;
7141     int marker;
7142     char *field;
7143     int axis, button, hat, hat_value;
7144     char mapping[4096];
7145   }
7146   *step, *prev_step, steps[] =
7147   {
7148     { 356, 155, MARKER_BUTTON, "a",             },
7149     { 396, 122, MARKER_BUTTON, "b",             },
7150     { 320, 125, MARKER_BUTTON, "x",             },
7151     { 358,  95, MARKER_BUTTON, "y",             },
7152     { 162, 125, MARKER_BUTTON, "back",          },
7153     { 216, 125, MARKER_BUTTON, "guide",         },
7154     { 271, 125, MARKER_BUTTON, "start",         },
7155     { 110, 200, MARKER_BUTTON, "dpleft",        },
7156     { 146, 228, MARKER_BUTTON, "dpdown",        },
7157     { 178, 200, MARKER_BUTTON, "dpright",       },
7158     { 146, 172, MARKER_BUTTON, "dpup",          },
7159     {  50,  40, MARKER_BUTTON, "leftshoulder",  },
7160     {  88, -10, MARKER_AXIS_Y, "lefttrigger",   },
7161     { 382,  40, MARKER_BUTTON, "rightshoulder", },
7162     { 346, -10, MARKER_AXIS_Y, "righttrigger",  },
7163     {  73, 141, MARKER_BUTTON, "leftstick",     },
7164     { 282, 210, MARKER_BUTTON, "rightstick",    },
7165     {  73, 141, MARKER_AXIS_X, "leftx",         },
7166     {  73, 141, MARKER_AXIS_Y, "lefty",         },
7167     { 282, 210, MARKER_AXIS_X, "rightx",        },
7168     { 282, 210, MARKER_AXIS_Y, "righty",        },
7169   };
7170
7171   unsigned int event_frame_delay = 0;
7172   unsigned int event_frame_delay_value = GAME_FRAME_DELAY;
7173
7174   ResetDelayCounter(&event_frame_delay);
7175
7176   if (!bitmaps_initialized)
7177   {
7178     controller = LoadCustomImage("joystick/controller.png");
7179     button     = LoadCustomImage("joystick/button.png");
7180     axis_x     = LoadCustomImage("joystick/axis_x.png");
7181     axis_y     = LoadCustomImage("joystick/axis_y.png");
7182
7183     bitmaps_initialized = TRUE;
7184   }
7185
7186   name = getFormattedJoystickName(SDL_JoystickName(joystick));
7187
7188 #if DEBUG_JOYSTICKS
7189   /* print info about the joystick we are watching */
7190   Error(ERR_DEBUG, "watching joystick %d: (%s)\n",
7191         SDL_JoystickInstanceID(joystick), name);
7192   Error(ERR_DEBUG, "joystick has %d axes, %d hats, %d balls, and %d buttons\n",
7193         SDL_JoystickNumAxes(joystick), SDL_JoystickNumHats(joystick),
7194         SDL_JoystickNumBalls(joystick), SDL_JoystickNumButtons(joystick));
7195 #endif
7196
7197   /* initialize mapping with GUID and name */
7198   SDL_JoystickGetGUIDString(SDL_JoystickGetGUID(joystick), temp, sizeof(temp));
7199
7200   snprintf(mapping, sizeof(mapping), "%s,%s,platform:%s,",
7201            temp, name, SDL_GetPlatform());
7202
7203   /* loop through all steps (buttons and axes), getting joystick events */
7204   for (i = 0; i < SDL_arraysize(steps) && !done;)
7205   {
7206     Bitmap *marker = button;    /* initialize with reliable default value */
7207
7208     step = &steps[i];
7209     strcpy(step->mapping, mapping);
7210     step->axis = -1;
7211     step->button = -1;
7212     step->hat = -1;
7213     step->hat_value = -1;
7214
7215     marker = (step->marker == MARKER_BUTTON ? button :
7216               step->marker == MARKER_AXIS_X ? axis_x :
7217               step->marker == MARKER_AXIS_Y ? axis_y : marker);
7218
7219     next = FALSE;
7220
7221     while (!done && !next)
7222     {
7223       alpha += alpha_step * (int)(SDL_GetTicks() - alpha_ticks) / 5;
7224       alpha_ticks = SDL_GetTicks();
7225
7226       if (alpha >= 255)
7227       {
7228         alpha = 255;
7229         alpha_step = -1;
7230       }
7231       else if (alpha < 128)
7232       {
7233         alpha = 127;
7234         alpha_step = 1;
7235       }
7236
7237       int controller_x = SX + (SXSIZE - controller->width) / 2;
7238       int controller_y = SY + ystep_line;
7239
7240       int marker_x = controller_x + step->x;
7241       int marker_y = controller_y + step->y;
7242
7243       int ystart1 = mSY - 2 * SY + controller_y + controller->height;
7244       int ystart2 = ystart1 + ystep_name + ystep_line;
7245
7246       ClearField();
7247
7248       DrawTextSCentered(ystart1, font_name, name);
7249
7250       DrawTextSCentered(ystart2, font_info,
7251                         "Press buttons and move axes on");
7252       ystart2 += ystep_line;
7253       DrawTextSCentered(ystart2, font_info,
7254                         "your controller when indicated.");
7255       ystart2 += ystep_line;
7256       DrawTextSCentered(ystart2, font_info,
7257                         "(Your controller may look different.)");
7258       ystart2 += ystep_para;
7259
7260 #if defined(PLATFORM_ANDROID)
7261       DrawTextSCentered(ystart2, font_info,
7262                         "To correct a mistake,");
7263       ystart2 += ystep_line;
7264       DrawTextSCentered(ystart2, font_info,
7265                         "press the 'back' button.");
7266       ystart2 += ystep_line;
7267       DrawTextSCentered(ystart2, font_info,
7268                         "To skip a button or axis,");
7269       ystart2 += ystep_line;
7270       DrawTextSCentered(ystart2, font_info,
7271                         "press the 'menu' button.");
7272 #else
7273       DrawTextSCentered(ystart2, font_info,
7274                         "To correct a mistake,");
7275       ystart2 += ystep_line;
7276       DrawTextSCentered(ystart2, font_info,
7277                         "press the 'backspace' key.");
7278       ystart2 += ystep_line;
7279       DrawTextSCentered(ystart2, font_info,
7280                         "To skip a button or axis,");
7281       ystart2 += ystep_line;
7282       DrawTextSCentered(ystart2, font_info,
7283                         "press the 'return' key.");
7284       ystart2 += ystep_line;
7285       DrawTextSCentered(ystart2, font_info,
7286                         "To exit, press the 'escape' key.");
7287 #endif
7288
7289       BlitBitmapMasked(controller, drawto, 0, 0,
7290                        controller->width, controller->height,
7291                        controller_x, controller_y);
7292
7293       SDL_SetSurfaceBlendMode(marker->surface_masked, SDL_BLENDMODE_BLEND);
7294       SDL_SetSurfaceAlphaMod(marker->surface_masked, alpha);
7295
7296       BlitBitmapMasked(marker, drawto, 0, 0,
7297                        marker->width, marker->height,
7298                        marker_x, marker_y);
7299
7300       if (!screen_initialized)
7301         FadeIn(REDRAW_FIELD);
7302       else
7303         BackToFront();
7304
7305       screen_initialized = TRUE;
7306
7307       while (NextValidEvent(&event))
7308       {
7309         switch (event.type)
7310         {
7311           case SDL_JOYAXISMOTION:
7312             if (event.jaxis.value > 20000 ||
7313                 event.jaxis.value < -20000)
7314             {
7315               for (j = 0; j < i; j++)
7316                 if (steps[j].axis == event.jaxis.axis)
7317                   break;
7318
7319               if (j == i)
7320               {
7321                 if (step->marker != MARKER_AXIS_X &&
7322                     step->marker != MARKER_AXIS_Y)
7323                   break;
7324
7325                 step->axis = event.jaxis.axis;
7326                 strcat(mapping, step->field);
7327                 snprintf(temp, sizeof(temp), ":a%u,", event.jaxis.axis);
7328                 strcat(mapping, temp);
7329                 i++;
7330                 next = TRUE;
7331               }
7332             }
7333
7334             break;
7335
7336           case SDL_JOYHATMOTION:
7337             /* ignore centering; we're probably just coming back
7338                to the center from the previous item we set */
7339             if (event.jhat.value == SDL_HAT_CENTERED)
7340               break;
7341
7342             for (j = 0; j < i; j++)
7343               if (steps[j].hat == event.jhat.hat &&
7344                   steps[j].hat_value == event.jhat.value)
7345                 break;
7346
7347             if (j == i)
7348             {
7349               step->hat = event.jhat.hat;
7350               step->hat_value = event.jhat.value;
7351               strcat(mapping, step->field);
7352               snprintf(temp, sizeof(temp), ":h%u.%u,",
7353                        event.jhat.hat, event.jhat.value );
7354               strcat(mapping, temp);
7355               i++;
7356               next = TRUE;
7357             }
7358
7359             break;
7360
7361           case SDL_JOYBALLMOTION:
7362             break;
7363
7364           case SDL_JOYBUTTONUP:
7365             for (j = 0; j < i; j++)
7366               if (steps[j].button == event.jbutton.button)
7367                 break;
7368
7369             if (j == i)
7370             {
7371               step->button = event.jbutton.button;
7372               strcat(mapping, step->field);
7373               snprintf(temp, sizeof(temp), ":b%u,", event.jbutton.button);
7374               strcat(mapping, temp);
7375               i++;
7376               next = TRUE;
7377             }
7378
7379             break;
7380
7381           case SDL_FINGERDOWN:
7382           case SDL_MOUSEBUTTONDOWN:
7383             /* skip this step */
7384             i++;
7385             next = TRUE;
7386
7387             break;
7388
7389           case SDL_KEYDOWN:
7390             if (event.key.keysym.sym == KSYM_BackSpace ||
7391                 event.key.keysym.sym == KSYM_Back)
7392             {
7393               if (i == 0)
7394               {
7395                 /* leave screen */
7396                 success = FALSE;
7397                 done = TRUE;
7398
7399                 break;
7400               }
7401
7402               /* undo this step */
7403               prev_step = &steps[i - 1];
7404               strcpy(mapping, prev_step->mapping);
7405               i--;
7406               next = TRUE;
7407
7408               break;
7409             }
7410
7411             if (event.key.keysym.sym == KSYM_space ||
7412                 event.key.keysym.sym == KSYM_Return ||
7413                 event.key.keysym.sym == KSYM_Menu)
7414             {
7415               /* skip this step */
7416               i++;
7417               next = TRUE;
7418
7419               break;
7420             }
7421
7422             if (event.key.keysym.sym == KSYM_Escape)
7423             {
7424               /* leave screen */
7425               success = FALSE;
7426               done = TRUE;
7427             }
7428
7429             break;
7430
7431           case SDL_QUIT:
7432             program.exit_function(0);
7433             break;
7434
7435           default:
7436             break;
7437         }
7438
7439         // do not handle events for longer than standard frame delay period
7440         if (DelayReached(&event_frame_delay, event_frame_delay_value))
7441           break;
7442       }
7443     }
7444   }
7445
7446   if (success)
7447   {
7448 #if DEBUG_JOYSTICKS
7449     Error(ERR_DEBUG, "New game controller mapping:\n\n%s\n\n", mapping);
7450 #endif
7451
7452     // activate mapping for this game
7453     SDL_GameControllerAddMapping(mapping);
7454
7455     // save mapping to personal mappings
7456     SaveSetup_AddGameControllerMapping(mapping);
7457   }
7458
7459   /* wait until the last pending event was removed from event queue */
7460   while (NextValidEvent(&event));
7461
7462   return success;
7463 #else
7464   return TRUE;
7465 #endif
7466 }
7467
7468 static int ConfigureJoystickMain(int player_nr)
7469 {
7470   char *device_name = setup.input[player_nr].joy.device_name;
7471   int joystick_nr = getJoystickNrFromDeviceName(device_name);
7472   boolean joystick_active = CheckJoystickOpened(joystick_nr);
7473   int success = FALSE;
7474   int i;
7475
7476   if (joystick.status == JOYSTICK_NOT_AVAILABLE)
7477     return JOYSTICK_NOT_AVAILABLE;
7478
7479   if (!joystick_active || !setup.input[player_nr].use_joystick)
7480     return JOYSTICK_NOT_AVAILABLE;
7481
7482   FadeSetEnterMenu();
7483   FadeOut(REDRAW_FIELD);
7484
7485   // close all joystick devices (potentially opened as game controllers)
7486   for (i = 0; i < SDL_NumJoysticks(); i++)
7487     SDLCloseJoystick(i);
7488
7489   // open joystick device as plain joystick to configure as game controller
7490   SDL_Joystick *joystick = SDL_JoystickOpen(joystick_nr);
7491
7492   // as the joystick was successfully opened before, this should not happen
7493   if (joystick == NULL)
7494     return FALSE;
7495
7496   // create new game controller mapping (buttons and axes) for joystick device
7497   success = ConfigureJoystickMapButtonsAndAxes(joystick);
7498
7499   // close joystick (and maybe re-open as configured game controller later)
7500   SDL_JoystickClose(joystick);
7501
7502   // re-open all joystick devices (potentially as game controllers)
7503   for (i = 0; i < SDL_NumJoysticks(); i++)
7504     SDLOpenJoystick(i);
7505
7506   // clear all joystick input actions for all joystick devices
7507   SDLClearJoystickState();
7508
7509   return (success ? JOYSTICK_CONFIGURED : JOYSTICK_NOT_CONFIGURED);
7510 }
7511
7512 void ConfigureJoystick(int player_nr)
7513 {
7514   boolean state = ConfigureJoystickMain(player_nr);
7515
7516   if (state != JOYSTICK_NOT_CONFIGURED)
7517   {
7518     boolean success = (state == JOYSTICK_CONFIGURED);
7519     char message1[MAX_OUTPUT_LINESIZE + 1];
7520     char *message2 = (success ? "configured!" : "not available!");
7521     char *device_name = setup.input[player_nr].joy.device_name;
7522     int nr = getJoystickNrFromDeviceName(device_name) + 1;
7523     int font_nr = FONT_TITLE_1;
7524     int font_height = getFontHeight(font_nr);
7525     int ypos1 = SYSIZE / 2 - font_height * 2;
7526     int ypos2 = SYSIZE / 2 - font_height * 1;
7527     unsigned int wait_frame_delay = 0;
7528     unsigned int wait_frame_delay_value = 2000;
7529
7530     ResetDelayCounter(&wait_frame_delay);
7531
7532     ClearField();
7533
7534     sprintf(message1, "Joystick %d", nr);
7535
7536     DrawTextSCentered(ypos1, font_nr, message1);
7537     DrawTextSCentered(ypos2, font_nr, message2);
7538
7539     while (!DelayReached(&wait_frame_delay, wait_frame_delay_value))
7540       BackToFront();
7541
7542     ClearEventQueue();
7543   }
7544
7545   DrawSetupScreen_Input();
7546 }
7547
7548 boolean ConfigureVirtualButtonsMain()
7549 {
7550   static char *customize_step_text[] =
7551   {
7552     "Move Left",
7553     "Move Right",
7554     "Move Up",
7555     "Move Down",
7556     "Snap Field",
7557     "Drop Element"
7558   };
7559   char grid_button[] =
7560   {
7561     CHAR_GRID_BUTTON_LEFT,
7562     CHAR_GRID_BUTTON_RIGHT,
7563     CHAR_GRID_BUTTON_UP,
7564     CHAR_GRID_BUTTON_DOWN,
7565     CHAR_GRID_BUTTON_SNAP,
7566     CHAR_GRID_BUTTON_DROP
7567   };
7568   int font_nr = FONT_INPUT_1_ACTIVE;
7569   int font_height = getFontHeight(font_nr);
7570   int ypos1 = SYSIZE / 2 - font_height * 2;
7571   int ypos2 = SYSIZE / 2 - font_height * 1;
7572   boolean success = FALSE;
7573   boolean finished = FALSE;
7574   int step_nr = 0;
7575   char grid_button_draw = CHAR_GRID_BUTTON_NONE;
7576   char grid_button_old[MAX_GRID_XSIZE][MAX_GRID_YSIZE];
7577   char grid_button_tmp[MAX_GRID_XSIZE][MAX_GRID_YSIZE];
7578   boolean set_grid_button = FALSE;
7579   int nr = GRID_ACTIVE_NR();
7580   int x, y;
7581
7582   for (x = 0; x < MAX_GRID_XSIZE; x++)
7583     for (y = 0; y < MAX_GRID_YSIZE; y++)
7584       grid_button_old[x][y] = grid_button_tmp[x][y] = overlay.grid_button[x][y];
7585
7586   overlay.grid_button_highlight = grid_button[step_nr];
7587
7588   FadeSetEnterMenu();
7589   FadeOut(REDRAW_FIELD);
7590
7591   ClearField();
7592
7593   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Virtual Buttons");
7594   DrawTextSCentered(ypos1, font_nr, "Select tiles to");
7595   DrawTextSCentered(ypos2, font_nr, customize_step_text[step_nr]);
7596
7597   FadeIn(REDRAW_FIELD);
7598
7599   SetOverlayShowGrid(TRUE);
7600
7601   while (!finished)
7602   {
7603     Event event;
7604
7605     while (NextValidEvent(&event))
7606     {
7607       switch (event.type)
7608       {
7609         case EVENT_KEYPRESS:
7610           {
7611             Key key = GetEventKey((KeyEvent *)&event, FALSE);
7612
7613             /* press 'Escape' to abort and keep the old key bindings */
7614             if (key == KSYM_Escape)
7615             {
7616               for (x = 0; x < MAX_GRID_XSIZE; x++)
7617                 for (y = 0; y < MAX_GRID_YSIZE; y++)
7618                   overlay.grid_button[x][y] = grid_button_old[x][y];
7619
7620               FadeSkipNextFadeIn();
7621
7622               finished = TRUE;
7623
7624               break;
7625             }
7626
7627             /* press 'Enter' to keep the existing key binding */
7628             if (key == KSYM_Return ||
7629 #if defined(TARGET_SDL2)
7630                 key == KSYM_Menu ||
7631 #endif
7632                 key == KSYM_space)
7633             {
7634               step_nr++;
7635             }
7636             else if (key == KSYM_BackSpace
7637 #if defined(TARGET_SDL2)
7638                      ||
7639                      key == KSYM_Back
7640 #endif
7641                      )
7642             {
7643               if (step_nr == 0)
7644               {
7645                 FadeSkipNextFadeIn();
7646
7647                 finished = TRUE;
7648
7649                 break;
7650               }
7651
7652               step_nr--;
7653             }
7654             else
7655             {
7656               break;
7657             }
7658
7659             /* all virtual buttons configured */
7660             if (step_nr == 6)
7661             {
7662               finished = TRUE;
7663               success = TRUE;
7664
7665               break;
7666             }
7667
7668             for (x = 0; x < MAX_GRID_XSIZE; x++)
7669               for (y = 0; y < MAX_GRID_YSIZE; y++)
7670                 grid_button_tmp[x][y] = overlay.grid_button[x][y];
7671
7672             overlay.grid_button_highlight = grid_button[step_nr];
7673
7674             /* query next virtual button */
7675
7676             ClearField();
7677
7678             DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Virtual Buttons");
7679             DrawTextSCentered(ypos1, font_nr, "Select tiles to");
7680             DrawTextSCentered(ypos2, font_nr, customize_step_text[step_nr]);
7681           }
7682           break;
7683
7684         case EVENT_KEYRELEASE:
7685           key_joystick_mapping = 0;
7686           break;
7687
7688         case EVENT_BUTTONPRESS:
7689         case EVENT_BUTTONRELEASE:
7690           {
7691             ButtonEvent *button = (ButtonEvent *)&event;
7692
7693             button->x += video.screen_xoffset;
7694             button->y += video.screen_yoffset;
7695
7696             x = button->x * overlay.grid_xsize / video.screen_width;
7697             y = button->y * overlay.grid_ysize / video.screen_height;
7698
7699             if (button->type == EVENT_BUTTONPRESS)
7700             {
7701               button_status = button->button;
7702
7703               grid_button_draw =
7704                 (overlay.grid_button[x][y] != grid_button[step_nr] ?
7705                  grid_button[step_nr] : CHAR_GRID_BUTTON_NONE);
7706
7707               set_grid_button = TRUE;
7708             }
7709             else
7710             {
7711               button_status = MB_RELEASED;
7712             }
7713           }
7714           break;
7715
7716         case EVENT_MOTIONNOTIFY:
7717           {
7718             MotionEvent *motion = (MotionEvent *)&event;
7719
7720             motion->x += video.screen_xoffset;
7721             motion->y += video.screen_yoffset;
7722
7723             x = motion->x * overlay.grid_xsize / video.screen_width;
7724             y = motion->y * overlay.grid_ysize / video.screen_height;
7725
7726             set_grid_button = TRUE;
7727           }
7728           break;
7729
7730 #if defined(TARGET_SDL2)
7731         case SDL_WINDOWEVENT:
7732           HandleWindowEvent((WindowEvent *) &event);
7733
7734           // check if device has been rotated
7735           if (nr != GRID_ACTIVE_NR())
7736           {
7737             nr = GRID_ACTIVE_NR();
7738
7739             for (x = 0; x < MAX_GRID_XSIZE; x++)
7740               for (y = 0; y < MAX_GRID_YSIZE; y++)
7741                 grid_button_old[x][y] = grid_button_tmp[x][y] =
7742                   overlay.grid_button[x][y];
7743           }
7744
7745           break;
7746
7747         case SDL_APP_WILLENTERBACKGROUND:
7748         case SDL_APP_DIDENTERBACKGROUND:
7749         case SDL_APP_WILLENTERFOREGROUND:
7750         case SDL_APP_DIDENTERFOREGROUND:
7751           HandlePauseResumeEvent((PauseResumeEvent *) &event);
7752           break;
7753 #endif
7754
7755         default:
7756           HandleOtherEvents(&event);
7757           break;
7758       }
7759
7760       if (set_grid_button)
7761       {
7762         overlay.grid_button[x][y] =
7763           (grid_button_draw != CHAR_GRID_BUTTON_NONE ? grid_button_draw :
7764            grid_button_tmp[x][y] == grid_button[step_nr] ? CHAR_GRID_BUTTON_NONE :
7765            grid_button_tmp[x][y]);
7766
7767         set_grid_button = FALSE;
7768       }
7769     }
7770
7771     BackToFront();
7772   }
7773
7774   for (x = 0; x < MAX_GRID_XSIZE; x++)
7775     for (y = 0; y < MAX_GRID_YSIZE; y++)
7776       setup.touch.grid_button[nr][x][y] = overlay.grid_button[x][y];
7777
7778   overlay.grid_button_highlight = CHAR_GRID_BUTTON_NONE;
7779
7780   SetOverlayShowGrid(FALSE);
7781
7782   return success;
7783 }
7784
7785 void ConfigureVirtualButtons()
7786 {
7787   boolean success = ConfigureVirtualButtonsMain();
7788
7789   if (success)
7790   {
7791     int font_nr = FONT_TITLE_1;
7792     int font_height = getFontHeight(font_nr);
7793     int ypos1 = SYSIZE / 2 - font_height * 2;
7794     int ypos2 = SYSIZE / 2 - font_height * 1;
7795     unsigned int wait_frame_delay = 0;
7796     unsigned int wait_frame_delay_value = 2000;
7797
7798     ResetDelayCounter(&wait_frame_delay);
7799
7800     ClearField();
7801
7802     DrawTextSCentered(ypos1, font_nr, "Virtual buttons");
7803     DrawTextSCentered(ypos2, font_nr, "configured!");
7804
7805     while (!DelayReached(&wait_frame_delay, wait_frame_delay_value))
7806       BackToFront();
7807
7808     ClearEventQueue();
7809   }
7810 }
7811
7812 void DrawSetupScreen()
7813 {
7814   if (setup_mode == SETUP_MODE_INPUT)
7815     DrawSetupScreen_Input();
7816   else if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
7817     DrawChooseTree(&game_speed_current);
7818   else if (setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
7819     DrawChooseTree(&scroll_delay_current);
7820   else if (setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
7821     DrawChooseTree(&snapshot_mode_current);
7822   else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
7823     DrawChooseTree(&window_size_current);
7824   else if (setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE)
7825     DrawChooseTree(&scaling_type_current);
7826   else if (setup_mode == SETUP_MODE_CHOOSE_RENDERING)
7827     DrawChooseTree(&rendering_mode_current);
7828   else if (setup_mode == SETUP_MODE_CHOOSE_GRAPHICS)
7829     DrawChooseTree(&artwork.gfx_current);
7830   else if (setup_mode == SETUP_MODE_CHOOSE_SOUNDS)
7831     DrawChooseTree(&artwork.snd_current);
7832   else if (setup_mode == SETUP_MODE_CHOOSE_MUSIC)
7833     DrawChooseTree(&artwork.mus_current);
7834   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE)
7835     DrawChooseTree(&volume_simple_current);
7836   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS)
7837     DrawChooseTree(&volume_loops_current);
7838   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
7839     DrawChooseTree(&volume_music_current);
7840   else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL)
7841     DrawChooseTree(&touch_control_current);
7842   else if (setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE)
7843     DrawChooseTree(&move_distance_current);
7844   else if (setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE)
7845     DrawChooseTree(&drop_distance_current);
7846   else if (setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY)
7847     DrawChooseTree(&transparency_current);
7848   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0)
7849     DrawChooseTree(&grid_size_current[0][0]);
7850   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0)
7851     DrawChooseTree(&grid_size_current[0][1]);
7852   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1)
7853     DrawChooseTree(&grid_size_current[1][0]);
7854   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
7855     DrawChooseTree(&grid_size_current[1][1]);
7856   else
7857     DrawSetupScreen_Generic();
7858
7859   PlayMenuSoundsAndMusic();
7860 }
7861
7862 void RedrawSetupScreenAfterFullscreenToggle()
7863 {
7864   if (setup_mode == SETUP_MODE_GRAPHICS ||
7865       setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
7866   {
7867     // update list selection from "setup.window_scaling_percent"
7868     execSetupGraphics_setWindowSizes(TRUE);
7869
7870     DrawSetupScreen();
7871   }
7872 }
7873
7874 void RedrawSetupScreenAfterScreenRotation(int nr)
7875 {
7876   int x, y;
7877
7878   if (setup_mode == SETUP_MODE_TOUCH)
7879   {
7880     // update virtual button settings (depending on screen orientation)
7881     DrawSetupScreen();
7882   }
7883   else if (setup_mode == SETUP_MODE_CONFIG_VIRT_BUTTONS)
7884   {
7885     // save already configured virtual buttons
7886     for (x = 0; x < MAX_GRID_XSIZE; x++)
7887       for (y = 0; y < MAX_GRID_YSIZE; y++)
7888         setup.touch.grid_button[nr][x][y] = overlay.grid_button[x][y];
7889   }
7890 }
7891
7892 void HandleSetupScreen(int mx, int my, int dx, int dy, int button)
7893 {
7894   if (setup_mode == SETUP_MODE_INPUT)
7895     HandleSetupScreen_Input(mx, my, dx, dy, button);
7896   else if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
7897     HandleChooseTree(mx, my, dx, dy, button, &game_speed_current);
7898   else if (setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
7899     HandleChooseTree(mx, my, dx, dy, button, &scroll_delay_current);
7900   else if (setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
7901     HandleChooseTree(mx, my, dx, dy, button, &snapshot_mode_current);
7902   else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
7903     HandleChooseTree(mx, my, dx, dy, button, &window_size_current);
7904   else if (setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE)
7905     HandleChooseTree(mx, my, dx, dy, button, &scaling_type_current);
7906   else if (setup_mode == SETUP_MODE_CHOOSE_RENDERING)
7907     HandleChooseTree(mx, my, dx, dy, button, &rendering_mode_current);
7908   else if (setup_mode == SETUP_MODE_CHOOSE_GRAPHICS)
7909     HandleChooseTree(mx, my, dx, dy, button, &artwork.gfx_current);
7910   else if (setup_mode == SETUP_MODE_CHOOSE_SOUNDS)
7911     HandleChooseTree(mx, my, dx, dy, button, &artwork.snd_current);
7912   else if (setup_mode == SETUP_MODE_CHOOSE_MUSIC)
7913     HandleChooseTree(mx, my, dx, dy, button, &artwork.mus_current);
7914   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE)
7915     HandleChooseTree(mx, my, dx, dy, button, &volume_simple_current);
7916   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS)
7917     HandleChooseTree(mx, my, dx, dy, button, &volume_loops_current);
7918   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
7919     HandleChooseTree(mx, my, dx, dy, button, &volume_music_current);
7920   else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL)
7921     HandleChooseTree(mx, my, dx, dy, button, &touch_control_current);
7922   else if (setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE)
7923     HandleChooseTree(mx, my, dx, dy, button, &move_distance_current);
7924   else if (setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE)
7925     HandleChooseTree(mx, my, dx, dy, button, &drop_distance_current);
7926   else if (setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY)
7927     HandleChooseTree(mx, my, dx, dy, button, &transparency_current);
7928   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0)
7929     HandleChooseTree(mx, my, dx, dy, button, &grid_size_current[0][0]);
7930   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0)
7931     HandleChooseTree(mx, my, dx, dy, button, &grid_size_current[0][1]);
7932   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1)
7933     HandleChooseTree(mx, my, dx, dy, button, &grid_size_current[1][0]);
7934   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
7935     HandleChooseTree(mx, my, dx, dy, button, &grid_size_current[1][1]);
7936   else
7937     HandleSetupScreen_Generic(mx, my, dx, dy, button);
7938 }
7939
7940 void HandleGameActions()
7941 {
7942   if (game.restart_game_message != NULL)
7943     RequestRestartGame(game.restart_game_message);
7944
7945   if (game_status != GAME_MODE_PLAYING)
7946     return;
7947
7948   GameActions();        /* main game loop */
7949
7950   if (tape.auto_play && !tape.playing)
7951     AutoPlayTape();     /* continue automatically playing next tape */
7952 }
7953
7954
7955 /* ---------- new screen button stuff -------------------------------------- */
7956
7957 static void getScreenMenuButtonPos(int *x, int *y, int gadget_id)
7958 {
7959   switch (gadget_id)
7960   {
7961     case SCREEN_CTRL_ID_PREV_LEVEL:
7962       *x = mSX + GDI_ACTIVE_POS(menu.main.button.prev_level.x);
7963       *y = mSY + GDI_ACTIVE_POS(menu.main.button.prev_level.y);
7964       break;
7965
7966     case SCREEN_CTRL_ID_NEXT_LEVEL:
7967       *x = mSX + GDI_ACTIVE_POS(menu.main.button.next_level.x);
7968       *y = mSY + GDI_ACTIVE_POS(menu.main.button.next_level.y);
7969       break;
7970
7971     case SCREEN_CTRL_ID_PREV_PLAYER:
7972       *x = mSX + TILEX * 10;
7973       *y = mSY + TILEY * MENU_SCREEN_START_YPOS;
7974       break;
7975
7976     case SCREEN_CTRL_ID_NEXT_PLAYER:
7977       *x = mSX + TILEX * 12;
7978       *y = mSY + TILEY * MENU_SCREEN_START_YPOS;
7979       break;
7980
7981     case SCREEN_CTRL_ID_INSERT_SOLUTION:
7982       *x = mSX + GDI_ACTIVE_POS(menu.main.button.insert_solution.x);
7983       *y = mSY + GDI_ACTIVE_POS(menu.main.button.insert_solution.y);
7984       break;
7985
7986     case SCREEN_CTRL_ID_PLAY_SOLUTION:
7987       *x = mSX + GDI_ACTIVE_POS(menu.main.button.play_solution.x);
7988       *y = mSY + GDI_ACTIVE_POS(menu.main.button.play_solution.y);
7989       break;
7990
7991     default:
7992       Error(ERR_EXIT, "unknown gadget ID %d", gadget_id);
7993   }
7994 }
7995
7996 static struct
7997 {
7998   int gfx_unpressed, gfx_pressed;
7999   void (*get_gadget_position)(int *, int *, int);
8000   int gadget_id;
8001   int screen_mask;
8002   char *infotext;
8003 } menubutton_info[NUM_SCREEN_MENUBUTTONS] =
8004 {
8005   {
8006     IMG_MENU_BUTTON_PREV_LEVEL, IMG_MENU_BUTTON_PREV_LEVEL_ACTIVE,
8007     getScreenMenuButtonPos,
8008     SCREEN_CTRL_ID_PREV_LEVEL,
8009     SCREEN_MASK_MAIN,
8010     "last level"
8011   },
8012   {
8013     IMG_MENU_BUTTON_NEXT_LEVEL, IMG_MENU_BUTTON_NEXT_LEVEL_ACTIVE,
8014     getScreenMenuButtonPos,
8015     SCREEN_CTRL_ID_NEXT_LEVEL,
8016     SCREEN_MASK_MAIN,
8017     "next level"
8018   },
8019   {
8020     IMG_MENU_BUTTON_LEFT, IMG_MENU_BUTTON_LEFT_ACTIVE,
8021     getScreenMenuButtonPos,
8022     SCREEN_CTRL_ID_PREV_PLAYER,
8023     SCREEN_MASK_INPUT,
8024     "last player"
8025   },
8026   {
8027     IMG_MENU_BUTTON_RIGHT, IMG_MENU_BUTTON_RIGHT_ACTIVE,
8028     getScreenMenuButtonPos,
8029     SCREEN_CTRL_ID_NEXT_PLAYER,
8030     SCREEN_MASK_INPUT,
8031     "next player"
8032   },
8033   {
8034     IMG_MENU_BUTTON_INSERT_SOLUTION, IMG_MENU_BUTTON_INSERT_SOLUTION_ACTIVE,
8035     getScreenMenuButtonPos,
8036     SCREEN_CTRL_ID_INSERT_SOLUTION,
8037     SCREEN_MASK_MAIN_HAS_SOLUTION,
8038     "insert solution tape"
8039   },
8040   {
8041     IMG_MENU_BUTTON_PLAY_SOLUTION, IMG_MENU_BUTTON_PLAY_SOLUTION_ACTIVE,
8042     getScreenMenuButtonPos,
8043     SCREEN_CTRL_ID_PLAY_SOLUTION,
8044     SCREEN_MASK_MAIN_HAS_SOLUTION,
8045     "play solution tape"
8046   },
8047 };
8048
8049 static struct
8050 {
8051   int gfx_unpressed, gfx_pressed;
8052   int x, y;
8053   int gadget_id;
8054   char *infotext;
8055 } scrollbutton_info[NUM_SCREEN_SCROLLBUTTONS] =
8056 {
8057   {
8058     IMG_MENU_BUTTON_UP, IMG_MENU_BUTTON_UP_ACTIVE,
8059     -1, -1,     /* these values are not constant, but can change at runtime */
8060     SCREEN_CTRL_ID_SCROLL_UP,
8061     "scroll up"
8062   },
8063   {
8064     IMG_MENU_BUTTON_DOWN, IMG_MENU_BUTTON_DOWN_ACTIVE,
8065     -1, -1,     /* these values are not constant, but can change at runtime */
8066     SCREEN_CTRL_ID_SCROLL_DOWN,
8067     "scroll down"
8068   }
8069 };
8070
8071 static struct
8072 {
8073   int gfx_unpressed, gfx_pressed;
8074   int x, y;
8075   int width, height;
8076   int type;
8077   int gadget_id;
8078   char *infotext;
8079 } scrollbar_info[NUM_SCREEN_SCROLLBARS] =
8080 {
8081   {
8082     IMG_MENU_SCROLLBAR, IMG_MENU_SCROLLBAR_ACTIVE,
8083     -1, -1,     /* these values are not constant, but can change at runtime */
8084     -1, -1,     /* these values are not constant, but can change at runtime */
8085     GD_TYPE_SCROLLBAR_VERTICAL,
8086     SCREEN_CTRL_ID_SCROLL_VERTICAL,
8087     "scroll level series vertically"
8088   }
8089 };
8090
8091 static void CreateScreenMenubuttons()
8092 {
8093   struct GadgetInfo *gi;
8094   unsigned int event_mask;
8095   int i;
8096
8097   for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
8098   {
8099     Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
8100     int gfx_unpressed, gfx_pressed;
8101     int x, y, width, height;
8102     int gd_x1, gd_x2, gd_y1, gd_y2;
8103     int id = menubutton_info[i].gadget_id;
8104
8105     if (menubutton_info[i].screen_mask == SCREEN_MASK_MAIN_HAS_SOLUTION)
8106       event_mask = GD_EVENT_RELEASED;
8107     else
8108       event_mask = GD_EVENT_PRESSED | GD_EVENT_REPEATED;
8109
8110     menubutton_info[i].get_gadget_position(&x, &y, id);
8111
8112     if (menubutton_info[i].screen_mask == SCREEN_MASK_MAIN_HAS_SOLUTION)
8113     {
8114       width  = graphic_info[menubutton_info[i].gfx_pressed].width;
8115       height = graphic_info[menubutton_info[i].gfx_pressed].height;
8116     }
8117     else
8118     {
8119       width = SC_MENUBUTTON_XSIZE;
8120       height = SC_MENUBUTTON_YSIZE;
8121     }
8122
8123     gfx_unpressed = menubutton_info[i].gfx_unpressed;
8124     gfx_pressed   = menubutton_info[i].gfx_pressed;
8125     gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
8126     gd_bitmap_pressed   = graphic_info[gfx_pressed].bitmap;
8127     gd_x1 = graphic_info[gfx_unpressed].src_x;
8128     gd_y1 = graphic_info[gfx_unpressed].src_y;
8129     gd_x2 = graphic_info[gfx_pressed].src_x;
8130     gd_y2 = graphic_info[gfx_pressed].src_y;
8131
8132     gi = CreateGadget(GDI_CUSTOM_ID, id,
8133                       GDI_CUSTOM_TYPE_ID, i,
8134                       GDI_IMAGE_ID, gfx_unpressed,
8135                       GDI_INFO_TEXT, menubutton_info[i].infotext,
8136                       GDI_X, x,
8137                       GDI_Y, y,
8138                       GDI_WIDTH, width,
8139                       GDI_HEIGHT, height,
8140                       GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
8141                       GDI_STATE, GD_BUTTON_UNPRESSED,
8142                       GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
8143                       GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
8144                       GDI_DIRECT_DRAW, FALSE,
8145                       GDI_EVENT_MASK, event_mask,
8146                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
8147                       GDI_END);
8148
8149     if (gi == NULL)
8150       Error(ERR_EXIT, "cannot create gadget");
8151
8152     screen_gadget[id] = gi;
8153   }
8154 }
8155
8156 static void CreateScreenScrollbuttons()
8157 {
8158   struct GadgetInfo *gi;
8159   unsigned int event_mask;
8160   int i;
8161
8162   /* these values are not constant, but can change at runtime */
8163   scrollbutton_info[0].x = SC_SCROLL_UP_XPOS;
8164   scrollbutton_info[0].y = SC_SCROLL_UP_YPOS;
8165   scrollbutton_info[1].x = SC_SCROLL_DOWN_XPOS;
8166   scrollbutton_info[1].y = SC_SCROLL_DOWN_YPOS;
8167
8168   for (i = 0; i < NUM_SCREEN_SCROLLBUTTONS; i++)
8169   {
8170     Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
8171     int gfx_unpressed, gfx_pressed;
8172     int x, y, width, height;
8173     int gd_x1, gd_x2, gd_y1, gd_y2;
8174     int id = scrollbutton_info[i].gadget_id;
8175
8176     event_mask = GD_EVENT_PRESSED | GD_EVENT_REPEATED;
8177
8178     x = mSX + scrollbutton_info[i].x + menu.scrollbar_xoffset;
8179     y = mSY + scrollbutton_info[i].y;
8180     width = SC_SCROLLBUTTON_XSIZE;
8181     height = SC_SCROLLBUTTON_YSIZE;
8182
8183     /* correct scrollbar position if placed outside menu (playfield) area */
8184     if (x > SX + SC_SCROLL_UP_XPOS)
8185       x = SX + SC_SCROLL_UP_XPOS;
8186
8187     if (id == SCREEN_CTRL_ID_SCROLL_DOWN)
8188       y = mSY + (SC_SCROLL_VERTICAL_YPOS +
8189                  (NUM_MENU_ENTRIES_ON_SCREEN - 2) * SC_SCROLLBUTTON_YSIZE);
8190
8191     gfx_unpressed = scrollbutton_info[i].gfx_unpressed;
8192     gfx_pressed   = scrollbutton_info[i].gfx_pressed;
8193     gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
8194     gd_bitmap_pressed   = graphic_info[gfx_pressed].bitmap;
8195     gd_x1 = graphic_info[gfx_unpressed].src_x;
8196     gd_y1 = graphic_info[gfx_unpressed].src_y;
8197     gd_x2 = graphic_info[gfx_pressed].src_x;
8198     gd_y2 = graphic_info[gfx_pressed].src_y;
8199
8200     gi = CreateGadget(GDI_CUSTOM_ID, id,
8201                       GDI_CUSTOM_TYPE_ID, i,
8202                       GDI_IMAGE_ID, gfx_unpressed,
8203                       GDI_INFO_TEXT, scrollbutton_info[i].infotext,
8204                       GDI_X, x,
8205                       GDI_Y, y,
8206                       GDI_WIDTH, width,
8207                       GDI_HEIGHT, height,
8208                       GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
8209                       GDI_STATE, GD_BUTTON_UNPRESSED,
8210                       GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
8211                       GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
8212                       GDI_DIRECT_DRAW, FALSE,
8213                       GDI_EVENT_MASK, event_mask,
8214                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
8215                       GDI_END);
8216
8217     if (gi == NULL)
8218       Error(ERR_EXIT, "cannot create gadget");
8219
8220     screen_gadget[id] = gi;
8221   }
8222 }
8223
8224 static void CreateScreenScrollbars()
8225 {
8226   int i;
8227
8228   /* these values are not constant, but can change at runtime */
8229   scrollbar_info[0].x = SC_SCROLL_VERTICAL_XPOS;
8230   scrollbar_info[0].y = SC_SCROLL_VERTICAL_YPOS;
8231   scrollbar_info[0].width  = SC_SCROLL_VERTICAL_XSIZE;
8232   scrollbar_info[0].height = SC_SCROLL_VERTICAL_YSIZE;
8233
8234   for (i = 0; i < NUM_SCREEN_SCROLLBARS; i++)
8235   {
8236     Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
8237     int gfx_unpressed, gfx_pressed;
8238     int x, y, width, height;
8239     int gd_x1, gd_x2, gd_y1, gd_y2;
8240     struct GadgetInfo *gi;
8241     int items_max, items_visible, item_position;
8242     unsigned int event_mask;
8243     int num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
8244     int id = scrollbar_info[i].gadget_id;
8245
8246     event_mask = GD_EVENT_MOVING | GD_EVENT_OFF_BORDERS;
8247
8248     x = mSX + scrollbar_info[i].x + menu.scrollbar_xoffset;
8249     y = mSY + scrollbar_info[i].y;
8250     width  = scrollbar_info[i].width;
8251     height = scrollbar_info[i].height;
8252
8253     /* correct scrollbar position if placed outside menu (playfield) area */
8254     if (x > SX + SC_SCROLL_VERTICAL_XPOS)
8255       x = SX + SC_SCROLL_VERTICAL_XPOS;
8256
8257     if (id == SCREEN_CTRL_ID_SCROLL_VERTICAL)
8258       height = (NUM_MENU_ENTRIES_ON_SCREEN - 2) * SC_SCROLLBUTTON_YSIZE;
8259
8260     items_max = num_page_entries;
8261     items_visible = num_page_entries;
8262     item_position = 0;
8263
8264     gfx_unpressed = scrollbar_info[i].gfx_unpressed;
8265     gfx_pressed   = scrollbar_info[i].gfx_pressed;
8266     gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
8267     gd_bitmap_pressed   = graphic_info[gfx_pressed].bitmap;
8268     gd_x1 = graphic_info[gfx_unpressed].src_x;
8269     gd_y1 = graphic_info[gfx_unpressed].src_y;
8270     gd_x2 = graphic_info[gfx_pressed].src_x;
8271     gd_y2 = graphic_info[gfx_pressed].src_y;
8272
8273     gi = CreateGadget(GDI_CUSTOM_ID, id,
8274                       GDI_CUSTOM_TYPE_ID, i,
8275                       GDI_IMAGE_ID, gfx_unpressed,
8276                       GDI_INFO_TEXT, scrollbar_info[i].infotext,
8277                       GDI_X, x,
8278                       GDI_Y, y,
8279                       GDI_WIDTH, width,
8280                       GDI_HEIGHT, height,
8281                       GDI_TYPE, scrollbar_info[i].type,
8282                       GDI_SCROLLBAR_ITEMS_MAX, items_max,
8283                       GDI_SCROLLBAR_ITEMS_VISIBLE, items_visible,
8284                       GDI_SCROLLBAR_ITEM_POSITION, item_position,
8285                       GDI_WHEEL_AREA_X, SX,
8286                       GDI_WHEEL_AREA_Y, SY,
8287                       GDI_WHEEL_AREA_WIDTH, SXSIZE,
8288                       GDI_WHEEL_AREA_HEIGHT, SYSIZE,
8289                       GDI_STATE, GD_BUTTON_UNPRESSED,
8290                       GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
8291                       GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
8292                       GDI_BORDER_SIZE, SC_BORDER_SIZE, SC_BORDER_SIZE,
8293                       GDI_DIRECT_DRAW, FALSE,
8294                       GDI_EVENT_MASK, event_mask,
8295                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
8296                       GDI_END);
8297
8298     if (gi == NULL)
8299       Error(ERR_EXIT, "cannot create gadget");
8300
8301     screen_gadget[id] = gi;
8302   }
8303 }
8304
8305 void CreateScreenGadgets()
8306 {
8307   CreateScreenMenubuttons();
8308
8309   CreateScreenScrollbuttons();
8310   CreateScreenScrollbars();
8311 }
8312
8313 void FreeScreenGadgets()
8314 {
8315   int i;
8316
8317   for (i = 0; i < NUM_SCREEN_GADGETS; i++)
8318     FreeGadget(screen_gadget[i]);
8319 }
8320
8321 void MapScreenMenuGadgets(int screen_mask)
8322 {
8323   int i;
8324
8325   for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
8326     if (screen_mask & menubutton_info[i].screen_mask)
8327       MapGadget(screen_gadget[menubutton_info[i].gadget_id]);
8328 }
8329
8330 void UnmapScreenMenuGadgets(int screen_mask)
8331 {
8332   int i;
8333
8334   for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
8335   {
8336     if (screen_mask & menubutton_info[i].screen_mask)
8337     {
8338       UnmapGadget(screen_gadget[menubutton_info[i].gadget_id]);
8339
8340       if (screen_mask & SCREEN_MASK_MAIN_HAS_SOLUTION)
8341         DrawBackground(screen_gadget[menubutton_info[i].gadget_id]->x,
8342                        screen_gadget[menubutton_info[i].gadget_id]->y,
8343                        screen_gadget[menubutton_info[i].gadget_id]->width,
8344                        screen_gadget[menubutton_info[i].gadget_id]->height);
8345     }
8346   }
8347 }
8348
8349 void UpdateScreenMenuGadgets(int screen_mask, boolean map_gadgets)
8350 {
8351   if (map_gadgets)
8352     MapScreenMenuGadgets(screen_mask);
8353   else
8354     UnmapScreenMenuGadgets(screen_mask);
8355 }
8356
8357 void MapScreenGadgets(int num_entries)
8358 {
8359   int i;
8360
8361   if (num_entries <= NUM_MENU_ENTRIES_ON_SCREEN)
8362     return;
8363
8364   for (i = 0; i < NUM_SCREEN_SCROLLBUTTONS; i++)
8365     MapGadget(screen_gadget[scrollbutton_info[i].gadget_id]);
8366
8367   for (i = 0; i < NUM_SCREEN_SCROLLBARS; i++)
8368     MapGadget(screen_gadget[scrollbar_info[i].gadget_id]);
8369 }
8370
8371 void MapScreenTreeGadgets(TreeInfo *ti)
8372 {
8373   MapScreenGadgets(numTreeInfoInGroup(ti));
8374 }
8375
8376 static void HandleScreenGadgets(struct GadgetInfo *gi)
8377 {
8378   int id = gi->custom_id;
8379   int button = gi->event.button;
8380   int step = (button == MB_LEFTBUTTON   ? 1 :
8381               button == MB_MIDDLEBUTTON ? 5 :
8382               button == MB_RIGHTBUTTON  ? 10 : 1);
8383
8384   switch (id)
8385   {
8386     case SCREEN_CTRL_ID_PREV_LEVEL:
8387       HandleMainMenu_SelectLevel(step, -1, NO_DIRECT_LEVEL_SELECT);
8388       break;
8389
8390     case SCREEN_CTRL_ID_NEXT_LEVEL:
8391       HandleMainMenu_SelectLevel(step, +1, NO_DIRECT_LEVEL_SELECT);
8392       break;
8393
8394     case SCREEN_CTRL_ID_PREV_PLAYER:
8395       HandleSetupScreen_Input_Player(step, -1);
8396       break;
8397
8398     case SCREEN_CTRL_ID_NEXT_PLAYER:
8399       HandleSetupScreen_Input_Player(step, +1);
8400       break;
8401
8402     case SCREEN_CTRL_ID_INSERT_SOLUTION:
8403       InsertSolutionTape();
8404       break;
8405
8406     case SCREEN_CTRL_ID_PLAY_SOLUTION:
8407       PlaySolutionTape();
8408       break;
8409
8410     case SCREEN_CTRL_ID_SCROLL_UP:
8411       if (game_status == GAME_MODE_LEVELS)
8412         HandleChooseLevelSet(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
8413       else if (game_status == GAME_MODE_LEVELNR)
8414         HandleChooseLevelNr(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
8415       else if (game_status == GAME_MODE_SETUP)
8416         HandleSetupScreen(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
8417       else if (game_status == GAME_MODE_INFO)
8418         HandleInfoScreen(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
8419       break;
8420
8421     case SCREEN_CTRL_ID_SCROLL_DOWN:
8422       if (game_status == GAME_MODE_LEVELS)
8423         HandleChooseLevelSet(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
8424       else if (game_status == GAME_MODE_LEVELNR)
8425         HandleChooseLevelNr(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
8426       else if (game_status == GAME_MODE_SETUP)
8427         HandleSetupScreen(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
8428       else if (game_status == GAME_MODE_INFO)
8429         HandleInfoScreen(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
8430       break;
8431
8432     case SCREEN_CTRL_ID_SCROLL_VERTICAL:
8433       if (game_status == GAME_MODE_LEVELS)
8434         HandleChooseLevelSet(0,0,999,gi->event.item_position,MB_MENU_INITIALIZE);
8435       else if (game_status == GAME_MODE_LEVELNR)
8436         HandleChooseLevelNr(0,0,999,gi->event.item_position,MB_MENU_INITIALIZE);
8437       else if (game_status == GAME_MODE_SETUP)
8438         HandleSetupScreen(0,0, 999,gi->event.item_position,MB_MENU_INITIALIZE);
8439       else if (game_status == GAME_MODE_INFO)
8440         HandleInfoScreen(0,0, 999,gi->event.item_position,MB_MENU_INITIALIZE);
8441       break;
8442
8443     default:
8444       break;
8445   }
8446 }
8447
8448 void DumpScreenIdentifiers()
8449 {
8450   int i;
8451
8452   Print("Active screen elements on current screen:\n");
8453
8454   for (i = 0; main_controls[i].nr != -1; i++)
8455   {
8456     struct MainControlInfo *mci = &main_controls[i];
8457
8458     if (mci->button_graphic != -1)
8459     {
8460       char *token = getTokenFromImageID(mci->button_graphic);
8461
8462       Print("- '%s'\n", token);
8463     }
8464   }
8465
8466   Print("Done.\n");
8467 }
8468
8469 boolean DoScreenAction(int image_id)
8470 {
8471   int i;
8472
8473   if (game_status != GAME_MODE_MAIN)
8474     return FALSE;
8475
8476   for (i = 0; main_controls[i].nr != -1; i++)
8477   {
8478     struct MainControlInfo *mci = &main_controls[i];
8479     struct MenuPosInfo *pos = mci->pos_button;
8480
8481     if (mci->button_graphic == image_id)
8482     {
8483       int x = mSX + pos->x;
8484       int y = mSY + pos->y;
8485
8486       HandleMainMenu(x, y, 0, 0, MB_MENU_CHOICE);
8487
8488       return TRUE;
8489     }
8490   }
8491
8492   return FALSE;
8493 }