X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Fconf_snd.c;h=854fe05cad9d875887e2a591899c85ff28b89316;hp=799ab6ca89e8e5164dae89fae7ebeca4552ce271;hb=55961e9ba1fe67292a41fdcca0056b43bf960a93;hpb=ffda824157292e928e191ac15981652ad745e7c4 diff --git a/src/conf_snd.c b/src/conf_snd.c index 799ab6ca..854fe05c 100644 --- a/src/conf_snd.c +++ b/src/conf_snd.c @@ -1,260 +1,344 @@ -/*********************************************************** -* Rocks'n'Diamonds -- McDuffin Strikes Back! * -*----------------------------------------------------------* -* (c) 1995-2002 Artsoft Entertainment * -* Holger Schemel * -* Detmolder Strasse 189 * -* 33604 Bielefeld * -* Germany * -* e-mail: info@artsoft.org * -*----------------------------------------------------------* -* conf_snd.c * -***********************************************************/ +// ============================================================================ +// Rocks'n'Diamonds - McDuffin Strikes Back! +// ---------------------------------------------------------------------------- +// (c) 1995-2014 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// http://www.artsoft.org/ +// ---------------------------------------------------------------------------- +// conf_snd.c +// ============================================================================ #include "libgame/libgame.h" #include "main.h" /* List values that are not defined in the configuration file are set to - reliable default values. If that value is GFX_ARG_UNDEFINED, it will + reliable default values. If that value is SND_ARG_UNDEFINED, it will be dynamically determined, using some of the other list values. */ -struct ConfigInfo sound_config_suffix[] = +struct ConfigTypeInfo sound_config_suffix[] = { - { ".mode_loop", ARG_UNDEFINED, TYPE_BOOLEAN }, + { ".mode_loop", ARG_UNDEFINED, TYPE_BOOLEAN }, + { ".volume", "100", TYPE_INTEGER }, + { ".priority", "0", TYPE_INTEGER }, - { NULL, NULL, 0 } + { NULL, NULL, 0 } }; struct ConfigInfo sound_config[] = { /* some default sounds */ - { "[default].digging", "schlurf.wav" }, - { "[default].collecting", "pong.wav" }, - { "[default].snapping", "pong.wav" }, - { "[default].pushing", "pusch.wav" }, - { "[default].impact", "klopf.wav" }, - { "[default].passing", "gate.wav" }, - { "[default].dying", "autsch.wav" }, - { "[default].exploding", "roaaar.wav" }, - { "[sp_default].exploding", "booom.wav" }, + { "[default].digging", "schlurf.wav" }, + { "[default].collecting", "pong.wav" }, + { "[default].snapping", "pong.wav" }, + { "[default].pushing", "pusch.wav" }, + { "[default].impact", "klopf.wav" }, + { "[default].walking", "empty.wav" }, + { "[default].passing", "gate.wav" }, + { "[default].dying", "autsch.wav" }, + { "[default].exploding", "roaaar.wav" }, + { "[default].hitting", "kink.wav" }, + { "[sp_default].exploding", "booom.wav" }, + { "[mm_default].exploding", "kabumm.wav" }, /* sounds for Boulder Dash style elements and actions */ - { "bd_diamond.collecting", "pong.wav" }, - { "bd_diamond.impact", "pling.wav" }, - { "bd_rock.pushing", "pusch.wav" }, - { "bd_rock.impact", "klopf.wav" }, - { "bd_magic_wall.activating", "quirk.wav" }, - { "bd_magic_wall.active", "miep.wav" }, - { "bd_magic_wall.filling", "quirk.wav" }, - { "bd_amoeba.waiting", UNDEFINED_FILENAME }, - { "bd_amoeba.growing", "amoebe.wav" }, - { "bd_amoeba.turning_to_gem", "pling.wav" }, - { "bd_amoeba.turning_to_rock", "klopf.wav" }, - { "bd_butterfly.moving", "klapper.wav" }, - { "bd_butterfly.waiting", "klapper.wav" }, - { "bd_firefly.moving", "roehr.wav" }, - { "bd_firefly.waiting", "roehr.wav" }, + { "bd_diamond.collecting", "pong.wav" }, + { "bd_diamond.impact", "pling.wav" }, + { "bd_rock.pushing", "pusch.wav" }, + { "bd_rock.impact", "klopf.wav" }, + { "bd_magic_wall.activating", "quirk.wav" }, + { "bd_magic_wall.active", "miep.wav" }, + { "bd_magic_wall.filling", "quirk.wav" }, + { "bd_amoeba.waiting", UNDEFINED_FILENAME }, + { "bd_amoeba.growing", "amoebe.wav" }, + { "bd_amoeba.turning_to_gem", "pling.wav" }, + { "bd_amoeba.turning_to_rock", "klopf.wav" }, + { "bd_butterfly.moving", "klapper.wav" }, + { "bd_butterfly.waiting", "klapper.wav" }, + { "bd_firefly.moving", "roehr.wav" }, + { "bd_firefly.waiting", "roehr.wav" }, /* sounds for Supaplex style elements and actions */ - { "sp_base.digging", "base.wav" }, - { "sp_buggy_base.digging", "base.wav" }, - { "sp_buggy_base.active", "bug.wav" }, - { "sp_infotron.collecting", "infotron.wav" }, - { "sp_infotron.impact", "pling.wav" }, - { "sp_zonk.pushing", "zonkpush.wav" }, - { "sp_zonk.impact", "zonkdown.wav" }, - { "sp_disk_red.collecting", "infotron.wav" }, - { "sp_disk_orange.pushing", "zonkpush.wav" }, - { "sp_disk_yellow.pushing", "pusch.wav" }, - { "[sp_port].passing", "gate.wav" }, - { "[sp_exit].passing", "exit.wav" }, - { "[sp_exit].opening", UNDEFINED_FILENAME }, - { "sp_sniksnak.moving", UNDEFINED_FILENAME }, - { "sp_sniksnak.waiting", UNDEFINED_FILENAME }, - { "sp_electron.moving", UNDEFINED_FILENAME }, - { "sp_electron.waiting", UNDEFINED_FILENAME }, - { "sp_terminal.activating", UNDEFINED_FILENAME }, - { "sp_terminal.active", UNDEFINED_FILENAME }, + { "sp_base.digging", "base.wav" }, + { "sp_buggy_base.digging", "base.wav" }, + { "sp_buggy_base.active", "bug.wav" }, + { "sp_infotron.collecting", "infotron.wav" }, + { "sp_infotron.impact", "pling.wav" }, + { "sp_zonk.pushing", "zonkpush.wav" }, + { "sp_zonk.impact", "zonkdown.wav" }, + { "sp_disk_red.collecting", "infotron.wav" }, + { "sp_disk_orange.pushing", "zonkpush.wav" }, + { "sp_disk_yellow.pushing", "pusch.wav" }, + { "[sp_port].passing", "gate.wav" }, + { "[sp_exit].passing", "exit.wav" }, + { "[sp_exit].opening", UNDEFINED_FILENAME }, + { "[sp_exit].closing", UNDEFINED_FILENAME }, + { "sp_sniksnak.moving", UNDEFINED_FILENAME }, + { "sp_sniksnak.waiting", UNDEFINED_FILENAME }, + { "sp_electron.moving", UNDEFINED_FILENAME }, + { "sp_electron.waiting", UNDEFINED_FILENAME }, + { "sp_terminal.activating", UNDEFINED_FILENAME }, + { "sp_terminal.active", UNDEFINED_FILENAME }, /* sounds for Sokoban style elements and actions */ - { "[sokoban].pushing", "pusch.wav" }, - { "[sokoban].filling", "deng.wav" }, - { "[sokoban].emptying", UNDEFINED_FILENAME }, + { "[sokoban].pushing", "pusch.wav" }, + { "[sokoban].filling", "deng.wav" }, + { "[sokoban].emptying", UNDEFINED_FILENAME }, /* sounds for Emerald Mine style elements and actions */ - { "[player].moving", "empty.wav" }, - { "[player].moving.mode_loop", "false" }, - { "sand.digging", "schlurf.wav" }, - { "emerald.collecting", "pong.wav" }, - { "emerald.impact", "pling.wav" }, - { "diamond.collecting", "pong.wav" }, - { "diamond.impact", "pling.wav" }, - { "diamond.breaking", "quirk.wav" }, - { "rock.pushing", "pusch.wav" }, - { "rock.impact", "klopf.wav" }, - { "bomb.pushing", "pusch.wav" }, - { "nut.pushing", "knurk.wav" }, - { "nut.breaking", "knack.wav" }, - { "nut.impact", "klumpf.wav" }, - { "[dynamite].collecting", "pong.wav" }, - { "[dynamite].dropping", "deng.wav" }, - { "[dynamite].active", "zisch.wav" }, - { "[key].collecting", "pong.wav" }, - { "[gate].passing", "gate.wav" }, - { "bug.moving", "klapper.wav" }, - { "bug.waiting", "klapper.wav" }, - { "spaceship.moving", "roehr.wav" }, - { "spaceship.waiting", "roehr.wav" }, - { "yamyam.moving", UNDEFINED_FILENAME }, - { "yamyam.waiting", "njam.wav" }, - { "yamyam.digging", UNDEFINED_FILENAME }, - { "robot.moving", "schlurf.wav" }, - { "robot.moving.mode_loop", "false" }, - { "robot.waiting", UNDEFINED_FILENAME }, - { "robot_wheel.activating", "deng.wav" }, - { "robot_wheel.active", "miep.wav" }, - { "magic_wall.activating", "quirk.wav" }, - { "magic_wall.active", "miep.wav" }, - { "magic_wall.filling", "quirk.wav" }, - { "[amoeba].waiting", UNDEFINED_FILENAME }, - { "[amoeba].growing", "amoebe.wav" }, - { "[amoeba].dropping", UNDEFINED_FILENAME }, - { "acid.splashing", "blurb.wav" }, - { "[quicksand].filling", UNDEFINED_FILENAME }, - { "[quicksand].emptying", UNDEFINED_FILENAME }, - { "[exit].opening", "oeffnen.wav" }, - { "[exit].passing", "buing.wav" }, - { "penguin.passing", "buing.wav" }, + { "[player].moving", "empty.wav" }, + { "[player].moving.mode_loop", "false" }, + { "sand.digging", "schlurf.wav" }, + { "[emerald].collecting", "pong.wav" }, + { "[emerald].impact", "pling.wav" }, + { "diamond.collecting", "pong.wav" }, + { "diamond.impact", "pling.wav" }, + { "diamond.breaking", "quirk.wav" }, + { "rock.pushing", "pusch.wav" }, + { "rock.impact", "klopf.wav" }, + { "bomb.pushing", "pusch.wav" }, + { "nut.pushing", "knurk.wav" }, + { "nut.breaking", "knack.wav" }, + { "nut.impact", "klumpf.wav" }, + { "[dynamite].collecting", "pong.wav" }, + { "[dynamite].dropping", "deng.wav" }, + { "[dynamite].active", "zisch.wav" }, + { "[key].collecting", "pong.wav" }, + { "[gate].passing", "gate.wav" }, + { "bug.moving", "klapper.wav" }, + { "bug.waiting", "klapper.wav" }, + { "spaceship.moving", "roehr.wav" }, + { "spaceship.waiting", "roehr.wav" }, + { "yamyam.moving", UNDEFINED_FILENAME }, + { "yamyam.waiting", "njam.wav" }, + { "yamyam.digging", "njam.wav" }, + { "robot.moving", "schlurf.wav" }, + { "robot.moving.mode_loop", "false" }, + { "robot.waiting", UNDEFINED_FILENAME }, + { "robot_wheel.activating", "deng.wav" }, + { "robot_wheel.active", "miep.wav" }, + { "magic_wall.activating", "quirk.wav" }, + { "magic_wall.active", "miep.wav" }, + { "magic_wall.filling", "quirk.wav" }, + { "dc_magic_wall.activating", "quirk.wav" }, + { "dc_magic_wall.active", "miep.wav" }, + { "dc_magic_wall.filling", "quirk.wav" }, + { "[amoeba].waiting", UNDEFINED_FILENAME }, + { "[amoeba].growing", "amoebe.wav" }, + { "[amoeba].dropping", UNDEFINED_FILENAME }, + { "acid.splashing", "blurb.wav" }, + { "[quicksand].filling", UNDEFINED_FILENAME }, + { "[quicksand].emptying", UNDEFINED_FILENAME }, + { "[exit].opening", "oeffnen.wav" }, + { "[exit].closing", "oeffnen.wav" }, + { "[exit].passing", "buing.wav" }, + { "[steel_exit].opening", "oeffnen.wav" }, + { "[steel_exit].closing", "oeffnen.wav" }, + { "[steel_exit].passing", "buing.wav" }, + { "[em_exit].opening", "gong.wav" }, + { "[em_exit].closing", UNDEFINED_FILENAME }, + { "[em_exit].passing", "buing.wav" }, + { "[em_steel_exit].opening", "gong.wav" }, + { "[em_steel_exit].closing", UNDEFINED_FILENAME }, + { "[em_steel_exit].passing", "buing.wav" }, + { "penguin.passing", "buing.wav" }, /* sounds for Emerald Mine Club style elements and actions */ - { "balloon.moving", UNDEFINED_FILENAME }, - { "balloon.waiting", UNDEFINED_FILENAME }, - { "balloon.pushing", "schlurf.wav" }, - { "[balloon_switch].activating", UNDEFINED_FILENAME }, - { "spring.moving", UNDEFINED_FILENAME }, - { "spring.pushing", "pusch.wav" }, - { "spring.impact", "klopf.wav" }, - { "[wall].growing", UNDEFINED_FILENAME }, + { "balloon.moving", UNDEFINED_FILENAME }, + { "balloon.waiting", UNDEFINED_FILENAME }, + { "balloon.pushing", "schlurf.wav" }, + { "[balloon_switch].activating", UNDEFINED_FILENAME }, + { "spring.moving", UNDEFINED_FILENAME }, + { "spring.pushing", "pusch.wav" }, + { "spring.impact", "klopf.wav" }, + { "[wall].growing", UNDEFINED_FILENAME }, + { "emc_android.pushing", "pusch.wav" }, + { "emc_android.moving", "roehr.wav" }, + { "emc_android.moving.mode_loop", "false" }, + { "emc_android.dropping", "deng.wav" }, + { "emc_magic_ball.dropping", "deng.wav" }, /* sounds for Diamond Caves style elements and actions */ - { "pearl.collecting", "pong.wav" }, - { "pearl.breaking", "knack.wav" }, - { "pearl.impact", "pling.wav" }, - { "crystal.collecting", "pong.wav" }, - { "crystal.impact", "pling.wav" }, - { "envelope.collecting", "pong.wav" }, - { "invisible_sand.digging", "schlurf.wav" }, - { "shield_normal.collecting", "pong.wav" }, - { "shield_normal.active", UNDEFINED_FILENAME }, - { "shield_deadly.collecting", "pong.wav" }, - { "shield_deadly.active", UNDEFINED_FILENAME }, - { "extra_time.collecting", "gong.wav" }, - { "mole.moving", UNDEFINED_FILENAME }, - { "mole.waiting", UNDEFINED_FILENAME }, - { "mole.digging", "blurb.wav" }, - { "[switchgate_switch].activating", UNDEFINED_FILENAME }, - { "[switchgate].opening", "oeffnen.wav" }, - { "[switchgate].closing", "oeffnen.wav" }, - { "[switchgate].passing", "gate.wav" }, - { "timegate_switch.activating", "deng.wav" }, - { "timegate_switch.active", "miep.wav" }, - { "timegate_switch.deactivating", UNDEFINED_FILENAME }, - { "timegate.opening", "oeffnen.wav" }, - { "[timegate].closing", "oeffnen.wav" }, - { "[timegate].passing", "gate.wav" }, - { "[conveyor_belt_switch].activating",UNDEFINED_FILENAME }, - { "[conveyor_belt].active", UNDEFINED_FILENAME }, - { "[conveyor_belt_switch].deactivating",UNDEFINED_FILENAME }, - { "light_switch.activating", UNDEFINED_FILENAME }, - { "light_switch.deactivating", UNDEFINED_FILENAME }, + { "pearl.collecting", "pong.wav" }, + { "pearl.breaking", "knack.wav" }, + { "pearl.impact", "pling.wav" }, + { "crystal.collecting", "pong.wav" }, + { "crystal.impact", "pling.wav" }, + { "[envelope].collecting", "pong.wav" }, + { "[envelope].opening", UNDEFINED_FILENAME }, + { "[envelope].closing", UNDEFINED_FILENAME }, + { "invisible_sand.digging", "schlurf.wav" }, + { "invisible_sand.active.digging", "schlurf.wav" }, + { "shield_normal.collecting", "pong.wav" }, + { "shield_normal.active", UNDEFINED_FILENAME }, + { "shield_deadly.collecting", "pong.wav" }, + { "shield_deadly.active", UNDEFINED_FILENAME }, + { "extra_time.collecting", "gong.wav" }, + { "mole.moving", UNDEFINED_FILENAME }, + { "mole.waiting", UNDEFINED_FILENAME }, + { "mole.digging", "blurb.wav" }, + { "[switchgate_switch].activating", UNDEFINED_FILENAME }, + { "[switchgate].opening", "oeffnen.wav" }, + { "[switchgate].closing", "oeffnen.wav" }, + { "[switchgate].passing", "gate.wav" }, + { "[timegate_switch].activating", "deng.wav" }, + { "[timegate_switch].active", "miep.wav" }, + { "[timegate_switch].deactivating", UNDEFINED_FILENAME }, + { "[timegate].opening", "oeffnen.wav" }, + { "[timegate].closing", "oeffnen.wav" }, + { "[timegate].passing", "gate.wav" }, + { "[conveyor_belt_switch].activating",UNDEFINED_FILENAME }, + { "[conveyor_belt].active", UNDEFINED_FILENAME }, + { "[conveyor_belt_switch].deactivating",UNDEFINED_FILENAME }, + { "light_switch.activating", UNDEFINED_FILENAME }, + { "light_switch.deactivating", UNDEFINED_FILENAME }, /* sounds for DX Boulderdash style elements and actions */ - { "dx_supabomb.pushing", "pusch.wav" }, - { "trap.digging", "schlurf.wav" }, - { "trap.activating", UNDEFINED_FILENAME }, - { "[tube].passing", UNDEFINED_FILENAME }, + { "dx_supabomb.pushing", "pusch.wav" }, + { "trap.digging", "schlurf.wav" }, + { "trap.activating", UNDEFINED_FILENAME }, + { "[tube].walking", UNDEFINED_FILENAME }, /* sounds for Rocks'n'Diamonds style elements and actions */ - { "amoeba.turning_to_gem", "pling.wav" }, - { "amoeba.turning_to_rock", "klopf.wav" }, - { "speed_pill.collecting", "pong.wav" }, - { "dynabomb_increase_number.collecting","pong.wav" }, - { "dynabomb_increase_size.collecting","pong.wav" }, - { "dynabomb_increase_power.collecting","pong.wav" }, - { "[dynabomb].dropping", "deng.wav" }, - { "[dynabomb].active", "zisch.wav" }, - { "satellite.moving", UNDEFINED_FILENAME }, - { "satellite.waiting", UNDEFINED_FILENAME }, - { "satellite.pushing", "pusch.wav" }, - { "lamp.activating", "deng.wav" }, - { "lamp.deactivating", "deng.wav" }, - { "time_orb_full.collecting", "gong.wav" }, - { "time_orb_full.impact", "deng.wav" }, - { "time_orb_empty.pushing", "pusch.wav" }, - { "time_orb_empty.impact", "deng.wav" }, - { "game_of_life.waiting", UNDEFINED_FILENAME }, - { "game_of_life.growing", "amoebe.wav" }, - { "biomaze.waiting", UNDEFINED_FILENAME }, - { "biomaze.growing", "amoebe.wav" }, - { "pacman.moving", UNDEFINED_FILENAME }, - { "pacman.waiting", UNDEFINED_FILENAME }, - { "pacman.digging", UNDEFINED_FILENAME }, - { "dark_yamyam.moving", UNDEFINED_FILENAME }, - { "dark_yamyam.waiting", "njam.wav" }, - { "dark_yamyam.digging", UNDEFINED_FILENAME }, - { "penguin.moving", UNDEFINED_FILENAME }, - { "penguin.waiting", UNDEFINED_FILENAME }, - { "pig.moving", UNDEFINED_FILENAME }, - { "pig.waiting", UNDEFINED_FILENAME }, - { "pig.digging", UNDEFINED_FILENAME }, - { "dragon.moving", UNDEFINED_FILENAME }, - { "dragon.waiting", UNDEFINED_FILENAME }, - { "dragon.attacking", UNDEFINED_FILENAME }, + { "amoeba.turning_to_gem", "pling.wav" }, + { "amoeba.turning_to_rock", "klopf.wav" }, + { "speed_pill.collecting", "pong.wav" }, + { "dynabomb_increase_number.collecting","pong.wav" }, + { "dynabomb_increase_size.collecting","pong.wav" }, + { "dynabomb_increase_power.collecting","pong.wav" }, + { "[dynabomb].dropping", "deng.wav" }, + { "[dynabomb].active", "zisch.wav" }, + { "satellite.moving", UNDEFINED_FILENAME }, + { "satellite.waiting", UNDEFINED_FILENAME }, + { "satellite.pushing", "pusch.wav" }, + { "lamp.activating", "deng.wav" }, + { "lamp.deactivating", "deng.wav" }, + { "time_orb_full.collecting", "gong.wav" }, + { "time_orb_full.impact", "deng.wav" }, + { "time_orb_empty.pushing", "pusch.wav" }, + { "time_orb_empty.impact", "deng.wav" }, + { "game_of_life.waiting", UNDEFINED_FILENAME }, + { "game_of_life.growing", "amoebe.wav" }, + { "biomaze.waiting", UNDEFINED_FILENAME }, + { "biomaze.growing", "amoebe.wav" }, + { "pacman.moving", UNDEFINED_FILENAME }, + { "pacman.waiting", UNDEFINED_FILENAME }, + { "pacman.digging", UNDEFINED_FILENAME }, + { "dark_yamyam.moving", UNDEFINED_FILENAME }, + { "dark_yamyam.waiting", "njam.wav" }, + { "dark_yamyam.digging", UNDEFINED_FILENAME }, + { "penguin.moving", UNDEFINED_FILENAME }, + { "penguin.waiting", UNDEFINED_FILENAME }, + { "pig.moving", UNDEFINED_FILENAME }, + { "pig.waiting", UNDEFINED_FILENAME }, + { "pig.digging", UNDEFINED_FILENAME }, + { "dragon.moving", UNDEFINED_FILENAME }, + { "dragon.waiting", UNDEFINED_FILENAME }, + { "dragon.attacking", UNDEFINED_FILENAME }, + + /* sounds for Mirror Magic style elements and actions */ + { "[mm_mcduffin].hitting", "autsch.wav" }, + { "[mm_mirror].hitting", "laser.wav" }, + { "[mm_mirror_fixed].hitting", "laser.wav" }, + { "[mm_prism].hitting", "laser.wav" }, + { "[mm_exit].hitting", "holz.wav" }, + { "[mm_exit].opening", "kling.wav" }, + { "mm_exit_open.hitting", UNDEFINED_FILENAME }, + { "[df_mirror].hitting", "laser.wav" }, + { "[df_mirror_rotating].hitting", "laser.wav" }, + { "[df_refractor].hitting", "laser.wav" }, + { "[df_receiver].hitting", "holz.wav" }, + { "[df_receiver].opening", "kling.wav" }, + { "[mm_wooden_wall].hitting", "holz.wav" }, + { "[mm_wooden_block].hitting", "holz.wav" }, + { "[mm_wooden_block].pushing", "bong.wav" }, + { "[mm_wooden_lock].hitting", "holz.wav" }, + { "[mm_wooden_grid_fixed].hitting", "holz.wav" }, + { "[mm_fuse].hitting", "holz.wav" }, + { "[mm_ice_wall].hitting", "holz.wav" }, + { "[mm_ice_wall].shrinking", "slurp.wav" }, + { "[mm_amoeba_wall].hitting", "holz.wav" }, + { "[mm_amoeba_wall].growing", "amoebe.wav" }, + { "[mm_amoeba_wall].growing.mode_loop","false" }, + { "[df_wooden_wall].hitting", "holz.wav" }, + { "[df_wooden_grid_fixed].hitting", "holz.wav" }, + { "[df_wooden_grid_rotating].hitting","holz.wav" }, + { "[mm_steel_wall].hitting", "hui.wav" }, + { "[mm_steel_grid_fixed].hitting", "hui.wav" }, + { "[mm_steel_block].hitting", "hui.wav" }, + { "[mm_steel_block].pushing", "bong.wav" }, + { "[mm_steel_lock].hitting", "hui.wav" }, + { "[df_steel_wall].hitting", "hui.wav" }, + { "[df_steel_grid_fixed].hitting", "hui.wav" }, + { "[df_steel_grid_rotating].hitting", "hui.wav" }, + + { "[mm_pacman].exploding", "quiek.wav" }, + { "[mm_mcduffin].exploding", "roaaar.wav" }, + { "[mm_bomb].exploding", "roaaar.wav" }, + { "[mm_key].exploding", "kling.wav" }, + { "[mm_steel_lock].exploding", "whoosh.wav" }, + { "[mm_wooden_lock].exploding", "whoosh.wav" }, /* sounds not associated to game elements (used for menu screens etc.) */ /* keyword to stop parser: "NO_MORE_ELEMENT_SOUNDS" <-- do not change! */ /* sounds for other game actions */ - { "game.starting", UNDEFINED_FILENAME }, - { "game.running_out_of_time", "gong.wav" }, - { "game.leveltime_bonus", "sirr.wav" }, - { "game.losing", "lachen.wav" }, - { "game.winning", UNDEFINED_FILENAME }, - { "game.sokoban_solving", "buing.wav" }, + { "game.starting", UNDEFINED_FILENAME }, + { "game.leveltime_charging", "fuel.wav" }, + { "game.health_charging", "warnton.wav" }, + { "game.running_out_of_time", "gong.wav" }, + { "game.leveltime_bonus", "sirr.wav" }, + { "game.health_bonus", "sirr.wav" }, + { "game.losing", "lachen.wav" }, + { "game.winning", UNDEFINED_FILENAME }, + { "game.sokoban_solving", "buing.wav" }, /* sounds for other non-game actions */ - { "door.opening", "oeffnen.wav" }, - { "door.closing", "oeffnen.wav" }, + { "door.opening", "door.wav" }, + { "door.closing", "door.wav" }, + + { "request.opening", UNDEFINED_FILENAME }, + { "request.closing", UNDEFINED_FILENAME }, + + /* sounds for menu actions */ + { "menu.item.activating", "empty.wav" }, + { "menu.item.selecting", "base.wav" }, - { "background.SCORES", "halloffame.wav" }, - { "background.SCORES.mode_loop", "false" }, + { "menu.button.pressing", UNDEFINED_FILENAME }, + { "menu.button.releasing", UNDEFINED_FILENAME }, - { "background.INFO", "rhythmloop.wav" }, - { "background.INFO.mode_loop", "true" }, + { "background.TITLE_INITIAL", UNDEFINED_FILENAME }, + { "background.TITLE", UNDEFINED_FILENAME }, + { "background.MAIN", UNDEFINED_FILENAME }, + { "background.LEVELS", UNDEFINED_FILENAME }, + { "background.LEVELNR", UNDEFINED_FILENAME }, + { "background.SCORES", "halloffame.wav" }, + { "background.SCORES.mode_loop", "false" }, + { "background.EDITOR", UNDEFINED_FILENAME }, + { "background.INFO", UNDEFINED_FILENAME }, + { "background.SETUP", UNDEFINED_FILENAME }, -#if 0 - { "[not used]", "antigrav.wav" }, - { "[not used]", "bong.wav" }, - { "[not used]", "fuel.wav" }, - { "[not used]", "holz.wav" }, - { "[not used]", "hui.wav" }, - { "[not used]", "kabumm.wav" }, - { "[not used]", "kink.wav" }, - { "[not used]", "kling.wav" }, - { "[not used]", "krach.wav" }, - { "[not used]", "laser.wav" }, - { "[not used]", "quiek.wav" }, - { "[not used]", "rumms.wav" }, - { "[not used]", "schlopp.wav" }, - { "[not used]", "schrff.wav" }, - { "[not used]", "schwirr.wav" }, - { "[not used]", "slurp.wav" }, - { "[not used]", "sproing.wav" }, - { "[not used]", "warnton.wav" }, - { "[not used]", "whoosh.wav" }, - { "[not used]", "boom.wav" }, -#endif + { "background.titlescreen_initial_1", UNDEFINED_FILENAME }, + { "background.titlescreen_initial_2", UNDEFINED_FILENAME }, + { "background.titlescreen_initial_3", UNDEFINED_FILENAME }, + { "background.titlescreen_initial_4", UNDEFINED_FILENAME }, + { "background.titlescreen_initial_5", UNDEFINED_FILENAME }, + { "background.titlescreen_1", UNDEFINED_FILENAME }, + { "background.titlescreen_2", UNDEFINED_FILENAME }, + { "background.titlescreen_3", UNDEFINED_FILENAME }, + { "background.titlescreen_4", UNDEFINED_FILENAME }, + { "background.titlescreen_5", UNDEFINED_FILENAME }, + { "background.titlemessage_initial_1",UNDEFINED_FILENAME }, + { "background.titlemessage_initial_2",UNDEFINED_FILENAME }, + { "background.titlemessage_initial_3",UNDEFINED_FILENAME }, + { "background.titlemessage_initial_4",UNDEFINED_FILENAME }, + { "background.titlemessage_initial_5",UNDEFINED_FILENAME }, + { "background.titlemessage_1", UNDEFINED_FILENAME }, + { "background.titlemessage_2", UNDEFINED_FILENAME }, + { "background.titlemessage_3", UNDEFINED_FILENAME }, + { "background.titlemessage_4", UNDEFINED_FILENAME }, + { "background.titlemessage_5", UNDEFINED_FILENAME }, - { NULL, NULL } + { NULL, NULL } };