mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-22 04:01:06 +00:00
- allow setting Blood's relative volume hack value via SNDINFO.
This commit is contained in:
parent
bb7f00988a
commit
3ab1ae5f7a
1 changed files with 26 additions and 1 deletions
|
@ -63,6 +63,7 @@ enum SICommands
|
||||||
SI_PitchSetDuke,
|
SI_PitchSetDuke,
|
||||||
SI_DukeFlags,
|
SI_DukeFlags,
|
||||||
SI_Loop,
|
SI_Loop,
|
||||||
|
SI_BloodRelVol,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -97,6 +98,7 @@ static const char *SICommandStrings[] =
|
||||||
"$pitchsetduke",
|
"$pitchsetduke",
|
||||||
"$dukeflags",
|
"$dukeflags",
|
||||||
"$loop",
|
"$loop",
|
||||||
|
"$bloodrelvol",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -383,7 +385,7 @@ static void S_AddSNDINFO (int lump)
|
||||||
}
|
}
|
||||||
|
|
||||||
case SI_Loop: {
|
case SI_Loop: {
|
||||||
// dukesound <logical name> <start> <end>
|
// loop <logical name> <start> <end>
|
||||||
// Sets loop points for the given sound in samples. Only really useful for WAV - for Ogg and FLAC use the metadata they can contain.
|
// Sets loop points for the given sound in samples. Only really useful for WAV - for Ogg and FLAC use the metadata they can contain.
|
||||||
sc.MustGetString();
|
sc.MustGetString();
|
||||||
auto sfxid = soundEngine->FindSoundTentative(sc.String, DEFAULT_LIMIT);
|
auto sfxid = soundEngine->FindSoundTentative(sc.String, DEFAULT_LIMIT);
|
||||||
|
@ -395,6 +397,29 @@ static void S_AddSNDINFO (int lump)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case SI_BloodRelVol: {
|
||||||
|
// bloodrelvol <logical name> <value>
|
||||||
|
// Sets Blood's hacky volume modifier.
|
||||||
|
sc.MustGetString();
|
||||||
|
auto sfxid = soundEngine->FindSoundTentative(sc.String, DEFAULT_LIMIT);
|
||||||
|
auto sfx = soundEngine->GetWritableSfx(sfxid);
|
||||||
|
sc.MustGetNumber();
|
||||||
|
if (isBlood())
|
||||||
|
{
|
||||||
|
auto sfx = soundEngine->GetWritableSfx(sfxid);
|
||||||
|
if (sfx->UserData.Size() < 1)
|
||||||
|
{
|
||||||
|
sfx->UserData.Resize(1);
|
||||||
|
}
|
||||||
|
sfx->UserData[0] = sc.Number;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sc.ScriptMessage("'$bloodrelvol' is not available in the current game and will be ignored");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
{ // Got a logical sound mapping
|
{ // Got a logical sound mapping
|
||||||
|
|
Loading…
Reference in a new issue