added options for alignment of selection lists on setup sub-screens
[rocksndiamonds.git] / src / conf_mus.c
1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // conf_mus.c
10 // ============================================================================
11
12 #include "libgame/libgame.h"
13 #include "main.h"
14
15
16 // List values that are not defined in the configuration file are set to
17 // reliable default values. If that value is MUS_ARG_UNDEFINED, it will
18 // be dynamically determined, using some of the other list values.
19
20 struct ConfigTypeInfo music_config_suffix[] =
21 {
22   { ".mode_loop",                       ARG_UNDEFINED,  TYPE_BOOLEAN    },
23
24   { NULL,                               NULL,           0               }
25 };
26
27 struct ConfigInfo music_config[] =
28 {
29   { "background",                       UNDEFINED_FILENAME              },
30   { "background.TITLE_INITIAL",         UNDEFINED_FILENAME              },
31   { "background.TITLE",                 UNDEFINED_FILENAME              },
32   { "background.MAIN",                  UNDEFINED_FILENAME              },
33   { "background.LEVELS",                UNDEFINED_FILENAME              },
34   { "background.LEVELNR",               UNDEFINED_FILENAME              },
35   { "background.SCORES",                UNDEFINED_FILENAME              },
36   { "background.EDITOR",                UNDEFINED_FILENAME              },
37   { "background.INFO",                  "rhythmloop.wav"                },
38   { "background.SETUP",                 UNDEFINED_FILENAME              },
39
40   { "background.titlescreen_initial_1", UNDEFINED_FILENAME              },
41   { "background.titlescreen_initial_2", UNDEFINED_FILENAME              },
42   { "background.titlescreen_initial_3", UNDEFINED_FILENAME              },
43   { "background.titlescreen_initial_4", UNDEFINED_FILENAME              },
44   { "background.titlescreen_initial_5", UNDEFINED_FILENAME              },
45   { "background.titlescreen_1",         UNDEFINED_FILENAME              },
46   { "background.titlescreen_2",         UNDEFINED_FILENAME              },
47   { "background.titlescreen_3",         UNDEFINED_FILENAME              },
48   { "background.titlescreen_4",         UNDEFINED_FILENAME              },
49   { "background.titlescreen_5",         UNDEFINED_FILENAME              },
50   { "background.titlemessage_initial_1",UNDEFINED_FILENAME              },
51   { "background.titlemessage_initial_2",UNDEFINED_FILENAME              },
52   { "background.titlemessage_initial_3",UNDEFINED_FILENAME              },
53   { "background.titlemessage_initial_4",UNDEFINED_FILENAME              },
54   { "background.titlemessage_initial_5",UNDEFINED_FILENAME              },
55   { "background.titlemessage_1",        UNDEFINED_FILENAME              },
56   { "background.titlemessage_2",        UNDEFINED_FILENAME              },
57   { "background.titlemessage_3",        UNDEFINED_FILENAME              },
58   { "background.titlemessage_4",        UNDEFINED_FILENAME              },
59   { "background.titlemessage_5",        UNDEFINED_FILENAME              },
60
61   // there is no definition for "background.PLAYING", because this would
62   // prevent selecting music from music directory that is not defined in
63   // "musicinfo.conf", when no default music is defined here
64
65   { NULL,                               NULL                            }
66 };