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
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2008-07-12 14:09:52 +00:00
|
|
|
|
|
|
|
//****************************************************************************
|
|
|
|
//
|
|
|
|
// sounds.h
|
|
|
|
//
|
|
|
|
//****************************************************************************
|
|
|
|
|
|
|
|
#ifndef _sounds_public_
|
|
|
|
#define _sounds_public_
|
|
|
|
|
2012-06-17 19:45:41 +00:00
|
|
|
// KEEPINSYNC lunatic/con_lang.lua
|
2011-10-30 19:48:46 +00:00
|
|
|
#define MAXSOUNDS 4096
|
2010-08-02 08:13:51 +00:00
|
|
|
#define MAXSOUNDINSTANCES 8
|
|
|
|
#define LOUDESTVOLUME 150
|
|
|
|
#define MUSIC_ID -65536
|
2008-07-12 14:09:52 +00:00
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
struct audioenumdev
|
|
|
|
{
|
2008-07-12 14:09:52 +00:00
|
|
|
char *def;
|
|
|
|
char **devs;
|
|
|
|
struct audioenumdev *next;
|
|
|
|
};
|
2010-08-02 08:13:51 +00:00
|
|
|
struct audioenumdrv
|
|
|
|
{
|
2008-07-12 14:09:52 +00:00
|
|
|
char *def;
|
|
|
|
char **drvs;
|
|
|
|
struct audioenumdev *devs;
|
|
|
|
};
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t EnumAudioDevs(struct audioenumdrv **wave, struct audioenumdev **midi, struct audioenumdev **cda);
|
2008-07-12 14:09:52 +00:00
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int16_t voice;
|
2012-03-10 21:22:44 +00:00
|
|
|
int16_t ow;
|
2012-10-08 07:07:59 +00:00
|
|
|
uint32_t sndist;
|
|
|
|
uint32_t clock;
|
2010-08-02 08:13:51 +00:00
|
|
|
} SOUNDOWNER;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int32_t length, num, soundsiz; // 12b
|
|
|
|
char *filename, *ptr, *filename1; // 12b/24b
|
2012-10-08 07:07:17 +00:00
|
|
|
SOUNDOWNER SoundOwner[MAXSOUNDINSTANCES]; // 64b
|
2010-08-02 08:13:51 +00:00
|
|
|
int16_t ps,pe,vo; // 6b
|
|
|
|
char pr,m; // 2b
|
|
|
|
} sound_t;
|
|
|
|
|
|
|
|
extern volatile char g_soundlocks[MAXSOUNDS];
|
|
|
|
extern sound_t g_sounds[MAXSOUNDS];
|
|
|
|
extern int16_t g_skillSoundID;
|
2012-08-13 18:25:48 +00:00
|
|
|
extern int32_t g_numEnvSoundsPlaying,g_maxSoundPos;
|
2010-08-02 08:13:51 +00:00
|
|
|
|
|
|
|
int32_t A_CheckSoundPlaying(int32_t i,int32_t num);
|
|
|
|
int32_t A_PlaySound(uint32_t num,int32_t i);
|
|
|
|
void S_Callback(uint32_t num);
|
2013-01-02 22:33:32 +00:00
|
|
|
int32_t A_CheckAnySoundPlaying(int32_t i);
|
2010-08-02 08:13:51 +00:00
|
|
|
int32_t S_CheckSoundPlaying(int32_t i,int32_t num);
|
|
|
|
void S_Cleanup(void);
|
|
|
|
void S_ClearSoundLocks(void);
|
|
|
|
int32_t S_LoadSound(uint32_t num);
|
|
|
|
void S_MenuSound(void);
|
|
|
|
void S_MusicShutdown(void);
|
|
|
|
void S_MusicStartup(void);
|
|
|
|
void S_MusicVolume(int32_t volume);
|
|
|
|
void S_PauseMusic(int32_t onf);
|
|
|
|
int32_t S_PlayMusic(const char *fn,const int32_t sel);
|
|
|
|
int32_t S_PlaySound(int32_t num);
|
|
|
|
int32_t S_PlaySound3D(int32_t num,int32_t i,const vec3_t *pos);
|
|
|
|
void S_SoundShutdown(void);
|
|
|
|
void S_SoundStartup(void);
|
|
|
|
void S_StopEnvSound(int32_t num,int32_t i);
|
|
|
|
void S_StopMusic(void);
|
|
|
|
void S_Update(void);
|
2011-11-03 23:08:54 +00:00
|
|
|
void S_ChangeSoundPitch(int32_t num, int32_t i, int32_t pitchoffset);
|
2010-08-02 08:13:51 +00:00
|
|
|
|
2013-03-31 18:58:17 +00:00
|
|
|
static inline int32_t S_IsAmbientSFX(int32_t i)
|
|
|
|
{
|
|
|
|
return (sprite[i].picnum==MUSICANDSFX && sprite[i].lotag < 999);
|
|
|
|
}
|
|
|
|
|
2008-07-12 14:09:52 +00:00
|
|
|
#endif
|