2001-05-19 00:05:35 +00:00
|
|
|
/*
|
|
|
|
snd_plugin.c
|
|
|
|
|
|
|
|
sound plugin wrapper
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
|
|
|
Please see the file "AUTHORS" for a list of contributors
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
2001-10-10 05:52:14 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2005-08-04 15:27:09 +00:00
|
|
|
static __attribute__ ((used)) const char rcsid[] =
|
2003-01-15 15:31:36 +00:00
|
|
|
"$Id$";
|
|
|
|
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-05-19 00:05:35 +00:00
|
|
|
#include "QF/sound.h"
|
|
|
|
#include "QF/model.h"
|
2001-08-27 01:00:03 +00:00
|
|
|
#include "QF/plugin.h"
|
2007-03-10 07:30:12 +00:00
|
|
|
#include "QF/qargs.h"
|
2001-09-21 04:22:46 +00:00
|
|
|
#include "QF/sys.h"
|
2001-05-19 00:05:35 +00:00
|
|
|
|
2003-01-31 20:19:42 +00:00
|
|
|
static cvar_t *snd_output;
|
|
|
|
static cvar_t *snd_render;
|
|
|
|
static plugin_t *snd_render_module = NULL;
|
|
|
|
static plugin_t *snd_output_module = NULL;
|
|
|
|
static snd_render_funcs_t *snd_render_funcs = NULL;
|
2001-10-10 05:52:14 +00:00
|
|
|
|
|
|
|
SND_OUTPUT_PROTOS
|
2004-01-08 01:48:02 +00:00
|
|
|
static plugin_list_t snd_output_list[] = {
|
2001-10-10 05:52:14 +00:00
|
|
|
SND_OUTPUT_LIST
|
|
|
|
};
|
|
|
|
|
|
|
|
SND_RENDER_PROTOS
|
2004-01-08 01:48:02 +00:00
|
|
|
static plugin_list_t snd_render_list[] = {
|
2001-10-10 05:52:14 +00:00
|
|
|
SND_RENDER_LIST
|
|
|
|
};
|
2001-05-19 00:05:35 +00:00
|
|
|
|
2001-08-27 01:00:03 +00:00
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-10-28 04:23:37 +00:00
|
|
|
S_Init (struct model_s **worldmodel, int *viewentity, double *host_frametime)
|
2001-05-19 00:05:35 +00:00
|
|
|
{
|
2007-03-10 07:22:32 +00:00
|
|
|
if (COM_CheckParm ("-nosound"))
|
|
|
|
return;
|
|
|
|
|
2001-09-19 05:32:20 +00:00
|
|
|
if (!*snd_output->string || !*snd_render->string) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Not loading sound due to no renderer/output\n");
|
2001-09-19 05:32:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-10-10 16:22:41 +00:00
|
|
|
PI_RegisterPlugins (snd_output_list);
|
|
|
|
PI_RegisterPlugins (snd_render_list);
|
2001-08-23 04:01:46 +00:00
|
|
|
snd_output_module = PI_LoadPlugin ("snd_output", snd_output->string);
|
|
|
|
if (!snd_output_module) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Loading of sound output module: %s failed!\n",
|
2001-08-23 04:01:46 +00:00
|
|
|
snd_output->string);
|
|
|
|
} else {
|
|
|
|
snd_render_module = PI_LoadPlugin ("snd_render", snd_render->string);
|
|
|
|
if (!snd_render_module) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Loading of sound render module: %s failed!\n",
|
2001-08-23 04:01:46 +00:00
|
|
|
snd_render->string);
|
|
|
|
PI_UnloadPlugin (snd_output_module);
|
|
|
|
snd_output_module = NULL;
|
|
|
|
} else {
|
2001-10-28 04:23:37 +00:00
|
|
|
snd_render_module->data->snd_render->worldmodel = worldmodel;
|
|
|
|
snd_render_module->data->snd_render->viewentity = viewentity;
|
2001-08-27 01:00:03 +00:00
|
|
|
snd_render_module->data->snd_render->host_frametime =
|
2001-10-28 04:23:37 +00:00
|
|
|
host_frametime;
|
2003-01-31 19:14:12 +00:00
|
|
|
snd_render_module->data->snd_render->output = snd_output_module;
|
2001-08-23 04:01:46 +00:00
|
|
|
|
2007-03-18 01:15:57 +00:00
|
|
|
snd_output_module->functions->general->p_Init ();
|
|
|
|
snd_render_module->functions->general->p_Init ();
|
|
|
|
|
2001-08-23 04:01:46 +00:00
|
|
|
snd_output_module->data->snd_output->soundtime
|
|
|
|
= snd_render_module->data->snd_render->soundtime;
|
|
|
|
snd_output_module->data->snd_output->paintedtime
|
|
|
|
= snd_render_module->data->snd_render->paintedtime;
|
|
|
|
|
2003-01-31 20:19:42 +00:00
|
|
|
snd_render_funcs = snd_render_module->functions->snd_render;
|
2001-08-23 04:01:46 +00:00
|
|
|
}
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-05-19 00:05:35 +00:00
|
|
|
S_Init_Cvars (void)
|
|
|
|
{
|
2005-06-08 10:12:28 +00:00
|
|
|
snd_output = Cvar_Get ("snd_output", SND_OUTPUT_DEFAULT, CVAR_ROM, NULL,
|
2001-12-11 20:31:18 +00:00
|
|
|
"Sound Output Plugin to use");
|
2003-01-08 22:42:55 +00:00
|
|
|
snd_render = Cvar_Get ("snd_render", "default", CVAR_ROM, NULL,
|
2001-08-23 04:01:46 +00:00
|
|
|
"Sound Renderer Plugin to use");
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-05-19 00:05:35 +00:00
|
|
|
S_AmbientOff (void)
|
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
|
|
|
snd_render_funcs->pS_AmbientOff ();
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-05-19 00:05:35 +00:00
|
|
|
S_AmbientOn (void)
|
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
|
|
|
snd_render_funcs->pS_AmbientOn ();
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-05-19 00:05:35 +00:00
|
|
|
S_Shutdown (void)
|
|
|
|
{
|
2001-08-23 04:01:46 +00:00
|
|
|
if (snd_render_module) {
|
|
|
|
PI_UnloadPlugin (snd_render_module);
|
|
|
|
snd_render_module = NULL;
|
2003-01-31 20:19:42 +00:00
|
|
|
snd_render_funcs = NULL;
|
2001-08-23 04:01:46 +00:00
|
|
|
}
|
|
|
|
if (snd_output_module) {
|
|
|
|
PI_UnloadPlugin (snd_output_module);
|
|
|
|
snd_output_module = NULL;
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-07-15 07:04:17 +00:00
|
|
|
S_TouchSound (const char *sample)
|
2001-05-19 00:05:35 +00:00
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
|
|
|
snd_render_funcs->pS_TouchSound (sample);
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2002-01-03 05:29:38 +00:00
|
|
|
S_StaticSound (sfx_t *sfx, const vec3_t origin, float vol, float attenuation)
|
2001-05-19 00:05:35 +00:00
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
|
|
|
snd_render_funcs->pS_StaticSound (sfx, origin, vol, attenuation);
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2002-01-03 05:29:38 +00:00
|
|
|
S_StartSound (int entnum, int entchannel, sfx_t *sfx, const vec3_t origin,
|
2001-08-27 01:00:03 +00:00
|
|
|
float fvol, float attenuation)
|
2001-05-19 00:05:35 +00:00
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
2004-01-07 08:16:59 +00:00
|
|
|
snd_render_funcs->pS_StartSound (entnum, entchannel, sfx, origin, fvol,
|
|
|
|
attenuation);
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-05-19 00:05:35 +00:00
|
|
|
S_StopSound (int entnum, int entchannel)
|
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
2004-01-07 08:16:59 +00:00
|
|
|
snd_render_funcs->pS_StopSound (entnum, entchannel);
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE sfx_t *
|
2001-07-15 07:04:17 +00:00
|
|
|
S_PrecacheSound (const char *sample)
|
2001-05-19 00:05:35 +00:00
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
2004-01-07 08:16:59 +00:00
|
|
|
return snd_render_funcs->pS_PrecacheSound (sample);
|
2004-01-21 02:52:12 +00:00
|
|
|
return NULL;
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2002-01-03 05:29:38 +00:00
|
|
|
S_Update (const vec3_t origin, const vec3_t v_forward, const vec3_t v_right,
|
|
|
|
const vec3_t v_up)
|
2001-05-19 00:05:35 +00:00
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
2004-01-07 08:16:59 +00:00
|
|
|
snd_render_funcs->pS_Update (origin, v_forward, v_right, v_up);
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2007-03-17 03:10:45 +00:00
|
|
|
S_StopAllSounds (void)
|
2001-05-19 00:05:35 +00:00
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
2007-03-17 03:10:45 +00:00
|
|
|
snd_render_funcs->pS_StopAllSounds ();
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-05-19 00:05:35 +00:00
|
|
|
S_ExtraUpdate (void)
|
|
|
|
{
|
2004-01-07 08:45:18 +00:00
|
|
|
// if (snd_render_funcs)
|
|
|
|
// snd_render_funcs->pS_ExtraUpdate ();
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-07-15 07:04:17 +00:00
|
|
|
S_LocalSound (const char *s)
|
2001-05-19 00:05:35 +00:00
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
|
|
|
snd_render_funcs->pS_LocalSound (s);
|
2001-05-19 00:05:35 +00:00
|
|
|
}
|
2001-07-05 20:18:23 +00:00
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-07-05 20:18:23 +00:00
|
|
|
S_BlockSound (void)
|
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
|
|
|
snd_render_funcs->pS_BlockSound ();
|
2001-07-05 20:18:23 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-07-05 20:18:23 +00:00
|
|
|
S_UnblockSound (void)
|
|
|
|
{
|
2003-01-31 20:19:42 +00:00
|
|
|
if (snd_render_funcs)
|
|
|
|
snd_render_funcs->pS_UnblockSound ();
|
2001-08-23 04:01:46 +00:00
|
|
|
}
|
2004-01-21 02:52:12 +00:00
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE sfx_t *
|
2004-01-21 02:52:12 +00:00
|
|
|
S_LoadSound (const char *name)
|
|
|
|
{
|
|
|
|
if (snd_render_funcs)
|
|
|
|
return snd_render_funcs->pS_LoadSound (name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE struct channel_s *
|
2004-01-21 02:52:12 +00:00
|
|
|
S_AllocChannel (void)
|
|
|
|
{
|
|
|
|
if (snd_render_funcs)
|
|
|
|
return snd_render_funcs->pS_AllocChannel ();
|
|
|
|
return 0;
|
|
|
|
}
|
2007-03-18 12:54:59 +00:00
|
|
|
|
|
|
|
VISIBLE void
|
|
|
|
S_ChannelStop (struct channel_s *chan)
|
|
|
|
{
|
|
|
|
if (snd_render_funcs)
|
|
|
|
snd_render_funcs->pS_ChannelStop (chan);
|
|
|
|
}
|