2007-03-17 03:14:41 +00:00
|
|
|
/*
|
|
|
|
snd_dma.c
|
|
|
|
|
|
|
|
main control for any streaming sound output device
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2007-04-07 07:44:07 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2007-03-17 03:14:41 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "QF/bspfile.h"
|
|
|
|
#include "QF/cmd.h"
|
|
|
|
#include "QF/cvar.h"
|
|
|
|
#include "QF/dstring.h"
|
|
|
|
#include "QF/model.h"
|
2007-03-23 12:33:04 +00:00
|
|
|
#include "QF/quakefs.h"
|
2007-03-17 03:14:41 +00:00
|
|
|
#include "QF/sys.h"
|
|
|
|
|
2022-02-28 07:59:38 +00:00
|
|
|
#include "QF/scene/transform.h"
|
|
|
|
|
2011-07-23 06:56:22 +00:00
|
|
|
#include "snd_internal.h"
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2007-03-18 10:32:01 +00:00
|
|
|
static channel_t *free_channels;
|
2007-03-17 03:14:41 +00:00
|
|
|
channel_t snd_channels[MAX_CHANNELS];
|
|
|
|
int snd_total_channels;
|
|
|
|
|
|
|
|
static channel_t *ambient_channels[NUM_AMBIENTS];
|
2007-03-21 12:56:43 +00:00
|
|
|
static channel_t *dynamic_channels;
|
|
|
|
static channel_t *looped_dynamic_channels;
|
2007-03-18 10:32:01 +00:00
|
|
|
static channel_t *static_channels[MAX_STATIC_CHANNELS];
|
2007-03-17 03:14:41 +00:00
|
|
|
static int snd_num_statics;
|
|
|
|
|
|
|
|
static qboolean snd_ambient = 1;
|
|
|
|
static sfx_t *ambient_sfx[NUM_AMBIENTS];
|
|
|
|
|
|
|
|
static vec_t sound_nominal_clip_dist = 1000.0;
|
|
|
|
|
2022-02-28 07:59:38 +00:00
|
|
|
static vec4f_t listener_origin;
|
|
|
|
static vec4f_t listener_forward;
|
|
|
|
static vec4f_t listener_right;
|
|
|
|
static vec4f_t listener_up;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
static float snd_phasesep;
|
|
|
|
static cvar_t snd_phasesep_cvar = {
|
|
|
|
.name = "snd_phasesep",
|
|
|
|
.description =
|
|
|
|
"max stereo phase separation in ms. 0.6 is for 20cm head",
|
|
|
|
.default_value = "0.0",
|
|
|
|
.flags = CVAR_ARCHIVE,
|
|
|
|
.value = { .type = &cexpr_float, .value = &snd_phasesep },
|
|
|
|
};
|
|
|
|
static float snd_volumesep;
|
|
|
|
static cvar_t snd_volumesep_cvar = {
|
|
|
|
.name = "snd_volumesep",
|
|
|
|
.description =
|
|
|
|
"max stereo volume separation. 1.0 is max",
|
|
|
|
.default_value = "1.0",
|
|
|
|
.flags = CVAR_ARCHIVE,
|
|
|
|
.value = { .type = &cexpr_float, .value = &snd_volumesep },
|
|
|
|
};
|
|
|
|
static int snd_swapchannelside;
|
|
|
|
static cvar_t snd_swapchannelside_cvar = {
|
|
|
|
.name = "snd_swapchannelside",
|
|
|
|
.description =
|
|
|
|
"Toggle swapping of left and right channels",
|
|
|
|
.default_value = "0",
|
|
|
|
.flags = CVAR_ARCHIVE,
|
|
|
|
.value = { .type = &cexpr_int, .value = &snd_swapchannelside },
|
|
|
|
};
|
|
|
|
static float ambient_fade;
|
|
|
|
static cvar_t ambient_fade_cvar = {
|
|
|
|
.name = "ambient_fade",
|
|
|
|
.description =
|
|
|
|
"How quickly ambient sounds fade in or out",
|
|
|
|
.default_value = "100",
|
|
|
|
.flags = CVAR_NONE,
|
|
|
|
.value = { .type = &cexpr_float, .value = &ambient_fade },
|
|
|
|
};
|
|
|
|
static float ambient_level;
|
|
|
|
static cvar_t ambient_level_cvar = {
|
|
|
|
.name = "ambient_level",
|
|
|
|
.description =
|
|
|
|
"Ambient sounds' volume",
|
|
|
|
.default_value = "0.3",
|
|
|
|
.flags = CVAR_NONE,
|
|
|
|
.value = { .type = &cexpr_float, .value = &ambient_level },
|
|
|
|
};
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2007-04-11 22:03:36 +00:00
|
|
|
static inline channel_t *
|
|
|
|
unlink_channel (channel_t **_ch)
|
2007-03-27 06:15:57 +00:00
|
|
|
{
|
|
|
|
channel_t *ch = *_ch;
|
|
|
|
*_ch = ch->next;
|
|
|
|
ch->next = 0;
|
|
|
|
return ch;
|
|
|
|
}
|
2007-03-17 03:14:41 +00:00
|
|
|
|
|
|
|
channel_t *
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_AllocChannel (snd_t *snd)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
2007-03-18 10:32:01 +00:00
|
|
|
channel_t **free = &free_channels;
|
|
|
|
channel_t *chan;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2007-03-18 10:32:01 +00:00
|
|
|
while (*free) {
|
|
|
|
if (!(*free)->sfx) // free channel
|
|
|
|
break;
|
2007-04-07 07:44:07 +00:00
|
|
|
if ((*free)->done) // mixer is finished with this channel
|
2007-03-18 10:32:01 +00:00
|
|
|
break;
|
|
|
|
if (!(*free)->stop)
|
|
|
|
Sys_Error ("SND_AllocChannel: bogus channel free list");
|
|
|
|
free = &(*free)->next;
|
|
|
|
}
|
2007-03-25 01:02:03 +00:00
|
|
|
if (!*free) {
|
|
|
|
int num_free = 0;
|
|
|
|
for (free = &free_channels; *free; free = &(*free)->next) {
|
|
|
|
num_free++;
|
|
|
|
}
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_warn, "SND_AllocChannel: out of channels. %d\n",
|
2021-03-23 04:04:22 +00:00
|
|
|
num_free);
|
2007-03-18 10:32:01 +00:00
|
|
|
return 0;
|
2007-03-25 01:02:03 +00:00
|
|
|
}
|
2007-03-18 10:32:01 +00:00
|
|
|
chan = *free;
|
|
|
|
*free = chan->next;
|
2007-03-17 03:14:41 +00:00
|
|
|
if (chan->sfx) {
|
2007-03-18 10:32:01 +00:00
|
|
|
chan->sfx->release (chan->sfx);
|
2007-03-17 03:14:41 +00:00
|
|
|
chan->sfx->close (chan->sfx);
|
2007-03-18 10:32:01 +00:00
|
|
|
chan->sfx = 0; // make sure mixer doesn't use channel during memset
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
2007-03-18 10:32:01 +00:00
|
|
|
|
|
|
|
memset (chan, 0, sizeof (*chan));
|
|
|
|
chan->next = 0;
|
2007-03-17 03:14:41 +00:00
|
|
|
chan->sfx = 0;
|
2007-03-18 10:32:01 +00:00
|
|
|
|
|
|
|
return chan;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd_t *snd, channel_t *chan)
|
2007-03-18 10:32:01 +00:00
|
|
|
{
|
2007-03-27 06:15:57 +00:00
|
|
|
/* if chan->next is set, then this channel may have already been freed.
|
|
|
|
a rather serious bug as it will create a loop in the free list
|
2007-03-18 12:54:59 +00:00
|
|
|
*/
|
2007-03-27 06:15:57 +00:00
|
|
|
if (chan->next)
|
|
|
|
Sys_Error ("Stopping a freed channel");
|
|
|
|
chan->stop = 1;
|
|
|
|
chan->next = free_channels;
|
|
|
|
free_channels = chan;
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
|
2007-03-18 11:20:47 +00:00
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ScanChannels (snd_t *snd, int wait)
|
2007-03-18 11:20:47 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
channel_t *ch;
|
|
|
|
int count = 0;
|
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
if (!snd || !snd->speed)
|
2007-05-21 11:20:36 +00:00
|
|
|
return;
|
|
|
|
|
2007-04-07 07:44:07 +00:00
|
|
|
if (wait) {
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_dev, "scanning channels...\n");
|
2007-04-07 07:44:07 +00:00
|
|
|
do {
|
|
|
|
count = 0;
|
|
|
|
for (i = 0; i < MAX_CHANNELS; i++) {
|
|
|
|
ch = &snd_channels[i];
|
|
|
|
if (!ch->sfx || ch->done)
|
|
|
|
continue;
|
|
|
|
ch->stop = 1;
|
|
|
|
count++;
|
|
|
|
}
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_dev, "count = %d\n", count);
|
2007-04-07 07:44:07 +00:00
|
|
|
#ifdef HAVE_USLEEP
|
|
|
|
usleep (1000);
|
|
|
|
#endif
|
|
|
|
} while (count);
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_dev, "scanning done.\n");
|
2007-04-07 07:44:07 +00:00
|
|
|
} else {
|
|
|
|
for (i = 0; i < MAX_CHANNELS; i++) {
|
|
|
|
ch = &snd_channels[i];
|
|
|
|
if (ch->sfx && ch->stop && !ch->done) {
|
|
|
|
ch->done = 1;
|
|
|
|
count++;
|
|
|
|
}
|
2007-03-18 11:20:47 +00:00
|
|
|
}
|
2007-04-07 07:44:07 +00:00
|
|
|
//printf ("count: %d\n", count);
|
2007-03-18 11:20:47 +00:00
|
|
|
}
|
2007-05-07 14:03:36 +00:00
|
|
|
for (i = 0; i < MAX_CHANNELS; i++) {
|
|
|
|
ch = &snd_channels[i];
|
|
|
|
if (!ch->sfx || !ch->done)
|
|
|
|
continue;
|
|
|
|
ch->sfx->release (ch->sfx);
|
|
|
|
ch->sfx->close (ch->sfx);
|
|
|
|
ch->sfx = 0;
|
|
|
|
}
|
2007-03-18 11:20:47 +00:00
|
|
|
}
|
|
|
|
|
2021-06-26 07:18:18 +00:00
|
|
|
void
|
|
|
|
SND_FinishChannels (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
channel_t *ch;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_CHANNELS; i++) {
|
|
|
|
ch = &snd_channels[i];
|
|
|
|
ch->done = ch->stop = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-17 03:14:41 +00:00
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_StopAllSounds (snd_t *snd)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
snd_num_statics = 0;
|
2007-03-27 06:15:57 +00:00
|
|
|
while (dynamic_channels)
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd, unlink_channel (&dynamic_channels));
|
2007-03-27 06:15:57 +00:00
|
|
|
while (looped_dynamic_channels)
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd, unlink_channel (&looped_dynamic_channels));
|
2007-03-27 06:15:57 +00:00
|
|
|
for (i = 0; i < NUM_AMBIENTS; i++) {
|
|
|
|
if (ambient_channels[i])
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd, ambient_channels[i]);
|
2007-03-18 10:32:01 +00:00
|
|
|
ambient_channels[i] = 0;
|
2007-03-27 06:15:57 +00:00
|
|
|
}
|
|
|
|
for (i = 0; i < MAX_STATIC_CHANNELS; i++) {
|
|
|
|
if (static_channels[i])
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd, static_channels[i]);
|
2007-03-18 10:32:01 +00:00
|
|
|
static_channels[i] = 0;
|
2007-03-27 06:15:57 +00:00
|
|
|
}
|
2007-03-18 11:20:47 +00:00
|
|
|
if (0) {
|
|
|
|
channel_t *ch;
|
|
|
|
Sys_Printf ("SND_StopAllSounds\n");
|
|
|
|
for (i = 0, ch = free_channels; ch; ch = ch->next)
|
|
|
|
i++;
|
|
|
|
Sys_Printf (" free channels:%d\n", i);
|
|
|
|
for (i = 0, ch = free_channels; ch; ch = ch->next)
|
|
|
|
if (!ch->sfx || ch->done)
|
|
|
|
i++;
|
|
|
|
Sys_Printf (" truely free channels:%d\n", i);
|
|
|
|
}
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-06-23 15:04:02 +00:00
|
|
|
s_play_f (void *_snd)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
2021-06-23 15:04:02 +00:00
|
|
|
snd_t *snd = _snd;
|
2007-03-17 03:14:41 +00:00
|
|
|
dstring_t *name = dstring_new ();
|
|
|
|
int i;
|
|
|
|
static int hash = 345;
|
|
|
|
sfx_t *sfx;
|
|
|
|
|
|
|
|
i = 1;
|
|
|
|
while (i < Cmd_Argc ()) {
|
|
|
|
if (!strrchr (Cmd_Argv (i), '.')) {
|
|
|
|
dsprintf (name, "%s.wav", Cmd_Argv (i));
|
|
|
|
} else {
|
|
|
|
dsprintf (name, "%s", Cmd_Argv (i));
|
|
|
|
}
|
2021-06-23 15:04:02 +00:00
|
|
|
sfx = SND_PrecacheSound (snd, name->str);
|
2022-03-30 14:38:01 +00:00
|
|
|
SND_StartSound (snd, hash++, 0, sfx, listener_origin, 1.0, 1.0);
|
2007-03-17 03:14:41 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
dstring_delete (name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-06-23 15:04:02 +00:00
|
|
|
s_playcenter_f (void *_snd)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
2021-06-23 15:04:02 +00:00
|
|
|
snd_t *snd = _snd;
|
2007-03-17 03:14:41 +00:00
|
|
|
dstring_t *name = dstring_new ();
|
|
|
|
int i;
|
|
|
|
sfx_t *sfx;
|
2012-12-17 06:07:49 +00:00
|
|
|
int viewent = 0;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2012-12-17 06:07:49 +00:00
|
|
|
if (snd_render_data.viewentity)
|
|
|
|
viewent = *snd_render_data.viewentity;
|
|
|
|
|
|
|
|
for (i = 1; i < Cmd_Argc (); i++) {
|
2007-03-17 03:14:41 +00:00
|
|
|
if (!strrchr (Cmd_Argv (i), '.')) {
|
|
|
|
dsprintf (name, "%s.wav", Cmd_Argv (i));
|
|
|
|
} else {
|
|
|
|
dsprintf (name, "%s", Cmd_Argv (i));
|
|
|
|
}
|
2021-06-23 15:04:02 +00:00
|
|
|
sfx = SND_PrecacheSound (snd, name->str);
|
2022-03-30 14:38:01 +00:00
|
|
|
SND_StartSound (snd, viewent, 0, sfx, listener_origin, 1.0, 1.0);
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
dstring_delete (name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-06-23 15:04:02 +00:00
|
|
|
s_playvol_f (void *_snd)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
2021-06-23 15:04:02 +00:00
|
|
|
snd_t *snd = _snd;
|
2007-03-17 03:14:41 +00:00
|
|
|
dstring_t *name = dstring_new ();
|
|
|
|
float vol;
|
|
|
|
int i;
|
|
|
|
static int hash = 543;
|
|
|
|
sfx_t *sfx;
|
|
|
|
|
|
|
|
i = 1;
|
|
|
|
while (i < Cmd_Argc ()) {
|
|
|
|
if (!strrchr (Cmd_Argv (i), '.')) {
|
|
|
|
dsprintf (name, "%s.wav", Cmd_Argv (i));
|
|
|
|
} else {
|
|
|
|
dsprintf (name, "%s", Cmd_Argv (i));
|
|
|
|
}
|
2021-06-23 15:04:02 +00:00
|
|
|
sfx = SND_PrecacheSound (snd, name->str);
|
2007-03-17 03:14:41 +00:00
|
|
|
vol = atof (Cmd_Argv (i + 1));
|
2022-03-30 14:38:01 +00:00
|
|
|
SND_StartSound (snd, hash++, 0, sfx, listener_origin, vol, 1.0);
|
2007-03-17 03:14:41 +00:00
|
|
|
i += 2;
|
|
|
|
}
|
|
|
|
dstring_delete (name);
|
|
|
|
}
|
|
|
|
|
2007-03-23 12:33:04 +00:00
|
|
|
static void
|
2007-03-24 10:13:10 +00:00
|
|
|
s_channels_gamedir (int phase)
|
2007-03-23 12:33:04 +00:00
|
|
|
{
|
2007-03-24 10:42:34 +00:00
|
|
|
//FIXME for some reason, a gamedir change causes semi-random
|
|
|
|
//"already released" cache errors. fortunatly, servers don't change
|
|
|
|
//gamedir often, so I'll put this in the too-hard basket for now.
|
2021-06-23 15:04:02 +00:00
|
|
|
//XXX FIXME set ambient sounds
|
|
|
|
//if (phase) {
|
|
|
|
// ambient_sfx[AMBIENT_WATER] = SND_PrecacheSound (snd, "ambience/water1.wav");
|
|
|
|
// ambient_sfx[AMBIENT_SKY] = SND_PrecacheSound (snd, "ambience/wind2.wav");
|
|
|
|
//}
|
2007-03-23 12:33:04 +00:00
|
|
|
}
|
|
|
|
|
2007-03-17 03:14:41 +00:00
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_Channels_Init (snd_t *snd)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
Cvar_Register (&snd_phasesep_cvar, 0, 0);
|
|
|
|
Cvar_Register (&snd_volumesep_cvar, 0, 0);
|
|
|
|
Cvar_Register (&snd_swapchannelside_cvar, 0, 0);
|
|
|
|
Cvar_Register (&ambient_fade_cvar, 0, 0);
|
|
|
|
Cvar_Register (&ambient_level_cvar, 0, 0);
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
Cmd_AddDataCommand ("play", s_play_f, snd,
|
|
|
|
"Play selected sound effect (play pathto/sound.wav)");
|
|
|
|
Cmd_AddDataCommand ("playcenter", s_playcenter_f, snd,
|
|
|
|
"Play selected sound effect without 3D "
|
|
|
|
"spatialization.");
|
|
|
|
Cmd_AddDataCommand ("playvol", s_playvol_f, snd,
|
|
|
|
"Play selected sound effect at selected volume "
|
|
|
|
"(playvol pathto/sound.wav num");
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2007-03-27 06:15:57 +00:00
|
|
|
for (i = 0; i < MAX_CHANNELS - 1; i++)
|
2007-03-18 10:32:01 +00:00
|
|
|
snd_channels[i].next = &snd_channels[i + 1];
|
|
|
|
free_channels = &snd_channels[0];
|
|
|
|
snd_total_channels = MAX_CHANNELS;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
|
|
|
snd_num_statics = 0;
|
|
|
|
|
2007-03-23 12:33:04 +00:00
|
|
|
QFS_GamedirCallback (s_channels_gamedir);
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static channel_t *
|
2021-06-23 15:04:02 +00:00
|
|
|
s_pick_channel (snd_t *snd, int entnum, int entchannel, int looped)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
2007-03-21 12:56:43 +00:00
|
|
|
channel_t *ch, **_ch;
|
|
|
|
|
|
|
|
// check for finished non-looped sounds
|
2007-05-08 09:33:24 +00:00
|
|
|
for (_ch = &dynamic_channels; *_ch; ) {
|
|
|
|
if (!(*_ch)->sfx || (*_ch)->done) {
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd, unlink_channel (_ch));
|
2007-05-08 09:33:24 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
_ch = &(*_ch)->next;
|
|
|
|
}
|
2007-03-18 10:32:01 +00:00
|
|
|
|
2007-03-21 12:56:43 +00:00
|
|
|
// non-looped sounds are used to stop looped sounds on an ent channel
|
2007-05-08 10:49:54 +00:00
|
|
|
// also clean out any caught by SND_ScanChannels
|
2007-05-08 09:33:24 +00:00
|
|
|
for (_ch = &looped_dynamic_channels; *_ch; ) {
|
2007-05-08 10:49:54 +00:00
|
|
|
if (!(*_ch)->sfx || (*_ch)->done
|
|
|
|
|| ((*_ch)->entnum == entnum
|
|
|
|
&& ((*_ch)->entchannel == entchannel || entchannel == -1))) {
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd, unlink_channel (_ch));
|
2007-03-17 03:14:41 +00:00
|
|
|
continue;
|
|
|
|
}
|
2007-03-21 12:56:43 +00:00
|
|
|
_ch = &(*_ch)->next;
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
2007-03-26 11:49:54 +00:00
|
|
|
_ch = looped ? &looped_dynamic_channels : &dynamic_channels;
|
2021-06-23 15:04:02 +00:00
|
|
|
if ((ch = SND_AllocChannel (snd))) {
|
2007-03-21 12:56:43 +00:00
|
|
|
ch->next = *_ch;
|
|
|
|
*_ch = ch;
|
|
|
|
}
|
|
|
|
return ch;
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_AmbientOff (snd_t *snd)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
|
|
|
snd_ambient = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_AmbientOn (snd_t *snd)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
|
|
|
snd_ambient = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-06-23 15:04:02 +00:00
|
|
|
s_updateAmbientSounds (snd_t *snd, const byte *ambient_sound_level)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
|
|
|
float vol;
|
|
|
|
int ambient_channel;
|
|
|
|
channel_t *chan;
|
|
|
|
sfx_t *sfx;
|
|
|
|
|
|
|
|
if (!snd_ambient)
|
|
|
|
return;
|
|
|
|
// calc ambient sound levels
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (!ambient_sound_level || !ambient_level) {
|
2007-03-17 03:14:41 +00:00
|
|
|
// if we're not in a leaf (huh?) or ambients have been turned off,
|
|
|
|
// stop all ambient channels.
|
|
|
|
for (ambient_channel = 0; ambient_channel < NUM_AMBIENTS;
|
|
|
|
ambient_channel++) {
|
2007-03-24 11:11:19 +00:00
|
|
|
chan = ambient_channels[ambient_channel];
|
|
|
|
if (chan) {
|
2007-03-24 10:13:10 +00:00
|
|
|
chan->master_vol = 0;
|
|
|
|
chan->leftvol = chan->rightvol = chan->master_vol;
|
|
|
|
}
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ambient_channel = 0; ambient_channel < NUM_AMBIENTS;
|
|
|
|
ambient_channel++) {
|
|
|
|
sfx = ambient_sfx[ambient_channel];
|
2007-03-24 10:13:10 +00:00
|
|
|
if (!sfx)
|
2007-03-17 03:14:41 +00:00
|
|
|
continue;
|
2007-03-18 10:32:01 +00:00
|
|
|
|
2007-03-24 10:13:10 +00:00
|
|
|
chan = ambient_channels[ambient_channel];
|
|
|
|
if (!chan) {
|
2021-06-23 15:04:02 +00:00
|
|
|
chan = ambient_channels[ambient_channel] = SND_AllocChannel (snd);
|
2007-03-24 10:13:10 +00:00
|
|
|
if (!chan)
|
|
|
|
continue;
|
|
|
|
}
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2007-03-18 10:45:29 +00:00
|
|
|
if (!chan->sfx) {
|
2007-03-18 10:32:01 +00:00
|
|
|
sfx = sfx->open (sfx);
|
2007-03-24 10:13:10 +00:00
|
|
|
if (!sfx)
|
|
|
|
continue;
|
2007-03-18 10:45:29 +00:00
|
|
|
sfx->retain (sfx);
|
|
|
|
} else {
|
2007-03-18 10:32:01 +00:00
|
|
|
sfx = chan->sfx;
|
2007-03-24 10:13:10 +00:00
|
|
|
//sfx->retain (sfx); //FIXME why is this necessary?
|
2007-03-18 10:45:29 +00:00
|
|
|
}
|
2007-03-18 10:32:01 +00:00
|
|
|
// sfx will be written to chan->sfx later to ensure mixer doesn't use
|
|
|
|
// channel prematurely.
|
2007-03-17 03:14:41 +00:00
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
vol = ambient_level * ambient_sound_level[ambient_channel];
|
2007-03-17 03:14:41 +00:00
|
|
|
if (vol < 8)
|
|
|
|
vol = 0;
|
|
|
|
|
|
|
|
// don't adjust volume too fast
|
|
|
|
if (chan->master_vol < vol) {
|
|
|
|
chan->master_vol += *snd_render_data.host_frametime
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
* ambient_fade;
|
2007-03-17 03:14:41 +00:00
|
|
|
if (chan->master_vol > vol)
|
|
|
|
chan->master_vol = vol;
|
|
|
|
} else if (chan->master_vol > vol) {
|
|
|
|
chan->master_vol -= *snd_render_data.host_frametime
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
* ambient_fade;
|
2007-03-17 03:14:41 +00:00
|
|
|
if (chan->master_vol < vol)
|
|
|
|
chan->master_vol = vol;
|
|
|
|
}
|
|
|
|
|
|
|
|
chan->leftvol = chan->rightvol = chan->master_vol;
|
2007-03-18 10:32:01 +00:00
|
|
|
chan->sfx = sfx;
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-06-23 15:04:02 +00:00
|
|
|
s_spatialize (snd_t *snd, channel_t *ch)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
|
|
|
int phase; // in samples
|
|
|
|
vec_t dist, dot, lscale, rscale, scale;
|
|
|
|
vec3_t source_vec;
|
|
|
|
|
|
|
|
// prepare to lerp from prev to next phase
|
|
|
|
ch->oldphase = ch->phase;
|
|
|
|
|
|
|
|
// anything coming from the view entity will always be full volume
|
2010-08-11 23:46:28 +00:00
|
|
|
if (!snd_render_data.viewentity
|
|
|
|
|| ch->entnum == *snd_render_data.viewentity) {
|
2007-03-17 03:14:41 +00:00
|
|
|
ch->leftvol = ch->master_vol;
|
|
|
|
ch->rightvol = ch->master_vol;
|
|
|
|
ch->phase = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// calculate stereo seperation and distance attenuation
|
|
|
|
|
|
|
|
VectorSubtract (ch->origin, listener_origin, source_vec);
|
|
|
|
|
|
|
|
dist = VectorNormalize (source_vec) * ch->dist_mult;
|
|
|
|
|
|
|
|
dot = DotProduct (listener_right, source_vec);
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (snd_swapchannelside)
|
2010-11-21 05:08:18 +00:00
|
|
|
dot = -dot;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
if (snd->channels == 1) {
|
2007-03-17 03:14:41 +00:00
|
|
|
rscale = 1.0;
|
|
|
|
lscale = 1.0;
|
|
|
|
phase = 0;
|
|
|
|
} else {
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
rscale = 1.0 + dot * snd_volumesep;
|
|
|
|
lscale = 1.0 - dot * snd_volumesep;
|
|
|
|
phase = snd_phasesep * 0.001 * snd->speed * dot;
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// add in distance effect
|
|
|
|
scale = (1.0 - dist) * rscale;
|
|
|
|
ch->rightvol = (int) (ch->master_vol * scale);
|
|
|
|
if (ch->rightvol < 0)
|
|
|
|
ch->rightvol = 0;
|
|
|
|
|
|
|
|
scale = (1.0 - dist) * lscale;
|
|
|
|
ch->leftvol = (int) (ch->master_vol * scale);
|
|
|
|
if (ch->leftvol < 0)
|
|
|
|
ch->leftvol = 0;
|
|
|
|
|
|
|
|
ch->phase = phase;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
2021-06-23 15:04:02 +00:00
|
|
|
s_update_channel (snd_t *snd, channel_t *ch)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
|
|
|
if (!ch->sfx)
|
|
|
|
return 0;
|
2021-06-23 15:04:02 +00:00
|
|
|
s_spatialize (snd, ch);
|
2007-03-17 03:14:41 +00:00
|
|
|
if (!ch->leftvol && !ch->rightvol)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
s_combine_channel (channel_t *combine, channel_t *ch)
|
|
|
|
{
|
|
|
|
combine->leftvol += ch->leftvol;
|
|
|
|
combine->rightvol += ch->rightvol;
|
|
|
|
ch->leftvol = ch->rightvol = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-02-28 07:59:38 +00:00
|
|
|
SND_SetListener (snd_t *snd, transform_t *ear, const byte *ambient_sound_level)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
channel_t *combine, *ch;
|
|
|
|
|
2022-02-28 07:59:38 +00:00
|
|
|
if (ear) {
|
|
|
|
listener_origin = Transform_GetWorldPosition (ear);
|
|
|
|
listener_forward = Transform_Forward (ear);
|
|
|
|
listener_right = Transform_Right (ear);
|
|
|
|
listener_up = Transform_Up (ear);
|
|
|
|
} else {
|
2022-02-28 16:02:11 +00:00
|
|
|
listener_origin = (vec4f_t) {0, 0, 0, 1};
|
2022-02-28 07:59:38 +00:00
|
|
|
listener_forward = (vec4f_t) {1, 0, 0, 0};
|
|
|
|
listener_right = (vec4f_t) {0, -1, 0, 0};
|
|
|
|
listener_up = (vec4f_t) {0, 0, 1, 0};
|
|
|
|
}
|
2007-03-17 03:14:41 +00:00
|
|
|
|
|
|
|
// update general area ambient sound sources
|
2021-06-23 15:04:02 +00:00
|
|
|
s_updateAmbientSounds (snd, ambient_sound_level);
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2012-05-21 23:23:22 +00:00
|
|
|
// update spatialization for dynamic sounds
|
2007-03-21 12:56:43 +00:00
|
|
|
for (ch = dynamic_channels; ch; ch = ch->next)
|
2021-06-23 15:04:02 +00:00
|
|
|
s_update_channel (snd, ch);
|
2007-03-21 12:56:43 +00:00
|
|
|
for (ch = looped_dynamic_channels; ch; ch = ch->next)
|
2021-06-23 15:04:02 +00:00
|
|
|
s_update_channel (snd, ch);
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2012-05-21 23:23:22 +00:00
|
|
|
// update spatialization for static sounds
|
2007-03-17 03:14:41 +00:00
|
|
|
combine = 0;
|
|
|
|
for (i = 0; i < snd_num_statics; i++) {
|
|
|
|
ch = static_channels[i];
|
2021-06-23 15:04:02 +00:00
|
|
|
if (!s_update_channel (snd, ch))
|
2007-03-17 03:14:41 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// try to combine static sounds with a previous channel of the same
|
|
|
|
// sound effect so we don't mix five torches every frame
|
|
|
|
// see if it can just use the last one
|
|
|
|
if (combine && combine->sfx == ch->sfx) {
|
|
|
|
s_combine_channel (combine, ch);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// search for one
|
|
|
|
for (j = 0; j < i; j++) {
|
|
|
|
combine = static_channels[j];
|
|
|
|
if (combine->sfx == ch->sfx)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (j == i) {
|
|
|
|
combine = 0;
|
|
|
|
} else {
|
|
|
|
if (combine != ch)
|
|
|
|
s_combine_channel (combine, ch);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-25 08:12:43 +00:00
|
|
|
static int
|
2021-06-23 15:04:02 +00:00
|
|
|
snd_check_channels (snd_t *snd, channel_t *target_chan, const channel_t *check,
|
2007-03-25 08:12:43 +00:00
|
|
|
const sfx_t *osfx)
|
|
|
|
{
|
|
|
|
if (!check || check == target_chan)
|
|
|
|
return 0;
|
|
|
|
if (check->sfx->owner == osfx->owner && !check->pos) {
|
2021-06-23 15:04:02 +00:00
|
|
|
int skip = rand () % (int) (0.01 * snd->speed);
|
2007-03-25 08:12:43 +00:00
|
|
|
target_chan->pos = -skip;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-03-17 03:14:41 +00:00
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_StartSound (snd_t *snd, int entnum, int entchannel, sfx_t *sfx,
|
2022-03-30 14:38:01 +00:00
|
|
|
vec4f_t origin, float fvol, float attenuation)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
2007-03-21 12:56:43 +00:00
|
|
|
int vol;
|
2007-03-27 06:15:57 +00:00
|
|
|
int looped;
|
2007-03-17 03:14:41 +00:00
|
|
|
channel_t *target_chan, *check;
|
2007-03-18 10:32:01 +00:00
|
|
|
sfx_t *osfx;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
if (!sfx || !snd->speed)
|
2007-03-17 03:14:41 +00:00
|
|
|
return;
|
|
|
|
// pick a channel to play on
|
2007-03-27 06:15:57 +00:00
|
|
|
looped = sfx->loopstart != (unsigned) -1;
|
2021-06-23 15:04:02 +00:00
|
|
|
target_chan = s_pick_channel (snd, entnum, entchannel, looped);
|
2007-03-17 03:14:41 +00:00
|
|
|
if (!target_chan)
|
|
|
|
return;
|
2007-03-25 08:30:06 +00:00
|
|
|
|
2007-03-17 03:14:41 +00:00
|
|
|
vol = fvol * 255;
|
|
|
|
|
|
|
|
// spatialize
|
|
|
|
VectorCopy (origin, target_chan->origin);
|
|
|
|
target_chan->dist_mult = attenuation / sound_nominal_clip_dist;
|
|
|
|
target_chan->master_vol = vol;
|
|
|
|
target_chan->entnum = entnum;
|
|
|
|
target_chan->entchannel = entchannel;
|
2021-06-23 15:04:02 +00:00
|
|
|
s_spatialize (snd, target_chan);
|
2007-03-17 03:14:41 +00:00
|
|
|
|
|
|
|
// new channel
|
2007-03-27 06:15:57 +00:00
|
|
|
if (!(osfx = sfx->open (sfx))) {
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd, unlink_channel (looped ? &looped_dynamic_channels
|
2007-03-27 06:15:57 +00:00
|
|
|
: &dynamic_channels));
|
2007-03-17 03:14:41 +00:00
|
|
|
return;
|
2007-03-27 06:15:57 +00:00
|
|
|
}
|
2007-03-25 07:45:13 +00:00
|
|
|
target_chan->pos = 0;
|
|
|
|
target_chan->end = 0;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
|
|
|
// if an identical sound has also been started this frame, offset the pos
|
|
|
|
// a bit to keep it from just making the first one louder
|
2007-03-25 08:12:43 +00:00
|
|
|
for (check = dynamic_channels; check; check = check->next)
|
2021-06-23 15:04:02 +00:00
|
|
|
if (snd_check_channels (snd, target_chan, check, osfx))
|
2007-03-21 12:56:43 +00:00
|
|
|
break;
|
2007-03-25 08:12:43 +00:00
|
|
|
for (check = looped_dynamic_channels; check; check = check->next)
|
2021-06-23 15:04:02 +00:00
|
|
|
if (snd_check_channels (snd, target_chan, check, osfx))
|
2007-03-17 03:14:41 +00:00
|
|
|
break;
|
2007-03-27 00:50:08 +00:00
|
|
|
if (!osfx->retain (osfx)) {
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd, unlink_channel (looped ? &looped_dynamic_channels
|
2007-03-27 06:15:57 +00:00
|
|
|
: &dynamic_channels));
|
2007-03-18 13:29:58 +00:00
|
|
|
return; // couldn't load the sound's data
|
2007-03-27 00:50:08 +00:00
|
|
|
}
|
2007-03-18 10:32:01 +00:00
|
|
|
target_chan->sfx = osfx;
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
|
2007-03-21 12:56:43 +00:00
|
|
|
static int
|
2021-06-23 15:04:02 +00:00
|
|
|
s_check_stop (snd_t *snd, channel_t **_ch, int entnum, int entchannel)
|
2007-03-21 12:56:43 +00:00
|
|
|
{
|
2007-03-27 06:15:57 +00:00
|
|
|
if ((*_ch)->entnum == entnum && (*_ch)->entchannel == entchannel) {
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_ChannelStop (snd, unlink_channel (_ch));
|
2007-03-21 12:56:43 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-03-17 03:14:41 +00:00
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_StopSound (snd_t *snd, int entnum, int entchannel)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
2007-03-21 12:56:43 +00:00
|
|
|
channel_t **_ch;
|
|
|
|
|
|
|
|
for (_ch = &dynamic_channels; *_ch; )
|
2021-06-23 15:04:02 +00:00
|
|
|
if (!s_check_stop (snd, _ch, entnum, entchannel))
|
2007-03-21 12:56:43 +00:00
|
|
|
_ch = &(*_ch)->next;
|
|
|
|
for (_ch = &looped_dynamic_channels; *_ch; )
|
2021-06-23 15:04:02 +00:00
|
|
|
if (!s_check_stop (snd, _ch, entnum, entchannel))
|
2007-03-21 12:56:43 +00:00
|
|
|
_ch = &(*_ch)->next;
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-03-30 14:38:01 +00:00
|
|
|
SND_StaticSound (snd_t *snd, sfx_t *sfx, vec4f_t origin, float vol,
|
2007-03-17 03:14:41 +00:00
|
|
|
float attenuation)
|
|
|
|
{
|
|
|
|
channel_t *ss;
|
2007-03-18 10:32:01 +00:00
|
|
|
sfx_t *osfx;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
|
|
|
if (!sfx)
|
|
|
|
return;
|
2007-03-27 06:15:57 +00:00
|
|
|
if (sfx->loopstart == (unsigned int) -1) {
|
|
|
|
Sys_Printf ("Sound %s not looped\n", sfx->name);
|
|
|
|
return;
|
|
|
|
}
|
2007-03-17 03:14:41 +00:00
|
|
|
|
|
|
|
if (!static_channels[snd_num_statics]) {
|
2021-06-23 15:04:02 +00:00
|
|
|
if (!(static_channels[snd_num_statics] = SND_AllocChannel (snd))) {
|
2007-03-17 03:14:41 +00:00
|
|
|
Sys_Printf ("ran out of channels\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ss = static_channels[snd_num_statics];
|
|
|
|
|
2007-03-27 04:12:04 +00:00
|
|
|
if (!(osfx = sfx->open (sfx)))
|
2007-03-17 03:14:41 +00:00
|
|
|
return;
|
2007-03-27 04:12:04 +00:00
|
|
|
|
2007-03-17 03:14:41 +00:00
|
|
|
VectorCopy (origin, ss->origin);
|
|
|
|
ss->master_vol = vol;
|
|
|
|
ss->dist_mult = (attenuation / 64) / sound_nominal_clip_dist;
|
2007-05-06 08:35:28 +00:00
|
|
|
ss->end = 0;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
s_spatialize (snd, ss);
|
2007-03-17 03:14:41 +00:00
|
|
|
ss->oldphase = ss->phase;
|
2007-03-18 10:32:01 +00:00
|
|
|
|
2007-03-27 04:12:04 +00:00
|
|
|
if (!osfx->retain (osfx))
|
|
|
|
return;
|
|
|
|
snd_num_statics++;
|
2007-03-18 10:32:01 +00:00
|
|
|
ss->sfx = osfx;
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_LocalSound (snd_t *snd, const char *sound)
|
2007-03-17 03:14:41 +00:00
|
|
|
{
|
|
|
|
sfx_t *sfx;
|
2012-12-17 06:07:49 +00:00
|
|
|
int viewent = 0;
|
2007-03-17 03:14:41 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
sfx = SND_PrecacheSound (snd, sound);
|
2007-03-17 03:14:41 +00:00
|
|
|
if (!sfx) {
|
|
|
|
Sys_Printf ("S_LocalSound: can't cache %s\n", sound);
|
|
|
|
return;
|
|
|
|
}
|
2012-12-17 06:07:49 +00:00
|
|
|
if (snd_render_data.viewentity)
|
|
|
|
viewent = *snd_render_data.viewentity;
|
2022-03-30 14:38:01 +00:00
|
|
|
SND_StartSound (snd, viewent, -1, sfx, (vec4f_t) {0, 0, 0, 1}, 1, 1);
|
2007-03-17 03:14:41 +00:00
|
|
|
}
|