rnd-20100521-1-src
[rocksndiamonds.git] / src / main.c
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2006 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * main.c                                                   *
12 ***********************************************************/
13
14 #include "libgame/libgame.h"
15
16 #include "main.h"
17 #include "init.h"
18 #include "game.h"
19 #include "tape.h"
20 #include "events.h"
21 #include "config.h"
22
23 Bitmap                 *bitmap_db_store;
24 Bitmap                 *bitmap_db_cross;
25 Bitmap                 *bitmap_db_field;
26 Bitmap                 *bitmap_db_panel;
27 Bitmap                 *bitmap_db_door;
28 Bitmap                 *bitmap_db_toons;
29 DrawBuffer             *fieldbuffer;
30 DrawBuffer             *drawto_field;
31
32 int                     game_status = -1;
33 boolean                 level_editor_test_game = FALSE;
34 boolean                 network_playing = FALSE;
35
36 #if defined(TARGET_SDL)
37 boolean                 network_server = FALSE;
38 SDL_Thread             *server_thread;
39 #endif
40
41 int                     key_joystick_mapping = 0;
42
43 #if 1
44 boolean                 redraw[MAX_LEV_FIELDX + 2][MAX_LEV_FIELDY + 2];
45 #else
46 boolean                 redraw[MAX_BUF_XSIZE][MAX_BUF_YSIZE];
47 #endif
48 int                     redraw_x1 = 0, redraw_y1 = 0;
49
50 short                   Feld[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
51 short                   MovPos[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
52 short                   MovDir[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
53 short                   MovDelay[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
54 short                   ChangeDelay[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
55 short                   ChangePage[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
56 short                   CustomValue[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
57 short                   Store[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
58 short                   Store2[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
59 short                   StorePlayer[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
60 short                   Back[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
61 boolean                 Stop[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
62 boolean                 Pushed[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
63 short                   ChangeCount[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
64 short                   ChangeEvent[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
65 short                   WasJustMoving[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
66 short                   WasJustFalling[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
67 short                   CheckCollision[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
68 short                   CheckImpact[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
69 short                   AmoebaNr[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
70 short                   AmoebaCnt[MAX_NUM_AMOEBA];
71 short                   AmoebaCnt2[MAX_NUM_AMOEBA];
72 short                   ExplodeField[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
73 short                   ExplodePhase[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
74 short                   ExplodeDelay[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
75 int                     RunnerVisit[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
76 int                     PlayerVisit[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
77
78 int                     GfxFrame[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
79 int                     GfxRandom[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
80 int                     GfxElement[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
81 int                     GfxAction[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
82 int                     GfxDir[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
83 int                     GfxRedraw[MAX_LEV_FIELDX][MAX_LEV_FIELDY];
84
85 int                     ActiveElement[MAX_NUM_ELEMENTS];
86 int                     ActiveButton[NUM_IMAGE_FILES];
87 int                     ActiveFont[NUM_FONTS];
88
89 int                     lev_fieldx, lev_fieldy;
90 int                     scroll_x, scroll_y;
91
92 int                     WIN_XSIZE = 672, WIN_YSIZE = 560;
93 int                     SCR_FIELDX = 17, SCR_FIELDY = 17;
94 int                     SX = 8, SY = 8;
95 int                     REAL_SX = 6, REAL_SY = 6;
96 int                     DX = 566, DY = 60;
97 int                     VX = 566, VY = 400;
98 int                     EX = 566, EY = 356;
99 int                     dDX, dDY;
100
101 #if 1
102 int                     FX, FY;
103 #else
104 int                     FX = SX, FY = SY;
105 #endif
106 int                     ScrollStepSize;
107 int                     ScreenMovDir = MV_NONE, ScreenMovPos = 0;
108 int                     ScreenGfxPos = 0;
109 int                     BorderElement = EL_STEELWALL;
110 int                     GameFrameDelay = GAME_FRAME_DELAY;
111 int                     FfwdFrameDelay = FFWD_FRAME_DELAY;
112 #if 1
113 int                     BX1, BY1;
114 int                     BX2, BY2;
115 #else
116 int                     BX1 = 0, BY1 = 0;
117 int                     BX2 = SCR_FIELDX - 1, BY2 = SCR_FIELDY - 1;
118 #endif
119 int                     SBX_Left, SBX_Right;
120 int                     SBY_Upper, SBY_Lower;
121 int                     ZX, ZY;
122 int                     ExitX, ExitY;
123 int                     AllPlayersGone;
124
125 int                     TimeFrames, TimePlayed, TimeLeft, TapeTime;
126
127 boolean                 network_player_action_received = FALSE;
128
129 struct LevelSetInfo     levelset;
130 struct LevelInfo        level, level_template;
131 struct PlayerInfo       stored_player[MAX_PLAYERS], *local_player = NULL;
132 struct HiScore          highscore[MAX_SCORE_ENTRIES];
133 struct TapeInfo         tape;
134 struct SetupInfo        setup;
135 struct GameInfo         game;
136 struct GlobalInfo       global;
137 struct BorderInfo       border;
138 struct ViewportInfo     viewport;
139 struct TitleFadingInfo  fading;
140 struct TitleFadingInfo  title_initial_default;
141 struct TitleFadingInfo  title_default;
142 struct TitleMessageInfo titlemessage_initial_default;
143 struct TitleMessageInfo titlemessage_initial[MAX_NUM_TITLE_MESSAGES];
144 struct TitleMessageInfo titlemessage_default;
145 struct TitleMessageInfo titlemessage[MAX_NUM_TITLE_MESSAGES];
146 struct TitleMessageInfo readme;
147 struct InitInfo         init, init_last;
148 struct MenuInfo         menu;
149 struct DoorInfo         door_1, door_2;
150 struct PreviewInfo      preview;
151 struct GraphicInfo     *graphic_info = NULL;
152 struct SoundInfo       *sound_info = NULL;
153 struct MusicInfo       *music_info = NULL;
154 struct MusicFileInfo   *music_file_info = NULL;
155 struct HelpAnimInfo    *helpanim_info = NULL;
156 SetupFileHash          *helptext_info = NULL;
157 SetupFileHash          *image_config_hash = NULL;
158 SetupFileHash          *element_token_hash = NULL;
159 SetupFileHash          *graphic_token_hash = NULL;
160 SetupFileHash          *font_token_hash = NULL;
161
162
163 /* ------------------------------------------------------------------------- */
164 /* element definitions                                                       */
165 /* ------------------------------------------------------------------------- */
166
167 struct ElementInfo element_info[MAX_NUM_ELEMENTS + 1];
168
169 /* this contains predefined structure elements to initialize "element_info" */
170 struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] =
171 {
172   /* keyword to start parser: "ELEMENT_INFO_START" <-- do not change! */
173
174   /* ----------------------------------------------------------------------- */
175   /* "real" level file elements                                              */
176   /* ----------------------------------------------------------------------- */
177
178   {
179     "empty_space",
180     "empty_space",
181     "empty space"
182   },
183   {
184     "sand",
185     "sand",
186     "sand"
187   },
188   {
189     "wall",
190     "wall",
191     "normal wall"
192   },
193   {
194     "wall_slippery",
195     "wall",
196     "slippery wall"
197   },
198   {
199     "rock",
200     "rock",
201     "rock"
202   },
203   {
204     "key_obsolete",
205     "obsolete",
206     "key (OBSOLETE)"
207   },
208   {
209     "emerald",
210     "emerald",
211     "emerald"
212   },
213   {
214     "exit_closed",
215     "exit",
216     "closed exit"
217   },
218   {
219     "player_obsolete",
220     "obsolete",
221     "player (OBSOLETE)"
222   },
223   {
224     "bug",
225     "bug",
226     "bug (random start direction)"
227   },
228   {
229     "spaceship",
230     "spaceship",
231     "spaceship (random start direction)"
232   },
233   {
234     "yamyam",
235     "yamyam",
236     "yam yam (random start direction)"
237   },
238   {
239     "robot",
240     "robot",
241     "robot"
242   },
243   {
244     "steelwall",
245     "steelwall",
246     "steel wall"
247   },
248   {
249     "diamond",
250     "diamond",
251     "diamond"
252   },
253   {
254     "amoeba_dead",
255     "amoeba",
256     "dead amoeba"
257   },
258   {
259     "quicksand_empty",
260     "quicksand",
261     "quicksand (empty)"
262   },
263   {
264     "quicksand_full",
265     "quicksand",
266     "quicksand (with rock)"
267   },
268   {
269     "amoeba_drop",
270     "amoeba",
271     "amoeba drop"
272   },
273   {
274     "bomb",
275     "bomb",
276     "bomb"
277   },
278   {
279     "magic_wall",
280     "magic_wall",
281     "magic wall"
282   },
283   {
284     "speed_pill",
285     "speed_pill",
286     "speed pill"
287   },
288   {
289     "acid",
290     "acid",
291     "acid"
292   },
293   {
294     "amoeba_wet",
295     "amoeba",
296     "dropping amoeba (EM style)"
297   },
298   {
299     "amoeba_dry",
300     "amoeba",
301     "normal amoeba"
302   },
303   {
304     "nut",
305     "nut",
306     "nut with emerald"
307   },
308   {
309     "game_of_life",
310     "game_of_life",
311     "Conway's wall of life"
312   },
313   {
314     "biomaze",
315     "biomaze",
316     "biomaze"
317   },
318   {
319     "dynamite.active",
320     "dynamite",
321     "burning dynamite"
322   },
323   {
324     "stoneblock",
325     "wall",
326     "wall"
327   },
328   {
329     "robot_wheel",
330     "robot_wheel",
331     "magic wheel"
332   },
333   {
334     "robot_wheel.active",
335     "robot_wheel",
336     "magic wheel (running)"
337   },
338   {
339     "key_1",
340     "key",
341     "key 1"
342   },
343   {
344     "key_2",
345     "key",
346     "key 2"
347   },
348   {
349     "key_3",
350     "key",
351     "key 3"
352   },
353   {
354     "key_4",
355     "key",
356     "key 4"
357   },
358   {
359     "gate_1",
360     "gate",
361     "door 1"
362   },
363   {
364     "gate_2",
365     "gate",
366     "door 2"
367   },
368   {
369     "gate_3",
370     "gate",
371     "door 3"
372   },
373   {
374     "gate_4",
375     "gate",
376     "door 4"
377   },
378   {
379     "gate_1_gray",
380     "gate",
381     "gray door (opened by key 1)"
382   },
383   {
384     "gate_2_gray",
385     "gate",
386     "gray door (opened by key 2)"
387   },
388   {
389     "gate_3_gray",
390     "gate",
391     "gray door (opened by key 3)"
392   },
393   {
394     "gate_4_gray",
395     "gate",
396     "gray door (opened by key 4)"
397   },
398   {
399     "dynamite",
400     "dynamite",
401     "dynamite"
402   },
403   {
404     "pacman",
405     "pacman",
406     "pac man (random start direction)"
407   },
408   {
409     "invisible_wall",
410     "wall",
411     "invisible normal wall"
412   },
413   {
414     "lamp",
415     "lamp",
416     "lamp (off)"
417   },
418   {
419     "lamp.active",
420     "lamp",
421     "lamp (on)"
422   },
423   {
424     "wall_emerald",
425     "wall",
426     "wall with emerald"
427   },
428   {
429     "wall_diamond",
430     "wall",
431     "wall with diamond"
432   },
433   {
434     "amoeba_full",
435     "amoeba",
436     "amoeba with content"
437   },
438   {
439     "bd_amoeba",
440     "bd_amoeba",
441     "amoeba (BD style)"
442   },
443   {
444     "time_orb_full",
445     "time_orb_full",
446     "time orb (full)"
447   },
448   {
449     "time_orb_empty",
450     "time_orb_empty",
451     "time orb (empty)"
452   },
453   {
454     "expandable_wall",
455     "wall",
456     "growing wall (horizontal, visible)"
457   },
458   {
459     "bd_diamond",
460     "bd_diamond",
461     "diamond (BD style)"
462   },
463   {
464     "emerald_yellow",
465     "emerald",
466     "yellow emerald"
467   },
468   {
469     "wall_bd_diamond",
470     "wall",
471     "wall with BD style diamond"
472   },
473   {
474     "wall_emerald_yellow",
475     "wall",
476     "wall with yellow emerald"
477   },
478   {
479     "dark_yamyam",
480     "dark_yamyam",
481     "dark yam yam"
482   },
483   {
484     "bd_magic_wall",
485     "bd_magic_wall",
486     "magic wall (BD style)"
487   },
488   {
489     "invisible_steelwall",
490     "steelwall",
491     "invisible steel wall"
492   },
493   {
494     "sokoban_field_player",
495     "sokoban",
496     "sokoban field with player"
497   },
498   {
499     "dynabomb_increase_number",
500     "dynabomb",
501     "increases number of bombs"
502   },
503   {
504     "dynabomb_increase_size",
505     "dynabomb",
506     "increases explosion size"
507   },
508   {
509     "dynabomb_increase_power",
510     "dynabomb",
511     "increases power of explosion"
512   },
513   {
514     "sokoban_object",
515     "sokoban",
516     "sokoban object"
517   },
518   {
519     "sokoban_field_empty",
520     "sokoban",
521     "sokoban empty field"
522   },
523   {
524     "sokoban_field_full",
525     "sokoban",
526     "sokoban field with object"
527   },
528   {
529     "bd_butterfly.right",
530     "bd_butterfly",
531     "butterfly (starts moving right)"},
532   {
533     "bd_butterfly.up",
534     "bd_butterfly",
535     "butterfly (starts moving up)"
536   },
537   {
538     "bd_butterfly.left",
539     "bd_butterfly",
540     "butterfly (starts moving left)"},
541   {
542     "bd_butterfly.down",
543     "bd_butterfly",
544     "butterfly (starts moving down)"},
545   {
546     "bd_firefly.right",
547     "bd_firefly",
548     "firefly (starts moving right)"
549   },
550   {
551     "bd_firefly.up",
552     "bd_firefly",
553     "firefly (starts moving up)"
554   },
555   {
556     "bd_firefly.left",
557     "bd_firefly",
558     "firefly (starts moving left)"
559   },
560   {
561     "bd_firefly.down",
562     "bd_firefly",
563     "firefly (starts moving down)"
564   },
565   {
566     "bd_butterfly",
567     "bd_butterfly",
568     "butterfly (random start direction)"
569   },
570   {
571     "bd_firefly",
572     "bd_firefly",
573     "firefly (random start direction)"
574   },
575   {
576     "player_1",
577     "player",
578     "player 1"
579   },
580   {
581     "player_2",
582     "player",
583     "player 2"
584   },
585   {
586     "player_3",
587     "player",
588     "player 3"
589   },
590   {
591     "player_4",
592     "player",
593     "player 4"
594   },
595   {
596     "bug.right",
597     "bug",
598     "bug (starts moving right)"
599   },
600   {
601     "bug.up",
602     "bug",
603     "bug (starts moving up)"
604   },
605   {
606     "bug.left",
607     "bug",
608     "bug (starts moving left)"
609   },
610   {
611     "bug.down",
612     "bug",
613     "bug (starts moving down)"
614   },
615   {
616     "spaceship.right",
617     "spaceship",
618     "spaceship (starts moving right)"},
619   {
620     "spaceship.up",
621     "spaceship",
622     "spaceship (starts moving up)"
623   },
624   {
625     "spaceship.left",
626     "spaceship",
627     "spaceship (starts moving left)"},
628   {
629     "spaceship.down",
630     "spaceship",
631     "spaceship (starts moving down)"},
632   {
633     "pacman.right",
634     "pacman",
635     "pac man (starts moving right)"
636   },
637   {
638     "pacman.up",
639     "pacman",
640     "pac man (starts moving up)"
641   },
642   {
643     "pacman.left",
644     "pacman",
645     "pac man (starts moving left)"
646   },
647   {
648     "pacman.down",
649     "pacman",
650     "pac man (starts moving down)"
651   },
652   {
653     "emerald_red",
654     "emerald",
655     "red emerald"
656   },
657   {
658     "emerald_purple",
659     "emerald",
660     "purple emerald"
661   },
662   {
663     "wall_emerald_red",
664     "wall",
665     "wall with red emerald"
666   },
667   {
668     "wall_emerald_purple",
669     "wall",
670     "wall with purple emerald"
671   },
672   {
673     "acid_pool_topleft",
674     "wall",
675     "acid pool (top left)"
676   },
677   {
678     "acid_pool_topright",
679     "wall",
680     "acid pool (top right)"
681   },
682   {
683     "acid_pool_bottomleft",
684     "wall",
685     "acid pool (bottom left)"
686   },
687   {
688     "acid_pool_bottom",
689     "wall",
690     "acid pool (bottom)"
691   },
692   {
693     "acid_pool_bottomright",
694     "wall",
695     "acid pool (bottom right)"
696   },
697   {
698     "bd_wall",
699     "wall",
700     "normal wall (BD style)"
701   },
702   {
703     "bd_rock",
704     "bd_rock",
705     "rock (BD style)"
706   },
707   {
708     "exit_open",
709     "exit",
710     "open exit"
711   },
712   {
713     "black_orb",
714     "black_orb",
715     "black orb bomb"
716   },
717   {
718     "amoeba_to_diamond",
719     "amoeba",
720     "amoeba"
721   },
722   {
723     "mole",
724     "mole",
725     "mole (random start direction)"
726   },
727   {
728     "penguin",
729     "penguin",
730     "penguin"
731   },
732   {
733     "satellite",
734     "satellite",
735     "satellite"
736   },
737   {
738     "arrow_left",
739     "arrow",
740     "arrow left"
741   },
742   {
743     "arrow_right",
744     "arrow",
745     "arrow right"
746   },
747   {
748     "arrow_up",
749     "arrow",
750     "arrow up"
751   },
752   {
753     "arrow_down",
754     "arrow",
755     "arrow down"
756   },
757   {
758     "pig",
759     "pig",
760     "pig"
761   },
762   {
763     "dragon",
764     "dragon",
765     "fire breathing dragon"
766   },
767   {
768     "em_key_1_file_obsolete",
769     "obsolete",
770     "key (OBSOLETE)"
771   },
772   {
773     "char_space",
774     "char",
775     "letter ' '"
776   },
777   {
778     "char_exclam",
779     "char",
780     "letter '!'"
781   },
782   {
783     "char_quotedbl",
784     "char",
785     "letter '\"'"
786   },
787   {
788     "char_numbersign",
789     "char",
790     "letter '#'"
791   },
792   {
793     "char_dollar",
794     "char",
795     "letter '$'"
796   },
797   {
798     "char_percent",
799     "char",
800     "letter '%'"
801   },
802   {
803     "char_ampersand",
804     "char",
805     "letter '&'"
806   },
807   {
808     "char_apostrophe",
809     "char",
810     "letter '''"
811   },
812   {
813     "char_parenleft",
814     "char",
815     "letter '('"
816   },
817   {
818     "char_parenright",
819     "char",
820     "letter ')'"
821   },
822   {
823     "char_asterisk",
824     "char",
825     "letter '*'"
826   },
827   {
828     "char_plus",
829     "char",
830     "letter '+'"
831   },
832   {
833     "char_comma",
834     "char",
835     "letter ','"
836   },
837   {
838     "char_minus",
839     "char",
840     "letter '-'"
841   },
842   {
843     "char_period",
844     "char",
845     "letter '.'"
846   },
847   {
848     "char_slash",
849     "char",
850     "letter '/'"
851   },
852   {
853     "char_0",
854     "char",
855     "letter '0'"
856   },
857   {
858     "char_1",
859     "char",
860     "letter '1'"
861   },
862   {
863     "char_2",
864     "char",
865     "letter '2'"
866   },
867   {
868     "char_3",
869     "char",
870     "letter '3'"
871   },
872   {
873     "char_4",
874     "char",
875     "letter '4'"
876   },
877   {
878     "char_5",
879     "char",
880     "letter '5'"
881   },
882   {
883     "char_6",
884     "char",
885     "letter '6'"
886   },
887   {
888     "char_7",
889     "char",
890     "letter '7'"
891   },
892   {
893     "char_8",
894     "char",
895     "letter '8'"
896   },
897   {
898     "char_9",
899     "char",
900     "letter '9'"
901   },
902   {
903     "char_colon",
904     "char",
905     "letter ':'"
906   },
907   {
908     "char_semicolon",
909     "char",
910     "letter ';'"
911   },
912   {
913     "char_less",
914     "char",
915     "letter '<'"
916   },
917   {
918     "char_equal",
919     "char",
920     "letter '='"
921   },
922   {
923     "char_greater",
924     "char",
925     "letter '>'"
926   },
927   {
928     "char_question",
929     "char",
930     "letter '?'"
931   },
932   {
933     "char_at",
934     "char",
935     "letter '@'"
936   },
937   {
938     "char_a",
939     "char",
940     "letter 'A'"
941   },
942   {
943     "char_b",
944     "char",
945     "letter 'B'"
946   },
947   {
948     "char_c",
949     "char",
950     "letter 'C'"
951   },
952   {
953     "char_d",
954     "char",
955     "letter 'D'"
956   },
957   {
958     "char_e",
959     "char",
960     "letter 'E'"
961   },
962   {
963     "char_f",
964     "char",
965     "letter 'F'"
966   },
967   {
968     "char_g",
969     "char",
970     "letter 'G'"
971   },
972   {
973     "char_h",
974     "char",
975     "letter 'H'"
976   },
977   {
978     "char_i",
979     "char",
980     "letter 'I'"
981   },
982   {
983     "char_j",
984     "char",
985     "letter 'J'"
986   },
987   {
988     "char_k",
989     "char",
990     "letter 'K'"
991   },
992   {
993     "char_l",
994     "char",
995     "letter 'L'"
996   },
997   {
998     "char_m",
999     "char",
1000     "letter 'M'"
1001   },
1002   {
1003     "char_n",
1004     "char",
1005     "letter 'N'"
1006   },
1007   {
1008     "char_o",
1009     "char",
1010     "letter 'O'"
1011   },
1012   {
1013     "char_p",
1014     "char",
1015     "letter 'P'"
1016   },
1017   {
1018     "char_q",
1019     "char",
1020     "letter 'Q'"
1021   },
1022   {
1023     "char_r",
1024     "char",
1025     "letter 'R'"
1026   },
1027   {
1028     "char_s",
1029     "char",
1030     "letter 'S'"
1031   },
1032   {
1033     "char_t",
1034     "char",
1035     "letter 'T'"
1036   },
1037   {
1038     "char_u",
1039     "char",
1040     "letter 'U'"
1041   },
1042   {
1043     "char_v",
1044     "char",
1045     "letter 'V'"
1046   },
1047   {
1048     "char_w",
1049     "char",
1050     "letter 'W'"
1051   },
1052   {
1053     "char_x",
1054     "char",
1055     "letter 'X'"
1056   },
1057   {
1058     "char_y",
1059     "char",
1060     "letter 'Y'"
1061   },
1062   {
1063     "char_z",
1064     "char",
1065     "letter 'Z'"
1066   },
1067   {
1068     "char_bracketleft",
1069     "char",
1070     "letter '['"
1071   },
1072   {
1073     "char_backslash",
1074     "char",
1075     "letter '\\'"
1076   },
1077   {
1078     "char_bracketright",
1079     "char",
1080     "letter ']'"
1081   },
1082   {
1083     "char_asciicircum",
1084     "char",
1085     "letter '^'"
1086   },
1087   {
1088     "char_underscore",
1089     "char",
1090     "letter '_'"
1091   },
1092   {
1093     "char_copyright",
1094     "char",
1095     "letter '©'"
1096   },
1097   {
1098     "char_aumlaut",
1099     "char",
1100     "letter 'Ä'"
1101   },
1102   {
1103     "char_oumlaut",
1104     "char",
1105     "letter 'Ö'"
1106   },
1107   {
1108     "char_uumlaut",
1109     "char",
1110     "letter 'Ãœ'"
1111   },
1112   {
1113     "char_degree",
1114     "char",
1115     "letter '°'"
1116   },
1117   {
1118     "char_trademark",
1119     "char",
1120     "letter '®'"
1121   },
1122   {
1123     "char_cursor",
1124     "char",
1125     "letter ' '"
1126   },
1127   {
1128     "char_unused",
1129     "char",
1130     "letter ''"
1131   },
1132   {
1133     "char_unused",
1134     "char",
1135     "letter ''"
1136   },
1137   {
1138     "char_unused",
1139     "char",
1140     "letter ''"
1141   },
1142   {
1143     "char_unused",
1144     "char",
1145     "letter ''"
1146   },
1147   {
1148     "char_unused",
1149     "char",
1150     "letter ''"
1151   },
1152   {
1153     "char_unused",
1154     "char",
1155     "letter ''"
1156   },
1157   {
1158     "char_unused",
1159     "char",
1160     "letter 'button'"
1161   },
1162   {
1163     "char_unused",
1164     "char",
1165     "letter 'up'"
1166   },
1167   {
1168     "char_unused",
1169     "char",
1170     "letter 'down'"
1171   },
1172   {
1173     "expandable_wall_horizontal",
1174     "wall",
1175     "growing wall (horizontal)"
1176   },
1177   {
1178     "expandable_wall_vertical",
1179     "wall",
1180     "growing wall (vertical)"
1181   },
1182   {
1183     "expandable_wall_any",
1184     "wall",
1185     "growing wall (any direction)"
1186   },
1187   {
1188     "em_gate_1",
1189     "gate",
1190     "door 1 (EM style)"
1191   },
1192   {
1193     "em_gate_2",
1194     "gate",
1195     "door 2 (EM style)"
1196   },
1197   {
1198     "em_gate_3",
1199     "gate",
1200     "door 3 (EM style)"
1201   },
1202   {
1203     "em_gate_4",
1204     "gate",
1205     "door 4 (EM style)"
1206   },
1207   {
1208     "em_key_2_file_obsolete",
1209     "obsolete",
1210     "key (OBSOLETE)"
1211   },
1212   {
1213     "em_key_3_file_obsolete",
1214     "obsolete",
1215     "key (OBSOLETE)"
1216   },
1217   {
1218     "em_key_4_file_obsolete",
1219     "obsolete",
1220     "key (OBSOLETE)"
1221   },
1222   {
1223     "sp_empty_space",
1224     "empty_space",
1225     "empty space"
1226   },
1227   {
1228     "sp_zonk",
1229     "sp_zonk",
1230     "zonk"
1231   },
1232   {
1233     "sp_base",
1234     "sp_base",
1235     "base"
1236   },
1237   {
1238     "sp_murphy",
1239     "player",
1240     "murphy"
1241   },
1242   {
1243     "sp_infotron",
1244     "sp_infotron",
1245     "infotron"
1246   },
1247   {
1248     "sp_chip_single",
1249     "wall",
1250     "chip (single)"
1251   },
1252   {
1253     "sp_hardware_gray",
1254     "wall",
1255     "hardware"
1256   },
1257   {
1258     "sp_exit_closed",
1259     "sp_exit",
1260     "exit"
1261   },
1262   {
1263     "sp_disk_orange",
1264     "sp_disk_orange",
1265     "orange disk"
1266   },
1267   {
1268     "sp_port_right",
1269     "sp_port",
1270     "port (leading right)"
1271   },
1272   {
1273     "sp_port_down",
1274     "sp_port",
1275     "port (leading down)"
1276   },
1277   {
1278     "sp_port_left",
1279     "sp_port",
1280     "port (leading left)"
1281   },
1282   {
1283     "sp_port_up",
1284     "sp_port",
1285     "port (leading up)"
1286   },
1287   {
1288     "sp_gravity_port_right",
1289     "sp_gravity_port",
1290     "gravity-on/off port (leading right)"
1291   },
1292   {
1293     "sp_gravity_port_down",
1294     "sp_gravity_port",
1295     "gravity-on/off port (leading down)"
1296   },
1297   {
1298     "sp_gravity_port_left",
1299     "sp_gravity_port",
1300     "gravity-on/off port (leading left)"
1301   },
1302   {
1303     "sp_gravity_port_up",
1304     "sp_gravity_port",
1305     "gravity-on/off port (leading up)"
1306   },
1307   {
1308     "sp_sniksnak",
1309     "sp_sniksnak",
1310     "snik snak"
1311   },
1312   {
1313     "sp_disk_yellow",
1314     "sp_disk_yellow",
1315     "yellow disk"
1316   },
1317   {
1318     "sp_terminal",
1319     "sp_terminal",
1320     "terminal"
1321   },
1322   {
1323     "sp_disk_red",
1324     "dynamite",
1325     "red disk"
1326   },
1327   {
1328     "sp_port_vertical",
1329     "sp_port",
1330     "port (vertical)"
1331   },
1332   {
1333     "sp_port_horizontal",
1334     "sp_port",
1335     "port (horizontal)"
1336   },
1337   {
1338     "sp_port_any",
1339     "sp_port",
1340     "port (any direction)"
1341   },
1342   {
1343     "sp_electron",
1344     "sp_electron",
1345     "electron"
1346   },
1347   {
1348     "sp_buggy_base",
1349     "sp_buggy_base",
1350     "buggy base"
1351   },
1352   {
1353     "sp_chip_left",
1354     "wall",
1355     "chip (left half)"
1356   },
1357   {
1358     "sp_chip_right",
1359     "wall",
1360     "chip (right half)"
1361   },
1362   {
1363     "sp_hardware_base_1",
1364     "wall",
1365     "hardware"
1366   },
1367   {
1368     "sp_hardware_green",
1369     "wall",
1370     "hardware"
1371   },
1372   {
1373     "sp_hardware_blue",
1374     "wall",
1375     "hardware"
1376   },
1377   {
1378     "sp_hardware_red",
1379     "wall",
1380     "hardware"
1381   },
1382   {
1383     "sp_hardware_yellow",
1384     "wall",
1385     "hardware"
1386   },
1387   {
1388     "sp_hardware_base_2",
1389     "wall",
1390     "hardware"
1391   },
1392   {
1393     "sp_hardware_base_3",
1394     "wall",
1395     "hardware"
1396   },
1397   {
1398     "sp_hardware_base_4",
1399     "wall",
1400     "hardware"
1401   },
1402   {
1403     "sp_hardware_base_5",
1404     "wall",
1405     "hardware"
1406   },
1407   {
1408     "sp_hardware_base_6",
1409     "wall",
1410     "hardware"
1411   },
1412   {
1413     "sp_chip_top",
1414     "wall",
1415     "chip (upper half)"
1416   },
1417   {
1418     "sp_chip_bottom",
1419     "wall",
1420     "chip (lower half)"
1421   },
1422   {
1423     "em_gate_1_gray",
1424     "gate",
1425     "gray door (EM style, key 1)"
1426   },
1427   {
1428     "em_gate_2_gray",
1429     "gate",
1430     "gray door (EM style, key 2)"
1431   },
1432   {
1433     "em_gate_3_gray",
1434     "gate",
1435     "gray door (EM style, key 3)"
1436   },
1437   {
1438     "em_gate_4_gray",
1439     "gate",
1440     "gray door (EM style, key 4)"
1441   },
1442   {
1443     "em_dynamite",
1444     "dynamite",
1445     "dynamite (EM style)"
1446   },
1447   {
1448     "em_dynamite.active",
1449     "dynamite",
1450     "burning dynamite (EM style)"
1451   },
1452   {
1453     "pearl",
1454     "pearl",
1455     "pearl"
1456   },
1457   {
1458     "crystal",
1459     "crystal",
1460     "crystal"
1461   },
1462   {
1463     "wall_pearl",
1464     "wall",
1465     "wall with pearl"
1466   },
1467   {
1468     "wall_crystal",
1469     "wall",
1470     "wall with crystal"
1471   },
1472   {
1473     "dc_gate_white",
1474     "gate",
1475     "white door"
1476   },
1477   {
1478     "dc_gate_white_gray",
1479     "gate",
1480     "gray door (opened by white key)"
1481   },
1482   {
1483     "dc_key_white",
1484     "key",
1485     "white key"
1486   },
1487   {
1488     "shield_normal",
1489     "shield_normal",
1490     "shield (normal)"
1491   },
1492   {
1493     "extra_time",
1494     "extra_time",
1495     "extra time"
1496   },
1497   {
1498     "switchgate_open",
1499     "switchgate",
1500     "switch gate (open)"
1501   },
1502   {
1503     "switchgate_closed",
1504     "switchgate",
1505     "switch gate (closed)"
1506   },
1507   {
1508     "switchgate_switch_up",
1509     "switchgate_switch",
1510     "switch for switch gate"
1511   },
1512   {
1513     "switchgate_switch_down",
1514     "switchgate_switch",
1515     "switch for switch gate"
1516   },
1517   {
1518     "unused_269",
1519     "unused",
1520     "-"
1521   },
1522   {
1523     "unused_270",
1524     "unused",
1525     "-"
1526   },
1527   {
1528     "conveyor_belt_1_left",
1529     "conveyor_belt",
1530     "conveyor belt 1 (left)"
1531   },
1532   {
1533     "conveyor_belt_1_middle",
1534     "conveyor_belt",
1535     "conveyor belt 1 (middle)"
1536   },
1537   {
1538     "conveyor_belt_1_right",
1539     "conveyor_belt",
1540     "conveyor belt 1 (right)"
1541   },
1542   {
1543     "conveyor_belt_1_switch_left",
1544     "conveyor_belt_switch",
1545     "switch for conveyor belt 1 (left)"
1546   },
1547   {
1548     "conveyor_belt_1_switch_middle",
1549     "conveyor_belt_switch",
1550     "switch for conveyor belt 1 (middle)"
1551   },
1552   {
1553     "conveyor_belt_1_switch_right",
1554     "conveyor_belt_switch",
1555     "switch for conveyor belt 1 (right)"
1556   },
1557   {
1558     "conveyor_belt_2_left",
1559     "conveyor_belt",
1560     "conveyor belt 2 (left)"
1561   },
1562   {
1563     "conveyor_belt_2_middle",
1564     "conveyor_belt",
1565     "conveyor belt 2 (middle)"
1566   },
1567   {
1568     "conveyor_belt_2_right",
1569     "conveyor_belt",
1570     "conveyor belt 2 (right)"
1571   },
1572   {
1573     "conveyor_belt_2_switch_left",
1574     "conveyor_belt_switch",
1575     "switch for conveyor belt 2 (left)"
1576   },
1577   {
1578     "conveyor_belt_2_switch_middle",
1579     "conveyor_belt_switch",
1580     "switch for conveyor belt 2 (middle)"
1581   },
1582   {
1583     "conveyor_belt_2_switch_right",
1584     "conveyor_belt_switch",
1585     "switch for conveyor belt 2 (right)"
1586   },
1587   {
1588     "conveyor_belt_3_left",
1589     "conveyor_belt",
1590     "conveyor belt 3 (left)"
1591   },
1592   {
1593     "conveyor_belt_3_middle",
1594     "conveyor_belt",
1595     "conveyor belt 3 (middle)"
1596   },
1597   {
1598     "conveyor_belt_3_right",
1599     "conveyor_belt",
1600     "conveyor belt 3 (right)"
1601   },
1602   {
1603     "conveyor_belt_3_switch_left",
1604     "conveyor_belt_switch",
1605     "switch for conveyor belt 3 (left)"
1606   },
1607   {
1608     "conveyor_belt_3_switch_middle",
1609     "conveyor_belt_switch",
1610     "switch for conveyor belt 3 (middle)"
1611   },
1612   {
1613     "conveyor_belt_3_switch_right",
1614     "conveyor_belt_switch",
1615     "switch for conveyor belt 3 (right)"
1616   },
1617   {
1618     "conveyor_belt_4_left",
1619     "conveyor_belt",
1620     "conveyor belt 4 (left)"
1621   },
1622   {
1623     "conveyor_belt_4_middle",
1624     "conveyor_belt",
1625     "conveyor belt 4 (middle)"
1626   },
1627   {
1628     "conveyor_belt_4_right",
1629     "conveyor_belt",
1630     "conveyor belt 4 (right)"
1631   },
1632   {
1633     "conveyor_belt_4_switch_left",
1634     "conveyor_belt_switch",
1635     "switch for conveyor belt 4 (left)"
1636   },
1637   {
1638     "conveyor_belt_4_switch_middle",
1639     "conveyor_belt_switch",
1640     "switch for conveyor belt 4 (middle)"
1641   },
1642   {
1643     "conveyor_belt_4_switch_right",
1644     "conveyor_belt_switch",
1645     "switch for conveyor belt 4 (right)"
1646   },
1647   {
1648     "landmine",
1649     "landmine",
1650     "land mine (not removable)"
1651   },
1652   {
1653     "envelope_obsolete",
1654     "obsolete",
1655     "envelope (OBSOLETE)"
1656   },
1657   {
1658     "light_switch",
1659     "light_switch",
1660     "light switch (off)"
1661   },
1662   {
1663     "light_switch.active",
1664     "light_switch",
1665     "light switch (on)"
1666   },
1667   {
1668     "sign_exclamation",
1669     "sign",
1670     "sign (exclamation)"
1671   },
1672   {
1673     "sign_radioactivity",
1674     "sign",
1675     "sign (radio activity)"
1676   },
1677   {
1678     "sign_stop",
1679     "sign",
1680     "sign (stop)"
1681   },
1682   {
1683     "sign_wheelchair",
1684     "sign",
1685     "sign (wheel chair)"
1686   },
1687   {
1688     "sign_parking",
1689     "sign",
1690     "sign (parking)"
1691   },
1692   {
1693     "sign_no_entry",
1694     "sign",
1695     "sign (no entry)"
1696   },
1697   {
1698     "sign_unused_1",
1699     "sign",
1700     "sign (unused)"
1701   },
1702   {
1703     "sign_give_way",
1704     "sign",
1705     "sign (give way)"
1706   },
1707   {
1708     "sign_entry_forbidden",
1709     "sign",
1710     "sign (entry forbidden)"
1711   },
1712   {
1713     "sign_emergency_exit",
1714     "sign",
1715     "sign (emergency exit)"
1716   },
1717   {
1718     "sign_yin_yang",
1719     "sign",
1720     "sign (yin yang)"
1721   },
1722   {
1723     "sign_unused_2",
1724     "sign",
1725     "sign (unused)"
1726   },
1727   {
1728     "mole.left",
1729     "mole",
1730     "mole (starts moving left)"
1731   },
1732   {
1733     "mole.right",
1734     "mole",
1735     "mole (starts moving right)"
1736   },
1737   {
1738     "mole.up",
1739     "mole",
1740     "mole (starts moving up)"
1741   },
1742   {
1743     "mole.down",
1744     "mole",
1745     "mole (starts moving down)"
1746   },
1747   {
1748     "steelwall_slippery",
1749     "steelwall",
1750     "slippery steel wall"
1751   },
1752   {
1753     "invisible_sand",
1754     "sand",
1755     "invisible sand"
1756   },
1757   {
1758     "dx_unknown_15",
1759     "unknown",
1760     "dx unknown element 15"
1761   },
1762   {
1763     "dx_unknown_42",
1764     "unknown",
1765     "dx unknown element 42"
1766   },
1767   {
1768     "unused_319",
1769     "unused",
1770     "(not used)"
1771   },
1772   {
1773     "unused_320",
1774     "unused",
1775     "(not used)"
1776   },
1777   {
1778     "shield_deadly",
1779     "shield_deadly",
1780     "shield (deadly, kills enemies)"
1781   },
1782   {
1783     "timegate_open",
1784     "timegate",
1785     "time gate (open)"
1786   },
1787   {
1788     "timegate_closed",
1789     "timegate",
1790     "time gate (closed)"
1791   },
1792   {
1793     "timegate_switch.active",
1794     "timegate_switch",
1795     "switch for time gate"
1796   },
1797   {
1798     "timegate_switch",
1799     "timegate_switch",
1800     "switch for time gate"
1801   },
1802   {
1803     "balloon",
1804     "balloon",
1805     "balloon"
1806   },
1807   {
1808     "balloon_switch_left",
1809     "balloon_switch",
1810     "wind switch (left)"
1811   },
1812   {
1813     "balloon_switch_right",
1814     "balloon_switch",
1815     "wind switch (right)"
1816   },
1817   {
1818     "balloon_switch_up",
1819     "balloon_switch",
1820     "wind switch (up)"
1821   },
1822   {
1823     "balloon_switch_down",
1824     "balloon_switch",
1825     "wind switch (down)"
1826   },
1827   {
1828     "balloon_switch_any",
1829     "balloon_switch",
1830     "wind switch (any direction)"
1831   },
1832   {
1833     "emc_steelwall_1",
1834     "steelwall",
1835     "steel wall"
1836   },
1837   {
1838     "emc_steelwall_2",
1839     "steelwall",
1840     "steel wall"
1841   },
1842   {
1843     "emc_steelwall_3",
1844     "steelwall",
1845     "steel wall"
1846   },
1847   {
1848     "emc_steelwall_4",
1849     "steelwall",
1850     "steel wall"
1851   },
1852   {
1853     "emc_wall_1",
1854     "wall",
1855     "normal wall"
1856   },
1857   {
1858     "emc_wall_2",
1859     "wall",
1860     "normal wall"
1861   },
1862   {
1863     "emc_wall_3",
1864     "wall",
1865     "normal wall"
1866   },
1867   {
1868     "emc_wall_4",
1869     "wall",
1870     "normal wall"
1871   },
1872   {
1873     "emc_wall_5",
1874     "wall",
1875     "normal wall"
1876   },
1877   {
1878     "emc_wall_6",
1879     "wall",
1880     "normal wall"
1881   },
1882   {
1883     "emc_wall_7",
1884     "wall",
1885     "normal wall"
1886   },
1887   {
1888     "emc_wall_8",
1889     "wall",
1890     "normal wall"
1891   },
1892   {
1893     "tube_any",
1894     "tube",
1895     "tube (any direction)"
1896   },
1897   {
1898     "tube_vertical",
1899     "tube",
1900     "tube (vertical)"
1901   },
1902   {
1903     "tube_horizontal",
1904     "tube",
1905     "tube (horizontal)"
1906   },
1907   {
1908     "tube_vertical_left",
1909     "tube",
1910     "tube (vertical & left)"
1911   },
1912   {
1913     "tube_vertical_right",
1914     "tube",
1915     "tube (vertical & right)"
1916   },
1917   {
1918     "tube_horizontal_up",
1919     "tube",
1920     "tube (horizontal & up)"
1921   },
1922   {
1923     "tube_horizontal_down",
1924     "tube",
1925     "tube (horizontal & down)"
1926   },
1927   {
1928     "tube_left_up",
1929     "tube",
1930     "tube (left & up)"
1931   },
1932   {
1933     "tube_left_down",
1934     "tube",
1935     "tube (left & down)"
1936   },
1937   {
1938     "tube_right_up",
1939     "tube",
1940     "tube (right & up)"
1941   },
1942   {
1943     "tube_right_down",
1944     "tube",
1945     "tube (right & down)"
1946   },
1947   {
1948     "spring",
1949     "spring",
1950     "spring"
1951   },
1952   {
1953     "trap",
1954     "trap",
1955     "trap"
1956   },
1957   {
1958     "dx_supabomb",
1959     "bomb",
1960     "stable bomb (DX style)"
1961   },
1962   {
1963     "unused_358",
1964     "unused",
1965     "-"
1966   },
1967   {
1968     "unused_359",
1969     "unused",
1970     "-"
1971   },
1972   {
1973     "custom_1",
1974     "custom",
1975     "custom element 1"
1976   },
1977   {
1978     "custom_2",
1979     "custom",
1980     "custom element 2"
1981   },
1982   {
1983     "custom_3",
1984     "custom",
1985     "custom element 3"
1986   },
1987   {
1988     "custom_4",
1989     "custom",
1990     "custom element 4"
1991   },
1992   {
1993     "custom_5",
1994     "custom",
1995     "custom element 5"
1996   },
1997   {
1998     "custom_6",
1999     "custom",
2000     "custom element 6"
2001   },
2002   {
2003     "custom_7",
2004     "custom",
2005     "custom element 7"
2006   },
2007   {
2008     "custom_8",
2009     "custom",
2010     "custom element 8"
2011   },
2012   {
2013     "custom_9",
2014     "custom",
2015     "custom element 9"
2016   },
2017   {
2018     "custom_10",
2019     "custom",
2020     "custom element 10"
2021   },
2022   {
2023     "custom_11",
2024     "custom",
2025     "custom element 11"
2026   },
2027   {
2028     "custom_12",
2029     "custom",
2030     "custom element 12"
2031   },
2032   {
2033     "custom_13",
2034     "custom",
2035     "custom element 13"
2036   },
2037   {
2038     "custom_14",
2039     "custom",
2040     "custom element 14"
2041   },
2042   {
2043     "custom_15",
2044     "custom",
2045     "custom element 15"
2046   },
2047   {
2048     "custom_16",
2049     "custom",
2050     "custom element 16"
2051   },
2052   {
2053     "custom_17",
2054     "custom",
2055     "custom element 17"
2056   },
2057   {
2058     "custom_18",
2059     "custom",
2060     "custom element 18"
2061   },
2062   {
2063     "custom_19",
2064     "custom",
2065     "custom element 19"
2066   },
2067   {
2068     "custom_20",
2069     "custom",
2070     "custom element 20"
2071   },
2072   {
2073     "custom_21",
2074     "custom",
2075     "custom element 21"
2076   },
2077   {
2078     "custom_22",
2079     "custom",
2080     "custom element 22"
2081   },
2082   {
2083     "custom_23",
2084     "custom",
2085     "custom element 23"
2086   },
2087   {
2088     "custom_24",
2089     "custom",
2090     "custom element 24"
2091   },
2092   {
2093     "custom_25",
2094     "custom",
2095     "custom element 25"
2096   },
2097   {
2098     "custom_26",
2099     "custom",
2100     "custom element 26"
2101   },
2102   {
2103     "custom_27",
2104     "custom",
2105     "custom element 27"
2106   },
2107   {
2108     "custom_28",
2109     "custom",
2110     "custom element 28"
2111   },
2112   {
2113     "custom_29",
2114     "custom",
2115     "custom element 29"
2116   },
2117   {
2118     "custom_30",
2119     "custom",
2120     "custom element 30"
2121   },
2122   {
2123     "custom_31",
2124     "custom",
2125     "custom element 31"
2126   },
2127   {
2128     "custom_32",
2129     "custom",
2130     "custom element 32"
2131   },
2132   {
2133     "custom_33",
2134     "custom",
2135     "custom element 33"
2136   },
2137   {
2138     "custom_34",
2139     "custom",
2140     "custom element 34"
2141   },
2142   {
2143     "custom_35",
2144     "custom",
2145     "custom element 35"
2146   },
2147   {
2148     "custom_36",
2149     "custom",
2150     "custom element 36"
2151   },
2152   {
2153     "custom_37",
2154     "custom",
2155     "custom element 37"
2156   },
2157   {
2158     "custom_38",
2159     "custom",
2160     "custom element 38"
2161   },
2162   {
2163     "custom_39",
2164     "custom",
2165     "custom element 39"
2166   },
2167   {
2168     "custom_40",
2169     "custom",
2170     "custom element 40"
2171   },
2172   {
2173     "custom_41",
2174     "custom",
2175     "custom element 41"
2176   },
2177   {
2178     "custom_42",
2179     "custom",
2180     "custom element 42"
2181   },
2182   {
2183     "custom_43",
2184     "custom",
2185     "custom element 43"
2186   },
2187   {
2188     "custom_44",
2189     "custom",
2190     "custom element 44"
2191   },
2192   {
2193     "custom_45",
2194     "custom",
2195     "custom element 45"
2196   },
2197   {
2198     "custom_46",
2199     "custom",
2200     "custom element 46"
2201   },
2202   {
2203     "custom_47",
2204     "custom",
2205     "custom element 47"
2206   },
2207   {
2208     "custom_48",
2209     "custom",
2210     "custom element 48"
2211   },
2212   {
2213     "custom_49",
2214     "custom",
2215     "custom element 49"
2216   },
2217   {
2218     "custom_50",
2219     "custom",
2220     "custom element 50"
2221   },
2222   {
2223     "custom_51",
2224     "custom",
2225     "custom element 51"
2226   },
2227   {
2228     "custom_52",
2229     "custom",
2230     "custom element 52"
2231   },
2232   {
2233     "custom_53",
2234     "custom",
2235     "custom element 53"
2236   },
2237   {
2238     "custom_54",
2239     "custom",
2240     "custom element 54"
2241   },
2242   {
2243     "custom_55",
2244     "custom",
2245     "custom element 55"
2246   },
2247   {
2248     "custom_56",
2249     "custom",
2250     "custom element 56"
2251   },
2252   {
2253     "custom_57",
2254     "custom",
2255     "custom element 57"
2256   },
2257   {
2258     "custom_58",
2259     "custom",
2260     "custom element 58"
2261   },
2262   {
2263     "custom_59",
2264     "custom",
2265     "custom element 59"
2266   },
2267   {
2268     "custom_60",
2269     "custom",
2270     "custom element 60"
2271   },
2272   {
2273     "custom_61",
2274     "custom",
2275     "custom element 61"
2276   },
2277   {
2278     "custom_62",
2279     "custom",
2280     "custom element 62"
2281   },
2282   {
2283     "custom_63",
2284     "custom",
2285     "custom element 63"
2286   },
2287   {
2288     "custom_64",
2289     "custom",
2290     "custom element 64"
2291   },
2292   {
2293     "custom_65",
2294     "custom",
2295     "custom element 65"
2296   },
2297   {
2298     "custom_66",
2299     "custom",
2300     "custom element 66"
2301   },
2302   {
2303     "custom_67",
2304     "custom",
2305     "custom element 67"
2306   },
2307   {
2308     "custom_68",
2309     "custom",
2310     "custom element 68"
2311   },
2312   {
2313     "custom_69",
2314     "custom",
2315     "custom element 69"
2316   },
2317   {
2318     "custom_70",
2319     "custom",
2320     "custom element 70"
2321   },
2322   {
2323     "custom_71",
2324     "custom",
2325     "custom element 71"
2326   },
2327   {
2328     "custom_72",
2329     "custom",
2330     "custom element 72"
2331   },
2332   {
2333     "custom_73",
2334     "custom",
2335     "custom element 73"
2336   },
2337   {
2338     "custom_74",
2339     "custom",
2340     "custom element 74"
2341   },
2342   {
2343     "custom_75",
2344     "custom",
2345     "custom element 75"
2346   },
2347   {
2348     "custom_76",
2349     "custom",
2350     "custom element 76"
2351   },
2352   {
2353     "custom_77",
2354     "custom",
2355     "custom element 77"
2356   },
2357   {
2358     "custom_78",
2359     "custom",
2360     "custom element 78"
2361   },
2362   {
2363     "custom_79",
2364     "custom",
2365     "custom element 79"
2366   },
2367   {
2368     "custom_80",
2369     "custom",
2370     "custom element 80"
2371   },
2372   {
2373     "custom_81",
2374     "custom",
2375     "custom element 81"
2376   },
2377   {
2378     "custom_82",
2379     "custom",
2380     "custom element 82"
2381   },
2382   {
2383     "custom_83",
2384     "custom",
2385     "custom element 83"
2386   },
2387   {
2388     "custom_84",
2389     "custom",
2390     "custom element 84"
2391   },
2392   {
2393     "custom_85",
2394     "custom",
2395     "custom element 85"
2396   },
2397   {
2398     "custom_86",
2399     "custom",
2400     "custom element 86"
2401   },
2402   {
2403     "custom_87",
2404     "custom",
2405     "custom element 87"
2406   },
2407   {
2408     "custom_88",
2409     "custom",
2410     "custom element 88"
2411   },
2412   {
2413     "custom_89",
2414     "custom",
2415     "custom element 89"
2416   },
2417   {
2418     "custom_90",
2419     "custom",
2420     "custom element 90"
2421   },
2422   {
2423     "custom_91",
2424     "custom",
2425     "custom element 91"
2426   },
2427   {
2428     "custom_92",
2429     "custom",
2430     "custom element 92"
2431   },
2432   {
2433     "custom_93",
2434     "custom",
2435     "custom element 93"
2436   },
2437   {
2438     "custom_94",
2439     "custom",
2440     "custom element 94"
2441   },
2442   {
2443     "custom_95",
2444     "custom",
2445     "custom element 95"
2446   },
2447   {
2448     "custom_96",
2449     "custom",
2450     "custom element 96"
2451   },
2452   {
2453     "custom_97",
2454     "custom",
2455     "custom element 97"
2456   },
2457   {
2458     "custom_98",
2459     "custom",
2460     "custom element 98"
2461   },
2462   {
2463     "custom_99",
2464     "custom",
2465     "custom element 99"
2466   },
2467   {
2468     "custom_100",
2469     "custom",
2470     "custom element 100"
2471   },
2472   {
2473     "custom_101",
2474     "custom",
2475     "custom element 101"
2476   },
2477   {
2478     "custom_102",
2479     "custom",
2480     "custom element 102"
2481   },
2482   {
2483     "custom_103",
2484     "custom",
2485     "custom element 103"
2486   },
2487   {
2488     "custom_104",
2489     "custom",
2490     "custom element 104"
2491   },
2492   {
2493     "custom_105",
2494     "custom",
2495     "custom element 105"
2496   },
2497   {
2498     "custom_106",
2499     "custom",
2500     "custom element 106"
2501   },
2502   {
2503     "custom_107",
2504     "custom",
2505     "custom element 107"
2506   },
2507   {
2508     "custom_108",
2509     "custom",
2510     "custom element 108"
2511   },
2512   {
2513     "custom_109",
2514     "custom",
2515     "custom element 109"
2516   },
2517   {
2518     "custom_110",
2519     "custom",
2520     "custom element 110"
2521   },
2522   {
2523     "custom_111",
2524     "custom",
2525     "custom element 111"
2526   },
2527   {
2528     "custom_112",
2529     "custom",
2530     "custom element 112"
2531   },
2532   {
2533     "custom_113",
2534     "custom",
2535     "custom element 113"
2536   },
2537   {
2538     "custom_114",
2539     "custom",
2540     "custom element 114"
2541   },
2542   {
2543     "custom_115",
2544     "custom",
2545     "custom element 115"
2546   },
2547   {
2548     "custom_116",
2549     "custom",
2550     "custom element 116"
2551   },
2552   {
2553     "custom_117",
2554     "custom",
2555     "custom element 117"
2556   },
2557   {
2558     "custom_118",
2559     "custom",
2560     "custom element 118"
2561   },
2562   {
2563     "custom_119",
2564     "custom",
2565     "custom element 119"
2566   },
2567   {
2568     "custom_120",
2569     "custom",
2570     "custom element 120"
2571   },
2572   {
2573     "custom_121",
2574     "custom",
2575     "custom element 121"
2576   },
2577   {
2578     "custom_122",
2579     "custom",
2580     "custom element 122"
2581   },
2582   {
2583     "custom_123",
2584     "custom",
2585     "custom element 123"
2586   },
2587   {
2588     "custom_124",
2589     "custom",
2590     "custom element 124"
2591   },
2592   {
2593     "custom_125",
2594     "custom",
2595     "custom element 125"
2596   },
2597   {
2598     "custom_126",
2599     "custom",
2600     "custom element 126"
2601   },
2602   {
2603     "custom_127",
2604     "custom",
2605     "custom element 127"
2606   },
2607   {
2608     "custom_128",
2609     "custom",
2610     "custom element 128"
2611   },
2612   {
2613     "custom_129",
2614     "custom",
2615     "custom element 129"
2616   },
2617   {
2618     "custom_130",
2619     "custom",
2620     "custom element 130"
2621   },
2622   {
2623     "custom_131",
2624     "custom",
2625     "custom element 131"
2626   },
2627   {
2628     "custom_132",
2629     "custom",
2630     "custom element 132"
2631   },
2632   {
2633     "custom_133",
2634     "custom",
2635     "custom element 133"
2636   },
2637   {
2638     "custom_134",
2639     "custom",
2640     "custom element 134"
2641   },
2642   {
2643     "custom_135",
2644     "custom",
2645     "custom element 135"
2646   },
2647   {
2648     "custom_136",
2649     "custom",
2650     "custom element 136"
2651   },
2652   {
2653     "custom_137",
2654     "custom",
2655     "custom element 137"
2656   },
2657   {
2658     "custom_138",
2659     "custom",
2660     "custom element 138"
2661   },
2662   {
2663     "custom_139",
2664     "custom",
2665     "custom element 139"
2666   },
2667   {
2668     "custom_140",
2669     "custom",
2670     "custom element 140"
2671   },
2672   {
2673     "custom_141",
2674     "custom",
2675     "custom element 141"
2676   },
2677   {
2678     "custom_142",
2679     "custom",
2680     "custom element 142"
2681   },
2682   {
2683     "custom_143",
2684     "custom",
2685     "custom element 143"
2686   },
2687   {
2688     "custom_144",
2689     "custom",
2690     "custom element 144"
2691   },
2692   {
2693     "custom_145",
2694     "custom",
2695     "custom element 145"
2696   },
2697   {
2698     "custom_146",
2699     "custom",
2700     "custom element 146"
2701   },
2702   {
2703     "custom_147",
2704     "custom",
2705     "custom element 147"
2706   },
2707   {
2708     "custom_148",
2709     "custom",
2710     "custom element 148"
2711   },
2712   {
2713     "custom_149",
2714     "custom",
2715     "custom element 149"
2716   },
2717   {
2718     "custom_150",
2719     "custom",
2720     "custom element 150"
2721   },
2722   {
2723     "custom_151",
2724     "custom",
2725     "custom element 151"
2726   },
2727   {
2728     "custom_152",
2729     "custom",
2730     "custom element 152"
2731   },
2732   {
2733     "custom_153",
2734     "custom",
2735     "custom element 153"
2736   },
2737   {
2738     "custom_154",
2739     "custom",
2740     "custom element 154"
2741   },
2742   {
2743     "custom_155",
2744     "custom",
2745     "custom element 155"
2746   },
2747   {
2748     "custom_156",
2749     "custom",
2750     "custom element 156"
2751   },
2752   {
2753     "custom_157",
2754     "custom",
2755     "custom element 157"
2756   },
2757   {
2758     "custom_158",
2759     "custom",
2760     "custom element 158"
2761   },
2762   {
2763     "custom_159",
2764     "custom",
2765     "custom element 159"
2766   },
2767   {
2768     "custom_160",
2769     "custom",
2770     "custom element 160"
2771   },
2772   {
2773     "custom_161",
2774     "custom",
2775     "custom element 161"
2776   },
2777   {
2778     "custom_162",
2779     "custom",
2780     "custom element 162"
2781   },
2782   {
2783     "custom_163",
2784     "custom",
2785     "custom element 163"
2786   },
2787   {
2788     "custom_164",
2789     "custom",
2790     "custom element 164"
2791   },
2792   {
2793     "custom_165",
2794     "custom",
2795     "custom element 165"
2796   },
2797   {
2798     "custom_166",
2799     "custom",
2800     "custom element 166"
2801   },
2802   {
2803     "custom_167",
2804     "custom",
2805     "custom element 167"
2806   },
2807   {
2808     "custom_168",
2809     "custom",
2810     "custom element 168"
2811   },
2812   {
2813     "custom_169",
2814     "custom",
2815     "custom element 169"
2816   },
2817   {
2818     "custom_170",
2819     "custom",
2820     "custom element 170"
2821   },
2822   {
2823     "custom_171",
2824     "custom",
2825     "custom element 171"
2826   },
2827   {
2828     "custom_172",
2829     "custom",
2830     "custom element 172"
2831   },
2832   {
2833     "custom_173",
2834     "custom",
2835     "custom element 173"
2836   },
2837   {
2838     "custom_174",
2839     "custom",
2840     "custom element 174"
2841   },
2842   {
2843     "custom_175",
2844     "custom",
2845     "custom element 175"
2846   },
2847   {
2848     "custom_176",
2849     "custom",
2850     "custom element 176"
2851   },
2852   {
2853     "custom_177",
2854     "custom",
2855     "custom element 177"
2856   },
2857   {
2858     "custom_178",
2859     "custom",
2860     "custom element 178"
2861   },
2862   {
2863     "custom_179",
2864     "custom",
2865     "custom element 179"
2866   },
2867   {
2868     "custom_180",
2869     "custom",
2870     "custom element 180"
2871   },
2872   {
2873     "custom_181",
2874     "custom",
2875     "custom element 181"
2876   },
2877   {
2878     "custom_182",
2879     "custom",
2880     "custom element 182"
2881   },
2882   {
2883     "custom_183",
2884     "custom",
2885     "custom element 183"
2886   },
2887   {
2888     "custom_184",
2889     "custom",
2890     "custom element 184"
2891   },
2892   {
2893     "custom_185",
2894     "custom",
2895     "custom element 185"
2896   },
2897   {
2898     "custom_186",
2899     "custom",
2900     "custom element 186"
2901   },
2902   {
2903     "custom_187",
2904     "custom",
2905     "custom element 187"
2906   },
2907   {
2908     "custom_188",
2909     "custom",
2910     "custom element 188"
2911   },
2912   {
2913     "custom_189",
2914     "custom",
2915     "custom element 189"
2916   },
2917   {
2918     "custom_190",
2919     "custom",
2920     "custom element 190"
2921   },
2922   {
2923     "custom_191",
2924     "custom",
2925     "custom element 191"
2926   },
2927   {
2928     "custom_192",
2929     "custom",
2930     "custom element 192"
2931   },
2932   {
2933     "custom_193",
2934     "custom",
2935     "custom element 193"
2936   },
2937   {
2938     "custom_194",
2939     "custom",
2940     "custom element 194"
2941   },
2942   {
2943     "custom_195",
2944     "custom",
2945     "custom element 195"
2946   },
2947   {
2948     "custom_196",
2949     "custom",
2950     "custom element 196"
2951   },
2952   {
2953     "custom_197",
2954     "custom",
2955     "custom element 197"
2956   },
2957   {
2958     "custom_198",
2959     "custom",
2960     "custom element 198"
2961   },
2962   {
2963     "custom_199",
2964     "custom",
2965     "custom element 199"
2966   },
2967   {
2968     "custom_200",
2969     "custom",
2970     "custom element 200"
2971   },
2972   {
2973     "custom_201",
2974     "custom",
2975     "custom element 201"
2976   },
2977   {
2978     "custom_202",
2979     "custom",
2980     "custom element 202"
2981   },
2982   {
2983     "custom_203",
2984     "custom",
2985     "custom element 203"
2986   },
2987   {
2988     "custom_204",
2989     "custom",
2990     "custom element 204"
2991   },
2992   {
2993     "custom_205",
2994     "custom",
2995     "custom element 205"
2996   },
2997   {
2998     "custom_206",
2999     "custom",
3000     "custom element 206"
3001   },
3002   {
3003     "custom_207",
3004     "custom",
3005     "custom element 207"
3006   },
3007   {
3008     "custom_208",
3009     "custom",
3010     "custom element 208"
3011   },
3012   {
3013     "custom_209",
3014     "custom",
3015     "custom element 209"
3016   },
3017   {
3018     "custom_210",
3019     "custom",
3020     "custom element 210"
3021   },
3022   {
3023     "custom_211",
3024     "custom",
3025     "custom element 211"
3026   },
3027   {
3028     "custom_212",
3029     "custom",
3030     "custom element 212"
3031   },
3032   {
3033     "custom_213",
3034     "custom",
3035     "custom element 213"
3036   },
3037   {
3038     "custom_214",
3039     "custom",
3040     "custom element 214"
3041   },
3042   {
3043     "custom_215",
3044     "custom",
3045     "custom element 215"
3046   },
3047   {
3048     "custom_216",
3049     "custom",
3050     "custom element 216"
3051   },
3052   {
3053     "custom_217",
3054     "custom",
3055     "custom element 217"
3056   },
3057   {
3058     "custom_218",
3059     "custom",
3060     "custom element 218"
3061   },
3062   {
3063     "custom_219",
3064     "custom",
3065     "custom element 219"
3066   },
3067   {
3068     "custom_220",
3069     "custom",
3070     "custom element 220"
3071   },
3072   {
3073     "custom_221",
3074     "custom",
3075     "custom element 221"
3076   },
3077   {
3078     "custom_222",
3079     "custom",
3080     "custom element 222"
3081   },
3082   {
3083     "custom_223",
3084     "custom",
3085     "custom element 223"
3086   },
3087   {
3088     "custom_224",
3089     "custom",
3090     "custom element 224"
3091   },
3092   {
3093     "custom_225",
3094     "custom",
3095     "custom element 225"
3096   },
3097   {
3098     "custom_226",
3099     "custom",
3100     "custom element 226"
3101   },
3102   {
3103     "custom_227",
3104     "custom",
3105     "custom element 227"
3106   },
3107   {
3108     "custom_228",
3109     "custom",
3110     "custom element 228"
3111   },
3112   {
3113     "custom_229",
3114     "custom",
3115     "custom element 229"
3116   },
3117   {
3118     "custom_230",
3119     "custom",
3120     "custom element 230"
3121   },
3122   {
3123     "custom_231",
3124     "custom",
3125     "custom element 231"
3126   },
3127   {
3128     "custom_232",
3129     "custom",
3130     "custom element 232"
3131   },
3132   {
3133     "custom_233",
3134     "custom",
3135     "custom element 233"
3136   },
3137   {
3138     "custom_234",
3139     "custom",
3140     "custom element 234"
3141   },
3142   {
3143     "custom_235",
3144     "custom",
3145     "custom element 235"
3146   },
3147   {
3148     "custom_236",
3149     "custom",
3150     "custom element 236"
3151   },
3152   {
3153     "custom_237",
3154     "custom",
3155     "custom element 237"
3156   },
3157   {
3158     "custom_238",
3159     "custom",
3160     "custom element 238"
3161   },
3162   {
3163     "custom_239",
3164     "custom",
3165     "custom element 239"
3166   },
3167   {
3168     "custom_240",
3169     "custom",
3170     "custom element 240"
3171   },
3172   {
3173     "custom_241",
3174     "custom",
3175     "custom element 241"
3176   },
3177   {
3178     "custom_242",
3179     "custom",
3180     "custom element 242"
3181   },
3182   {
3183     "custom_243",
3184     "custom",
3185     "custom element 243"
3186   },
3187   {
3188     "custom_244",
3189     "custom",
3190     "custom element 244"
3191   },
3192   {
3193     "custom_245",
3194     "custom",
3195     "custom element 245"
3196   },
3197   {
3198     "custom_246",
3199     "custom",
3200     "custom element 246"
3201   },
3202   {
3203     "custom_247",
3204     "custom",
3205     "custom element 247"
3206   },
3207   {
3208     "custom_248",
3209     "custom",
3210     "custom element 248"
3211   },
3212   {
3213     "custom_249",
3214     "custom",
3215     "custom element 249"
3216   },
3217   {
3218     "custom_250",
3219     "custom",
3220     "custom element 250"
3221   },
3222   {
3223     "custom_251",
3224     "custom",
3225     "custom element 251"
3226   },
3227   {
3228     "custom_252",
3229     "custom",
3230     "custom element 252"
3231   },
3232   {
3233     "custom_253",
3234     "custom",
3235     "custom element 253"
3236   },
3237   {
3238     "custom_254",
3239     "custom",
3240     "custom element 254"
3241   },
3242   {
3243     "custom_255",
3244     "custom",
3245     "custom element 255"
3246   },
3247   {
3248     "custom_256",
3249     "custom",
3250     "custom element 256"
3251   },
3252   {
3253     "em_key_1",
3254     "key",
3255     "key 1 (EM style)"
3256     },
3257   {
3258     "em_key_2",
3259     "key",
3260     "key 2 (EM style)"
3261     },
3262   {
3263     "em_key_3",
3264     "key",
3265     "key 3 (EM style)"
3266   },
3267   {
3268     "em_key_4",
3269     "key",
3270     "key 4 (EM style)"
3271   },
3272   {
3273     "envelope_1",
3274     "envelope",
3275     "mail envelope 1"
3276   },
3277   {
3278     "envelope_2",
3279     "envelope",
3280     "mail envelope 2"
3281   },
3282   {
3283     "envelope_3",
3284     "envelope",
3285     "mail envelope 3"
3286   },
3287   {
3288     "envelope_4",
3289     "envelope",
3290     "mail envelope 4"
3291   },
3292   {
3293     "group_1",
3294     "group",
3295     "group element 1"
3296   },
3297   {
3298     "group_2",
3299     "group",
3300     "group element 2"
3301   },
3302   {
3303     "group_3",
3304     "group",
3305     "group element 3"
3306   },
3307   {
3308     "group_4",
3309     "group",
3310     "group element 4"
3311   },
3312   {
3313     "group_5",
3314     "group",
3315     "group element 5"
3316   },
3317   {
3318     "group_6",
3319     "group",
3320     "group element 6"
3321   },
3322   {
3323     "group_7",
3324     "group",
3325     "group element 7"
3326   },
3327   {
3328     "group_8",
3329     "group",
3330     "group element 8"
3331   },
3332   {
3333     "group_9",
3334     "group",
3335     "group element 9"
3336   },
3337   {
3338     "group_10",
3339     "group",
3340     "group element 10"
3341   },
3342   {
3343     "group_11",
3344     "group",
3345     "group element 11"
3346   },
3347   {
3348     "group_12",
3349     "group",
3350     "group element 12"
3351   },
3352   {
3353     "group_13",
3354     "group",
3355     "group element 13"
3356   },
3357   {
3358     "group_14",
3359     "group",
3360     "group element 14"
3361   },
3362   {
3363     "group_15",
3364     "group",
3365     "group element 15"
3366   },
3367   {
3368     "group_16",
3369     "group",
3370     "group element 16"
3371   },
3372   {
3373     "group_17",
3374     "group",
3375     "group element 17"
3376   },
3377   {
3378     "group_18",
3379     "group",
3380     "group element 18"
3381   },
3382   {
3383     "group_19",
3384     "group",
3385     "group element 19"
3386   },
3387   {
3388     "group_20",
3389     "group",
3390     "group element 20"
3391   },
3392   {
3393     "group_21",
3394     "group",
3395     "group element 21"
3396   },
3397   {
3398     "group_22",
3399     "group",
3400     "group element 22"
3401   },
3402   {
3403     "group_23",
3404     "group",
3405     "group element 23"
3406   },
3407   {
3408     "group_24",
3409     "group",
3410     "group element 24"
3411   },
3412   {
3413     "group_25",
3414     "group",
3415     "group element 25"
3416   },
3417   {
3418     "group_26",
3419     "group",
3420     "group element 26"
3421   },
3422   {
3423     "group_27",
3424     "group",
3425     "group element 27"
3426   },
3427   {
3428     "group_28",
3429     "group",
3430     "group element 28"
3431   },
3432   {
3433     "group_29",
3434     "group",
3435     "group element 29"
3436   },
3437   {
3438     "group_30",
3439     "group",
3440     "group element 30"
3441   },
3442   {
3443     "group_31",
3444     "group",
3445     "group element 31"
3446   },
3447   {
3448     "group_32",
3449     "group",
3450     "group element 32"
3451   },
3452   {
3453     "unknown",
3454     "unknown",
3455     "unknown element"
3456   },
3457   {
3458     "trigger_element",
3459     "trigger",
3460     "element triggering change"
3461   },
3462   {
3463     "trigger_player",
3464     "trigger",
3465     "player triggering change"
3466   },
3467   {
3468     "sp_gravity_on_port_right",
3469     "sp_gravity_on_port",
3470     "gravity-on port (leading right)"
3471   },
3472   {
3473     "sp_gravity_on_port_down",
3474     "sp_gravity_on_port",
3475     "gravity-on port (leading down)"
3476   },
3477   {
3478     "sp_gravity_on_port_left",
3479     "sp_gravity_on_port",
3480     "gravity-on port (leading left)"
3481   },
3482   {
3483     "sp_gravity_on_port_up",
3484     "sp_gravity_on_port",
3485     "gravity-on port (leading up)"
3486   },
3487   {
3488     "sp_gravity_off_port_right",
3489     "sp_gravity_off_port",
3490     "gravity-off port (leading right)"
3491   },
3492   {
3493     "sp_gravity_off_port_down",
3494     "sp_gravity_off_port",
3495     "gravity-off port (leading down)"
3496   },
3497   {
3498     "sp_gravity_off_port_left",
3499     "sp_gravity_off_port",
3500     "gravity-off port (leading left)"
3501   },
3502   {
3503     "sp_gravity_off_port_up",
3504     "sp_gravity_off_port",
3505     "gravity-off port (leading up)"
3506   },
3507   {
3508     "balloon_switch_none",
3509     "balloon_switch",
3510     "wind switch (off)"
3511   },
3512   {
3513     "emc_gate_5",
3514     "gate",
3515     "door 5 (EMC style)",
3516   },
3517   {
3518     "emc_gate_6",
3519     "gate",
3520     "door 6 (EMC style)",
3521   },
3522   {
3523     "emc_gate_7",
3524     "gate",
3525     "door 7 (EMC style)",
3526   },
3527   {
3528     "emc_gate_8",
3529     "gate",
3530     "door 8 (EMC style)",
3531   },
3532   {
3533     "emc_gate_5_gray",
3534     "gate",
3535     "gray door (EMC style, key 5)",
3536   },
3537   {
3538     "emc_gate_6_gray",
3539     "gate",
3540     "gray door (EMC style, key 6)",
3541   },
3542   {
3543     "emc_gate_7_gray",
3544     "gate",
3545     "gray door (EMC style, key 7)",
3546   },
3547   {
3548     "emc_gate_8_gray",
3549     "gate",
3550     "gray door (EMC style, key 8)",
3551   },
3552   {
3553     "emc_key_5",
3554     "key",
3555     "key 5 (EMC style)",
3556   },
3557   {
3558     "emc_key_6",
3559     "key",
3560     "key 6 (EMC style)",
3561   },
3562   {
3563     "emc_key_7",
3564     "key",
3565     "key 7 (EMC style)",
3566   },
3567   {
3568     "emc_key_8",
3569     "key",
3570     "key 8 (EMC style)",
3571   },
3572   {
3573     "emc_android",
3574     "emc_android",
3575     "android",
3576   },
3577   {
3578     "emc_grass",
3579     "emc_grass",
3580     "grass",
3581   },
3582   {
3583     "emc_magic_ball",
3584     "emc_magic_ball",
3585     "magic ball",
3586   },
3587   {
3588     "emc_magic_ball.active",
3589     "emc_magic_ball",
3590     "magic ball (activated)",
3591   },
3592   {
3593     "emc_magic_ball_switch",
3594     "emc_magic_ball_switch",
3595     "magic ball switch (off)",
3596   },
3597   {
3598     "emc_magic_ball_switch.active",
3599     "emc_magic_ball_switch",
3600     "magic ball switch (on)",
3601   },
3602   {
3603     "emc_spring_bumper",
3604     "emc_spring_bumper",
3605     "spring bumper",
3606   },
3607   {
3608     "emc_plant",
3609     "emc_plant",
3610     "plant",
3611   },
3612   {
3613     "emc_lenses",
3614     "emc_lenses",
3615     "lenses",
3616   },
3617   {
3618     "emc_magnifier",
3619     "emc_magnifier",
3620     "magnifier",
3621   },
3622   {
3623     "emc_wall_9",
3624     "wall",
3625     "normal wall"
3626   },
3627   {
3628     "emc_wall_10",
3629     "wall",
3630     "normal wall"
3631   },
3632   {
3633     "emc_wall_11",
3634     "wall",
3635     "normal wall"
3636   },
3637   {
3638     "emc_wall_12",
3639     "wall",
3640     "normal wall"
3641   },
3642   {
3643     "emc_wall_13",
3644     "wall",
3645     "normal wall"
3646   },
3647   {
3648     "emc_wall_14",
3649     "wall",
3650     "normal wall"
3651   },
3652   {
3653     "emc_wall_15",
3654     "wall",
3655     "normal wall"
3656   },
3657   {
3658     "emc_wall_16",
3659     "wall",
3660     "normal wall"
3661   },
3662   {
3663     "emc_wall_slippery_1",
3664     "wall",
3665     "slippery wall"
3666   },
3667   {
3668     "emc_wall_slippery_2",
3669     "wall",
3670     "slippery wall"
3671   },
3672   {
3673     "emc_wall_slippery_3",
3674     "wall",
3675     "slippery wall"
3676   },
3677   {
3678     "emc_wall_slippery_4",
3679     "wall",
3680     "slippery wall"
3681   },
3682   {
3683     "emc_fake_grass",
3684     "fake_grass",
3685     "fake grass"
3686   },
3687   {
3688     "emc_fake_acid",
3689     "fake_acid",
3690     "fake acid"
3691   },
3692   {
3693     "emc_dripper",
3694     "dripper",
3695     "dripper"
3696   },
3697   {
3698     "trigger_ce_value",
3699     "trigger",
3700     "CE value of element triggering change"
3701   },
3702   {
3703     "trigger_ce_score",
3704     "trigger",
3705     "CE score of element triggering change"
3706   },
3707   {
3708     "current_ce_value",
3709     "current",
3710     "CE value of current element"
3711   },
3712   {
3713     "current_ce_score",
3714     "current",
3715     "CE score of current element"
3716   },
3717   {
3718     "yamyam.left",
3719     "yamyam",
3720     "yam yam (starts moving left)"
3721   },
3722   {
3723     "yamyam.right",
3724     "yamyam",
3725     "yam yam (starts moving right)"
3726   },
3727   {
3728     "yamyam.up",
3729     "yamyam",
3730     "yam yam (starts moving up)"
3731   },
3732   {
3733     "yamyam.down",
3734     "yamyam",
3735     "yam yam (starts moving down)"
3736   },
3737   {
3738     "bd_expandable_wall",
3739     "wall",
3740     "growing wall (horizontal, BD style)"
3741   },
3742   {
3743     "prev_ce_8",
3744     "prev_ce",
3745     "CE 8 positions earlier in list"
3746   },
3747   {
3748     "prev_ce_7",
3749     "prev_ce",
3750     "CE 7 positions earlier in list"
3751   },
3752   {
3753     "prev_ce_6",
3754     "prev_ce",
3755     "CE 6 positions earlier in list"
3756   },
3757   {
3758     "prev_ce_5",
3759     "prev_ce",
3760     "CE 5 positions earlier in list"
3761   },
3762   {
3763     "prev_ce_4",
3764     "prev_ce",
3765     "CE 4 positions earlier in list"
3766   },
3767   {
3768     "prev_ce_3",
3769     "prev_ce",
3770     "CE 3 positions earlier in list"
3771   },
3772   {
3773     "prev_ce_2",
3774     "prev_ce",
3775     "CE 2 positions earlier in list"
3776   },
3777   {
3778     "prev_ce_1",
3779     "prev_ce",
3780     "CE 1 position earlier in list"
3781   },
3782   {
3783     "self",
3784     "self",
3785     "the current custom element"
3786   },
3787   {
3788     "next_ce_1",
3789     "next_ce",
3790     "CE 1 position later in list"
3791   },
3792   {
3793     "next_ce_2",
3794     "next_ce",
3795     "CE 2 positions later in list"
3796   },
3797   {
3798     "next_ce_3",
3799     "next_ce",
3800     "CE 3 positions later in list"
3801   },
3802   {
3803     "next_ce_4",
3804     "next_ce",
3805     "CE 4 positions later in list"
3806   },
3807   {
3808     "next_ce_5",
3809     "next_ce",
3810     "CE 5 positions later in list"
3811   },
3812   {
3813     "next_ce_6",
3814     "next_ce",
3815     "CE 6 positions later in list"
3816   },
3817   {
3818     "next_ce_7",
3819     "next_ce",
3820     "CE 7 positions later in list"
3821   },
3822   {
3823     "next_ce_8",
3824     "next_ce",
3825     "CE 8 positions later in list"
3826   },
3827   {
3828     "any_element",
3829     "any_element",
3830     "this element matches any element"
3831   },
3832   {
3833     "steel_char_space",
3834     "steel_char",
3835     "steel letter ' '"
3836   },
3837   {
3838     "steel_char_exclam",
3839     "steel_char",
3840     "steel letter '!'"
3841   },
3842   {
3843     "steel_char_quotedbl",
3844     "steel_char",
3845     "steel letter '\"'"
3846   },
3847   {
3848     "steel_char_numbersign",
3849     "steel_char",
3850     "steel letter '#'"
3851   },
3852   {
3853     "steel_char_dollar",
3854     "steel_char",
3855     "steel letter '$'"
3856   },
3857   {
3858     "steel_char_percent",
3859     "steel_char",
3860     "steel letter '%'"
3861   },
3862   {
3863     "steel_char_ampersand",
3864     "steel_char",
3865     "steel letter '&'"
3866   },
3867   {
3868     "steel_char_apostrophe",
3869     "steel_char",
3870     "steel letter '''"
3871   },
3872   {
3873     "steel_char_parenleft",
3874     "steel_char",
3875     "steel letter '('"
3876   },
3877   {
3878     "steel_char_parenright",
3879     "steel_char",
3880     "steel letter ')'"
3881   },
3882   {
3883     "steel_char_asterisk",
3884     "steel_char",
3885     "steel letter '*'"
3886   },
3887   {
3888     "steel_char_plus",
3889     "steel_char",
3890     "steel letter '+'"
3891   },
3892   {
3893     "steel_char_comma",
3894     "steel_char",
3895     "steel letter ','"
3896   },
3897   {
3898     "steel_char_minus",
3899     "steel_char",
3900     "steel letter '-'"
3901   },
3902   {
3903     "steel_char_period",
3904     "steel_char",
3905     "steel letter '.'"
3906   },
3907   {
3908     "steel_char_slash",
3909     "steel_char",
3910     "steel letter '/'"
3911   },
3912   {
3913     "steel_char_0",
3914     "steel_char",
3915     "steel letter '0'"
3916   },
3917   {
3918     "steel_char_1",
3919     "steel_char",
3920     "steel letter '1'"
3921   },
3922   {
3923     "steel_char_2",
3924     "steel_char",
3925     "steel letter '2'"
3926   },
3927   {
3928     "steel_char_3",
3929     "steel_char",
3930     "steel letter '3'"
3931   },
3932   {
3933     "steel_char_4",
3934     "steel_char",
3935     "steel letter '4'"
3936   },
3937   {
3938     "steel_char_5",
3939     "steel_char",
3940     "steel letter '5'"
3941   },
3942   {
3943     "steel_char_6",
3944     "steel_char",
3945     "steel letter '6'"
3946   },
3947   {
3948     "steel_char_7",
3949     "steel_char",
3950     "steel letter '7'"
3951   },
3952   {
3953     "steel_char_8",
3954     "steel_char",
3955     "steel letter '8'"
3956   },
3957   {
3958     "steel_char_9",
3959     "steel_char",
3960     "steel letter '9'"
3961   },
3962   {
3963     "steel_char_colon",
3964     "steel_char",
3965     "steel letter ':'"
3966   },
3967   {
3968     "steel_char_semicolon",
3969     "steel_char",
3970     "steel letter ';'"
3971   },
3972   {
3973     "steel_char_less",
3974     "steel_char",
3975     "steel letter '<'"
3976   },
3977   {
3978     "steel_char_equal",
3979     "steel_char",
3980     "steel letter '='"
3981   },
3982   {
3983     "steel_char_greater",
3984     "steel_char",
3985     "steel letter '>'"
3986   },
3987   {
3988     "steel_char_question",
3989     "steel_char",
3990     "steel letter '?'"
3991   },
3992   {
3993     "steel_char_at",
3994     "steel_char",
3995     "steel letter '@'"
3996   },
3997   {
3998     "steel_char_a",
3999     "steel_char",
4000     "steel letter 'A'"
4001   },
4002   {
4003     "steel_char_b",
4004     "steel_char",
4005     "steel letter 'B'"
4006   },
4007   {
4008     "steel_char_c",
4009     "steel_char",
4010     "steel letter 'C'"
4011   },
4012   {
4013     "steel_char_d",
4014     "steel_char",
4015     "steel letter 'D'"
4016   },
4017   {
4018     "steel_char_e",
4019     "steel_char",
4020     "steel letter 'E'"
4021   },
4022   {
4023     "steel_char_f",
4024     "steel_char",
4025     "steel letter 'F'"
4026   },
4027   {
4028     "steel_char_g",
4029     "steel_char",
4030     "steel letter 'G'"
4031   },
4032   {
4033     "steel_char_h",
4034     "steel_char",
4035     "steel letter 'H'"
4036   },
4037   {
4038     "steel_char_i",
4039     "steel_char",
4040     "steel letter 'I'"
4041   },
4042   {
4043     "steel_char_j",
4044     "steel_char",
4045     "steel letter 'J'"
4046   },
4047   {
4048     "steel_char_k",
4049     "steel_char",
4050     "steel letter 'K'"
4051   },
4052   {
4053     "steel_char_l",
4054     "steel_char",
4055     "steel letter 'L'"
4056   },
4057   {
4058     "steel_char_m",
4059     "steel_char",
4060     "steel letter 'M'"
4061   },
4062   {
4063     "steel_char_n",
4064     "steel_char",
4065     "steel letter 'N'"
4066   },
4067   {
4068     "steel_char_o",
4069     "steel_char",
4070     "steel letter 'O'"
4071   },
4072   {
4073     "steel_char_p",
4074     "steel_char",
4075     "steel letter 'P'"
4076   },
4077   {
4078     "steel_char_q",
4079     "steel_char",
4080     "steel letter 'Q'"
4081   },
4082   {
4083     "steel_char_r",
4084     "steel_char",
4085     "steel letter 'R'"
4086   },
4087   {
4088     "steel_char_s",
4089     "steel_char",
4090     "steel letter 'S'"
4091   },
4092   {
4093     "steel_char_t",
4094     "steel_char",
4095     "steel letter 'T'"
4096   },
4097   {
4098     "steel_char_u",
4099     "steel_char",
4100     "steel letter 'U'"
4101   },
4102   {
4103     "steel_char_v",
4104     "steel_char",
4105     "steel letter 'V'"
4106   },
4107   {
4108     "steel_char_w",
4109     "steel_char",
4110     "steel letter 'W'"
4111   },
4112   {
4113     "steel_char_x",
4114     "steel_char",
4115     "steel letter 'X'"
4116   },
4117   {
4118     "steel_char_y",
4119     "steel_char",
4120     "steel letter 'Y'"
4121   },
4122   {
4123     "steel_char_z",
4124     "steel_char",
4125     "steel letter 'Z'"
4126   },
4127   {
4128     "steel_char_bracketleft",
4129     "steel_char",
4130     "steel letter '['"
4131   },
4132   {
4133     "steel_char_backslash",
4134     "steel_char",
4135     "steel letter '\\'"
4136   },
4137   {
4138     "steel_char_bracketright",
4139     "steel_char",
4140     "steel letter ']'"
4141   },
4142   {
4143     "steel_char_asciicircum",
4144     "steel_char",
4145     "steel letter '^'"
4146   },
4147   {
4148     "steel_char_underscore",
4149     "steel_char",
4150     "steel letter '_'"
4151   },
4152   {
4153     "steel_char_copyright",
4154     "steel_char",
4155     "steel letter '©'"
4156   },
4157   {
4158     "steel_char_aumlaut",
4159     "steel_char",
4160     "steel letter 'Ä'"
4161   },
4162   {
4163     "steel_char_oumlaut",
4164     "steel_char",
4165     "steel letter 'Ö'"
4166   },
4167   {
4168     "steel_char_uumlaut",
4169     "steel_char",
4170     "steel letter 'Ãœ'"
4171   },
4172   {
4173     "steel_char_degree",
4174     "steel_char",
4175     "steel letter '°'"
4176   },
4177   {
4178     "steel_char_trademark",
4179     "steel_char",
4180     "steel letter '®'"
4181   },
4182   {
4183     "steel_char_cursor",
4184     "steel_char",
4185     "steel letter ' '"
4186   },
4187   {
4188     "steel_char_unused",
4189     "steel_char",
4190     "steel letter ''"
4191   },
4192   {
4193     "steel_char_unused",
4194     "steel_char",
4195     "steel letter ''"
4196   },
4197   {
4198     "steel_char_unused",
4199     "steel_char",
4200     "steel letter ''"
4201   },
4202   {
4203     "steel_char_unused",
4204     "steel_char",
4205     "steel letter ''"
4206   },
4207   {
4208     "steel_char_unused",
4209     "steel_char",
4210     "steel letter ''"
4211   },
4212   {
4213     "steel_char_unused",
4214     "steel_char",
4215     "steel letter ''"
4216   },
4217   {
4218     "steel_char_unused",
4219     "steel_char",
4220     "steel letter 'button'"
4221   },
4222   {
4223     "steel_char_unused",
4224     "steel_char",
4225     "steel letter 'up'"
4226   },
4227   {
4228     "steel_char_unused",
4229     "steel_char",
4230     "steel letter 'down'"
4231   },
4232   {
4233     "sperms",
4234     "frankie",
4235     "sperms"
4236   },
4237   {
4238     "bullet",
4239     "frankie",
4240     "bullet"
4241   },
4242   {
4243     "heart",
4244     "frankie",
4245     "heart"
4246   },
4247   {
4248     "cross",
4249     "frankie",
4250     "cross"
4251   },
4252   {
4253     "frankie",
4254     "frankie",
4255     "frankie"
4256   },
4257   {
4258     "sign_sperms",
4259     "sign",
4260     "sign (sperms)"
4261   },
4262   {
4263     "sign_bullet",
4264     "sign",
4265     "sign (bullet)"
4266   },
4267   {
4268     "sign_heart",
4269     "sign",
4270     "sign (heart)"
4271   },
4272   {
4273     "sign_cross",
4274     "sign",
4275     "sign (cross)"
4276   },
4277   {
4278     "sign_frankie",
4279     "sign",
4280     "sign (frankie)"
4281   },
4282   {
4283     "steel_exit_closed",
4284     "steel_exit",
4285     "closed steel exit"
4286   },
4287   {
4288     "steel_exit_open",
4289     "steel_exit",
4290     "open steel exit"
4291   },
4292   {
4293     "dc_steelwall_1_left",
4294     "steelwall",
4295     "steel wall (left)"
4296   },
4297   {
4298     "dc_steelwall_1_right",
4299     "steelwall",
4300     "steel wall (right)"
4301   },
4302   {
4303     "dc_steelwall_1_top",
4304     "steelwall",
4305     "steel wall (top)"
4306   },
4307   {
4308     "dc_steelwall_1_bottom",
4309     "steelwall",
4310     "steel wall (bottom)"
4311   },
4312   {
4313     "dc_steelwall_1_horizontal",
4314     "steelwall",
4315     "steel wall (top/bottom)"
4316   },
4317   {
4318     "dc_steelwall_1_vertical",
4319     "steelwall",
4320     "steel wall (left/right)"
4321   },
4322   {
4323     "dc_steelwall_1_topleft",
4324     "steelwall",
4325     "steel wall (top/left)"
4326   },
4327   {
4328     "dc_steelwall_1_topright",
4329     "steelwall",
4330     "steel wall (top/right)"
4331   },
4332   {
4333     "dc_steelwall_1_bottomleft",
4334     "steelwall",
4335     "steel wall (bottom/left)"
4336   },
4337   {
4338     "dc_steelwall_1_bottomright",
4339     "steelwall",
4340     "steel wall (bottom/right)"
4341   },
4342   {
4343     "dc_steelwall_1_topleft_2",
4344     "steelwall",
4345     "steel wall (top/left corner)"
4346   },
4347   {
4348     "dc_steelwall_1_topright_2",
4349     "steelwall",
4350     "steel wall (top/right corner)"
4351   },
4352   {
4353     "dc_steelwall_1_bottomleft_2",
4354     "steelwall",
4355     "steel wall (bottom/left corner)"
4356   },
4357   {
4358     "dc_steelwall_1_bottomright_2",
4359     "steelwall",
4360     "steel wall (bottom/right corner)"
4361   },
4362   {
4363     "dc_steelwall_2_left",
4364     "steelwall",
4365     "steel wall (left)"
4366   },
4367   {
4368     "dc_steelwall_2_right",
4369     "steelwall",
4370     "steel wall (right)"
4371   },
4372   {
4373     "dc_steelwall_2_top",
4374     "steelwall",
4375     "steel wall (top)"
4376   },
4377   {
4378     "dc_steelwall_2_bottom",
4379     "steelwall",
4380     "steel wall (bottom)"
4381   },
4382   {
4383     "dc_steelwall_2_horizontal",
4384     "steelwall",
4385     "steel wall (horizontal)"
4386   },
4387   {
4388     "dc_steelwall_2_vertical",
4389     "steelwall",
4390     "steel wall (vertical)"
4391   },
4392   {
4393     "dc_steelwall_2_middle",
4394     "steelwall",
4395     "steel wall (middle)"
4396   },
4397   {
4398     "dc_steelwall_2_single",
4399     "steelwall",
4400     "steel wall (single)"
4401   },
4402   {
4403     "dc_switchgate_switch_up",
4404     "switchgate_switch",
4405     "switch for switch gate (steel)"
4406   },
4407   {
4408     "dc_switchgate_switch_down",
4409     "switchgate_switch",
4410     "switch for switch gate (steel)"
4411   },
4412   {
4413     "dc_timegate_switch",
4414     "timegate_switch",
4415     "switch for time gate (steel)"
4416   },
4417   {
4418     "dc_timegate_switch.active",
4419     "timegate_switch",
4420     "switch for time gate (steel)"
4421   },
4422   {
4423     "dc_landmine",
4424     "dc_landmine",
4425     "land mine (DC style, removable)"
4426   },
4427   {
4428     "expandable_steelwall",
4429     "steelwall",
4430     "growing steel wall"
4431   },
4432   {
4433     "expandable_steelwall_horizontal",
4434     "steelwall",
4435     "growing steel wall (horizontal)"
4436   },
4437   {
4438     "expandable_steelwall_vertical",
4439     "steelwall",
4440     "growing steel wall (vertical)"
4441   },
4442   {
4443     "expandable_steelwall_any",
4444     "steelwall",
4445     "growing steel wall (any direction)"
4446   },
4447   {
4448     "em_exit_closed",
4449     "em_exit",
4450     "closed exit (EM style)"
4451   },
4452   {
4453     "em_exit_open",
4454     "em_exit",
4455     "open exit (EM style)"
4456   },
4457   {
4458     "em_steel_exit_closed",
4459     "em_steel_exit",
4460     "closed steel exit (EM style)"
4461   },
4462   {
4463     "em_steel_exit_open",
4464     "em_steel_exit",
4465     "open steel exit (EM style)"
4466   },
4467   {
4468     "dc_gate_fake_gray",
4469     "gate",
4470     "gray door (opened by no key)"
4471   },
4472   {
4473     "dc_magic_wall",
4474     "dc_magic_wall",
4475     "magic wall (DC style)"
4476   },
4477   {
4478     "quicksand_fast_empty",
4479     "quicksand",
4480     "fast quicksand (empty)"
4481   },
4482   {
4483     "quicksand_fast_full",
4484     "quicksand",
4485     "fast quicksand (with rock)"
4486   },
4487   {
4488     "from_level_template",
4489     "from_level_template",
4490     "element taken from level template"
4491   },
4492
4493   /* ----------------------------------------------------------------------- */
4494   /* "real" (and therefore drawable) runtime elements                        */
4495   /* ----------------------------------------------------------------------- */
4496
4497   {
4498     "dynabomb_player_1.active",
4499     "dynabomb",
4500     "-"
4501   },
4502   {
4503     "dynabomb_player_2.active",
4504     "dynabomb",
4505     "-"
4506   },
4507   {
4508     "dynabomb_player_3.active",
4509     "dynabomb",
4510     "-"
4511   },
4512   {
4513     "dynabomb_player_4.active",
4514     "dynabomb",
4515     "-"
4516   },
4517   {
4518     "sp_disk_red.active",
4519     "dynamite",
4520     "-"
4521   },
4522   {
4523     "switchgate.opening",
4524     "switchgate",
4525     "-"
4526   },
4527   {
4528     "switchgate.closing",
4529     "switchgate",
4530     "-"
4531   },
4532   {
4533     "timegate.opening",
4534     "timegate",
4535     "-"
4536   },
4537   {
4538     "timegate.closing",
4539     "timegate",
4540     "-"
4541   },
4542   {
4543     "pearl.breaking",
4544     "pearl",
4545     "-"
4546   },
4547   {
4548     "trap.active",
4549     "trap",
4550     "-"
4551   },
4552   {
4553     "invisible_steelwall.active",
4554     "steelwall",
4555     "-"
4556   },
4557   {
4558     "invisible_wall.active",
4559     "wall",
4560     "-"
4561   },
4562   {
4563     "invisible_sand.active",
4564     "sand",
4565     "-"
4566   },
4567   {
4568     "conveyor_belt_1_left.active",
4569     "conveyor_belt",
4570     "-"
4571   },
4572   {
4573     "conveyor_belt_1_middle.active",
4574     "conveyor_belt",
4575     "-"
4576   },
4577   {
4578     "conveyor_belt_1_right.active",
4579     "conveyor_belt",
4580     "-"
4581   },
4582   {
4583     "conveyor_belt_2_left.active",
4584     "conveyor_belt",
4585     "-"
4586   },
4587   {
4588     "conveyor_belt_2_middle.active",
4589     "conveyor_belt",
4590     "-"
4591   },
4592   {
4593     "conveyor_belt_2_right.active",
4594     "conveyor_belt",
4595     "-"
4596   },
4597   {
4598     "conveyor_belt_3_left.active",
4599     "conveyor_belt",
4600     "-"
4601   },
4602   {
4603     "conveyor_belt_3_middle.active",
4604     "conveyor_belt",
4605     "-"
4606   },
4607   {
4608     "conveyor_belt_3_right.active",
4609     "conveyor_belt",
4610     "-"
4611   },
4612   {
4613     "conveyor_belt_4_left.active",
4614     "conveyor_belt",
4615     "-"
4616   },
4617   {
4618     "conveyor_belt_4_middle.active",
4619     "conveyor_belt",
4620     "-"
4621   },
4622   {
4623     "conveyor_belt_4_right.active",
4624     "conveyor_belt",
4625     "-"
4626   },
4627   {
4628     "exit.opening",
4629     "exit",
4630     "-"
4631   },
4632   {
4633     "exit.closing",
4634     "exit",
4635     "-"
4636   },
4637   {
4638     "steel_exit.opening",
4639     "steel_exit",
4640     "-"
4641   },
4642   {
4643     "steel_exit.closing",
4644     "steel_exit",
4645     "-"
4646   },
4647   {
4648     "em_exit.opening",
4649     "em_exit",
4650     "-"
4651   },
4652   {
4653     "em_exit.closing",
4654     "em_exit",
4655     "-"
4656   },
4657   {
4658     "em_steel_exit.opening",
4659     "em_steel_exit",
4660     "-"
4661   },
4662   {
4663     "em_steel_exit.closing",
4664     "em_steel_exit",
4665     "-"
4666   },
4667   {
4668     "sp_exit.opening",
4669     "sp_exit",
4670     "-"
4671   },
4672   {
4673     "sp_exit.closing",
4674     "sp_exit",
4675     "-"
4676   },
4677   {
4678     "sp_exit_open",
4679     "sp_exit",
4680     "-"
4681   },
4682   {
4683     "sp_terminal.active",
4684     "sp_terminal",
4685     "-"
4686   },
4687   {
4688     "sp_buggy_base.activating",
4689     "sp_buggy_base",
4690     "-"
4691   },
4692   {
4693     "sp_buggy_base.active",
4694     "sp_buggy_base",
4695     "-"
4696   },
4697   {
4698     "sp_murphy_clone",
4699     "murphy_clone",
4700     "-"
4701   },
4702   {
4703     "amoeba.dropping",
4704     "amoeba",
4705     "-"
4706   },
4707   {
4708     "quicksand.emptying",
4709     "quicksand",
4710     "-"
4711   },
4712   {
4713     "quicksand_fast.emptying",
4714     "quicksand",
4715     "-"
4716   },
4717   {
4718     "magic_wall.active",
4719     "magic_wall",
4720     "-"
4721   },
4722   {
4723     "bd_magic_wall.active",
4724     "magic_wall",
4725     "-"
4726   },
4727   {
4728     "dc_magic_wall.active",
4729     "magic_wall",
4730     "-"
4731   },
4732   {
4733     "magic_wall_full",
4734     "magic_wall",
4735     "-"
4736   },
4737   {
4738     "bd_magic_wall_full",
4739     "magic_wall",
4740     "-"
4741   },
4742   {
4743     "dc_magic_wall_full",
4744     "magic_wall",
4745     "-"
4746   },
4747   {
4748     "magic_wall.emptying",
4749     "magic_wall",
4750     "-"
4751   },
4752   {
4753     "bd_magic_wall.emptying",
4754     "magic_wall",
4755     "-"
4756   },
4757   {
4758     "dc_magic_wall.emptying",
4759     "magic_wall",
4760     "-"
4761   },
4762   {
4763     "magic_wall_dead",
4764     "magic_wall",
4765     "-"
4766   },
4767   {
4768     "bd_magic_wall_dead",
4769     "magic_wall",
4770     "-"
4771   },
4772   {
4773     "dc_magic_wall_dead",
4774     "magic_wall",
4775     "-"
4776   },
4777
4778   {
4779     "emc_fake_grass.active",
4780     "fake_grass",
4781     "-"
4782   },
4783   {
4784     "gate_1_gray.active",
4785     "gate",
4786     ""
4787   },
4788   {
4789     "gate_2_gray.active",
4790     "gate",
4791     ""
4792   },
4793   {
4794     "gate_3_gray.active",
4795     "gate",
4796     ""
4797   },
4798   {
4799     "gate_4_gray.active",
4800     "gate",
4801     ""
4802   },
4803   {
4804     "em_gate_1_gray.active",
4805     "gate",
4806     ""
4807   },
4808   {
4809     "em_gate_2_gray.active",
4810     "gate",
4811     ""
4812   },
4813   {
4814     "em_gate_3_gray.active",
4815     "gate",
4816     ""
4817   },
4818   {
4819     "em_gate_4_gray.active",
4820     "gate",
4821     ""
4822   },
4823   {
4824     "emc_gate_5_gray.active",
4825     "gate",
4826     "",
4827   },
4828   {
4829     "emc_gate_6_gray.active",
4830     "gate",
4831     "",
4832   },
4833   {
4834     "emc_gate_7_gray.active",
4835     "gate",
4836     "",
4837   },
4838   {
4839     "emc_gate_8_gray.active",
4840     "gate",
4841     "",
4842   },
4843   {
4844     "dc_gate_white_gray.active",
4845     "gate",
4846     "",
4847   },
4848   {
4849     "emc_dripper.active",
4850     "dripper",
4851     "dripper"
4852   },
4853   {
4854     "emc_spring_bumper.active",
4855     "emc_spring_bumper",
4856     "spring bumper",
4857   },
4858
4859   /* ----------------------------------------------------------------------- */
4860   /* "unreal" (and therefore not drawable) runtime elements                  */
4861   /* ----------------------------------------------------------------------- */
4862
4863   {
4864     "blocked",
4865     "-",
4866     "-"
4867   },
4868   {
4869     "explosion",
4870     "-",
4871     "-"
4872   },
4873   {
4874     "nut.breaking",
4875     "-",
4876     "-"
4877   },
4878   {
4879     "diamond.breaking",
4880     "-",
4881     "-"
4882   },
4883   {
4884     "acid_splash_left",
4885     "-",
4886     "-"
4887   },
4888   {
4889     "acid_splash_right",
4890     "-",
4891     "-"
4892   },
4893   {
4894     "amoeba.growing",
4895     "-",
4896     "-"
4897   },
4898   {
4899     "amoeba.shrinking",
4900     "-",
4901     "-"
4902   },
4903   {
4904     "expandable_wall.growing",
4905     "-",
4906     "-"
4907   },
4908   {
4909     "expandable_steelwall.growing",
4910     "-",
4911     "-"
4912   },
4913   {
4914     "flames",
4915     "-",
4916     "-"
4917   },
4918   {
4919     "player_is_leaving",
4920     "-",
4921     "-"
4922   },
4923   {
4924     "player_is_exploding_1",
4925     "-",
4926     "-"
4927   },
4928   {
4929     "player_is_exploding_2",
4930     "-",
4931     "-"
4932   },
4933   {
4934     "player_is_exploding_3",
4935     "-",
4936     "-"
4937   },
4938   {
4939     "player_is_exploding_4",
4940     "-",
4941     "-"
4942   },
4943   {
4944     "quicksand.filling",
4945     "quicksand",
4946     "-"
4947   },
4948   {
4949     "quicksand_fast.filling",
4950     "quicksand",
4951     "-"
4952   },
4953   {
4954     "magic_wall.filling",
4955     "-",
4956     "-"
4957   },
4958   {
4959     "bd_magic_wall.filling",
4960     "-",
4961     "-"
4962   },
4963   {
4964     "dc_magic_wall.filling",
4965     "-",
4966     "-"
4967   },
4968   {
4969     "element.snapping",
4970     "-",
4971     "-"
4972   },
4973   {
4974     "diagonal.shrinking",
4975     "-",
4976     "-"
4977   },
4978   {
4979     "diagonal.growing",
4980     "-",
4981     "-"
4982   },
4983
4984   /* ----------------------------------------------------------------------- */
4985   /* dummy elements (never used as game elements, only used as graphics)     */
4986   /* ----------------------------------------------------------------------- */
4987
4988   {
4989     "steelwall_topleft",
4990     "-",
4991     "-"
4992   },
4993   {
4994     "steelwall_topright",
4995     "-",
4996     "-"
4997   },
4998   {
4999     "steelwall_bottomleft",
5000     "-",
5001     "-"
5002   },
5003   {
5004     "steelwall_bottomright",
5005     "-",
5006     "-"
5007   },
5008   {
5009     "steelwall_horizontal",
5010     "-",
5011     "-"
5012   },
5013   {
5014     "steelwall_vertical",
5015     "-",
5016     "-"
5017   },
5018   {
5019     "invisible_steelwall_topleft",
5020     "-",
5021     "-"
5022   },
5023   {
5024     "invisible_steelwall_topright",
5025     "-",
5026     "-"
5027   },
5028   {
5029     "invisible_steelwall_bottomleft",
5030     "-",
5031     "-"
5032   },
5033   {
5034     "invisible_steelwall_bottomright",
5035     "-",
5036     "-"
5037   },
5038   {
5039     "invisible_steelwall_horizontal",
5040     "-",
5041     "-"
5042   },
5043   {
5044     "invisible_steelwall_vertical",
5045     "-",
5046     "-"
5047   },
5048   {
5049     "dynabomb",
5050     "-",
5051     "-"
5052   },
5053   {
5054     "dynabomb.active",
5055     "-",
5056     "-"
5057   },
5058   {
5059     "dynabomb_player_1",
5060     "-",
5061     "-"
5062   },
5063   {
5064     "dynabomb_player_2",
5065     "-",
5066     "-"
5067   },
5068   {
5069     "dynabomb_player_3",
5070     "-",
5071     "-"
5072   },
5073   {
5074     "dynabomb_player_4",
5075     "-",
5076     "-"
5077   },
5078   {
5079     "shield_normal.active",
5080     "-",
5081     "-"
5082   },
5083   {
5084     "shield_deadly.active",
5085     "-",
5086     "-"
5087   },
5088   {
5089     "amoeba",
5090     "amoeba",
5091     "-"
5092   },
5093   {
5094     "[default]",
5095     "default",
5096     "-"
5097   },
5098   {
5099     "[bd_default]",
5100     "bd_default",
5101     "-"
5102   },
5103   {
5104     "[sp_default]",
5105     "sp_default",
5106     "-"
5107   },
5108   {
5109     "[sb_default]",
5110     "sb_default",
5111     "-"
5112   },
5113   {
5114     "graphic_1",
5115     "graphic",
5116     "-"
5117   },
5118   {
5119     "graphic_2",
5120     "graphic",
5121     "-"
5122   },
5123   {
5124     "graphic_3",
5125     "graphic",
5126     "-"
5127   },
5128   {
5129     "graphic_4",
5130     "graphic",
5131     "-"
5132   },
5133   {
5134     "graphic_5",
5135     "graphic",
5136     "-"
5137   },
5138   {
5139     "graphic_6",
5140     "graphic",
5141     "-"
5142   },
5143   {
5144     "graphic_7",
5145     "graphic",
5146     "-"
5147   },
5148   {
5149     "graphic_8",
5150     "graphic",
5151     "-"
5152   },
5153   {
5154     "internal_clipboard_custom",
5155     "internal",
5156     "empty custom element"
5157   },
5158   {
5159     "internal_clipboard_change",
5160     "internal",
5161     "empty change page"
5162   },
5163   {
5164     "internal_clipboard_group",
5165     "internal",
5166     "empty group element"
5167   },
5168   {
5169     "internal_dummy",
5170     "internal",
5171     "-"
5172   },
5173   {
5174     "internal_cascade_bd",
5175     "internal",
5176     "show Boulder Dash elements"
5177   },
5178   {
5179     "internal_cascade_bd.active",
5180     "internal",
5181     "hide Boulder Dash elements"
5182   },
5183   {
5184     "internal_cascade_em",
5185     "internal",
5186     "show Emerald Mine elements"
5187   },
5188   {
5189     "internal_cascade_em.active",
5190     "internal",
5191     "hide Emerald Mine elements"
5192   },
5193   {
5194     "internal_cascade_emc",
5195     "internal",
5196     "show Emerald Mine Club elements"
5197   },
5198   {
5199     "internal_cascade_emc.active",
5200     "internal",
5201     "hide Emerald Mine Club elements"
5202   },
5203   {
5204     "internal_cascade_rnd",
5205     "internal",
5206     "show Rocks'n'Diamonds elements"
5207   },
5208   {
5209     "internal_cascade_rnd.active",
5210     "internal",
5211     "hide Rocks'n'Diamonds elements"
5212   },
5213   {
5214     "internal_cascade_sb",
5215     "internal",
5216     "show Sokoban elements"
5217   },
5218   {
5219     "internal_cascade_sb.active",
5220     "internal",
5221     "hide Sokoban elements"
5222   },
5223   {
5224     "internal_cascade_sp",
5225     "internal",
5226     "show Supaplex elements"
5227   },
5228   {
5229     "internal_cascade_sp.active",
5230     "internal",
5231     "hide Supaplex elements"
5232   },
5233   {
5234     "internal_cascade_dc",
5235     "internal",
5236     "show Diamond Caves II elements"
5237   },
5238   {
5239     "internal_cascade_dc.active",
5240     "internal",
5241     "hide Diamond Caves II elements"
5242   },
5243   {
5244     "internal_cascade_dx",
5245     "internal",
5246     "show DX Boulderdash elements"
5247   },
5248   {
5249     "internal_cascade_dx.active",
5250     "internal",
5251     "hide DX Boulderdash elements"
5252   },
5253   {
5254     "internal_cascade_chars",
5255     "internal",
5256     "show text elements"
5257   },
5258   {
5259     "internal_cascade_chars.active",
5260     "internal",
5261     "hide text elements"
5262   },
5263   {
5264     "internal_cascade_steel_chars",
5265     "internal",
5266     "show steel text elements"
5267   },
5268   {
5269     "internal_cascade_steel_chars.active",
5270     "internal",
5271     "hide steel text elements"
5272   },
5273   {
5274     "internal_cascade_ce",
5275     "internal",
5276     "show custom elements"
5277   },
5278   {
5279     "internal_cascade_ce.active",
5280     "internal",
5281     "hide custom elements"
5282   },
5283   {
5284     "internal_cascade_ge",
5285     "internal",
5286     "show group elements"
5287   },
5288   {
5289     "internal_cascade_ge.active",
5290     "internal",
5291     "hide group elements"
5292   },
5293   {
5294     "internal_cascade_ref",
5295     "internal",
5296     "show reference elements"
5297   },
5298   {
5299     "internal_cascade_ref.active",
5300     "internal",
5301     "hide reference elements"
5302   },
5303   {
5304     "internal_cascade_user",
5305     "internal",
5306     "show user defined elements"
5307   },
5308   {
5309     "internal_cascade_user.active",
5310     "internal",
5311     "hide user defined elements"
5312   },
5313   {
5314     "internal_cascade_dynamic",
5315     "internal",
5316     "show elements used in this level"
5317   },
5318   {
5319     "internal_cascade_dynamic.active",
5320     "internal",
5321     "hide elements used in this level"
5322   },
5323
5324   /* keyword to stop parser: "ELEMENT_INFO_END" <-- do not change! */
5325
5326   {
5327     NULL,
5328     NULL,
5329     NULL
5330   }
5331 };
5332
5333
5334 /* ------------------------------------------------------------------------- */
5335 /* element action and direction definitions                                  */
5336 /* ------------------------------------------------------------------------- */
5337
5338 struct ElementActionInfo element_action_info[NUM_ACTIONS + 1 + 1] =
5339 {
5340   { ".[DEFAULT]",               ACTION_DEFAULT,                 TRUE    },
5341   { ".waiting",                 ACTION_WAITING,                 TRUE    },
5342   { ".falling",                 ACTION_FALLING,                 TRUE    },
5343   { ".moving",                  ACTION_MOVING,                  TRUE    },
5344   { ".digging",                 ACTION_DIGGING,                 FALSE   },
5345   { ".snapping",                ACTION_SNAPPING,                FALSE   },
5346   { ".collecting",              ACTION_COLLECTING,              FALSE   },
5347   { ".dropping",                ACTION_DROPPING,                FALSE   },
5348   { ".pushing",                 ACTION_PUSHING,                 FALSE   },
5349   { ".walking",                 ACTION_WALKING,                 FALSE   },
5350   { ".passing",                 ACTION_PASSING,                 FALSE   },
5351   { ".impact",                  ACTION_IMPACT,                  FALSE   },
5352   { ".breaking",                ACTION_BREAKING,                FALSE   },
5353   { ".activating",              ACTION_ACTIVATING,              FALSE   },
5354   { ".deactivating",            ACTION_DEACTIVATING,            FALSE   },
5355   { ".opening",                 ACTION_OPENING,                 FALSE   },
5356   { ".closing",                 ACTION_CLOSING,                 FALSE   },
5357   { ".attacking",               ACTION_ATTACKING,               TRUE    },
5358   { ".growing",                 ACTION_GROWING,                 TRUE    },
5359   { ".shrinking",               ACTION_SHRINKING,               FALSE   },
5360   { ".active",                  ACTION_ACTIVE,                  TRUE    },
5361   { ".filling",                 ACTION_FILLING,                 FALSE   },
5362   { ".emptying",                ACTION_EMPTYING,                FALSE   },
5363   { ".changing",                ACTION_CHANGING,                FALSE   },
5364   { ".exploding",               ACTION_EXPLODING,               FALSE   },
5365   { ".boring",                  ACTION_BORING,                  FALSE   },
5366   { ".boring[1]",               ACTION_BORING_1,                FALSE   },
5367   { ".boring[2]",               ACTION_BORING_2,                FALSE   },
5368   { ".boring[3]",               ACTION_BORING_3,                FALSE   },
5369   { ".boring[4]",               ACTION_BORING_4,                FALSE   },
5370   { ".boring[5]",               ACTION_BORING_5,                FALSE   },
5371   { ".boring[6]",               ACTION_BORING_6,                FALSE   },
5372   { ".boring[7]",               ACTION_BORING_7,                FALSE   },
5373   { ".boring[8]",               ACTION_BORING_8,                FALSE   },
5374   { ".boring[9]",               ACTION_BORING_9,                FALSE   },
5375   { ".boring[10]",              ACTION_BORING_10,               FALSE   },
5376   { ".sleeping",                ACTION_SLEEPING,                FALSE   },
5377   { ".sleeping[1]",             ACTION_SLEEPING_1,              FALSE   },
5378   { ".sleeping[2]",             ACTION_SLEEPING_2,              FALSE   },
5379   { ".sleeping[3]",             ACTION_SLEEPING_3,              FALSE   },
5380   { ".awakening",               ACTION_AWAKENING,               FALSE   },
5381   { ".dying",                   ACTION_DYING,                   FALSE   },
5382   { ".turning",                 ACTION_TURNING,                 FALSE   },
5383   { ".turning_from_left",       ACTION_TURNING_FROM_LEFT,       FALSE   },
5384   { ".turning_from_right",      ACTION_TURNING_FROM_RIGHT,      FALSE   },
5385   { ".turning_from_up",         ACTION_TURNING_FROM_UP,         FALSE   },
5386   { ".turning_from_down",       ACTION_TURNING_FROM_DOWN,       FALSE   },
5387   { ".smashed_by_rock",         ACTION_SMASHED_BY_ROCK,         FALSE   },
5388   { ".smashed_by_spring",       ACTION_SMASHED_BY_SPRING,       FALSE   },
5389   { ".eating",                  ACTION_EATING,                  FALSE   },
5390   { ".twinkling",               ACTION_TWINKLING,               FALSE   },
5391   { ".splashing",               ACTION_SPLASHING,               FALSE   },
5392   { ".page[1]",                 ACTION_PAGE_1,                  FALSE   },
5393   { ".page[2]",                 ACTION_PAGE_2,                  FALSE   },
5394   { ".page[3]",                 ACTION_PAGE_3,                  FALSE   },
5395   { ".page[4]",                 ACTION_PAGE_4,                  FALSE   },
5396   { ".page[5]",                 ACTION_PAGE_5,                  FALSE   },
5397   { ".page[6]",                 ACTION_PAGE_6,                  FALSE   },
5398   { ".page[7]",                 ACTION_PAGE_7,                  FALSE   },
5399   { ".page[8]",                 ACTION_PAGE_8,                  FALSE   },
5400   { ".page[9]",                 ACTION_PAGE_9,                  FALSE   },
5401   { ".page[10]",                ACTION_PAGE_10,                 FALSE   },
5402   { ".page[11]",                ACTION_PAGE_11,                 FALSE   },
5403   { ".page[12]",                ACTION_PAGE_12,                 FALSE   },
5404   { ".page[13]",                ACTION_PAGE_13,                 FALSE   },
5405   { ".page[14]",                ACTION_PAGE_14,                 FALSE   },
5406   { ".page[15]",                ACTION_PAGE_15,                 FALSE   },
5407   { ".page[16]",                ACTION_PAGE_16,                 FALSE   },
5408   { ".page[17]",                ACTION_PAGE_17,                 FALSE   },
5409   { ".page[18]",                ACTION_PAGE_18,                 FALSE   },
5410   { ".page[19]",                ACTION_PAGE_19,                 FALSE   },
5411   { ".page[20]",                ACTION_PAGE_20,                 FALSE   },
5412   { ".page[21]",                ACTION_PAGE_21,                 FALSE   },
5413   { ".page[22]",                ACTION_PAGE_22,                 FALSE   },
5414   { ".page[23]",                ACTION_PAGE_23,                 FALSE   },
5415   { ".page[24]",                ACTION_PAGE_24,                 FALSE   },
5416   { ".page[25]",                ACTION_PAGE_25,                 FALSE   },
5417   { ".page[26]",                ACTION_PAGE_26,                 FALSE   },
5418   { ".page[27]",                ACTION_PAGE_27,                 FALSE   },
5419   { ".page[28]",                ACTION_PAGE_28,                 FALSE   },
5420   { ".page[29]",                ACTION_PAGE_29,                 FALSE   },
5421   { ".page[30]",                ACTION_PAGE_30,                 FALSE   },
5422   { ".page[31]",                ACTION_PAGE_31,                 FALSE   },
5423   { ".page[32]",                ACTION_PAGE_32,                 FALSE   },
5424   { ".other",                   ACTION_OTHER,                   FALSE   },
5425
5426   /* empty suffix always matches -- check as last entry in InitSoundInfo() */
5427   { "",                         ACTION_DEFAULT,                 TRUE    },
5428
5429   { NULL,                       0,                              0       }
5430 };
5431
5432 struct ElementDirectionInfo element_direction_info[NUM_DIRECTIONS_FULL + 1] =
5433 {
5434   { ".left",                    MV_BIT_LEFT                             },
5435   { ".right",                   MV_BIT_RIGHT                            },
5436   { ".up",                      MV_BIT_UP                               },
5437   { ".down",                    MV_BIT_DOWN                             },
5438   { ".upleft",                  MV_BIT_UP                               },
5439   { ".upright",                 MV_BIT_RIGHT                            },
5440   { ".downleft",                MV_BIT_LEFT                             },
5441   { ".downright",               MV_BIT_DOWN                             },
5442
5443   { NULL,                       0                                       }
5444 };
5445
5446 struct SpecialSuffixInfo special_suffix_info[NUM_SPECIAL_GFX_ARGS + 1 + 1] =
5447 {
5448   { ".[DEFAULT]",               GFX_SPECIAL_ARG_DEFAULT,                },
5449   { ".LOADING",                 GFX_SPECIAL_ARG_LOADING,                },
5450   { ".TITLE_INITIAL",           GFX_SPECIAL_ARG_TITLE_INITIAL,          },
5451   { ".TITLE",                   GFX_SPECIAL_ARG_TITLE,                  },
5452   { ".MAIN",                    GFX_SPECIAL_ARG_MAIN,                   },
5453   { ".LEVELS",                  GFX_SPECIAL_ARG_LEVELS                  },
5454   { ".SCORES",                  GFX_SPECIAL_ARG_SCORES,                 },
5455   { ".EDITOR",                  GFX_SPECIAL_ARG_EDITOR,                 },
5456   { ".INFO",                    GFX_SPECIAL_ARG_INFO,                   },
5457   { ".SETUP",                   GFX_SPECIAL_ARG_SETUP,                  },
5458   { ".PLAYING",                 GFX_SPECIAL_ARG_PLAYING,                },
5459   { ".DOOR",                    GFX_SPECIAL_ARG_DOOR,                   },
5460   { ".PANEL",                   GFX_SPECIAL_ARG_PANEL,                  },
5461   { ".PREVIEW",                 GFX_SPECIAL_ARG_PREVIEW,                },
5462   { ".CRUMBLED",                GFX_SPECIAL_ARG_CRUMBLED,               },
5463
5464   /* empty suffix always matches -- check as last entry in InitMusicInfo() */
5465   { "",                         GFX_SPECIAL_ARG_DEFAULT,                },
5466
5467   { NULL,                       0,                                      }
5468 };
5469
5470 #include "conf_var.c"   /* include auto-generated data structure definitions */
5471
5472
5473 /* ------------------------------------------------------------------------- */
5474 /* font definitions                                                          */
5475 /* ------------------------------------------------------------------------- */
5476
5477 /* Important: When one entry is a prefix of another entry, the longer entry
5478    must come first, because the dynamic configuration does prefix matching!
5479    (These definitions must match the corresponding definitions in "main.h"!) */
5480
5481 struct FontInfo font_info[NUM_FONTS + 1] =
5482 {
5483   { "font.initial_1"            },
5484   { "font.initial_2"            },
5485   { "font.initial_3"            },
5486   { "font.initial_4"            },
5487   { "font.title_1"              },
5488   { "font.title_2"              },
5489   { "font.menu_1.active"        },
5490   { "font.menu_2.active"        },
5491   { "font.menu_1"               },
5492   { "font.menu_2"               },
5493   { "font.text_1.active"        },
5494   { "font.text_2.active"        },
5495   { "font.text_3.active"        },
5496   { "font.text_4.active"        },
5497   { "font.text_1"               },
5498   { "font.text_2"               },
5499   { "font.text_3"               },
5500   { "font.text_4"               },
5501   { "font.envelope_1"           },
5502   { "font.envelope_2"           },
5503   { "font.envelope_3"           },
5504   { "font.envelope_4"           },
5505   { "font.input_1.active"       },
5506   { "font.input_2.active"       },
5507   { "font.input_1"              },
5508   { "font.input_2"              },
5509   { "font.option_off"           },
5510   { "font.option_on"            },
5511   { "font.value_1"              },
5512   { "font.value_2"              },
5513   { "font.value_old"            },
5514   { "font.level_number.active"  },
5515   { "font.level_number"         },
5516   { "font.tape_recorder"        },
5517   { "font.game_info"            },
5518   { "font.info.elements"        },
5519   { "font.info.levelset"        },
5520
5521   { NULL                        }
5522 };
5523
5524
5525 /* ------------------------------------------------------------------------- */
5526 /* music token prefix definitions                                            */
5527 /* ------------------------------------------------------------------------- */
5528
5529 struct MusicPrefixInfo music_prefix_info[NUM_MUSIC_PREFIXES + 1] =
5530 {
5531   { "background",               TRUE    },
5532
5533   { NULL,                       0       }
5534 };
5535
5536
5537 /* ========================================================================= */
5538 /* main()                                                                    */
5539 /* ========================================================================= */
5540
5541 static void print_usage()
5542 {
5543   printf("\n"
5544          "Usage: %s [OPTION]... [HOSTNAME [PORT]]\n"
5545          "\n"
5546          "Options:\n"
5547          "  -d, --display HOSTNAME[:SCREEN]  specify X server display\n"
5548          "  -b, --basepath DIRECTORY         alternative base DIRECTORY\n"
5549          "  -l, --level DIRECTORY            alternative level DIRECTORY\n"
5550          "  -g, --graphics DIRECTORY         alternative graphics DIRECTORY\n"
5551          "  -s, --sounds DIRECTORY           alternative sounds DIRECTORY\n"
5552          "  -m, --music DIRECTORY            alternative music DIRECTORY\n"
5553          "  -n, --network                    network multiplayer game\n"
5554          "      --serveronly                 only start network server\n"
5555          "  -v, --verbose                    verbose mode\n"
5556          "      --debug                      display debugging information\n"
5557          "      --debug-x11-sync             enable X11 synchronous mode\n"
5558          "  -e, --execute COMMAND            execute batch COMMAND\n"
5559          "\n"
5560          "Valid commands for '--execute' option:\n"
5561          "  \"print graphicsinfo.conf\"        print default graphics config\n"
5562          "  \"print soundsinfo.conf\"          print default sounds config\n"
5563          "  \"print musicinfo.conf\"           print default music config\n"
5564          "  \"print editorsetup.conf\"         print default editor config\n"
5565          "  \"print helpanim.conf\"            print default helpanim config\n"
5566          "  \"print helptext.conf\"            print default helptext config\n"
5567          "  \"dump level FILE\"                dump level data from FILE\n"
5568          "  \"dump tape FILE\"                 dump tape data from FILE\n"
5569          "  \"autoplay LEVELDIR [NR ...]\"     play level tapes for LEVELDIR\n"
5570          "  \"convert LEVELDIR [NR]\"          convert levels in LEVELDIR\n"
5571          "  \"create images DIRECTORY\"        write BMP images to DIRECTORY\n"
5572          "\n",
5573          program.command_basename);
5574 }
5575
5576 int main(int argc, char *argv[])
5577 {
5578   char * window_title_string = getWindowTitleString();
5579
5580   InitProgramInfo(argv[0], USERDATA_DIRECTORY, USERDATA_DIRECTORY_UNIX,
5581                   PROGRAM_TITLE_STRING, window_title_string, ICON_TITLE_STRING,
5582                   X11_ICON_FILENAME, X11_ICONMASK_FILENAME, SDL_ICON_FILENAME,
5583                   MSDOS_POINTER_FILENAME,
5584                   COOKIE_PREFIX, FILENAME_PREFIX, GAME_VERSION_ACTUAL);
5585
5586   InitExitFunction(CloseAllAndExit);
5587   InitPlatformDependentStuff();
5588
5589   GetOptions(argv, print_usage);
5590   OpenAll();
5591
5592   EventLoop();
5593   CloseAllAndExit(0);
5594
5595   return 0;     /* to keep compilers happy */
5596 }