7af34951c4cc368fafcb1608b1a9d2f2eaaabffa
[rocksndiamonds.git] / src / init.c
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2002 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * init.c                                                   *
12 ***********************************************************/
13
14 #include "libgame/libgame.h"
15
16 #include "init.h"
17 #include "events.h"
18 #include "screens.h"
19 #include "editor.h"
20 #include "game.h"
21 #include "tape.h"
22 #include "tools.h"
23 #include "files.h"
24 #include "network.h"
25 #include "netserv.h"
26 #include "cartoons.h"
27
28 #include "conf_e2g.c"   /* include auto-generated data structure definitions */
29 #include "conf_esg.c"   /* include auto-generated data structure definitions */
30 #include "conf_e2s.c"   /* include auto-generated data structure definitions */
31 #include "conf_fnt.c"   /* include auto-generated data structure definitions */
32
33
34 #define CONFIG_TOKEN_FONT_INITIAL               "font.initial"
35
36
37 struct FontBitmapInfo font_initial[NUM_INITIAL_FONTS];
38
39
40 static void InitTileClipmasks()
41 {
42 #if 0
43 #if defined(TARGET_X11)
44   XGCValues clip_gc_values;
45   unsigned long clip_gc_valuemask;
46
47 #if defined(TARGET_X11_NATIVE)
48
49 #if 0
50   GC copy_clipmask_gc;
51
52   static struct
53   {
54     int start;
55     int count;
56   }
57   tile_needs_clipping[] =
58   {
59     { GFX_SPIELER1_UP, 4 },
60     { GFX_SPIELER1_DOWN, 4 },
61     { GFX_SPIELER1_LEFT, 4 },
62     { GFX_SPIELER1_RIGHT, 4 },
63     { GFX_SPIELER1_PUSH_LEFT, 4 },
64     { GFX_SPIELER1_PUSH_RIGHT, 4 },
65     { GFX_SPIELER2_UP, 4 },
66     { GFX_SPIELER2_DOWN, 4 },
67     { GFX_SPIELER2_LEFT, 4 },
68     { GFX_SPIELER2_RIGHT, 4 },
69     { GFX_SPIELER2_PUSH_LEFT, 4 },
70     { GFX_SPIELER2_PUSH_RIGHT, 4 },
71     { GFX_SPIELER3_UP, 4 },
72     { GFX_SPIELER3_DOWN, 4 },
73     { GFX_SPIELER3_LEFT, 4 },
74     { GFX_SPIELER3_RIGHT, 4 },
75     { GFX_SPIELER3_PUSH_LEFT, 4 },
76     { GFX_SPIELER3_PUSH_RIGHT, 4 },
77     { GFX_SPIELER4_UP, 4 },
78     { GFX_SPIELER4_DOWN, 4 },
79     { GFX_SPIELER4_LEFT, 4 },
80     { GFX_SPIELER4_RIGHT, 4 },
81     { GFX_SPIELER4_PUSH_LEFT, 4 },
82     { GFX_SPIELER4_PUSH_RIGHT, 4 },
83     { GFX_SP_MURPHY, 1 },
84     { GFX_MURPHY_GO_LEFT, 3 },
85     { GFX_MURPHY_GO_RIGHT, 3 },
86     { GFX_MURPHY_SNAP_UP, 1 },
87     { GFX_MURPHY_SNAP_DOWN, 1 },
88     { GFX_MURPHY_SNAP_RIGHT, 1 },
89     { GFX_MURPHY_SNAP_LEFT, 1 },
90     { GFX_MURPHY_PUSH_RIGHT, 1 },
91     { GFX_MURPHY_PUSH_LEFT, 1 },
92     { GFX_GEBLUBBER, 4 },
93     { GFX_DYNAMIT, 7 },
94     { GFX_DYNABOMB, 4 },
95     { GFX_EXPLOSION, 8 },
96     { GFX_SOKOBAN_OBJEKT, 1 },
97     { GFX_FUNKELN_BLAU, 3 },
98     { GFX_FUNKELN_WEISS, 3 },
99     { GFX2_SHIELD_PASSIVE, 3 },
100     { GFX2_SHIELD_ACTIVE, 3 },
101     { -1, 0 }
102   };
103 #endif
104
105 #endif /* TARGET_X11_NATIVE */
106 #endif /* TARGET_X11 */
107
108   int i;
109
110   /* initialize pixmap array for special X11 tile clipping to Pixmap 'None' */
111   for (i=0; i<NUM_TILES; i++)
112     tile_clipmask[i] = None;
113
114 #if defined(TARGET_X11)
115   /* This stuff is needed because X11 (XSetClipOrigin(), to be precise) is
116      often very slow when preparing a masked XCopyArea() for big Pixmaps.
117      To prevent this, create small (tile-sized) mask Pixmaps which will then
118      be set much faster with XSetClipOrigin() and speed things up a lot. */
119
120   clip_gc_values.graphics_exposures = False;
121   clip_gc_valuemask = GCGraphicsExposures;
122   tile_clip_gc = XCreateGC(display, window->drawable,
123                            clip_gc_valuemask, &clip_gc_values);
124
125 #if 0
126   for (i=0; i<NUM_BITMAPS; i++)
127   {
128     if (pix[i]->clip_mask)
129     {
130       clip_gc_values.graphics_exposures = False;
131       clip_gc_values.clip_mask = pix[i]->clip_mask;
132       clip_gc_valuemask = GCGraphicsExposures | GCClipMask;
133       pix[i]->stored_clip_gc = XCreateGC(display, window->drawable,
134                                          clip_gc_valuemask, &clip_gc_values);
135     }
136   }
137 #endif
138
139 #if defined(TARGET_X11_NATIVE)
140
141 #if 0
142   /* create graphic context structures needed for clipping */
143   clip_gc_values.graphics_exposures = False;
144   clip_gc_valuemask = GCGraphicsExposures;
145   copy_clipmask_gc = XCreateGC(display, pix[PIX_BACK]->clip_mask,
146                                clip_gc_valuemask, &clip_gc_values);
147
148   /* create only those clipping Pixmaps we really need */
149   for (i=0; tile_needs_clipping[i].start>=0; i++)
150   {
151     int j;
152
153     for (j=0; j<tile_needs_clipping[i].count; j++)
154     {
155       int tile = tile_needs_clipping[i].start + j;
156       int graphic = tile;
157       int src_x, src_y;
158       Bitmap *src_bitmap;
159       Pixmap src_pixmap;
160
161       getGraphicSource(graphic, &src_bitmap, &src_x, &src_y);
162       src_pixmap = src_bitmap->clip_mask;
163
164       tile_clipmask[tile] = XCreatePixmap(display, window->drawable,
165                                           TILEX, TILEY, 1);
166
167       XCopyArea(display, src_pixmap, tile_clipmask[tile], copy_clipmask_gc,
168                 src_x, src_y, TILEX, TILEY, 0, 0);
169     }
170   }
171
172   XFreeGC(display, copy_clipmask_gc);
173 #endif
174
175 #endif /* TARGET_X11_NATIVE */
176 #endif /* TARGET_X11 */
177 #endif
178 }
179
180 void FreeTileClipmasks()
181 {
182 #if 0
183 #if defined(TARGET_X11)
184   int i;
185
186   for (i=0; i<NUM_TILES; i++)
187   {
188     if (tile_clipmask[i] != None)
189     {
190       XFreePixmap(display, tile_clipmask[i]);
191       tile_clipmask[i] = None;
192     }
193   }
194
195   if (tile_clip_gc)
196     XFreeGC(display, tile_clip_gc);
197   tile_clip_gc = None;
198
199 #if 0
200   for (i=0; i<NUM_BITMAPS; i++)
201   {
202     if (pix[i] != NULL && pix[i]->stored_clip_gc)
203     {
204       XFreeGC(display, pix[i]->stored_clip_gc);
205       pix[i]->stored_clip_gc = None;
206     }
207   }
208 #endif
209
210 #endif /* TARGET_X11 */
211 #endif
212 }
213
214 void FreeGadgets()
215 {
216   FreeLevelEditorGadgets();
217   FreeGameButtons();
218   FreeTapeButtons();
219   FreeToolButtons();
220   FreeScreenGadgets();
221 }
222
223 void InitGadgets()
224 {
225   static boolean gadgets_initialized = FALSE;
226
227   if (gadgets_initialized)
228     FreeGadgets();
229
230   CreateLevelEditorGadgets();
231   CreateGameButtons();
232   CreateTapeButtons();
233   CreateToolButtons();
234   CreateScreenGadgets();
235
236   gadgets_initialized = TRUE;
237 }
238
239 void InitElementSmallImages()
240 {
241   struct PropertyMapping *property_mapping = getImageListPropertyMapping();
242   int num_property_mappings = getImageListPropertyMappingSize();
243   int i;
244
245   /* initialize normal images from static configuration */
246   for (i=0; element_to_graphic[i].element > -1; i++)
247     CreateImageWithSmallImages(element_to_graphic[i].graphic);
248
249   /* initialize special images from static configuration */
250   for (i=0; element_to_special_graphic[i].element > -1; i++)
251     CreateImageWithSmallImages(element_to_special_graphic[i].graphic);
252
253   /* initialize images from dynamic configuration */
254   for (i=0; i < num_property_mappings; i++)
255     if (property_mapping[i].artwork_index < MAX_NUM_ELEMENTS)
256       CreateImageWithSmallImages(property_mapping[i].artwork_index);
257 }
258
259 static int getFontBitmapID(int font_nr)
260 {
261   int special = -1;
262
263   if (game_status == MAINMENU || game_status == TYPENAME)
264     special = GFX_SPECIAL_ARG_MAIN;
265   else if (game_status == CHOOSELEVEL)
266     special = GFX_SPECIAL_ARG_LEVELS;
267   else if (game_status == HALLOFFAME)
268     special = GFX_SPECIAL_ARG_SCORES;
269   else if (game_status == LEVELED)
270     special = GFX_SPECIAL_ARG_EDITOR;
271   else if (game_status == HELPSCREEN)
272     special = GFX_SPECIAL_ARG_INFO;
273   else if (game_status == SETUP)
274     special = GFX_SPECIAL_ARG_SETUP;
275   else if (game_status == PSEUDO_PREVIEW)
276     special = GFX_SPECIAL_ARG_PREVIEW;
277   else if (game_status == PLAYING || game_status == PSEUDO_DOOR)
278     special = GFX_SPECIAL_ARG_DOOR;
279
280   if (special != -1)
281     return font_info[font_nr].special_bitmap_id[special];
282   else
283     return font_nr;
284 }
285
286 void InitFontGraphicInfo()
287 {
288   static struct FontBitmapInfo *font_bitmap_info = NULL;
289   struct PropertyMapping *property_mapping = getImageListPropertyMapping();
290   int num_property_mappings = getImageListPropertyMappingSize();
291   int num_font_bitmaps = NUM_FONTS;
292   int i, j;
293
294   if (graphic_info == NULL)             /* still at startup phase */
295   {
296     InitFontInfo(font_initial, NUM_INITIAL_FONTS, getFontBitmapID);
297
298     return;
299   }
300
301   /* ---------- initialize font graphic definitions ---------- */
302
303   /* always start with reliable default values (normal font graphics) */
304   for (i=0; i < NUM_FONTS; i++)
305     font_info[i].graphic = FONT_INITIAL_1;
306
307   /* initialize normal font/graphic mapping from static configuration */
308   for (i=0; font_to_graphic[i].font_nr > -1; i++)
309   {
310     int font_nr = font_to_graphic[i].font_nr;
311     int special = font_to_graphic[i].special;
312     int graphic = font_to_graphic[i].graphic;
313
314     if (special != -1)
315       continue;
316
317     font_info[font_nr].graphic = graphic;
318   }
319
320   /* always start with reliable default values (special font graphics) */
321   for (i=0; i < NUM_FONTS; i++)
322   {
323     for (j=0; j < NUM_SPECIAL_GFX_ARGS; j++)
324     {
325       font_info[i].special_graphic[j] = font_info[i].graphic;
326       font_info[i].special_bitmap_id[j] = i;
327     }
328   }
329
330   /* initialize special font/graphic mapping from static configuration */
331   for (i=0; font_to_graphic[i].font_nr > -1; i++)
332   {
333     int font_nr = font_to_graphic[i].font_nr;
334     int special = font_to_graphic[i].special;
335     int graphic = font_to_graphic[i].graphic;
336
337     if (special >= 0 && special < NUM_SPECIAL_GFX_ARGS)
338     {
339       font_info[font_nr].special_graphic[special] = graphic;
340       font_info[font_nr].special_bitmap_id[special] = num_font_bitmaps;
341       num_font_bitmaps++;
342     }
343   }
344
345   /* initialize special element/graphic mapping from dynamic configuration */
346   for (i=0; i < num_property_mappings; i++)
347   {
348     int font_nr = property_mapping[i].base_index - MAX_NUM_ELEMENTS;
349     int special = property_mapping[i].ext3_index;
350     int graphic = property_mapping[i].artwork_index;
351
352     if (font_nr < 0)
353       continue;
354
355     if (special >= 0 && special < NUM_SPECIAL_GFX_ARGS)
356     {
357       font_info[font_nr].special_graphic[special] = graphic;
358       font_info[font_nr].special_bitmap_id[special] = num_font_bitmaps;
359       num_font_bitmaps++;
360     }
361   }
362
363   /* ---------- initialize font bitmap array ---------- */
364
365   if (font_bitmap_info != NULL)
366     free(font_bitmap_info);
367
368   font_bitmap_info =
369     checked_calloc(num_font_bitmaps * sizeof(struct FontBitmapInfo));
370
371   /* ---------- initialize font bitmap definitions ---------- */
372
373   for (i=0; i < NUM_FONTS; i++)
374   {
375     if (i < NUM_INITIAL_FONTS)
376     {
377       font_bitmap_info[i] = font_initial[i];
378       continue;
379     }
380
381     for (j=0; j < NUM_SPECIAL_GFX_ARGS; j++)
382     {
383       int font_bitmap_id = font_info[i].special_bitmap_id[j];
384       int graphic = font_info[i].special_graphic[j];
385
386       /* set 'graphic_info' for font entries, if uninitialized (guessed) */
387       if (graphic_info[graphic].anim_frames < MIN_NUM_CHARS_PER_FONT)
388       {
389         graphic_info[graphic].anim_frames = DEFAULT_NUM_CHARS_PER_FONT;
390         graphic_info[graphic].anim_frames_per_line= DEFAULT_NUM_CHARS_PER_LINE;
391       }
392
393       /* copy font relevant information from graphics information */
394       font_bitmap_info[font_bitmap_id].bitmap = graphic_info[graphic].bitmap;
395       font_bitmap_info[font_bitmap_id].src_x  = graphic_info[graphic].src_x;
396       font_bitmap_info[font_bitmap_id].src_y  = graphic_info[graphic].src_y;
397       font_bitmap_info[font_bitmap_id].width  = graphic_info[graphic].width;
398       font_bitmap_info[font_bitmap_id].height = graphic_info[graphic].height;
399       font_bitmap_info[font_bitmap_id].draw_x = graphic_info[graphic].draw_x;
400       font_bitmap_info[font_bitmap_id].draw_y = graphic_info[graphic].draw_y;
401
402       font_bitmap_info[font_bitmap_id].num_chars =
403         graphic_info[graphic].anim_frames;
404       font_bitmap_info[font_bitmap_id].num_chars_per_line =
405         graphic_info[graphic].anim_frames_per_line;
406     }
407   }
408
409   InitFontInfo(font_bitmap_info, num_font_bitmaps, getFontBitmapID);
410 }
411
412 void InitElementGraphicInfo()
413 {
414   struct PropertyMapping *property_mapping = getImageListPropertyMapping();
415   int num_property_mappings = getImageListPropertyMappingSize();
416   int i, act, dir;
417
418   /* set values to -1 to identify later as "uninitialized" values */
419   for (i=0; i<MAX_NUM_ELEMENTS; i++)
420   {
421     for (act=0; act<NUM_ACTIONS; act++)
422     {
423       element_info[i].graphic[act] = -1;
424
425       for (dir=0; dir<NUM_DIRECTIONS; dir++)
426         element_info[i].direction_graphic[act][dir] = -1;
427     }
428   }
429
430   /* initialize normal element/graphic mapping from static configuration */
431   for (i=0; element_to_graphic[i].element > -1; i++)
432   {
433     int element   = element_to_graphic[i].element;
434     int action    = element_to_graphic[i].action;
435     int direction = element_to_graphic[i].direction;
436     int graphic   = element_to_graphic[i].graphic;
437
438     if (graphic_info[graphic].bitmap == NULL)
439       continue;
440
441     if (action < 0)
442       action = ACTION_DEFAULT;
443
444     if (direction > -1)
445       element_info[element].direction_graphic[action][direction] = graphic;
446     else
447       element_info[element].graphic[action] = graphic;
448   }
449
450   /* initialize normal element/graphic mapping from dynamic configuration */
451   for (i=0; i < num_property_mappings; i++)
452   {
453     int element   = property_mapping[i].base_index;
454     int action    = property_mapping[i].ext1_index;
455     int direction = property_mapping[i].ext2_index;
456     int special   = property_mapping[i].ext3_index;
457     int graphic   = property_mapping[i].artwork_index;
458
459     if (graphic_info[graphic].bitmap == NULL)
460       continue;
461
462     if (element >= MAX_NUM_ELEMENTS || special != -1)
463       continue;
464
465     if (action < 0)
466       action = ACTION_DEFAULT;
467
468     if (direction > -1)
469       element_info[element].direction_graphic[action][direction] = graphic;
470     else
471       element_info[element].graphic[action] = graphic;
472   }
473
474   /* now set all '-1' values to element specific default values */
475   for (i=0; i<MAX_NUM_ELEMENTS; i++)
476   {
477     int default_action_graphic = element_info[i].graphic[ACTION_DEFAULT];
478     int default_action_direction_graphic[NUM_DIRECTIONS];
479
480     if (default_action_graphic == -1)
481       default_action_graphic = IMG_CHAR_QUESTION;
482
483     for (dir=0; dir<NUM_DIRECTIONS; dir++)
484     {
485       default_action_direction_graphic[dir] =
486         element_info[i].direction_graphic[ACTION_DEFAULT][dir];
487
488       if (default_action_direction_graphic[dir] == -1)
489         default_action_direction_graphic[dir] = default_action_graphic;
490     }
491
492     for (act=0; act<NUM_ACTIONS; act++)
493     {
494       boolean act_empty = (act == ACTION_DIGGING ||
495                            act == ACTION_SNAPPING ||
496                            act == ACTION_COLLECTING);
497
498       for (dir=0; dir<NUM_DIRECTIONS; dir++)
499       {
500         int default_direction_graphic = element_info[i].graphic[act];
501
502         /* no graphic for current action -- use default direction graphic */
503         if (default_direction_graphic == -1)
504           default_direction_graphic =
505             (act_empty ? IMG_EMPTY : default_action_direction_graphic[dir]);
506
507         if (element_info[i].direction_graphic[act][dir] == -1)
508           element_info[i].direction_graphic[act][dir] =
509             default_direction_graphic;
510       }
511
512       /* no graphic for this specific action -- use default action graphic */
513       if (element_info[i].graphic[act] == -1)
514         element_info[i].graphic[act] =
515           (act_empty ? IMG_EMPTY : default_action_graphic);
516     }
517   }
518
519 #if 0
520 #if DEBUG
521   if (options.verbose)
522   {
523     for (i=0; i<MAX_NUM_ELEMENTS; i++)
524       if (element_info[i].graphic[ACTION_DEFAULT] == IMG_CHAR_QUESTION &&
525           i != EL_CHAR_QUESTION)
526         Error(ERR_RETURN, "warning: no graphic for element '%s' (%d)",
527               element_info[i].token_name, i);
528   }
529 #endif
530 #endif
531 }
532
533 void InitElementSpecialGraphicInfo()
534 {
535   struct PropertyMapping *property_mapping = getImageListPropertyMapping();
536   int num_property_mappings = getImageListPropertyMappingSize();
537   int i, j;
538
539   /* always start with reliable default values */
540   for (i=0; i < MAX_NUM_ELEMENTS; i++)
541     for (j=0; j < NUM_SPECIAL_GFX_ARGS; j++)
542       element_info[i].special_graphic[j] =
543         element_info[i].graphic[ACTION_DEFAULT];
544
545   /* initialize special element/graphic mapping from static configuration */
546   for (i=0; element_to_special_graphic[i].element > -1; i++)
547   {
548     int element = element_to_special_graphic[i].element;
549     int special = element_to_special_graphic[i].special;
550     int graphic = element_to_special_graphic[i].graphic;
551     boolean base_redefined = getImageListEntry(el2img(element))->redefined;
552     boolean special_redefined = getImageListEntry(graphic)->redefined;
553
554     if (base_redefined && !special_redefined)
555       continue;
556
557     element_info[element].special_graphic[special] = graphic;
558   }
559
560   /* initialize special element/graphic mapping from dynamic configuration */
561   for (i=0; i < num_property_mappings; i++)
562   {
563     int element = property_mapping[i].base_index;
564     int special = property_mapping[i].ext3_index;
565     int graphic = property_mapping[i].artwork_index;
566
567     if (element >= MAX_NUM_ELEMENTS)
568       continue;
569
570     if (special >= 0 && special < NUM_SPECIAL_GFX_ARGS)
571       element_info[element].special_graphic[special] = graphic;
572   }
573 }
574
575 static void set_graphic_parameters(int graphic, char **parameter_raw)
576 {
577   Bitmap *src_bitmap = getBitmapFromImageID(graphic);
578   int parameter[NUM_GFX_ARGS];
579   int anim_frames_per_row = 1, anim_frames_per_col = 1;
580   int anim_frames_per_line = 1;
581   int i;
582
583   /* get integer values from string parameters */
584   for (i=0; i < NUM_GFX_ARGS; i++)
585     parameter[i] =
586       get_parameter_value(image_config_suffix[i].token, parameter_raw[i],
587                           image_config_suffix[i].type);
588
589   graphic_info[graphic].bitmap = src_bitmap;
590
591   /* start with reliable default values */
592   graphic_info[graphic].src_x = 0;
593   graphic_info[graphic].src_y = 0;
594   graphic_info[graphic].width = TILEX;
595   graphic_info[graphic].height = TILEY;
596   graphic_info[graphic].offset_x = 0;   /* one or both of these values ... */
597   graphic_info[graphic].offset_y = 0;   /* ... will be corrected later */
598
599   /* optional x and y tile position of animation frame sequence */
600   if (parameter[GFX_ARG_XPOS] != ARG_UNDEFINED_VALUE)
601     graphic_info[graphic].src_x = parameter[GFX_ARG_XPOS] * TILEX;
602   if (parameter[GFX_ARG_YPOS] != ARG_UNDEFINED_VALUE)
603     graphic_info[graphic].src_y = parameter[GFX_ARG_YPOS] * TILEY;
604
605   /* optional x and y pixel position of animation frame sequence */
606   if (parameter[GFX_ARG_X] != ARG_UNDEFINED_VALUE)
607     graphic_info[graphic].src_x = parameter[GFX_ARG_X];
608   if (parameter[GFX_ARG_Y] != ARG_UNDEFINED_VALUE)
609     graphic_info[graphic].src_y = parameter[GFX_ARG_Y];
610
611   /* optional width and height of each animation frame */
612   if (parameter[GFX_ARG_WIDTH] != ARG_UNDEFINED_VALUE)
613     graphic_info[graphic].width = parameter[GFX_ARG_WIDTH];
614   if (parameter[GFX_ARG_HEIGHT] != ARG_UNDEFINED_VALUE)
615     graphic_info[graphic].height = parameter[GFX_ARG_HEIGHT];
616
617   if (src_bitmap)
618   {
619     anim_frames_per_row = src_bitmap->width  / graphic_info[graphic].width;
620     anim_frames_per_col = src_bitmap->height / graphic_info[graphic].height;
621   }
622
623   /* correct x or y offset dependant of vertical or horizontal frame order */
624   if (parameter[GFX_ARG_VERTICAL])      /* frames are ordered vertically */
625   {
626     graphic_info[graphic].offset_y =
627       (parameter[GFX_ARG_OFFSET] != ARG_UNDEFINED_VALUE ?
628        parameter[GFX_ARG_OFFSET] : graphic_info[graphic].height);
629     anim_frames_per_line = anim_frames_per_col;
630   }
631   else                                  /* frames are ordered horizontally */
632   {
633     graphic_info[graphic].offset_x =
634       (parameter[GFX_ARG_OFFSET] != ARG_UNDEFINED_VALUE ?
635        parameter[GFX_ARG_OFFSET] : graphic_info[graphic].width);
636     anim_frames_per_line = anim_frames_per_row;
637   }
638
639   /* optionally, the x and y offset of frames can be specified directly */
640   if (parameter[GFX_ARG_XOFFSET] != ARG_UNDEFINED_VALUE)
641     graphic_info[graphic].offset_x = parameter[GFX_ARG_XOFFSET];
642   if (parameter[GFX_ARG_YOFFSET] != ARG_UNDEFINED_VALUE)
643     graphic_info[graphic].offset_y = parameter[GFX_ARG_YOFFSET];
644
645   /* automatically determine correct number of frames, if not defined */
646   if (parameter[GFX_ARG_FRAMES] != ARG_UNDEFINED_VALUE)
647     graphic_info[graphic].anim_frames = parameter[GFX_ARG_FRAMES];
648   else if (parameter[GFX_ARG_XPOS] == 0 && !parameter[GFX_ARG_VERTICAL])
649     graphic_info[graphic].anim_frames = anim_frames_per_row;
650   else if (parameter[GFX_ARG_YPOS] == 0 && parameter[GFX_ARG_VERTICAL])
651     graphic_info[graphic].anim_frames = anim_frames_per_col;
652   else
653     graphic_info[graphic].anim_frames = 1;
654
655   graphic_info[graphic].anim_frames_per_line =
656     (parameter[GFX_ARG_FRAMES_PER_LINE] != ARG_UNDEFINED_VALUE ?
657      parameter[GFX_ARG_FRAMES_PER_LINE] : anim_frames_per_line);
658
659   graphic_info[graphic].anim_delay = parameter[GFX_ARG_DELAY];
660   if (graphic_info[graphic].anim_delay == 0)    /* delay must be at least 1 */
661     graphic_info[graphic].anim_delay = 1;
662
663   graphic_info[graphic].anim_mode = parameter[GFX_ARG_ANIM_MODE];
664   if (graphic_info[graphic].anim_frames == 1)
665     graphic_info[graphic].anim_mode = ANIM_NONE;
666
667   /* automatically determine correct start frame, if not defined */
668   if (parameter[GFX_ARG_START_FRAME] == ARG_UNDEFINED_VALUE)
669     graphic_info[graphic].anim_start_frame = 0;
670   else if (graphic_info[graphic].anim_mode & ANIM_REVERSE)
671     graphic_info[graphic].anim_start_frame =
672       graphic_info[graphic].anim_frames - parameter[GFX_ARG_START_FRAME] - 1;
673   else
674     graphic_info[graphic].anim_start_frame = parameter[GFX_ARG_START_FRAME];
675
676   /* animation synchronized with global frame counter, not move position */
677   graphic_info[graphic].anim_global_sync = parameter[GFX_ARG_GLOBAL_SYNC];
678
679   /* this is only used for toon animations */
680   graphic_info[graphic].step_offset = parameter[GFX_ARG_STEP_OFFSET];
681   graphic_info[graphic].step_delay  = parameter[GFX_ARG_STEP_DELAY];
682
683   /* this is only used for drawing font characters */
684   graphic_info[graphic].draw_x = parameter[GFX_ARG_DRAW_XOFFSET];
685   graphic_info[graphic].draw_y = parameter[GFX_ARG_DRAW_YOFFSET];
686 }
687
688 static void InitGraphicInfo()
689 {
690   int fallback_graphic = IMG_CHAR_EXCLAM;
691   struct FileInfo *fallback_image = getImageListEntry(fallback_graphic);
692   Bitmap *fallback_bitmap = getBitmapFromImageID(fallback_graphic);
693   int num_images = getImageListSize();
694   int i;
695
696 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
697   static boolean clipmasks_initialized = FALSE;
698   Pixmap src_pixmap;
699   XGCValues clip_gc_values;
700   unsigned long clip_gc_valuemask;
701   GC copy_clipmask_gc = None;
702 #endif
703
704   if (graphic_info != NULL)
705     free(graphic_info);
706
707   graphic_info = checked_calloc(num_images * sizeof(struct GraphicInfo));
708
709 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
710   if (clipmasks_initialized)
711   {
712     for (i=0; i<num_images; i++)
713     {
714       if (graphic_info[i].clip_mask)
715         XFreePixmap(display, graphic_info[i].clip_mask);
716       if (graphic_info[i].clip_gc)
717         XFreeGC(display, graphic_info[i].clip_gc);
718
719       graphic_info[i].clip_mask = None;
720       graphic_info[i].clip_gc = None;
721     }
722   }
723 #endif
724
725   for (i=0; i<num_images; i++)
726   {
727     struct FileInfo *image = getImageListEntry(i);
728     Bitmap *src_bitmap;
729     int src_x, src_y;
730     int first_frame, last_frame;
731
732     set_graphic_parameters(i, image->parameter);
733
734     /* now check if no animation frames are outside of the loaded image */
735
736     if (graphic_info[i].bitmap == NULL)
737       continue;         /* skip check for optional images that are undefined */
738
739     first_frame = 0;
740     getGraphicSource(i, first_frame, &src_bitmap, &src_x, &src_y);
741     if (src_x < 0 || src_y < 0 ||
742         src_x + TILEX > src_bitmap->width ||
743         src_y + TILEY > src_bitmap->height)
744     {
745       Error(ERR_RETURN_LINE, "-");
746       Error(ERR_RETURN, "warning: error found in config file:");
747       Error(ERR_RETURN, "- config file: '%s'",
748             getImageConfigFilename());
749       Error(ERR_RETURN, "- config token: '%s'",
750             getTokenFromImageID(i));
751       Error(ERR_RETURN, "- image file: '%s'",
752             src_bitmap->source_filename);
753       Error(ERR_RETURN,
754             "error: first animation frame out of bounds (%d, %d)",
755             src_x, src_y);
756       Error(ERR_RETURN, "custom graphic rejected for this element/action");
757
758       if (i == fallback_graphic)
759         Error(ERR_EXIT, "fatal error: no fallback graphic available");
760
761       Error(ERR_RETURN, "fallback done to 'char_exclam' for this graphic");
762       Error(ERR_RETURN_LINE, "-");
763
764       set_graphic_parameters(i, fallback_image->default_parameter);
765       graphic_info[i].bitmap = fallback_bitmap;
766     }
767
768     last_frame = graphic_info[i].anim_frames - 1;
769     getGraphicSource(i, last_frame, &src_bitmap, &src_x, &src_y);
770     if (src_x < 0 || src_y < 0 ||
771         src_x + TILEX > src_bitmap->width ||
772         src_y + TILEY > src_bitmap->height)
773     {
774       Error(ERR_RETURN_LINE, "-");
775       Error(ERR_RETURN, "warning: error found in config file:");
776       Error(ERR_RETURN, "- config file: '%s'",
777             getImageConfigFilename());
778       Error(ERR_RETURN, "- config token: '%s'",
779             getTokenFromImageID(i));
780       Error(ERR_RETURN, "- image file: '%s'",
781             src_bitmap->source_filename);
782       Error(ERR_RETURN,
783             "error: last animation frame (%d) out of bounds (%d, %d)",
784             last_frame, src_x, src_y);
785       Error(ERR_RETURN, "custom graphic rejected for this element/action");
786
787       if (i == fallback_graphic)
788         Error(ERR_EXIT, "fatal error: no fallback graphic available");
789
790       Error(ERR_RETURN, "fallback done to 'char_exclam' for this graphic");
791       Error(ERR_RETURN_LINE, "-");
792
793       set_graphic_parameters(i, fallback_image->default_parameter);
794       graphic_info[i].bitmap = fallback_bitmap;
795     }
796
797 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
798     /* currently we need only a tile clip mask from the first frame */
799     getGraphicSource(i, first_frame, &src_bitmap, &src_x, &src_y);
800
801     if (copy_clipmask_gc == None)
802     {
803       clip_gc_values.graphics_exposures = False;
804       clip_gc_valuemask = GCGraphicsExposures;
805       copy_clipmask_gc = XCreateGC(display, src_bitmap->clip_mask,
806                                    clip_gc_valuemask, &clip_gc_values);
807     }
808
809     graphic_info[i].clip_mask =
810       XCreatePixmap(display, window->drawable, TILEX, TILEY, 1);
811
812     src_pixmap = src_bitmap->clip_mask;
813     XCopyArea(display, src_pixmap, graphic_info[i].clip_mask,
814               copy_clipmask_gc, src_x, src_y, TILEX, TILEY, 0, 0);
815
816     clip_gc_values.graphics_exposures = False;
817     clip_gc_values.clip_mask = graphic_info[i].clip_mask;
818     clip_gc_valuemask = GCGraphicsExposures | GCClipMask;
819
820     graphic_info[i].clip_gc =
821       XCreateGC(display, window->drawable, clip_gc_valuemask, &clip_gc_values);
822 #endif
823   }
824
825 #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND)
826   if (copy_clipmask_gc)
827     XFreeGC(display, copy_clipmask_gc);
828
829   clipmasks_initialized = TRUE;
830 #endif
831 }
832
833 static void InitElementSoundInfo()
834 {
835   struct PropertyMapping *property_mapping = getSoundListPropertyMapping();
836   int num_property_mappings = getSoundListPropertyMappingSize();
837   int i, j, act;
838
839   /* set values to -1 to identify later as "uninitialized" values */
840   for (i=0; i < MAX_NUM_ELEMENTS; i++)
841     for (act=0; act < NUM_ACTIONS; act++)
842       element_info[i].sound[act] = -1;
843
844   /* initialize element/sound mapping from static configuration */
845   for (i=0; element_to_sound[i].element > -1; i++)
846   {
847     int element      = element_to_sound[i].element;
848     int action       = element_to_sound[i].action;
849     int sound        = element_to_sound[i].sound;
850     boolean is_class = element_to_sound[i].is_class;
851
852     if (action < 0)
853       action = ACTION_DEFAULT;
854
855     if (!is_class)
856       element_info[element].sound[action] = sound;
857     else
858       for (j=0; j < MAX_NUM_ELEMENTS; j++)
859         if (strcmp(element_info[j].class_name,
860                    element_info[element].class_name) == 0)
861           element_info[j].sound[action] = sound;
862   }
863
864   /* initialize element/sound mapping from dynamic configuration */
865   for (i=0; i < num_property_mappings; i++)
866   {
867     int element = property_mapping[i].base_index;
868     int action  = property_mapping[i].ext1_index;
869     int sound   = property_mapping[i].artwork_index;
870
871     if (element >= MAX_NUM_ELEMENTS)
872       continue;
873
874     if (action < 0)
875       action = ACTION_DEFAULT;
876
877     element_info[element].sound[action] = sound;
878   }
879
880   /* initialize element class/sound mapping from dynamic configuration */
881   for (i=0; i < num_property_mappings; i++)
882   {
883     int element_class = property_mapping[i].base_index - MAX_NUM_ELEMENTS;
884     int action        = property_mapping[i].ext1_index;
885     int sound         = property_mapping[i].artwork_index;
886
887     if (element_class < 0 || element_class >= MAX_NUM_ELEMENTS)
888       continue;
889
890     if (action < 0)
891       action = ACTION_DEFAULT;
892
893     for (j=0; j < MAX_NUM_ELEMENTS; j++)
894       if (strcmp(element_info[j].class_name,
895                  element_info[element_class].class_name) == 0)
896         element_info[j].sound[action] = sound;
897   }
898
899   /* now set all '-1' values to element specific default values */
900   for (i=0; i<MAX_NUM_ELEMENTS; i++)
901   {
902     int default_action_sound = element_info[i].sound[ACTION_DEFAULT];
903
904     for (act=0; act < NUM_ACTIONS; act++)
905     {
906       /* no sound for this specific action -- use default action sound */
907       if (element_info[i].sound[act] == -1)
908         element_info[i].sound[act] = default_action_sound;
909     }
910   }
911 }
912
913 static void set_sound_parameters(int sound, char **parameter_raw)
914 {
915   int parameter[NUM_SND_ARGS];
916   int i;
917
918   /* get integer values from string parameters */
919   for (i=0; i < NUM_SND_ARGS; i++)
920     parameter[i] =
921       get_parameter_value(sound_config_suffix[i].token, parameter_raw[i],
922                           sound_config_suffix[i].type);
923
924   /* explicit loop mode setting in configuration overrides default value */
925   if (parameter[SND_ARG_MODE_LOOP] != ARG_UNDEFINED_VALUE)
926     sound_info[sound].loop = parameter[SND_ARG_MODE_LOOP];
927 }
928
929 static void InitSoundInfo()
930 {
931   struct PropertyMapping *property_mapping = getSoundListPropertyMapping();
932   int num_property_mappings = getSoundListPropertyMappingSize();
933   int *sound_effect_properties;
934   int num_sounds = getSoundListSize();
935   int i, j;
936
937   if (sound_info != NULL)
938     free(sound_info);
939
940   sound_effect_properties = checked_calloc(num_sounds * sizeof(int));
941   sound_info = checked_calloc(num_sounds * sizeof(struct SoundInfo));
942
943   /* initialize sound effect for all elements to "no sound" */
944   for (i=0; i<MAX_NUM_ELEMENTS; i++)
945     for (j=0; j<NUM_ACTIONS; j++)
946       element_info[i].sound[j] = SND_UNDEFINED;
947
948   for (i=0; i<num_sounds; i++)
949   {
950     struct FileInfo *sound = getSoundListEntry(i);
951     int len_effect_text = strlen(sound->token);
952
953     sound_effect_properties[i] = ACTION_OTHER;
954     sound_info[i].loop = FALSE;
955
956     /* determine all loop sounds and identify certain sound classes */
957
958     for (j=0; element_action_info[j].suffix; j++)
959     {
960       int len_action_text = strlen(element_action_info[j].suffix);
961
962       if (len_action_text < len_effect_text &&
963           strcmp(&sound->token[len_effect_text - len_action_text],
964                  element_action_info[j].suffix) == 0)
965       {
966         sound_effect_properties[i] = element_action_info[j].value;
967
968         if (element_action_info[j].is_loop_sound)
969           sound_info[i].loop = TRUE;
970       }
971     }
972
973     /* associate elements and some selected sound actions */
974
975     for (j=0; j<MAX_NUM_ELEMENTS; j++)
976     {
977       if (element_info[j].class_name)
978       {
979         int len_class_text = strlen(element_info[j].class_name);
980
981         if (len_class_text + 1 < len_effect_text &&
982             strncmp(sound->token,
983                     element_info[j].class_name, len_class_text) == 0 &&
984             sound->token[len_class_text] == '.')
985         {
986           int sound_action_value = sound_effect_properties[i];
987
988           element_info[j].sound[sound_action_value] = i;
989         }
990       }
991     }
992
993     set_sound_parameters(i, sound->parameter);
994   }
995
996   free(sound_effect_properties);
997
998   /* initialize element/sound mapping from dynamic configuration */
999   for (i=0; i < num_property_mappings; i++)
1000   {
1001     int element   = property_mapping[i].base_index;
1002     int action    = property_mapping[i].ext1_index;
1003     int sound     = property_mapping[i].artwork_index;
1004
1005     if (action < 0)
1006       action = ACTION_DEFAULT;
1007
1008     element_info[element].sound[action] = sound;
1009   }
1010
1011 #if 0
1012   /* TEST ONLY */
1013   {
1014     int element = EL_CUSTOM_11;
1015     int j = 0;
1016
1017     while (element_action_info[j].suffix)
1018     {
1019       printf("element %d, sound action '%s'  == %d\n",
1020              element, element_action_info[j].suffix,
1021              element_info[element].sound[j]);
1022       j++;
1023     }
1024   }
1025
1026   PlaySoundLevelElementAction(0,0, EL_CUSTOM_11, ACTION_PUSHING);
1027 #endif
1028
1029 #if 0
1030   /* TEST ONLY */
1031   {
1032     int element = EL_SAND;
1033     int sound_action = ACTION_DIGGING;
1034     int j = 0;
1035
1036     while (element_action_info[j].suffix)
1037     {
1038       if (element_action_info[j].value == sound_action)
1039         printf("element %d, sound action '%s'  == %d\n",
1040                element, element_action_info[j].suffix,
1041                element_info[element].sound[sound_action]);
1042       j++;
1043     }
1044   }
1045 #endif
1046 }
1047
1048 static void ReinitializeGraphics()
1049 {
1050   InitGraphicInfo();                    /* graphic properties mapping */
1051   InitElementGraphicInfo();             /* element game graphic mapping */
1052   InitElementSpecialGraphicInfo();      /* element special graphic mapping */
1053
1054   InitElementSmallImages();             /* create editor and preview images */
1055   InitFontGraphicInfo();                /* initialize text drawing functions */
1056
1057   SetMainBackgroundImage(IMG_BACKGROUND);
1058   SetDoorBackgroundImage(IMG_BACKGROUND_DOOR);
1059
1060   InitGadgets();
1061   InitToons();
1062 }
1063
1064 static void ReinitializeSounds()
1065 {
1066   InitSoundInfo();              /* sound properties mapping */
1067   InitElementSoundInfo();       /* element game sound mapping */
1068
1069 #if 1
1070   InitElementSoundInfo();       /* element game sound mapping */
1071 #endif
1072
1073   InitPlaySoundLevel();         /* internal game sound settings */
1074 }
1075
1076 static void ReinitializeMusic()
1077 {
1078   /* currently nothing to do */
1079 }
1080
1081 void InitElementProperties()
1082 {
1083   int i, j;
1084
1085   static int ep_amoebalive[] =
1086   {
1087     EL_AMOEBA_WET,
1088     EL_AMOEBA_DRY,
1089     EL_AMOEBA_FULL,
1090     EL_BD_AMOEBA,
1091     -1
1092   };
1093
1094   static int ep_amoeboid[] =
1095   {
1096     EL_AMOEBA_DEAD,
1097     EL_AMOEBA_WET,
1098     EL_AMOEBA_DRY,
1099     EL_AMOEBA_FULL,
1100     EL_BD_AMOEBA,
1101     -1
1102   };
1103
1104   static int ep_schluessel[] =
1105   {
1106     EL_KEY_1,
1107     EL_KEY_2,
1108     EL_KEY_3,
1109     EL_KEY_4,
1110     EL_EM_KEY_1,
1111     EL_EM_KEY_2,
1112     EL_EM_KEY_3,
1113     EL_EM_KEY_4,
1114     -1
1115   };
1116
1117   static int ep_pforte[] =
1118   {
1119     EL_GATE_1,
1120     EL_GATE_2,
1121     EL_GATE_3,
1122     EL_GATE_4,
1123     EL_GATE_1_GRAY,
1124     EL_GATE_2_GRAY,
1125     EL_GATE_3_GRAY,
1126     EL_GATE_4_GRAY,
1127     EL_EM_GATE_1,
1128     EL_EM_GATE_2,
1129     EL_EM_GATE_3,
1130     EL_EM_GATE_4,
1131     EL_EM_GATE_1_GRAY,
1132     EL_EM_GATE_2_GRAY,
1133     EL_EM_GATE_3_GRAY,
1134     EL_EM_GATE_4_GRAY,
1135     EL_SWITCHGATE_OPEN,
1136     EL_SWITCHGATE_OPENING,
1137     EL_SWITCHGATE_CLOSED,
1138     EL_SWITCHGATE_CLOSING,
1139     EL_TIMEGATE_OPEN,
1140     EL_TIMEGATE_OPENING,
1141     EL_TIMEGATE_CLOSED,
1142     EL_TIMEGATE_CLOSING,
1143     EL_TUBE_ANY,
1144     EL_TUBE_VERTICAL,
1145     EL_TUBE_HORIZONTAL,
1146     EL_TUBE_VERTICAL_LEFT,
1147     EL_TUBE_VERTICAL_RIGHT,
1148     EL_TUBE_HORIZONTAL_UP,
1149     EL_TUBE_HORIZONTAL_DOWN,
1150     EL_TUBE_LEFT_UP,
1151     EL_TUBE_LEFT_DOWN,
1152     EL_TUBE_RIGHT_UP,
1153     EL_TUBE_RIGHT_DOWN,
1154     -1
1155   };
1156
1157   static int ep_solid[] =
1158   {
1159     EL_WALL,
1160     EL_EXPANDABLE_WALL,
1161     EL_EXPANDABLE_WALL_HORIZONTAL,
1162     EL_EXPANDABLE_WALL_VERTICAL,
1163     EL_EXPANDABLE_WALL_ANY,
1164     EL_BD_WALL,
1165     EL_WALL_CRUMBLED,
1166     EL_EXIT_CLOSED,
1167     EL_EXIT_OPENING,
1168     EL_EXIT_OPEN,
1169     EL_AMOEBA_DEAD,
1170     EL_AMOEBA_WET,
1171     EL_AMOEBA_DRY,
1172     EL_AMOEBA_FULL,
1173     EL_BD_AMOEBA,
1174     EL_QUICKSAND_EMPTY,
1175     EL_QUICKSAND_FULL,
1176     EL_QUICKSAND_FILLING,
1177     EL_QUICKSAND_EMPTYING,
1178     EL_MAGIC_WALL,
1179     EL_MAGIC_WALL_ACTIVE,
1180     EL_MAGIC_WALL_EMPTYING,
1181     EL_MAGIC_WALL_FILLING,
1182     EL_MAGIC_WALL_FULL,
1183     EL_MAGIC_WALL_DEAD,
1184     EL_BD_MAGIC_WALL,
1185     EL_BD_MAGIC_WALL_ACTIVE,
1186     EL_BD_MAGIC_WALL_EMPTYING,
1187     EL_BD_MAGIC_WALL_FULL,
1188     EL_BD_MAGIC_WALL_FILLING,
1189     EL_BD_MAGIC_WALL_DEAD,
1190     EL_GAME_OF_LIFE,
1191     EL_BIOMAZE,
1192     EL_SP_CHIP_SINGLE,
1193     EL_SP_CHIP_LEFT,
1194     EL_SP_CHIP_RIGHT,
1195     EL_SP_CHIP_TOP,
1196     EL_SP_CHIP_BOTTOM,
1197     EL_SP_TERMINAL,
1198     EL_SP_TERMINAL_ACTIVE,
1199     EL_SP_EXIT_CLOSED,
1200     EL_SP_EXIT_OPEN,
1201     EL_INVISIBLE_WALL,
1202     EL_INVISIBLE_WALL_ACTIVE,
1203     EL_SWITCHGATE_SWITCH_UP,
1204     EL_SWITCHGATE_SWITCH_DOWN,
1205     EL_TIMEGATE_SWITCH,
1206     EL_TIMEGATE_SWITCH_ACTIVE,
1207     EL_EMC_WALL_1,
1208     EL_EMC_WALL_2,
1209     EL_EMC_WALL_3,
1210     EL_EMC_WALL_4,
1211     EL_EMC_WALL_5,
1212     EL_EMC_WALL_6,
1213     EL_EMC_WALL_7,
1214     EL_EMC_WALL_8,
1215     EL_WALL_PEARL,
1216     EL_WALL_CRYSTAL,
1217
1218     /* the following elements are a direct copy of "indestructible" elements,
1219        except "EL_ACID", which is "indestructible", but not "solid"! */
1220 #if 0
1221     EL_ACID,
1222 #endif
1223     EL_STEELWALL,
1224     EL_ACID_POOL_TOPLEFT,
1225     EL_ACID_POOL_TOPRIGHT,
1226     EL_ACID_POOL_BOTTOMLEFT,
1227     EL_ACID_POOL_BOTTOM,
1228     EL_ACID_POOL_BOTTOMRIGHT,
1229     EL_SP_HARDWARE_GRAY,
1230     EL_SP_HARDWARE_GREEN,
1231     EL_SP_HARDWARE_BLUE,
1232     EL_SP_HARDWARE_RED,
1233     EL_SP_HARDWARE_YELLOW,
1234     EL_SP_HARDWARE_BASE_1,
1235     EL_SP_HARDWARE_BASE_2,
1236     EL_SP_HARDWARE_BASE_3,
1237     EL_SP_HARDWARE_BASE_4,
1238     EL_SP_HARDWARE_BASE_5,
1239     EL_SP_HARDWARE_BASE_6,
1240     EL_INVISIBLE_STEELWALL,
1241     EL_INVISIBLE_STEELWALL_ACTIVE,
1242     EL_CONVEYOR_BELT_1_SWITCH_LEFT,
1243     EL_CONVEYOR_BELT_1_SWITCH_MIDDLE,
1244     EL_CONVEYOR_BELT_1_SWITCH_RIGHT,
1245     EL_CONVEYOR_BELT_2_SWITCH_LEFT,
1246     EL_CONVEYOR_BELT_2_SWITCH_MIDDLE,
1247     EL_CONVEYOR_BELT_2_SWITCH_RIGHT,
1248     EL_CONVEYOR_BELT_3_SWITCH_LEFT,
1249     EL_CONVEYOR_BELT_3_SWITCH_MIDDLE,
1250     EL_CONVEYOR_BELT_3_SWITCH_RIGHT,
1251     EL_CONVEYOR_BELT_4_SWITCH_LEFT,
1252     EL_CONVEYOR_BELT_4_SWITCH_MIDDLE,
1253     EL_CONVEYOR_BELT_4_SWITCH_RIGHT,
1254     EL_LIGHT_SWITCH,
1255     EL_LIGHT_SWITCH_ACTIVE,
1256     EL_SIGN_EXCLAMATION,
1257     EL_SIGN_RADIOACTIVITY,
1258     EL_SIGN_STOP,
1259     EL_SIGN_WHEELCHAIR,
1260     EL_SIGN_PARKING,
1261     EL_SIGN_ONEWAY,
1262     EL_SIGN_HEART,
1263     EL_SIGN_TRIANGLE,
1264     EL_SIGN_ROUND,
1265     EL_SIGN_EXIT,
1266     EL_SIGN_YINYANG,
1267     EL_SIGN_OTHER,
1268     EL_STEELWALL_SLANTED,
1269     EL_EMC_STEELWALL_1,
1270     EL_EMC_STEELWALL_2,
1271     EL_EMC_STEELWALL_3,
1272     EL_EMC_STEELWALL_4,
1273     EL_CRYSTAL,
1274     EL_GATE_1,
1275     EL_GATE_2,
1276     EL_GATE_3,
1277     EL_GATE_4,
1278     EL_GATE_1_GRAY,
1279     EL_GATE_2_GRAY,
1280     EL_GATE_3_GRAY,
1281     EL_GATE_4_GRAY,
1282     EL_EM_GATE_1,
1283     EL_EM_GATE_2,
1284     EL_EM_GATE_3,
1285     EL_EM_GATE_4,
1286     EL_EM_GATE_1_GRAY,
1287     EL_EM_GATE_2_GRAY,
1288     EL_EM_GATE_3_GRAY,
1289     EL_EM_GATE_4_GRAY,
1290     EL_SWITCHGATE_OPEN,
1291     EL_SWITCHGATE_OPENING,
1292     EL_SWITCHGATE_CLOSED,
1293     EL_SWITCHGATE_CLOSING,
1294     EL_TIMEGATE_OPEN,
1295     EL_TIMEGATE_OPENING,
1296     EL_TIMEGATE_CLOSED,
1297     EL_TIMEGATE_CLOSING,
1298     EL_TUBE_ANY,
1299     EL_TUBE_VERTICAL,
1300     EL_TUBE_HORIZONTAL,
1301     EL_TUBE_VERTICAL_LEFT,
1302     EL_TUBE_VERTICAL_RIGHT,
1303     EL_TUBE_HORIZONTAL_UP,
1304     EL_TUBE_HORIZONTAL_DOWN,
1305     EL_TUBE_LEFT_UP,
1306     EL_TUBE_LEFT_DOWN,
1307     EL_TUBE_RIGHT_UP,
1308     EL_TUBE_RIGHT_DOWN,
1309     -1
1310   };
1311
1312   static int ep_indestructible[] =
1313   {
1314     EL_STEELWALL,
1315     EL_ACID,
1316     EL_ACID_POOL_TOPLEFT,
1317     EL_ACID_POOL_TOPRIGHT,
1318     EL_ACID_POOL_BOTTOMLEFT,
1319     EL_ACID_POOL_BOTTOM,
1320     EL_ACID_POOL_BOTTOMRIGHT,
1321     EL_SP_HARDWARE_GRAY,
1322     EL_SP_HARDWARE_GREEN,
1323     EL_SP_HARDWARE_BLUE,
1324     EL_SP_HARDWARE_RED,
1325     EL_SP_HARDWARE_YELLOW,
1326     EL_SP_HARDWARE_BASE_1,
1327     EL_SP_HARDWARE_BASE_2,
1328     EL_SP_HARDWARE_BASE_3,
1329     EL_SP_HARDWARE_BASE_4,
1330     EL_SP_HARDWARE_BASE_5,
1331     EL_SP_HARDWARE_BASE_6,
1332     EL_INVISIBLE_STEELWALL,
1333     EL_INVISIBLE_STEELWALL_ACTIVE,
1334     EL_CONVEYOR_BELT_1_SWITCH_LEFT,
1335     EL_CONVEYOR_BELT_1_SWITCH_MIDDLE,
1336     EL_CONVEYOR_BELT_1_SWITCH_RIGHT,
1337     EL_CONVEYOR_BELT_2_SWITCH_LEFT,
1338     EL_CONVEYOR_BELT_2_SWITCH_MIDDLE,
1339     EL_CONVEYOR_BELT_2_SWITCH_RIGHT,
1340     EL_CONVEYOR_BELT_3_SWITCH_LEFT,
1341     EL_CONVEYOR_BELT_3_SWITCH_MIDDLE,
1342     EL_CONVEYOR_BELT_3_SWITCH_RIGHT,
1343     EL_CONVEYOR_BELT_4_SWITCH_LEFT,
1344     EL_CONVEYOR_BELT_4_SWITCH_MIDDLE,
1345     EL_CONVEYOR_BELT_4_SWITCH_RIGHT,
1346     EL_LIGHT_SWITCH,
1347     EL_LIGHT_SWITCH_ACTIVE,
1348     EL_SIGN_EXCLAMATION,
1349     EL_SIGN_RADIOACTIVITY,
1350     EL_SIGN_STOP,
1351     EL_SIGN_WHEELCHAIR,
1352     EL_SIGN_PARKING,
1353     EL_SIGN_ONEWAY,
1354     EL_SIGN_HEART,
1355     EL_SIGN_TRIANGLE,
1356     EL_SIGN_ROUND,
1357     EL_SIGN_EXIT,
1358     EL_SIGN_YINYANG,
1359     EL_SIGN_OTHER,
1360     EL_STEELWALL_SLANTED,
1361     EL_EMC_STEELWALL_1,
1362     EL_EMC_STEELWALL_2,
1363     EL_EMC_STEELWALL_3,
1364     EL_EMC_STEELWALL_4,
1365     EL_CRYSTAL,
1366     EL_GATE_1,
1367     EL_GATE_2,
1368     EL_GATE_3,
1369     EL_GATE_4,
1370     EL_GATE_1_GRAY,
1371     EL_GATE_2_GRAY,
1372     EL_GATE_3_GRAY,
1373     EL_GATE_4_GRAY,
1374     EL_EM_GATE_1,
1375     EL_EM_GATE_2,
1376     EL_EM_GATE_3,
1377     EL_EM_GATE_4,
1378     EL_EM_GATE_1_GRAY,
1379     EL_EM_GATE_2_GRAY,
1380     EL_EM_GATE_3_GRAY,
1381     EL_EM_GATE_4_GRAY,
1382     EL_SWITCHGATE_OPEN,
1383     EL_SWITCHGATE_OPENING,
1384     EL_SWITCHGATE_CLOSED,
1385     EL_SWITCHGATE_CLOSING,
1386     EL_TIMEGATE_OPEN,
1387     EL_TIMEGATE_OPENING,
1388     EL_TIMEGATE_CLOSED,
1389     EL_TIMEGATE_CLOSING,
1390     EL_TUBE_ANY,
1391     EL_TUBE_VERTICAL,
1392     EL_TUBE_HORIZONTAL,
1393     EL_TUBE_VERTICAL_LEFT,
1394     EL_TUBE_VERTICAL_RIGHT,
1395     EL_TUBE_HORIZONTAL_UP,
1396     EL_TUBE_HORIZONTAL_DOWN,
1397     EL_TUBE_LEFT_UP,
1398     EL_TUBE_LEFT_DOWN,
1399     EL_TUBE_RIGHT_UP,
1400     EL_TUBE_RIGHT_DOWN,
1401     -1
1402   };
1403
1404   static int ep_slippery[] =
1405   {
1406     EL_WALL_CRUMBLED,
1407     EL_BD_WALL,
1408     EL_ROCK,
1409     EL_BD_ROCK,
1410     EL_EMERALD,
1411     EL_BD_DIAMOND,
1412     EL_EMERALD_YELLOW,
1413     EL_EMERALD_RED,
1414     EL_EMERALD_PURPLE,
1415     EL_DIAMOND,
1416     EL_BOMB,
1417     EL_NUT,
1418     EL_ROBOT_WHEEL_ACTIVE,
1419     EL_ROBOT_WHEEL,
1420     EL_TIME_ORB_FULL,
1421     EL_TIME_ORB_EMPTY,
1422     EL_LAMP_ACTIVE,
1423     EL_LAMP,
1424     EL_ACID_POOL_TOPLEFT,
1425     EL_ACID_POOL_TOPRIGHT,
1426     EL_SATELLITE,
1427     EL_SP_ZONK,
1428     EL_SP_INFOTRON,
1429     EL_SP_CHIP_SINGLE,
1430     EL_SP_CHIP_LEFT,
1431     EL_SP_CHIP_RIGHT,
1432     EL_SP_CHIP_TOP,
1433     EL_SP_CHIP_BOTTOM,
1434     EL_SPEED_PILL,
1435     EL_STEELWALL_SLANTED,
1436     EL_PEARL,
1437     EL_CRYSTAL,
1438     -1
1439   };
1440
1441   static int ep_enemy[] =
1442   {
1443     EL_BUG,
1444     EL_SPACESHIP,
1445     EL_BD_BUTTERFLY,
1446     EL_BD_FIREFLY,
1447     EL_YAMYAM,
1448     EL_DARK_YAMYAM,
1449     EL_ROBOT,
1450     EL_PACMAN,
1451     EL_SP_SNIKSNAK,
1452     EL_SP_ELECTRON,
1453     -1
1454   };
1455
1456   static int ep_mauer[] =
1457   {
1458     EL_STEELWALL,
1459     EL_GATE_1,
1460     EL_GATE_2,
1461     EL_GATE_3,
1462     EL_GATE_4,
1463     EL_GATE_1_GRAY,
1464     EL_GATE_2_GRAY,
1465     EL_GATE_3_GRAY,
1466     EL_GATE_4_GRAY,
1467     EL_EM_GATE_1,
1468     EL_EM_GATE_2,
1469     EL_EM_GATE_3,
1470     EL_EM_GATE_4,
1471     EL_EM_GATE_1_GRAY,
1472     EL_EM_GATE_2_GRAY,
1473     EL_EM_GATE_3_GRAY,
1474     EL_EM_GATE_4_GRAY,
1475     EL_EXIT_CLOSED,
1476     EL_EXIT_OPENING,
1477     EL_EXIT_OPEN,
1478     EL_WALL,
1479     EL_WALL_CRUMBLED,
1480     EL_EXPANDABLE_WALL,
1481     EL_EXPANDABLE_WALL_HORIZONTAL,
1482     EL_EXPANDABLE_WALL_VERTICAL,
1483     EL_EXPANDABLE_WALL_ANY,
1484     EL_EXPANDABLE_WALL_GROWING,
1485     EL_BD_WALL,
1486     EL_SP_CHIP_SINGLE,
1487     EL_SP_CHIP_LEFT,
1488     EL_SP_CHIP_RIGHT,
1489     EL_SP_CHIP_TOP,
1490     EL_SP_CHIP_BOTTOM,
1491     EL_SP_HARDWARE_GRAY,
1492     EL_SP_HARDWARE_GREEN,
1493     EL_SP_HARDWARE_BLUE,
1494     EL_SP_HARDWARE_RED,
1495     EL_SP_HARDWARE_YELLOW,
1496     EL_SP_HARDWARE_BASE_1,
1497     EL_SP_HARDWARE_BASE_2,
1498     EL_SP_HARDWARE_BASE_3,
1499     EL_SP_HARDWARE_BASE_4,
1500     EL_SP_HARDWARE_BASE_5,
1501     EL_SP_HARDWARE_BASE_6,
1502     EL_SP_TERMINAL,
1503     EL_SP_TERMINAL_ACTIVE,
1504     EL_SP_EXIT_CLOSED,
1505     EL_SP_EXIT_OPEN,
1506     EL_INVISIBLE_STEELWALL,
1507     EL_INVISIBLE_STEELWALL_ACTIVE,
1508     EL_INVISIBLE_WALL,
1509     EL_INVISIBLE_WALL_ACTIVE,
1510     EL_STEELWALL_SLANTED,
1511     EL_EMC_STEELWALL_1,
1512     EL_EMC_STEELWALL_2,
1513     EL_EMC_STEELWALL_3,
1514     EL_EMC_STEELWALL_4,
1515     EL_EMC_WALL_1,
1516     EL_EMC_WALL_2,
1517     EL_EMC_WALL_3,
1518     EL_EMC_WALL_4,
1519     EL_EMC_WALL_5,
1520     EL_EMC_WALL_6,
1521     EL_EMC_WALL_7,
1522     EL_EMC_WALL_8,
1523     -1
1524   };
1525
1526   static int ep_can_fall[] =
1527   {
1528     EL_ROCK,
1529     EL_BD_ROCK,
1530     EL_EMERALD,
1531     EL_BD_DIAMOND,
1532     EL_EMERALD_YELLOW,
1533     EL_EMERALD_RED,
1534     EL_EMERALD_PURPLE,
1535     EL_DIAMOND,
1536     EL_BOMB,
1537     EL_NUT,
1538     EL_AMOEBA_DROP,
1539     EL_QUICKSAND_FULL,
1540     EL_MAGIC_WALL_FULL,
1541     EL_BD_MAGIC_WALL_FULL,
1542     EL_TIME_ORB_FULL,
1543     EL_TIME_ORB_EMPTY,
1544     EL_SP_ZONK,
1545     EL_SP_INFOTRON,
1546     EL_SP_DISK_ORANGE,
1547     EL_PEARL,
1548     EL_CRYSTAL,
1549     EL_SPRING,
1550     EL_DX_SUPABOMB,
1551     -1
1552   };
1553
1554   static int ep_can_smash[] =
1555   {
1556     EL_ROCK,
1557     EL_BD_ROCK,
1558     EL_EMERALD,
1559     EL_BD_DIAMOND,
1560     EL_EMERALD_YELLOW,
1561     EL_EMERALD_RED,
1562     EL_EMERALD_PURPLE,
1563     EL_DIAMOND,
1564     EL_BOMB,
1565     EL_NUT,
1566     EL_AMOEBA_DROP,
1567     EL_TIME_ORB_FULL,
1568     EL_TIME_ORB_EMPTY,
1569     EL_SP_ZONK,
1570     EL_SP_INFOTRON,
1571     EL_SP_DISK_ORANGE,
1572     EL_PEARL,
1573     EL_CRYSTAL,
1574     EL_SPRING,
1575     EL_DX_SUPABOMB,
1576     -1
1577   };
1578
1579   static int ep_can_change[] =
1580   {
1581     EL_ROCK,
1582     EL_BD_ROCK,
1583     EL_EMERALD,
1584     EL_BD_DIAMOND,
1585     EL_EMERALD_YELLOW,
1586     EL_EMERALD_RED,
1587     EL_EMERALD_PURPLE,
1588     EL_DIAMOND,
1589     -1
1590   };
1591
1592   static int ep_can_move[] =
1593   {
1594     EL_BUG,
1595     EL_SPACESHIP,
1596     EL_BD_BUTTERFLY,
1597     EL_BD_FIREFLY,
1598     EL_YAMYAM,
1599     EL_DARK_YAMYAM,
1600     EL_ROBOT,
1601     EL_PACMAN,
1602     EL_MOLE,
1603     EL_PENGUIN,
1604     EL_PIG,
1605     EL_DRAGON,
1606     EL_SATELLITE,
1607     EL_SP_SNIKSNAK,
1608     EL_SP_ELECTRON,
1609     EL_BALLOON,
1610     EL_SPRING,
1611     -1
1612   };
1613
1614   static int ep_could_move[] =
1615   {
1616     EL_BUG_RIGHT,
1617     EL_BUG_UP,
1618     EL_BUG_LEFT,
1619     EL_BUG_DOWN,
1620     EL_SPACESHIP_RIGHT,
1621     EL_SPACESHIP_UP,
1622     EL_SPACESHIP_LEFT,
1623     EL_SPACESHIP_DOWN,
1624     EL_BD_BUTTERFLY_RIGHT,
1625     EL_BD_BUTTERFLY_UP,
1626     EL_BD_BUTTERFLY_LEFT,
1627     EL_BD_BUTTERFLY_DOWN,
1628     EL_BD_FIREFLY_RIGHT,
1629     EL_BD_FIREFLY_UP,
1630     EL_BD_FIREFLY_LEFT,
1631     EL_BD_FIREFLY_DOWN,
1632     EL_PACMAN_RIGHT,
1633     EL_PACMAN_UP,
1634     EL_PACMAN_LEFT,
1635     EL_PACMAN_DOWN,
1636     -1
1637   };
1638
1639   static int ep_dont_touch[] =
1640   {
1641     EL_BUG,
1642     EL_SPACESHIP,
1643     EL_BD_BUTTERFLY,
1644     EL_BD_FIREFLY,
1645     -1
1646   };
1647
1648   static int ep_dont_go_to[] =
1649   {
1650     EL_BUG,
1651     EL_SPACESHIP,
1652     EL_BD_BUTTERFLY,
1653     EL_BD_FIREFLY,
1654     EL_YAMYAM,
1655     EL_DARK_YAMYAM,
1656     EL_ROBOT,
1657     EL_PACMAN,
1658     EL_AMOEBA_DROP,
1659     EL_ACID,
1660     EL_SP_SNIKSNAK,
1661     EL_SP_ELECTRON,
1662     EL_SP_BUGGY_BASE_ACTIVE,
1663     EL_TRAP_ACTIVE,
1664     EL_LANDMINE,
1665     -1
1666   };
1667
1668   static int ep_mampf2[] =
1669   {
1670     EL_SAND,
1671     EL_BUG,
1672     EL_SPACESHIP,
1673     EL_BD_BUTTERFLY,
1674     EL_BD_FIREFLY,
1675     EL_YAMYAM,
1676     EL_ROBOT,
1677     EL_PACMAN,
1678     EL_AMOEBA_DROP,
1679     EL_AMOEBA_DEAD,
1680     EL_AMOEBA_WET,
1681     EL_AMOEBA_DRY,
1682     EL_AMOEBA_FULL,
1683     EL_BD_AMOEBA,
1684     EL_EMERALD,
1685     EL_BD_DIAMOND,
1686     EL_EMERALD_YELLOW,
1687     EL_EMERALD_RED,
1688     EL_EMERALD_PURPLE,
1689     EL_DIAMOND,
1690     EL_PEARL,
1691     EL_CRYSTAL,
1692     -1
1693   };
1694
1695   static int ep_bd_element[] =
1696   {
1697     EL_EMPTY,
1698     EL_SAND,
1699     EL_WALL_CRUMBLED,
1700     EL_BD_WALL,
1701     EL_ROCK,
1702     EL_BD_ROCK,
1703     EL_BD_DIAMOND,
1704     EL_BD_MAGIC_WALL,
1705     EL_EXIT_CLOSED,
1706     EL_EXIT_OPEN,
1707     EL_STEELWALL,
1708     EL_PLAYER_1,
1709     EL_BD_FIREFLY,
1710     EL_BD_FIREFLY_1,
1711     EL_BD_FIREFLY_2,
1712     EL_BD_FIREFLY_3,
1713     EL_BD_FIREFLY_4,
1714     EL_BD_BUTTERFLY,
1715     EL_BD_BUTTERFLY_1,
1716     EL_BD_BUTTERFLY_2,
1717     EL_BD_BUTTERFLY_3,
1718     EL_BD_BUTTERFLY_4,
1719     EL_BD_AMOEBA,
1720     EL_CHAR_QUESTION,
1721     -1
1722   };
1723
1724   static int ep_sb_element[] =
1725   {
1726     EL_EMPTY,
1727     EL_STEELWALL,
1728     EL_SOKOBAN_OBJECT,
1729     EL_SOKOBAN_FIELD_EMPTY,
1730     EL_SOKOBAN_FIELD_FULL,
1731     EL_PLAYER_1,
1732     EL_INVISIBLE_STEELWALL,
1733     -1
1734   };
1735
1736   static int ep_gem[] =
1737   {
1738     EL_EMERALD,
1739     EL_BD_DIAMOND,
1740     EL_EMERALD_YELLOW,
1741     EL_EMERALD_RED,
1742     EL_EMERALD_PURPLE,
1743     EL_DIAMOND,
1744     -1
1745   };
1746
1747   static int ep_inactive[] =
1748   {
1749     EL_EMPTY,
1750     EL_SAND,
1751     EL_WALL,
1752     EL_BD_WALL,
1753     EL_WALL_CRUMBLED,
1754     EL_STEELWALL,
1755     EL_AMOEBA_DEAD,
1756     EL_QUICKSAND_EMPTY,
1757     EL_STONEBLOCK,
1758     EL_ROBOT_WHEEL,
1759     EL_KEY_1,
1760     EL_KEY_2,
1761     EL_KEY_3,
1762     EL_KEY_4,
1763     EL_EM_KEY_1,
1764     EL_EM_KEY_2,
1765     EL_EM_KEY_3,
1766     EL_EM_KEY_4,
1767     EL_GATE_1,
1768     EL_GATE_2,
1769     EL_GATE_3,
1770     EL_GATE_4,
1771     EL_GATE_1_GRAY,
1772     EL_GATE_2_GRAY,
1773     EL_GATE_3_GRAY,
1774     EL_GATE_4_GRAY,
1775     EL_EM_GATE_1,
1776     EL_EM_GATE_2,
1777     EL_EM_GATE_3,
1778     EL_EM_GATE_4,
1779     EL_EM_GATE_1_GRAY,
1780     EL_EM_GATE_2_GRAY,
1781     EL_EM_GATE_3_GRAY,
1782     EL_EM_GATE_4_GRAY,
1783     EL_DYNAMITE,
1784     EL_INVISIBLE_STEELWALL,
1785     EL_INVISIBLE_WALL,
1786     EL_INVISIBLE_SAND,
1787     EL_LAMP,
1788     EL_LAMP_ACTIVE,
1789     EL_WALL_EMERALD,
1790     EL_WALL_DIAMOND,
1791     EL_WALL_BD_DIAMOND,
1792     EL_WALL_EMERALD_YELLOW,
1793     EL_DYNABOMB_INCREASE_NUMBER,
1794     EL_DYNABOMB_INCREASE_SIZE,
1795     EL_DYNABOMB_INCREASE_POWER,
1796     EL_SOKOBAN_OBJECT,
1797     EL_SOKOBAN_FIELD_EMPTY,
1798     EL_SOKOBAN_FIELD_FULL,
1799     EL_WALL_EMERALD_RED,
1800     EL_WALL_EMERALD_PURPLE,
1801     EL_ACID_POOL_TOPLEFT,
1802     EL_ACID_POOL_TOPRIGHT,
1803     EL_ACID_POOL_BOTTOMLEFT,
1804     EL_ACID_POOL_BOTTOM,
1805     EL_ACID_POOL_BOTTOMRIGHT,
1806     EL_MAGIC_WALL,
1807     EL_MAGIC_WALL_DEAD,
1808     EL_BD_MAGIC_WALL,
1809     EL_BD_MAGIC_WALL_DEAD,
1810     EL_AMOEBA_TO_DIAMOND,
1811     EL_BLOCKED,
1812     EL_SP_EMPTY,
1813     EL_SP_BASE,
1814     EL_SP_PORT_RIGHT,
1815     EL_SP_PORT_DOWN,
1816     EL_SP_PORT_LEFT,
1817     EL_SP_PORT_UP,
1818     EL_SP_GRAVITY_PORT_RIGHT,
1819     EL_SP_GRAVITY_PORT_DOWN,
1820     EL_SP_GRAVITY_PORT_LEFT,
1821     EL_SP_GRAVITY_PORT_UP,
1822     EL_SP_PORT_HORIZONTAL,
1823     EL_SP_PORT_VERTICAL,
1824     EL_SP_PORT_ANY,
1825     EL_SP_DISK_RED,
1826     EL_SP_DISK_YELLOW,
1827     EL_SP_CHIP_SINGLE,
1828     EL_SP_CHIP_LEFT,
1829     EL_SP_CHIP_RIGHT,
1830     EL_SP_CHIP_TOP,
1831     EL_SP_CHIP_BOTTOM,
1832     EL_SP_HARDWARE_GRAY,
1833     EL_SP_HARDWARE_GREEN,
1834     EL_SP_HARDWARE_BLUE,
1835     EL_SP_HARDWARE_RED,
1836     EL_SP_HARDWARE_YELLOW,
1837     EL_SP_HARDWARE_BASE_1,
1838     EL_SP_HARDWARE_BASE_2,
1839     EL_SP_HARDWARE_BASE_3,
1840     EL_SP_HARDWARE_BASE_4,
1841     EL_SP_HARDWARE_BASE_5,
1842     EL_SP_HARDWARE_BASE_6,
1843     EL_CONVEYOR_BELT_1_SWITCH_LEFT,
1844     EL_CONVEYOR_BELT_1_SWITCH_MIDDLE,
1845     EL_CONVEYOR_BELT_1_SWITCH_RIGHT,
1846     EL_CONVEYOR_BELT_2_SWITCH_LEFT,
1847     EL_CONVEYOR_BELT_2_SWITCH_MIDDLE,
1848     EL_CONVEYOR_BELT_2_SWITCH_RIGHT,
1849     EL_CONVEYOR_BELT_3_SWITCH_LEFT,
1850     EL_CONVEYOR_BELT_3_SWITCH_MIDDLE,
1851     EL_CONVEYOR_BELT_3_SWITCH_RIGHT,
1852     EL_CONVEYOR_BELT_4_SWITCH_LEFT,
1853     EL_CONVEYOR_BELT_4_SWITCH_MIDDLE,
1854     EL_CONVEYOR_BELT_4_SWITCH_RIGHT,
1855     EL_SIGN_EXCLAMATION,
1856     EL_SIGN_RADIOACTIVITY,
1857     EL_SIGN_STOP,
1858     EL_SIGN_WHEELCHAIR,
1859     EL_SIGN_PARKING,
1860     EL_SIGN_ONEWAY,
1861     EL_SIGN_HEART,
1862     EL_SIGN_TRIANGLE,
1863     EL_SIGN_ROUND,
1864     EL_SIGN_EXIT,
1865     EL_SIGN_YINYANG,
1866     EL_SIGN_OTHER,
1867     EL_STEELWALL_SLANTED,
1868     EL_EMC_STEELWALL_1,
1869     EL_EMC_STEELWALL_2,
1870     EL_EMC_STEELWALL_3,
1871     EL_EMC_STEELWALL_4,
1872     EL_EMC_WALL_1,
1873     EL_EMC_WALL_2,
1874     EL_EMC_WALL_3,
1875     EL_EMC_WALL_4,
1876     EL_EMC_WALL_5,
1877     EL_EMC_WALL_6,
1878     EL_EMC_WALL_7,
1879     EL_EMC_WALL_8,
1880     -1
1881   };
1882
1883   static int ep_explosive[] =
1884   {
1885     EL_BOMB,
1886     EL_DYNAMITE_ACTIVE,
1887     EL_DYNAMITE,
1888     EL_DYNABOMB_PLAYER_1_ACTIVE,
1889     EL_DYNABOMB_PLAYER_2_ACTIVE,
1890     EL_DYNABOMB_PLAYER_3_ACTIVE,
1891     EL_DYNABOMB_PLAYER_4_ACTIVE,
1892     EL_DYNABOMB_INCREASE_NUMBER,
1893     EL_DYNABOMB_INCREASE_SIZE,
1894     EL_DYNABOMB_INCREASE_POWER,
1895     EL_SP_DISK_RED_ACTIVE,
1896     EL_BUG,
1897     EL_MOLE,
1898     EL_PENGUIN,
1899     EL_PIG,
1900     EL_DRAGON,
1901     EL_SATELLITE,
1902     EL_SP_DISK_RED,
1903     EL_SP_DISK_ORANGE,
1904     EL_SP_DISK_YELLOW,
1905     EL_SP_SNIKSNAK,
1906     EL_SP_ELECTRON,
1907     EL_DX_SUPABOMB,
1908     -1
1909   };
1910
1911   static int ep_mampf3[] =
1912   {
1913     EL_EMERALD,
1914     EL_BD_DIAMOND,
1915     EL_EMERALD_YELLOW,
1916     EL_EMERALD_RED,
1917     EL_EMERALD_PURPLE,
1918     EL_DIAMOND,
1919     EL_PEARL,
1920     EL_CRYSTAL,
1921     -1
1922   };
1923
1924   static int ep_pushable[] =
1925   {
1926     EL_ROCK,
1927     EL_BD_ROCK,
1928     EL_BOMB,
1929     EL_NUT,
1930     EL_TIME_ORB_EMPTY,
1931     EL_SOKOBAN_FIELD_FULL,
1932     EL_SOKOBAN_OBJECT,
1933     EL_SATELLITE,
1934     EL_SP_ZONK,
1935     EL_SP_DISK_ORANGE,
1936     EL_SP_DISK_YELLOW,
1937     EL_BALLOON,
1938     EL_SPRING,
1939     EL_DX_SUPABOMB,
1940     -1
1941   };
1942
1943   static int ep_player[] =
1944   {
1945     EL_PLAYER_1,
1946     EL_PLAYER_2,
1947     EL_PLAYER_3,
1948     EL_PLAYER_4,
1949     -1
1950   };
1951
1952   static int ep_has_content[] =
1953   {
1954     EL_YAMYAM,
1955     EL_AMOEBA_WET,
1956     EL_AMOEBA_DRY,
1957     EL_AMOEBA_FULL,
1958     EL_BD_AMOEBA,
1959     -1
1960   };
1961
1962   static int ep_eatable[] =
1963   {
1964     EL_SAND,
1965     EL_SP_BASE,
1966     EL_SP_BUGGY_BASE,
1967     EL_SP_BUGGY_BASE_ACTIVATING,
1968     EL_TRAP,
1969     EL_INVISIBLE_SAND,
1970     EL_INVISIBLE_SAND_ACTIVE,
1971     -1
1972   };
1973
1974   static int ep_sp_element[] =
1975   {
1976     EL_SP_EMPTY,
1977     EL_SP_ZONK,
1978     EL_SP_BASE,
1979     EL_SP_MURPHY,
1980     EL_SP_INFOTRON,
1981     EL_SP_CHIP_SINGLE,
1982     EL_SP_HARDWARE_GRAY,
1983     EL_SP_EXIT_CLOSED,
1984     EL_SP_EXIT_OPEN,
1985     EL_SP_DISK_ORANGE,
1986     EL_SP_PORT_RIGHT,
1987     EL_SP_PORT_DOWN,
1988     EL_SP_PORT_LEFT,
1989     EL_SP_PORT_UP,
1990     EL_SP_GRAVITY_PORT_RIGHT,
1991     EL_SP_GRAVITY_PORT_DOWN,
1992     EL_SP_GRAVITY_PORT_LEFT,
1993     EL_SP_GRAVITY_PORT_UP,
1994     EL_SP_SNIKSNAK,
1995     EL_SP_DISK_YELLOW,
1996     EL_SP_TERMINAL,
1997     EL_SP_DISK_RED,
1998     EL_SP_PORT_VERTICAL,
1999     EL_SP_PORT_HORIZONTAL,
2000     EL_SP_PORT_ANY,
2001     EL_SP_ELECTRON,
2002     EL_SP_BUGGY_BASE,
2003     EL_SP_CHIP_LEFT,
2004     EL_SP_CHIP_RIGHT,
2005     EL_SP_HARDWARE_BASE_1,
2006     EL_SP_HARDWARE_GREEN,
2007     EL_SP_HARDWARE_BLUE,
2008     EL_SP_HARDWARE_RED,
2009     EL_SP_HARDWARE_YELLOW,
2010     EL_SP_HARDWARE_BASE_2,
2011     EL_SP_HARDWARE_BASE_3,
2012     EL_SP_HARDWARE_BASE_4,
2013     EL_SP_HARDWARE_BASE_5,
2014     EL_SP_HARDWARE_BASE_6,
2015     EL_SP_CHIP_TOP,
2016     EL_SP_CHIP_BOTTOM,
2017     /* additional elements that appeared in newer Supaplex levels */
2018     EL_INVISIBLE_WALL,
2019     /* more than one murphy in a level results in an inactive clone */
2020     EL_SP_MURPHY_CLONE,
2021     -1
2022   };
2023
2024   static int ep_quick_gate[] =
2025   {
2026     EL_EM_GATE_1,
2027     EL_EM_GATE_2,
2028     EL_EM_GATE_3,
2029     EL_EM_GATE_4,
2030     EL_EM_GATE_1_GRAY,
2031     EL_EM_GATE_2_GRAY,
2032     EL_EM_GATE_3_GRAY,
2033     EL_EM_GATE_4_GRAY,
2034     EL_SP_PORT_LEFT,
2035     EL_SP_PORT_RIGHT,
2036     EL_SP_PORT_UP,
2037     EL_SP_PORT_DOWN,
2038     EL_SP_GRAVITY_PORT_LEFT,
2039     EL_SP_GRAVITY_PORT_RIGHT,
2040     EL_SP_GRAVITY_PORT_UP,
2041     EL_SP_GRAVITY_PORT_DOWN,
2042     EL_SP_PORT_HORIZONTAL,
2043     EL_SP_PORT_VERTICAL,
2044     EL_SP_PORT_ANY,
2045     EL_SWITCHGATE_OPEN,
2046     EL_TIMEGATE_OPEN,
2047     -1
2048   };
2049
2050   static int ep_over_player[] =
2051   {
2052     EL_SP_PORT_LEFT,
2053     EL_SP_PORT_RIGHT,
2054     EL_SP_PORT_UP,
2055     EL_SP_PORT_DOWN,
2056     EL_SP_GRAVITY_PORT_LEFT,
2057     EL_SP_GRAVITY_PORT_RIGHT,
2058     EL_SP_GRAVITY_PORT_UP,
2059     EL_SP_GRAVITY_PORT_DOWN,
2060     EL_SP_PORT_HORIZONTAL,
2061     EL_SP_PORT_VERTICAL,
2062     EL_SP_PORT_ANY,
2063     EL_TUBE_ANY,
2064     EL_TUBE_VERTICAL,
2065     EL_TUBE_HORIZONTAL,
2066     EL_TUBE_VERTICAL_LEFT,
2067     EL_TUBE_VERTICAL_RIGHT,
2068     EL_TUBE_HORIZONTAL_UP,
2069     EL_TUBE_HORIZONTAL_DOWN,
2070     EL_TUBE_LEFT_UP,
2071     EL_TUBE_LEFT_DOWN,
2072     EL_TUBE_RIGHT_UP,
2073     EL_TUBE_RIGHT_DOWN,
2074     -1
2075   };
2076
2077   static int ep_active_bomb[] =
2078   {
2079     EL_DYNAMITE_ACTIVE,
2080     EL_DYNABOMB_PLAYER_1_ACTIVE,
2081     EL_DYNABOMB_PLAYER_2_ACTIVE,
2082     EL_DYNABOMB_PLAYER_3_ACTIVE,
2083     EL_DYNABOMB_PLAYER_4_ACTIVE,
2084     EL_SP_DISK_RED_ACTIVE,
2085     -1
2086   };
2087
2088   static int ep_belt[] =
2089   {
2090     EL_CONVEYOR_BELT_1_LEFT,
2091     EL_CONVEYOR_BELT_1_MIDDLE,
2092     EL_CONVEYOR_BELT_1_RIGHT,
2093     EL_CONVEYOR_BELT_2_LEFT,
2094     EL_CONVEYOR_BELT_2_MIDDLE,
2095     EL_CONVEYOR_BELT_2_RIGHT,
2096     EL_CONVEYOR_BELT_3_LEFT,
2097     EL_CONVEYOR_BELT_3_MIDDLE,
2098     EL_CONVEYOR_BELT_3_RIGHT,
2099     EL_CONVEYOR_BELT_4_LEFT,
2100     EL_CONVEYOR_BELT_4_MIDDLE,
2101     EL_CONVEYOR_BELT_4_RIGHT,
2102     -1
2103   };
2104
2105   static int ep_belt_active[] =
2106   {
2107     EL_CONVEYOR_BELT_1_LEFT_ACTIVE,
2108     EL_CONVEYOR_BELT_1_MIDDLE_ACTIVE,
2109     EL_CONVEYOR_BELT_1_RIGHT_ACTIVE,
2110     EL_CONVEYOR_BELT_2_LEFT_ACTIVE,
2111     EL_CONVEYOR_BELT_2_MIDDLE_ACTIVE,
2112     EL_CONVEYOR_BELT_2_RIGHT_ACTIVE,
2113     EL_CONVEYOR_BELT_3_LEFT_ACTIVE,
2114     EL_CONVEYOR_BELT_3_MIDDLE_ACTIVE,
2115     EL_CONVEYOR_BELT_3_RIGHT_ACTIVE,
2116     EL_CONVEYOR_BELT_4_LEFT_ACTIVE,
2117     EL_CONVEYOR_BELT_4_MIDDLE_ACTIVE,
2118     EL_CONVEYOR_BELT_4_RIGHT_ACTIVE,
2119     -1
2120   };
2121
2122   static int ep_belt_switch[] =
2123   {
2124     EL_CONVEYOR_BELT_1_SWITCH_LEFT,
2125     EL_CONVEYOR_BELT_1_SWITCH_MIDDLE,
2126     EL_CONVEYOR_BELT_1_SWITCH_RIGHT,
2127     EL_CONVEYOR_BELT_2_SWITCH_LEFT,
2128     EL_CONVEYOR_BELT_2_SWITCH_MIDDLE,
2129     EL_CONVEYOR_BELT_2_SWITCH_RIGHT,
2130     EL_CONVEYOR_BELT_3_SWITCH_LEFT,
2131     EL_CONVEYOR_BELT_3_SWITCH_MIDDLE,
2132     EL_CONVEYOR_BELT_3_SWITCH_RIGHT,
2133     EL_CONVEYOR_BELT_4_SWITCH_LEFT,
2134     EL_CONVEYOR_BELT_4_SWITCH_MIDDLE,
2135     EL_CONVEYOR_BELT_4_SWITCH_RIGHT,
2136     -1
2137   };
2138
2139   static int ep_tube[] =
2140   {
2141     EL_TUBE_ANY,
2142     EL_TUBE_VERTICAL,
2143     EL_TUBE_HORIZONTAL,
2144     EL_TUBE_VERTICAL_LEFT,
2145     EL_TUBE_VERTICAL_RIGHT,
2146     EL_TUBE_HORIZONTAL_UP,
2147     EL_TUBE_HORIZONTAL_DOWN,
2148     EL_TUBE_LEFT_UP,
2149     EL_TUBE_LEFT_DOWN,
2150     EL_TUBE_RIGHT_UP,
2151     EL_TUBE_RIGHT_DOWN,
2152     -1
2153   };
2154
2155   static int ep_can_be_crumbled[] =
2156   {
2157     EL_SAND,
2158     EL_LANDMINE,
2159     EL_TRAP,
2160     EL_TRAP_ACTIVE,
2161     -1
2162   };
2163
2164   static struct
2165   {
2166     int *elements;
2167     int property;
2168   } element_properties[] =
2169   {
2170     { ep_amoebalive,            EP_AMOEBALIVE           },
2171     { ep_amoeboid,              EP_AMOEBOID             },
2172     { ep_schluessel,            EP_SCHLUESSEL           },
2173     { ep_pforte,                EP_PFORTE               },
2174     { ep_solid,                 EP_SOLID                },
2175     { ep_indestructible,        EP_INDESTRUCTIBLE       },
2176     { ep_slippery,              EP_SLIPPERY             },
2177     { ep_enemy,                 EP_ENEMY                },
2178     { ep_mauer,                 EP_MAUER                },
2179     { ep_can_fall,              EP_CAN_FALL             },
2180     { ep_can_smash,             EP_CAN_SMASH            },
2181     { ep_can_change,            EP_CAN_CHANGE           },
2182     { ep_can_move,              EP_CAN_MOVE             },
2183     { ep_could_move,            EP_COULD_MOVE           },
2184     { ep_dont_touch,            EP_DONT_TOUCH           },
2185     { ep_dont_go_to,            EP_DONT_GO_TO           },
2186     { ep_mampf2,                EP_MAMPF2               },
2187     { ep_bd_element,            EP_BD_ELEMENT           },
2188     { ep_sb_element,            EP_SB_ELEMENT           },
2189     { ep_gem,                   EP_GEM                  },
2190     { ep_inactive,              EP_INACTIVE             },
2191     { ep_explosive,             EP_EXPLOSIVE            },
2192     { ep_mampf3,                EP_MAMPF3               },
2193     { ep_pushable,              EP_PUSHABLE             },
2194     { ep_player,                EP_PLAYER               },
2195     { ep_has_content,           EP_HAS_CONTENT          },
2196     { ep_eatable,               EP_EATABLE              },
2197     { ep_sp_element,            EP_SP_ELEMENT           },
2198     { ep_quick_gate,            EP_QUICK_GATE           },
2199     { ep_over_player,           EP_OVER_PLAYER          },
2200     { ep_active_bomb,           EP_ACTIVE_BOMB          },
2201     { ep_belt,                  EP_BELT                 },
2202     { ep_belt_active,           EP_BELT_ACTIVE          },
2203     { ep_belt_switch,           EP_BELT_SWITCH          },
2204     { ep_tube,                  EP_TUBE                 },
2205     { ep_can_be_crumbled,       EP_CAN_BE_CRUMBLED      },
2206     { NULL,                     -1                      }
2207   };
2208
2209   /* always start with reliable default values (no properties) */
2210   for (i=0; i<MAX_NUM_ELEMENTS; i++)
2211     for (j=0; j<NUM_EP_BITFIELDS; j++)
2212       Properties[i][j] = EP_BITMASK_DEFAULT;
2213
2214   /* set all predefined element properties from above arrays */
2215   for (i=0; element_properties[i].elements != NULL; i++)
2216     for (j=0; (element_properties[i].elements)[j] >= 0; j++)
2217       SET_PROPERTY((element_properties[i].elements)[j],
2218                    element_properties[i].property, TRUE);
2219
2220   /* set properties of character elements */
2221   for (i=EL_CHAR_START; i<=EL_CHAR_END; i++)
2222   {
2223     SET_PROPERTY(i, EP_CHAR, TRUE);
2224     SET_PROPERTY(i, EP_INACTIVE, TRUE);
2225   }
2226 }
2227
2228 static void InitGlobal()
2229 {
2230   global.autoplay_leveldir = NULL;
2231
2232   global.frames_per_second = 0;
2233   global.fps_slowdown = FALSE;
2234   global.fps_slowdown_factor = 1;
2235 }
2236
2237 void Execute_Command(char *command)
2238 {
2239   if (strcmp(command, "print graphicsinfo.conf") == 0)
2240   {
2241     int i;
2242
2243     printf("# You can configure additional/alternative image files here.\n");
2244     printf("# (The images below are default and therefore commented out.)\n");
2245     printf("\n");
2246     printf("%s\n", getFormattedSetupEntry("name", "Classic Graphics"));
2247     printf("\n");
2248     printf("%s\n", getFormattedSetupEntry("sort_priority", "100"));
2249     printf("\n");
2250
2251     for (i=0; image_config[i].token != NULL; i++)
2252       printf("# %s\n",
2253              getFormattedSetupEntry(image_config[i].token,
2254                                     image_config[i].value));
2255
2256     exit(0);
2257   }
2258   else if (strcmp(command, "print soundsinfo.conf") == 0)
2259   {
2260     int i;
2261
2262     printf("# You can configure additional/alternative sound files here.\n");
2263     printf("# (The sounds below are default and therefore commented out.)\n");
2264     printf("\n");
2265     printf("%s\n", getFormattedSetupEntry("name", "Classic Sounds"));
2266     printf("\n");
2267     printf("%s\n", getFormattedSetupEntry("sort_priority", "100"));
2268     printf("\n");
2269
2270     for (i=0; sound_config[i].token != NULL; i++)
2271       printf("# %s\n",
2272              getFormattedSetupEntry(sound_config[i].token,
2273                                     sound_config[i].value));
2274
2275     exit(0);
2276   }
2277   else if (strcmp(command, "print musicinfo.conf") == 0)
2278   {
2279     printf("# (Currently only \"name\" and \"sort_priority\" recognized.)\n");
2280     printf("\n");
2281     printf("%s\n", getFormattedSetupEntry("name", "Classic Music"));
2282     printf("\n");
2283     printf("%s\n", getFormattedSetupEntry("sort_priority", "100"));
2284
2285     exit(0);
2286   }
2287   else if (strncmp(command, "dump level ", 11) == 0)
2288   {
2289     char *filename = &command[11];
2290
2291     if (access(filename, F_OK) != 0)
2292       Error(ERR_EXIT, "cannot open file '%s'", filename);
2293
2294     LoadLevelFromFilename(filename);
2295     DumpLevel(&level);
2296
2297     exit(0);
2298   }
2299   else if (strncmp(command, "dump tape ", 10) == 0)
2300   {
2301     char *filename = &command[10];
2302
2303     if (access(filename, F_OK) != 0)
2304       Error(ERR_EXIT, "cannot open file '%s'", filename);
2305
2306     LoadTapeFromFilename(filename);
2307     DumpTape(&tape);
2308
2309     exit(0);
2310   }
2311   else if (strncmp(command, "autoplay ", 9) == 0)
2312   {
2313     char *str_copy = getStringCopy(&command[9]);
2314     char *str_ptr = strchr(str_copy, ' ');
2315
2316     global.autoplay_leveldir = str_copy;
2317     global.autoplay_level_nr = -1;
2318
2319     if (str_ptr != NULL)
2320     {
2321       *str_ptr++ = '\0';                        /* terminate leveldir string */
2322       global.autoplay_level_nr = atoi(str_ptr); /* get level_nr value */
2323     }
2324   }
2325   else
2326   {
2327     Error(ERR_EXIT_HELP, "unrecognized command '%s'", command);
2328   }
2329 }
2330
2331 static void InitSetup()
2332 {
2333   LoadSetup();                                  /* global setup info */
2334
2335   /* set some options from setup file */
2336
2337   if (setup.options.verbose)
2338     options.verbose = TRUE;
2339 }
2340
2341 static void InitPlayerInfo()
2342 {
2343   int i;
2344
2345   /* choose default local player */
2346   local_player = &stored_player[0];
2347
2348   for (i=0; i<MAX_PLAYERS; i++)
2349     stored_player[i].connected = FALSE;
2350
2351   local_player->connected = TRUE;
2352 }
2353
2354 static void InitArtworkInfo()
2355 {
2356   LoadArtworkInfo();
2357 }
2358
2359 static char *get_element_class_token(int element)
2360 {
2361   char *element_class_name = element_info[element].class_name;
2362   char *element_class_token = checked_malloc(strlen(element_class_name) + 3);
2363
2364   sprintf(element_class_token, "[%s]", element_class_name);
2365
2366   return element_class_token;
2367 }
2368
2369 static void InitArtworkConfig()
2370 {
2371   static char *image_id_prefix[MAX_NUM_ELEMENTS + NUM_FONTS + 1];
2372   static char *sound_id_prefix[MAX_NUM_ELEMENTS + MAX_NUM_ELEMENTS + 1];
2373   static char *action_id_suffix[NUM_ACTIONS + 1];
2374   static char *direction_id_suffix[NUM_DIRECTIONS + 1];
2375   static char *special_id_suffix[NUM_SPECIAL_GFX_ARGS + 1];
2376   static char *dummy[1] = { NULL };
2377   static char *ignore_image_tokens[] =
2378   {
2379     "name",
2380     "sort_priority",
2381     "global.num_toons",
2382     "menu.draw_xoffset",
2383     "menu.draw_yoffset",
2384     "menu.draw_xoffset.MAIN",
2385     "menu.draw_yoffset.MAIN",
2386     "door.step_offset",
2387     "door.step_delay",
2388     NULL
2389   };
2390   static char *ignore_sound_tokens[] =
2391   {
2392     "name",
2393     "sort_priority",
2394     NULL
2395   };
2396   int i;
2397
2398   for (i=0; i<MAX_NUM_ELEMENTS; i++)
2399     image_id_prefix[i] = element_info[i].token_name;
2400   for (i=0; i<NUM_FONTS; i++)
2401     image_id_prefix[MAX_NUM_ELEMENTS + i] = font_info[i].token_name;
2402   image_id_prefix[MAX_NUM_ELEMENTS + NUM_FONTS] = NULL;
2403
2404   for (i=0; i<MAX_NUM_ELEMENTS; i++)
2405     sound_id_prefix[i] = element_info[i].token_name;
2406   for (i=0; i<MAX_NUM_ELEMENTS; i++)
2407     sound_id_prefix[MAX_NUM_ELEMENTS + i] = get_element_class_token(i);
2408   sound_id_prefix[MAX_NUM_ELEMENTS + MAX_NUM_ELEMENTS] = NULL;
2409
2410   for (i=0; i<NUM_ACTIONS; i++)
2411     action_id_suffix[i] = element_action_info[i].suffix;
2412   action_id_suffix[NUM_ACTIONS] = NULL;
2413
2414   for (i=0; i<NUM_DIRECTIONS; i++)
2415     direction_id_suffix[i] = element_direction_info[i].suffix;
2416   direction_id_suffix[NUM_DIRECTIONS] = NULL;
2417
2418   for (i=0; i<NUM_SPECIAL_GFX_ARGS; i++)
2419     special_id_suffix[i] = special_suffix_info[i].suffix;
2420   special_id_suffix[NUM_SPECIAL_GFX_ARGS] = NULL;
2421
2422   InitImageList(image_config, NUM_IMAGE_FILES, image_config_suffix,
2423                 image_id_prefix, action_id_suffix, direction_id_suffix,
2424                 special_id_suffix, ignore_image_tokens);
2425   InitSoundList(sound_config, NUM_SOUND_FILES, sound_config_suffix,
2426                 sound_id_prefix, action_id_suffix, dummy,
2427                 special_id_suffix, ignore_sound_tokens);
2428 }
2429
2430 static void InitMixer()
2431 {
2432   OpenAudio();
2433   StartMixer();
2434 }
2435
2436 void InitGfx()
2437 {
2438   char *filename_font_initial = NULL;
2439   Bitmap *bitmap_font_initial = NULL;
2440   int i, j;
2441
2442   /* determine settings for initial font (for displaying startup messages) */
2443   for (i=0; image_config[i].token != NULL; i++)
2444   {
2445     for (j=0; j < NUM_INITIAL_FONTS; j++)
2446     {
2447       char font_token[128];
2448       int len_font_token;
2449
2450       sprintf(font_token, "%s_%d", CONFIG_TOKEN_FONT_INITIAL, j + 1);
2451       len_font_token = strlen(font_token);
2452
2453       if (strcmp(image_config[i].token, font_token) == 0)
2454         filename_font_initial = image_config[i].value;
2455       else if (strlen(image_config[i].token) > len_font_token &&
2456                strncmp(image_config[i].token, font_token, len_font_token) == 0)
2457       {
2458         if (strcmp(&image_config[i].token[len_font_token], ".x") == 0)
2459           font_initial[j].src_x = atoi(image_config[i].value);
2460         else if (strcmp(&image_config[i].token[len_font_token], ".y") == 0)
2461           font_initial[j].src_y = atoi(image_config[i].value);
2462         else if (strcmp(&image_config[i].token[len_font_token], ".width") == 0)
2463           font_initial[j].width = atoi(image_config[i].value);
2464         else if (strcmp(&image_config[i].token[len_font_token],".height") == 0)
2465           font_initial[j].height = atoi(image_config[i].value);
2466       }
2467     }
2468   }
2469
2470   for (j=0; j < NUM_INITIAL_FONTS; j++)
2471   {
2472     font_initial[j].num_chars = DEFAULT_NUM_CHARS_PER_FONT;
2473     font_initial[j].num_chars_per_line = DEFAULT_NUM_CHARS_PER_LINE;
2474   }
2475
2476   if (filename_font_initial == NULL)    /* should not happen */
2477     Error(ERR_EXIT, "cannot get filename for '%s'", CONFIG_TOKEN_FONT_INITIAL);
2478
2479   /* create additional image buffers for double-buffering */
2480   bitmap_db_field = CreateBitmap(FXSIZE, FYSIZE, DEFAULT_DEPTH);
2481   bitmap_db_door  = CreateBitmap(3 * DXSIZE, DYSIZE + VYSIZE, DEFAULT_DEPTH);
2482
2483   /* initialize screen properties */
2484   InitGfxFieldInfo(SX, SY, SXSIZE, SYSIZE,
2485                    REAL_SX, REAL_SY, FULL_SXSIZE, FULL_SYSIZE,
2486                    bitmap_db_field);
2487   InitGfxDoor1Info(DX, DY, DXSIZE, DYSIZE);
2488   InitGfxDoor2Info(VX, VY, VXSIZE, VYSIZE);
2489   InitGfxScrollbufferInfo(FXSIZE, FYSIZE);
2490
2491   bitmap_font_initial = LoadCustomImage(filename_font_initial);
2492
2493   for (j=0; j < NUM_INITIAL_FONTS; j++)
2494     font_initial[j].bitmap = bitmap_font_initial;
2495
2496   InitFontGraphicInfo();
2497
2498   DrawInitText(WINDOW_TITLE_STRING, 20, FC_YELLOW);
2499   DrawInitText(WINDOW_SUBTITLE_STRING, 50, FC_RED);
2500
2501   DrawInitText("Loading graphics:", 120, FC_GREEN);
2502
2503   InitTileClipmasks();
2504 }
2505
2506 void InitGfxBackground()
2507 {
2508   int x, y;
2509
2510   drawto = backbuffer;
2511   fieldbuffer = bitmap_db_field;
2512   SetDrawtoField(DRAW_BACKBUFFER);
2513
2514   BlitBitmap(graphic_info[IMG_GLOBAL_BORDER].bitmap, backbuffer,
2515              0, 0, WIN_XSIZE, WIN_YSIZE, 0, 0);
2516   ClearRectangle(backbuffer, REAL_SX, REAL_SY, FULL_SXSIZE, FULL_SYSIZE);
2517   ClearRectangle(bitmap_db_door, 0, 0, 3 * DXSIZE, DYSIZE + VYSIZE);
2518
2519   for (x=0; x<MAX_BUF_XSIZE; x++)
2520     for (y=0; y<MAX_BUF_YSIZE; y++)
2521       redraw[x][y] = 0;
2522   redraw_tiles = 0;
2523   redraw_mask = REDRAW_ALL;
2524 }
2525
2526 static void InitLevelInfo()
2527 {
2528   LoadLevelInfo();                              /* global level info */
2529   LoadLevelSetup_LastSeries();                  /* last played series info */
2530   LoadLevelSetup_SeriesInfo();                  /* last played level info */
2531 }
2532
2533 void InitLevelArtworkInfo()
2534 {
2535   LoadLevelArtworkInfo();
2536 }
2537
2538 static void InitImages()
2539 {
2540   ReloadCustomImages();
2541
2542   LoadCustomElementDescriptions();
2543   LoadSpecialMenuDesignSettings();
2544
2545   ReinitializeGraphics();
2546 }
2547
2548 static void InitSound()
2549 {
2550   InitReloadCustomSounds(artwork.snd_current->identifier);
2551   ReinitializeSounds();
2552 }
2553
2554 static void InitMusic()
2555 {
2556   InitReloadCustomMusic(artwork.mus_current->identifier);
2557   ReinitializeMusic();
2558 }
2559
2560 void InitNetworkServer()
2561 {
2562 #if defined(PLATFORM_UNIX)
2563   int nr_wanted;
2564 #endif
2565
2566   if (!options.network)
2567     return;
2568
2569 #if defined(PLATFORM_UNIX)
2570   nr_wanted = Request("Choose player", REQ_PLAYER | REQ_STAY_CLOSED);
2571
2572   if (!ConnectToServer(options.server_host, options.server_port))
2573     Error(ERR_EXIT, "cannot connect to network game server");
2574
2575   SendToServer_PlayerName(setup.player_name);
2576   SendToServer_ProtocolVersion();
2577
2578   if (nr_wanted)
2579     SendToServer_NrWanted(nr_wanted);
2580 #endif
2581 }
2582
2583 void ReloadCustomArtwork()
2584 {
2585   static char *leveldir_current_identifier = NULL;
2586   static boolean last_override_level_graphics = FALSE;
2587   static boolean last_override_level_sounds = FALSE;
2588   static boolean last_override_level_music = FALSE;
2589   /* identifier for new artwork; default: artwork configured in setup */
2590   char *gfx_new_identifier = artwork.gfx_current->identifier;
2591   char *snd_new_identifier = artwork.snd_current->identifier;
2592   char *mus_new_identifier = artwork.mus_current->identifier;
2593   boolean redraw_screen = FALSE;
2594
2595   if (leveldir_current_identifier == NULL)
2596     leveldir_current_identifier = leveldir_current->identifier;
2597
2598 #if 0
2599   printf("CURRENT GFX: '%s' ['%s']\n", artwork.gfx_current->identifier,
2600          leveldir_current->graphics_set);
2601   printf("CURRENT LEV: '%s' / '%s'\n", leveldir_current_identifier,
2602          leveldir_current->identifier);
2603 #endif
2604
2605 #if 0
2606   printf("graphics --> '%s' ('%s')\n",
2607          artwork.gfx_current_identifier, artwork.gfx_current->filename);
2608   printf("sounds   --> '%s' ('%s')\n",
2609          artwork.snd_current_identifier, artwork.snd_current->filename);
2610   printf("music    --> '%s' ('%s')\n",
2611          artwork.mus_current_identifier, artwork.mus_current->filename);
2612 #endif
2613
2614   /* leveldir_current may be invalid (level group, parent link) */
2615   if (!validLevelSeries(leveldir_current))
2616     return;
2617
2618   /* when a new level series was selected, check if there was a change
2619      in custom artwork stored in level series directory */
2620   if (leveldir_current_identifier != leveldir_current->identifier)
2621   {
2622     char *identifier_old = leveldir_current_identifier;
2623     char *identifier_new = leveldir_current->identifier;
2624
2625     if (getTreeInfoFromIdentifier(artwork.gfx_first, identifier_old) !=
2626         getTreeInfoFromIdentifier(artwork.gfx_first, identifier_new))
2627       gfx_new_identifier = identifier_new;
2628     if (getTreeInfoFromIdentifier(artwork.snd_first, identifier_old) !=
2629         getTreeInfoFromIdentifier(artwork.snd_first, identifier_new))
2630       snd_new_identifier = identifier_new;
2631     if (getTreeInfoFromIdentifier(artwork.mus_first, identifier_new) !=
2632         getTreeInfoFromIdentifier(artwork.mus_first, identifier_new))
2633       mus_new_identifier = identifier_new;
2634
2635     leveldir_current_identifier = leveldir_current->identifier;
2636   }
2637
2638   /* custom level artwork configured in level series configuration file
2639      always overrides custom level artwork stored in level series directory
2640      and (level independant) custom artwork configured in setup menue */
2641   if (leveldir_current->graphics_set != NULL)
2642     gfx_new_identifier = leveldir_current->graphics_set;
2643   if (leveldir_current->sounds_set != NULL)
2644     snd_new_identifier = leveldir_current->sounds_set;
2645   if (leveldir_current->music_set != NULL)
2646     mus_new_identifier = leveldir_current->music_set;
2647
2648   if (strcmp(artwork.gfx_current_identifier, gfx_new_identifier) != 0 ||
2649       last_override_level_graphics != setup.override_level_graphics)
2650   {
2651 #if 0
2652     printf("RELOADING GRAPHICS '%s' -> '%s' ('%s')\n",
2653            artwork.gfx_current_identifier,
2654            artwork.gfx_current->identifier,
2655            gfx_new_identifier);
2656 #endif
2657
2658     setLevelArtworkDir(artwork.gfx_first);
2659
2660     ClearRectangle(window, 0, 0, WIN_XSIZE, WIN_YSIZE);
2661
2662     InitImages();
2663
2664     FreeTileClipmasks();
2665     InitTileClipmasks();
2666
2667     artwork.gfx_current_identifier = artwork.gfx_current->identifier;
2668     last_override_level_graphics = setup.override_level_graphics;
2669
2670     redraw_screen = TRUE;
2671   }
2672
2673   if (strcmp(artwork.snd_current_identifier, snd_new_identifier) != 0 ||
2674       last_override_level_sounds != setup.override_level_sounds)
2675   {
2676 #if 0
2677     printf("RELOADING SOUNDS '%s' -> '%s' ('%s')\n",
2678            artwork.snd_current_identifier,
2679            artwork.snd_current->identifier,
2680            snd_new_identifier);
2681 #endif
2682
2683     /* set artwork path to send it to the sound server process */
2684     setLevelArtworkDir(artwork.snd_first);
2685
2686     InitReloadCustomSounds(snd_new_identifier);
2687     ReinitializeSounds();
2688
2689     artwork.snd_current_identifier = artwork.snd_current->identifier;
2690     last_override_level_sounds = setup.override_level_sounds;
2691
2692     redraw_screen = TRUE;
2693   }
2694
2695   if (strcmp(artwork.mus_current_identifier, mus_new_identifier) != 0 ||
2696       last_override_level_music != setup.override_level_music)
2697   {
2698     /* set artwork path to send it to the sound server process */
2699     setLevelArtworkDir(artwork.mus_first);
2700
2701     InitReloadCustomMusic(mus_new_identifier);
2702     ReinitializeMusic();
2703
2704     artwork.mus_current_identifier = artwork.mus_current->identifier;
2705     last_override_level_music = setup.override_level_music;
2706
2707     redraw_screen = TRUE;
2708   }
2709
2710   if (redraw_screen)
2711   {
2712     InitGfxBackground();
2713
2714     /* force redraw of (open or closed) door graphics */
2715     SetDoorState(DOOR_OPEN_ALL);
2716     CloseDoor(DOOR_CLOSE_ALL | DOOR_NO_DELAY);
2717   }
2718 }
2719
2720
2721 /* ========================================================================= */
2722 /* OpenAll()                                                                 */
2723 /* ========================================================================= */
2724
2725 void OpenAll()
2726 {
2727   InitGlobal();         /* initialize some global variables */
2728
2729   if (options.execute_command)
2730     Execute_Command(options.execute_command);
2731
2732   if (options.serveronly)
2733   {
2734 #if defined(PLATFORM_UNIX)
2735     NetworkServer(options.server_port, options.serveronly);
2736 #else
2737     Error(ERR_WARN, "networking only supported in Unix version");
2738 #endif
2739     exit(0);    /* never reached */
2740   }
2741
2742   InitSetup();
2743
2744   InitPlayerInfo();
2745   InitArtworkInfo();            /* needed before loading gfx, sound & music */
2746   InitArtworkConfig();          /* needed before forking sound child process */
2747   InitMixer();
2748
2749   InitCounter();
2750
2751   InitRND(NEW_RANDOMIZE);
2752   InitSimpleRND(NEW_RANDOMIZE);
2753
2754   InitJoysticks();
2755
2756   InitVideoDisplay();
2757   InitVideoBuffer(&backbuffer, &window, WIN_XSIZE, WIN_YSIZE, DEFAULT_DEPTH,
2758                   setup.fullscreen);
2759
2760   InitEventFilter(FilterMouseMotionEvents);
2761
2762   InitElementProperties();
2763
2764   InitGfx();
2765
2766   InitLevelInfo();
2767   InitLevelArtworkInfo();
2768
2769   InitImages();                 /* needs to know current level directory */
2770   InitSound();                  /* needs to know current level directory */
2771   InitMusic();                  /* needs to know current level directory */
2772
2773   InitGfxBackground();
2774
2775   if (global.autoplay_leveldir)
2776   {
2777     AutoPlayTape();
2778     return;
2779   }
2780
2781   game_status = MAINMENU;
2782
2783   DrawMainMenu();
2784
2785   InitNetworkServer();
2786 }
2787
2788 void CloseAllAndExit(int exit_value)
2789 {
2790   StopSounds();
2791   FreeAllSounds();
2792   FreeAllMusic();
2793   CloseAudio();         /* called after freeing sounds (needed for SDL) */
2794
2795   FreeAllImages();
2796   FreeTileClipmasks();
2797
2798   CloseVideoDisplay();
2799   ClosePlatformDependantStuff();
2800
2801   exit(exit_value);
2802 }