mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 20:21:38 +00:00
CVAR_FIXME cleanup
This commit is contained in:
parent
7f5c4e4148
commit
b5a2d30444
3 changed files with 0 additions and 50 deletions
|
@ -91,39 +91,17 @@ int desired_bits = 16;
|
||||||
|
|
||||||
int sound_started=0;
|
int sound_started=0;
|
||||||
|
|
||||||
/* cvar_t bgmvolume = {"bgmvolume", "1", true};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *bgmvolume;
|
cvar_t *bgmvolume;
|
||||||
/* cvar_t volume = {"volume", "0.7", true};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *volume;
|
cvar_t *volume;
|
||||||
|
|
||||||
/* cvar_t nosound = {"nosound", "0"};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *nosound;
|
cvar_t *nosound;
|
||||||
/* cvar_t precache = {"precache", "1"};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *precache;
|
cvar_t *precache;
|
||||||
/* cvar_t loadas8bit = {"loadas8bit", "0"};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *loadas8bit;
|
cvar_t *loadas8bit;
|
||||||
/* cvar_t bgmbuffer = {"bgmbuffer", "4096"};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *bgmbuffer;
|
cvar_t *bgmbuffer;
|
||||||
/* cvar_t ambient_level = {"ambient_level", "0.3"};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *ambient_level;
|
cvar_t *ambient_level;
|
||||||
/* cvar_t ambient_fade = {"ambient_fade", "100"};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *ambient_fade;
|
cvar_t *ambient_fade;
|
||||||
/* cvar_t snd_noextraupdate = {"snd_noextraupdate", "0"};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *snd_noextraupdate;
|
cvar_t *snd_noextraupdate;
|
||||||
/* cvar_t snd_show = {"snd_show", "0"};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *snd_show;
|
cvar_t *snd_show;
|
||||||
/* cvar_t _snd_mixahead = {"_snd_mixahead", "0.1", true};
|
|
||||||
CVAR_FIXME */
|
|
||||||
cvar_t *_snd_mixahead;
|
cvar_t *_snd_mixahead;
|
||||||
|
|
||||||
|
|
||||||
|
@ -376,16 +354,12 @@ sfx_t *S_PrecacheSound (char *name)
|
||||||
{
|
{
|
||||||
sfx_t *sfx;
|
sfx_t *sfx;
|
||||||
|
|
||||||
/* if (!sound_started || nosound.value)
|
|
||||||
CVAR_FIXME */
|
|
||||||
if (!sound_started || nosound->value)
|
if (!sound_started || nosound->value)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
sfx = S_FindName (name);
|
sfx = S_FindName (name);
|
||||||
|
|
||||||
// cache it in
|
// cache it in
|
||||||
/* if (precache.value)
|
|
||||||
CVAR_FIXME */
|
|
||||||
if (precache->value)
|
if (precache->value)
|
||||||
S_LoadSound (sfx);
|
S_LoadSound (sfx);
|
||||||
|
|
||||||
|
@ -511,8 +485,6 @@ void S_StartSound(int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float f
|
||||||
if (!sfx)
|
if (!sfx)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* if (nosound.value)
|
|
||||||
CVAR_FIXME */
|
|
||||||
if (nosound->value)
|
if (nosound->value)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -729,8 +701,6 @@ void S_UpdateAmbientSounds (void)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
l = Mod_PointInLeaf (listener_origin, cl.worldmodel);
|
l = Mod_PointInLeaf (listener_origin, cl.worldmodel);
|
||||||
/* if (!l || !ambient_level.value)
|
|
||||||
CVAR_FIXME */
|
|
||||||
if (!l || !ambient_level->value)
|
if (!l || !ambient_level->value)
|
||||||
{
|
{
|
||||||
for (ambient_channel = 0 ; ambient_channel< NUM_AMBIENTS ; ambient_channel++)
|
for (ambient_channel = 0 ; ambient_channel< NUM_AMBIENTS ; ambient_channel++)
|
||||||
|
@ -743,8 +713,6 @@ void S_UpdateAmbientSounds (void)
|
||||||
chan = &channels[ambient_channel];
|
chan = &channels[ambient_channel];
|
||||||
chan->sfx = ambient_sfx[ambient_channel];
|
chan->sfx = ambient_sfx[ambient_channel];
|
||||||
|
|
||||||
/* vol = ambient_level.value * l->ambient_sound_level[ambient_channel];
|
|
||||||
CVAR_FIXME */
|
|
||||||
vol = ambient_level->value * l->ambient_sound_level[ambient_channel];
|
vol = ambient_level->value * l->ambient_sound_level[ambient_channel];
|
||||||
if (vol < 8)
|
if (vol < 8)
|
||||||
vol = 0;
|
vol = 0;
|
||||||
|
@ -752,16 +720,12 @@ void S_UpdateAmbientSounds (void)
|
||||||
// don't adjust volume too fast
|
// don't adjust volume too fast
|
||||||
if (chan->master_vol < vol)
|
if (chan->master_vol < vol)
|
||||||
{
|
{
|
||||||
/* chan->master_vol += host_frametime * ambient_fade.value;
|
|
||||||
CVAR_FIXME */
|
|
||||||
chan->master_vol += host_frametime * ambient_fade->value;
|
chan->master_vol += host_frametime * ambient_fade->value;
|
||||||
if (chan->master_vol > vol)
|
if (chan->master_vol > vol)
|
||||||
chan->master_vol = vol;
|
chan->master_vol = vol;
|
||||||
}
|
}
|
||||||
else if (chan->master_vol > vol)
|
else if (chan->master_vol > vol)
|
||||||
{
|
{
|
||||||
/* chan->master_vol -= host_frametime * ambient_fade.value;
|
|
||||||
CVAR_FIXME */
|
|
||||||
chan->master_vol -= host_frametime * ambient_fade->value;
|
chan->master_vol -= host_frametime * ambient_fade->value;
|
||||||
if (chan->master_vol < vol)
|
if (chan->master_vol < vol)
|
||||||
chan->master_vol = vol;
|
chan->master_vol = vol;
|
||||||
|
@ -850,8 +814,6 @@ void S_Update(vec3_t origin, vec3_t forward, vec3_t right, vec3_t up)
|
||||||
//
|
//
|
||||||
// debugging output
|
// debugging output
|
||||||
//
|
//
|
||||||
/* if (snd_show.value)
|
|
||||||
CVAR_FIXME */
|
|
||||||
if (snd_show->value)
|
if (snd_show->value)
|
||||||
{
|
{
|
||||||
total = 0;
|
total = 0;
|
||||||
|
@ -906,8 +868,6 @@ void S_ExtraUpdate (void)
|
||||||
IN_Accumulate ();
|
IN_Accumulate ();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* if (snd_noextraupdate.value)
|
|
||||||
CVAR_FIXME */
|
|
||||||
if (snd_noextraupdate->value)
|
if (snd_noextraupdate->value)
|
||||||
return; // don't pollute timings
|
return; // don't pollute timings
|
||||||
S_Update_();
|
S_Update_();
|
||||||
|
@ -934,8 +894,6 @@ void S_Update_(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
// mix ahead of current position
|
// mix ahead of current position
|
||||||
/* endtime = soundtime + _snd_mixahead.value * shm->speed;
|
|
||||||
CVAR_FIXME */
|
|
||||||
endtime = soundtime + _snd_mixahead->value * shm->speed;
|
endtime = soundtime + _snd_mixahead->value * shm->speed;
|
||||||
samps = shm->samples >> (shm->channels-1);
|
samps = shm->samples >> (shm->channels-1);
|
||||||
if (endtime - soundtime > samps)
|
if (endtime - soundtime > samps)
|
||||||
|
@ -1050,8 +1008,6 @@ void S_LocalSound (char *sound)
|
||||||
{
|
{
|
||||||
sfx_t *sfx;
|
sfx_t *sfx;
|
||||||
|
|
||||||
/* if (nosound.value)
|
|
||||||
CVAR_FIXME */
|
|
||||||
if (nosound->value)
|
if (nosound->value)
|
||||||
return;
|
return;
|
||||||
if (!sound_started)
|
if (!sound_started)
|
||||||
|
|
|
@ -67,8 +67,6 @@ void ResampleSfx (sfx_t *sfx, int inrate, int inwidth, byte *data)
|
||||||
sc->loopstart = sc->loopstart / stepscale;
|
sc->loopstart = sc->loopstart / stepscale;
|
||||||
|
|
||||||
sc->speed = shm->speed;
|
sc->speed = shm->speed;
|
||||||
/* if (loadas8bit.value)
|
|
||||||
CVAR_FIXME */
|
|
||||||
if (loadas8bit->value)
|
if (loadas8bit->value)
|
||||||
sc->width = 1;
|
sc->width = 1;
|
||||||
else
|
else
|
||||||
|
|
|
@ -88,8 +88,6 @@ void S_TransferStereo16 (int endtime)
|
||||||
HRESULT hresult;
|
HRESULT hresult;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* snd_vol = volume.value*256;
|
|
||||||
CVAR_FIXME */
|
|
||||||
snd_vol = volume->value*256;
|
snd_vol = volume->value*256;
|
||||||
|
|
||||||
snd_p = (int *) paintbuffer;
|
snd_p = (int *) paintbuffer;
|
||||||
|
@ -180,8 +178,6 @@ void S_TransferPaintBuffer(int endtime)
|
||||||
out_mask = shm->samples - 1;
|
out_mask = shm->samples - 1;
|
||||||
out_idx = paintedtime * shm->channels & out_mask;
|
out_idx = paintedtime * shm->channels & out_mask;
|
||||||
step = 3 - shm->channels;
|
step = 3 - shm->channels;
|
||||||
/* snd_vol = volume.value*256;
|
|
||||||
CVAR_FIXME */
|
|
||||||
snd_vol = volume->value*256;
|
snd_vol = volume->value*256;
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
|
Loading…
Reference in a new issue