2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // snd_null.c -- include this instead of all the other snd_* files to have
21 // no sound code whatsoever
25 cvar_t bgmvolume = {CVAR_SAVE, "bgmvolume", "1"};
26 cvar_t volume = {CVAR_SAVE, "volume", "0.7"};
27 cvar_t snd_staticvolume = {CVAR_SAVE, "snd_staticvolume", "1"};
29 cvar_t snd_initialized = { CVAR_READONLY, "snd_initialized", "0"};
33 Cvar_RegisterVariable(&bgmvolume);
34 Cvar_RegisterVariable(&volume);
35 Cvar_RegisterVariable(&snd_staticvolume);
36 Cvar_RegisterVariable(&snd_initialized);
39 void S_Terminate (void)
47 void S_Shutdown (void)
51 void S_ServerSounds (char serversound [][MAX_QPATH], unsigned int numsounds)
55 void S_StaticSound (sfx_t *sfx, vec3_t origin, float fvol, float attenuation)
59 int S_StartSound (int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol, float attenuation)
64 void S_StopChannel (unsigned int channel_ind)
68 qboolean S_SetChannelFlag (unsigned int ch_ind, unsigned int flag, qboolean value)
73 void S_StopSound (int entnum, int entchannel)
77 void S_PauseGameSounds (qboolean toggle)
81 void S_SetChannelVolume (unsigned int ch_ind, float fvol)
85 sfx_t *S_PrecacheSound (const char *sample, qboolean complain, qboolean lock)
90 void S_Update(const matrix4x4_t *matrix)
94 void S_StopAllSounds (void)
98 void S_ExtraUpdate (void)
102 qboolean S_LocalSound (const char *s)