2001-04-10 09:40:09 +00:00
|
|
|
/*
|
|
|
|
snd_mix.c
|
|
|
|
|
|
|
|
portable code to mix sounds for snd_dma.c
|
|
|
|
|
|
|
|
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
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-04-10 09:40:09 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
2003-01-31 20:51:04 +00:00
|
|
|
#include "winquake.h"
|
|
|
|
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-04-10 21:45:42 +00:00
|
|
|
#include "QF/sound.h"
|
2001-09-21 04:22:46 +00:00
|
|
|
#include "QF/sys.h"
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2001-08-22 20:26:25 +00:00
|
|
|
#include "compat.h"
|
2011-07-23 06:56:22 +00:00
|
|
|
#include "snd_internal.h"
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2022-06-03 07:54:57 +00:00
|
|
|
#define VOLSCALE 0.5 // so mixing is less likely to overflow
|
2010-08-11 23:44:34 +00:00
|
|
|
|
2007-03-17 07:05:24 +00:00
|
|
|
portable_samplepair_t snd_paintbuffer[PAINTBUFFER_SIZE * 2];
|
2004-01-08 01:48:02 +00:00
|
|
|
static int max_overpaint; // number of extra samples painted
|
2001-04-10 09:40:09 +00:00
|
|
|
// due to phase shift
|
|
|
|
|
2001-08-27 01:00:03 +00:00
|
|
|
/* CHANNEL MIXING */
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2007-03-25 06:42:14 +00:00
|
|
|
static inline int
|
2022-06-05 07:57:13 +00:00
|
|
|
check_channel_end (channel_t *ch, sfxbuffer_t *sb, int count, unsigned ltime)
|
2007-03-25 06:42:14 +00:00
|
|
|
{
|
2007-03-26 13:30:56 +00:00
|
|
|
if (count <= 0 || ltime >= ch->end) {
|
2022-06-05 07:57:13 +00:00
|
|
|
if (ch->loopstart != (unsigned) -1) {
|
|
|
|
ch->pos = ch->loopstart;
|
|
|
|
ch->end = ltime + sb->sfx_length - ch->pos;
|
2007-03-25 06:42:14 +00:00
|
|
|
} else { // channel just stopped
|
|
|
|
ch->done = 1;
|
2007-03-27 03:49:42 +00:00
|
|
|
return 1;
|
2007-03-25 06:42:14 +00:00
|
|
|
}
|
|
|
|
}
|
2007-03-27 03:49:42 +00:00
|
|
|
return 0;
|
2007-03-25 06:42:14 +00:00
|
|
|
}
|
|
|
|
|
2007-03-26 11:44:52 +00:00
|
|
|
static inline void
|
2022-06-03 10:11:25 +00:00
|
|
|
snd_paint_channel (channel_t *ch, sfxbuffer_t *sb, int count)
|
2007-03-26 11:44:52 +00:00
|
|
|
{
|
|
|
|
unsigned pos;
|
|
|
|
int offs = 0;
|
2010-08-11 23:44:34 +00:00
|
|
|
float *samps;
|
2007-03-26 11:44:52 +00:00
|
|
|
|
|
|
|
if ((int) ch->pos < 0) {
|
|
|
|
ch->pos += count;
|
|
|
|
if ((int) ch->pos <= 0)
|
|
|
|
return;
|
2007-05-06 08:35:28 +00:00
|
|
|
offs = count - ch->pos;
|
2007-03-26 11:44:52 +00:00
|
|
|
count -= offs;
|
|
|
|
ch->pos = 0;
|
|
|
|
}
|
2022-06-04 08:05:03 +00:00
|
|
|
if (ch->pos < sb->pos || ch->pos - sb->pos >= sb->size)
|
2022-06-03 10:11:25 +00:00
|
|
|
sb->setpos (sb, ch->pos);
|
2022-06-04 08:05:03 +00:00
|
|
|
pos = (ch->pos - sb->pos + sb->tail) % sb->size;
|
2022-06-03 10:11:25 +00:00
|
|
|
samps = sb->data + pos * sb->channels;
|
|
|
|
|
2022-06-04 08:05:03 +00:00
|
|
|
if (pos + count > sb->size) {
|
|
|
|
unsigned sub = sb->size - pos;
|
2022-06-03 10:11:25 +00:00
|
|
|
sb->paint (offs, ch, samps, sub);
|
|
|
|
sb->paint (offs + sub, ch, sb->data, count - sub);
|
2007-03-26 11:44:52 +00:00
|
|
|
} else {
|
2022-06-03 10:11:25 +00:00
|
|
|
sb->paint (offs, ch, samps, count);
|
2007-03-26 11:44:52 +00:00
|
|
|
}
|
|
|
|
ch->pos += count;
|
|
|
|
}
|
|
|
|
|
2001-04-10 09:40:09 +00:00
|
|
|
void
|
2021-06-23 15:04:02 +00:00
|
|
|
SND_PaintChannels (snd_t *snd, unsigned endtime)
|
2001-04-10 09:40:09 +00:00
|
|
|
{
|
2007-03-26 11:44:52 +00:00
|
|
|
unsigned end, ltime;
|
2003-04-17 02:40:17 +00:00
|
|
|
int i, count;
|
2001-04-10 09:40:09 +00:00
|
|
|
channel_t *ch;
|
2022-06-03 10:11:25 +00:00
|
|
|
sfxbuffer_t *sb;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2007-03-26 11:44:52 +00:00
|
|
|
// clear the paint buffer
|
2010-08-11 23:44:34 +00:00
|
|
|
for (i = 0; i < PAINTBUFFER_SIZE * 2; i++) {
|
|
|
|
snd_paintbuffer[i].left = 0;
|
|
|
|
snd_paintbuffer[i].right = 0;
|
|
|
|
}
|
2007-03-26 11:44:52 +00:00
|
|
|
|
2021-06-26 07:18:18 +00:00
|
|
|
while (snd->paintedtime < endtime) {
|
2007-03-17 07:05:24 +00:00
|
|
|
// if snd_paintbuffer is smaller than DMA buffer
|
2001-04-10 09:40:09 +00:00
|
|
|
end = endtime;
|
2021-06-26 07:18:18 +00:00
|
|
|
if (end - snd->paintedtime > PAINTBUFFER_SIZE)
|
|
|
|
end = snd->paintedtime + PAINTBUFFER_SIZE;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
max_overpaint = 0;
|
|
|
|
|
|
|
|
// paint in the channels.
|
2007-03-10 04:21:32 +00:00
|
|
|
ch = snd_channels;
|
|
|
|
for (i = 0; i < snd_total_channels; i++, ch++) {
|
2022-06-05 07:57:13 +00:00
|
|
|
if (!(sb = ch->buffer)) {
|
2022-06-04 03:10:09 +00:00
|
|
|
// channel is inactive
|
2001-04-10 09:40:09 +00:00
|
|
|
continue;
|
2022-06-04 03:10:09 +00:00
|
|
|
}
|
2007-03-25 06:42:14 +00:00
|
|
|
if (ch->stop || ch->done) {
|
2007-03-26 13:30:56 +00:00
|
|
|
ch->done = 1; // acknowledge stopped signal
|
2001-04-10 09:40:09 +00:00
|
|
|
continue;
|
2007-03-25 06:42:14 +00:00
|
|
|
}
|
2007-03-27 06:15:57 +00:00
|
|
|
if (ch->pause)
|
|
|
|
continue;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2007-03-26 13:30:56 +00:00
|
|
|
if (!ch->end)
|
2022-06-05 07:57:13 +00:00
|
|
|
ch->end = snd->paintedtime + sb->sfx_length - ch->pos;
|
2007-03-26 13:30:56 +00:00
|
|
|
|
2021-06-26 07:18:18 +00:00
|
|
|
ltime = snd->paintedtime;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
while (ltime < end) { // paint up to end
|
2007-03-26 13:30:56 +00:00
|
|
|
count = ((ch->end < end) ? ch->end : end) - ltime;
|
2001-04-10 09:40:09 +00:00
|
|
|
if (count > 0) {
|
2007-03-26 13:30:56 +00:00
|
|
|
if (ch->leftvol || ch->rightvol) {
|
2022-06-03 10:11:25 +00:00
|
|
|
snd_paint_channel (ch, sb, count);
|
|
|
|
if (sb->advance) {
|
|
|
|
if (!sb->advance (sb, count)) {
|
2010-08-13 01:48:20 +00:00
|
|
|
// this channel can no longer be used as its
|
|
|
|
// source has died.
|
|
|
|
ch->done = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-03-26 13:30:56 +00:00
|
|
|
}
|
|
|
|
ltime += count;
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
2003-04-15 02:34:17 +00:00
|
|
|
|
2022-06-05 07:57:13 +00:00
|
|
|
if (check_channel_end (ch, sb, count, ltime))
|
2007-03-25 06:42:14 +00:00
|
|
|
break;
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// transfer out according to DMA format
|
2021-06-26 07:18:18 +00:00
|
|
|
snd->xfer (snd, snd_paintbuffer, end - snd->paintedtime,
|
[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
|
|
|
snd_volume);
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2021-06-26 07:18:18 +00:00
|
|
|
memmove (snd_paintbuffer, snd_paintbuffer + end - snd->paintedtime,
|
2007-03-17 07:05:24 +00:00
|
|
|
max_overpaint * sizeof (snd_paintbuffer[0]));
|
|
|
|
memset (snd_paintbuffer + max_overpaint, 0, sizeof (snd_paintbuffer)
|
|
|
|
- max_overpaint * sizeof (snd_paintbuffer[0]));
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2021-06-26 07:18:18 +00:00
|
|
|
snd->paintedtime = end;
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-12 02:28:27 +00:00
|
|
|
static inline void
|
|
|
|
snd_mix_single (portable_samplepair_t *pair, float **samp,
|
|
|
|
float lvol, float rvol)
|
|
|
|
{
|
|
|
|
float single = *(*samp)++;
|
|
|
|
|
|
|
|
pair->left += single * lvol;
|
|
|
|
pair->right += single * rvol;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
snd_mix_pair (portable_samplepair_t *pair, float **samp,
|
|
|
|
float lvol, float rvol)
|
|
|
|
{
|
|
|
|
float left = *(*samp)++;
|
|
|
|
float right = *(*samp)++;
|
|
|
|
|
|
|
|
pair->left += left * lvol;
|
|
|
|
pair->right += right * rvol;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2022-06-04 03:27:11 +00:00
|
|
|
snd_mix_triple (portable_samplepair_t *pair, float **samp,
|
2010-08-12 02:28:27 +00:00
|
|
|
float lvol, float rvol)
|
|
|
|
{
|
|
|
|
float left = *(*samp)++;
|
|
|
|
float center = *(*samp)++;
|
|
|
|
float right = *(*samp)++;
|
|
|
|
|
|
|
|
pair->left += left * lvol;
|
|
|
|
pair->left += center * lvol;
|
|
|
|
pair->right += center * rvol;
|
|
|
|
pair->right += right * rvol;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mono
|
|
|
|
center
|
|
|
|
Spacializes the sound.
|
|
|
|
*/
|
2003-04-14 15:47:08 +00:00
|
|
|
static void
|
2010-08-11 23:44:34 +00:00
|
|
|
snd_paint_mono (int offs, channel_t *ch, float *sfx, unsigned count)
|
2001-04-10 09:40:09 +00:00
|
|
|
{
|
2010-08-11 23:44:34 +00:00
|
|
|
float leftvol, rightvol;
|
2007-03-26 11:44:52 +00:00
|
|
|
unsigned left_phase, right_phase; // Never allowed < 0 anyway
|
|
|
|
unsigned i = 0;
|
2003-04-14 15:47:08 +00:00
|
|
|
portable_samplepair_t *pair;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2022-06-03 07:54:57 +00:00
|
|
|
leftvol = ch->leftvol * VOLSCALE;
|
|
|
|
rightvol = ch->rightvol * VOLSCALE;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
max_overpaint = max (abs (ch->phase),
|
|
|
|
max (abs (ch->oldphase), max_overpaint));
|
|
|
|
|
2007-03-17 07:05:24 +00:00
|
|
|
pair = snd_paintbuffer + offs;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
if (ch->phase >= 0) {
|
|
|
|
left_phase = ch->phase;
|
|
|
|
right_phase = 0;
|
|
|
|
} else {
|
|
|
|
left_phase = 0;
|
|
|
|
right_phase = -ch->phase;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch->oldphase != ch->phase) {
|
2007-03-26 11:44:52 +00:00
|
|
|
unsigned old_phase_left, old_phase_right;
|
|
|
|
unsigned new_phase_left, new_phase_right;
|
|
|
|
unsigned count_left, count_right, c;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
if (ch->oldphase >= 0) {
|
|
|
|
old_phase_left = ch->oldphase;
|
|
|
|
old_phase_right = 0;
|
|
|
|
} else {
|
|
|
|
old_phase_left = 0;
|
|
|
|
old_phase_right = -ch->oldphase;
|
|
|
|
}
|
|
|
|
new_phase_left = left_phase;
|
|
|
|
new_phase_right = right_phase;
|
|
|
|
|
|
|
|
if (new_phase_left > old_phase_left)
|
|
|
|
count_left = 2 * (new_phase_left - old_phase_left);
|
|
|
|
else
|
|
|
|
count_left = old_phase_left - new_phase_left;
|
|
|
|
|
|
|
|
if (new_phase_right > old_phase_right)
|
|
|
|
count_right = 2 * (new_phase_right - old_phase_right);
|
|
|
|
else
|
|
|
|
count_right = old_phase_right - new_phase_right;
|
|
|
|
|
|
|
|
c = min (count, max (count_right, count_left));
|
|
|
|
count -= c;
|
|
|
|
while (c) {
|
2010-08-11 23:44:34 +00:00
|
|
|
float left = sfx[i] * leftvol;
|
|
|
|
float right = sfx[i] * rightvol;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
if (new_phase_left < old_phase_left) {
|
|
|
|
if (!(count_left & 1)) {
|
2003-04-14 15:47:08 +00:00
|
|
|
pair[i + old_phase_left].left += left;
|
2001-04-10 09:40:09 +00:00
|
|
|
old_phase_left--;
|
|
|
|
}
|
|
|
|
count_left--;
|
|
|
|
} else {
|
2001-12-18 03:59:37 +00:00
|
|
|
if (new_phase_left > old_phase_left) {
|
2003-04-14 15:47:08 +00:00
|
|
|
pair[i + old_phase_left].left += left;
|
2001-12-18 03:59:37 +00:00
|
|
|
old_phase_left++;
|
|
|
|
}
|
2003-04-14 15:47:08 +00:00
|
|
|
pair[i + old_phase_left].left += left;
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (new_phase_right < old_phase_right) {
|
|
|
|
if (!(count_right & 1)) {
|
2003-04-14 15:47:08 +00:00
|
|
|
pair[i + old_phase_right].right += right;
|
2001-04-10 09:40:09 +00:00
|
|
|
old_phase_right--;
|
|
|
|
}
|
|
|
|
count_right--;
|
|
|
|
} else {
|
2001-12-18 03:59:37 +00:00
|
|
|
if (new_phase_right > old_phase_right) {
|
2003-04-14 15:47:08 +00:00
|
|
|
pair[i + old_phase_right].right += right;
|
2001-12-18 03:59:37 +00:00
|
|
|
old_phase_right++;
|
|
|
|
}
|
2003-04-14 15:47:08 +00:00
|
|
|
pair[i + old_phase_right].right += right;
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
c--;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
2010-08-11 23:44:34 +00:00
|
|
|
pair[i + left_phase].left += sfx[i] * leftvol;
|
|
|
|
pair[i + right_phase].right += sfx[i] * rightvol;
|
2003-04-08 22:23:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-12 02:28:27 +00:00
|
|
|
/* stereo
|
|
|
|
left, right
|
|
|
|
Does not spacialize the sound.
|
|
|
|
*/
|
2003-04-14 15:47:08 +00:00
|
|
|
static void
|
2010-08-11 23:44:34 +00:00
|
|
|
snd_paint_stereo (int offs, channel_t *ch, float *samp, unsigned count)
|
2003-04-08 22:23:16 +00:00
|
|
|
{
|
|
|
|
portable_samplepair_t *pair;
|
2022-06-03 07:54:57 +00:00
|
|
|
float leftvol = ch->leftvol * VOLSCALE;
|
|
|
|
float rightvol = ch->rightvol * VOLSCALE;
|
2003-04-08 22:23:16 +00:00
|
|
|
|
2007-03-17 07:05:24 +00:00
|
|
|
pair = snd_paintbuffer + offs;
|
2003-04-08 22:23:16 +00:00
|
|
|
while (count-- > 0) {
|
2010-08-12 02:28:27 +00:00
|
|
|
snd_mix_pair (pair, &samp, leftvol, rightvol);
|
|
|
|
pair++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 1d surround
|
|
|
|
left, center, right
|
|
|
|
Does not spacialize the sound.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
snd_paint_3 (int offs, channel_t *ch, float *samp, unsigned count)
|
|
|
|
{
|
|
|
|
portable_samplepair_t *pair;
|
2022-06-03 07:54:57 +00:00
|
|
|
float leftvol = ch->leftvol * VOLSCALE;
|
|
|
|
float rightvol = ch->rightvol * VOLSCALE;
|
2010-08-12 02:28:27 +00:00
|
|
|
|
|
|
|
pair = snd_paintbuffer + offs;
|
|
|
|
while (count-- > 0) {
|
2022-06-04 03:27:11 +00:00
|
|
|
snd_mix_triple (pair, &samp, leftvol, rightvol);
|
2010-08-12 02:28:27 +00:00
|
|
|
pair++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* quadraphonic surround
|
|
|
|
front (left, right),
|
|
|
|
rear (left, right)
|
|
|
|
Does not spacialize the sound.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
snd_paint_4 (int offs, channel_t *ch, float *samp, unsigned count)
|
|
|
|
{
|
|
|
|
portable_samplepair_t *pair;
|
2022-06-03 07:54:57 +00:00
|
|
|
float leftvol = ch->leftvol * VOLSCALE;
|
|
|
|
float rightvol = ch->rightvol * VOLSCALE;
|
2010-08-12 02:28:27 +00:00
|
|
|
|
|
|
|
pair = snd_paintbuffer + offs;
|
|
|
|
while (count-- > 0) {
|
|
|
|
snd_mix_pair (pair, &samp, leftvol, rightvol);
|
|
|
|
snd_mix_pair (pair, &samp, leftvol, rightvol);
|
|
|
|
pair++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* five-channel surround
|
|
|
|
front (left, center, right),
|
|
|
|
rear (left, right)
|
|
|
|
Does not spacialize the sound.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
snd_paint_5 (int offs, channel_t *ch, float *samp, unsigned count)
|
|
|
|
{
|
|
|
|
portable_samplepair_t *pair;
|
2022-06-03 07:54:57 +00:00
|
|
|
float leftvol = ch->leftvol * VOLSCALE;
|
|
|
|
float rightvol = ch->rightvol * VOLSCALE;
|
2010-08-12 02:28:27 +00:00
|
|
|
|
|
|
|
pair = snd_paintbuffer + offs;
|
|
|
|
while (count-- > 0) {
|
2022-06-04 03:27:11 +00:00
|
|
|
snd_mix_triple (pair, &samp, leftvol, rightvol);
|
2010-08-12 02:28:27 +00:00
|
|
|
snd_mix_pair (pair, &samp, leftvol, rightvol);
|
|
|
|
pair++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 5.1 surround
|
|
|
|
front (left, center, right),
|
|
|
|
rear (left, right),
|
|
|
|
lfe
|
|
|
|
Does not spacialize the sound.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
snd_paint_6 (int offs, channel_t *ch, float *samp, unsigned count)
|
|
|
|
{
|
|
|
|
portable_samplepair_t *pair;
|
2022-06-03 07:54:57 +00:00
|
|
|
float leftvol = ch->leftvol * VOLSCALE;
|
|
|
|
float rightvol = ch->rightvol * VOLSCALE;
|
2010-08-12 02:28:27 +00:00
|
|
|
|
|
|
|
pair = snd_paintbuffer + offs;
|
|
|
|
while (count-- > 0) {
|
2022-06-04 03:27:11 +00:00
|
|
|
snd_mix_triple (pair, &samp, leftvol, rightvol);
|
2010-08-12 02:28:27 +00:00
|
|
|
snd_mix_pair (pair, &samp, leftvol, rightvol);
|
|
|
|
snd_mix_single (pair, &samp, leftvol, rightvol);
|
|
|
|
pair++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 6.1 surround
|
|
|
|
front (left, center, right),
|
|
|
|
side (left, right),
|
|
|
|
rear (center),
|
|
|
|
lfe
|
|
|
|
Does not spacialize the sound.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
snd_paint_7 (int offs, channel_t *ch, float *samp, unsigned count)
|
|
|
|
{
|
|
|
|
portable_samplepair_t *pair;
|
2022-06-03 07:54:57 +00:00
|
|
|
float leftvol = ch->leftvol * VOLSCALE;
|
|
|
|
float rightvol = ch->rightvol * VOLSCALE;
|
2010-08-12 02:28:27 +00:00
|
|
|
|
|
|
|
pair = snd_paintbuffer + offs;
|
|
|
|
while (count-- > 0) {
|
2022-06-04 03:27:11 +00:00
|
|
|
snd_mix_triple (pair, &samp, leftvol, rightvol);
|
2010-08-12 02:28:27 +00:00
|
|
|
snd_mix_pair (pair, &samp, leftvol, rightvol);
|
|
|
|
snd_mix_single (pair, &samp, leftvol, rightvol);
|
|
|
|
snd_mix_single (pair, &samp, leftvol, rightvol);
|
|
|
|
pair++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 7.1 surround
|
|
|
|
front (left, center, right),
|
|
|
|
side (left, right),
|
|
|
|
rear (left, right),
|
|
|
|
lfe
|
|
|
|
Does not spacialize the sound.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
snd_paint_8 (int offs, channel_t *ch, float *samp, unsigned count)
|
|
|
|
{
|
|
|
|
portable_samplepair_t *pair;
|
2022-06-03 07:54:57 +00:00
|
|
|
float leftvol = ch->leftvol * VOLSCALE;
|
|
|
|
float rightvol = ch->rightvol * VOLSCALE;
|
2010-08-12 02:28:27 +00:00
|
|
|
|
|
|
|
pair = snd_paintbuffer + offs;
|
|
|
|
while (count-- > 0) {
|
2022-06-04 03:27:11 +00:00
|
|
|
snd_mix_triple (pair, &samp, leftvol, rightvol);
|
2010-08-12 02:28:27 +00:00
|
|
|
snd_mix_pair (pair, &samp, leftvol, rightvol);
|
|
|
|
snd_mix_pair (pair, &samp, leftvol, rightvol);
|
|
|
|
snd_mix_single (pair, &samp, leftvol, rightvol);
|
2003-04-08 22:23:16 +00:00
|
|
|
pair++;
|
|
|
|
}
|
|
|
|
}
|
2003-04-14 15:47:08 +00:00
|
|
|
|
|
|
|
void
|
2022-06-03 10:11:25 +00:00
|
|
|
SND_SetPaint (sfxbuffer_t *sb)
|
2003-04-14 15:47:08 +00:00
|
|
|
{
|
2010-08-12 02:28:27 +00:00
|
|
|
static sfxpaint_t *painters[] = {
|
|
|
|
0,
|
|
|
|
snd_paint_mono,
|
|
|
|
snd_paint_stereo,
|
|
|
|
snd_paint_3,
|
|
|
|
snd_paint_4,
|
|
|
|
snd_paint_5,
|
|
|
|
snd_paint_6,
|
|
|
|
snd_paint_7,
|
|
|
|
snd_paint_8,
|
|
|
|
};
|
|
|
|
|
2022-06-05 07:57:13 +00:00
|
|
|
if (sb->channels > 8 || !sb->channels)
|
|
|
|
Sys_Error ("invaliid channel count %d", sb->channels);
|
|
|
|
sb->paint = painters[sb->channels];
|
2003-04-14 15:47:08 +00:00
|
|
|
}
|