X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Finit.c;h=25372817c65617fc2fa08f9cd8ed2fa11467a208;hb=2d603d06ca862f3ca0721b66f62da188faf866c4;hp=69008db67a887ed0e384734734f3c99ca2f9c24f;hpb=2c03953e712c427c94c02cdb1e15cd9e99e9e116;p=rocksndiamonds.git diff --git a/src/init.c b/src/init.c index 69008db6..25372817 100644 --- a/src/init.c +++ b/src/init.c @@ -44,15 +44,25 @@ static void InitSetup(void); static void InitPlayerInfo(void); static void InitLevelInfo(void); static void InitArtworkInfo(void); +static void InitLevelArtworkInfo(void); static void InitNetworkServer(void); +static void InitMixer(void); static void InitSound(void); static void InitGfx(void); static void InitGfxBackground(void); static void InitGadgets(void); static void InitElementProperties(void); +static void Execute_Debug_Command(char *); void OpenAll(void) { + if (options.debug_command) + { + Execute_Debug_Command(options.debug_command); + + exit(0); + } + if (options.serveronly) { #if defined(PLATFORM_UNIX) @@ -74,7 +84,7 @@ void OpenAll(void) InitArtworkInfo(); /* needed before loading gfx, sound & music */ InitCounter(); - InitSound(); + InitMixer(); InitJoysticks(); InitRND(NEW_RANDOMIZE); @@ -88,7 +98,9 @@ void OpenAll(void) InitElementProperties(); /* initializes IS_CHAR() for el2gfx() */ InitLevelInfo(); + InitLevelArtworkInfo(); InitGadgets(); /* needs to know number of level series */ + InitSound(); /* needs to know current level directory */ InitGfxBackground(); InitToons(); @@ -128,6 +140,11 @@ void InitArtworkInfo() LoadArtworkInfo(); } +void InitLevelArtworkInfo() +{ + LoadLevelArtworkInfo(); +} + void InitNetworkServer() { #if defined(PLATFORM_UNIX) @@ -151,39 +168,33 @@ void InitNetworkServer() #endif } -void InitSound() +static void InitMixer() { - int i; - OpenAudio(); + InitSoundList(sound_effects, NUM_SOUND_EFFECTS); - for(i=0; iname); + InitReloadMusic(artwork.mus_current->name); - StartSoundserver(); + /* initialize sound effect lookup table for element actions */ + InitGameSound(); } -void InitTileClipmasks() +static void InitTileClipmasks() { #if defined(TARGET_X11) - GC copy_clipmask_gc; XGCValues clip_gc_values; unsigned long clip_gc_valuemask; #if defined(TARGET_X11_NATIVE) + GC copy_clipmask_gc; + static struct { int start; @@ -326,7 +337,7 @@ void FreeTileClipmasks() for(i=0; istored_clip_gc) + if (pix[i] != NULL && pix[i]->stored_clip_gc) { XFreeGC(display, pix[i]->stored_clip_gc); pix[i]->stored_clip_gc = None; @@ -361,11 +372,8 @@ void InitGfx() DrawInitText(WINDOW_TITLE_STRING, 20, FC_YELLOW); DrawInitText(WINDOW_SUBTITLE_STRING, 50, FC_RED); -#if defined(PLATFORM_MSDOS) - DrawInitText(PROGRAM_DOS_PORT_STRING, 210, FC_BLUE); - rest(200); -#endif - DrawInitText("Loading graphics:",120,FC_GREEN); + + DrawInitText("Loading graphics:", 120, FC_GREEN); for(i=0; iname) + static char *leveldir_current_name = NULL; + static boolean last_override_level_graphics = FALSE; + static boolean last_override_level_sounds = FALSE; + static boolean last_override_level_music = FALSE; + + if (leveldir_current_name != leveldir_current->name) + { + /* force reload of custom artwork after new level series was selected */ + artwork.graphics_set_current_name = NULL; + artwork.sounds_set_current_name = NULL; + artwork.music_set_current_name = NULL; + + leveldir_current_name = leveldir_current->name; + } + + if (artwork.graphics_set_current_name != artwork.gfx_current->name || + last_override_level_graphics != setup.override_level_graphics) { int i; @@ -421,21 +445,26 @@ void ReloadCustomArtwork() SetDoorState(DOOR_OPEN_1 | DOOR_CLOSE_2); - artwork.graphics_set_current = artwork.gfx_current->name; + artwork.graphics_set_current_name = artwork.gfx_current->name; + last_override_level_graphics = setup.override_level_graphics; } - if (artwork.sounds_set_current != artwork.snd_current->name) + if (artwork.sounds_set_current_name != artwork.snd_current->name || + last_override_level_sounds != setup.override_level_sounds) { InitReloadSounds(artwork.snd_current->name); - artwork.sounds_set_current = artwork.snd_current->name; + artwork.sounds_set_current_name = artwork.snd_current->name; + last_override_level_sounds = setup.override_level_sounds; } - if (artwork.music_set_current != artwork.mus_current->name) + if (artwork.music_set_current_name != artwork.mus_current->name || + last_override_level_music != setup.override_level_music) { InitReloadMusic(artwork.mus_current->name); - artwork.music_set_current = artwork.mus_current->name; + artwork.music_set_current_name = artwork.mus_current->name; + last_override_level_music = setup.override_level_music; } } @@ -1597,13 +1626,31 @@ void InitElementProperties() Elementeigenschaften1[i] |= (EP_BIT_CHAR | EP_BIT_INACTIVE); } +void Execute_Debug_Command(char *command) +{ + if (strcmp(command, "create soundinfo.conf") == 0) + { + int i; + + printf("# You can configure additional/alternative sound effects here\n"); + printf("# (The sounds below are default and therefore commented out.)\n"); + printf("\n"); + + for (i=0; i