2007-02-08 04:19:39 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
2010-05-25 10:56:00 +00:00
|
|
|
Copyright (C) 2010 EDuke32 developers and contributors
|
2007-02-08 04:19:39 +00:00
|
|
|
|
2010-05-25 10:56:00 +00:00
|
|
|
This file is part of EDuke32.
|
2007-02-08 04:19:39 +00:00
|
|
|
|
|
|
|
EDuke32 is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2014-07-20 08:55:56 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2007-02-08 04:19:39 +00:00
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2008-07-12 14:09:52 +00:00
|
|
|
|
|
|
|
//****************************************************************************
|
|
|
|
//
|
|
|
|
// sounds.h
|
|
|
|
//
|
|
|
|
//****************************************************************************
|
|
|
|
|
2014-11-22 12:32:56 +00:00
|
|
|
#ifndef sounds_public_h_
|
|
|
|
#define sounds_public_h_
|
2008-07-12 14:09:52 +00:00
|
|
|
|
2013-09-08 20:18:56 +00:00
|
|
|
#include "sounds_common.h"
|
|
|
|
|
2014-11-26 04:39:23 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-06-17 19:45:41 +00:00
|
|
|
// KEEPINSYNC lunatic/con_lang.lua
|
2011-10-30 19:48:46 +00:00
|
|
|
#define MAXSOUNDS 4096
|
2017-05-18 07:03:55 +00:00
|
|
|
#define MAXSOUNDINSTANCES 8
|
2018-02-27 15:21:01 +00:00
|
|
|
#define LOUDESTVOLUME 111
|
2010-08-02 08:13:51 +00:00
|
|
|
#define MUSIC_ID -65536
|
2008-07-12 14:09:52 +00:00
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2018-10-25 23:32:29 +00:00
|
|
|
int16_t owner;
|
|
|
|
int16_t id;
|
|
|
|
uint16_t dist;
|
2018-04-02 22:00:11 +00:00
|
|
|
uint16_t clock;
|
2018-10-25 23:32:29 +00:00
|
|
|
} assvoice_t;
|
2010-08-02 08:13:51 +00:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2018-10-25 23:32:29 +00:00
|
|
|
char * ptr, *filename; // 8b/16b
|
|
|
|
int32_t length, num, siz; // 12b
|
2018-10-25 23:32:05 +00:00
|
|
|
float volume; // 4b
|
2018-10-25 23:32:29 +00:00
|
|
|
assvoice_t voices[MAXSOUNDINSTANCES]; // 64b
|
2018-04-02 22:00:11 +00:00
|
|
|
int16_t ps, pe, vo; // 6b
|
|
|
|
char pr, m; // 2b
|
2010-08-02 08:13:51 +00:00
|
|
|
} sound_t;
|
|
|
|
|
2016-01-11 05:05:38 +00:00
|
|
|
extern char g_soundlocks[MAXSOUNDS];
|
2010-08-02 08:13:51 +00:00
|
|
|
extern sound_t g_sounds[MAXSOUNDS];
|
2018-04-02 22:00:11 +00:00
|
|
|
extern int32_t g_numEnvSoundsPlaying,g_highestSoundIdx;
|
2010-08-02 08:13:51 +00:00
|
|
|
|
2018-10-25 23:32:29 +00:00
|
|
|
bool A_CheckSoundPlaying(int spriteNum,int soundNum);
|
|
|
|
int A_PlaySound(int soundNum, int spriteNum);
|
2010-08-02 08:13:51 +00:00
|
|
|
void S_Callback(uint32_t num);
|
2018-10-25 23:32:29 +00:00
|
|
|
bool A_CheckAnySoundPlaying(int spriteNum);
|
2018-12-15 01:39:25 +00:00
|
|
|
bool S_CheckSoundPlaying(int soundNum);
|
2010-08-02 08:13:51 +00:00
|
|
|
void S_Cleanup(void);
|
|
|
|
void S_ClearSoundLocks(void);
|
|
|
|
int32_t S_LoadSound(uint32_t num);
|
2018-11-18 18:08:14 +00:00
|
|
|
void cacheAllSounds(void);
|
2010-08-02 08:13:51 +00:00
|
|
|
void S_MenuSound(void);
|
|
|
|
void S_MusicShutdown(void);
|
|
|
|
void S_MusicStartup(void);
|
|
|
|
void S_MusicVolume(int32_t volume);
|
2014-09-07 18:10:09 +00:00
|
|
|
void S_RestartMusic(void);
|
2018-10-25 23:32:29 +00:00
|
|
|
void S_PauseMusic(bool paused);
|
|
|
|
void S_PauseSounds(bool paused);
|
|
|
|
bool S_TryPlayLevelMusic(unsigned int m);
|
2018-01-29 11:13:43 +00:00
|
|
|
void S_PlayLevelMusicOrNothing(unsigned int);
|
|
|
|
int S_TryPlaySpecialMusic(unsigned int);
|
|
|
|
void S_PlaySpecialMusicOrNothing(unsigned int);
|
2018-01-29 11:14:08 +00:00
|
|
|
void S_ContinueLevelMusic(void);
|
2018-10-25 23:32:29 +00:00
|
|
|
int S_PlaySound(int num);
|
|
|
|
int S_PlaySound3D(int num, int spriteNum, const vec3_t *pos);
|
2010-08-02 08:13:51 +00:00
|
|
|
void S_SoundShutdown(void);
|
|
|
|
void S_SoundStartup(void);
|
|
|
|
void S_StopEnvSound(int32_t num,int32_t i);
|
2017-01-05 05:29:25 +00:00
|
|
|
void S_StopAllSounds(void);
|
2010-08-02 08:13:51 +00:00
|
|
|
void S_StopMusic(void);
|
|
|
|
void S_Update(void);
|
2018-10-25 23:32:29 +00:00
|
|
|
void S_ChangeSoundPitch(int soundNum, int spriteNum, int pitchoffset);
|
2015-01-17 00:28:49 +00:00
|
|
|
int32_t S_GetMusicPosition(void);
|
|
|
|
void S_SetMusicPosition(int32_t position);
|
2010-08-02 08:13:51 +00:00
|
|
|
|
2018-10-25 23:32:29 +00:00
|
|
|
static inline bool S_IsAmbientSFX(int spriteNum)
|
2013-03-31 18:58:17 +00:00
|
|
|
{
|
2018-10-25 23:32:29 +00:00
|
|
|
return (sprite[spriteNum].picnum == MUSICANDSFX && sprite[spriteNum].lotag < 999);
|
2013-03-31 18:58:17 +00:00
|
|
|
}
|
|
|
|
|
2014-11-26 04:39:23 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-07-12 14:09:52 +00:00
|
|
|
#endif
|