X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsound.h;h=8eb344ef2e921dfae3d8ef554d86d77784740b04;hb=25c22434b11938e230719d6f73df4ed7813570be;hp=9e2d2420489697359b5542d304491c7fdb07cf35;hpb=3ff2e8a0b5c27b99a9920bdf5ed82bc41bf40181;p=rocksndiamonds.git diff --git a/src/libgame/sound.h b/src/libgame/sound.h index 9e2d2420..8eb344ef 100644 --- a/src/libgame/sound.h +++ b/src/libgame/sound.h @@ -56,6 +56,7 @@ #define SND_CTRL_ALL_SOUNDS (1 << 4) #define SND_CTRL_RELOAD_SOUNDS (1 << 5) #define SND_CTRL_RELOAD_MUSIC (1 << 6) +#define SND_CTRL_EXPIRE_LOOPS (1 << 7) #define SND_CTRL_PLAY_SOUND (SND_CTRL_NONE) #define SND_CTRL_PLAY_LOOP (SND_CTRL_LOOP) @@ -76,6 +77,7 @@ #define IS_RELOADING(x) ((x).state & (SND_CTRL_RELOAD_SOUNDS |\ SND_CTRL_RELOAD_MUSIC)) #define ALL_SOUNDS(x) ((x).state & SND_CTRL_ALL_SOUNDS) +#define SET_EXPIRE_LOOPS(x) ((x).state & SND_CTRL_EXPIRE_LOOPS) #define MAP_NOCONF_MUSIC(x) (-((x) + 1)) #define UNMAP_NOCONF_MUSIC(x) MAP_NOCONF_MUSIC(x) @@ -113,11 +115,13 @@ void StopMusic(void); void StopSound(int); void StopSounds(void); void StopSoundExt(int, int); +void ExpireSoundLoops(boolean); int getSoundListSize(); int getMusicListSize(); struct FileInfo *getSoundListEntry(int); struct FileInfo *getMusicListEntry(int); +char *getCurrentlyPlayingMusicFilename(); int getSoundListPropertyMappingSize(); int getMusicListPropertyMappingSize(); struct PropertyMapping *getSoundListPropertyMapping();