2020-06-11 07:22:16 +00:00
|
|
|
//****************************************************************************
|
|
|
|
//
|
|
|
|
// sounds.h
|
|
|
|
//
|
|
|
|
//****************************************************************************
|
|
|
|
|
|
|
|
#ifndef sounds_public_h_
|
|
|
|
#define sounds_public_h_
|
|
|
|
|
|
|
|
#include "raze_sound.h"
|
|
|
|
#include "raze_music.h"
|
2020-07-07 11:19:09 +00:00
|
|
|
struct MapRecord;
|
2020-06-11 07:22:16 +00:00
|
|
|
|
|
|
|
BEGIN_DUKE_NS
|
|
|
|
|
2020-06-24 19:21:02 +00:00
|
|
|
// Sound flags
|
|
|
|
enum {
|
2020-07-20 21:21:27 +00:00
|
|
|
SF_LOOP = 1,
|
|
|
|
SF_MSFX = 2,
|
|
|
|
SF_TALK = 4,
|
|
|
|
SF_ADULT = 8,
|
|
|
|
SF_GLOBAL = 16,
|
|
|
|
SF_ONEINST_INTERNAL = 32,
|
|
|
|
|
|
|
|
SF_DTAG = 128,
|
2020-06-24 19:21:02 +00:00
|
|
|
};
|
|
|
|
|
2020-06-11 07:22:16 +00:00
|
|
|
enum esound_t
|
|
|
|
{
|
2020-07-20 21:21:27 +00:00
|
|
|
kPitchStart,
|
|
|
|
kPitchEnd,
|
|
|
|
kVolAdjust,
|
|
|
|
kPriority,
|
|
|
|
kFlags,
|
|
|
|
kMaxUserData
|
2020-06-11 07:22:16 +00:00
|
|
|
};
|
|
|
|
|
2020-07-25 07:32:54 +00:00
|
|
|
void S_InitSound();
|
|
|
|
void S_Update(void);
|
|
|
|
void S_CacheAllSounds(void);
|
|
|
|
int S_DefineSound(unsigned index, const char* filename, int ps, int pe, int pr, int m, int vo, float vol);
|
|
|
|
|
|
|
|
int S_PlaySound(int num, int channel = CHAN_AUTO, EChanFlags flags = 0);
|
|
|
|
int S_PlaySound3D(int num, int spriteNum, const vec3_t* pos, int channel = CHAN_AUTO, EChanFlags flags = 0);
|
|
|
|
int S_PlayActorSound(int soundNum, int spriteNum, int channel = CHAN_AUTO, EChanFlags flags = 0);
|
|
|
|
void S_MenuSound(void);
|
|
|
|
|
|
|
|
void S_StopSound(int sndNum, int sprNum = -1, int flags = -1);
|
|
|
|
|
2020-06-11 07:22:16 +00:00
|
|
|
int S_CheckSoundPlaying(int soundNum);
|
|
|
|
inline int S_CheckSoundPlaying(int sprnum, int soundNum) { return S_CheckSoundPlaying(soundNum); }
|
2020-07-25 07:32:54 +00:00
|
|
|
int S_CheckActorSoundPlaying(int spriteNum, int soundNum, int channel = 0);
|
|
|
|
int S_CheckAnyActorSoundPlaying(int spriteNum);
|
2020-07-06 19:10:20 +00:00
|
|
|
|
2020-06-11 07:22:16 +00:00
|
|
|
void S_ChangeSoundPitch(int soundNum, int spriteNum, int pitchoffset);
|
|
|
|
int S_GetUserFlags(int sndnum);
|
|
|
|
|
2020-05-10 10:42:47 +00:00
|
|
|
inline bool S_IsSoundValid(int num)
|
|
|
|
{
|
2020-07-20 21:21:27 +00:00
|
|
|
return (!soundEngine->isValidSoundId(num + 1));
|
2020-05-10 10:42:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-25 07:32:54 +00:00
|
|
|
|
|
|
|
void S_PlayRRMusic(int newTrack = -1);
|
|
|
|
void S_PlayBonusMusic();
|
|
|
|
void S_PlayLevelMusic(MapRecord* mi);
|
|
|
|
void S_PlaySpecialMusic(unsigned int);
|
|
|
|
void S_ContinueLevelMusic(void);
|
|
|
|
|
2020-05-12 05:51:45 +00:00
|
|
|
// Placeholders.
|
|
|
|
inline void StopCommentary()
|
|
|
|
{}
|
|
|
|
|
|
|
|
inline bool StartCommentary(int tag, int sprnum)
|
|
|
|
{
|
2020-07-20 21:21:27 +00:00
|
|
|
return false;
|
2020-05-12 05:51:45 +00:00
|
|
|
}
|
2020-05-10 10:42:47 +00:00
|
|
|
|
2020-07-07 18:27:21 +00:00
|
|
|
extern TArray<FString> specialmusic;
|
|
|
|
|
2020-05-10 10:42:47 +00:00
|
|
|
|
2020-06-11 07:22:16 +00:00
|
|
|
END_DUKE_NS
|
|
|
|
|
|
|
|
#endif
|