2019-07-06 17:44:00 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "patcher.h"
|
2019-10-29 23:12:58 +00:00
|
|
|
#include "General.h"
|
2019-10-26 13:02:59 +00:00
|
|
|
#include "audio_enums.h"
|
2019-07-06 17:44:00 +00:00
|
|
|
|
2019-06-27 16:45:16 +00:00
|
|
|
#include "AudioManager.h"
|
2019-07-02 18:35:47 +00:00
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
#include "Automobile.h"
|
2019-08-02 15:43:40 +00:00
|
|
|
#include "Boat.h"
|
|
|
|
#include "Bridge.h"
|
2019-09-24 11:33:16 +00:00
|
|
|
#include "CProjectileInfo.h"
|
2019-07-08 19:44:32 +00:00
|
|
|
#include "Camera.h"
|
2019-06-27 16:45:16 +00:00
|
|
|
#include "DMAudio.h"
|
2019-09-24 11:33:16 +00:00
|
|
|
#include "Entity.h"
|
2019-07-31 15:54:18 +00:00
|
|
|
#include "Explosion.h"
|
2019-07-08 19:44:32 +00:00
|
|
|
#include "Garages.h"
|
2019-09-24 11:33:16 +00:00
|
|
|
#include "HandlingMgr.h"
|
2019-08-02 15:43:40 +00:00
|
|
|
#include "Heli.h"
|
2019-06-29 11:44:20 +00:00
|
|
|
#include "ModelIndices.h"
|
2019-07-02 18:35:47 +00:00
|
|
|
#include "MusicManager.h"
|
2019-08-02 15:43:40 +00:00
|
|
|
#include "Pad.h"
|
2019-06-27 16:45:16 +00:00
|
|
|
#include "Ped.h"
|
2019-07-02 18:35:47 +00:00
|
|
|
#include "Physical.h"
|
2019-09-24 11:33:16 +00:00
|
|
|
#include "Placeable.h"
|
2019-07-16 15:03:37 +00:00
|
|
|
#include "Plane.h"
|
2019-06-27 16:45:16 +00:00
|
|
|
#include "PlayerPed.h"
|
2019-07-20 15:00:57 +00:00
|
|
|
#include "Pools.h"
|
2019-08-02 15:43:40 +00:00
|
|
|
#include "Replay.h"
|
2019-07-08 19:44:32 +00:00
|
|
|
#include "Stats.h"
|
2019-07-31 15:54:18 +00:00
|
|
|
#include "SurfaceTable.h"
|
2019-08-16 18:17:15 +00:00
|
|
|
#include "Train.h"
|
2019-08-02 15:43:40 +00:00
|
|
|
#include "Transmission.h"
|
2019-07-02 18:35:47 +00:00
|
|
|
#include "Vehicle.h"
|
2019-09-24 11:33:16 +00:00
|
|
|
#include "WaterCannon.h"
|
2019-08-02 15:43:40 +00:00
|
|
|
#include "Weather.h"
|
2019-06-27 16:45:16 +00:00
|
|
|
#include "World.h"
|
2019-08-02 15:43:40 +00:00
|
|
|
#include "ZoneCull.h"
|
2019-10-12 20:21:44 +00:00
|
|
|
#include "Zones.h"
|
2019-08-02 15:43:40 +00:00
|
|
|
#include "sampman.h"
|
2019-07-02 18:35:47 +00:00
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
cAudioManager &AudioManager = *(cAudioManager *)0x880FC0;
|
2019-10-27 17:04:13 +00:00
|
|
|
uint32 &gPornNextTime = *(uint32*)0x6508A0;
|
|
|
|
uint32 &gSawMillNextTime = *(uint32*)0x6508A4;
|
|
|
|
uint32 &gShopNextTime = *(uint32*)0x6508A8;
|
|
|
|
uint32 &gAirportNextTime = *(uint32*)0x6508AC;
|
|
|
|
uint32 &gCinemaNextTime = *(uint32*)0x6508B0;
|
|
|
|
uint32 &gDocksNextTime = *(uint32*)0x6508B4;
|
|
|
|
uint32 &gHomeNextTime = *(uint32*)0x6508B8;
|
|
|
|
uint32 &gCellNextTime = *(uint32*)0x6508BC;
|
|
|
|
uint32 &gNextCryTime = *(uint32*)0x6508C0;
|
2019-08-27 18:50:59 +00:00
|
|
|
uint8 &jumboVolOffset = *(uint8 *)0x6508ED;
|
|
|
|
uint8 &gJumboVolOffsetPercentage = *(uint8 *)0x6508ED;
|
|
|
|
char &g_nMissionAudioPlayingStatus = *(char *)0x60ED88;
|
|
|
|
int32 &g_nMissionAudioSfx = *(int32 *)0x60ED84;
|
|
|
|
bool &bPlayerJustEnteredCar = *(bool *)0x6508C4;
|
|
|
|
bool &g_bMissionAudioLoadFailed = *(bool *)0x95CD8E;
|
2019-08-29 22:44:57 +00:00
|
|
|
uint32 *gMinTimeToNextReport = (uint32 *)0x8E2828;
|
|
|
|
uint8 &gSpecialSuspectLastSeenReport = *(uint8 *)0x95CD4D;
|
2019-10-26 14:47:57 +00:00
|
|
|
|
|
|
|
constexpr bool hornPatternsArray[8][44] = {
|
|
|
|
{false, false, true, true, true, true, true, true, true, true, true, true, true, true, true,
|
|
|
|
true, true, false, false, false, false, false, false, true, true, true, true, true, true, true,
|
|
|
|
true, true, true, true, true, true, true, true, true, true, false, false, false, false},
|
|
|
|
{false, false, true, true, true, true, true, true, true, true, true, true, true, true, true,
|
|
|
|
true, true, true, true, true, true, true, true, true, true, true, true, true, true, true,
|
|
|
|
true, true, true, true, true, true, true, true, true, true, true, true, false, false},
|
|
|
|
{false, false, true, true, true, true, true, true, true, true, true, true, false, false, false,
|
|
|
|
false, true, true, true, true, true, false, false, false, true, true, true, true, true, true,
|
|
|
|
true, true, true, true, true, true, true, true, true, true, true, true, true, false},
|
|
|
|
{false, false, true, true, true, true, true, false, false, true, true, true, true, true, false,
|
|
|
|
false, false, true, true, true, true, true, true, true, true, true, true, false, false, false,
|
|
|
|
true, true, true, true, true, true, true, true, true, true, true, true, true, false},
|
|
|
|
{false, false, true, true, true, true, true, true, true, true, true, false, false, false, false,
|
|
|
|
false, false, false, false, false, false, false, false, false, false, false, false, false, false, false,
|
|
|
|
false, false, false, false, false, false, false, false, false, false, false, false, false, false},
|
|
|
|
{false, false, true, true, true, false, false, false, true, true, true, false, false, false, false,
|
|
|
|
false, false, false, false, false, false, false, false, false, false, false, false, false, false, false,
|
|
|
|
false, false, false, false, false, false, false, false, false, false, false, false, false, false},
|
|
|
|
{false, false, true, true, true, true, false, false, false, false, true, true, true, false, false,
|
|
|
|
true, true, true, false, false, true, true, true, true, true, true, false, false, false, false,
|
|
|
|
false, true, true, true, true, true, true, true, true, true, true, true, false, false},
|
|
|
|
{false, false, true, true, true, true, false, false, true, true, true, true, true, false, false,
|
|
|
|
false, true, true, true, true, true, true, false, false, false, false, true, true, true, true,
|
|
|
|
true, true, true, true, true, true, true, true, true, false, false, false, false, false},
|
2019-10-26 14:08:13 +00:00
|
|
|
};
|
2019-08-16 18:17:15 +00:00
|
|
|
|
|
|
|
constexpr int totalAudioEntitiesSlots = 200;
|
|
|
|
constexpr int maxVolume = 127;
|
2019-10-26 14:47:57 +00:00
|
|
|
constexpr int channels = ARRAY_SIZE(cAudioManager::m_asActiveSamples);
|
|
|
|
constexpr int policeChannel = channels + 1;
|
|
|
|
constexpr int allChannels = channels + 2;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
constexpr uint8 panTable[64]{0, 3, 8, 12, 16, 19, 22, 24, 26, 28, 30, 31, 33, 34, 36, 37, 39, 40, 41, 42, 44, 45,
|
|
|
|
46, 47, 48, 49, 49, 50, 51, 52, 53, 53, 54, 55, 55, 56, 56, 57, 57, 58, 58, 58, 59, 59,
|
|
|
|
59, 60, 60, 61, 61, 61, 61, 62, 62, 62, 62, 62, 63, 63, 63, 63, 63, 63, 63, 63};
|
2019-08-16 18:17:15 +00:00
|
|
|
|
2019-07-06 17:44:00 +00:00
|
|
|
// TODO: where is this used? Is this the right file?
|
2019-07-08 19:44:32 +00:00
|
|
|
enum eVehicleModel {
|
2019-07-06 17:44:00 +00:00
|
|
|
LANDSTAL,
|
|
|
|
IDAHO,
|
|
|
|
STINGER,
|
|
|
|
LINERUN,
|
|
|
|
PEREN,
|
|
|
|
SENTINEL,
|
|
|
|
PATRIOT,
|
|
|
|
FIRETRUK,
|
|
|
|
TRASH,
|
|
|
|
STRETCH,
|
|
|
|
MANANA,
|
|
|
|
INFERNUS,
|
|
|
|
BLISTA,
|
|
|
|
PONY,
|
|
|
|
MULE,
|
|
|
|
CHEETAH,
|
|
|
|
AMBULAN,
|
|
|
|
FBICAR,
|
|
|
|
MOONBEAM,
|
|
|
|
ESPERANT,
|
|
|
|
TAXI,
|
|
|
|
KURUMA,
|
|
|
|
BOBCAT,
|
|
|
|
MRWHOOP,
|
|
|
|
BFINJECT,
|
|
|
|
CORPSE,
|
|
|
|
POLICE,
|
|
|
|
ENFORCER,
|
|
|
|
SECURICA,
|
|
|
|
BANSHEE,
|
|
|
|
PREDATOR,
|
|
|
|
BUS,
|
|
|
|
RHINO,
|
|
|
|
BARRACKS,
|
|
|
|
TRAIN,
|
|
|
|
CHOPPER,
|
|
|
|
DODO,
|
|
|
|
COACH,
|
|
|
|
CABBIE,
|
|
|
|
STALLION,
|
|
|
|
RUMPO,
|
|
|
|
RCBANDIT,
|
|
|
|
BELLYUP,
|
|
|
|
MRWONGS,
|
|
|
|
MAFIA,
|
|
|
|
YARDIE,
|
|
|
|
YAKUZA,
|
|
|
|
DIABLOS,
|
|
|
|
COLUMB,
|
|
|
|
HOODS,
|
|
|
|
AIRTRAIN,
|
|
|
|
DEADDODO,
|
|
|
|
SPEEDER,
|
|
|
|
REEFER,
|
|
|
|
PANLANT,
|
|
|
|
FLATBED,
|
|
|
|
YANKEE,
|
|
|
|
ESCAPE,
|
|
|
|
BORGNINE,
|
|
|
|
TOYZ,
|
|
|
|
GHOST,
|
|
|
|
CAR151,
|
|
|
|
CAR152,
|
|
|
|
CAR153,
|
|
|
|
CAR154,
|
|
|
|
CAR155,
|
|
|
|
CAR156,
|
|
|
|
CAR157,
|
|
|
|
CAR158,
|
|
|
|
CAR159,
|
|
|
|
};
|
2019-07-02 18:35:47 +00:00
|
|
|
|
2019-07-31 15:54:18 +00:00
|
|
|
void
|
|
|
|
cPedComments::Add(tPedComment *com)
|
|
|
|
{
|
|
|
|
uint8 index;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(nrOfCommentsInBank[activeBank] >= 20) {
|
2019-08-16 18:17:15 +00:00
|
|
|
index = indexMap[activeBank][19];
|
2019-07-31 15:54:18 +00:00
|
|
|
if(m_asPedComments[activeBank][index].m_bVolume > com->m_bVolume) return;
|
|
|
|
} else {
|
|
|
|
index = nrOfCommentsInBank[activeBank]++;
|
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
|
|
|
|
m_asPedComments[activeBank][index].m_nSampleIndex = com->m_nSampleIndex;
|
|
|
|
m_asPedComments[activeBank][index].m_entityIndex = com->m_entityIndex;
|
|
|
|
m_asPedComments[activeBank][index].m_vecPos = com->m_vecPos;
|
|
|
|
m_asPedComments[activeBank][index].m_fDistance = com->m_fDistance;
|
|
|
|
m_asPedComments[activeBank][index].m_bVolume = com->m_bVolume;
|
2019-07-31 15:54:18 +00:00
|
|
|
|
|
|
|
uint32 i = 0;
|
|
|
|
if(index != 0) {
|
|
|
|
for(i = 0; i < index; i++) {
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_asPedComments[activeBank][indexMap[activeBank][i]].m_bVolume <
|
2019-07-31 15:54:18 +00:00
|
|
|
m_asPedComments[activeBank][index].m_bVolume) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(i < index) memmove(&indexMap[activeBank][i + 1], &indexMap[activeBank][i], 19 - i);
|
2019-07-31 15:54:18 +00:00
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
indexMap[activeBank][i] = index;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cPedComments::Process()
|
|
|
|
{
|
|
|
|
int sampleIndex;
|
|
|
|
uint8 actualUsedBank;
|
|
|
|
tPedComment *comment;
|
|
|
|
|
|
|
|
if(!AudioManager.m_bUserPause) {
|
|
|
|
if(nrOfCommentsInBank[activeBank]) {
|
2019-10-25 16:39:26 +00:00
|
|
|
sampleIndex = m_asPedComments[activeBank][indexMap[activeBank][0]].m_nSampleIndex;
|
|
|
|
if(!SampleManager.IsPedCommentLoaded(sampleIndex)) SampleManager.LoadPedComment(sampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
|
|
|
|
AudioManager.m_sQueueSample.m_nEntityIndex =
|
|
|
|
m_asPedComments[activeBank][indexMap[activeBank][0]].m_entityIndex;
|
|
|
|
AudioManager.m_sQueueSample.m_counter = 0;
|
|
|
|
AudioManager.m_sQueueSample.m_nSampleIndex = sampleIndex;
|
|
|
|
AudioManager.m_sQueueSample.m_bBankIndex = 1;
|
|
|
|
AudioManager.m_sQueueSample.field_16 = 3;
|
|
|
|
AudioManager.m_sQueueSample.m_bVolume =
|
|
|
|
m_asPedComments[activeBank][indexMap[activeBank][0]].m_bVolume;
|
|
|
|
AudioManager.m_sQueueSample.m_fDistance =
|
|
|
|
m_asPedComments[activeBank][indexMap[activeBank][0]].m_fDistance;
|
|
|
|
AudioManager.m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
AudioManager.m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
AudioManager.m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
AudioManager.m_sQueueSample.m_bEmittingVolume = maxVolume;
|
|
|
|
AudioManager.m_sQueueSample.field_48 = 3.0f;
|
|
|
|
switch(sampleIndex) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_POLICE_HELI_1:
|
|
|
|
case SFX_POLICE_HELI_2:
|
|
|
|
case SFX_POLICE_HELI_3:
|
2019-08-16 18:17:15 +00:00
|
|
|
AudioManager.m_sQueueSample.m_fSoundIntensity = 400.0f;
|
|
|
|
break;
|
|
|
|
default: AudioManager.m_sQueueSample.m_fSoundIntensity = 50.0f; break;
|
|
|
|
}
|
|
|
|
AudioManager.m_sQueueSample.field_56 = 1;
|
|
|
|
AudioManager.m_sQueueSample.m_vecPos =
|
|
|
|
m_asPedComments[activeBank][indexMap[activeBank][0]].m_vecPos;
|
|
|
|
|
2019-10-26 23:06:10 +00:00
|
|
|
if(sampleIndex >= SFX_AMMU_D && sampleIndex <= SFX_AMMU_F) {
|
2019-08-16 18:17:15 +00:00
|
|
|
AudioManager.m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
AudioManager.m_sQueueSample.m_bRequireReflection = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
} else {
|
|
|
|
AudioManager.m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
AudioManager.m_sQueueSample.m_bRequireReflection = 1;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioManager.m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
AudioManager.m_sQueueSample.m_nFrequency =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(AudioManager.m_sQueueSample.m_nSampleIndex) +
|
|
|
|
AudioManager.RandomDisplacement(750);
|
|
|
|
if(CTimer::GetIsSlowMotionActive()) AudioManager.m_sQueueSample.m_nFrequency /= 2;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_asPedComments[activeBank][indexMap[activeBank][0]].field_25 = -1;
|
|
|
|
AudioManager.AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Switch bank
|
|
|
|
if(activeBank) {
|
|
|
|
actualUsedBank = 1;
|
|
|
|
activeBank = 0;
|
|
|
|
} else {
|
|
|
|
actualUsedBank = 0;
|
|
|
|
activeBank = 1;
|
|
|
|
}
|
|
|
|
comment = m_asPedComments[actualUsedBank];
|
|
|
|
for(uint32 i = 0; i < nrOfCommentsInBank[actualUsedBank]; i++) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_asPedComments[actualUsedBank][indexMap[actualUsedBank][i]].field_25 > 0) {
|
|
|
|
--m_asPedComments[actualUsedBank][indexMap[actualUsedBank][i]].field_25;
|
2019-08-16 18:17:15 +00:00
|
|
|
Add(&comment[indexMap[actualUsedBank][i]]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(uint32 i = 0; i < 20; i++) { indexMap[actualUsedBank][i] = 20; }
|
|
|
|
nrOfCommentsInBank[actualUsedBank] = 0;
|
|
|
|
}
|
2019-07-31 15:54:18 +00:00
|
|
|
}
|
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
void
|
|
|
|
cAudioCollisionManager::AddCollisionToRequestedQueue()
|
|
|
|
{
|
|
|
|
int32 collisionsIndex;
|
|
|
|
int32 i;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_bCollisionsInQueue >= 10) {
|
2019-08-29 22:44:57 +00:00
|
|
|
collisionsIndex = m_bIndicesTable[9];
|
|
|
|
if(m_sQueue.m_fDistance >= m_asCollisions1[collisionsIndex].m_fDistance) return;
|
|
|
|
} else {
|
|
|
|
collisionsIndex = m_bCollisionsInQueue++;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_asCollisions1[collisionsIndex] = m_sQueue;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
if(collisionsIndex) {
|
2019-10-25 16:39:26 +00:00
|
|
|
while(m_asCollisions1[m_bIndicesTable[i]].m_fDistance <= m_asCollisions1[collisionsIndex].m_fDistance) {
|
2019-08-29 22:44:57 +00:00
|
|
|
if(++i >= collisionsIndex) {
|
|
|
|
m_bIndicesTable[i] = collisionsIndex;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memmove(&m_bIndicesTable[i + 1], &m_bIndicesTable[i], 9 - i);
|
|
|
|
}
|
|
|
|
m_bIndicesTable[i] = collisionsIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioScriptObject::Reset()
|
|
|
|
{
|
|
|
|
AudioId = 125;
|
|
|
|
Posn = {0.0f, 0.0f, 0.0f};
|
2019-10-12 22:35:01 +00:00
|
|
|
AudioEntity = AEHANDLE_NONE;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
|
2019-07-31 15:54:18 +00:00
|
|
|
void *
|
|
|
|
cAudioScriptObject::operator new(size_t sz)
|
|
|
|
{
|
|
|
|
return CPools::GetAudioScriptObjectPool()->New();
|
|
|
|
}
|
|
|
|
void *
|
|
|
|
cAudioScriptObject::operator new(size_t sz, int handle)
|
|
|
|
{
|
|
|
|
return CPools::GetAudioScriptObjectPool()->New(handle);
|
|
|
|
}
|
|
|
|
void
|
|
|
|
cAudioScriptObject::operator delete(void *p, size_t sz)
|
|
|
|
{
|
|
|
|
CPools::GetAudioScriptObjectPool()->Delete((cAudioScriptObject *)p);
|
|
|
|
}
|
|
|
|
void
|
|
|
|
cAudioScriptObject::operator delete(void *p, int handle)
|
|
|
|
{
|
|
|
|
CPools::GetAudioScriptObjectPool()->Delete((cAudioScriptObject *)p);
|
|
|
|
}
|
2019-07-20 15:00:57 +00:00
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
void
|
|
|
|
cAudioManager::AddDetailsToRequestedOrderList(uint8 sample)
|
|
|
|
{
|
|
|
|
uint32 i = 0;
|
|
|
|
if(sample != 0) {
|
|
|
|
for(; i < sample; i++) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_asSamples[m_bActiveSampleQueue][m_abSampleQueueIndexTable[m_bActiveSampleQueue][i]]
|
|
|
|
.calculatedVolume > m_asSamples[m_bActiveSampleQueue][sample].calculatedVolume)
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(i < sample) {
|
2019-07-12 16:27:12 +00:00
|
|
|
memmove(&m_abSampleQueueIndexTable[m_bActiveSampleQueue][i + 1],
|
2019-10-25 16:39:26 +00:00
|
|
|
&m_abSampleQueueIndexTable[m_bActiveSampleQueue][i], m_bActiveSamples - i - 1);
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-12 16:27:12 +00:00
|
|
|
m_abSampleQueueIndexTable[m_bActiveSampleQueue][i] = sample;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-10-25 16:39:26 +00:00
|
|
|
cAudioManager::AddPlayerCarSample(uint8 emittingVolume, int32 freq, uint32 sample, uint8 unk1, uint8 counter,
|
|
|
|
bool notLooping)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVolume, 50.f, m_sQueueSample.m_fDistance);
|
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = counter;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = sample;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 0;
|
|
|
|
m_sQueueSample.m_nFrequency = freq;
|
|
|
|
if(notLooping) {
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_76 = 8;
|
|
|
|
} else {
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
}
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVolume;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.field_48 = 6.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 50.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::AddReflectionsToRequestedQueue()
|
|
|
|
{
|
|
|
|
float reflectionDistance;
|
|
|
|
int32 noise;
|
2019-08-27 18:50:59 +00:00
|
|
|
uint8 emittingVolume = (m_sQueueSample.m_bVolume >> 1) + (m_sQueueSample.m_bVolume >> 3);
|
2019-07-08 19:44:32 +00:00
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
for(uint32 i = 0; i < 5; i++) {
|
2019-07-08 19:44:32 +00:00
|
|
|
reflectionDistance = m_afReflectionsDistances[i];
|
|
|
|
if(reflectionDistance > 0.0f && reflectionDistance < 100.f &&
|
|
|
|
reflectionDistance < m_sQueueSample.m_fSoundIntensity) {
|
2019-07-21 10:39:22 +00:00
|
|
|
m_sQueueSample.m_bLoopsRemaining = (reflectionDistance * 500.f / 1029.f);
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_sQueueSample.m_bLoopsRemaining > 5) {
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_fDistance = m_afReflectionsDistances[i];
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVolume;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(
|
|
|
|
emittingVolume, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(m_sQueueSample.m_bVolume > emittingVolume >> 4) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter += ((i + 1) << 8);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(m_sQueueSample.m_nLoopCount) {
|
2019-10-25 16:39:26 +00:00
|
|
|
noise = RandomDisplacement(m_sQueueSample.m_nFrequency >> 5);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(noise <= 0)
|
|
|
|
m_sQueueSample.m_nFrequency += noise;
|
|
|
|
else
|
|
|
|
m_sQueueSample.m_nFrequency -= noise;
|
|
|
|
}
|
|
|
|
m_sQueueSample.field_16 += 20;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_vecPos = m_avecReflectionsPos[i];
|
2019-07-08 19:44:32 +00:00
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
void
|
2019-07-08 19:44:32 +00:00
|
|
|
cAudioManager::AddReleasingSounds()
|
|
|
|
{
|
2019-08-29 22:44:57 +00:00
|
|
|
bool toProcess[44];
|
|
|
|
|
2019-10-27 13:15:39 +00:00
|
|
|
int8 queue = m_bActiveSampleQueue == 0;
|
|
|
|
|
|
|
|
for(int32 i = 0; i < m_bSampleRequestQueuesStatus[queue]; i++) {
|
|
|
|
tActiveSample &sample = m_asSamples[queue][m_abSampleQueueIndexTable[queue][i]];
|
|
|
|
if (sample.m_bLoopEnded) continue;
|
|
|
|
|
|
|
|
toProcess[i] = false;
|
|
|
|
for(int32 j = 0; j < m_bSampleRequestQueuesStatus[m_bActiveSampleQueue]; j++) {
|
|
|
|
if(sample.m_nEntityIndex ==
|
|
|
|
m_asSamples[m_bActiveSampleQueue]
|
|
|
|
[m_abSampleQueueIndexTable[m_bActiveSampleQueue][j]]
|
|
|
|
.m_nEntityIndex &&
|
|
|
|
sample.m_counter == m_asSamples[m_bActiveSampleQueue]
|
|
|
|
[m_abSampleQueueIndexTable[m_bActiveSampleQueue][j]]
|
|
|
|
.m_counter) {
|
|
|
|
toProcess[i] = true;
|
|
|
|
break;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
2019-10-27 13:15:39 +00:00
|
|
|
}
|
|
|
|
if(!toProcess[i]) {
|
|
|
|
if(sample.m_counter <= 255u || !sample.m_bLoopsRemaining) {
|
|
|
|
if(!sample.field_76) continue;
|
|
|
|
if(!sample.m_nLoopCount) {
|
|
|
|
if(sample.field_88 == -1) {
|
|
|
|
sample.field_88 = sample.m_bVolume / sample.field_76;
|
|
|
|
if(sample.field_88 <= 0) sample.field_88 = 1;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
2019-10-27 13:15:39 +00:00
|
|
|
if(sample.m_bVolume <= sample.field_88) {
|
|
|
|
sample.field_76 = 0;
|
|
|
|
continue;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
2019-10-27 13:15:39 +00:00
|
|
|
sample.m_bVolume -= sample.field_88;
|
|
|
|
}
|
|
|
|
--sample.field_76;
|
|
|
|
if(field_2) {
|
|
|
|
if(sample.field_16 < 20) ++sample.field_16;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
2019-10-27 13:15:39 +00:00
|
|
|
sample.field_56 = 0;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
2019-10-27 13:15:39 +00:00
|
|
|
memcpy(&m_sQueueSample, &sample, sizeof(sample));
|
|
|
|
AddSampleToRequestedQueue();
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
2019-07-07 14:32:28 +00:00
|
|
|
void
|
|
|
|
cAudioManager::AddSampleToRequestedQueue()
|
|
|
|
{
|
|
|
|
int32 calculatedVolume;
|
2019-07-12 16:27:12 +00:00
|
|
|
uint8 sampleIndex;
|
2019-07-07 14:32:28 +00:00
|
|
|
bool bReflections;
|
|
|
|
|
|
|
|
if(m_sQueueSample.m_nSampleIndex < TOTAL_AUDIO_SAMPLES) {
|
|
|
|
calculatedVolume = m_sQueueSample.field_16 * (maxVolume - m_sQueueSample.m_bVolume);
|
2019-07-12 16:27:12 +00:00
|
|
|
sampleIndex = m_bSampleRequestQueuesStatus[m_bActiveSampleQueue];
|
|
|
|
if(sampleIndex >= m_bActiveSamples) {
|
2019-10-25 16:39:26 +00:00
|
|
|
sampleIndex = m_abSampleQueueIndexTable[m_bActiveSampleQueue][m_bActiveSamples - 1];
|
|
|
|
if(m_asSamples[m_bActiveSampleQueue][sampleIndex].calculatedVolume <= calculatedVolume) return;
|
2019-07-07 14:32:28 +00:00
|
|
|
} else {
|
|
|
|
++m_bSampleRequestQueuesStatus[m_bActiveSampleQueue];
|
|
|
|
}
|
|
|
|
m_sQueueSample.calculatedVolume = calculatedVolume;
|
|
|
|
m_sQueueSample.m_bLoopEnded = 0;
|
|
|
|
if(m_sQueueSample.m_bIsDistant) {
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
m_sQueueSample.m_bLoopsRemaining = 0;
|
|
|
|
}
|
|
|
|
if(m_bDynamicAcousticModelingStatus && m_sQueueSample.m_nLoopCount) {
|
|
|
|
bReflections = m_sQueueSample.m_bRequireReflection;
|
|
|
|
} else {
|
|
|
|
bReflections = false;
|
|
|
|
m_sQueueSample.m_bLoopsRemaining = 0;
|
|
|
|
}
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
|
|
|
|
if(!m_bDynamicAcousticModelingStatus) m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
m_asSamples[m_bActiveSampleQueue][sampleIndex] = m_sQueueSample;
|
2019-07-07 14:32:28 +00:00
|
|
|
|
2019-07-12 16:27:12 +00:00
|
|
|
AddDetailsToRequestedOrderList(sampleIndex);
|
2019-07-07 14:32:28 +00:00
|
|
|
if(bReflections) AddReflectionsToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-07-08 19:44:32 +00:00
|
|
|
cAudioManager::AgeCrimes()
|
2019-07-07 14:32:28 +00:00
|
|
|
{
|
2019-08-29 22:44:57 +00:00
|
|
|
for(uint8 i = 0; i < 10; i++) {
|
|
|
|
if(crimes[i].type) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(++crimes[i].timer > 1500) crimes[i].type = 0;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::CalculateDistance(bool *ptr, float dist)
|
|
|
|
{
|
|
|
|
if(*ptr == false) {
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.m_fDistance = Sqrt(dist);
|
2019-07-08 19:44:32 +00:00
|
|
|
*ptr = true;
|
2019-07-07 14:32:28 +00:00
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-08-16 18:17:15 +00:00
|
|
|
cAudioManager::CheckForAnAudioFileOnCD() const
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
2019-08-02 20:20:12 +00:00
|
|
|
return SampleManager.CheckForAnAudioFileOnCD();
|
2019-07-07 14:32:28 +00:00
|
|
|
}
|
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ClearActiveSamples()
|
|
|
|
{
|
|
|
|
for(int32 i = 0; i < m_bActiveSamples; i++) {
|
2019-10-12 22:35:01 +00:00
|
|
|
m_asActiveSamples[i].m_nEntityIndex = AEHANDLE_NONE;
|
2019-08-29 22:44:57 +00:00
|
|
|
m_asActiveSamples[i].m_counter = 0;
|
|
|
|
m_asActiveSamples[i].m_nSampleIndex = NO_SAMPLE;
|
|
|
|
m_asActiveSamples[i].m_bBankIndex = 3;
|
|
|
|
m_asActiveSamples[i].m_bIsDistant = 0;
|
|
|
|
m_asActiveSamples[i].field_16 = 5;
|
|
|
|
m_asActiveSamples[i].m_nFrequency = 0;
|
|
|
|
m_asActiveSamples[i].m_bVolume = 0;
|
|
|
|
m_asActiveSamples[i].m_bEmittingVolume = 0;
|
|
|
|
m_asActiveSamples[i].m_fDistance = 0.0f;
|
|
|
|
m_asActiveSamples[i].m_bIsProcessed = 0;
|
|
|
|
m_asActiveSamples[i].m_bLoopEnded = 0;
|
|
|
|
m_asActiveSamples[i].m_nLoopCount = 1;
|
|
|
|
m_asActiveSamples[i].m_nLoopStart = 0;
|
|
|
|
m_asActiveSamples[i].m_nLoopEnd = -1;
|
|
|
|
m_asActiveSamples[i].field_48 = 0.0f;
|
|
|
|
m_asActiveSamples[i].m_fSoundIntensity = 200.0f;
|
|
|
|
m_asActiveSamples[i].m_bOffset = 63;
|
|
|
|
m_asActiveSamples[i].field_56 = 0;
|
|
|
|
m_asActiveSamples[i].calculatedVolume = 0;
|
|
|
|
m_asActiveSamples[i].field_76 = 0;
|
|
|
|
m_asActiveSamples[i].field_88 = -1;
|
|
|
|
m_asActiveSamples[i].m_vecPos = {0.0f, 0.0f, 0.0f};
|
|
|
|
m_asActiveSamples[i].m_bReverbFlag = 0;
|
|
|
|
m_asActiveSamples[i].m_bLoopsRemaining = 0;
|
|
|
|
m_asActiveSamples[i].m_bRequireReflection = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-07 14:32:28 +00:00
|
|
|
void
|
2019-07-08 19:44:32 +00:00
|
|
|
cAudioManager::ClearMissionAudio()
|
2019-07-07 14:32:28 +00:00
|
|
|
{
|
2019-07-08 19:44:32 +00:00
|
|
|
if(m_bIsInitialised) {
|
|
|
|
m_sMissionAudio.m_nSampleIndex = NO_SAMPLE;
|
|
|
|
m_sMissionAudio.m_bLoadingStatus = 0;
|
|
|
|
m_sMissionAudio.m_bPlayStatus = 0;
|
|
|
|
m_sMissionAudio.field_22 = 0;
|
|
|
|
m_sMissionAudio.m_bIsPlayed = false;
|
|
|
|
m_sMissionAudio.field_12 = 1;
|
|
|
|
m_sMissionAudio.field_24 = 0;
|
|
|
|
}
|
|
|
|
}
|
2019-07-07 14:32:28 +00:00
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ClearRequestedQueue()
|
|
|
|
{
|
|
|
|
for(int32 i = 0; i < m_bActiveSamples; i++) {
|
2019-07-12 16:27:12 +00:00
|
|
|
m_abSampleQueueIndexTable[m_bActiveSampleQueue][i] = m_bActiveSamples;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
m_bSampleRequestQueuesStatus[m_bActiveSampleQueue] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32
|
|
|
|
cAudioManager::ComputeDopplerEffectedFrequency(uint32 oldFreq, float position1, float position2,
|
2019-08-16 18:17:15 +00:00
|
|
|
float speedMultiplier) const
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
|
|
|
uint32 newFreq = oldFreq;
|
|
|
|
if(!TheCamera.Get_Just_Switched_Status() && speedMultiplier != 0.0f) {
|
|
|
|
float dist = position2 - position1;
|
|
|
|
if(dist != 0.0f) {
|
|
|
|
float speedOfSource = (dist / field_19195) * speedMultiplier;
|
2019-08-16 18:17:15 +00:00
|
|
|
if(speedOfSound > Abs(speedOfSource)) {
|
2019-07-08 19:44:32 +00:00
|
|
|
if(speedOfSource < 0.0f) {
|
2019-08-27 18:50:59 +00:00
|
|
|
speedOfSource = max(speedOfSource, -1.5f);
|
2019-07-08 19:44:32 +00:00
|
|
|
} else {
|
2019-08-27 18:50:59 +00:00
|
|
|
speedOfSource = min(speedOfSource, 1.5f);
|
2019-07-07 14:32:28 +00:00
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
newFreq = (oldFreq * speedOfSound) / (speedOfSource + speedOfSound);
|
2019-07-07 14:32:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
return newFreq;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32
|
2019-09-24 11:33:16 +00:00
|
|
|
cAudioManager::ComputePan(float dist, CVector *vec)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
2019-09-24 11:33:16 +00:00
|
|
|
int32 index = min(63, Abs(vec->x / (dist / 64.f)));
|
|
|
|
|
|
|
|
if(vec->x > 0.f) return max(20, 63 - panTable[index]);
|
|
|
|
return min(107, panTable[index] + 63);
|
2019-07-07 14:32:28 +00:00
|
|
|
}
|
|
|
|
|
2019-10-26 12:20:12 +00:00
|
|
|
uint8
|
|
|
|
cAudioManager::ComputeVolume(uint8 emittingVolume, float soundIntensity, float distance) const
|
2019-07-07 14:32:28 +00:00
|
|
|
{
|
|
|
|
float newSoundIntensity;
|
|
|
|
if(soundIntensity <= 0.0f) return 0;
|
|
|
|
if((soundIntensity * 0.2f) <= distance) {
|
|
|
|
newSoundIntensity = soundIntensity * 0.2f;
|
|
|
|
emittingVolume =
|
2019-10-25 16:39:26 +00:00
|
|
|
sq((soundIntensity - distance) / (soundIntensity - newSoundIntensity)) * emittingVolume;
|
2019-07-07 14:32:28 +00:00
|
|
|
}
|
|
|
|
return emittingVolume;
|
|
|
|
}
|
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
int32
|
2019-10-27 17:04:13 +00:00
|
|
|
cAudioManager::CreateEntity(int32 type, void *entity)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
|
|
|
if(!m_bIsInitialised) return -4;
|
|
|
|
if(!entity) return -2;
|
|
|
|
if(type >= TOTAL_AUDIO_TYPES) return -1;
|
|
|
|
for(uint32 i = 0; i < 200; i++) {
|
|
|
|
if(!m_asAudioEntities[i].m_bIsUsed) {
|
|
|
|
m_asAudioEntities[i].m_bIsUsed = true;
|
|
|
|
m_asAudioEntities[i].m_bStatus = 0;
|
|
|
|
m_asAudioEntities[i].m_nType = (eAudioType)type;
|
2019-10-27 17:04:13 +00:00
|
|
|
m_asAudioEntities[i].m_pEntity = entity;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_asAudioEntities[i].m_awAudioEvent[0] = SOUND_TOTAL_PED_SOUNDS;
|
|
|
|
m_asAudioEntities[i].m_awAudioEvent[1] = SOUND_TOTAL_PED_SOUNDS;
|
|
|
|
m_asAudioEntities[i].m_awAudioEvent[2] = SOUND_TOTAL_PED_SOUNDS;
|
|
|
|
m_asAudioEntities[i].m_awAudioEvent[3] = SOUND_TOTAL_PED_SOUNDS;
|
2019-10-26 14:47:57 +00:00
|
|
|
m_asAudioEntities[i].m_AudioEvents = 0;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_anAudioEntityIndices[m_nAudioEntitiesTotal++] = i;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -3;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::DestroyAllGameCreatedEntities()
|
|
|
|
{
|
|
|
|
cAudioScriptObject *entity;
|
|
|
|
|
|
|
|
if(m_bIsInitialised) {
|
|
|
|
for(uint32 i = 0; i < 200; i++) {
|
|
|
|
if(m_asAudioEntities[i].m_bIsUsed) {
|
|
|
|
switch(m_asAudioEntities[i].m_nType) {
|
|
|
|
case AUDIOTYPE_PHYSICAL:
|
|
|
|
case AUDIOTYPE_EXPLOSION:
|
|
|
|
case AUDIOTYPE_WEATHER:
|
|
|
|
case AUDIOTYPE_CRANE:
|
|
|
|
case AUDIOTYPE_GARAGE:
|
2019-08-16 18:17:15 +00:00
|
|
|
case AUDIOTYPE_FIREHYDRANT: DestroyEntity(i); break;
|
2019-08-15 01:43:00 +00:00
|
|
|
case AUDIOTYPE_SCRIPTOBJECT:
|
2019-10-25 16:39:26 +00:00
|
|
|
entity = (cAudioScriptObject *)m_asAudioEntities[i].m_pEntity;
|
2019-10-12 20:21:44 +00:00
|
|
|
if(entity) {
|
|
|
|
delete entity;
|
2019-09-24 11:33:16 +00:00
|
|
|
m_asAudioEntities[i].m_pEntity = nil;
|
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
DestroyEntity(i);
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_nScriptObjectEntityTotal = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::DestroyEntity(int32 id)
|
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_bIsInitialised && id >= 0 && id < totalAudioEntitiesSlots && m_asAudioEntities[id].m_bIsUsed) {
|
2019-07-08 19:44:32 +00:00
|
|
|
m_asAudioEntities[id].m_bIsUsed = 0;
|
|
|
|
for(int32 i = 0; i < m_nAudioEntitiesTotal; ++i) {
|
|
|
|
if(id == m_anAudioEntityIndices[i]) {
|
|
|
|
if(i < totalAudioEntitiesSlots - 1)
|
2019-10-25 16:39:26 +00:00
|
|
|
memmove(&m_anAudioEntityIndices[i], &m_anAudioEntityIndices[i + 1],
|
2019-07-08 19:44:32 +00:00
|
|
|
4 * (m_nAudioEntitiesTotal - (i + 1)));
|
2019-10-25 16:39:26 +00:00
|
|
|
m_anAudioEntityIndices[--m_nAudioEntitiesTotal] = totalAudioEntitiesSlots;
|
2019-07-08 19:44:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
void
|
|
|
|
cAudioManager::DoJumboVolOffset() const
|
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
if(!(m_nTimeOfRecentCrime % (m_anRandomTable[0] % 6 + 3))) jumboVolOffset = m_anRandomTable[1] % 60;
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
void
|
|
|
|
cAudioManager::DoPoliceRadioCrackle()
|
|
|
|
{
|
|
|
|
m_sQueueSample.m_nEntityIndex = m_nPoliceChannelEntity;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_POLICE_RADIO_CRACKLE;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 1;
|
|
|
|
m_sQueueSample.field_16 = 10;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_POLICE_RADIO_CRACKLE);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = m_anRandomTable[2] % 20 + 15;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = m_sQueueSample.m_bVolume;
|
2019-08-02 20:20:12 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(188);
|
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(188);
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
m_sQueueSample.m_bOffset = 63;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetPlayerTalkSfx(int16 sound)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-07-08 19:44:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_DAMAGE: GetPhrase(&sfx, &lastSfx, SFX_CLAUDE_HIGH_DAMAGE_GRUNT_1, 11); break;
|
|
|
|
case SOUND_PED_HIT: GetPhrase(&sfx, &lastSfx, SFX_CLAUDE_LOW_DAMAGE_GRUNT_1, 10); break;
|
|
|
|
case SOUND_PED_LAND: GetPhrase(&sfx, &lastSfx, SFX_CLAUDE_HIT_GROUND_GRUNT_1, 6); break;
|
2019-08-27 18:50:59 +00:00
|
|
|
default: sfx = NO_SAMPLE; break;
|
2019-07-05 19:15:32 +00:00
|
|
|
}
|
2019-08-27 18:50:59 +00:00
|
|
|
return sfx;
|
2019-07-05 19:15:32 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetCopTalkSfx(int16 sound)
|
2019-07-05 19:15:32 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32 sfx;
|
|
|
|
PedState pedState;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-07-05 19:15:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
if(sound == SOUND_PED_ARREST_COP) {
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_COP_VOICE_1_ARREST_1, 6);
|
2019-08-27 18:50:59 +00:00
|
|
|
} else {
|
|
|
|
if(sound != SOUND_PED_PURSUIT_COP) { return GetGenericMaleTalkSfx(sound); }
|
2019-07-05 19:15:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
pedState = FindPlayerPed()->m_nPedState;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(pedState == PED_ARRESTED || pedState == PED_DEAD || pedState == PED_DIE) return NO_SAMPLE;
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_COP_VOICE_1_CHASE_1, 7);
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
2019-07-05 19:15:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
return 13 * (m_sQueueSample.m_nEntityIndex % 5) + sfx;
|
2019-07-05 19:15:32 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetSwatTalkSfx(int16 sound)
|
2019-07-05 19:15:32 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32 sfx;
|
|
|
|
PedState pedState;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-07-05 19:15:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
if(sound == SOUND_PED_ARREST_SWAT) {
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_SWAT_VOICE_1_CHASE_1, 6);
|
2019-08-27 18:50:59 +00:00
|
|
|
} else {
|
|
|
|
if(sound != SOUND_PED_PURSUIT_SWAT) { return GetGenericMaleTalkSfx(sound); }
|
2019-07-05 19:15:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
pedState = FindPlayerPed()->m_nPedState;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(pedState == PED_ARRESTED || pedState == PED_DEAD || pedState == PED_DIE) return NO_SAMPLE;
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_SWAT_VOICE_1_CHASE_1, 6);
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
2019-07-05 19:15:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
return 6 * (m_sQueueSample.m_nEntityIndex % 3) + sfx;
|
|
|
|
}
|
2019-07-05 19:15:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetFBITalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
PedState pedState;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-07-05 19:15:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
if(sound == SOUND_PED_ARREST_FBI) {
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_FBI_VOICE_1_CHASE_1, 6);
|
2019-08-27 18:50:59 +00:00
|
|
|
} else {
|
|
|
|
if(sound != SOUND_PED_PURSUIT_FBI) { return GetGenericMaleTalkSfx(sound); }
|
2019-07-05 19:15:32 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
pedState = FindPlayerPed()->m_nPedState;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(pedState == PED_ARRESTED || pedState == PED_DEAD || pedState == PED_DIE) return NO_SAMPLE;
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_FBI_VOICE_1_CHASE_1, 6);
|
2019-07-05 19:15:32 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
return 6 * (m_sQueueSample.m_nEntityIndex % 3) + sfx;
|
2019-07-02 18:35:47 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetArmyTalkSfx(int16 sound)
|
2019-07-02 18:35:47 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32 sfx;
|
|
|
|
PedState pedState;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-07-02 18:35:47 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
if(sound != SOUND_PED_PURSUIT_ARMY) { return GetGenericMaleTalkSfx(sound); }
|
2019-07-02 18:35:47 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
pedState = FindPlayerPed()->m_nPedState;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(pedState == PED_ARRESTED || pedState == PED_DEAD || pedState == PED_DIE) return NO_SAMPLE;
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_ARMY_VOICE_1_CHASE_1, 15);
|
2019-07-02 18:35:47 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
return 15 * (m_sQueueSample.m_nEntityIndex % 1) + sfx;
|
2019-07-02 18:35:47 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetMedicTalkSfx(int16 sound)
|
2019-07-02 18:35:47 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-07-02 18:35:47 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_COWER: GetPhrase(&sfx, &lastSfx, SFX_MEDIC_VOICE_1_GUN_PANIC_1, 5); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_MEDIC_VOICE_1_CARJACKED_1, 5); break;
|
|
|
|
case SOUND_PED_HEALING: GetPhrase(&sfx, &lastSfx, SFX_MEDIC_VOICE_1_AT_VICTIM_1, 12); break;
|
|
|
|
case SOUND_PED_LEAVE_VEHICLE: GetPhrase(&sfx, &lastSfx, SFX_MEDIC_VOICE_1_GET_OUT_VAN_CHAT_1, 9); break;
|
|
|
|
case SOUND_PED_FLEE_RUN: GetPhrase(&sfx, &lastSfx, SFX_MEDIC_VOICE_1_RUN_FROM_FIGHT_1, 6); break;
|
2019-08-27 18:50:59 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return 37 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
2019-07-02 18:35:47 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetFiremanTalkSfx(int16 sound)
|
2019-07-02 18:35:47 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
return GetGenericMaleTalkSfx(sound);
|
2019-07-02 18:35:47 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetNormalMaleTalkSfx(int16 sound)
|
2019-07-02 18:35:47 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-06-27 16:45:16 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_COWER: GetPhrase(&sfx, &lastSfx, SFX_NORMAL_MALE_GUN_PANIC_1, 7); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_NORMAL_MALE_CARJACKED_1, 7); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_NORMAL_MALE_DODGE_1, 9); break;
|
|
|
|
case SOUND_PED_FLEE_RUN: GetPhrase(&sfx, &lastSfx, SFX_NORMAL_MALE_RUN_FROM_FIGHT_1, 5); break;
|
2019-06-27 16:45:16 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_NORMAL_MALE_DRIVER_ABUSE_1, 12);
|
2019-06-27 16:45:16 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_NORMAL_MALE_EYING_1, 8); break;
|
|
|
|
case SOUND_PED_CHAT_EVENT: GetPhrase(&sfx, &lastSfx, SFX_NORMAL_MALE_SHOCKED_1, 10); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_NORMAL_MALE_CHAT_1, 25); break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
2019-06-27 16:45:16 +00:00
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
2019-06-29 11:44:20 +00:00
|
|
|
cAudioManager::GetTaxiDriverTalkSfx(int16 sound)
|
2019-06-27 16:45:16 +00:00
|
|
|
{
|
|
|
|
uint32 sfx;
|
2019-06-29 11:44:20 +00:00
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-06-27 16:45:16 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
if(sound == SOUND_PED_CAR_JACKED) {
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_ASIAN_TAXI_DRIVER_VOICE_1_CARJACKED_1, 7);
|
2019-06-27 16:45:16 +00:00
|
|
|
} else {
|
2019-08-16 18:17:15 +00:00
|
|
|
if(sound != SOUND_PED_CAR_COLLISION) return GetGenericMaleTalkSfx(sound);
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_ASIAN_TAXI_DRIVER_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-27 16:45:16 +00:00
|
|
|
}
|
|
|
|
return 13 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
2019-06-29 11:44:20 +00:00
|
|
|
cAudioManager::GetPimpTalkSfx(int16 sound)
|
2019-06-27 16:45:16 +00:00
|
|
|
{
|
|
|
|
uint32 sfx;
|
2019-06-29 11:44:20 +00:00
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-06-27 16:45:16 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_PIMP_GUN_COOL_1, 7); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_PIMP_CARJACKED_1, 4); break;
|
|
|
|
case SOUND_PED_DEFEND: GetPhrase(&sfx, &lastSfx, SFX_PIMP_FIGHT_1, 9); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_PIMP_DODGE_1, 6); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_PIMP_DRIVER_ABUSE_1, 5); break;
|
|
|
|
case SOUND_PED_CHAT_EVENT: GetPhrase(&sfx, &lastSfx, SFX_PIMP_SHOCKED_1, 2); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_PIMP_CHAT_1, 17); break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
2019-06-27 16:45:16 +00:00
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
2019-06-29 11:44:20 +00:00
|
|
|
cAudioManager::GetMafiaTalkSfx(int16 sound)
|
2019-06-27 16:45:16 +00:00
|
|
|
{
|
|
|
|
uint32 sfx;
|
2019-06-29 11:44:20 +00:00
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-06-27 16:45:16 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKING: GetPhrase(&sfx, &lastSfx, SFX_MAFIA_MALE_VOICE_1_CARJACKING_1, 2); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_MAFIA_MALE_VOICE_1_CARJACKED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_MAFIA_MALE_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_MAFIA_MALE_VOICE_1_DODGE_1, 5); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_MAFIA_MALE_VOICE_1_DRIVER_ABUSE_1, 6); break;
|
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_MAFIA_MALE_VOICE_1_EYING_1, 3); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_MAFIA_MALE_VOICE_1_CHAT_1, 7); break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
2019-06-27 16:45:16 +00:00
|
|
|
}
|
|
|
|
return 30 * (m_sQueueSample.m_nEntityIndex % 3) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
2019-06-29 11:44:20 +00:00
|
|
|
cAudioManager::GetTriadTalkSfx(int16 sound)
|
2019-06-27 16:45:16 +00:00
|
|
|
{
|
|
|
|
uint32 sfx;
|
2019-06-29 11:44:20 +00:00
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-06-27 16:45:16 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_TRIAD_MALE_VOICE_1_GUN_COOL_1, 3); break;
|
|
|
|
case SOUND_PED_CAR_JACKING: GetPhrase(&sfx, &lastSfx, SFX_TRIAD_MALE_VOICE_1_CARJACKING_1, 2); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_TRIAD_MALE_VOICE_1_CARJACKED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_TRIAD_MALE_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_TRIAD_MALE_VOICE_1_DODGE_1, 4); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_TRIAD_MALE_VOICE_1_DRIVER_ABUSE_1, 7); break;
|
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_TRIAD_MALE_VOICE_1_EYING_1, 3); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_TRIAD_MALE_VOICE_1_CHAT_1, 8); break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
2019-06-27 16:45:16 +00:00
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
2019-06-13 19:16:55 +00:00
|
|
|
|
|
|
|
uint32
|
2019-06-29 11:44:20 +00:00
|
|
|
cAudioManager::GetDiabloTalkSfx(int16 sound)
|
2019-06-13 19:16:55 +00:00
|
|
|
{
|
2019-06-27 16:45:16 +00:00
|
|
|
uint32 sfx;
|
2019-06-29 11:44:20 +00:00
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-06-27 16:45:16 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_DIABLO_MALE_VOICE_1_GUN_COOL_1, 4); break;
|
2019-06-27 16:45:16 +00:00
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-06-29 11:44:20 +00:00
|
|
|
sound = SOUND_PED_FLEE_SPRINT;
|
2019-08-16 18:17:15 +00:00
|
|
|
return GetGenericMaleTalkSfx(sound);
|
2019-06-27 16:45:16 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKING: GetPhrase(&sfx, &lastSfx, SFX_DIABLO_MALE_VOICE_1_CARJACKING_1, 2); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_DIABLO_MALE_VOICE_1_CARJACKED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_DIABLO_MALE_VOICE_1_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_DIABLO_MALE_VOICE_1_DODGE_1, 4); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_DIABLO_MALE_VOICE_1_DRIVER_ABUSE_1, 5); break;
|
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_DIABLO_MALE_VOICE_1_EYING_1, 4); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_DIABLO_MALE_VOICE_1_CHAT_1, 5); break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
2019-06-27 16:45:16 +00:00
|
|
|
}
|
|
|
|
return 30 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
2019-06-29 11:44:20 +00:00
|
|
|
cAudioManager::GetYakuzaTalkSfx(int16 sound)
|
2019-06-27 16:45:16 +00:00
|
|
|
{
|
|
|
|
uint32 sfx;
|
2019-06-29 11:44:20 +00:00
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-06-27 16:45:16 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKING: GetPhrase(&sfx, &lastSfx, SFX_YAKUZA_MALE_VOICE_1_CARJACKING_1, 2); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_YAKUZA_MALE_VOICE_1_CARJACKED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_YAKUZA_MALE_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_YAKUZA_MALE_VOICE_1_DODGE_1, 4); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_YAKUZA_MALE_VOICE_1_DRIVER_ABUSE_1, 6); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_YAKUZA_MALE_VOICE_1_CHAT_1, 5); break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
2019-06-27 16:45:16 +00:00
|
|
|
}
|
|
|
|
return 24 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
2019-06-29 11:44:20 +00:00
|
|
|
cAudioManager::GetYardieTalkSfx(int16 sound)
|
2019-06-27 16:45:16 +00:00
|
|
|
{
|
|
|
|
uint32 sfx;
|
2019-06-29 11:44:20 +00:00
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-06-27 16:45:16 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: sfx = SFX_YARDIE_MALE_VOICE_1_GUN_COOL_1; break;
|
|
|
|
case SOUND_PED_CAR_JACKING: GetPhrase(&sfx, &lastSfx, SFX_YARDIE_MALE_VOICE_1_CARJACKING_1, 2); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: sfx = SFX_YARDIE_MALE_VOICE_1_CARJACKED_1; break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_YARDIE_MALE_VOICE_1_FIGHT_1, 6); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_YARDIE_MALE_VOICE_1_DODGE_1, 5); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_YARDIE_MALE_VOICE_1_DRIVER_ABUSE_1, 6); break;
|
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_YARDIE_MALE_VOICE_1_EYING_1, 2); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_YARDIE_MALE_VOICE_1_CHAT_1, 8); break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
2019-06-27 16:45:16 +00:00
|
|
|
}
|
|
|
|
return 31 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
2019-06-29 11:44:20 +00:00
|
|
|
cAudioManager::GetColumbianTalkSfx(int16 sound)
|
2019-06-27 16:45:16 +00:00
|
|
|
{
|
|
|
|
uint32 sfx;
|
2019-06-29 11:44:20 +00:00
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
2019-06-13 19:16:55 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKING: GetPhrase(&sfx, &lastSfx, SFX_COLUMBIAN_MALE_VOICE_1_CARJACKING_1, 2); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_COLUMBIAN_MALE_VOICE_1_CARJACKED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_COLUMBIAN_MALE_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_COLUMBIAN_MALE_VOICE_1_DODGE_1, 5); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_COLUMBIAN_MALE_VOICE_1_DRIVER_ABUSE_1, 6); break;
|
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_COLUMBIAN_MALE_VOICE_1_EYING_1, 2); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_COLUMBIAN_MALE_VOICE_1_CHAT_1, 5); break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
2019-06-13 19:16:55 +00:00
|
|
|
}
|
2019-06-29 11:44:20 +00:00
|
|
|
return 27 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetHoodTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_HOOD_MALE_VOICE_1_GUN_COOL_1, 5); break;
|
|
|
|
case SOUND_PED_CAR_JACKING: GetPhrase(&sfx, &lastSfx, SFX_HOOD_MALE_VOICE_1_CARJACKING_1, 2); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_HOOD_MALE_VOICE_1_CARJACKED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_HOOD_MALE_VOICE_1_FIGHT_1, 6); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_HOOD_MALE_VOICE_1_DODGE_1, 5); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_HOOD_MALE_VOICE_1_DRIVER_ABUSE_1, 7); break;
|
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_HOOD_MALE_VOICE_1_EYING_1, 2); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_HOOD_MALE_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
}
|
|
|
|
return 35 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackCriminalTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_BLACK_CRIMINAL_VOICE_1_GUN_COOL_1, 4); break;
|
|
|
|
case SOUND_PED_CAR_JACKING: sfx = SFX_BLACK_CRIMINAL_VOICE_1_CARJACKING_1; break;
|
|
|
|
case SOUND_PED_MUGGING: GetPhrase(&sfx, &lastSfx, SFX_BLACK_CRIMINAL_VOICE_1_MUGGING_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_BLACK_CRIMINAL_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BLACK_CRIMINAL_VOICE_1_DODGE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_CRIMINAL_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound); break;
|
2019-06-13 19:16:55 +00:00
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetWhiteCriminalTalkSfx(int16 sound)
|
2019-06-27 16:45:16 +00:00
|
|
|
{
|
2019-06-29 11:44:20 +00:00
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_WHITE_CRIMINAL_VOICE_1_GUN_COOL_1, 3); break;
|
|
|
|
case SOUND_PED_CAR_JACKING: sfx = SFX_WHITE_CRIMINAL_VOICE_1_CARJACKING_1; break;
|
|
|
|
case SOUND_PED_MUGGING: GetPhrase(&sfx, &lastSfx, SFX_WHITE_CRIMINAL_VOICE_1_MUGGING_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_WHITE_CRIMINAL_VOICE_1_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_WHITE_CRIMINAL_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_CRIMINAL_VOICE_1_DRIVER_ABUSE_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
}
|
|
|
|
return sfx;
|
2019-06-27 16:45:16 +00:00
|
|
|
}
|
2019-06-25 12:25:39 +00:00
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetMaleNo2TalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_CASUAL_MALE_OLD_VOICE_1_CARJACKED_1, 3); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_CASUAL_MALE_OLD_VOICE_1_MUGGED_1, 4); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_CASUAL_MALE_OLD_VOICE_1_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_CASUAL_MALE_OLD_VOICE_1_DODGE_1, 4); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_CASUAL_MALE_OLD_VOICE_1_DRIVER_ABUSE_1, 7); break;
|
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_CASUAL_MALE_OLD_VOICE_1_EYING_1, 5); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_CASUAL_MALE_OLD_VOICE_1_CHAT_1, 7); break;
|
2019-08-16 18:17:15 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
2019-06-29 11:44:20 +00:00
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackProjectMaleTalkSfx(int16 sound, int32 model)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_MALE_VOICE_1_GUN_COOL_1, 3); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_MALE_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_MALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_MALE_VOICE_1_FIGHT_1, 6); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_MALE_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_MALE_VOICE_1_DRIVER_ABUSE_1, 7);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_SEXY:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_MALE_VOICE_1_EYING_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_MALE_VOICE_1_CHAT_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(model == MI_P_MAN2) sfx += 34;
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetWhiteFatMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_MALE_VOICE_1_CARJACKED_1, 3); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_MALE_VOICE_1_MUGGED_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_MALE_VOICE_1_DODGE_1, 9); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_MALE_VOICE_1_DRIVER_ABUSE_1, 9);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_WAIT_DOUBLEBACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_MALE_VOICE_1_LOST_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_MALE_VOICE_1_CHAT_1, 9);
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackFatMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_MALE_VOICE_1_CARJACKED_1, 4); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_MALE_VOICE_1_MUGGED_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_MALE_VOICE_1_DODGE_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_MALE_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_WAIT_DOUBLEBACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_MALE_VOICE_1_LOST_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_MALE_VOICE_1_CHAT_1, 8); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackCasualFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_FEMALE_1_VOICE_1_GUN_PANIC_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_FEMALE_1_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_1_VOICE_1_MUGGED_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_1_VOICE_1_DODGE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_FLEE_RUN:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_FEMALE_1_VOICE_1_RUN_FROM_FIGHT_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_FEMALE_1_VOICE_1_DRIVER_ABUSE_1, 7);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_FEMALE_1_VOICE_1_SHOCKED_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_1_VOICE_1_CHAT_1, 8); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetWhiteCasualFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_CASUAL_FEMALE_VOICE_1_GUN_PANIC_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_CASUAL_FEMALE_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: sfx = SFX_WHITE_CASUAL_FEMALE_VOICE_1_MUGGED_1; break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_WHITE_CASUAL_FEMALE_VOICE_1_DODGE_1, 3); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_FLEE_RUN:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_CASUAL_FEMALE_VOICE_1_RUN_FROM_FIGHT_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_CASUAL_FEMALE_VOICE_1_DRIVER_ABUSE_1, 8);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_CASUAL_FEMALE_VOICE_1_SHOCKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_WHITE_CASUAL_FEMALE_VOICE_1_CHAT_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetFemaleNo3TalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_COWER: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_3_VOICE_1_GUN_PANIC_1, 5); break;
|
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_3_VOICE_1_CARJACKED_1, 3); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_3_VOICE_1_MUGGED_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_3_VOICE_1_DODGE_1, 6); break;
|
|
|
|
case SOUND_PED_FLEE_RUN: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_3_VOICE_1_RUN_FROM_FIGHT_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_FEMALE_3_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_EVENT: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_3_VOICE_1_SHOCKED_1, 4); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_FEMALE_3_VOICE_1_CHAT_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackFatFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_FEMALE_VOICE_1_GUN_PANIC_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_FEMALE_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_FEMALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_FEMALE_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_FEMALE_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_FEMALE_VOICE_1_SHOCKED_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_FAT_FEMALE_VOICE_1_CHAT_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetWhiteFatFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_FEMALE_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_FEMALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_FEMALE_VOICE_1_DODGE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_FEMALE_VOICE_1_DRIVER_ABUSE_1, 8);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_WAIT_DOUBLEBACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_FEMALE_VOICE_1_LOST_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_FEMALE_VOICE_1_SHOCKED_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_WHITE_FAT_FEMALE_VOICE_1_CHAT_1, 8); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackFemaleProstituteTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_UP:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROSTITUTE_VOICE_1_GUN_COOL_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: sfx = SFX_BLACK_PROSTITUTE_VOICE_1_MUGGED_1; break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_ATTACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROSTITUTE_VOICE_1_FIGHT_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROSTITUTE_VOICE_1_DODGE_1, 3); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROSTITUTE_VOICE_1_DRIVER_ABUSE_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_SOLICIT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROSTITUTE_VOICE_1_SOLICIT_1, 8);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROSTITUTE_VOICE_1_CHAT_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return 28 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetWhiteFemaleProstituteTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_ROBBED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_PROSTITUTE_VOICE_1_MUGGED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_ATTACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_PROSTITUTE_VOICE_1_FIGHT_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_WHITE_PROSTITUTE_VOICE_1_DODGE_1, 3); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_PROSTITUTE_VOICE_1_DRIVER_ABUSE_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_SOLICIT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_PROSTITUTE_VOICE_1_SOLICIT_1, 8);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_WHITE_PROSTITUTE_VOICE_1_CHAT_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return 25 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackProjectFemaleOldTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_OLD_VOICE_1_CARJACKED_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_ROBBED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_OLD_VOICE_1_MUGGED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_EVADE:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_OLD_VOICE_1_DODGE_1, 10);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_FLEE_RUN:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_OLD_VOICE_1_RUN_FROM_FIGHT_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_OLD_VOICE_1_DRIVER_ABUSE_1, 7);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_OLD_VOICE_1_SHOCKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_OLD_VOICE_1_CHAT_1, 10); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackProjectFemaleYoungTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_YOUNG_VOICE_1_GUN_PANIC_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKED: sfx = SFX_BLACK_PROJECT_FEMALE_YOUNG_VOICE_1_CARJACKED_1; break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_ROBBED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_YOUNG_VOICE_1_MUGGED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_EVADE:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_YOUNG_VOICE_1_DODGE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_YOUNG_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_YOUNG_VOICE_1_SHOCKED_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_PROJECT_FEMALE_YOUNG_VOICE_1_CHAT_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetChinatownMaleOldTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_OLD_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_OLD_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_OLD_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_OLD_VOICE_1_DODGE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_OLD_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_OLD_VOICE_1_EYING_1, 3); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_OLD_VOICE_1_CHAT_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetChinatownMaleYoungTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_YOUNG_VOICE_1_GUN_PANIC_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_YOUNG_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_YOUNG_VOICE_1_FIGHT_1, 6); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_YOUNG_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_YOUNG_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-07-02 18:35:47 +00:00
|
|
|
case SOUND_PED_CHAT_SEXY:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_YOUNG_VOICE_1_EYING_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_MALE_YOUNG_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetChinatownFemaleOldTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_OLD_FEMALE_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_OLD_FEMALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_OLD_FEMALE_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_OLD_FEMALE_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_EVENT: sfx = SFX_CHINATOWN_OLD_FEMALE_VOICE_1_SHOCKED_1; break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_OLD_FEMALE_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetChinatownFemaleYoungTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_YOUNG_FEMALE_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_YOUNG_FEMALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_YOUNG_FEMALE_VOICE_1_DODGE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_YOUNG_FEMALE_VOICE_1_DRIVER_ABUSE_1, 7);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_YOUNG_FEMALE_VOICE_1_SHOCKED_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_CHINATOWN_YOUNG_FEMALE_VOICE_1_CHAT_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetLittleItalyMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_MALE_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_MALE_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_MALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_MALE_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_MALE_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_MALE_VOICE_1_DRIVER_ABUSE_1, 7);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_MALE_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return 30 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetLittleItalyFemaleOldTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_OLD_FEMALE_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_OLD_FEMALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_OLD_FEMALE_VOICE_1_DODGE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_OLD_FEMALE_VOICE_1_DRIVER_ABUSE_1, 7);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_OLD_FEMALE_VOICE_1_SHOCKED_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_OLD_FEMALE_VOICE_1_CHAT_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetLittleItalyFemaleYoungTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_YOUNG_FEMALE_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_ROBBED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_YOUNG_FEMALE_VOICE_1_MUGGED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_YOUNG_FEMALE_VOICE_1_DODGE_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_YOUNG_FEMALE_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_YOUNG_FEMALE_VOICE_1_SHOCKED_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_LITTLE_ITALY_YOUNG_FEMALE_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetWhiteDockerMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_DOCKER_MALE_VOICE_1_GUN_PANIC_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_WHITE_DOCKER_MALE_VOICE_1_FIGHT_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_WHITE_DOCKER_MALE_VOICE_1_DODGE_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_DOCKER_MALE_VOICE_1_DRIVER_ABUSE_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_WHITE_DOCKER_MALE_VOICE_1_EYING_1, 3); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_WHITE_DOCKER_MALE_VOICE_1_CHAT_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackDockerMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_DOCKER_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_BLACK_DOCKER_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BLACK_DOCKER_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_DOCKER_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_BLACK_DOCKER_VOICE_1_EYING_1, 3); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_DOCKER_VOICE_1_CHAT_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetScumMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_COWER: GetPhrase(&sfx, &lastSfx, SFX_SCUM_MALE_VOICE_1_GUN_PANIC_1, 5); break;
|
|
|
|
case SOUND_PED_ROBBED: sfx = SFX_SCUM_MALE_VOICE_1_MUGGED_1; break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_SCUM_MALE_VOICE_1_FIGHT_1, 0xA); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_SCUM_MALE_VOICE_1_DODGE_1, 5); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_SCUM_MALE_VOICE_1_DRIVER_ABUSE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_WAIT_DOUBLEBACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_SCUM_MALE_VOICE_1_LOST_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_SCUM_MALE_VOICE_1_EYING_1, 5); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_SCUM_MALE_VOICE_1_CHAT_1, 9); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetScumFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_COWER: GetPhrase(&sfx, &lastSfx, SFX_SCUM_FEMALE_VOICE_1_GUN_PANIC_1, 4); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_SCUM_FEMALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_SCUM_FEMALE_VOICE_1_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_SCUM_FEMALE_VOICE_1_DODGE_1, 8); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_SCUM_FEMALE_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_SCUM_FEMALE_VOICE_1_CHAT_1, 13); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetWhiteWorkerMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_WORKER_MALE_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_WHITE_WORKER_MALE_VOICE_1_FIGHT_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_WHITE_WORKER_MALE_VOICE_1_DODGE_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_WORKER_MALE_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_WHITE_WORKER_MALE_VOICE_1_EYING_1, 2); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_WHITE_WORKER_MALE_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackWorkerMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_WORKER_MALE_VOICE_1_GUN_PANIC_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_BLACK_WORKER_MALE_VOICE_1_FIGHT_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BLACK_WORKER_MALE_VOICE_1_DODGE_1, 3); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_WORKER_MALE_VOICE_1_DRIVER_ABUSE_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_BLACK_WORKER_MALE_VOICE_1_EYING_1, 3); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_WORKER_MALE_VOICE_1_CHAT_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBusinessMaleYoungTalkSfx(int16 sound, int32 model)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_YOUNG_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_YOUNG_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_YOUNG_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_YOUNG_VOICE_1_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_YOUNG_VOICE_1_DODGE_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_FLEE_RUN:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_YOUNG_VOICE_1_RUN_FROM_FIGHT_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_YOUNG_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_YOUNG_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(model == 61) sfx += 32;
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBusinessMaleOldTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_OLD_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_OLD_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_OLD_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_OLD_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_OLD_VOICE_1_DODGE_1, 4); break;
|
|
|
|
case SOUND_PED_FLEE_RUN: GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_OLD_VOICE_1_MRUN_FROM_FIGHT_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_OLD_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BUSINESS_MALE_OLD_VOICE_1_CHAT_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetWhiteBusinessFemaleTalkSfx(int16 sound, int32 model)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_BUSINESS_FEMALE_VOICE_1_GUN_PANIC_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_WHITE_BUSINESS_FEMALE_VOICE_1_CARJACKED_1, 2); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_WHITE_BUSINESS_FEMALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_WHITE_BUSINESS_FEMALE_VOICE_1_DODGE_1, 6); break;
|
|
|
|
case SOUND_PED_FLEE_RUN: GetPhrase(&sfx, &lastSfx, SFX_WHITE_BUSINESS_FEMALE_VOICE_1_RUN_FROM_FIGHT_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_BUSINESS_FEMALE_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_EVENT: GetPhrase(&sfx, &lastSfx, SFX_WHITE_BUSINESS_FEMALE_VOICE_1_SHOCKED_1, 4); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_WHITE_BUSINESS_FEMALE_VOICE_1_CHAT_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(model == MI_B_WOM2) sfx += 34;
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackBusinessFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_BUSINESS_FEMALE_VOICE_1_GUN_PANIC_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_BUSINESS_FEMALE_VOICE_1_CARAJACKED_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_BLACK_BUSINESS_FEMALE_VOICE_1_MUGGED_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BLACK_BUSINESS_FEMALE_VOICE_1_DODGE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_FLEE_RUN:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_BUSINESS_FEMALE_VOICE_1_RUN_FROM_FIGHT_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_BUSINESS_FEMALE_VOICE_1_DRIVER_ABUSE_1, 7);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_BUSINESS_FEMALE_VOICE_1_SHOCKED_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_BUSINESS_FEMALE_VOICE_1_CHAT_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetSupermodelMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_MODEL_MALE_VOICE_1_CARJACKED_1, 2); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_MODEL_MALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_MODEL_MALE_VOICE_1_FIGHT_1, 5); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_MODEL_MALE_VOICE_1_DODGE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_MODEL_MALE_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_SEXY: GetPhrase(&sfx, &lastSfx, SFX_MODEL_MALE_VOICE_1_EYING_1, 3); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_MODEL_MALE_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetSupermodelFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_MODEL_FEMALE_VOICE_1_GUN_PANIC_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_MODEL_FEMALE_VOICE_1_MUGGED_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_MODEL_FEMALE_VOICE_1_DODGE_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_MODEL_FEMALE_VOICE_1_DRIVER_ABUSE_1, 7);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_EVENT:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_MODEL_FEMALE_VOICE_1_SHOCKED_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_MODEL_FEMALE_VOICE_1_CHAT_1, 8); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetStewardMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_COWER: GetPhrase(&sfx, &lastSfx, SFX_STEWARD_MALE_VOICE_1_GUN_PANIC_1, 3); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_STEWARD_MALE_VOICE_1_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_STEWARD_MALE_VOICE_1_DODGE_1, 3); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_STEWARD_MALE_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_STEWARD_MALE_VOICE_1_CHAT_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetStewardFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_STEWARD_FEMALE_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_STEWARD_FEMALE_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_STEWARD_FEMALE_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_STEWARD_FEMALE_VOICE_1_CHAT_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return 18 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetFanMaleTalkSfx(int16 sound, int32 model)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_FOOTBALL_MALE_VOICE_1_FIGHT_1, 3); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_FOOTBALL_MALE_VOICE_1_DODGE_1, 4); break;
|
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_FOOTBALL_MALE_VOICE_1_DRIVER_ABUSE_1, 5); break;
|
|
|
|
case SOUND_PED_CHAT_EVENT: GetPhrase(&sfx, &lastSfx, SFX_FOOTBALL_MALE_VOICE_1_SHOCKED_1, 2); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_FOOTBALL_MALE_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(model == MI_FAN_MAN2) sfx += 20;
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetFanFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_ROBBED: sfx = SFX_FOOTBALL_FEMALE_VOICE_1_MUGGED_1; break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_FOOTBALL_FEMALE_VOICE_1_DODGE_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_FOOTBALL_FEMALE_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_EVENT: GetPhrase(&sfx, &lastSfx, SFX_FOOTBALL_FEMALE_VOICE_1_SHOCKED_1, 2); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_FOOTBALL_FEMALE_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return 18 * (m_sQueueSample.m_nEntityIndex & 1) + sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetHospitalMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_COWER: GetPhrase(&sfx, &lastSfx, SFX_HOSPITAL_MALE_VOICE_1_GUN_PANIC_1, 4); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_HOSPITAL_MALE_VOICE_1_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_HOSPITAL_MALE_VOICE_1_DODGE_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_HOSPITAL_MALE_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_HOSPITAL_MALE_VOICE_1_CHAT_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetHospitalFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_HOSPITAL_FEMALE_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_HOSPITAL_FEMALE_VOICE_1_DRIVER_ABUSE_1, 6);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_HOSPITAL_FEMALE_VOICE_1_CHAT_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetWhiteConstructionWorkerTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_MALE_CONSTRUCTION_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKED: sfx = SFX_WHITE_MALE_CONSTRUCTION_VOICE_1_CARJACKED_1; break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_ATTACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_MALE_CONSTRUCTION_VOICE_1_FIGHT_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_WHITE_MALE_CONSTRUCTION_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_MALE_CONSTRUCTION_VOICE_1_DRIVER_ABUSE_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_SEXY:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_WHITE_MALE_CONSTRUCTION_VOICE_1_EYING_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_WHITE_MALE_CONSTRUCTION_VOICE_1_CHAT_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBlackConstructionWorkerTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HANDS_COWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_CONSTRUCTION_MALE_VOICE_1_GUN_PANIC_1, 3);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_CONSTRUCTION_MALE_VOICE_1_CARJACKED_1, 2);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_ATTACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_CONSTRUCTION_MALE_VOICE_1_FIGHT_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_BLACK_CONSTRUCTION_MALE_VOICE_1_DODGE_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_CONSTRUCTION_MALE_VOICE_1_DRIVER_ABUSE_1, 5);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_CHAT_SEXY:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BLACK_CONSTRUCTION_MALE_VOICE_1_EYING_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_BLACK_CONSTRUCTION_MALE_VOICE_1_CHAT_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetShopperFemaleTalkSfx(int16 sound, int32 model)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_JACKED: GetPhrase(&sfx, &lastSfx, SFX_SHOPPER_VOICE_1_CARJACKED_1, 2); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_SHOPPER_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_SHOPPER_VOICE_1_DODGE_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_SHOPPER_VOICE_1_DRIVER_ABUSE_1, 7);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_EVENT: GetPhrase(&sfx, &lastSfx, SFX_SHOPPER_VOICE_1_SHOCKED_1, 4); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_SHOPPER_VOICE_1_CHAT_1, 7); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(model == MI_SHOPPER2) {
|
|
|
|
sfx += 28;
|
|
|
|
} else if(model == MI_SHOPPER3) {
|
|
|
|
sfx += 56;
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetStudentMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_COWER: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_MALE_VOICE_1_GUN_PANIC_1, 2); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_MALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_MALE_VOICE_1_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_MALE_VOICE_1_DODGE_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_STUDENT_MALE_VOICE_1_DRIVER_ABUSE_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_EVENT: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_MALE_VOICE_1_SHOCKED_1, 3); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_MALE_VOICE_1_CHAT_1, 5); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetStudentFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_COWER: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_FEMALE_VOICE_1_GUN_PANIC_1, 4); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_FEMALE_VOICE_1_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_FEMALE_VOICE_1_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_FEMALE_VOICE_1_DODGE_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION:
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_STUDENT_FEMALE_VOICE_1_DRIVER_ABUSE_1, 4);
|
2019-06-29 11:44:20 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CHAT_EVENT: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_FEMALE_VOICE_1_SHOCKED_1, 2); break;
|
|
|
|
case SOUND_PED_CHAT: GetPhrase(&sfx, &lastSfx, SFX_STUDENT_FEMALE_VOICE_1_CHAT_1, 4); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetCasualMaleOldTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
|
2019-06-30 16:38:53 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetSpecialCharacterTalkSfx(int32 modelIndex, int32 sound)
|
|
|
|
{
|
|
|
|
char *modelName = CModelInfo::GetModelInfo(modelIndex)->GetName();
|
2019-10-29 23:12:58 +00:00
|
|
|
if(!CGeneral::faststricmp(modelName, "eight") || !CGeneral::faststricmp(modelName, "eight2")) { return GetEightTalkSfx(sound); }
|
|
|
|
if(!CGeneral::faststricmp(modelName, "frankie")) { return GetFrankieTalkSfx(sound); }
|
|
|
|
if(!CGeneral::faststricmp(modelName, "misty")) { return GetMistyTalkSfx(sound); }
|
|
|
|
if(!CGeneral::faststricmp(modelName, "ojg") || !CGeneral::faststricmp(modelName, "ojg_p")) { return GetOJGTalkSfx(sound); }
|
|
|
|
if(!CGeneral::faststricmp(modelName, "cat")) { return GetCatatalinaTalkSfx(sound); }
|
|
|
|
if(!CGeneral::faststricmp(modelName, "bomber")) { return GetBomberTalkSfx(sound); }
|
|
|
|
if(!CGeneral::faststricmp(modelName, "s_guard")) { return GetSecurityGuardTalkSfx(sound); }
|
|
|
|
if(!CGeneral::faststricmp(modelName, "chunky")) { return GetChunkyTalkSfx(sound); }
|
|
|
|
if(!CGeneral::faststricmp(modelName, "asuka")) { return GetGenericFemaleTalkSfx(sound); }
|
|
|
|
if(!CGeneral::faststricmp(modelName, "maria")) { return GetGenericFemaleTalkSfx(sound); }
|
2019-06-30 16:38:53 +00:00
|
|
|
|
|
|
|
return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetEightTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_8BALL_GUN_COOL_1, 2); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_8BALL_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_8BALL_FIGHT_1, 6); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_8BALL_DODGE_1, 7); break;
|
2019-06-30 16:38:53 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetFrankieTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_SALVATORE_GUN_COOL_1, 4); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_SALVATORE_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_SALVATORE_FIGHT_1, 6); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_SALVATORE_DODGE_1, 3); break;
|
2019-06-30 16:38:53 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetMistyTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_MISTY_GUN_COOL_1, 5); break;
|
|
|
|
case SOUND_PED_ROBBED: GetPhrase(&sfx, &lastSfx, SFX_MISTY_MUGGED_1, 2); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_MISTY_FIGHT_1, 4); break;
|
|
|
|
case SOUND_PED_EVADE: GetPhrase(&sfx, &lastSfx, SFX_MISTY_DODGE_1, 5); break;
|
|
|
|
case SOUND_PED_TAXI_CALL: GetPhrase(&sfx, &lastSfx, SFX_MISTY_HERE_1, 4); break;
|
2019-06-30 16:38:53 +00:00
|
|
|
default: return GetGenericFemaleTalkSfx(sound); break;
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetOJGTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetCatatalinaTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
return GetGenericFemaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetBomberTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
if(sound != SOUND_PED_BOMBER) return GetGenericMaleTalkSfx(sound);
|
|
|
|
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_BOMBERMAN_1, 7);
|
2019-06-30 16:38:53 +00:00
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetSecurityGuardTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_HANDS_UP: GetPhrase(&sfx, &lastSfx, SFX_SECURITY_GUARD_VOICE_1_GUN_COOL_1, 2); break;
|
|
|
|
case SOUND_PED_HANDS_COWER: sfx = SFX_SECURITY_GUARD_VOICE_1_GUN_PANIC_1; break;
|
2019-06-30 16:38:53 +00:00
|
|
|
case SOUND_PED_CAR_JACKED:
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_CAR_COLLISION: GetPhrase(&sfx, &lastSfx, SFX_SECURITY_GUARD_VOICE_1_DRIVER_ABUSE_1, 6); break;
|
|
|
|
case SOUND_PED_ATTACK: GetPhrase(&sfx, &lastSfx, SFX_SECURITY_GUARD_VOICE_1_FIGHT_1, 2); break;
|
|
|
|
case SOUND_PED_FLEE_RUN: GetPhrase(&sfx, &lastSfx, SFX_SECURITY_GUARD_VOICE_1_DRIVER_ABUSE_1, 12); break;
|
2019-06-30 16:38:53 +00:00
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetChunkyTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
2019-10-26 23:06:10 +00:00
|
|
|
if(sound == SOUND_PED_DEATH) return SFX_CHUNKY_DEATH;
|
2019-06-30 16:38:53 +00:00
|
|
|
|
|
|
|
if(sound != SOUND_PED_FLEE_RUN) return GetGenericMaleTalkSfx(sound);
|
|
|
|
|
2019-10-26 23:06:10 +00:00
|
|
|
GetPhrase(&sfx, &lastSfx, SFX_CHUNKY_RUN_1, 5);
|
2019-06-30 16:38:53 +00:00
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
uint32
|
|
|
|
cAudioManager::GetGenericMaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_DEATH: GetPhrase(&sfx, &lastSfx, SFX_GENERIC_MALE_DEATH_1, 8); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_BULLET_HIT:
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_DEFEND: GetPhrase(&sfx, &lastSfx, SFX_GENERIC_MALE_GRUNT_1, 15); break;
|
|
|
|
case SOUND_PED_BURNING: GetPhrase(&sfx, &lastSfx, SFX_GENERIC_MALE_FIRE_1, 8); break;
|
|
|
|
case SOUND_PED_FLEE_SPRINT: GetPhrase(&sfx, &lastSfx, SFX_GENERIC_MALE_PANIC_1, 6); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
default: return NO_SAMPLE;
|
|
|
|
}
|
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::GetGenericFemaleTalkSfx(int16 sound)
|
|
|
|
{
|
|
|
|
uint32 sfx;
|
|
|
|
static uint32 lastSfx = NO_SAMPLE;
|
|
|
|
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_DEATH: GetPhrase(&sfx, &lastSfx, SFX_GENERIC_FEMALE_DEATH_1, 10); break;
|
2019-06-29 11:44:20 +00:00
|
|
|
case SOUND_PED_BULLET_HIT:
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PED_DEFEND: GetPhrase(&sfx, &lastSfx, SFX_GENERIC_FEMALE_GRUNT_1, 11); break;
|
|
|
|
case SOUND_PED_BURNING: GetPhrase(&sfx, &lastSfx, SFX_GENERIC_FEMALE_FIRE_1, 9); break;
|
|
|
|
case SOUND_PED_FLEE_SPRINT: GetPhrase(&sfx, &lastSfx, SFX_GENERIC_FEMALE_PANIC_1, 8); break;
|
2019-06-30 16:38:53 +00:00
|
|
|
default: return NO_SAMPLE;
|
2019-06-29 11:44:20 +00:00
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
return sfx;
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
void
|
|
|
|
cAudioManager::GenerateIntegerRandomNumberTable()
|
|
|
|
{
|
|
|
|
for(int32 i = 0; i < 5; i++) { m_anRandomTable[i] = rand(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
cAudioManager::Get3DProviderName(uint8 id) const
|
|
|
|
{
|
|
|
|
if(!m_bIsInitialised) return 0;
|
|
|
|
if(id >= SampleManager.GetNum3DProvidersAvailable()) return 0;
|
|
|
|
return SampleManager.Get3DProviderName(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8
|
|
|
|
cAudioManager::GetCDAudioDriveLetter() const
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) return SampleManager.GetCDAudioDriveLetter();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
int8
|
|
|
|
cAudioManager::GetCurrent3DProviderIndex() const
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) return SampleManager.GetCurrent3DProviderIndex();
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
cAudioManager::GetCollisionLoopingRatio(uint32 a, uint32 b, float c) const
|
|
|
|
{
|
|
|
|
return GetCollisionRatio(c, 0.0f, 0.02f, 0.02f);
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
2019-08-29 22:44:57 +00:00
|
|
|
cAudioManager::GetCollisionOneShotRatio(int32 a, float b) const
|
2019-08-16 18:17:15 +00:00
|
|
|
{
|
|
|
|
float result;
|
|
|
|
|
|
|
|
switch(a) {
|
2019-08-29 22:44:57 +00:00
|
|
|
case SURFACE_DEFAULT:
|
|
|
|
case SURFACE_TARMAC:
|
|
|
|
case SURFACE_PAVEMENT:
|
|
|
|
case SURFACE_STONE:
|
|
|
|
case SURFACE_BOLLARD: result = GetCollisionRatio(b, 10.f, 60.f, 50.f); break;
|
|
|
|
case SURFACE_GRASS:
|
|
|
|
case SURFACE_LOOSE30: result = GetCollisionRatio(b, 0.f, 2.f, 2.f); break;
|
|
|
|
case SURFACE_DIRT: result = GetCollisionRatio(b, 0.f, 2.f, 2.f); break;
|
|
|
|
case SURFACE_DIRTTRACK: result = GetCollisionRatio(b, 0.f, 2.f, 2.f); break;
|
|
|
|
case SURFACE_METAL6: result = GetCollisionRatio(b, 6.f, 50.f, 44.f); break;
|
|
|
|
case SURFACE_GLASS: result = GetCollisionRatio(b, 0.1f, 10.f, 9.9f); break;
|
|
|
|
case SURFACE_SCAFFOLD:
|
|
|
|
case SURFACE_STEEL: result = GetCollisionRatio(b, 30.f, 130.f, 100.f); break;
|
|
|
|
case SURFACE_METAL_DOOR: result = GetCollisionRatio(b, 20.f, 100.f, 80.f); break;
|
|
|
|
case SURFACE_BILLBOARD: result = GetCollisionRatio(b, 0.f, 4.f, 4.f); break;
|
|
|
|
case SURFACE_METAL_POLE:
|
|
|
|
case SURFACE_GATE: result = GetCollisionRatio(b, 1.f, 10.f, 9.f); break;
|
|
|
|
case SURFACE_STREET_LIGHT: result = GetCollisionRatio(b, 1.f, 10.f, 9.f); break;
|
|
|
|
case SURFACE_METAL14: result = GetCollisionRatio(b, 1.f, 15.f, 14.f); break;
|
|
|
|
case SURFACE_METAL15: result = GetCollisionRatio(b, 8.f, 50.f, 42.f); break;
|
|
|
|
case SURFACE_METAL_FENCE: result = GetCollisionRatio(b, 0.1f, 10.f, 9.9f); break;
|
|
|
|
case SURFACE_FLESH: result = GetCollisionRatio(b, 0.f, 20.f, 20.f); break;
|
|
|
|
case SURFACE_SAND: result = GetCollisionRatio(b, 0.f, 10.f, 10.f); break;
|
|
|
|
case SURFACE_PUDDLE: result = GetCollisionRatio(b, 0.f, 10.f, 10.f); break;
|
|
|
|
case SURFACE_WOOD: result = GetCollisionRatio(b, 1.f, 4.f, 3.f); break;
|
|
|
|
case SURFACE_WOOD_BOX: result = GetCollisionRatio(b, 0.1f, 5.f, 4.9f); break;
|
|
|
|
case SURFACE_WOOD_PLANK: result = GetCollisionRatio(b, 0.1f, 40.f, 39.9f); break;
|
|
|
|
case SURFACE_TIRE:
|
|
|
|
case SURFACE_RUBBER29: result = GetCollisionRatio(b, 0.f, 10.f, 10.f); break;
|
|
|
|
case SURFACE_HARD24: result = GetCollisionRatio(b, 0.1f, 4.f, 3.9f); break;
|
|
|
|
case SURFACE_HEDGE: result = GetCollisionRatio(b, 0.f, 0.5f, 0.5f); break;
|
|
|
|
case SURFACE_METAL27: result = GetCollisionRatio(b, 4.f, 40.f, 36.f); break;
|
|
|
|
case SURFACE_METAL28: result = GetCollisionRatio(b, 0.f, 5.f, 5.f); break;
|
|
|
|
default: result = 0.f; break;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
2019-08-29 22:44:57 +00:00
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
cAudioManager::GetCollisionRatio(float a, float b, float c, float d) const
|
|
|
|
{
|
|
|
|
float e;
|
|
|
|
e = a;
|
|
|
|
if(a <= b) return 0.0f;
|
|
|
|
if(c <= a) e = c;
|
|
|
|
return (e - b) / d;
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
cAudioManager::GetDistanceSquared(CVector *v) const
|
|
|
|
{
|
|
|
|
const CVector &c = TheCamera.GetPosition();
|
|
|
|
return sq(v->x - c.x) + sq(v->y - c.y) + sq((v->z - c.z) * 0.2f);
|
|
|
|
}
|
|
|
|
|
|
|
|
int32
|
|
|
|
cAudioManager::GetJumboTaxiFreq() const
|
|
|
|
{
|
|
|
|
return (60.833f * m_sQueueSample.m_fDistance) + 22050;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::GetMissionAudioLoadingStatus() const
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) return m_sMissionAudio.m_bLoadingStatus;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
char
|
|
|
|
cAudioManager::GetMissionScriptPoliceAudioPlayingStatus() const
|
|
|
|
{
|
|
|
|
return g_nMissionAudioPlayingStatus;
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
uint8
|
|
|
|
cAudioManager::GetNum3DProvidersAvailable() const
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) return SampleManager.GetNum3DProvidersAvailable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32
|
|
|
|
cAudioManager::GetPedCommentSfx(CPed *ped, int32 sound)
|
|
|
|
{
|
|
|
|
if(ped->IsPlayer()) return GetPlayerTalkSfx(sound);
|
|
|
|
|
|
|
|
switch(ped->m_modelIndex) {
|
|
|
|
case MI_COP: return GetCopTalkSfx(sound);
|
|
|
|
case MI_SWAT: return GetSwatTalkSfx(sound);
|
|
|
|
case MI_FBI: return GetFBITalkSfx(sound);
|
|
|
|
case MI_ARMY: return GetArmyTalkSfx(sound);
|
|
|
|
case MI_MEDIC: return GetMedicTalkSfx(sound);
|
|
|
|
case MI_FIREMAN: return GetFiremanTalkSfx(sound);
|
|
|
|
case MI_MALE01: return GetNormalMaleTalkSfx(sound);
|
|
|
|
case MI_TAXI_D: return GetTaxiDriverTalkSfx(sound);
|
|
|
|
case MI_PIMP: return GetPimpTalkSfx(sound);
|
|
|
|
case MI_GANG01:
|
|
|
|
case MI_GANG02: return GetMafiaTalkSfx(sound);
|
|
|
|
case MI_GANG03:
|
|
|
|
case MI_GANG04: return GetTriadTalkSfx(sound);
|
|
|
|
case MI_GANG05:
|
|
|
|
case MI_GANG06: return GetDiabloTalkSfx(sound);
|
|
|
|
case MI_GANG07:
|
|
|
|
case MI_GANG08: return GetYakuzaTalkSfx(sound);
|
|
|
|
case MI_GANG09:
|
|
|
|
case MI_GANG10: return GetYardieTalkSfx(sound);
|
|
|
|
case MI_GANG11:
|
|
|
|
case MI_GANG12: return GetColumbianTalkSfx(sound);
|
|
|
|
case MI_GANG13:
|
|
|
|
case MI_GANG14: return GetHoodTalkSfx(sound);
|
|
|
|
case MI_CRIMINAL01: return GetBlackCriminalTalkSfx(sound);
|
|
|
|
case MI_CRIMINAL02: return GetWhiteCriminalTalkSfx(sound);
|
|
|
|
case MI_SPECIAL01:
|
|
|
|
case MI_SPECIAL02:
|
|
|
|
case MI_SPECIAL03:
|
|
|
|
case MI_SPECIAL04: return GetSpecialCharacterTalkSfx(ped->m_modelIndex, sound);
|
|
|
|
case MI_MALE02: return GetMaleNo2TalkSfx(sound);
|
|
|
|
case MI_MALE03:
|
|
|
|
case MI_P_MAN1:
|
|
|
|
case MI_P_MAN2: return GetBlackProjectMaleTalkSfx(sound, ped->m_modelIndex);
|
|
|
|
case MI_FATMALE01: return GetWhiteFatMaleTalkSfx(sound);
|
|
|
|
case MI_FATMALE02: return GetBlackFatMaleTalkSfx(sound);
|
|
|
|
case MI_FEMALE01: return GetBlackCasualFemaleTalkSfx(sound);
|
|
|
|
case MI_FEMALE02:
|
|
|
|
case MI_CAS_WOM: return GetWhiteCasualFemaleTalkSfx(sound);
|
|
|
|
case MI_FEMALE03: return GetFemaleNo3TalkSfx(sound);
|
|
|
|
case MI_FATFEMALE01: return GetBlackFatFemaleTalkSfx(sound);
|
|
|
|
case MI_FATFEMALE02: return GetWhiteFatFemaleTalkSfx(sound);
|
|
|
|
case MI_PROSTITUTE: return GetBlackFemaleProstituteTalkSfx(sound);
|
|
|
|
case MI_PROSTITUTE2: return GetWhiteFemaleProstituteTalkSfx(sound);
|
|
|
|
case MI_P_WOM1: return GetBlackProjectFemaleOldTalkSfx(sound);
|
|
|
|
case MI_P_WOM2: return GetBlackProjectFemaleYoungTalkSfx(sound);
|
|
|
|
case MI_CT_MAN1: return GetChinatownMaleOldTalkSfx(sound);
|
|
|
|
case MI_CT_MAN2: return GetChinatownMaleYoungTalkSfx(sound);
|
|
|
|
case MI_CT_WOM1: return GetChinatownFemaleOldTalkSfx(sound);
|
|
|
|
case MI_CT_WOM2: return GetChinatownFemaleYoungTalkSfx(sound);
|
|
|
|
case MI_LI_MAN1:
|
|
|
|
case MI_LI_MAN2: return GetLittleItalyMaleTalkSfx(sound);
|
|
|
|
case MI_LI_WOM1: return GetLittleItalyFemaleOldTalkSfx(sound);
|
|
|
|
case MI_LI_WOM2: return GetLittleItalyFemaleYoungTalkSfx(sound);
|
|
|
|
case MI_DOCKER1: return GetWhiteDockerMaleTalkSfx(sound);
|
|
|
|
case MI_DOCKER2: return GetBlackDockerMaleTalkSfx(sound);
|
|
|
|
case MI_SCUM_MAN: return GetScumMaleTalkSfx(sound);
|
|
|
|
case MI_SCUM_WOM: return GetScumFemaleTalkSfx(sound);
|
|
|
|
case MI_WORKER1: return GetWhiteWorkerMaleTalkSfx(sound);
|
|
|
|
case MI_WORKER2: return GetBlackWorkerMaleTalkSfx(sound);
|
|
|
|
case MI_B_MAN1:
|
|
|
|
case MI_B_MAN3: return GetBusinessMaleYoungTalkSfx(sound, ped->m_modelIndex);
|
|
|
|
case MI_B_MAN2: return GetBusinessMaleOldTalkSfx(sound);
|
|
|
|
case MI_B_WOM1:
|
|
|
|
case MI_B_WOM2: return GetWhiteBusinessFemaleTalkSfx(sound, ped->m_modelIndex);
|
|
|
|
case MI_B_WOM3: return GetBlackBusinessFemaleTalkSfx(sound);
|
|
|
|
case MI_MOD_MAN: return GetSupermodelMaleTalkSfx(sound);
|
|
|
|
case MI_MOD_WOM: return GetSupermodelFemaleTalkSfx(sound);
|
|
|
|
case MI_ST_MAN: return GetStewardMaleTalkSfx(sound);
|
|
|
|
case MI_ST_WOM: return GetStewardFemaleTalkSfx(sound);
|
|
|
|
case MI_FAN_MAN1:
|
|
|
|
case MI_FAN_MAN2: return GetFanMaleTalkSfx(sound, ped->m_modelIndex);
|
|
|
|
case MI_FAN_WOM: return GetFanFemaleTalkSfx(sound);
|
|
|
|
case MI_HOS_MAN: return GetHospitalMaleTalkSfx(sound);
|
|
|
|
case MI_HOS_WOM: return GetHospitalFemaleTalkSfx(sound);
|
|
|
|
case MI_CONST1: return GetWhiteConstructionWorkerTalkSfx(sound);
|
|
|
|
case MI_CONST2: return GetBlackConstructionWorkerTalkSfx(sound);
|
|
|
|
case MI_SHOPPER1:
|
|
|
|
case MI_SHOPPER2:
|
|
|
|
case MI_SHOPPER3: return GetShopperFemaleTalkSfx(sound, ped->m_modelIndex);
|
|
|
|
case MI_STUD_MAN: return GetStudentMaleTalkSfx(sound);
|
|
|
|
case MI_STUD_WOM: return GetStudentFemaleTalkSfx(sound);
|
|
|
|
case MI_CAS_MAN: return GetCasualMaleOldTalkSfx(sound);
|
|
|
|
default: return GetGenericMaleTalkSfx(sound);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::GetPhrase(uint32 *phrase, uint32 *prevPhrase, uint32 sample, uint32 maxOffset) const
|
|
|
|
{
|
|
|
|
*phrase = sample + m_anRandomTable[m_sQueueSample.m_nEntityIndex & 3] % maxOffset;
|
|
|
|
|
|
|
|
// check if the same sfx like last time, if yes, then try use next one,
|
|
|
|
// if exceeded range, then choose first available sample
|
|
|
|
if(*phrase == *prevPhrase && ++*phrase >= sample + maxOffset) *phrase = sample;
|
|
|
|
*prevPhrase = *phrase;
|
|
|
|
}
|
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
float
|
2019-10-25 16:39:26 +00:00
|
|
|
cAudioManager::GetVehicleDriveWheelSkidValue(uint8 wheel, CAutomobile *automobile, cTransmission *transmission,
|
|
|
|
float velocityChange)
|
2019-08-29 22:44:57 +00:00
|
|
|
{
|
2019-10-12 22:35:01 +00:00
|
|
|
tWheelState wheelState;
|
2019-08-29 22:44:57 +00:00
|
|
|
float relativeVelChange;
|
|
|
|
float gasPedalAudio = automobile->m_fGasPedalAudio;
|
|
|
|
float modificator;
|
|
|
|
float velChange;
|
|
|
|
float relativeVel;
|
|
|
|
|
|
|
|
wheelState = automobile->m_aWheelState[wheel];
|
2019-10-12 22:35:01 +00:00
|
|
|
if(wheelState == WHEEL_STATE_SPINNING && gasPedalAudio > 0.4f) {
|
|
|
|
relativeVelChange = (gasPedalAudio - 0.4f) * 1.25f;
|
2019-08-29 22:44:57 +00:00
|
|
|
|
2019-10-12 22:35:01 +00:00
|
|
|
} else if(wheelState == WHEEL_STATE_SKIDDING) {
|
2019-08-29 22:44:57 +00:00
|
|
|
relativeVelChange = min(1.0f, Abs(velocityChange) / transmission->fMaxVelocity);
|
2019-10-12 22:35:01 +00:00
|
|
|
} else if(wheelState == WHEEL_STATE_FIXED) {
|
2019-08-29 22:44:57 +00:00
|
|
|
modificator = 0.4f;
|
|
|
|
relativeVelChange = gasPedalAudio;
|
|
|
|
if(relativeVelChange > 0.4f) {
|
|
|
|
relativeVelChange = relativeVelChange - 0.4f;
|
2019-10-25 16:39:26 +00:00
|
|
|
modificator = 5.f / 3.f;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
velChange = Abs(velocityChange);
|
|
|
|
if(relativeVelChange > 0.4f) relativeVelChange = relativeVelChange * modificator;
|
|
|
|
if(velChange > 0.04f) {
|
|
|
|
relativeVel = min(1.0f, velChange / transmission->fMaxVelocity);
|
|
|
|
} else {
|
|
|
|
relativeVel = 0.0f;
|
|
|
|
}
|
|
|
|
if(relativeVel >= relativeVelChange) relativeVelChange = relativeVel;
|
|
|
|
} else {
|
|
|
|
relativeVelChange = 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
return max(relativeVelChange, min(1.0f, Abs(automobile->m_vecTurnSpeed.z) * 20.0f));
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
2019-10-25 16:39:26 +00:00
|
|
|
cAudioManager::GetVehicleNonDriveWheelSkidValue(uint8 wheel, CAutomobile *automobile, cTransmission *transmission,
|
|
|
|
float velocityChange)
|
2019-08-29 22:44:57 +00:00
|
|
|
{
|
|
|
|
float relativeVelChange;
|
|
|
|
|
|
|
|
if(automobile->m_aWheelState[wheel] == 2) {
|
|
|
|
relativeVelChange = min(1.0f, Abs(velocityChange) / transmission->fMaxVelocity);
|
|
|
|
} else {
|
|
|
|
relativeVelChange = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return max(relativeVelChange, min(1.0f, Abs(automobile->m_vecTurnSpeed.z) * 20.0f));
|
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::HasAirBrakes(int32 model) const
|
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
return model == LINERUN || model == FIRETRUK || model == TRASH || model == BUS || model == COACH;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::Initialise()
|
|
|
|
{
|
|
|
|
if(!m_bIsInitialised) {
|
|
|
|
PreInitialiseGameSpecificSetup();
|
|
|
|
m_bIsInitialised = SampleManager.Initialise();
|
|
|
|
if(m_bIsInitialised) {
|
|
|
|
m_bActiveSamples = SampleManager.GetMaximumSupportedChannels();
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_bActiveSamples <= 1) {
|
2019-08-16 18:17:15 +00:00
|
|
|
Terminate();
|
|
|
|
} else {
|
|
|
|
--m_bActiveSamples;
|
|
|
|
PostInitialiseGameSpecificSetup();
|
|
|
|
InitialisePoliceRadioZones();
|
|
|
|
InitialisePoliceRadio();
|
|
|
|
MusicManager.Initialise();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::InitialisePoliceRadio()
|
|
|
|
{
|
2019-09-21 20:10:35 +00:00
|
|
|
policeChannelTimer = 0;
|
2019-09-26 18:47:04 +00:00
|
|
|
policeChannelTimerSeconds = 0;
|
2019-09-21 20:10:35 +00:00
|
|
|
policeChannelCounterSeconds = 0;
|
2019-10-26 14:47:57 +00:00
|
|
|
for(int32 i = 0; i < ARRAY_SIZE(crimes); i++) { crimes[i].type = 0; }
|
2019-08-29 22:44:57 +00:00
|
|
|
|
2019-10-26 14:47:57 +00:00
|
|
|
SampleManager.SetChannelReverbFlag(policeChannel, 0);
|
2019-08-29 22:44:57 +00:00
|
|
|
gSpecialSuspectLastSeenReport = 0;
|
2019-11-11 14:33:24 +00:00
|
|
|
for(int32 i = 0; i < 17; i++) { gMinTimeToNextReport[i] = m_nTimeOfRecentCrime; }
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
|
2019-10-12 20:21:44 +00:00
|
|
|
struct tPoliceRadioZone {
|
|
|
|
char m_aName[8];
|
|
|
|
uint32 m_nSampleIndex;
|
|
|
|
int32 field_12;
|
2019-09-24 11:33:16 +00:00
|
|
|
};
|
|
|
|
|
2019-10-12 20:21:44 +00:00
|
|
|
tPoliceRadioZone *ZoneSfx = (tPoliceRadioZone *)0x880240;
|
|
|
|
char *SubZo2Label = (char *)0x6E9918;
|
|
|
|
char *SubZo3Label = (char *)0x6E9870;
|
2019-09-24 11:33:16 +00:00
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
void
|
|
|
|
cAudioManager::InitialisePoliceRadioZones()
|
|
|
|
{
|
2019-10-27 17:04:13 +00:00
|
|
|
for(int32 i = 0; i < NUMAUDIOZONES; i++)
|
|
|
|
memset(ZoneSfx[i].m_aName, 0, 8);
|
2019-09-24 11:33:16 +00:00
|
|
|
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[0].m_aName, "HOSPI_2");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[0].m_nSampleIndex = SFX_POLICE_RADIO_ROCKFORD;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[1].m_aName, "CONSTRU");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[1].m_nSampleIndex = SFX_POLICE_RADIO_FORT_STAUNTON;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[2].m_aName, "STADIUM");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[2].m_nSampleIndex = SFX_POLICE_RADIO_ASPATRIA;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[3].m_aName, "YAKUSA");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[3].m_nSampleIndex = SFX_POLICE_RADIO_TORRINGTON;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[4].m_aName, "SHOPING");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[4].m_nSampleIndex = SFX_POLICE_RADIO_BEDFORD_POINT;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[5].m_aName, "COM_EAS");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[5].m_nSampleIndex = SFX_POLICE_RADIO_NEWPORT;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[6].m_aName, "PARK");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[6].m_nSampleIndex = SFX_POLICE_RADIO_BELLEVILLE_PARK;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[7].m_aName, "UNIVERS");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[7].m_nSampleIndex = SFX_POLICE_RADIO_LIBERTY_CAMPUS;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[8].m_aName, "BIG_DAM");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[8].m_nSampleIndex = SFX_POLICE_RADIO_COCHRANE_DAM;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[9].m_aName, "SUB_IND");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[9].m_nSampleIndex = SFX_POLICE_RADIO_PIKE_CREEK;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[10].m_aName, "SWANKS");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[10].m_nSampleIndex = SFX_POLICE_RADIO_CEDAR_GROVE;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[11].m_aName, "PROJECT");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[11].m_nSampleIndex = SFX_POLICE_RADIO_WICHITA_GARDENS;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[12].m_aName, "AIRPORT");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[12].m_nSampleIndex = SFX_POLICE_RADIO_FRANCIS_INTERNATIONAL_AIRPORT;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[13].m_aName, "PORT_W");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[13].m_nSampleIndex = SFX_POLICE_RADIO_CALLAHAN_POINT;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[14].m_aName, "PORT_S");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[14].m_nSampleIndex = SFX_POLICE_RADIO_ATLANTIC_QUAYS;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[15].m_aName, "PORT_E");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[15].m_nSampleIndex = SFX_POLICE_RADIO_PORTLAND_HARBOUR;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[16].m_aName, "PORT_I");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[16].m_nSampleIndex = SFX_POLICE_RADIO_TRENTON;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[17].m_aName, "CHINA");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[17].m_nSampleIndex = SFX_POLICE_RADIO_CHINATOWN;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[18].m_aName, "REDLIGH");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[18].m_nSampleIndex = SFX_POLICE_RADIO_RED_LIGHT_DISTRICT;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[19].m_aName, "TOWERS");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[19].m_nSampleIndex = SFX_POLICE_RADIO_HEPBURN_HEIGHTS;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[20].m_aName, "LITTLEI");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[20].m_nSampleIndex = SFX_POLICE_RADIO_SAINT_MARKS;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[21].m_aName, "HARWOOD");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[21].m_nSampleIndex = SFX_POLICE_RADIO_HARWOOD;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[22].m_aName, "EASTBAY");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[22].m_nSampleIndex = SFX_POLICE_RADIO_PORTLAND_BEACH;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[23].m_aName, "S_VIEW");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[23].m_nSampleIndex = SFX_POLICE_RADIO_PORTLAND_STRAIGHTS;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[24].m_aName, "CITYZON");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[24].m_nSampleIndex = SFX_POLICE_RADIO_LIBERTY_CITY;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[25].m_aName, "IND_ZON");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[25].m_nSampleIndex = SFX_POLICE_RADIO_PORTLAND;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[26].m_aName, "COM_ZON");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[26].m_nSampleIndex = SFX_POLICE_RADIO_STAUNTON_ISLAND;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[27].m_aName, "SUB_ZON");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[27].m_nSampleIndex = SFX_POLICE_RADIO_SHORESIDE_VALE;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[28].m_aName, "SUB_ZO2");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[28].m_nSampleIndex = SFX_POLICE_RADIO_SHORESIDE_VALE;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[29].m_aName, "SUB_ZO3");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[29].m_nSampleIndex = SFX_POLICE_RADIO_SHORESIDE_VALE;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[30].m_aName, "A");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[30].m_nSampleIndex = SFX_POLICE_RADIO_ROCKFORD;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[31].m_aName, "A");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[31].m_nSampleIndex = SFX_POLICE_RADIO_ROCKFORD;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[32].m_aName, "A");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[32].m_nSampleIndex = SFX_POLICE_RADIO_ROCKFORD;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[33].m_aName, "A");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[33].m_nSampleIndex = SFX_POLICE_RADIO_ROCKFORD;
|
2019-10-12 22:35:01 +00:00
|
|
|
strcpy(ZoneSfx[34].m_aName, "A");
|
2019-10-26 23:06:10 +00:00
|
|
|
ZoneSfx[34].m_nSampleIndex = SFX_POLICE_RADIO_ROCKFORD;
|
2019-09-24 11:33:16 +00:00
|
|
|
strcpy(SubZo2Label, "SUB_ZO2");
|
|
|
|
strcpy(SubZo3Label, "SUB_ZO3");
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::InterrogateAudioEntities()
|
|
|
|
{
|
|
|
|
for(int32 i = 0; i < m_nAudioEntitiesTotal; i++) {
|
|
|
|
ProcessEntity(m_anAudioEntityIndices[i]);
|
2019-10-26 14:47:57 +00:00
|
|
|
m_asAudioEntities[m_anAudioEntityIndices[i]].m_AudioEvents = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::IsAudioInitialised() const
|
|
|
|
{
|
|
|
|
return m_bIsInitialised;
|
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::IsMissionAudioSampleFinished()
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) return m_sMissionAudio.m_bPlayStatus == 2;
|
|
|
|
|
|
|
|
static int32 cPretendFrame = 1;
|
|
|
|
|
|
|
|
return (cPretendFrame++ & 63) == 0;
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::IsMP3RadioChannelAvailable() const
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) return SampleManager.IsMP3RadioChannelAvailable();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::MissionScriptAudioUsesPoliceChannel(int32 soundMission) const
|
|
|
|
{
|
|
|
|
switch(soundMission) {
|
|
|
|
case STREAMED_SOUND_MISSION_J6_D:
|
|
|
|
case STREAMED_SOUND_MISSION_T4_A:
|
|
|
|
case STREAMED_SOUND_MISSION_S1_H:
|
|
|
|
case STREAMED_SOUND_MISSION_S3_B:
|
|
|
|
case STREAMED_SOUND_MISSION_EL3_A:
|
|
|
|
case STREAMED_SOUND_MISSION_A3_A:
|
|
|
|
case STREAMED_SOUND_MISSION_A5_A:
|
|
|
|
case STREAMED_SOUND_MISSION_K1_A:
|
|
|
|
case STREAMED_SOUND_MISSION_R1_A:
|
|
|
|
case STREAMED_SOUND_MISSION_R5_A:
|
|
|
|
case STREAMED_SOUND_MISSION_LO2_A:
|
|
|
|
case STREAMED_SOUND_MISSION_LO6_A: return true;
|
|
|
|
default: return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::PlayLoadedMissionAudio()
|
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_bIsInitialised && m_sMissionAudio.m_nSampleIndex != NO_SAMPLE && m_sMissionAudio.m_bLoadingStatus == 1 &&
|
|
|
|
!m_sMissionAudio.m_bPlayStatus) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sMissionAudio.m_bIsPlayed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::PlayOneShot(int32 index, int16 sound, float vol)
|
|
|
|
{
|
2019-10-26 14:47:57 +00:00
|
|
|
static constexpr uint8 OneShotPriority[] = {
|
2019-10-25 16:39:26 +00:00
|
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 3, 5, 2, 2, 1, 1, 3, 1, 3, 3, 1, 1, 1, 4, 4, 3, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 3, 2, 2, 2, 2, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 3, 1, 1, 1, 9,
|
|
|
|
2, 2, 0, 0, 0, 0, 3, 3, 5, 1, 1, 1, 1, 3, 4, 7, 6, 6, 6, 6, 1, 3, 4, 3, 4, 2, 1, 3, 5, 4, 6, 6, 1, 3,
|
|
|
|
1, 1, 1, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
2019-09-27 21:19:43 +00:00
|
|
|
|
2019-09-26 18:47:04 +00:00
|
|
|
if(m_bIsInitialised) {
|
2019-09-27 21:19:43 +00:00
|
|
|
if(index >= 0 && index < totalAudioEntitiesSlots) {
|
2019-10-26 14:47:57 +00:00
|
|
|
tAudioEntity &entity = m_asAudioEntities[index];
|
|
|
|
if(entity.m_bIsUsed) {
|
2019-09-27 21:19:43 +00:00
|
|
|
if(sound < SOUND_TOTAL_SOUNDS) {
|
2019-10-26 14:47:57 +00:00
|
|
|
if(entity.m_nType == AUDIOTYPE_SCRIPTOBJECT) {
|
2019-09-27 21:19:43 +00:00
|
|
|
if(m_nScriptObjectEntityTotal < 40) {
|
2019-10-26 14:47:57 +00:00
|
|
|
entity.m_awAudioEvent[0] = sound;
|
|
|
|
entity.m_AudioEvents = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_anScriptObjectEntityIndices[m_nScriptObjectEntityTotal++] =
|
|
|
|
index;
|
2019-09-24 11:33:16 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
} else {
|
2019-09-24 11:33:16 +00:00
|
|
|
int32 i = 0;
|
2019-10-26 14:47:57 +00:00
|
|
|
while(true) {
|
|
|
|
if(i >= entity.m_AudioEvents) {
|
|
|
|
if(entity.m_AudioEvents < 4) {
|
|
|
|
entity.m_awAudioEvent[i] = sound;
|
|
|
|
entity.m_afVolume[i] = vol;
|
|
|
|
++entity.m_AudioEvents;
|
2019-09-24 11:33:16 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2019-10-26 14:47:57 +00:00
|
|
|
if(OneShotPriority[entity.m_awAudioEvent[i]] >
|
|
|
|
OneShotPriority[sound])
|
2019-09-24 11:33:16 +00:00
|
|
|
break;
|
|
|
|
++i;
|
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(i < 3) {
|
2019-10-26 14:47:57 +00:00
|
|
|
memmove(&entity.m_awAudioEvent[i + 1],
|
|
|
|
&entity.m_awAudioEvent[i], (3 - i) * 2);
|
|
|
|
memmove(&entity.m_afVolume[i + 1], &entity.m_afVolume[i],
|
|
|
|
(3 - i) * 4);
|
2019-09-24 11:33:16 +00:00
|
|
|
}
|
2019-10-26 14:47:57 +00:00
|
|
|
entity.m_awAudioEvent[i] = sound;
|
|
|
|
entity.m_afVolume[i] = vol;
|
|
|
|
if(entity.m_AudioEvents < 4) ++entity.m_AudioEvents;
|
2019-09-24 11:33:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
|
2019-09-26 18:47:04 +00:00
|
|
|
void
|
2019-08-27 20:46:41 +00:00
|
|
|
cAudioManager::PlaySuspectLastSeen(float x, float y, float z)
|
|
|
|
{
|
2019-09-27 21:19:43 +00:00
|
|
|
int16 audioZone;
|
|
|
|
CZone *zone;
|
|
|
|
int32 i;
|
|
|
|
float rangeX;
|
|
|
|
float rangeY;
|
|
|
|
float halfX;
|
|
|
|
float halfY;
|
|
|
|
float quarterX;
|
|
|
|
float quarterY;
|
|
|
|
int32 sample;
|
|
|
|
bool processed = false;
|
|
|
|
CVector vec = {x, y, z};
|
|
|
|
|
|
|
|
if(m_bIsInitialised) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(MusicManager.m_nMusicMode != 2 && 60 - policeChannelTimer > 9) {
|
2019-09-27 21:19:43 +00:00
|
|
|
|
|
|
|
audioZone = CTheZones::FindAudioZone(&vec);
|
|
|
|
if(audioZone >= 0 && audioZone < 36) {
|
|
|
|
i = 0;
|
|
|
|
zone = &CTheZones::ZoneArray[CTheZones::AudioZoneArray[audioZone]];
|
|
|
|
while(strcmp(zone->name, ZoneSfx[i].m_aName) != 0) {
|
|
|
|
++i;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(i >= 36) return;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
sample = ZoneSfx[i].m_nSampleIndex;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(i < 36) {
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-25 16:39:26 +00:00
|
|
|
m_anRandomTable[4] % 3 +
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_SUSPECT;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_LAST_SEEN;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_IN;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
2019-10-26 23:06:10 +00:00
|
|
|
if(sample == SFX_POLICE_RADIO_SHORESIDE_VALE &&
|
2019-09-27 21:19:43 +00:00
|
|
|
(strcmp(zone->name, SubZo2Label) == 0 ||
|
|
|
|
strcmp(zone->name, SubZo3Label) == 0)) {
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_NORTH;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer == 60) {
|
|
|
|
gSpecialSuspectLastSeenReport = 1;
|
|
|
|
return;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_EAST;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
rangeX = zone->maxx - zone->minx;
|
|
|
|
rangeY = zone->maxy - zone->miny;
|
|
|
|
halfX = 0.5f * rangeX + zone->minx;
|
|
|
|
halfY = 0.5f * rangeY + zone->miny;
|
|
|
|
quarterX = 0.25f * rangeX;
|
|
|
|
quarterY = 0.25f * rangeY;
|
|
|
|
if(halfY + quarterY < vec.y) {
|
|
|
|
if(halfY - quarterY > vec.y) {
|
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_SOUTH;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
2019-10-25 16:39:26 +00:00
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
processed = 1;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
} else if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_NORTH;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
processed = 1;
|
|
|
|
}
|
|
|
|
if(halfX + quarterX < vec.x) {
|
|
|
|
if(halfX - quarterX <= vec.x) {
|
|
|
|
if(processed || policeChannelTimer == 60) {
|
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
|
|
|
sample;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
2019-10-25 16:39:26 +00:00
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
|
|
|
m_anRandomTable[2] % 3 +
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
2019-10-25 16:39:26 +00:00
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
|
|
|
TOTAL_AUDIO_SAMPLES;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
2019-10-25 16:39:26 +00:00
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
|
|
|
gSpecialSuspectLastSeenReport = 1;
|
|
|
|
return;
|
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_CENTRAL;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_WEST;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
} else if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_EAST;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] = sample;
|
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-25 16:39:26 +00:00
|
|
|
m_anRandomTable[2] % 3 +
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = TOTAL_AUDIO_SAMPLES;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
gSpecialSuspectLastSeenReport = 1;
|
|
|
|
return;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
2019-08-27 20:46:41 +00:00
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
void
|
|
|
|
cAudioManager::PlayerJustGotInCar() const
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) { bPlayerJustEnteredCar = true; }
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::PlayerJustLeftCar(void) const
|
|
|
|
{
|
|
|
|
// UNUSED: This is a perfectly empty function.
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::PostInitialiseGameSpecificSetup()
|
|
|
|
{
|
2019-10-27 17:04:13 +00:00
|
|
|
m_nFireAudioEntity = CreateEntity(AUDIOTYPE_FIRE, &gFireManager);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_nFireAudioEntity >= 0) SetEntityStatus(m_nFireAudioEntity, 1);
|
|
|
|
|
2019-10-27 17:04:13 +00:00
|
|
|
m_nCollisionEntity = CreateEntity(AUDIOTYPE_COLLISION, (void*)1);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_nCollisionEntity >= 0) SetEntityStatus(m_nCollisionEntity, 1);
|
|
|
|
|
2019-10-27 17:04:13 +00:00
|
|
|
m_nFrontEndEntity = CreateEntity(AUDIOTYPE_FRONTEND, (void*)1);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_nFrontEndEntity >= 0) SetEntityStatus(m_nFrontEndEntity, 1);
|
|
|
|
|
2019-10-27 17:04:13 +00:00
|
|
|
m_nProjectileEntity = CreateEntity(AUDIOTYPE_PROJECTILE, (void*)1);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_nProjectileEntity >= 0) SetEntityStatus(m_nProjectileEntity, 1);
|
|
|
|
|
2019-10-27 17:04:13 +00:00
|
|
|
m_nWaterCannonEntity = CreateEntity(AUDIOTYPE_WATERCANNON, (void*)1);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_nWaterCannonEntity >= 0) SetEntityStatus(m_nWaterCannonEntity, 1);
|
|
|
|
|
2019-10-27 17:04:13 +00:00
|
|
|
m_nPoliceChannelEntity = CreateEntity(AUDIOTYPE_POLICERADIO, (void*)1);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_nPoliceChannelEntity >= 0) SetEntityStatus(m_nPoliceChannelEntity, 1);
|
|
|
|
|
2019-10-27 17:04:13 +00:00
|
|
|
m_nBridgeEntity = CreateEntity(AUDIOTYPE_BRIDGE, (void*)1);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_nBridgeEntity >= 0) SetEntityStatus(m_nBridgeEntity, 1);
|
|
|
|
|
|
|
|
m_sMissionAudio.m_nSampleIndex = NO_SAMPLE;
|
|
|
|
m_sMissionAudio.m_bLoadingStatus = 0;
|
|
|
|
m_sMissionAudio.m_bPlayStatus = 0;
|
|
|
|
m_sMissionAudio.field_22 = 0;
|
|
|
|
m_sMissionAudio.m_bIsPlayed = 0;
|
|
|
|
m_sMissionAudio.field_12 = 1;
|
|
|
|
m_sMissionAudio.field_24 = 0;
|
2019-10-27 17:04:13 +00:00
|
|
|
ResetAudioLogicTimers(CTimer::GetTimeInMilliseconds());
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::PostTerminateGameSpecificShutdown()
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
void
|
|
|
|
cAudioManager::PreInitialiseGameSpecificSetup() const
|
|
|
|
{
|
2019-10-26 23:06:10 +00:00
|
|
|
BankStartOffset[0] = SFX_CAR_HORN_JEEP;
|
|
|
|
BankStartOffset[1] = SFX_COP_VOICE_1_ARREST_1;
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
|
2019-10-27 17:39:17 +00:00
|
|
|
struct MissionAudioData {
|
|
|
|
const char *m_pName;
|
|
|
|
int32 m_nId;
|
|
|
|
};
|
|
|
|
|
|
|
|
constexpr MissionAudioData MissionAudioNameSfxAssoc[] = {
|
|
|
|
{"lib_a1", STREAMED_SOUND_MISSION_LIB_A1}, {"lib_a2", STREAMED_SOUND_MISSION_LIB_A2},
|
|
|
|
{"lib_a", STREAMED_SOUND_MISSION_LIB_A}, {"lib_b", STREAMED_SOUND_MISSION_LIB_B},
|
|
|
|
{"lib_c", STREAMED_SOUND_MISSION_LIB_C}, {"lib_d", STREAMED_SOUND_MISSION_LIB_D},
|
|
|
|
{"l2_a", STREAMED_SOUND_MISSION_L2_A}, {"j4t_1", STREAMED_SOUND_MISSION_J4T_1},
|
|
|
|
{"j4t_2", STREAMED_SOUND_MISSION_J4T_2}, {"j4t_3", STREAMED_SOUND_MISSION_J4T_3},
|
|
|
|
{"j4t_4", STREAMED_SOUND_MISSION_J4T_4}, {"j4_a", STREAMED_SOUND_MISSION_J4_A},
|
|
|
|
{"j4_b", STREAMED_SOUND_MISSION_J4_B}, {"j4_c", STREAMED_SOUND_MISSION_J4_C},
|
|
|
|
{"j4_d", STREAMED_SOUND_MISSION_J4_D}, {"j4_e", STREAMED_SOUND_MISSION_J4_E},
|
|
|
|
{"j4_f", STREAMED_SOUND_MISSION_J4_F}, {"j6_1", STREAMED_SOUND_MISSION_J6_1},
|
|
|
|
{"j6_a", STREAMED_SOUND_MISSION_J6_A}, {"j6_b", STREAMED_SOUND_MISSION_J6_B},
|
|
|
|
{"j6_c", STREAMED_SOUND_MISSION_J6_C}, {"j6_d", STREAMED_SOUND_MISSION_J6_D},
|
|
|
|
{"t4_a", STREAMED_SOUND_MISSION_T4_A}, {"s1_a", STREAMED_SOUND_MISSION_S1_A},
|
|
|
|
{"s1_a1", STREAMED_SOUND_MISSION_S1_A1}, {"s1_b", STREAMED_SOUND_MISSION_S1_B},
|
|
|
|
{"s1_c", STREAMED_SOUND_MISSION_S1_C}, {"s1_c1", STREAMED_SOUND_MISSION_S1_C1},
|
|
|
|
{"s1_d", STREAMED_SOUND_MISSION_S1_D}, {"s1_e", STREAMED_SOUND_MISSION_S1_E},
|
|
|
|
{"s1_f", STREAMED_SOUND_MISSION_S1_F}, {"s1_g", STREAMED_SOUND_MISSION_S1_G},
|
|
|
|
{"s1_h", STREAMED_SOUND_MISSION_S1_H}, {"s1_i", STREAMED_SOUND_MISSION_S1_I},
|
|
|
|
{"s1_j", STREAMED_SOUND_MISSION_S1_J}, {"s1_k", STREAMED_SOUND_MISSION_S1_K},
|
|
|
|
{"s1_l", STREAMED_SOUND_MISSION_S1_L}, {"s3_a", STREAMED_SOUND_MISSION_S3_A},
|
|
|
|
{"s3_b", STREAMED_SOUND_MISSION_S3_B}, {"el3_a", STREAMED_SOUND_MISSION_EL3_A},
|
|
|
|
{"mf1_a", STREAMED_SOUND_MISSION_MF1_A}, {"mf2_a", STREAMED_SOUND_MISSION_MF2_A},
|
|
|
|
{"mf3_a", STREAMED_SOUND_MISSION_MF3_A}, {"mf3_b", STREAMED_SOUND_MISSION_MF3_B},
|
|
|
|
{"mf3_b1", STREAMED_SOUND_MISSION_MF3_B1}, {"mf3_c", STREAMED_SOUND_MISSION_MF3_C},
|
|
|
|
{"mf4_a", STREAMED_SOUND_MISSION_MF4_A}, {"mf4_b", STREAMED_SOUND_MISSION_MF4_B},
|
|
|
|
{"mf4_c", STREAMED_SOUND_MISSION_MF4_C}, {"a1_a", STREAMED_SOUND_MISSION_A1_A},
|
|
|
|
{"a3_a", STREAMED_SOUND_MISSION_A3_A}, {"a5_a", STREAMED_SOUND_MISSION_A5_A},
|
|
|
|
{"a4_a", STREAMED_SOUND_MISSION_A4_A}, {"a4_b", STREAMED_SOUND_MISSION_A4_B},
|
|
|
|
{"a4_c", STREAMED_SOUND_MISSION_A4_C}, {"a4_d", STREAMED_SOUND_MISSION_A4_D},
|
|
|
|
{"k1_a", STREAMED_SOUND_MISSION_K1_A}, {"k3_a", STREAMED_SOUND_MISSION_K3_A},
|
|
|
|
{"r1_a", STREAMED_SOUND_MISSION_R1_A}, {"r2_a", STREAMED_SOUND_MISSION_R2_A},
|
|
|
|
{"r2_b", STREAMED_SOUND_MISSION_R2_B}, {"r2_c", STREAMED_SOUND_MISSION_R2_C},
|
|
|
|
{"r2_d", STREAMED_SOUND_MISSION_R2_D}, {"r2_e", STREAMED_SOUND_MISSION_R2_E},
|
|
|
|
{"r2_f", STREAMED_SOUND_MISSION_R2_F}, {"r2_g", STREAMED_SOUND_MISSION_R2_G},
|
|
|
|
{"r2_h", STREAMED_SOUND_MISSION_R2_H}, {"r5_a", STREAMED_SOUND_MISSION_R5_A},
|
|
|
|
{"r6_a", STREAMED_SOUND_MISSION_R6_A}, {"r6_a1", STREAMED_SOUND_MISSION_R6_A1},
|
|
|
|
{"r6_b", STREAMED_SOUND_MISSION_R6_B}, {"lo2_a", STREAMED_SOUND_MISSION_LO2_A},
|
|
|
|
{"lo6_a", STREAMED_SOUND_MISSION_LO6_A}, {"yd2_a", STREAMED_SOUND_MISSION_YD2_A},
|
|
|
|
{"yd2_b", STREAMED_SOUND_MISSION_YD2_B}, {"yd2_c", STREAMED_SOUND_MISSION_YD2_C},
|
|
|
|
{"yd2_c1", STREAMED_SOUND_MISSION_YD2_C1}, {"yd2_d", STREAMED_SOUND_MISSION_YD2_D},
|
|
|
|
{"yd2_e", STREAMED_SOUND_MISSION_YD2_E}, {"yd2_f", STREAMED_SOUND_MISSION_YD2_F},
|
|
|
|
{"yd2_g", STREAMED_SOUND_MISSION_YD2_G}, {"yd2_h", STREAMED_SOUND_MISSION_YD2_H},
|
|
|
|
{"yd2_ass", STREAMED_SOUND_MISSION_YD2_ASS}, {"yd2_ok", STREAMED_SOUND_MISSION_YD2_OK},
|
|
|
|
{"h5_a", STREAMED_SOUND_MISSION_H5_A}, {"h5_b", STREAMED_SOUND_MISSION_H5_B},
|
|
|
|
{"h5_c", STREAMED_SOUND_MISSION_H5_C}, {"ammu_a", STREAMED_SOUND_MISSION_AMMU_A},
|
|
|
|
{"ammu_b", STREAMED_SOUND_MISSION_AMMU_B}, {"ammu_c", STREAMED_SOUND_MISSION_AMMU_C},
|
|
|
|
{"door_1", STREAMED_SOUND_MISSION_DOOR_1}, {"door_2", STREAMED_SOUND_MISSION_DOOR_2},
|
|
|
|
{"door_3", STREAMED_SOUND_MISSION_DOOR_3}, {"door_4", STREAMED_SOUND_MISSION_DOOR_4},
|
|
|
|
{"door_5", STREAMED_SOUND_MISSION_DOOR_5}, {"door_6", STREAMED_SOUND_MISSION_DOOR_6},
|
|
|
|
{"t3_a", STREAMED_SOUND_MISSION_T3_A}, {"t3_b", STREAMED_SOUND_MISSION_T3_B},
|
|
|
|
{"t3_c", STREAMED_SOUND_MISSION_T3_C}, {"k1_b", STREAMED_SOUND_MISSION_K1_B},
|
|
|
|
{"c_1", STREAMED_SOUND_MISSION_CAT1}};
|
|
|
|
|
|
|
|
int32
|
|
|
|
FindMissionAudioSfx(const char *name)
|
|
|
|
{
|
|
|
|
for(uint32 i = 0; i < ARRAY_SIZE(MissionAudioNameSfxAssoc); ++i) {
|
2019-10-29 23:12:58 +00:00
|
|
|
if(!CGeneral::faststricmp(MissionAudioNameSfxAssoc[i].m_pName, name)) return MissionAudioNameSfxAssoc[i].m_nId;
|
2019-10-27 17:39:17 +00:00
|
|
|
}
|
|
|
|
debug("Can't find mission audio %s", name);
|
|
|
|
return NO_SAMPLE;
|
|
|
|
}
|
|
|
|
|
2019-08-27 20:46:41 +00:00
|
|
|
void
|
2019-10-27 17:39:17 +00:00
|
|
|
cAudioManager::PreloadMissionAudio(const char *name)
|
2019-08-27 20:46:41 +00:00
|
|
|
{
|
2019-10-27 17:39:17 +00:00
|
|
|
if(m_bIsInitialised) {
|
|
|
|
int32 missionAudioSfx = FindMissionAudioSfx(name);
|
|
|
|
if(missionAudioSfx != NO_SAMPLE) {
|
|
|
|
m_sMissionAudio.m_nSampleIndex = missionAudioSfx;
|
|
|
|
m_sMissionAudio.m_bLoadingStatus = 0;
|
|
|
|
m_sMissionAudio.m_bPlayStatus = 0;
|
|
|
|
m_sMissionAudio.field_22 = 0;
|
|
|
|
m_sMissionAudio.field_24 =
|
|
|
|
field_19192 * SampleManager.GetStreamedFileLength(missionAudioSfx) / 1000;
|
|
|
|
m_sMissionAudio.field_24 *= 4;
|
|
|
|
m_sMissionAudio.m_bIsPlayed = 0;
|
|
|
|
m_sMissionAudio.field_12 = 1;
|
|
|
|
g_bMissionAudioLoadFailed = 0;
|
|
|
|
}
|
|
|
|
}
|
2019-08-27 20:46:41 +00:00
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
void
|
|
|
|
cAudioManager::PreTerminateGameSpecificShutdown()
|
|
|
|
{
|
|
|
|
if(m_nBridgeEntity >= 0) {
|
|
|
|
DestroyEntity(m_nBridgeEntity);
|
2019-10-12 22:35:01 +00:00
|
|
|
m_nBridgeEntity = AEHANDLE_NONE;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
if(m_nPoliceChannelEntity >= 0) {
|
|
|
|
DestroyEntity(m_nPoliceChannelEntity);
|
2019-10-12 22:35:01 +00:00
|
|
|
m_nPoliceChannelEntity = AEHANDLE_NONE;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
if(m_nWaterCannonEntity >= 0) {
|
|
|
|
DestroyEntity(m_nWaterCannonEntity);
|
2019-10-12 22:35:01 +00:00
|
|
|
m_nWaterCannonEntity = AEHANDLE_NONE;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
if(m_nFireAudioEntity >= 0) {
|
|
|
|
DestroyEntity(m_nFireAudioEntity);
|
2019-10-12 22:35:01 +00:00
|
|
|
m_nFireAudioEntity = AEHANDLE_NONE;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
if(m_nCollisionEntity >= 0) {
|
|
|
|
DestroyEntity(m_nCollisionEntity);
|
2019-10-12 22:35:01 +00:00
|
|
|
m_nCollisionEntity = AEHANDLE_NONE;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
if(m_nFrontEndEntity >= 0) {
|
|
|
|
DestroyEntity(m_nFrontEndEntity);
|
2019-10-12 22:35:01 +00:00
|
|
|
m_nFrontEndEntity = AEHANDLE_NONE;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
if(m_nProjectileEntity >= 0) {
|
|
|
|
DestroyEntity(m_nProjectileEntity);
|
2019-10-12 22:35:01 +00:00
|
|
|
m_nProjectileEntity = AEHANDLE_NONE;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
WRAPPER
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessActiveQueues()
|
|
|
|
{
|
|
|
|
EAXJMP(0x57BA60);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::ProcessAirBrakes(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
CAutomobile *automobile;
|
|
|
|
uint8 rand;
|
|
|
|
|
|
|
|
if(params->m_fDistance > 900.0f) return 0;
|
|
|
|
automobile = (CAutomobile *)params->m_pVehicle;
|
|
|
|
if(!automobile->bEngineOn) return 1;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if((automobile->m_fVelocityChangeForAudio < 0.025f || params->m_fVelocityChange >= 0.025f) &&
|
2019-07-08 19:44:32 +00:00
|
|
|
(automobile->m_fVelocityChangeForAudio > -0.025f || params->m_fVelocityChange <= 0.025f))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
rand = m_anRandomTable[0] % 10 + 70;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(rand, 30.0f, m_sQueueSample.m_fDistance);
|
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 13;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_AIR_BRAKES;
|
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_AIR_BRAKES);
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 4);
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 10;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = rand;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessAirportScriptObject(uint8 sound)
|
|
|
|
{
|
|
|
|
float dist;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
static uint8 counter = 0;
|
|
|
|
|
|
|
|
uint32 time = CTimer::GetTimeInMilliseconds();
|
2019-10-27 17:04:13 +00:00
|
|
|
if(time > gAirportNextTime) {
|
2019-07-08 19:44:32 +00:00
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_AIRPORT_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_AIRPORT_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
2019-09-24 11:33:16 +00:00
|
|
|
float distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(distSquared < maxDist) {
|
|
|
|
dist = sqrt(distSquared);
|
|
|
|
m_sQueueSample.m_fDistance = dist;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(110, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = (m_anRandomTable[1] & 3) + SFX_AIRPORT_ANNOUNCEMENT_1;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = counter++;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bEmittingVolume = 110;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
2019-10-27 17:04:13 +00:00
|
|
|
gAirportNextTime = time + 10000 + m_anRandomTable[3] % 20000;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::ProcessBoatEngine(cVehicleParams *params)
|
|
|
|
{
|
2019-08-02 15:43:40 +00:00
|
|
|
CBoat *boat;
|
|
|
|
float padRelativeAccerate;
|
|
|
|
float gasPedal;
|
|
|
|
int32 padAccelerate;
|
|
|
|
uint8 emittingVol;
|
|
|
|
float oneShotVol;
|
|
|
|
|
|
|
|
static uint16 LastAccel = 0;
|
|
|
|
static uint8 LastVol = 0;
|
|
|
|
|
|
|
|
if(params->m_fDistance < 2500.f) {
|
|
|
|
boat = (CBoat *)params->m_pVehicle;
|
|
|
|
if(params->m_nIndex == REEFER) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(80, 50.f, m_sQueueSample.m_fDistance);
|
2019-08-02 15:43:40 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 39;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FISHING_BOAT_IDLE;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 10386;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += (m_sQueueSample.m_nEntityIndex << 16) % 1000;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 80;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd =
|
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 50.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 7;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
if(FindPlayerVehicle() == params->m_pVehicle) {
|
|
|
|
if(Pads[0].GetAccelerate() <= Pads[0].GetBrake())
|
|
|
|
padAccelerate = Pads[0].GetBrake();
|
|
|
|
else
|
|
|
|
padAccelerate = Pads[0].GetAccelerate();
|
|
|
|
padRelativeAccerate = padAccelerate / 255;
|
|
|
|
emittingVol = (100.f * padRelativeAccerate) + 15;
|
|
|
|
m_sQueueSample.m_nFrequency = (3000.f * padRelativeAccerate) + 6000;
|
|
|
|
if(!boat->m_bIsAnchored)
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 11 * m_sQueueSample.m_nFrequency / 10;
|
2019-08-02 15:43:40 +00:00
|
|
|
} else {
|
|
|
|
gasPedal = Abs(boat->m_fGasPedal);
|
|
|
|
if(gasPedal > 0.0f) {
|
|
|
|
m_sQueueSample.m_nFrequency = 6000;
|
|
|
|
emittingVol = 15;
|
|
|
|
} else {
|
|
|
|
emittingVol = (100.f * gasPedal) + 15;
|
|
|
|
m_sQueueSample.m_nFrequency = (3000.f * gasPedal) + 6000;
|
|
|
|
if(!boat->m_bIsAnchored)
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 11 * m_sQueueSample.m_nFrequency / 10;
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 50.f, m_sQueueSample.m_fDistance);
|
2019-08-02 15:43:40 +00:00
|
|
|
if(!m_sQueueSample.m_bVolume) return 1;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 40;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_POLICE_BOAT_ACCEL;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nFrequency += (m_sQueueSample.m_nEntityIndex << 16) % 1000;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 50.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 7;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
} else {
|
|
|
|
if(FindPlayerVehicle() == params->m_pVehicle) {
|
|
|
|
if(Pads[0].GetAccelerate() <= Pads[0].GetBrake())
|
|
|
|
padAccelerate = Pads[0].GetBrake();
|
|
|
|
else
|
|
|
|
padAccelerate = Pads[0].GetAccelerate();
|
|
|
|
if(padAccelerate <= 20) {
|
|
|
|
emittingVol = 45 - 45 * padAccelerate / 40;
|
|
|
|
m_sQueueSample.m_nFrequency = 100 * padAccelerate + 11025;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 39;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_POLICE_BOAT_IDLE;
|
2019-08-02 15:43:40 +00:00
|
|
|
if(LastAccel > 20) {
|
|
|
|
oneShotVol = LastVol;
|
2019-10-25 16:39:26 +00:00
|
|
|
PlayOneShot(m_sQueueSample.m_nEntityIndex, SOUND_17, oneShotVol);
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
emittingVol = 105 * padAccelerate / 255 + 15;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 4000 * padAccelerate / 255 + 8000;
|
2019-08-02 15:43:40 +00:00
|
|
|
if(!boat->m_bIsAnchored)
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 11 * m_sQueueSample.m_nFrequency / 10;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 40;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_POLICE_BOAT_ACCEL;
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
LastVol = emittingVol;
|
|
|
|
LastAccel = padAccelerate;
|
|
|
|
} else {
|
|
|
|
gasPedal = Abs(boat->m_fGasPedal);
|
|
|
|
if(gasPedal > 0.0f) {
|
|
|
|
m_sQueueSample.m_nFrequency = 11025;
|
|
|
|
emittingVol = 45;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 39;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_POLICE_BOAT_IDLE;
|
2019-08-02 15:43:40 +00:00
|
|
|
} else {
|
|
|
|
emittingVol = (105.f * gasPedal) + 15;
|
|
|
|
m_sQueueSample.m_nFrequency = (4000.f * gasPedal) + 8000;
|
|
|
|
if(!boat->m_bIsAnchored)
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 11 * m_sQueueSample.m_nFrequency / 10;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 40;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_POLICE_BOAT_ACCEL;
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 50.f, m_sQueueSample.m_fDistance);
|
2019-08-02 15:43:40 +00:00
|
|
|
if(!m_sQueueSample.m_bVolume) return 1;
|
|
|
|
m_sQueueSample.m_nFrequency += (m_sQueueSample.m_nEntityIndex << 16) % 1000;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 50.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 7;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
}
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::ProcessBoatMovingOverWater(cVehicleParams *params)
|
|
|
|
{
|
2019-08-02 15:43:40 +00:00
|
|
|
float velocityChange;
|
|
|
|
int32 vol;
|
|
|
|
float multiplier;
|
|
|
|
|
|
|
|
if(params->m_fDistance > 2500.f) return 0;
|
|
|
|
|
|
|
|
velocityChange = Abs(params->m_fVelocityChange);
|
|
|
|
if(velocityChange <= 0.0005f && params->m_pVehicle->GetPosition().y) return 1;
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
velocityChange = min(0.75f, velocityChange);
|
2019-10-12 22:35:01 +00:00
|
|
|
multiplier = (velocityChange - 0.0005f) * 1.3342f;
|
2019-08-02 15:43:40 +00:00
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
vol = (30.f * multiplier);
|
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(vol, 50.f, m_sQueueSample.m_fDistance);
|
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 38;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BOAT_WATER_LOOP;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.m_nFrequency = (6050.f * multiplier) + 16000;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = vol;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 50.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessBridge()
|
|
|
|
{
|
2019-08-02 15:43:40 +00:00
|
|
|
float dist;
|
|
|
|
bool something = false;
|
|
|
|
|
|
|
|
if(CBridge::pLiftRoad) {
|
|
|
|
m_sQueueSample.m_vecPos = CBridge::pLiftRoad->GetPosition();
|
|
|
|
dist = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(dist < 202500.0f) {
|
|
|
|
CalculateDistance(&something, dist);
|
|
|
|
switch(CBridge::State) {
|
|
|
|
case STATE_BRIDGE_LOCKED:
|
|
|
|
case STATE_LIFT_PART_IS_UP:
|
|
|
|
case STATE_LIFT_PART_ABOUT_TO_MOVE_UP: ProcessBridgeWarning(); break;
|
|
|
|
case STATE_LIFT_PART_MOVING_DOWN:
|
|
|
|
case STATE_LIFT_PART_MOVING_UP:
|
|
|
|
ProcessBridgeWarning();
|
|
|
|
ProcessBridgeMotor();
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
ProcessBridgeOneShots();
|
|
|
|
}
|
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessBridgeMotor()
|
|
|
|
{
|
|
|
|
if(m_sQueueSample.m_fDistance < 400.f) {
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(maxVolume, 400.f, m_sQueueSample.m_fDistance);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 1;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FISHING_BOAT_IDLE;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.m_nFrequency = 5500;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_bEmittingVolume = maxVolume;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_fSoundIntensity = 400.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessBridgeOneShots()
|
|
|
|
{
|
2019-08-02 15:43:40 +00:00
|
|
|
float maxDist;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(CBridge::State == STATE_LIFT_PART_IS_UP && CBridge::OldState == STATE_LIFT_PART_MOVING_UP) {
|
|
|
|
maxDist = 400.f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_COL_CONTAINER_1;
|
2019-10-25 16:39:26 +00:00
|
|
|
} else {
|
|
|
|
if(CBridge::State == STATE_LIFT_PART_IS_DOWN && CBridge::OldState == STATE_LIFT_PART_MOVING_DOWN) {
|
|
|
|
maxDist = 400.f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_COL_CONTAINER_1;
|
2019-10-25 16:39:26 +00:00
|
|
|
} else {
|
|
|
|
if(CBridge::State == STATE_LIFT_PART_MOVING_UP &&
|
|
|
|
CBridge::OldState == STATE_LIFT_PART_ABOUT_TO_MOVE_UP) {
|
2019-08-02 15:43:40 +00:00
|
|
|
maxDist = 400.f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_COL_CONTAINER_1;
|
2019-08-02 15:43:40 +00:00
|
|
|
} else {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(CBridge::State == STATE_LIFT_PART_MOVING_DOWN &&
|
|
|
|
CBridge::OldState == STATE_LIFT_PART_IS_UP) {
|
|
|
|
maxDist = 400.f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_COL_CONTAINER_1;
|
2019-10-25 16:39:26 +00:00
|
|
|
} else
|
|
|
|
return;
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(m_sQueueSample.m_fDistance < maxDist) {
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(maxVolume, maxDist, m_sQueueSample.m_fDistance);
|
2019-08-02 15:43:40 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 2;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = maxVolume;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = maxDist;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessBridgeWarning()
|
|
|
|
{
|
|
|
|
if(CStats::CommercialPassed && m_sQueueSample.m_fDistance < 450.f) {
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(100, 450.f, m_sQueueSample.m_fDistance);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = 457;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 1;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_BRIDGE_OPEN_WARNING);
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 100;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 450.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 8;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-08-02 15:43:40 +00:00
|
|
|
cAudioManager::ProcessCarBombTick(cVehicleParams *params)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
2019-08-02 15:43:40 +00:00
|
|
|
CAutomobile *automobile;
|
|
|
|
|
|
|
|
if(params->m_fDistance >= 1600.f) return 0;
|
|
|
|
automobile = (CAutomobile *)params->m_pVehicle;
|
|
|
|
if(automobile->bEngineOn && automobile->m_bombType == CARBOMB_TIMEDACTIVE) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(60, 40.f, m_sQueueSample.m_fDistance);
|
2019-08-02 15:43:40 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 35;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_COUNTDOWN;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_COUNTDOWN);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 60;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 40.0f;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WRAPPER
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessCesna(void *)
|
|
|
|
{
|
|
|
|
EAXJMP(0x56ADF0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessCinemaScriptObject(uint8 sound)
|
|
|
|
{
|
|
|
|
uint8 rand;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
static uint8 counter = 0;
|
|
|
|
|
|
|
|
uint32 time = CTimer::GetTimeInMilliseconds();
|
2019-10-27 17:04:13 +00:00
|
|
|
if(time > gCinemaNextTime) {
|
2019-07-08 19:44:32 +00:00
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_CINEMA_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_CINEMA_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
2019-09-24 11:33:16 +00:00
|
|
|
float distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
rand = m_anRandomTable[0] % 90 + 30;
|
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(rand, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = counter % 3 + SFX_CINEMA_BASS_1;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency / 4);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = counter++;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bEmittingVolume = rand;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
2019-10-27 17:04:13 +00:00
|
|
|
gCinemaNextTime = time + 1000 + m_anRandomTable[3] % 4000;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WRAPPER
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessCrane()
|
|
|
|
{
|
|
|
|
EAXJMP(0x578910);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessDocksScriptObject(uint8 sound)
|
|
|
|
{
|
|
|
|
uint32 time;
|
|
|
|
uint8 rand;
|
|
|
|
float distSquared;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
static uint32 counter = 0;
|
|
|
|
|
|
|
|
time = CTimer::GetTimeInMilliseconds();
|
2019-10-27 17:04:13 +00:00
|
|
|
if(time > gDocksNextTime) {
|
2019-07-08 19:44:32 +00:00
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_DOCKS_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_DOCKS_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
rand = m_anRandomTable[0] % 60 + 40;
|
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(rand, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_DOCKS_FOGHORN;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_DOCKS_FOGHORN);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 3);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = counter++;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bEmittingVolume = rand;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
2019-10-27 17:04:13 +00:00
|
|
|
gDocksNextTime = time + 10000 + m_anRandomTable[3] % 40000;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-02 15:43:40 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::ProcessEngineDamage(cVehicleParams *params)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
2019-08-02 15:43:40 +00:00
|
|
|
CAutomobile *veh;
|
|
|
|
uint8 engineStatus;
|
|
|
|
uint8 emittingVolume;
|
|
|
|
|
|
|
|
if(params->m_fDistance >= 1600.f) return 0;
|
|
|
|
veh = (CAutomobile *)params->m_pVehicle;
|
|
|
|
if(veh->bEngineOn) {
|
|
|
|
engineStatus = veh->Damage.GetEngineStatus();
|
2019-10-25 16:39:26 +00:00
|
|
|
if(engineStatus > 250u || engineStatus < 100) return 1;
|
|
|
|
if(engineStatus < 225) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_JUMBO_TAXI;
|
2019-08-02 15:43:40 +00:00
|
|
|
emittingVolume = 6;
|
|
|
|
m_sQueueSample.field_16 = 7;
|
|
|
|
m_sQueueSample.m_nFrequency = 40000;
|
|
|
|
} else {
|
|
|
|
emittingVolume = 60;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CAR_ON_FIRE;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.field_16 = 7;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CAR_ON_FIRE);
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVolume, 40.f, m_sQueueSample.m_fDistance);
|
2019-08-02 15:43:40 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 28;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVolume;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 40.0f;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessEntity(int32 id)
|
|
|
|
{
|
|
|
|
if(m_asAudioEntities[id].m_bStatus) {
|
|
|
|
m_sQueueSample.m_nEntityIndex = id;
|
|
|
|
switch(m_asAudioEntities[id].m_nType) {
|
|
|
|
case AUDIOTYPE_PHYSICAL:
|
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
ProcessPhysical(id);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AUDIOTYPE_EXPLOSION:
|
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
ProcessExplosions(id);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AUDIOTYPE_FIRE:
|
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
ProcessFires(id);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AUDIOTYPE_WEATHER:
|
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
ProcessWeather(id);
|
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case AUDIOTYPE_CRANE:
|
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
2019-07-31 15:54:18 +00:00
|
|
|
ProcessCrane();
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
break;
|
2019-08-15 01:43:00 +00:00
|
|
|
case AUDIOTYPE_SCRIPTOBJECT:
|
2019-07-08 19:44:32 +00:00
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
2019-07-31 15:54:18 +00:00
|
|
|
ProcessScriptObject(id);
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AUDIOTYPE_BRIDGE:
|
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
2019-07-31 15:54:18 +00:00
|
|
|
ProcessBridge();
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AUDIOTYPE_FRONTEND:
|
|
|
|
m_sQueueSample.m_bReverbFlag = 0;
|
2019-07-31 15:54:18 +00:00
|
|
|
ProcessFrontEnd();
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case AUDIOTYPE_PROJECTILE:
|
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
2019-07-31 15:54:18 +00:00
|
|
|
ProcessProjectiles();
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AUDIOTYPE_GARAGE:
|
2019-07-31 15:54:18 +00:00
|
|
|
if(!m_bUserPause) ProcessGarages();
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
2019-08-15 01:43:00 +00:00
|
|
|
case AUDIOTYPE_FIREHYDRANT:
|
2019-07-08 19:44:32 +00:00
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
2019-07-31 15:54:18 +00:00
|
|
|
ProcessFireHydrant();
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
break;
|
2019-08-15 01:43:00 +00:00
|
|
|
case AUDIOTYPE_WATERCANNON:
|
2019-07-08 19:44:32 +00:00
|
|
|
if(!m_bUserPause) {
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
2019-07-31 15:54:18 +00:00
|
|
|
ProcessWaterCannon(id);
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessExplosions(int32 explosion)
|
|
|
|
{
|
2019-07-31 15:54:18 +00:00
|
|
|
uint8 type;
|
|
|
|
CVector *pos;
|
|
|
|
float maxDist;
|
|
|
|
float distSquared;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
for(uint8 i = 0; i < 48; i++) {
|
2019-07-31 15:54:18 +00:00
|
|
|
if(CExplosion::GetExplosionActiveCounter(i) == 1) {
|
|
|
|
CExplosion::ResetExplosionActiveCounter(i);
|
|
|
|
type = CExplosion::GetExplosionType(i);
|
|
|
|
switch(type) {
|
|
|
|
case EXPLOSION_GRENADE:
|
|
|
|
case EXPLOSION_ROCKET:
|
|
|
|
case EXPLOSION_BARREL:
|
|
|
|
case EXPLOSION_TANK_GRENADE:
|
|
|
|
maxDist = 160000.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 400.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_EXPLOSION_2;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(2000) + 38000;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 0;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
break;
|
|
|
|
case EXPLOSION_MOLOTOV:
|
|
|
|
maxDist = 40000.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 200.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_EXPLOSION_3;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(1000) + 19000;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 0;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
break;
|
|
|
|
case EXPLOSION_MINE:
|
|
|
|
case EXPLOSION_HELI_BOMB:
|
|
|
|
maxDist = 90000.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 300.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_ROCKET_LEFT;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(1000) + 12347;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 0;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
maxDist = 160000.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 400.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_EXPLOSION_1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(2000) + 38000;
|
2019-07-31 15:54:18 +00:00
|
|
|
if(type == EXPLOSION_HELI)
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 8 * m_sQueueSample.m_nFrequency / 10;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 0;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pos = CExplosion::GetExplosionPosition(i);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_vecPos = *pos;
|
2019-07-31 15:54:18 +00:00
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = Sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(maxVolume, m_sQueueSample.m_fSoundIntensity,
|
|
|
|
m_sQueueSample.m_fDistance);
|
2019-07-31 15:54:18 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = i;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = maxVolume;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessFireHydrant()
|
|
|
|
{
|
|
|
|
float distSquared;
|
|
|
|
bool something = false;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_vecPos = *(CVector *)((size_t)m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_pEntity + 52);
|
2019-07-08 19:44:32 +00:00
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < 1225.f) {
|
|
|
|
CalculateDistance(&something, distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(40, 35.f, m_sQueueSample.m_fDistance);
|
2019-07-08 19:44:32 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_JUMBO_TAXI;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 4;
|
|
|
|
m_sQueueSample.m_nFrequency = 15591;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 40;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 35.0f;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WRAPPER
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessFires(int32 entity)
|
|
|
|
{
|
|
|
|
EAXJMP(0x575CD0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessFrontEnd()
|
|
|
|
{
|
|
|
|
bool processed;
|
2019-10-27 12:19:29 +00:00
|
|
|
bool processedPickup;
|
|
|
|
bool processedMission;
|
2019-07-08 19:44:32 +00:00
|
|
|
int16 sample;
|
|
|
|
|
2019-10-27 12:19:29 +00:00
|
|
|
static uint8 counter = 0;
|
|
|
|
static uint32 cPickupNextFrame = 0;
|
|
|
|
static uint32 cPartMisComNextFrame = 0;
|
2019-07-08 19:44:32 +00:00
|
|
|
|
2019-10-26 14:47:57 +00:00
|
|
|
for(uint32 i = 0; i < m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_AudioEvents; i++) {
|
2019-10-27 12:19:29 +00:00
|
|
|
processedPickup = 0;
|
2019-07-08 19:44:32 +00:00
|
|
|
processed = 0;
|
2019-10-27 12:19:29 +00:00
|
|
|
processedMission = 0;
|
2019-10-12 20:21:44 +00:00
|
|
|
switch(m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_awAudioEvent[i]) {
|
2019-10-27 12:19:29 +00:00
|
|
|
case SOUND_WEAPON_SNIPER_SHOT_NO_ZOOM: m_sQueueSample.m_nSampleIndex = SFX_ERROR_FIRE_RIFLE; break;
|
2019-07-08 19:44:32 +00:00
|
|
|
case SOUND_WEAPON_ROCKET_SHOT_NO_ZOOM:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_ERROR_FIRE_ROCKET_LAUNCHER;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_GARAGE_NO_MONEY:
|
|
|
|
case SOUND_GARAGE_BAD_VEHICLE:
|
|
|
|
case SOUND_3C:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PICKUP_ERROR_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_GARAGE_OPENING:
|
|
|
|
case SOUND_GARAGE_BOMB1_SET:
|
|
|
|
case SOUND_GARAGE_BOMB2_SET:
|
|
|
|
case SOUND_GARAGE_BOMB3_SET:
|
|
|
|
case SOUND_41:
|
|
|
|
case SOUND_GARAGE_VEHICLE_DECLINED:
|
|
|
|
case SOUND_GARAGE_VEHICLE_ACCEPTED:
|
|
|
|
case SOUND_PICKUP_HEALTH:
|
|
|
|
case SOUND_4B:
|
|
|
|
case SOUND_PICKUP_ADRENALINE:
|
|
|
|
case SOUND_PICKUP_ARMOUR:
|
|
|
|
case SOUND_EVIDENCE_PICKUP:
|
|
|
|
case SOUND_UNLOAD_GOLD:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PICKUP_2_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processedPickup = true;
|
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PICKUP_WEAPON_BOUGHT:
|
|
|
|
case SOUND_PICKUP_WEAPON:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PICKUP_1_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processedPickup = true;
|
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_4A:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PICKUP_ERROR_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processedPickup = true;
|
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PICKUP_BONUS:
|
|
|
|
case SOUND_PICKUP_MONEY:
|
|
|
|
case SOUND_PICKUP_HIDDEN_PACKAGE:
|
|
|
|
case SOUND_PICKUP_PACMAN_PILL:
|
|
|
|
case SOUND_PICKUP_PACMAN_PACKAGE:
|
|
|
|
case SOUND_PICKUP_FLOAT_PACKAGE:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PICKUP_3_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processedPickup = true;
|
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_PAGER: m_sQueueSample.m_nSampleIndex = SFX_PAGER; break;
|
2019-07-08 19:44:32 +00:00
|
|
|
case SOUND_RACE_START_3:
|
|
|
|
case SOUND_RACE_START_2:
|
|
|
|
case SOUND_RACE_START_1:
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_CLOCK_TICK: m_sQueueSample.m_nSampleIndex = SFX_TIMER_BEEP; break;
|
2019-10-27 12:19:29 +00:00
|
|
|
case SOUND_RACE_START_GO: m_sQueueSample.m_nSampleIndex = SFX_PART_MISSION_COMPLETE; break;
|
2019-07-08 19:44:32 +00:00
|
|
|
case SOUND_PART_MISSION_COMPLETE:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PART_MISSION_COMPLETE;
|
2019-10-27 12:19:29 +00:00
|
|
|
processedMission = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_FRONTEND_MENU_STARTING:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_START_BUTTON_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_FRONTEND_MENU_COMPLETED:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PAGE_CHANGE_AND_BACK_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_FRONTEND_MENU_DENIED:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_HIGHLIGHT_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_FRONTEND_MENU_SUCCESS:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SELECT_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_FRONTEND_EXIT:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SUB_MENU_BACK_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_9A:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_STEREO_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_9B: m_sQueueSample.m_nSampleIndex = SFX_MONO; break;
|
2019-07-08 19:44:32 +00:00
|
|
|
case SOUND_FRONTEND_AUDIO_TEST:
|
2019-10-27 12:19:29 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = m_anRandomTable[0] % 3 + SFX_NOISE_BURST_1;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_FRONTEND_FAIL:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_ERROR_LEFT;
|
2019-10-27 12:19:29 +00:00
|
|
|
processed = true;
|
2019-07-08 19:44:32 +00:00
|
|
|
break;
|
|
|
|
case SOUND_FRONTEND_NO_RADIO:
|
2019-10-27 12:19:29 +00:00
|
|
|
case SOUND_FRONTEND_RADIO_CHANGE: m_sQueueSample.m_nSampleIndex = SFX_RADIO_CLICK; break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_A0: m_sQueueSample.m_nSampleIndex = SFX_INFO; break;
|
2019-07-08 19:44:32 +00:00
|
|
|
default: continue;
|
2019-10-27 12:19:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(processedPickup) {
|
|
|
|
if(m_nTimeOfRecentCrime <= cPickupNextFrame) continue;
|
|
|
|
cPickupNextFrame = m_nTimeOfRecentCrime + 5;
|
|
|
|
} else if(processedMission) {
|
|
|
|
if(m_nTimeOfRecentCrime <= cPartMisComNextFrame) continue;
|
|
|
|
cPartMisComNextFrame = m_nTimeOfRecentCrime + 5;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
2019-10-12 20:21:44 +00:00
|
|
|
sample = m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_awAudioEvent[i];
|
2019-10-26 23:06:10 +00:00
|
|
|
if(sample == SFX_RAIN) {
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 28509;
|
2019-10-26 23:06:10 +00:00
|
|
|
} else if(sample == SFX_PICKUP_1_LEFT) {
|
2019-10-12 20:21:44 +00:00
|
|
|
if(1.f == m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_afVolume[i])
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 32000;
|
|
|
|
else
|
|
|
|
m_sQueueSample.m_nFrequency = 48000;
|
|
|
|
} else {
|
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
m_sQueueSample.m_bVolume = 110;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = counter++;
|
2019-07-08 19:44:32 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_16 = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = m_sQueueSample.m_bVolume;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
if(processed)
|
|
|
|
m_sQueueSample.m_bOffset = m_anRandomTable[0] & 0x1F;
|
|
|
|
else
|
|
|
|
m_sQueueSample.m_bOffset = 63;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
if(processed) {
|
|
|
|
++m_sQueueSample.m_nSampleIndex;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = counter++;
|
|
|
|
m_sQueueSample.m_bOffset = maxVolume - m_sQueueSample.m_bOffset;
|
2019-07-08 19:44:32 +00:00
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WRAPPER
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessGarages()
|
|
|
|
{
|
2019-07-12 16:27:12 +00:00
|
|
|
EAXJMP(0x578C20);
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
2019-08-02 15:43:40 +00:00
|
|
|
struct tHelicopterSampleData {
|
|
|
|
float m_fMaxDistance;
|
|
|
|
float m_fBaseDistance;
|
2019-09-27 21:19:43 +00:00
|
|
|
uint8 m_bBaseVolume;
|
2019-08-02 15:43:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::ProcessHelicopter(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
CHeli *heli;
|
|
|
|
float MaxDist;
|
|
|
|
float dist;
|
|
|
|
float baseDist;
|
|
|
|
int32 emittingVol;
|
2019-10-12 20:21:44 +00:00
|
|
|
static constexpr tHelicopterSampleData gHeliSfxRanges[3] = {
|
|
|
|
{400.f, 380.f, 100}, {100.f, 70.f, maxVolume}, {60.f, 30.f, maxVolume}};
|
2019-08-02 15:43:40 +00:00
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(gHeliSfxRanges[0].m_fMaxDistance * gHeliSfxRanges[0].m_fMaxDistance <= params->m_fDistance) return 0;
|
2019-08-02 15:43:40 +00:00
|
|
|
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
heli = (CHeli *)params->m_pVehicle;
|
|
|
|
for(uint32 i = 0; i < 3; i++) {
|
|
|
|
MaxDist = gHeliSfxRanges[i].m_fMaxDistance;
|
|
|
|
dist = m_sQueueSample.m_fDistance;
|
|
|
|
if(dist >= MaxDist) return 1;
|
|
|
|
baseDist = gHeliSfxRanges[i].m_fBaseDistance;
|
|
|
|
if(dist < baseDist)
|
2019-10-25 16:39:26 +00:00
|
|
|
emittingVol = (gHeliSfxRanges[i].m_bBaseVolume * ((MaxDist - dist) / (MaxDist - baseDist)));
|
2019-08-02 15:43:40 +00:00
|
|
|
else
|
|
|
|
emittingVol = gHeliSfxRanges[i].m_bBaseVolume;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(emittingVol, gHeliSfxRanges[i].m_fMaxDistance, m_sQueueSample.m_fDistance);
|
2019-08-02 15:43:40 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = i + 65;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = i + SFX_HELI_1;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 1200 * heli->m_nHeliId + SampleManager.GetSampleBaseFrequency(
|
|
|
|
m_sQueueSample.m_nSampleIndex);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 6.0f;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_fSoundIntensity = gHeliSfxRanges[i].m_fMaxDistance;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-07-12 16:27:12 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessHomeScriptObject(uint8 sound)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
2019-07-16 15:03:37 +00:00
|
|
|
uint32 time;
|
|
|
|
uint8 rand;
|
|
|
|
float dist;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
static uint8 counter = 0;
|
|
|
|
|
|
|
|
time = CTimer::GetTimeInMilliseconds();
|
2019-10-27 17:04:13 +00:00
|
|
|
if(time > gHomeNextTime) {
|
2019-07-16 15:03:37 +00:00
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_HOME_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_HOME_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
dist = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(dist < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = sqrt(dist);
|
2019-10-25 16:39:26 +00:00
|
|
|
rand = m_anRandomTable[0] % 30 + 40;
|
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(rand, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-16 15:03:37 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = m_anRandomTable[0] % 5 + SFX_HOME_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency / 16);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = counter++;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = rand;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
AddSampleToRequestedQueue();
|
2019-10-27 17:04:13 +00:00
|
|
|
gHomeNextTime = time + 1000 + m_anRandomTable[3] % 4000;
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessJumbo(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
CPlane *plane;
|
|
|
|
float position;
|
|
|
|
|
|
|
|
if(params->m_fDistance < 193600.0f) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
plane = (CPlane *)params->m_pVehicle;
|
|
|
|
DoJumboVolOffset();
|
2019-07-31 21:57:18 +00:00
|
|
|
position = PlanePathPosition[plane->m_nPlaneId];
|
2019-07-16 15:03:37 +00:00
|
|
|
if(position <= TakeOffPoint) {
|
2019-07-31 21:57:18 +00:00
|
|
|
if(plane->m_fSpeed <= 0.10334f) {
|
2019-07-16 15:03:37 +00:00
|
|
|
ProcessJumboTaxi();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProcessJumboAccel(plane);
|
|
|
|
} else if(300.0f + TakeOffPoint >= position) {
|
|
|
|
ProcessJumboTakeOff(plane);
|
|
|
|
} else if(LandingPoint - 350.0f >= position) {
|
|
|
|
ProcessJumboFlying();
|
|
|
|
} else {
|
|
|
|
if(position > LandingPoint) {
|
2019-07-31 21:57:18 +00:00
|
|
|
if(plane->m_fSpeed > 0.10334f) {
|
2019-07-16 15:03:37 +00:00
|
|
|
ProcessJumboDecel(plane);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ProcessJumboTaxi();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ProcessJumboLanding(plane);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-07-18 21:49:21 +00:00
|
|
|
cAudioManager::ProcessJumboAccel(CPlane *plane)
|
2019-07-16 15:03:37 +00:00
|
|
|
{
|
2019-07-18 21:49:21 +00:00
|
|
|
int32 engineFreq;
|
|
|
|
int32 vol;
|
|
|
|
float whineSoundFreq;
|
|
|
|
float modificator;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SetupJumboFlySound(20)) {
|
2019-07-31 21:57:18 +00:00
|
|
|
modificator = (plane->m_fSpeed - 0.10334f) * 1.676f;
|
2019-07-18 21:49:21 +00:00
|
|
|
if(modificator > 1.0f) modificator = 1.0f;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SetupJumboRumbleSound(maxVolume * modificator) && SetupJumboTaxiSound((1.0f - modificator) * 75.f)) {
|
2019-07-18 21:49:21 +00:00
|
|
|
if(modificator < 0.2f) {
|
|
|
|
whineSoundFreq = modificator * 5.f * 14600.0f + 29500;
|
|
|
|
vol = modificator * 5.f * maxVolume;
|
|
|
|
engineFreq = modificator * 5.f * 6050.f + 16000;
|
|
|
|
} else {
|
|
|
|
whineSoundFreq = 44100;
|
|
|
|
engineFreq = 22050;
|
|
|
|
vol = maxVolume;
|
|
|
|
}
|
|
|
|
SetupJumboEngineSound(vol, engineFreq);
|
2019-10-25 16:39:26 +00:00
|
|
|
SetupJumboWhineSound(18, whineSoundFreq);
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-07-18 21:49:21 +00:00
|
|
|
cAudioManager::ProcessJumboDecel(CPlane *plane)
|
2019-07-16 15:03:37 +00:00
|
|
|
{
|
2019-07-18 21:49:21 +00:00
|
|
|
float modificator;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SetupJumboFlySound(20) && SetupJumboTaxiSound(75)) {
|
2019-07-31 21:57:18 +00:00
|
|
|
modificator = (plane->m_fSpeed - 0.10334f) * 1.676f;
|
2019-07-18 21:49:21 +00:00
|
|
|
if(modificator > 1.0f) modificator = 1.0f;
|
|
|
|
SetupJumboEngineSound(maxVolume * modificator, 6050.f * modificator + 16000);
|
2019-10-25 16:39:26 +00:00
|
|
|
SetupJumboWhineSound(18, 29500);
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessJumboFlying()
|
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SetupJumboFlySound(maxVolume)) SetupJumboEngineSound(63, 22050);
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
2019-07-16 15:03:37 +00:00
|
|
|
void
|
2019-07-18 21:49:21 +00:00
|
|
|
cAudioManager::ProcessJumboLanding(CPlane *plane)
|
|
|
|
{
|
2019-08-29 22:44:57 +00:00
|
|
|
float modificator = (LandingPoint - PlanePathPosition[plane->m_nPlaneId]) / 350.f;
|
2019-07-18 21:49:21 +00:00
|
|
|
if(SetupJumboFlySound(107.f * modificator + 20)) {
|
|
|
|
if(SetupJumboTaxiSound(75.f * (1.f - modificator))) {
|
|
|
|
SetupJumboEngineSound(maxVolume, 22050);
|
2019-10-25 16:39:26 +00:00
|
|
|
SetupJumboWhineSound(18.f * (1.f - modificator), 14600.f * modificator + 29500);
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-07-18 21:49:21 +00:00
|
|
|
cAudioManager::ProcessJumboTakeOff(CPlane *plane)
|
2019-07-16 15:03:37 +00:00
|
|
|
{
|
2019-08-29 22:44:57 +00:00
|
|
|
float modificator = (PlanePathPosition[plane->m_nPlaneId] - TakeOffPoint) / 300.f;
|
2019-07-18 21:49:21 +00:00
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SetupJumboFlySound((107.f * modificator) + 20) && SetupJumboRumbleSound(maxVolume * (1.f - modificator))) {
|
|
|
|
if(SetupJumboEngineSound(maxVolume, 22050)) SetupJumboWhineSound(18.f * (1.f - modificator), 44100);
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessJumboTaxi()
|
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SetupJumboFlySound(20)) {
|
|
|
|
if(SetupJumboTaxiSound(75)) SetupJumboWhineSound(18, 29500);
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-16 15:03:37 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessLaunderetteScriptObject(uint8 sound)
|
|
|
|
{
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_LAUNDERETTE_LOOP_S:
|
|
|
|
case SCRIPT_SOUND_LAUNDERETTE_LOOP_L:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
2019-09-24 11:33:16 +00:00
|
|
|
float distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
2019-07-16 15:03:37 +00:00
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(45, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-16 15:03:37 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_LAUNDERETTE_LOOP;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_LAUNDERETTE_LOOP);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 45;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(110, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-16 15:03:37 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_LAUNDERETTE_SONG_LOOP;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_LAUNDERETTE_SONG_LOOP);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 110;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessLoopingScriptObject(uint8 sound)
|
|
|
|
{
|
|
|
|
uint8 emittingVolume;
|
|
|
|
float maxDist;
|
|
|
|
float distSquared;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_PARTY_1_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_1_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_2_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_2;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_2);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_2_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_2;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_2);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_3_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_3;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_3);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_3_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_3;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_3);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_4_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_4;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_4);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_4_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_4;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_4);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_5_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_5;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_5);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_5_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_5;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_5);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_6_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_6;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_6);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_6_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_6;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_6);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_7_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_7;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_7);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_7_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_7;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_7);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_8_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_8;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_8);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_8_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_8;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_8);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_9_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_9;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_9);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_9_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_9;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_9);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_10_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_10;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_10);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_10_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_10;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_10);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_11_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_11;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_11);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_11_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_11;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_11);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_12_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_12;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_12);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_12_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_12;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_12);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_13_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_RAGGA;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_RAGGA);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_13_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_RAGGA;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_RAGGA);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_STRIP_CLUB_LOOP_1_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_STRIP_CLUB_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_STRIP_CLUB_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_STRIP_CLUB_LOOP_1_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_STRIP_CLUB_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_STRIP_CLUB_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_STRIP_CLUB_LOOP_2_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_STRIP_CLUB_2;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_STRIP_CLUB_2);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_STRIP_CLUB_LOOP_2_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_STRIP_CLUB_2;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_STRIP_CLUB_2);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_WORK_SHOP_LOOP_S:
|
2019-08-16 18:17:15 +00:00
|
|
|
case SCRIPT_SOUND_WORK_SHOP_LOOP_L: ProcessWorkShopScriptObject(sound); return;
|
2019-07-16 15:03:37 +00:00
|
|
|
case SCRIPT_SOUND_SAWMILL_LOOP_S:
|
2019-08-16 18:17:15 +00:00
|
|
|
case SCRIPT_SOUND_SAWMILL_LOOP_L: ProcessSawMillScriptObject(sound); return;
|
2019-07-16 15:03:37 +00:00
|
|
|
case SCRIPT_SOUND_38:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_DOG_FOOD_FACTORY;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_DOG_FOOD_FACTORY);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 6;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_39:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_DOG_FOOD_FACTORY;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_DOG_FOOD_FACTORY);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 6;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_LAUNDERETTE_LOOP_S:
|
|
|
|
case SCRIPT_SOUND_LAUNDERETTE_LOOP_L: ProcessLaunderetteScriptObject(sound); return;
|
|
|
|
case SCRIPT_SOUND_CHINATOWN_RESTAURANT_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RESTAURANT_CHINATOWN;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RESTAURANT_CHINATOWN);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_CHINATOWN_RESTAURANT_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RESTAURANT_CHINATOWN;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RESTAURANT_CHINATOWN);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_CIPRIANI_RESAURANT_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RESTAURANT_ITALY;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RESTAURANT_ITALY);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_CIPRIANI_RESAURANT_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RESTAURANT_ITALY;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RESTAURANT_ITALY);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_46:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RESTAURANT_GENERIC_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RESTAURANT_GENERIC_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_47:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RESTAURANT_GENERIC_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RESTAURANT_GENERIC_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_MARCO_BISTRO_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RESTAURANT_GENERIC_2;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RESTAURANT_GENERIC_2);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_MARCO_BISTRO_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RESTAURANT_GENERIC_2;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 110;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RESTAURANT_GENERIC_2);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_AIRPORT_LOOP_S:
|
|
|
|
case SCRIPT_SOUND_AIRPORT_LOOP_L: ProcessAirportScriptObject(sound); return;
|
|
|
|
case SCRIPT_SOUND_SHOP_LOOP_S:
|
|
|
|
case SCRIPT_SOUND_SHOP_LOOP_L: ProcessShopScriptObject(sound); return;
|
|
|
|
case SCRIPT_SOUND_CINEMA_LOOP_S:
|
|
|
|
case SCRIPT_SOUND_CINEMA_LOOP_L: ProcessCinemaScriptObject(sound); return;
|
|
|
|
case SCRIPT_SOUND_DOCKS_LOOP_S:
|
2019-08-16 18:17:15 +00:00
|
|
|
case SCRIPT_SOUND_DOCKS_LOOP_L: ProcessDocksScriptObject(sound); return;
|
2019-07-16 15:03:37 +00:00
|
|
|
case SCRIPT_SOUND_HOME_LOOP_S:
|
2019-08-16 18:17:15 +00:00
|
|
|
case SCRIPT_SOUND_HOME_LOOP_L: ProcessHomeScriptObject(sound); return;
|
2019-07-16 15:03:37 +00:00
|
|
|
case SCRIPT_SOUND_FRANKIE_PIANO:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PIANO_BAR_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_PIANO_BAR_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PARTY_1_LOOP:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CLUB_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CLUB_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_1_S:
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_1_L:
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_2_S:
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_2_L:
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_3_S:
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_3_L:
|
|
|
|
case SCRIPT_SOUND_MISTY_SEX_S:
|
|
|
|
case SCRIPT_SOUND_MISTY_SEX_L: ProcessPornCinema(sound); return;
|
|
|
|
case SCRIPT_SOUND_BANK_ALARM_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BANK_ALARM_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 90;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_BANK_ALARM_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 2;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_BANK_ALARM_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BANK_ALARM_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 90;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_BANK_ALARM_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 2;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_POLICE_BALL_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_POLICE_BALL_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_POLICE_BALL_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 2;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_POLICE_BALL_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_POLICE_BALL_1;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_POLICE_BALL_1);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 2;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_RAVE_LOOP_INDUSTRIAL_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RAVE_INDUSTRIAL;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RAVE_INDUSTRIAL);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_RAVE_LOOP_INDUSTRIAL_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RAVE_INDUSTRIAL;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RAVE_INDUSTRIAL);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_POLICE_CELL_BEATING_LOOP_S:
|
2019-10-25 16:39:26 +00:00
|
|
|
case SCRIPT_SOUND_POLICE_CELL_BEATING_LOOP_L: ProcessPoliceCellBeatingScriptObject(sound); return;
|
2019-07-16 15:03:37 +00:00
|
|
|
case SCRIPT_SOUND_RAVE_1_LOOP_S:
|
|
|
|
case SCRIPT_SOUND_RAVE_2_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RAVE_COMMERCIAL;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_RAVE_1_LOOP_L:
|
|
|
|
case SCRIPT_SOUND_RAVE_2_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RAVE_COMMERCIAL;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_RAVE_3_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RAVE_SUBURBAN;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RAVE_SUBURBAN);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_RAVE_3_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RAVE_SUBURBAN;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_RAVE_SUBURBAN);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PRETEND_FIRE_LOOP:
|
|
|
|
maxDist = 2500.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 50.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CAR_ON_FIRE;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 80;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_CAR_ON_FIRE);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.field_16 = 8;
|
|
|
|
m_sQueueSample.field_76 = 10;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
break;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
|
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = Sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(emittingVolume, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-16 15:03:37 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVolume;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-16 15:03:37 +00:00
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessMissionAudio()
|
|
|
|
{
|
|
|
|
float dist;
|
|
|
|
uint8 emittingVol;
|
|
|
|
uint8 pan;
|
|
|
|
float distSquared;
|
|
|
|
CVector vec;
|
|
|
|
|
|
|
|
static uint8 nCheckPlayingDelay = 0;
|
|
|
|
static uint8 nFramesUntilFailedLoad = 0;
|
|
|
|
static uint8 nFramesForPretendPlaying = 0;
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_bIsInitialised) {
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_sMissionAudio.m_nSampleIndex != 3033) {
|
2019-08-27 18:50:59 +00:00
|
|
|
switch(m_sMissionAudio.m_bLoadingStatus) {
|
2019-08-16 18:17:15 +00:00
|
|
|
case 0:
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.PreloadStreamedFile(m_sMissionAudio.m_nSampleIndex, 1);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sMissionAudio.m_bLoadingStatus = 1;
|
|
|
|
nFramesUntilFailedLoad = 0;
|
|
|
|
return;
|
|
|
|
case 1:
|
2019-08-27 18:50:59 +00:00
|
|
|
if(!m_sMissionAudio.m_bIsPlayed) return;
|
2019-08-16 18:17:15 +00:00
|
|
|
if(g_bMissionAudioLoadFailed) {
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_bTimerJustReset) {
|
2019-08-16 18:17:15 +00:00
|
|
|
ClearMissionAudio();
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.StopStreamedFile(1);
|
2019-08-16 18:17:15 +00:00
|
|
|
nFramesForPretendPlaying = 0;
|
|
|
|
nCheckPlayingDelay = 0;
|
|
|
|
nFramesUntilFailedLoad = 0;
|
|
|
|
} else if(!m_bUserPause) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(++nFramesForPretendPlaying < 120) {
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sMissionAudio.m_bPlayStatus = 1;
|
2019-08-16 18:17:15 +00:00
|
|
|
} else {
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sMissionAudio.m_bPlayStatus = 2;
|
|
|
|
m_sMissionAudio.m_nSampleIndex = 3033;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(m_sMissionAudio.m_bPlayStatus) {
|
|
|
|
if(m_sMissionAudio.m_bPlayStatus != 1) return;
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_bTimerJustReset) {
|
2019-08-16 18:17:15 +00:00
|
|
|
ClearMissionAudio();
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.StopStreamedFile(1);
|
2019-08-16 18:17:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(MissionScriptAudioUsesPoliceChannel(
|
|
|
|
m_sMissionAudio.m_nSampleIndex)) {
|
|
|
|
if(!m_bUserPause) {
|
|
|
|
if(nCheckPlayingDelay) {
|
|
|
|
--nCheckPlayingDelay;
|
2019-10-25 16:39:26 +00:00
|
|
|
} else if(GetMissionScriptPoliceAudioPlayingStatus() ==
|
|
|
|
2 ||
|
|
|
|
--m_sMissionAudio.field_24) {
|
|
|
|
m_sMissionAudio.m_bPlayStatus = 2;
|
|
|
|
m_sMissionAudio.m_nSampleIndex = 3033;
|
|
|
|
SampleManager.StopStreamedFile(1);
|
|
|
|
m_sMissionAudio.field_24 = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if(m_sMissionAudio.field_22) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SampleManager.IsStreamPlaying(1) || m_bUserPause ||
|
|
|
|
m_bPreviousUserPause) {
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_bUserPause)
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.PauseStream(1, 1);
|
2019-08-16 18:17:15 +00:00
|
|
|
else
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.PauseStream(0, 1);
|
2019-08-16 18:17:15 +00:00
|
|
|
} else {
|
|
|
|
m_sMissionAudio.m_bPlayStatus = 2;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sMissionAudio.m_nSampleIndex = 3033;
|
|
|
|
SampleManager.StopStreamedFile(1);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sMissionAudio.field_24 = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(m_bUserPause) return;
|
|
|
|
if(nCheckPlayingDelay--) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(!SampleManager.IsStreamPlaying(1)) return;
|
2019-08-16 18:17:15 +00:00
|
|
|
nCheckPlayingDelay = 0;
|
|
|
|
}
|
|
|
|
m_sMissionAudio.field_22 = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(MissionScriptAudioUsesPoliceChannel(
|
|
|
|
m_sMissionAudio.m_nSampleIndex)) {
|
2019-10-25 16:39:26 +00:00
|
|
|
SetMissionScriptPoliceAudio(m_sMissionAudio.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
} else {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_bUserPause) SampleManager.PauseStream(1, 1);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_sMissionAudio.field_12) {
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.SetStreamedVolumeAndPan(80, 63, 1, 1);
|
2019-08-16 18:17:15 +00:00
|
|
|
} else {
|
2019-10-25 16:39:26 +00:00
|
|
|
distSquared =
|
|
|
|
GetDistanceSquared(&m_sMissionAudio.m_vecPos);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(distSquared >= 2500.f) {
|
|
|
|
emittingVol = 0;
|
|
|
|
pan = 63;
|
|
|
|
} else {
|
|
|
|
dist = Sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
emittingVol = ComputeVolume(80, 50.0f, dist);
|
|
|
|
TranslateEntity(&m_sMissionAudio.m_vecPos,
|
|
|
|
&vec);
|
|
|
|
pan = ComputePan(50.f, &vec);
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.SetStreamedVolumeAndPan(emittingVol, pan,
|
|
|
|
1, 1);
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.StartPreloadedStreamedFile(1);
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
m_sMissionAudio.m_bPlayStatus = 1;
|
|
|
|
nCheckPlayingDelay = 30;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
2019-10-25 16:39:26 +00:00
|
|
|
if(++nFramesUntilFailedLoad >= 90) {
|
2019-08-16 18:17:15 +00:00
|
|
|
nFramesForPretendPlaying = 0;
|
|
|
|
g_bMissionAudioLoadFailed = 1;
|
|
|
|
nFramesUntilFailedLoad = 0;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sMissionAudio.m_bLoadingStatus = 1;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-02 15:43:40 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessModelCarEngine(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
cAudioManager *v2;
|
|
|
|
CAutomobile *automobile;
|
|
|
|
float allowedVelocity;
|
|
|
|
int32 emittingVol;
|
|
|
|
float velocityChange;
|
|
|
|
|
|
|
|
v2 = this;
|
|
|
|
if(params->m_fDistance < 900.f) {
|
|
|
|
automobile = (CAutomobile *)params->m_pVehicle;
|
|
|
|
if(automobile->bEngineOn) {
|
|
|
|
if(automobile->m_nWheelsOnGround) {
|
|
|
|
velocityChange = Abs(params->m_fVelocityChange);
|
|
|
|
} else {
|
|
|
|
if(automobile->m_nDriveWheelsOnGround)
|
2019-10-25 16:39:26 +00:00
|
|
|
automobile->m_fGasPedalAudio = automobile->m_fGasPedalAudio * 0.4f;
|
|
|
|
velocityChange = automobile->m_fGasPedalAudio * params->m_pTransmission->fMaxVelocity;
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
if(velocityChange > 0.001f) {
|
|
|
|
allowedVelocity = 0.5f * params->m_pTransmission->fMaxVelocity;
|
|
|
|
if(velocityChange < allowedVelocity)
|
|
|
|
emittingVol = (90.f * velocityChange / allowedVelocity);
|
|
|
|
else
|
|
|
|
emittingVol = 90;
|
|
|
|
if(emittingVol) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(emittingVol, 30.f, m_sQueueSample.m_fDistance);
|
2019-08-02 15:43:40 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 2;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_REMOTE_CONTROLLED_CAR;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-25 16:39:26 +00:00
|
|
|
(11025.f * velocityChange / params->m_pTransmission->fMaxVelocity +
|
2019-08-02 15:43:40 +00:00
|
|
|
11025.f);
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(
|
|
|
|
m_sQueueSample.m_nSampleIndex);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 3.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
void
|
2019-07-31 15:54:18 +00:00
|
|
|
cAudioManager::ProcessOneShotScriptObject(uint8 sound)
|
|
|
|
{
|
|
|
|
CPlayerPed *playerPed;
|
|
|
|
uint8 emittingVolume;
|
|
|
|
float maxDist;
|
|
|
|
float distSquared;
|
|
|
|
|
|
|
|
cPedParams male;
|
|
|
|
cPedParams female;
|
|
|
|
|
|
|
|
static uint8 iSound = 0;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_INJURED_PED_MALE_OUCH_S:
|
|
|
|
case SCRIPT_SOUND_INJURED_PED_MALE_OUCH_L:
|
|
|
|
male.m_pPed = nil;
|
|
|
|
male.m_bDistanceCalculated = 0;
|
|
|
|
male.m_fDistance = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
2019-08-16 18:17:15 +00:00
|
|
|
SetupPedComments(&male, SOUND_INJURED_PED_MALE_OUCH);
|
2019-07-31 15:54:18 +00:00
|
|
|
return;
|
|
|
|
case SCRIPT_SOUND_INJURED_PED_FEMALE_OUCH_S:
|
|
|
|
case SCRIPT_SOUND_INJURED_PED_FEMALE_OUCH_L:
|
|
|
|
female.m_pPed = nil;
|
|
|
|
female.m_bDistanceCalculated = 0;
|
|
|
|
female.m_fDistance = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
2019-08-16 18:17:15 +00:00
|
|
|
SetupPedComments(&female, SOUND_INJURED_PED_FEMALE);
|
2019-07-31 15:54:18 +00:00
|
|
|
return;
|
|
|
|
case SCRIPT_SOUND_GATE_START_CLUNK:
|
|
|
|
case SCRIPT_SOUND_GATE_STOP_CLUNK:
|
|
|
|
maxDist = 1600.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 40.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_COL_GATE;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
if(sound == SCRIPT_SOUND_GATE_START_CLUNK)
|
|
|
|
m_sQueueSample.m_nFrequency = 10600;
|
|
|
|
else
|
|
|
|
m_sQueueSample.m_nFrequency = 9000;
|
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
emittingVolume = RandomDisplacement(10) + 50;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_BULLET_HIT_GROUND_1:
|
|
|
|
case SCRIPT_SOUND_BULLET_HIT_GROUND_2:
|
|
|
|
case SCRIPT_SOUND_BULLET_HIT_GROUND_3:
|
|
|
|
maxDist = 2500.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 50.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = m_anRandomTable[iSound % 5] % 3 + SFX_BULLET_WALL_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 5);
|
|
|
|
m_sQueueSample.field_16 = 9;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
emittingVolume = m_anRandomTable[2] % 20 + 90;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_110:
|
|
|
|
case SCRIPT_SOUND_111:
|
2019-08-02 15:43:40 +00:00
|
|
|
if(SampleManager.IsSampleBankLoaded(0) != 1) return;
|
2019-07-31 15:54:18 +00:00
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_TRAIN_STATION_ANNOUNCE;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVolume = maxVolume;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_TRAIN_STATION_ANNOUNCE);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 0;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PAYPHONE_RINGING:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PHONE_RING;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 80;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_PHONE_RING);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_GLASS_BREAK_L:
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_GLASS_SMASH;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 70;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_GLASS_SMASH);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_GLASS_BREAK_S:
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_GLASS_SMASH;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 60;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_GLASS_SMASH);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_GLASS_CRACK:
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_GLASS_CRACK;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
emittingVolume = 70;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_GLASS_CRACK);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_GLASS_LIGHT_BREAK:
|
|
|
|
maxDist = 3025.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 55.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = (m_anRandomTable[4] & 3) + SFX_GLASS_SHARD_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(2000) + 19000;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 9;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
emittingVolume = RandomDisplacement(11) + 25;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_BOX_DESTROYED_1:
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_WOODEN_BOX_SMASH;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(1500) + 18600;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
emittingVolume = m_anRandomTable[2] % 20 + 80;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_BOX_DESTROYED_2:
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_CARDBOARD_BOX_SMASH;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(1500) + 18600;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
emittingVolume = m_anRandomTable[2] % 20 + 80;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_METAL_COLLISION:
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = m_anRandomTable[3] % 5 + SFX_COL_CAR_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 4);
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
emittingVolume = m_anRandomTable[2] % 30 + 70;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_TIRE_COLLISION:
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_TYRE_BUMP;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 4);
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
emittingVolume = m_anRandomTable[2] % 30 + 60;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_GUNSHELL_DROP:
|
|
|
|
playerPed = FindPlayerPed();
|
|
|
|
if(playerPed) {
|
|
|
|
switch(playerPed->m_nSurfaceTouched) {
|
|
|
|
case SURFACE_GRASS:
|
|
|
|
case SURFACE_DIRT:
|
|
|
|
case SURFACE_DIRTTRACK:
|
|
|
|
case SURFACE_SCAFFOLD:
|
|
|
|
case SURFACE_FLESH:
|
|
|
|
case SURFACE_SAND:
|
|
|
|
case SURFACE_TIRE:
|
|
|
|
case SURFACE_HEDGE:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BULLET_SHELL_HIT_GROUND_2;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(500) + 11000;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 18;
|
|
|
|
maxDist = 400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 20.0f;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
emittingVolume = m_anRandomTable[2] % 20 + 30;
|
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = Sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(emittingVolume, m_sQueueSample.m_fSoundIntensity,
|
|
|
|
m_sQueueSample.m_fDistance);
|
2019-07-31 15:54:18 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVolume;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
case SURFACE_PUDDLE: return;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BULLET_SHELL_HIT_GROUND_1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(750) + 18000;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 15;
|
|
|
|
maxDist = 400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 20.0f;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
emittingVolume = m_anRandomTable[2] % 20 + 30;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_GUNSHELL_DROP_SOFT:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BULLET_SHELL_HIT_GROUND_2;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(500) + 11000;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 18;
|
|
|
|
maxDist = 400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 20.0f;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
emittingVolume = m_anRandomTable[2] % 20 + 30;
|
|
|
|
break;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
|
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = Sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(emittingVolume, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-31 15:54:18 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVolume;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessPed(CPhysical *ped)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
2019-07-31 15:54:18 +00:00
|
|
|
cPedParams params;
|
|
|
|
|
|
|
|
params.m_pPed = 0;
|
|
|
|
params.m_bDistanceCalculated = 0;
|
|
|
|
params.m_fDistance = 0.0f;
|
|
|
|
|
|
|
|
m_sQueueSample.m_vecPos = ped->GetPosition();
|
|
|
|
|
|
|
|
params.m_bDistanceCalculated = 0;
|
|
|
|
params.m_pPed = (CPed *)ped;
|
|
|
|
params.m_fDistance = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(ped->m_modelIndex == MI_FATMALE02) ProcessPedHeadphones(¶ms);
|
|
|
|
ProcessPedOneShots(¶ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessPedHeadphones(cPedParams *params)
|
|
|
|
{
|
|
|
|
CPed *ped;
|
|
|
|
CVehicle *veh;
|
|
|
|
uint8 emittingVol;
|
|
|
|
|
|
|
|
if(params->m_fDistance < 49.f) {
|
|
|
|
ped = params->m_pPed;
|
2019-08-27 18:50:59 +00:00
|
|
|
if(!ped->bIsAimingGun || ped->m_bodyPartBleeding != 2) {
|
2019-07-31 15:54:18 +00:00
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
if(ped->bInVehicle && ped->m_nPedState == PED_DRIVING) {
|
|
|
|
emittingVol = 10;
|
|
|
|
veh = ped->m_pMyVehicle;
|
|
|
|
if(veh && veh->m_type == 0) {
|
|
|
|
for(int32 i = 2; i < 6; i++) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(!veh->IsDoorClosed((eDoors)i) || veh->IsDoorMissing((eDoors)i)) {
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = 42;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
emittingVol = 42;
|
|
|
|
}
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 7.f, m_sQueueSample.m_fDistance);
|
2019-07-31 15:54:18 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 64;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_HEADPHONES;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_HEADPHONES);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd =
|
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_48 = 4.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 7.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 5;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
#if 1
|
|
|
|
WRAPPER
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessPedOneShots(cPedParams *params)
|
|
|
|
{
|
|
|
|
EAXJMP(0x56F650);
|
|
|
|
}
|
|
|
|
#else
|
2019-07-31 15:54:18 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessPedOneShots(cPedParams *params)
|
|
|
|
{
|
|
|
|
uint8 emittingVol;
|
|
|
|
int32 sampleIndex;
|
|
|
|
|
|
|
|
CPed *ped = params->m_pPed;
|
|
|
|
|
|
|
|
char processed;
|
|
|
|
int16 sound;
|
|
|
|
char noReflection;
|
|
|
|
CWeapon *weapon;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
static uint8 iSound = 21;
|
|
|
|
|
|
|
|
weapon = nil;
|
2019-10-27 17:39:17 +00:00
|
|
|
for(uint32 i = 0; i < m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_AudioEvents; i++) {
|
2019-07-31 15:54:18 +00:00
|
|
|
noReflection = 0;
|
|
|
|
processed = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
sound = m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_awAudioEvent[i];
|
2019-07-31 15:54:18 +00:00
|
|
|
switch(sound) {
|
|
|
|
case SOUND_STEP_START:
|
|
|
|
case SOUND_STEP_END:
|
|
|
|
if(!params->m_pPed->bIsLooking) {
|
2019-10-25 16:39:26 +00:00
|
|
|
emittingVol = m_anRandomTable[3] % 15 + 45;
|
|
|
|
if(FindPlayerPed() != m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_pEntity)
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol >>= 1;
|
|
|
|
maxDist = 400.f;
|
|
|
|
switch(params->m_pPed->m_nSurfaceTouched) {
|
|
|
|
case SURFACE_GRASS:
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = m_anRandomTable[1] % 5 + SFX_FOOTSTEP_GRASS_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SURFACE_DIRT:
|
|
|
|
case SURFACE_DIRTTRACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = m_anRandomTable[4] % 5 + SFX_FOOTSTEP_GRAVEL_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SURFACE_METAL6:
|
|
|
|
case SURFACE_METAL_DOOR:
|
|
|
|
case SURFACE_BILLBOARD:
|
|
|
|
case SURFACE_STEEL:
|
|
|
|
case SURFACE_METAL_POLE:
|
|
|
|
case SURFACE_STREET_LIGHT:
|
|
|
|
case SURFACE_METAL14:
|
|
|
|
case SURFACE_METAL15:
|
|
|
|
case SURFACE_METAL_FENCE:
|
|
|
|
case SURFACE_METAL27:
|
|
|
|
case SURFACE_METAL28:
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = m_anRandomTable[0] % 5 + SFX_FOOTSTEP_METAL_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SURFACE_SAND:
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = (m_anRandomTable[4] & 3) + SFX_FOOTSTEP_SAND_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SURFACE_PUDDLE:
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = (m_anRandomTable[3] & 3) + SFX_FOOTSTEP_WATER_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SURFACE_WOOD:
|
|
|
|
case SURFACE_WOOD_BOX:
|
|
|
|
case SURFACE_WOOD_PLANK:
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = m_anRandomTable[2] % 5 + SFX_FOOTSTEP_WOOD_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SURFACE_HEDGE:
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = m_anRandomTable[2] % 5 + SFX_COL_VEG_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
default:
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = m_anRandomTable[2] % 5 + SFX_FOOTSTEP_CONCRETE_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
m_sQueueSample.m_nSampleIndex = sampleIndex;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter =
|
2019-10-25 16:39:26 +00:00
|
|
|
m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_awAudioEvent[i] - 28;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency / 17);
|
2019-07-31 15:54:18 +00:00
|
|
|
switch(params->m_pPed->m_nMoveState) {
|
|
|
|
case 2:
|
|
|
|
emittingVol >>= 2;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 9 * m_sQueueSample.m_nFrequency / 10;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
emittingVol >>= 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 11 * m_sQueueSample.m_nFrequency / 10;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
2019-10-25 16:39:26 +00:00
|
|
|
case 4: m_sQueueSample.m_nFrequency = 12 * m_sQueueSample.m_nFrequency / 10; break;
|
2019-07-31 15:54:18 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 20.0f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SOUND_FALL_LAND:
|
|
|
|
case SOUND_FALL_COLLAPSE:
|
|
|
|
if(!ped->bIsLooking) {
|
|
|
|
maxDist = 900.f;
|
|
|
|
emittingVol = m_anRandomTable[3] % 20 + 80;
|
|
|
|
if(ped->m_nSurfaceTouched == SURFACE_PUDDLE) {
|
|
|
|
m_sQueueSample.m_nSampleIndex =
|
2019-10-26 23:06:10 +00:00
|
|
|
(m_anRandomTable[3] & 3) + SFX_FOOTSTEP_WATER_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
} else if(sound == SOUND_FALL_LAND) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BODY_LAND;
|
2019-07-31 15:54:18 +00:00
|
|
|
} else {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BODY_LAND_AND_FALL;
|
2019-07-31 15:54:18 +00:00
|
|
|
}
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency / 17);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 2;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
}
|
|
|
|
break;
|
2019-08-02 15:43:40 +00:00
|
|
|
case SOUND_FIGHT_PUNCH_33:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 18000;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_KICK_34:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 16500;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_HEADBUTT_35:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_1;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 20000;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_PUNCH_36:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_2;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 18000;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_PUNCH_37:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_2;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 16500;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_CLOSE_PUNCH_38:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_2;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 20000;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_PUNCH_39:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_4;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 18000;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_PUNCH_OR_KICK_BELOW_40:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_4;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 16500;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_PUNCH_41:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_4;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 20000;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_PUNCH_FROM_BEHIND_42:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_5;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 18000;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_KNEE_OR_KICK_43:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_5;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 16500;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-08-02 15:43:40 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
|
|
|
case SOUND_FIGHT_KICK_44:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FIGHT_5;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 20000;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
|
|
|
++iSound;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 26 + 100;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case SOUND_WEAPON_BAT_ATTACK:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BAT_HIT_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(2000) + 22000;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
emittingVol = m_anRandomTable[2] % 20 + 100;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
if(m_bDynamicAcousticModelingStatus)
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
else
|
|
|
|
noReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case SOUND_WEAPON_SHOT_FIRED:
|
|
|
|
weapon = &ped->m_weapons[ped->m_currentWeapon];
|
|
|
|
switch(weapon->m_eWeaponType) {
|
|
|
|
case WEAPONTYPE_COLT45:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_COLT45_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_COLT45_LEFT);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 5);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 50.0f;
|
|
|
|
maxDist = 2500.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
emittingVol = m_anRandomTable[1] % 10 + 90;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
if(m_bDynamicAcousticModelingStatus)
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
else
|
|
|
|
noReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_UZI:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_UZI_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_UZI_LEFT);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 5);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[3] % 15 + 70;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_SHOTGUN:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SHOTGUN_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_SHOTGUN_LEFT);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 5);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
emittingVol = m_anRandomTable[2] % 10 + 100;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
if(m_bDynamicAcousticModelingStatus)
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
else
|
|
|
|
noReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_AK47:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_AK47_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_AK47_LEFT);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 5);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[1] % 15 + 70;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_M16:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_M16_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_M16_LEFT);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 5);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[4] % 15 + 70;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_SNIPERRIFLE:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SNIPER_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_SNIPER_LEFT);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 5);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
emittingVol = m_anRandomTable[4] % 10 + 110;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
if(m_bDynamicAcousticModelingStatus)
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
else
|
|
|
|
noReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_ROCKETLAUNCHER:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_ROCKET_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_ROCKET_LEFT);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 5);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 90.0f;
|
|
|
|
maxDist = 8100.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
emittingVol = m_anRandomTable[0] % 20 + 80;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
if(m_bDynamicAcousticModelingStatus)
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
else
|
|
|
|
noReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_FLAMETHROWER:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FLAMETHROWER_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 9;
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = 90;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
(10 * m_sQueueSample.m_nEntityIndex & 2047) +
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_FLAMETHROWER_LEFT);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 4.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd =
|
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bEmittingVolume = 90;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 6;
|
|
|
|
if(m_bDynamicAcousticModelingStatus)
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
else
|
|
|
|
noReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
|
|
|
default: continue;
|
2019-07-31 15:54:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case SOUND_WEAPON_RELOAD:
|
|
|
|
weapon = &ped->m_weapons[ped->m_currentWeapon];
|
|
|
|
switch(weapon->m_eWeaponType) {
|
|
|
|
case WEAPONTYPE_COLT45:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PISTOL_RELOAD;
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = 75;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_PISTOL_RELOAD) +
|
2019-10-25 16:39:26 +00:00
|
|
|
RandomDisplacement(300);
|
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(300);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 75;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_UZI:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_M16_RELOAD;
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = 75;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
|
|
|
m_sQueueSample.m_nFrequency = 39243;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(300);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 75;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_SHOTGUN:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_AK47_RELOAD;
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = 75;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
|
|
|
m_sQueueSample.m_nFrequency = 30290;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(300);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 75;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_AK47:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_AK47_RELOAD;
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = 75;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_AK47_RELOAD);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(300);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 75;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_M16:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_M16_RELOAD;
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = 75;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_M16_RELOAD);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(300);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 75;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_SNIPERRIFLE:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RIFLE_RELOAD;
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = 75;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_RIFLE_RELOAD);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(300);
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 75;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case WEAPONTYPE_ROCKETLAUNCHER:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_ROCKET_RELOAD;
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = 75;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_ROCKET_RELOAD);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(300);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 75;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
|
|
|
default: continue;
|
2019-07-31 15:54:18 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SOUND_WEAPON_AK47_BULLET_ECHO:
|
|
|
|
case SOUND_WEAPON_UZI_BULLET_ECHO:
|
|
|
|
case SOUND_WEAPON_M16_BULLET_ECHO:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_UZI_END_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_UZI_END_LEFT);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 4);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
emittingVol = m_anRandomTable[4] % 10 + 40;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
if(m_bDynamicAcousticModelingStatus)
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
else
|
|
|
|
noReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case SOUND_WEAPON_FLAMETHROWER_FIRE:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_FLAMETHROWER_START_LEFT;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_FLAMETHROWER_START_LEFT);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 4);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 4.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
|
|
|
maxDist = 3600.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
emittingVol = 70;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 70;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case SOUND_WEAPON_HIT_PED:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BULLET_PED;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_BULLET_PED);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 3);
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 7;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[0] % 20 + 90;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
2019-07-31 15:54:18 +00:00
|
|
|
case SOUND_SPLASH:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SPLASH_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-07-31 15:54:18 +00:00
|
|
|
processed = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(1400) + 20000;
|
2019-07-31 15:54:18 +00:00
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 40.0f;
|
|
|
|
maxDist = 1600.f;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
emittingVol = m_anRandomTable[2] % 30 + 70;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SetupPedComments(params, sound);
|
|
|
|
continue;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(processed && iSound > 60) iSound = 21;
|
2019-07-31 15:54:18 +00:00
|
|
|
if(params->m_fDistance < maxDist) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, m_sQueueSample.m_fSoundIntensity,
|
|
|
|
m_sQueueSample.m_fDistance);
|
2019-07-31 15:54:18 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
if(noReflection) {
|
|
|
|
if(0.2f * m_sQueueSample.m_fSoundIntensity >
|
|
|
|
m_sQueueSample.m_fDistance) {
|
|
|
|
noReflection = 0;
|
|
|
|
} else {
|
|
|
|
m_sQueueSample.m_bIsDistant = 1;
|
|
|
|
m_sQueueSample.m_bOffset = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
if(noReflection) {
|
|
|
|
m_sQueueSample.m_bOffset = 127;
|
|
|
|
++m_sQueueSample.m_nSampleIndex;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_asAudioEntities[m_sQueueSample.m_nEntityIndex].m_awAudioEvent[i] !=
|
|
|
|
47 ||
|
|
|
|
weapon->m_eWeaponType != WEAPONTYPE_FLAMETHROWER) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = iSound++;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(iSound > 60) iSound = 21;
|
2019-07-31 15:54:18 +00:00
|
|
|
} else {
|
2019-08-16 18:17:15 +00:00
|
|
|
++m_sQueueSample.m_counter;
|
2019-07-31 15:54:18 +00:00
|
|
|
}
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
#endif
|
2019-07-08 19:44:32 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessPhysical(int32 id)
|
|
|
|
{
|
2019-07-16 15:03:37 +00:00
|
|
|
CPhysical *entity = (CPhysical *)m_asAudioEntities[id].m_pEntity;
|
2019-07-08 19:44:32 +00:00
|
|
|
if(entity) {
|
|
|
|
switch(entity->m_type & 7) {
|
2019-10-25 16:39:26 +00:00
|
|
|
case ENTITY_TYPE_VEHICLE: ProcessVehicle((CVehicle *)m_asAudioEntities[id].m_pEntity); break;
|
|
|
|
case ENTITY_TYPE_PED: ProcessPed((CPhysical *)m_asAudioEntities[id].m_pEntity); break;
|
2019-07-08 19:44:32 +00:00
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-08-02 15:43:40 +00:00
|
|
|
cAudioManager::ProcessPlane(cVehicleParams *params)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
2019-08-02 15:43:40 +00:00
|
|
|
switch(params->m_nIndex) {
|
|
|
|
case AIRTRAIN: ProcessJumbo(params); break;
|
|
|
|
case DEADDODO: ProcessCesna(params); break;
|
|
|
|
default: debug("Plane Model Id is %d\n, ", params->m_pVehicle->m_modelIndex); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct tVehicleSampleData {
|
2019-10-26 23:06:10 +00:00
|
|
|
eSfxSample m_nAccelerationSampleIndex;
|
2019-08-02 15:43:40 +00:00
|
|
|
char m_bEngineSoundType;
|
|
|
|
char gap_5[3];
|
2019-10-26 23:06:10 +00:00
|
|
|
eSfxSample m_nHornSample;
|
2019-08-16 18:17:15 +00:00
|
|
|
int32 m_nHornFrequency;
|
2019-08-02 15:43:40 +00:00
|
|
|
char m_nSirenOrAlarmSample;
|
|
|
|
int m_nSirenOrAlarmFrequency;
|
|
|
|
char m_bDoorType;
|
|
|
|
char gap_25[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
int32 *CSWTCH_554 = (int32 *)0x606A50;
|
2019-09-24 11:33:16 +00:00
|
|
|
tVehicleSampleData *CarSounds = (tVehicleSampleData *)0x606204;
|
2019-08-02 15:43:40 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessPlayersVehicleEngine(cVehicleParams *params, CAutomobile *automobile)
|
|
|
|
{
|
|
|
|
cTransmission *transmission;
|
|
|
|
float velocityChange;
|
|
|
|
float relativeVelocityChange;
|
|
|
|
float accelerationMultipler;
|
|
|
|
uint8 wheelInUseCounter;
|
|
|
|
uint8 i;
|
|
|
|
float time;
|
|
|
|
int baseFreq;
|
|
|
|
uint8 vol;
|
|
|
|
int gearNr;
|
2019-08-16 18:17:15 +00:00
|
|
|
int32 freq;
|
2019-08-02 15:43:40 +00:00
|
|
|
|
|
|
|
int freqModifier;
|
|
|
|
int soundOffset;
|
|
|
|
uint8 engineSoundType;
|
|
|
|
int32 accelerateState;
|
|
|
|
bool channelUsed;
|
|
|
|
char lostTraction;
|
|
|
|
bool processedAccelSampleStopped;
|
|
|
|
uint8 currentGear;
|
|
|
|
float gasPedalAudio;
|
|
|
|
CVector pos;
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
static int16 LastAccel = 0;
|
|
|
|
static int16 LastBrake = 0;
|
2019-08-02 15:43:40 +00:00
|
|
|
static uint8 CurrentPretendGear = 1;
|
|
|
|
static bool bLostTractionLastFrame = 0;
|
|
|
|
static bool bHandbrakeOnLastFrame = 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
static int32 nCruising = 0;
|
|
|
|
static bool bAccelSampleStopped = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
|
|
|
|
lostTraction = 0;
|
|
|
|
processedAccelSampleStopped = 0;
|
|
|
|
if(bPlayerJustEnteredCar) {
|
|
|
|
bAccelSampleStopped = 1;
|
|
|
|
bPlayerJustEnteredCar = 0;
|
|
|
|
nCruising = 0;
|
|
|
|
LastAccel = 0;
|
|
|
|
bLostTractionLastFrame = 0;
|
|
|
|
LastBrake = 0;
|
|
|
|
bHandbrakeOnLastFrame = 0;
|
|
|
|
CurrentPretendGear = 1;
|
|
|
|
}
|
|
|
|
if(CReplay::IsPlayingBack()) {
|
2019-08-27 18:50:59 +00:00
|
|
|
accelerateState = 255.f * max(0.0f, min(1.0f, automobile->m_fGasPedal));
|
2019-08-02 15:43:40 +00:00
|
|
|
} else {
|
|
|
|
accelerateState = Pads->GetAccelerate();
|
|
|
|
}
|
|
|
|
channelUsed = SampleManager.GetChannelUsedFlag(m_bActiveSamples);
|
|
|
|
transmission = params->m_pTransmission;
|
|
|
|
velocityChange = params->m_fVelocityChange;
|
|
|
|
relativeVelocityChange = 2.0f * velocityChange / transmission->fMaxVelocity;
|
|
|
|
|
|
|
|
accelerationMultipler = 0.0f;
|
|
|
|
|
|
|
|
if(relativeVelocityChange > 1.0f) accelerationMultipler = relativeVelocityChange;
|
|
|
|
|
|
|
|
gasPedalAudio = accelerationMultipler;
|
|
|
|
currentGear = params->m_pVehicle->m_nCurrentGear;
|
|
|
|
if(transmission->nDriveType == '4') {
|
|
|
|
wheelInUseCounter = 0;
|
|
|
|
i = 0;
|
|
|
|
do {
|
|
|
|
if(automobile->m_aWheelState[i]) ++wheelInUseCounter;
|
|
|
|
++i;
|
2019-10-25 16:39:26 +00:00
|
|
|
} while(i < 4);
|
|
|
|
if(wheelInUseCounter > 2) lostTraction = 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
} else if(transmission->nDriveType == 'F') {
|
|
|
|
if((automobile->m_aWheelState[0] || automobile->m_aWheelState[2]) &&
|
|
|
|
(automobile->m_aWheelState[1] || automobile->m_aWheelState[3])) {
|
|
|
|
lostTraction = 1;
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
} else if(transmission->nDriveType == 'R' && (automobile->m_aWheelState[1] || automobile->m_aWheelState[3])) {
|
2019-08-02 15:43:40 +00:00
|
|
|
lostTraction = 1;
|
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
if(0.0f != velocityChange) {
|
2019-08-02 15:43:40 +00:00
|
|
|
time = params->m_pVehicle->m_vecMoveSpeed.z / velocityChange;
|
|
|
|
if(time <= 0.0f) {
|
2019-08-27 18:50:59 +00:00
|
|
|
freqModifier = max(-0.2f, time) * -15000.f;
|
2019-08-02 15:43:40 +00:00
|
|
|
} else {
|
2019-08-27 18:50:59 +00:00
|
|
|
freqModifier = -(min(0.2f, time) * 15000.f);
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
if(params->m_fVelocityChange < -0.001f) freqModifier = -freqModifier;
|
2019-08-02 15:43:40 +00:00
|
|
|
} else {
|
|
|
|
freqModifier = 0;
|
|
|
|
}
|
2019-09-24 11:33:16 +00:00
|
|
|
engineSoundType = CarSounds[params->m_nIndex].m_bEngineSoundType;
|
2019-08-02 15:43:40 +00:00
|
|
|
soundOffset = 3 * (engineSoundType - 1);
|
|
|
|
if(accelerateState <= 0) {
|
|
|
|
if(params->m_fVelocityChange < -0.001f) {
|
|
|
|
if(channelUsed) {
|
|
|
|
SampleManager.StopChannel(m_bActiveSamples);
|
|
|
|
bAccelSampleStopped = 1;
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
if(!automobile->m_nWheelsOnGround || automobile->bIsHandbrakeOn || lostTraction) {
|
2019-08-02 15:43:40 +00:00
|
|
|
gasPedalAudio = automobile->m_fGasPedalAudio;
|
|
|
|
} else {
|
2019-08-16 18:17:15 +00:00
|
|
|
gasPedalAudio =
|
2019-10-25 16:39:26 +00:00
|
|
|
min(1.0f, params->m_fVelocityChange / params->m_pTransmission->fMaxReverseVelocity);
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
2019-08-27 18:50:59 +00:00
|
|
|
gasPedalAudio = max(0.0f, gasPedalAudio);
|
2019-08-02 15:43:40 +00:00
|
|
|
automobile->m_fGasPedalAudio = gasPedalAudio;
|
|
|
|
} else if(LastAccel > 0) {
|
|
|
|
if(channelUsed) {
|
|
|
|
SampleManager.StopChannel(m_bActiveSamples);
|
|
|
|
bAccelSampleStopped = 1;
|
|
|
|
}
|
|
|
|
nCruising = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(!automobile->m_nWheelsOnGround || automobile->bIsHandbrakeOn || lostTraction ||
|
|
|
|
params->m_fVelocityChange >= 0.01f && automobile->m_fGasPedalAudio > 0.2f) {
|
2019-08-02 15:43:40 +00:00
|
|
|
automobile->m_fGasPedalAudio = automobile->m_fGasPedalAudio * 0.6f;
|
|
|
|
gasPedalAudio = automobile->m_fGasPedalAudio;
|
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
if(gasPedalAudio > 0.05f) {
|
|
|
|
freq = (5000.f * (gasPedalAudio - 0.05f) * 20.f / 19) + 19000;
|
|
|
|
if(engineSoundType == 6) freq >>= 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
AddPlayerCarSample((25.f * (gasPedalAudio - 0.05f) * 20.f / 19) + 40, freq,
|
2019-10-26 23:06:10 +00:00
|
|
|
(soundOffset + SFX_CAR_FINGER_OFF_ACCEL_1),
|
2019-10-25 16:39:26 +00:00
|
|
|
engineSoundType, 63, 0);
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
freq = (10000.f * gasPedalAudio) + 22050;
|
|
|
|
if(engineSoundType == 6) freq >>= 1;
|
|
|
|
AddPlayerCarSample(110 - (40.f * gasPedalAudio), freq,
|
2019-10-26 23:06:10 +00:00
|
|
|
(engineSoundType + SFX_CAR_REV_10), 0, 52, 1);
|
2019-08-02 15:43:40 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
CurrentPretendGear = max(1, currentGear);
|
2019-08-02 15:43:40 +00:00
|
|
|
LastAccel = accelerateState;
|
|
|
|
|
|
|
|
bHandbrakeOnLastFrame = automobile->bIsHandbrakeOn;
|
|
|
|
bLostTractionLastFrame = lostTraction;
|
|
|
|
return;
|
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
if(!nCruising) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(accelerateState < 150 || !automobile->m_nWheelsOnGround || automobile->bIsHandbrakeOn ||
|
|
|
|
lostTraction ||
|
|
|
|
currentGear < 2u && velocityChange - automobile->m_fVelocityChangeForAudio >= 0.01f) {
|
|
|
|
if(!automobile->m_nWheelsOnGround || automobile->bIsHandbrakeOn || lostTraction) {
|
|
|
|
if(!automobile->m_nWheelsOnGround && automobile->m_nDriveWheelsOnGround ||
|
2019-08-02 15:43:40 +00:00
|
|
|
(automobile->bIsHandbrakeOn && !bHandbrakeOnLastFrame ||
|
|
|
|
lostTraction && !bLostTractionLastFrame) &&
|
|
|
|
automobile->m_nWheelsOnGround) {
|
2019-10-25 16:39:26 +00:00
|
|
|
automobile->m_fGasPedalAudio = automobile->m_fGasPedalAudio * 0.6f;
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
freqModifier = 0;
|
|
|
|
baseFreq = (15000.f * automobile->m_fGasPedalAudio) + 14000;
|
|
|
|
vol = (25.0f * automobile->m_fGasPedalAudio) + 60;
|
|
|
|
} else {
|
|
|
|
baseFreq = (8000.f * accelerationMultipler) + 16000;
|
|
|
|
vol = (25.0f * accelerationMultipler) + 60;
|
|
|
|
automobile->m_fGasPedalAudio = accelerationMultipler;
|
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
freq = freqModifier + baseFreq;
|
|
|
|
if(engineSoundType == 6) freq >>= 1;
|
2019-08-02 15:43:40 +00:00
|
|
|
if(channelUsed) {
|
|
|
|
SampleManager.StopChannel(m_bActiveSamples);
|
|
|
|
bAccelSampleStopped = 1;
|
|
|
|
}
|
2019-10-26 23:06:10 +00:00
|
|
|
AddPlayerCarSample(vol, freq, (engineSoundType + SFX_PHONE_RING), 0, 2, 1);
|
2019-08-02 15:43:40 +00:00
|
|
|
LastAccel = accelerateState;
|
|
|
|
|
|
|
|
bHandbrakeOnLastFrame = automobile->bIsHandbrakeOn;
|
|
|
|
bLostTractionLastFrame = lostTraction;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
TranslateEntity(&m_sQueueSample.m_vecPos, &pos);
|
|
|
|
if(bAccelSampleStopped) {
|
|
|
|
if(CurrentPretendGear != 1 || currentGear != 2) {
|
|
|
|
gearNr = currentGear - 1;
|
|
|
|
if(gearNr < 1) gearNr = 1;
|
|
|
|
CurrentPretendGear = gearNr;
|
|
|
|
}
|
|
|
|
processedAccelSampleStopped = 1;
|
|
|
|
bAccelSampleStopped = 0;
|
|
|
|
}
|
|
|
|
if(channelUsed) {
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.SetChannelEmittingVolume(m_bActiveSamples, 85);
|
2019-08-02 15:43:40 +00:00
|
|
|
SampleManager.SetChannel3DPosition(m_bActiveSamples, pos.x, pos.y, pos.z);
|
|
|
|
SampleManager.SetChannel3DDistances(m_bActiveSamples, 50.f, 12.5f);
|
|
|
|
if(engineSoundType == 6)
|
|
|
|
freq = (CSWTCH_554[CurrentPretendGear] + freqModifier + 22050) >> 1;
|
|
|
|
else
|
|
|
|
freq = CSWTCH_554[CurrentPretendGear] + freqModifier + 22050;
|
|
|
|
SampleManager.SetChannelFrequency(m_bActiveSamples, freq);
|
|
|
|
if(!channelUsed) {
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.SetChannelReverbFlag(m_bActiveSamples,
|
|
|
|
m_bDynamicAcousticModelingStatus != 0);
|
2019-08-02 15:43:40 +00:00
|
|
|
SampleManager.StartChannel(m_bActiveSamples);
|
|
|
|
}
|
|
|
|
LastAccel = accelerateState;
|
|
|
|
|
|
|
|
bHandbrakeOnLastFrame = automobile->bIsHandbrakeOn;
|
|
|
|
bLostTractionLastFrame = lostTraction;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(processedAccelSampleStopped) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(!SampleManager.InitialiseChannel(m_bActiveSamples, soundOffset + 345, 0)) return;
|
2019-08-02 15:43:40 +00:00
|
|
|
SampleManager.SetChannelLoopCount(m_bActiveSamples, 1);
|
|
|
|
SampleManager.SetChannelLoopPoints(m_bActiveSamples, 0, -1);
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.SetChannelEmittingVolume(m_bActiveSamples, 85);
|
2019-08-02 15:43:40 +00:00
|
|
|
SampleManager.SetChannel3DPosition(m_bActiveSamples, pos.x, pos.y, pos.z);
|
|
|
|
SampleManager.SetChannel3DDistances(m_bActiveSamples, 50.f, 12.5f);
|
|
|
|
if(engineSoundType == 6)
|
|
|
|
freq = (CSWTCH_554[CurrentPretendGear] + freqModifier + 22050) >> 1;
|
|
|
|
else
|
|
|
|
freq = CSWTCH_554[CurrentPretendGear] + freqModifier + 22050;
|
|
|
|
SampleManager.SetChannelFrequency(m_bActiveSamples, freq);
|
|
|
|
if(!channelUsed) {
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.SetChannelReverbFlag(m_bActiveSamples,
|
|
|
|
m_bDynamicAcousticModelingStatus != 0);
|
2019-08-02 15:43:40 +00:00
|
|
|
SampleManager.StartChannel(m_bActiveSamples);
|
|
|
|
}
|
|
|
|
LastAccel = accelerateState;
|
|
|
|
|
|
|
|
bHandbrakeOnLastFrame = automobile->bIsHandbrakeOn;
|
|
|
|
bLostTractionLastFrame = lostTraction;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(CurrentPretendGear < params->m_pTransmission->nNumberOfGears - 1) {
|
|
|
|
++CurrentPretendGear;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(!SampleManager.InitialiseChannel(m_bActiveSamples, soundOffset + 345, 0)) return;
|
2019-08-02 15:43:40 +00:00
|
|
|
SampleManager.SetChannelLoopCount(m_bActiveSamples, 1);
|
|
|
|
SampleManager.SetChannelLoopPoints(m_bActiveSamples, 0, -1);
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.SetChannelEmittingVolume(m_bActiveSamples, 85);
|
2019-08-02 15:43:40 +00:00
|
|
|
SampleManager.SetChannel3DPosition(m_bActiveSamples, pos.x, pos.y, pos.z);
|
|
|
|
SampleManager.SetChannel3DDistances(m_bActiveSamples, 50.f, 12.5f);
|
2019-08-16 18:17:15 +00:00
|
|
|
freq = CSWTCH_554[CurrentPretendGear] + freqModifier + 22050;
|
|
|
|
|
|
|
|
if(engineSoundType == 6) freq >>= 1;
|
|
|
|
|
2019-08-02 15:43:40 +00:00
|
|
|
SampleManager.SetChannelFrequency(m_bActiveSamples, freq);
|
|
|
|
if(!channelUsed) {
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.SetChannelReverbFlag(m_bActiveSamples,
|
|
|
|
m_bDynamicAcousticModelingStatus != 0);
|
2019-08-02 15:43:40 +00:00
|
|
|
SampleManager.StartChannel(m_bActiveSamples);
|
|
|
|
}
|
|
|
|
LastAccel = accelerateState;
|
|
|
|
|
|
|
|
bHandbrakeOnLastFrame = automobile->bIsHandbrakeOn;
|
|
|
|
bLostTractionLastFrame = lostTraction;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
nCruising = 1;
|
|
|
|
}
|
|
|
|
bAccelSampleStopped = 1;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(accelerateState < 150 || !automobile->m_nWheelsOnGround || automobile->bIsHandbrakeOn || lostTraction ||
|
|
|
|
currentGear < params->m_pTransmission->nNumberOfGears - 1) {
|
2019-08-02 15:43:40 +00:00
|
|
|
nCruising = 0;
|
|
|
|
} else {
|
|
|
|
if(accelerateState >= 220 &&
|
|
|
|
0.001f + params->m_fVelocityChange < automobile->m_fVelocityChangeForAudio) {
|
|
|
|
if(nCruising < 800) ++nCruising;
|
|
|
|
} else if(nCruising > 3) {
|
|
|
|
--nCruising;
|
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
freq = 27 * nCruising + freqModifier + 22050;
|
|
|
|
if(engineSoundType == 6) freq >>= 1;
|
2019-10-26 23:06:10 +00:00
|
|
|
AddPlayerCarSample(85, freq, (soundOffset + SFX_CAR_AFTER_ACCEL_1),
|
2019-10-25 16:39:26 +00:00
|
|
|
engineSoundType, 64, 1);
|
2019-08-02 15:43:40 +00:00
|
|
|
}
|
|
|
|
LastAccel = accelerateState;
|
|
|
|
|
|
|
|
bHandbrakeOnLastFrame = automobile->bIsHandbrakeOn;
|
|
|
|
bLostTractionLastFrame = lostTraction;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
2019-07-16 15:03:37 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessPoliceCellBeatingScriptObject(uint8 sound)
|
|
|
|
{
|
2019-08-29 22:44:57 +00:00
|
|
|
uint32 time = CTimer::GetTimeInMilliseconds();
|
|
|
|
int32 sampleIndex;
|
|
|
|
uint8 emittingVol;
|
|
|
|
float distSquared;
|
|
|
|
float maxDist;
|
|
|
|
cPedParams params;
|
|
|
|
|
|
|
|
static uint8 counter = 0;
|
|
|
|
|
2019-10-27 17:04:13 +00:00
|
|
|
if(time > gCellNextTime) {
|
2019-08-29 22:44:57 +00:00
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_POLICE_CELL_BEATING_LOOP_S:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_POLICE_CELL_BEATING_LOOP_L:
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = sqrt(distSquared);
|
|
|
|
if(m_nTimeOfRecentCrime & 1)
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = (m_anRandomTable[1] & 3) + SFX_FIGHT_1;
|
2019-08-29 22:44:57 +00:00
|
|
|
else
|
2019-10-26 23:06:10 +00:00
|
|
|
sampleIndex = (m_anRandomTable[3] & 1) + SFX_BAT_HIT_LEFT;
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = sampleIndex;
|
2019-10-25 16:39:26 +00:00
|
|
|
emittingVol = m_anRandomTable[0] % 50 + 55;
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
2019-10-25 16:39:26 +00:00
|
|
|
ComputeVolume(emittingVol, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-08-29 22:44:57 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency / 16);
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.m_counter = counter++;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
params.m_bDistanceCalculated = 1;
|
|
|
|
params.m_fDistance = distSquared;
|
|
|
|
params.m_pPed = 0;
|
|
|
|
SetupPedComments(¶ms, SOUND_8A);
|
|
|
|
}
|
2019-10-27 17:04:13 +00:00
|
|
|
gCellNextTime = time + 500 + m_anRandomTable[3] % 1500;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessPornCinema(uint8 sound)
|
|
|
|
{
|
2019-07-18 21:49:21 +00:00
|
|
|
|
2019-10-26 23:06:10 +00:00
|
|
|
eSfxSample sample;
|
2019-07-18 21:49:21 +00:00
|
|
|
uint32 time;
|
|
|
|
int32 rand;
|
|
|
|
float distSquared;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_1_S:
|
|
|
|
case SCRIPT_SOUND_MISTY_SEX_S:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PORN_1_LOOP;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
maxDist = 400.f;
|
2019-10-26 23:06:10 +00:00
|
|
|
sample = SFX_PORN_1_GROAN_1;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_fSoundIntensity = 20.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_1_L:
|
|
|
|
case SCRIPT_SOUND_MISTY_SEX_L:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PORN_1_LOOP;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
maxDist = 6400.f;
|
2019-10-26 23:06:10 +00:00
|
|
|
sample = SFX_PORN_1_GROAN_1;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_2_S:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PORN_2_LOOP;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
maxDist = 400.f;
|
2019-10-26 23:06:10 +00:00
|
|
|
sample = SFX_PORN_2_GROAN_1;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_fSoundIntensity = 20.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_2_L:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PORN_2_LOOP;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
maxDist = 6400.f;
|
2019-10-26 23:06:10 +00:00
|
|
|
sample = SFX_PORN_2_GROAN_1;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_3_S:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PORN_3_LOOP;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
maxDist = 400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 20.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
sample = SFX_PORN_3_GROAN_1;
|
2019-07-18 21:49:21 +00:00
|
|
|
break;
|
|
|
|
case SCRIPT_SOUND_PORN_CINEMA_3_L:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PORN_3_LOOP;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
maxDist = 6400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 80.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
sample = SFX_PORN_3_GROAN_1;
|
2019-07-18 21:49:21 +00:00
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = sqrt(distSquared);
|
|
|
|
if(sound != SCRIPT_SOUND_MISTY_SEX_S && sound != SCRIPT_SOUND_MISTY_SEX_L) {
|
|
|
|
m_sQueueSample.m_bVolume =
|
2019-10-25 16:39:26 +00:00
|
|
|
ComputeVolume(maxVolume, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-18 21:49:21 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = maxVolume;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd =
|
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
time = CTimer::GetTimeInMilliseconds();
|
2019-10-27 17:04:13 +00:00
|
|
|
if(time > gPornNextTime) {
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(90, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-18 21:49:21 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
rand = m_anRandomTable[1] & 1;
|
|
|
|
m_sQueueSample.m_nSampleIndex = rand + sample;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency >> 4);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = rand + 1;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.field_16 = 6;
|
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
2019-10-27 17:04:13 +00:00
|
|
|
gPornNextTime = time + 2000 + m_anRandomTable[3] % 6000;
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessProjectiles()
|
|
|
|
{
|
2019-09-24 11:33:16 +00:00
|
|
|
uint8 emittingVol;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
for(int32 i = 0; i < 32; i++) {
|
|
|
|
if(CProjectileInfo::GetProjectileInfo(i)->m_bInUse) {
|
|
|
|
switch(CProjectileInfo::GetProjectileInfo(i)->m_eWeaponType) {
|
|
|
|
case WEAPONTYPE_ROCKETLAUNCHER:
|
|
|
|
emittingVol = maxVolume;
|
|
|
|
maxDist = 8100.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 90.0;
|
|
|
|
m_sQueueSample.m_nSampleIndex = 81;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_ROCKET_FLY);
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
break;
|
|
|
|
case WEAPONTYPE_MOLOTOV:
|
|
|
|
emittingVol = 50;
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_PED_ON_FIRE;
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
32 * SampleManager.GetSampleBaseFrequency(SFX_PED_ON_FIRE) / 25;
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.field_16 = 7;
|
|
|
|
break;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
m_sQueueSample.field_48 = 4.0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
2019-10-12 20:21:44 +00:00
|
|
|
m_sQueueSample.m_vecPos = CProjectileInfo::ms_apProjectile[i].GetPosition();
|
2019-09-24 11:33:16 +00:00
|
|
|
float distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = Sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, m_sQueueSample.m_fSoundIntensity,
|
|
|
|
m_sQueueSample.m_fDistance);
|
2019-09-24 11:33:16 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = i;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
2019-08-02 15:43:40 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessRainOnVehicle(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
float emittingVol;
|
|
|
|
CVehicle *veh;
|
|
|
|
|
|
|
|
if(params->m_fDistance < 484.f && CWeather::Rain > 0.01f &&
|
|
|
|
(!CCullZones::CamNoRain() || !CCullZones::PlayerNoRain())) {
|
|
|
|
++params->m_pVehicle->m_bRainAudioCounter;
|
|
|
|
veh = params->m_pVehicle;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(veh->m_bRainAudioCounter >= 2) {
|
2019-08-02 15:43:40 +00:00
|
|
|
veh->m_bRainAudioCounter = 0;
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
emittingVol = 30.f * CWeather::Rain;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 22.f, m_sQueueSample.m_fDistance);
|
2019-08-02 15:43:40 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = veh->m_bRainSamplesCounter++;
|
2019-08-02 15:43:40 +00:00
|
|
|
veh = params->m_pVehicle;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(veh->m_bRainSamplesCounter > 4) veh->m_bRainSamplesCounter = 68;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex =
|
2019-10-26 23:06:10 +00:00
|
|
|
(m_anRandomTable[1] & 3) + SFX_CAR_RAIN_1;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 9;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = m_anRandomTable[1] % 4000 + 28000;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = (uint8)emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 0.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 22.0f;
|
2019-08-02 15:43:40 +00:00
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessReverb() const
|
|
|
|
{
|
|
|
|
if(SampleManager.UpdateReverb() && m_bDynamicAcousticModelingStatus) {
|
2019-10-26 14:47:57 +00:00
|
|
|
for(uint32 i = 0; i < channels; i++) { // bug?
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_asActiveSamples[i].m_bReverbFlag) SampleManager.SetChannelReverbFlag(i, 1);
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::ProcessReverseGear(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
CVehicle *veh;
|
|
|
|
CAutomobile *automobile;
|
|
|
|
int32 emittingVol;
|
|
|
|
float modificator;
|
|
|
|
|
|
|
|
if(params->m_fDistance >= 900.f) return 0;
|
|
|
|
veh = params->m_pVehicle;
|
|
|
|
if(veh->bEngineOn && (veh->m_fGasPedal < 0.0f || !veh->m_nCurrentGear)) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
automobile = (CAutomobile *)params->m_pVehicle;
|
|
|
|
if(automobile->m_nWheelsOnGround) {
|
2019-10-25 16:39:26 +00:00
|
|
|
modificator = params->m_fVelocityChange / params->m_pTransmission->fMaxReverseVelocity;
|
2019-08-16 18:17:15 +00:00
|
|
|
} else {
|
|
|
|
if(automobile->m_nDriveWheelsOnGround)
|
|
|
|
automobile->m_fGasPedalAudio = automobile->m_fGasPedalAudio * 0.4f;
|
|
|
|
modificator = automobile->m_fGasPedalAudio;
|
|
|
|
}
|
|
|
|
modificator = Abs(modificator);
|
|
|
|
emittingVol = (24.f * modificator);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 30.f, m_sQueueSample.m_fDistance);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
if(params->m_pVehicle->m_fGasPedal >= 0.0f) {
|
|
|
|
m_sQueueSample.m_counter = 62;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_REVERSE_GEAR_2;
|
2019-08-16 18:17:15 +00:00
|
|
|
} else {
|
|
|
|
m_sQueueSample.m_counter = 61;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_REVERSE_GEAR;
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.m_nFrequency = (6000.f * modificator) + 7000;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 3.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 5;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-07-16 15:03:37 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessSawMillScriptObject(uint8 sound)
|
|
|
|
{
|
2019-07-18 21:49:21 +00:00
|
|
|
uint32 time;
|
|
|
|
float distSquared;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_SAWMILL_LOOP_S:
|
|
|
|
case SCRIPT_SOUND_SAWMILL_LOOP_L:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(30, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-18 21:49:21 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SAWMILL_LOOP;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_SAWMILL_LOOP);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 30;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
time = CTimer::GetTimeInMilliseconds();
|
2019-10-27 17:04:13 +00:00
|
|
|
if(time > gSawMillNextTime) {
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(70, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-18 21:49:21 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SAWMILL_CUT_WOOD;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 1;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
2019-10-27 17:04:13 +00:00
|
|
|
gSawMillNextTime = time + 2000 + m_anRandomTable[3] % 4000;
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 19:44:32 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessScriptObject(int32 id)
|
|
|
|
{
|
2019-07-31 15:54:18 +00:00
|
|
|
cAudioScriptObject *entity = (cAudioScriptObject *)m_asAudioEntities[id].m_pEntity;
|
|
|
|
if(entity) {
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_vecPos = entity->Posn;
|
2019-10-26 14:47:57 +00:00
|
|
|
if(m_asAudioEntities[id].m_AudioEvents == 1)
|
2019-07-31 15:54:18 +00:00
|
|
|
ProcessOneShotScriptObject(m_asAudioEntities[id].m_awAudioEvent[0]);
|
|
|
|
else
|
2019-08-27 18:50:59 +00:00
|
|
|
ProcessLoopingScriptObject(entity->AudioId);
|
2019-07-31 15:54:18 +00:00
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-07-16 15:03:37 +00:00
|
|
|
cAudioManager::ProcessShopScriptObject(uint8 sound)
|
|
|
|
{
|
2019-07-18 21:49:21 +00:00
|
|
|
uint32 time;
|
|
|
|
int32 rand;
|
|
|
|
float distSquared;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_SHOP_LOOP_S:
|
|
|
|
case SCRIPT_SOUND_SHOP_LOOP_L:
|
|
|
|
maxDist = 900.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(30, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-18 21:49:21 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SHOP_LOOP;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_SHOP_LOOP);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 30;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
2019-07-31 15:54:18 +00:00
|
|
|
AddSampleToRequestedQueue();
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
|
|
|
time = CTimer::GetTimeInMilliseconds();
|
2019-10-27 17:04:13 +00:00
|
|
|
if(time > gShopNextTime) {
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(70, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-18 21:49:21 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
rand = m_anRandomTable[1] & 1;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = rand + SFX_SHOP_TILL_1;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_counter = rand + 1;
|
2019-07-18 21:49:21 +00:00
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 70;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
2019-10-27 17:04:13 +00:00
|
|
|
gShopNextTime = time + 3000 + m_anRandomTable[3] % 7000;
|
2019-07-18 21:49:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessSpecial()
|
|
|
|
{
|
|
|
|
if(m_bUserPause) {
|
|
|
|
if(!m_bPreviousUserPause) {
|
2019-10-26 13:02:59 +00:00
|
|
|
MusicManager.ChangeMusicMode(MUSICMODE_FRONTEND);
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.SetEffectsFadeVolume(maxVolume);
|
|
|
|
SampleManager.SetMusicFadeVolume(maxVolume);
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(m_bPreviousUserPause) {
|
|
|
|
MusicManager.StopFrontEndTrack();
|
2019-10-26 13:02:59 +00:00
|
|
|
MusicManager.ChangeMusicMode(MUSICMODE_GAME);
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
2019-07-18 21:49:21 +00:00
|
|
|
CPlayerPed *playerPed = FindPlayerPed();
|
2019-07-16 15:03:37 +00:00
|
|
|
if(playerPed) {
|
2019-07-18 21:49:21 +00:00
|
|
|
const PedState &state = playerPed->m_nPedState;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(state != PED_ENTER_CAR && state != PED_STEAL_CAR && !playerPed->bInVehicle)
|
2019-08-02 20:20:12 +00:00
|
|
|
SampleManager.StopChannel(m_bActiveSamples);
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::ProcessTrainNoise(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
CTrain *train;
|
2019-10-17 13:10:27 +00:00
|
|
|
uint8 emittingVol;
|
2019-08-16 18:17:15 +00:00
|
|
|
float speedMultipler;
|
|
|
|
|
|
|
|
if(params->m_fDistance >= 90000.f) return 0;
|
|
|
|
|
2019-10-17 13:10:27 +00:00
|
|
|
if(params->m_fVelocityChange > 0.0f) {
|
2019-08-16 18:17:15 +00:00
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
train = (CTrain *)params->m_pVehicle;
|
2019-08-27 18:50:59 +00:00
|
|
|
speedMultipler = min(1.0f, train->m_fSpeed * 250.f / 51.f);
|
2019-08-16 18:17:15 +00:00
|
|
|
emittingVol = (75.f * speedMultipler);
|
|
|
|
if(train->m_fWagonPosition == 0.0f) {
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 300.f, m_sQueueSample.m_fDistance);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 32;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_TRAIN_FAR;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 2;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_TRAIN_FAR);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd =
|
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 3.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 300.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(params->m_fDistance < 4900.f) {
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 70.f, m_sQueueSample.m_fDistance);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 33;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_TRAIN_NEAR;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_TRAIN_NEAR) +
|
2019-08-16 18:17:15 +00:00
|
|
|
100 * m_sQueueSample.m_nEntityIndex % 987;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
2019-10-17 13:10:27 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 6.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 70.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-07-16 15:03:37 +00:00
|
|
|
void
|
2019-09-24 11:33:16 +00:00
|
|
|
cAudioManager::ProcessVehicle(CVehicle *veh)
|
2019-07-16 15:03:37 +00:00
|
|
|
{
|
2019-09-24 11:33:16 +00:00
|
|
|
tHandlingData *handling = veh->pHandling;
|
|
|
|
float velChange;
|
|
|
|
cVehicleParams params;
|
|
|
|
m_sQueueSample.m_vecPos = veh->GetPosition();
|
|
|
|
|
|
|
|
params.m_bDistancECalculated = 0;
|
|
|
|
params.m_fDistance = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
params.m_pVehicle = veh;
|
|
|
|
params.m_pTransmission = nil;
|
|
|
|
params.m_nIndex = 0;
|
|
|
|
params.m_fVelocityChange = 0.0;
|
|
|
|
|
|
|
|
if(handling) params.m_pTransmission = &handling->Transmission;
|
|
|
|
|
|
|
|
params.m_nIndex = veh->m_modelIndex - 90;
|
|
|
|
if(params.m_pVehicle->m_status == STATUS_SIMPLE)
|
|
|
|
velChange = params.m_pVehicle->AutoPilot.m_fMaxTrafficSpeed * 0.02f;
|
|
|
|
else
|
2019-10-25 16:39:26 +00:00
|
|
|
velChange = DotProduct(params.m_pVehicle->m_vecMoveSpeed, params.m_pVehicle->GetForward());
|
2019-09-24 11:33:16 +00:00
|
|
|
params.m_fVelocityChange = velChange;
|
|
|
|
switch(params.m_pVehicle->m_vehType) {
|
2019-10-25 16:39:26 +00:00
|
|
|
case VEHICLE_TYPE_CAR:
|
2019-09-24 11:33:16 +00:00
|
|
|
UpdateGasPedalAudio((CAutomobile *)veh);
|
|
|
|
if(params.m_nIndex == RCBANDIT) {
|
|
|
|
ProcessModelCarEngine(¶ms);
|
|
|
|
ProcessVehicleOneShots(¶ms);
|
2019-10-12 20:21:44 +00:00
|
|
|
((CAutomobile *)veh)->m_fVelocityChangeForAudio = params.m_fVelocityChange;
|
2019-09-24 11:33:16 +00:00
|
|
|
ProcessRainOnVehicle(¶ms);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(params.m_nIndex == DODO) {
|
|
|
|
if(!ProcessVehicleRoadNoise(¶ms)) {
|
|
|
|
ProcessVehicleOneShots(¶ms);
|
2019-10-25 16:39:26 +00:00
|
|
|
((CAutomobile *)veh)->m_fVelocityChangeForAudio = params.m_fVelocityChange;
|
2019-09-24 11:33:16 +00:00
|
|
|
ProcessRainOnVehicle(¶ms);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(CWeather::WetRoads > 0.f) ProcessWetRoadNoise(¶ms);
|
|
|
|
ProcessVehicleSkidding(¶ms);
|
|
|
|
} else {
|
|
|
|
if(!ProcessVehicleRoadNoise(¶ms)) {
|
|
|
|
ProcessVehicleOneShots(¶ms);
|
2019-10-25 16:39:26 +00:00
|
|
|
((CAutomobile *)veh)->m_fVelocityChangeForAudio = params.m_fVelocityChange;
|
2019-09-24 11:33:16 +00:00
|
|
|
ProcessRainOnVehicle(¶ms);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ProcessReverseGear(¶ms);
|
|
|
|
if(CWeather::WetRoads > 0.f) ProcessWetRoadNoise(¶ms);
|
|
|
|
ProcessVehicleSkidding(¶ms);
|
|
|
|
ProcessVehicleHorn(¶ms);
|
|
|
|
ProcessVehicleSirenOrAlarm(¶ms);
|
2019-10-25 16:39:26 +00:00
|
|
|
if(UsesReverseWarning(params.m_nIndex)) ProcessVehicleReverseWarning(¶ms);
|
2019-09-24 11:33:16 +00:00
|
|
|
if(HasAirBrakes(params.m_nIndex)) ProcessAirBrakes(¶ms);
|
|
|
|
}
|
|
|
|
ProcessCarBombTick(¶ms);
|
|
|
|
ProcessVehicleEngine(¶ms);
|
|
|
|
ProcessEngineDamage(¶ms);
|
|
|
|
ProcessVehicleDoors(¶ms);
|
|
|
|
ProcessVehicleOneShots(¶ms);
|
|
|
|
((CAutomobile *)veh)->m_fVelocityChangeForAudio = params.m_fVelocityChange;
|
|
|
|
ProcessRainOnVehicle(¶ms);
|
|
|
|
break;
|
|
|
|
case VEHICLE_TYPE_BOAT:
|
|
|
|
ProcessBoatEngine(¶ms);
|
|
|
|
ProcessBoatMovingOverWater(¶ms);
|
|
|
|
ProcessVehicleOneShots(¶ms);
|
|
|
|
ProcessRainOnVehicle(¶ms);
|
|
|
|
break;
|
|
|
|
case VEHICLE_TYPE_TRAIN:
|
|
|
|
ProcessTrainNoise(¶ms);
|
|
|
|
ProcessVehicleOneShots(¶ms);
|
|
|
|
ProcessRainOnVehicle(¶ms);
|
|
|
|
break;
|
|
|
|
case VEHICLE_TYPE_HELI:
|
|
|
|
ProcessHelicopter(¶ms);
|
|
|
|
ProcessVehicleOneShots(¶ms);
|
|
|
|
ProcessRainOnVehicle(¶ms);
|
|
|
|
break;
|
|
|
|
case VEHICLE_TYPE_PLANE:
|
|
|
|
ProcessPlane(¶ms);
|
|
|
|
ProcessVehicleOneShots(¶ms);
|
|
|
|
ProcessRainOnVehicle(¶ms);
|
|
|
|
break;
|
|
|
|
default: ProcessRainOnVehicle(¶ms); break;
|
|
|
|
}
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
2019-07-08 19:44:32 +00:00
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::ProcessVehicleDoors(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
CAutomobile *automobile;
|
|
|
|
int8 doorState;
|
|
|
|
int32 emittingVol;
|
|
|
|
float velocity;
|
|
|
|
|
|
|
|
if(params->m_fDistance >= 1600.f) return 0;
|
|
|
|
|
|
|
|
automobile = (CAutomobile *)params->m_pVehicle;
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
for(int32 i = 0; i < 6; i++) {
|
|
|
|
if(automobile->Damage.GetDoorStatus(i) == 2) {
|
|
|
|
doorState = automobile->Doors[i].m_nDoorState;
|
|
|
|
if(doorState == 1 || doorState == 2) {
|
2019-08-27 18:50:59 +00:00
|
|
|
velocity = min(0.3f, Abs(automobile->Doors[i].m_fAngVel));
|
2019-08-16 18:17:15 +00:00
|
|
|
if(velocity > 0.0035f) {
|
|
|
|
emittingVol = (100.f * velocity * 10.f / 3.f);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(emittingVol, 40.f, m_sQueueSample.m_fDistance);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = i + 6;
|
|
|
|
m_sQueueSample.m_nSampleIndex =
|
2019-10-26 23:06:10 +00:00
|
|
|
m_anRandomTable[1] % 6 + SFX_COL_CAR_PANEL_1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(
|
|
|
|
m_sQueueSample.m_nSampleIndex) +
|
|
|
|
RandomDisplacement(1000);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 10;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.field_48 = 1.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 40.0f;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 1;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-12 20:21:44 +00:00
|
|
|
return 1;
|
2019-09-24 11:33:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WRAPPER
|
2019-10-12 20:21:44 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::ProcessVehicleEngine(cVehicleParams *params)
|
2019-09-24 11:33:16 +00:00
|
|
|
{
|
|
|
|
EAXJMP(0x56A610);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessVehicleHorn(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
CAutomobile *automobile;
|
|
|
|
|
|
|
|
if(params->m_fDistance < 1600.f) {
|
|
|
|
automobile = (CAutomobile *)params->m_pVehicle;
|
|
|
|
if((!automobile->m_bSirenOrAlarm || !UsesSirenSwitching(params->m_nIndex)) &&
|
|
|
|
automobile->m_modelIndex != MI_MRWHOOP) {
|
|
|
|
if(automobile->m_nCarHornTimer) {
|
|
|
|
if(!params->m_pVehicle->m_status) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(80, 40.f, m_sQueueSample.m_fDistance);
|
2019-09-24 11:33:16 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 4;
|
|
|
|
m_sQueueSample.m_nSampleIndex =
|
|
|
|
CarSounds[params->m_nIndex].m_nHornSample;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 2;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
CarSounds[params->m_nIndex].m_nHornFrequency;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 80;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(
|
|
|
|
m_sQueueSample.m_nSampleIndex);
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.field_48 = 5.0;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 40.0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
if(automobile->m_nCarHornTimer > 44) automobile->m_nCarHornTimer = 44;
|
2019-09-24 11:33:16 +00:00
|
|
|
if(automobile->m_nCarHornTimer == 44)
|
|
|
|
automobile->field_22D =
|
2019-10-25 16:39:26 +00:00
|
|
|
(LOBYTE(m_nTimeOfRecentCrime) + LOBYTE(m_sQueueSample.m_nEntityIndex)) & 7;
|
|
|
|
if(hornPatternsArray[automobile->field_22D][44 - automobile->m_nCarHornTimer]) {
|
2019-09-24 11:33:16 +00:00
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(80, 40.f, m_sQueueSample.m_fDistance);
|
2019-09-24 11:33:16 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 4;
|
|
|
|
m_sQueueSample.m_nSampleIndex =
|
|
|
|
CarSounds[params->m_nIndex].m_nHornSample;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 2;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
|
|
|
CarSounds[params->m_nIndex].m_nHornFrequency;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 80;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(
|
|
|
|
m_sQueueSample.m_nSampleIndex);
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.field_48 = 5.0;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 40.0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WRAPPER
|
2019-10-12 20:21:44 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessVehicleOneShots(void *)
|
2019-09-24 11:33:16 +00:00
|
|
|
{
|
|
|
|
EAXJMP(0x56CD40);
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::ProcessVehicleReverseWarning(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
CVehicle *veh = params->m_pVehicle;
|
|
|
|
|
|
|
|
if(params->m_fDistance >= 2500.f) return 0;
|
|
|
|
|
|
|
|
if(veh->bEngineOn && veh->m_fGasPedal < 0.0f) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(60, 50.f, m_sQueueSample.m_fDistance);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 12;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_REVERSE_WARNING;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 2;
|
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-12 22:35:01 +00:00
|
|
|
(100 * m_sQueueSample.m_nEntityIndex & 1023) +
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_REVERSE_WARNING);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 60;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 3.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 50.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
2019-08-27 18:50:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::ProcessVehicleRoadNoise(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
int32 emittingVol;
|
|
|
|
uint32 freq;
|
|
|
|
float modificator;
|
|
|
|
int sampleFreq;
|
|
|
|
float velocity;
|
|
|
|
|
|
|
|
if(params->m_fDistance >= 9025.f) return 0;
|
|
|
|
if(params->m_pTransmission) {
|
|
|
|
if(params->m_pVehicle->m_vecMoveSpeed.z) {
|
|
|
|
velocity = Abs(params->m_fVelocityChange);
|
|
|
|
if(velocity > 0.0f) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
emittingVol =
|
2019-10-25 16:39:26 +00:00
|
|
|
30.f * min(1.f, velocity / (0.5f * params->m_pTransmission->fMaxVelocity));
|
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 95.f, m_sQueueSample.m_fDistance);
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 0;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(params->m_pVehicle->m_nSurfaceTouched == SURFACE_PUDDLE) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BOAT_WATER_LOOP;
|
2019-08-27 18:50:59 +00:00
|
|
|
freq = 6050 * emittingVol / 30 + 16000;
|
|
|
|
} else {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_ROAD_NOISE;
|
2019-10-25 16:39:26 +00:00
|
|
|
modificator = m_sQueueSample.m_fDistance * 1.f / 95.f * 0.5f;
|
2019-08-27 18:50:59 +00:00
|
|
|
sampleFreq = SampleManager.GetSampleBaseFrequency(
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_ROAD_NOISE);
|
2019-10-25 16:39:26 +00:00
|
|
|
freq = (sampleFreq * modificator) + ((3 * sampleFreq) >> 2);
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
m_sQueueSample.m_nFrequency = freq;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.field_48 = 6.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 95.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 4;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-09-24 11:33:16 +00:00
|
|
|
WRAPPER
|
2019-10-12 20:21:44 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessVehicleSirenOrAlarm(void *)
|
2019-09-24 11:33:16 +00:00
|
|
|
{
|
|
|
|
EAXJMP(0x56C420);
|
|
|
|
}
|
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessVehicleSkidding(cVehicleParams *params)
|
|
|
|
{
|
|
|
|
CAutomobile *automobile;
|
|
|
|
cTransmission *transmission;
|
2019-09-24 11:33:16 +00:00
|
|
|
int32 emittingVol;
|
2019-08-29 22:44:57 +00:00
|
|
|
float newSkidVal = 0.f;
|
|
|
|
float skidVal = 0.f;
|
|
|
|
|
|
|
|
if(params->m_fDistance >= 1600.f) return;
|
|
|
|
automobile = (CAutomobile *)params->m_pVehicle;
|
|
|
|
if(!automobile->m_nWheelsOnGround) return;
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
for(int32 i = 0; i < 4; i++) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(!automobile->m_aWheelState[i] || automobile->Damage.GetWheelStatus(i) == WHEEL_STATUS_MISSING)
|
2019-08-29 22:44:57 +00:00
|
|
|
continue;
|
|
|
|
transmission = params->m_pTransmission;
|
|
|
|
if(transmission->nDriveType == '4') {
|
2019-10-25 16:39:26 +00:00
|
|
|
newSkidVal =
|
|
|
|
GetVehicleDriveWheelSkidValue(i, automobile, transmission, params->m_fVelocityChange);
|
2019-08-29 22:44:57 +00:00
|
|
|
if(newSkidVal > skidVal) skidVal = newSkidVal;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(transmission->nDriveType != 'F') {
|
|
|
|
if(transmission->nDriveType != 'R') {
|
|
|
|
if(newSkidVal > skidVal) skidVal = newSkidVal;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(i != 1 && i != 3) {
|
2019-10-25 16:39:26 +00:00
|
|
|
newSkidVal = GetVehicleNonDriveWheelSkidValue(i, automobile, transmission,
|
|
|
|
params->m_fVelocityChange);
|
2019-08-29 22:44:57 +00:00
|
|
|
if(newSkidVal > skidVal) skidVal = newSkidVal;
|
|
|
|
continue;
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
newSkidVal =
|
|
|
|
GetVehicleDriveWheelSkidValue(i, automobile, transmission, params->m_fVelocityChange);
|
2019-08-29 22:44:57 +00:00
|
|
|
if(newSkidVal > skidVal) skidVal = newSkidVal;
|
|
|
|
continue;
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
if(i == 0 || i == 2) {
|
|
|
|
newSkidVal =
|
|
|
|
GetVehicleDriveWheelSkidValue(i, automobile, transmission, params->m_fVelocityChange);
|
2019-08-29 22:44:57 +00:00
|
|
|
if(newSkidVal > skidVal) skidVal = newSkidVal;
|
|
|
|
continue;
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
newSkidVal = GetVehicleNonDriveWheelSkidValue(i, automobile, transmission, params->m_fVelocityChange);
|
2019-08-29 22:44:57 +00:00
|
|
|
if(newSkidVal > skidVal) skidVal = newSkidVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(skidVal > 0.0f) {
|
|
|
|
emittingVol = 50.f * skidVal;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 40.f, m_sQueueSample.m_fDistance);
|
2019-08-29 22:44:57 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 3;
|
|
|
|
switch(params->m_pVehicle->m_nSurfaceTouched) {
|
|
|
|
case SURFACE_GRASS:
|
|
|
|
case SURFACE_HEDGE:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RAIN;
|
2019-08-29 22:44:57 +00:00
|
|
|
emittingVol /= 4;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = (signed __int64)(13000.f * skidVal + 35000.f);
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.m_bVolume /= 4;
|
|
|
|
break;
|
|
|
|
case SURFACE_DIRT:
|
|
|
|
case SURFACE_DIRTTRACK:
|
|
|
|
case SURFACE_SAND:
|
|
|
|
case SURFACE_PUDDLE:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_GRAVEL_SKID;
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 6000.f * skidVal + 10000.f;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SKID;
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 5000.f * skidVal + 11000.f;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 8;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.field_48 = 3.0;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 40.0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 3;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-24 11:33:16 +00:00
|
|
|
void cAudioManager::ProcessWaterCannon(int32)
|
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
for(int32 i = 0; i < 3; i++) {
|
2019-09-24 11:33:16 +00:00
|
|
|
if(aCannons[i].m_nId) {
|
|
|
|
m_sQueueSample.m_vecPos = aCannons[0].m_avecPos[aCannons[i].m_wIndex];
|
|
|
|
float distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < 900.f) {
|
|
|
|
m_sQueueSample.m_fDistance = Sqrt(distSquared);
|
|
|
|
m_sQueueSample.m_bVolume =
|
2019-10-25 16:39:26 +00:00
|
|
|
ComputeVolume(50, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-09-24 11:33:16 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 900.0f;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_JUMBO_TAXI;
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_nFrequency = 15591;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.m_counter = i;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.field_76 = 8;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 50;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-09-24 11:33:16 +00:00
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-27 18:50:59 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ProcessWeather(int32 id)
|
|
|
|
{
|
|
|
|
uint8 vol;
|
|
|
|
static uint8 counter = 0;
|
|
|
|
|
2019-10-26 14:47:57 +00:00
|
|
|
if(m_asAudioEntities[id].m_AudioEvents && m_asAudioEntities[id].m_awAudioEvent[0] == SOUND_LIGHTNING) {
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_asAudioEntities[id].m_afVolume[0] >= 10.f) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_EXPLOSION_1;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(500) + 4000;
|
2019-08-27 18:50:59 +00:00
|
|
|
vol = (m_asAudioEntities[id].m_afVolume[0] - 10.f) + 40;
|
|
|
|
} else {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_EXPLOSION_2;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = RandomDisplacement(500) + 4000;
|
2019-08-27 18:50:59 +00:00
|
|
|
vol = (m_asAudioEntities[id].m_afVolume[0]) + 35;
|
|
|
|
}
|
|
|
|
m_sQueueSample.m_bVolume = vol;
|
|
|
|
if(TheCamera.SoundDistUp < 20.f) m_sQueueSample.m_bVolume >>= 1;
|
|
|
|
if(counter == 4) counter = 0;
|
|
|
|
m_sQueueSample.m_counter = counter++;
|
|
|
|
m_sQueueSample.field_16 = 0;
|
|
|
|
m_sQueueSample.m_bOffset = (m_anRandomTable[2] & 15) + 55;
|
|
|
|
m_sQueueSample.m_bIsDistant = 1;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = m_sQueueSample.m_bVolume;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
2019-08-29 22:44:57 +00:00
|
|
|
AddSampleToRequestedQueue();
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
if(CWeather::Rain > 0.0f && (!CCullZones::CamNoRain() || !CCullZones::PlayerNoRain())) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RAIN;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-26 23:06:10 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(SFX_RAIN);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bVolume = (uint8)(25.f * CWeather::Rain);
|
|
|
|
m_sQueueSample.m_counter = 4;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.field_16 = 0;
|
|
|
|
m_sQueueSample.m_bOffset = 63;
|
|
|
|
m_sQueueSample.m_bIsDistant = 1;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 30;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = m_sQueueSample.m_bVolume;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
2019-08-29 22:44:57 +00:00
|
|
|
AddSampleToRequestedQueue();
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-08-27 18:50:59 +00:00
|
|
|
cAudioManager::ProcessWetRoadNoise(cVehicleParams *params)
|
2019-08-16 18:17:15 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
float relativeVelocity;
|
2019-08-16 18:17:15 +00:00
|
|
|
int32 emittingVol;
|
|
|
|
float modificator;
|
2019-08-27 18:50:59 +00:00
|
|
|
int freq;
|
|
|
|
float velChange;
|
2019-08-16 18:17:15 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
if(params->m_fDistance >= 900.f) return 0;
|
2019-08-16 18:17:15 +00:00
|
|
|
if(params->m_pTransmission) {
|
|
|
|
if(params->m_pVehicle->m_vecMoveSpeed.z) {
|
2019-08-27 18:50:59 +00:00
|
|
|
velChange = Abs(params->m_fVelocityChange);
|
|
|
|
if(velChange > 0.f) {
|
2019-08-16 18:17:15 +00:00
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
2019-08-27 18:50:59 +00:00
|
|
|
relativeVelocity =
|
2019-10-25 16:39:26 +00:00
|
|
|
min(1.0f, velChange / (0.5f * params->m_pTransmission->fMaxVelocity));
|
2019-08-27 18:50:59 +00:00
|
|
|
emittingVol = 23.0f * relativeVelocity * CWeather::WetRoads;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 30.f, m_sQueueSample.m_fDistance);
|
2019-08-16 18:17:15 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_counter = 1;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_ROAD_NOISE;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 3;
|
2019-08-27 18:50:59 +00:00
|
|
|
modificator = m_sQueueSample.m_fDistance * 1.f / 3.f * 0.5f;
|
2019-10-26 23:06:10 +00:00
|
|
|
freq = SampleManager.GetSampleBaseFrequency(SFX_ROAD_NOISE);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_nFrequency = freq + freq * modificator;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_48 = 6.0f;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_fSoundIntensity = 30.0f;
|
2019-08-16 18:17:15 +00:00
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 4;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ProcessWorkShopScriptObject(uint8 sound)
|
|
|
|
{
|
|
|
|
float distSquared;
|
|
|
|
float maxDist;
|
|
|
|
|
|
|
|
switch(sound) {
|
|
|
|
case SCRIPT_SOUND_WORK_SHOP_LOOP_S:
|
|
|
|
case SCRIPT_SOUND_WORK_SHOP_LOOP_L:
|
|
|
|
maxDist = 400.f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 20.0f;
|
|
|
|
break;
|
2019-09-24 11:33:16 +00:00
|
|
|
default: return;
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
distSquared = GetDistanceSquared(&m_sQueueSample.m_vecPos);
|
|
|
|
if(distSquared < maxDist) {
|
|
|
|
m_sQueueSample.m_fDistance = sqrt(distSquared);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(30, m_sQueueSample.m_fSoundIntensity, m_sQueueSample.m_fDistance);
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_WORKSHOP_1;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_WORKSHOP_1);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_16 = 5;
|
|
|
|
m_sQueueSample.field_48 = 2.0f;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = 30;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int32
|
|
|
|
cAudioManager::RandomDisplacement(uint32 seed) const
|
|
|
|
{
|
|
|
|
int32 value;
|
|
|
|
|
|
|
|
static bool bIsEven = true;
|
|
|
|
static uint32 base = 0;
|
|
|
|
|
|
|
|
if(!seed) return 0;
|
|
|
|
|
|
|
|
value = m_anRandomTable[(base + seed) % 5] % seed;
|
|
|
|
base += value;
|
|
|
|
|
|
|
|
if(value % 2) { bIsEven = !bIsEven; }
|
|
|
|
if(!bIsEven) value = -value;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ReacquireDigitalHandle() const
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) { SampleManager.ReacquireDigitalHandle(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ReleaseDigitalHandle() const
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) { SampleManager.ReleaseDigitalHandle(); }
|
|
|
|
}
|
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
void
|
2019-10-25 16:39:26 +00:00
|
|
|
cAudioManager::ReportCollision(CEntity *entity1, CEntity *entity2, uint8 surface1, uint8 surface2, float collisionPower,
|
|
|
|
float velocity)
|
2019-08-27 20:46:41 +00:00
|
|
|
{
|
2019-08-29 22:44:57 +00:00
|
|
|
float dist;
|
|
|
|
CVector v1;
|
|
|
|
CVector v2;
|
|
|
|
|
2019-10-12 22:35:01 +00:00
|
|
|
if(!m_bIsInitialised || m_nCollisionEntity < 0 || m_bUserPause ||
|
|
|
|
(velocity < 0.0016f && collisionPower < 0.01f))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(entity1->IsBuilding()) {
|
|
|
|
v1 = v2 = entity2->GetPosition();
|
|
|
|
} else if(entity2->IsBuilding()) {
|
|
|
|
v1 = v2 = entity1->GetPosition();
|
|
|
|
} else {
|
|
|
|
v1 = entity1->GetPosition();
|
|
|
|
v2 = entity2->GetPosition();
|
|
|
|
}
|
|
|
|
CVector pos = (v1 + v2) * 0.5f;
|
|
|
|
dist = GetDistanceSquared(&pos);
|
|
|
|
if(dist < SQR(60.f)) {
|
|
|
|
m_sCollisionManager.m_sQueue.m_pEntity1 = entity1;
|
|
|
|
m_sCollisionManager.m_sQueue.m_pEntity2 = entity2;
|
|
|
|
m_sCollisionManager.m_sQueue.m_bSurface1 = surface1;
|
|
|
|
m_sCollisionManager.m_sQueue.m_bSurface2 = surface2;
|
|
|
|
m_sCollisionManager.m_sQueue.m_fIntensity1 = collisionPower;
|
|
|
|
m_sCollisionManager.m_sQueue.m_fIntensity2 = velocity;
|
|
|
|
m_sCollisionManager.m_sQueue.m_vecPosition = pos;
|
|
|
|
m_sCollisionManager.m_sQueue.m_fDistance = dist;
|
|
|
|
m_sCollisionManager.AddCollisionToRequestedQueue();
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
2019-08-27 20:46:41 +00:00
|
|
|
}
|
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ReportCrime(int32 type, const CVector *pos)
|
|
|
|
{
|
2019-09-21 20:10:35 +00:00
|
|
|
int32 lastCrime = 10;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_bIsInitialised && MusicManager.m_nMusicMode != 2 && FindPlayerPed()->m_pWanted->m_nWantedLevel > 0 &&
|
|
|
|
(type > 0 || type < 17) && m_nTimeOfRecentCrime >= gMinTimeToNextReport[type]) {
|
2019-08-29 22:44:57 +00:00
|
|
|
for(int32 i = 0; i < 10; i++) {
|
|
|
|
if(crimes[i].type) {
|
|
|
|
if(crimes[i].type == type) {
|
|
|
|
crimes[i].position = *pos;
|
|
|
|
crimes[i].timer = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
lastCrime = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lastCrime < 10) {
|
|
|
|
crimes[lastCrime].type = type;
|
|
|
|
crimes[lastCrime].position = *pos;
|
|
|
|
crimes[lastCrime].timer = 0;
|
|
|
|
gMinTimeToNextReport[type] = m_nTimeOfRecentCrime + 500;
|
|
|
|
}
|
|
|
|
}
|
2019-08-27 20:46:41 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
void
|
2019-10-27 17:04:13 +00:00
|
|
|
cAudioManager::ResetAudioLogicTimers(uint32 timer)
|
|
|
|
{
|
|
|
|
gPornNextTime = timer;
|
|
|
|
gNextCryTime = timer;
|
|
|
|
gSawMillNextTime = timer;
|
|
|
|
gCellNextTime = timer;
|
|
|
|
gShopNextTime = timer;
|
|
|
|
gHomeNextTime = timer;
|
|
|
|
gAirportNextTime = timer;
|
|
|
|
gDocksNextTime = timer;
|
|
|
|
gCinemaNextTime = timer;
|
2019-08-27 18:50:59 +00:00
|
|
|
for(int32 i = 0; i < m_nAudioEntitiesTotal; i++) {
|
|
|
|
if(m_asAudioEntities[m_anAudioEntityIndices[i]].m_nType == AUDIOTYPE_PHYSICAL) {
|
|
|
|
CPed *ped = (CPed *)m_asAudioEntities[m_anAudioEntityIndices[i]].m_pEntity;
|
|
|
|
if(ped->IsPed()) {
|
|
|
|
ped->m_lastSoundStart = timer;
|
2019-10-25 16:39:26 +00:00
|
|
|
ped->m_soundStart = timer + m_anRandomTable[0] % 3000;
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ClearMissionAudio();
|
2019-08-29 22:44:57 +00:00
|
|
|
SampleManager.StopChannel(policeChannel);
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ResetPoliceRadio()
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SampleManager.GetChannelUsedFlag(policeChannel)) SampleManager.StopChannel(policeChannel);
|
2019-08-27 18:50:59 +00:00
|
|
|
InitialisePoliceRadio();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-27 20:46:41 +00:00
|
|
|
void
|
2019-08-29 22:44:57 +00:00
|
|
|
cAudioManager::ResetTimers(uint32 time)
|
2019-08-27 20:46:41 +00:00
|
|
|
{
|
2019-08-29 22:44:57 +00:00
|
|
|
if(m_bIsInitialised) {
|
|
|
|
m_bTimerJustReset = 1;
|
|
|
|
m_nTimer = time;
|
|
|
|
ClearRequestedQueue();
|
|
|
|
if(m_bActiveSampleQueue) {
|
|
|
|
m_bActiveSampleQueue = 0;
|
|
|
|
ClearRequestedQueue();
|
|
|
|
m_bActiveSampleQueue = 1;
|
|
|
|
} else {
|
|
|
|
m_bActiveSampleQueue = 1;
|
|
|
|
ClearRequestedQueue();
|
|
|
|
m_bActiveSampleQueue = 0;
|
|
|
|
}
|
|
|
|
ClearActiveSamples();
|
|
|
|
ClearMissionAudio();
|
|
|
|
SampleManager.StopChannel(policeChannel);
|
|
|
|
SampleManager.SetEffectsFadeVolume(0);
|
|
|
|
SampleManager.SetMusicFadeVolume(0);
|
|
|
|
MusicManager.ResetMusicAfterReload();
|
|
|
|
}
|
2019-08-27 20:46:41 +00:00
|
|
|
}
|
|
|
|
|
2019-09-21 20:10:35 +00:00
|
|
|
void
|
2019-08-27 18:50:59 +00:00
|
|
|
cAudioManager::Service()
|
|
|
|
{
|
2019-09-21 20:10:35 +00:00
|
|
|
GenerateIntegerRandomNumberTable();
|
|
|
|
if(m_bTimerJustReset) {
|
|
|
|
ResetAudioLogicTimers(m_nTimer);
|
|
|
|
MusicManager.ResetTimers(m_nTimer);
|
|
|
|
m_bTimerJustReset = 0;
|
|
|
|
}
|
|
|
|
if(m_bIsInitialised) {
|
|
|
|
m_bPreviousUserPause = m_bUserPause;
|
|
|
|
m_bUserPause = CTimer::GetIsUserPaused();
|
|
|
|
UpdateReflections();
|
|
|
|
ServiceSoundEffects();
|
|
|
|
MusicManager.Service();
|
|
|
|
}
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 20:46:41 +00:00
|
|
|
WRAPPER
|
2019-08-29 22:44:57 +00:00
|
|
|
void
|
|
|
|
cAudioManager::ServiceCollisions()
|
|
|
|
{
|
|
|
|
EAXJMP(0x5686D0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ServicePoliceRadio()
|
|
|
|
{
|
2019-09-21 20:10:35 +00:00
|
|
|
int32 wantedLevel = 0; // bug?;
|
2019-08-29 22:44:57 +00:00
|
|
|
static uint32 nLastSeen = 300;
|
|
|
|
|
|
|
|
if(m_bIsInitialised) {
|
|
|
|
if(!m_bUserPause) {
|
|
|
|
bool crimeReport = SetupCrimeReport();
|
|
|
|
wantedLevel = FindPlayerPed()->m_pWanted->m_nWantedLevel;
|
|
|
|
if(!crimeReport) {
|
|
|
|
if(wantedLevel) {
|
|
|
|
if(nLastSeen) {
|
|
|
|
--nLastSeen;
|
|
|
|
} else {
|
2019-10-25 16:39:26 +00:00
|
|
|
nLastSeen = m_anRandomTable[1] % 1000 + 2000;
|
2019-08-29 22:44:57 +00:00
|
|
|
SetupSuspectLastSeenReport();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ServicePoliceRadioChannel(wantedLevel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ServicePoliceRadioChannel(int32 wantedLevel)
|
|
|
|
{
|
|
|
|
bool processed = false;
|
|
|
|
uint32 sample;
|
|
|
|
int32 freq;
|
|
|
|
|
|
|
|
static int cWait = 0;
|
|
|
|
static bool bChannelOpen = 0;
|
|
|
|
static uint8 bMissionAudioPhysicalPlayingStatus = 0;
|
|
|
|
static int32 PoliceChannelFreq = 5500;
|
|
|
|
|
|
|
|
if(m_bIsInitialised) {
|
|
|
|
if(m_bUserPause) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SampleManager.GetChannelUsedFlag(policeChannel)) SampleManager.StopChannel(policeChannel);
|
|
|
|
if(g_nMissionAudioSfx != TOTAL_AUDIO_SAMPLES && bMissionAudioPhysicalPlayingStatus == 1 &&
|
|
|
|
SampleManager.IsStreamPlaying(1)) {
|
|
|
|
SampleManager.PauseStream(1, 1);
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(m_bPreviousUserPause && g_nMissionAudioSfx != TOTAL_AUDIO_SAMPLES &&
|
|
|
|
bMissionAudioPhysicalPlayingStatus == 1) {
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.PauseStream(0, 1);
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
2019-09-21 20:10:35 +00:00
|
|
|
if(!policeChannelTimer) bChannelOpen = 0;
|
2019-08-29 22:44:57 +00:00
|
|
|
if(cWait) {
|
|
|
|
--cWait;
|
|
|
|
return;
|
|
|
|
}
|
2019-09-21 20:10:35 +00:00
|
|
|
if(g_nMissionAudioSfx != TOTAL_AUDIO_SAMPLES && !bChannelOpen) {
|
2019-08-29 22:44:57 +00:00
|
|
|
if(g_nMissionAudioPlayingStatus) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(g_nMissionAudioPlayingStatus == 1 && !bMissionAudioPhysicalPlayingStatus &&
|
|
|
|
SampleManager.IsStreamPlaying(1)) {
|
2019-08-29 22:44:57 +00:00
|
|
|
bMissionAudioPhysicalPlayingStatus = 1;
|
|
|
|
}
|
|
|
|
if(bMissionAudioPhysicalPlayingStatus == 1) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(SampleManager.IsStreamPlaying(1)) {
|
2019-08-29 22:44:57 +00:00
|
|
|
DoPoliceRadioCrackle();
|
|
|
|
} else {
|
|
|
|
bMissionAudioPhysicalPlayingStatus = 2;
|
|
|
|
g_nMissionAudioPlayingStatus = 2;
|
|
|
|
g_nMissionAudioSfx = TOTAL_AUDIO_SAMPLES;
|
|
|
|
cWait = 30;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if(!SampleManager.GetChannelUsedFlag(policeChannel)) {
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.PreloadStreamedFile(g_nMissionAudioSfx, 1);
|
|
|
|
SampleManager.SetStreamedVolumeAndPan(maxVolume, 63, 1, 1);
|
|
|
|
SampleManager.StartPreloadedStreamedFile(1);
|
2019-08-29 22:44:57 +00:00
|
|
|
g_nMissionAudioPlayingStatus = 1;
|
|
|
|
bMissionAudioPhysicalPlayingStatus = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(bChannelOpen) DoPoliceRadioCrackle();
|
2019-10-25 16:39:26 +00:00
|
|
|
if((g_nMissionAudioSfx == TOTAL_AUDIO_SAMPLES || g_nMissionAudioPlayingStatus != 1) &&
|
2019-09-21 20:10:35 +00:00
|
|
|
!SampleManager.GetChannelUsedFlag(policeChannel) && policeChannelTimer) {
|
|
|
|
if(policeChannelTimer) {
|
2019-09-26 18:47:04 +00:00
|
|
|
sample = crimesSamples[policeChannelCounterSeconds];
|
2019-09-21 20:10:35 +00:00
|
|
|
--policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelCounterSeconds = (policeChannelCounterSeconds + 1) % 60;
|
2019-08-29 22:44:57 +00:00
|
|
|
} else {
|
|
|
|
sample = TOTAL_AUDIO_SAMPLES;
|
|
|
|
}
|
|
|
|
if(!wantedLevel) {
|
|
|
|
if(gSpecialSuspectLastSeenReport) {
|
|
|
|
gSpecialSuspectLastSeenReport = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
} else if((unsigned int)(sample - 212) <= 2 || sample == TOTAL_AUDIO_SAMPLES) {
|
2019-08-29 22:44:57 +00:00
|
|
|
bChannelOpen = 0;
|
|
|
|
processed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(sample == TOTAL_AUDIO_SAMPLES) {
|
|
|
|
if(!processed) cWait = 30;
|
|
|
|
} else {
|
|
|
|
SampleManager.InitialiseChannel(policeChannel, sample, 0);
|
|
|
|
switch(sample) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_POLICE_RADIO_MESSAGE_NOISE_1:
|
|
|
|
case SFX_POLICE_RADIO_MESSAGE_NOISE_2:
|
|
|
|
case SFX_POLICE_RADIO_MESSAGE_NOISE_3:
|
2019-10-25 16:39:26 +00:00
|
|
|
freq = m_anRandomTable[4] % 2000 + 10025;
|
2019-08-29 22:44:57 +00:00
|
|
|
bChannelOpen = bChannelOpen == 0;
|
|
|
|
break;
|
2019-10-25 16:39:26 +00:00
|
|
|
default: freq = SampleManager.GetSampleBaseFrequency(sample); break;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
PoliceChannelFreq = freq;
|
|
|
|
SampleManager.SetChannelFrequency(policeChannel, freq);
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.SetChannelVolume(policeChannel, 100);
|
2019-08-29 22:44:57 +00:00
|
|
|
SampleManager.SetChannelPan(policeChannel, 63);
|
|
|
|
SampleManager.SetChannelLoopCount(policeChannel, 1);
|
|
|
|
SampleManager.SetChannelLoopPoints(policeChannel, 0, -1);
|
|
|
|
SampleManager.StartChannel(policeChannel);
|
|
|
|
}
|
|
|
|
if(processed) ResetPoliceRadio();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::ServiceSoundEffects()
|
|
|
|
{
|
|
|
|
uint32 timeOfRecentCrime;
|
|
|
|
cAudioScriptObject *object;
|
|
|
|
|
|
|
|
timeOfRecentCrime = m_nTimeOfRecentCrime;
|
|
|
|
++m_nTimeOfRecentCrime;
|
|
|
|
if(timeOfRecentCrime % 5)
|
|
|
|
field_2 = 0;
|
|
|
|
else
|
|
|
|
field_2 = 1;
|
|
|
|
if(m_bUserPause && !m_bPreviousUserPause) {
|
2019-10-26 14:47:57 +00:00
|
|
|
for(int32 i = 0; i < allChannels; i++) SampleManager.StopChannel(i);
|
2019-08-29 22:44:57 +00:00
|
|
|
|
|
|
|
ClearRequestedQueue();
|
|
|
|
if(m_bActiveSampleQueue) {
|
|
|
|
m_bActiveSampleQueue = 0;
|
|
|
|
ClearRequestedQueue();
|
|
|
|
m_bActiveSampleQueue = 1;
|
|
|
|
} else {
|
|
|
|
m_bActiveSampleQueue = 1;
|
|
|
|
ClearRequestedQueue();
|
|
|
|
m_bActiveSampleQueue = 0;
|
|
|
|
}
|
|
|
|
ClearActiveSamples();
|
|
|
|
}
|
|
|
|
m_bActiveSampleQueue = m_bActiveSampleQueue != 1;
|
|
|
|
ProcessReverb();
|
|
|
|
ProcessSpecial();
|
|
|
|
ClearRequestedQueue();
|
|
|
|
InterrogateAudioEntities();
|
|
|
|
m_sPedComments.Process();
|
|
|
|
ServicePoliceRadio();
|
|
|
|
ServiceCollisions();
|
|
|
|
AddReleasingSounds();
|
|
|
|
ProcessMissionAudio();
|
2019-10-19 11:21:35 +00:00
|
|
|
AdjustSamplesVolume();
|
2019-08-29 22:44:57 +00:00
|
|
|
ProcessActiveQueues();
|
|
|
|
for(int32 i = 0; i < m_nScriptObjectEntityTotal; ++i) {
|
2019-10-25 16:39:26 +00:00
|
|
|
object = (cAudioScriptObject *)m_asAudioEntities[m_anScriptObjectEntityIndices[i]].m_pEntity;
|
2019-10-26 14:47:57 +00:00
|
|
|
delete object;
|
|
|
|
m_asAudioEntities[m_anScriptObjectEntityIndices[i]].m_pEntity = nil;
|
2019-08-29 22:44:57 +00:00
|
|
|
DestroyEntity(m_anScriptObjectEntityIndices[i]);
|
|
|
|
}
|
|
|
|
m_nScriptObjectEntityTotal = 0;
|
|
|
|
}
|
2019-09-21 20:10:35 +00:00
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
int8
|
|
|
|
cAudioManager::SetCurrent3DProvider(uint8 which)
|
|
|
|
{
|
|
|
|
if(!m_bIsInitialised) return -1;
|
|
|
|
for(uint8 i = 0; i < m_bActiveSamples + 1; ++i) SampleManager.StopChannel(i);
|
|
|
|
ClearRequestedQueue();
|
|
|
|
if(m_bActiveSampleQueue)
|
|
|
|
m_bActiveSampleQueue = 0;
|
|
|
|
else
|
|
|
|
m_bActiveSampleQueue = 1;
|
|
|
|
ClearRequestedQueue();
|
|
|
|
ClearActiveSamples();
|
|
|
|
int8 current = SampleManager.SetCurrent3DProvider(which);
|
|
|
|
if(current > 0) {
|
|
|
|
m_bActiveSamples = SampleManager.GetMaximumSupportedChannels();
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_bActiveSamples > 1) --m_bActiveSamples;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
return current;
|
|
|
|
}
|
2019-08-27 18:50:59 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::SetDynamicAcousticModelingStatus(bool status)
|
|
|
|
{
|
|
|
|
m_bDynamicAcousticModelingStatus = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::SetEffectsFadeVolume(uint8 volume) const
|
|
|
|
{
|
|
|
|
SampleManager.SetEffectsFadeVolume(volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::SetEffectsMasterVolume(uint8 volume) const
|
|
|
|
{
|
|
|
|
SampleManager.SetEffectsMasterVolume(volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-10-27 17:04:13 +00:00
|
|
|
cAudioManager::SetEntityStatus(int32 id, uint8 status)
|
2019-08-27 18:50:59 +00:00
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_bIsInitialised && id >= 0 && id < totalAudioEntitiesSlots && m_asAudioEntities[id].m_bIsUsed) {
|
2019-09-21 20:10:35 +00:00
|
|
|
m_asAudioEntities[id].m_bStatus = status;
|
|
|
|
}
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32
|
|
|
|
cAudioManager::SetLoopingCollisionRequestedSfxFreqAndGetVol(cAudioCollision *audioCollision)
|
|
|
|
{
|
|
|
|
uint8 surface1 = audioCollision->m_bSurface1;
|
|
|
|
uint8 surface2 = audioCollision->m_bSurface2;
|
|
|
|
int32 vol;
|
|
|
|
float ratio;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(surface1 == SURFACE_GRASS || surface2 == SURFACE_GRASS || surface1 == SURFACE_HEDGE ||
|
|
|
|
surface2 == SURFACE_HEDGE) {
|
|
|
|
ratio = GetCollisionRatio(audioCollision->m_fIntensity2, 0.0001f, 0.09f, 0.0899f);
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_RAIN;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 13000.f * ratio + 35000;
|
|
|
|
vol = 50.f * ratio;
|
|
|
|
} else {
|
|
|
|
if(surface1 == SURFACE_PUDDLE || surface2 == SURFACE_PUDDLE) {
|
|
|
|
ratio = GetCollisionRatio(audioCollision->m_fIntensity2, 0.0001f, 0.09f, 0.0899f);
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_BOAT_WATER_LOOP;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 6050.f * ratio + 16000;
|
|
|
|
vol = 30.f * ratio;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if(surface1 == SURFACE_DIRT || surface2 == SURFACE_DIRT || surface1 == SURFACE_DIRTTRACK ||
|
|
|
|
surface2 == SURFACE_DIRTTRACK || surface1 == SURFACE_SAND || surface2 == SURFACE_SAND) {
|
|
|
|
ratio = GetCollisionRatio(audioCollision->m_fIntensity2, 0.0001f, 0.09f, 0.0899f);
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_GRAVEL_SKID;
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 6000.f * ratio + 10000;
|
|
|
|
vol = 50.f * ratio;
|
2019-10-25 16:39:26 +00:00
|
|
|
} else {
|
|
|
|
if(surface1 == SURFACE_FLESH || surface2 == SURFACE_FLESH) { return 0; }
|
|
|
|
ratio = GetCollisionRatio(audioCollision->m_fIntensity2, 0.0001f, 0.09f, 0.0899f);
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_SCRAPE_CAR_1;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency = 10000.f * ratio + 10000;
|
|
|
|
vol = 40.f * ratio;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
2019-08-29 22:44:57 +00:00
|
|
|
if(audioCollision->m_nBaseVolume < 2) vol = audioCollision->m_nBaseVolume * vol / 2;
|
|
|
|
return vol;
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::SetMissionAudioLocation(float x, float y, float z)
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) {
|
|
|
|
m_sMissionAudio.field_12 = 0;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sMissionAudio.m_vecPos = {x, y, z};
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::SetMissionScriptPoliceAudio(int32 sfx) const
|
|
|
|
{
|
|
|
|
if(m_bIsInitialised) {
|
|
|
|
if(g_nMissionAudioPlayingStatus != 1) {
|
|
|
|
g_nMissionAudioPlayingStatus = 0;
|
|
|
|
g_nMissionAudioSfx = sfx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::SetMusicFadeVolume(uint8 volume) const
|
|
|
|
{
|
|
|
|
SampleManager.SetMusicFadeVolume(volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::SetMusicMasterVolume(uint8 volume) const
|
|
|
|
{
|
|
|
|
SampleManager.SetMusicMasterVolume(volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::SetSpeakerConfig(int32 conf) const
|
|
|
|
{
|
2019-09-21 20:10:35 +00:00
|
|
|
SampleManager.SetSpeakerConfig(conf);
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cAudioManager::SetUpLoopingCollisionSound(cAudioCollision *col, uint8 counter)
|
|
|
|
{
|
|
|
|
if(col->m_fIntensity2 > 0.0016f) {
|
|
|
|
uint8 emittingVol = SetLoopingCollisionRequestedSfxFreqAndGetVol(col);
|
|
|
|
if(emittingVol) {
|
|
|
|
m_sQueueSample.m_fDistance = Sqrt(col->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 60.f, m_sQueueSample.m_fDistance);
|
2019-08-29 22:44:57 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = counter;
|
|
|
|
m_sQueueSample.m_vecPos = col->m_vecPosition;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 7;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd =
|
|
|
|
SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-29 22:44:57 +00:00
|
|
|
m_sQueueSample.field_48 = 4.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 5;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-21 20:10:35 +00:00
|
|
|
void
|
|
|
|
cAudioManager::SetUpOneShotCollisionSound(cAudioCollision *col)
|
|
|
|
{
|
2019-09-24 11:33:16 +00:00
|
|
|
static constexpr int32 gOneShotCol[] = {
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_COL_TARMAC_1, SFX_COL_TARMAC_1, SFX_COL_GRASS_1,
|
|
|
|
SFX_COL_GRAVEL_1, SFX_COL_MUD_1, SFX_COL_TARMAC_1,
|
|
|
|
SFX_COL_CAR_1, SFX_COL_GRASS_1, SFX_COL_SCAFFOLD_POLE_1,
|
|
|
|
SFX_COL_GARAGE_DOOR_1, SFX_COL_CAR_PANEL_1, SFX_COL_THICK_METAL_PLATE_1,
|
|
|
|
SFX_COL_SCAFFOLD_POLE_1, SFX_COL_LAMP_POST_1, SFX_COL_HYDRANT_1,
|
|
|
|
SFX_COL_HYDRANT_1, SFX_COL_METAL_CHAIN_FENCE_1, SFX_COL_PED_1,
|
|
|
|
SFX_COL_SAND_1, SFX_SPLASH_1, SFX_COL_WOOD_CRATES_1,
|
|
|
|
SFX_COL_WOOD_BENCH_1, SFX_COL_WOOD_SOLID_1, SFX_COL_GRASS_1,
|
|
|
|
SFX_COL_GRASS_1, SFX_COL_VEG_1, SFX_COL_TARMAC_1,
|
|
|
|
SFX_COL_CONTAINER_1, SFX_COL_NEWS_VENDOR_1, SFX_TYRE_BUMP,
|
|
|
|
SFX_COL_CARDBOARD_1, SFX_COL_TARMAC_1, SFX_COL_GATE};
|
2019-09-24 11:33:16 +00:00
|
|
|
|
2019-09-21 20:10:35 +00:00
|
|
|
int16 s1;
|
|
|
|
int16 s2;
|
|
|
|
|
|
|
|
int32 emittingVol;
|
|
|
|
float ratio;
|
|
|
|
|
|
|
|
static uint16 counter = 28;
|
|
|
|
|
|
|
|
for(int32 i = 0; i < 2; i++) {
|
|
|
|
if(i) {
|
|
|
|
s1 = col->m_bSurface2;
|
|
|
|
s2 = col->m_bSurface1;
|
|
|
|
} else {
|
|
|
|
s1 = col->m_bSurface1;
|
|
|
|
s2 = col->m_bSurface2;
|
|
|
|
}
|
|
|
|
ratio = GetCollisionOneShotRatio(s1, col->m_fIntensity1);
|
|
|
|
if(s1 == SURFACE_METAL6 && s2 == SURFACE_FLESH) ratio = 0.25f * ratio;
|
|
|
|
if(s1 == SURFACE_METAL6 && ratio < 0.6f) {
|
|
|
|
s1 = SURFACE_BILLBOARD;
|
|
|
|
ratio = min(1.f, 2.f * ratio);
|
|
|
|
}
|
|
|
|
emittingVol = 40.f * ratio;
|
|
|
|
if(emittingVol) {
|
|
|
|
m_sQueueSample.m_fDistance = Sqrt(col->m_fDistance);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 60.f, m_sQueueSample.m_fDistance);
|
2019-09-21 20:10:35 +00:00
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_nSampleIndex = gOneShotCol[s1];
|
|
|
|
switch(m_sQueueSample.m_nSampleIndex) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_TARMAC_1:
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[3] % 5;
|
2019-09-21 20:10:35 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_CAR_PANEL_1:
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[0] % 6;
|
2019-09-21 20:10:35 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_LAMP_POST_1:
|
2019-09-21 20:10:35 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[1] & 1;
|
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_METAL_CHAIN_FENCE_1:
|
2019-09-21 20:10:35 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[3] & 3;
|
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_PED_1:
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[4] % 5;
|
2019-09-21 20:10:35 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_WOOD_CRATES_1:
|
2019-09-21 20:10:35 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[4] & 3;
|
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_WOOD_BENCH_1:
|
2019-09-21 20:10:35 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[1] & 3;
|
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_VEG_1:
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[2] % 5;
|
2019-09-21 20:10:35 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_NEWS_VENDOR_1:
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[2] % 3;
|
2019-09-21 20:10:35 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_CAR_1:
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[1] % 5;
|
2019-09-21 20:10:35 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case SFX_COL_CARDBOARD_1:
|
2019-09-21 20:10:35 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex += m_anRandomTable[3] & 1;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
switch(s1) {
|
|
|
|
case SURFACE_GLASS: m_sQueueSample.m_nFrequency = 13500; break;
|
|
|
|
case SURFACE_METAL15: m_sQueueSample.m_nFrequency = 8819; break;
|
|
|
|
case SURFACE_PUDDLE:
|
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-25 16:39:26 +00:00
|
|
|
2 * SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-09-21 20:10:35 +00:00
|
|
|
break;
|
|
|
|
case SURFACE_TIRE: m_sQueueSample.m_nFrequency = 6000; break;
|
|
|
|
case SURFACE_HARD24: m_sQueueSample.m_nFrequency = 8000; break;
|
|
|
|
default:
|
|
|
|
m_sQueueSample.m_nFrequency =
|
2019-10-25 16:39:26 +00:00
|
|
|
SampleManager.GetSampleBaseFrequency(m_sQueueSample.m_nSampleIndex);
|
2019-09-21 20:10:35 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nFrequency += RandomDisplacement(m_sQueueSample.m_nFrequency / 16);
|
2019-09-21 20:10:35 +00:00
|
|
|
m_sQueueSample.m_counter = counter++;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(counter >= 255) counter = 28;
|
2019-09-21 20:10:35 +00:00
|
|
|
m_sQueueSample.m_vecPos = col->m_vecPosition;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 11;
|
|
|
|
m_sQueueSample.m_nLoopCount = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopStart = 0;
|
|
|
|
m_sQueueSample.m_nLoopEnd = -1;
|
|
|
|
m_sQueueSample.field_48 = 4.0;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 60.0;
|
|
|
|
m_sQueueSample.field_56 = 1;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::SetupCrimeReport()
|
|
|
|
{
|
2019-09-27 21:19:43 +00:00
|
|
|
int16 audioZoneId;
|
|
|
|
CZone *zone;
|
|
|
|
int j;
|
|
|
|
float rangeX;
|
|
|
|
float rangeY;
|
|
|
|
float halfX;
|
|
|
|
float halfY;
|
|
|
|
float quarterX;
|
|
|
|
float quarterY;
|
|
|
|
int i;
|
|
|
|
int32 sampleIndex;
|
|
|
|
bool processed = false;
|
2019-09-26 18:47:04 +00:00
|
|
|
|
2019-09-27 21:19:43 +00:00
|
|
|
if(MusicManager.m_nMusicMode == 2) return 0;
|
|
|
|
|
|
|
|
if(60 - policeChannelTimer <= 9) {
|
|
|
|
AgeCrimes();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
for(i = 0; i < 10; i++) {
|
2019-09-27 21:19:43 +00:00
|
|
|
if(crimes[i].type) break;
|
2019-10-25 16:39:26 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 21:19:43 +00:00
|
|
|
if(i == 10) return 0;
|
|
|
|
audioZoneId = CTheZones::FindAudioZone(&crimes[i].position);
|
|
|
|
if(audioZoneId >= 0 && audioZoneId < 36) {
|
|
|
|
j = 0;
|
|
|
|
zone = &CTheZones::ZoneArray[CTheZones::AudioZoneArray[audioZoneId]];
|
|
|
|
while(strcmp(zone->name, ZoneSfx[j].m_aName) != 0) {
|
|
|
|
++j;
|
2019-10-25 16:39:26 +00:00
|
|
|
if(j >= 36) {
|
2019-09-27 21:19:43 +00:00
|
|
|
crimes[i].type = 0;
|
|
|
|
AgeCrimes();
|
|
|
|
return 1;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
sampleIndex = ZoneSfx[j].m_nSampleIndex;
|
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(j < 36) {
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
m_anRandomTable[4] % 3 + SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
m_anRandomTable[0] % 3 + SFX_WEVE_GOT;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
(m_anRandomTable[1] & 1) + SFX_A_10_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
switch(crimes[i].type) {
|
|
|
|
case CRIME_PED_BURNED: crimes[i].type = 2; break;
|
|
|
|
case CRIME_COP_BURNED: crimes[i].type = 3; break;
|
|
|
|
case CRIME_VEHICLE_BURNED: crimes[i].type = 6; break;
|
|
|
|
case CRIME_DESTROYED_CESSNA: crimes[i].type = 12; break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
crimes[i].type + SFX_A_10_2;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-26 23:06:10 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = SFX_IN;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
2019-10-26 23:06:10 +00:00
|
|
|
if(sampleIndex == SFX_POLICE_RADIO_SHORESIDE_VALE &&
|
2019-10-25 16:39:26 +00:00
|
|
|
(strcmp(zone->name, SubZo2Label) == 0 || strcmp(zone->name, SubZo3Label) == 0)) {
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-26 23:06:10 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = SFX_NORTH;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer == 60) {
|
|
|
|
crimes[i].type = 0;
|
|
|
|
AgeCrimes();
|
|
|
|
return 1;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-10-26 23:06:10 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = SFX_EAST;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
rangeX = zone->maxx - zone->minx;
|
|
|
|
rangeY = zone->maxy - zone->miny;
|
|
|
|
halfX = 0.5f * rangeX + zone->minx;
|
|
|
|
halfY = 0.5f * rangeY + zone->miny;
|
|
|
|
quarterX = 0.25f * rangeX;
|
|
|
|
quarterY = 0.25f * rangeY;
|
|
|
|
if(halfY + quarterY < crimes[i].position.y) {
|
|
|
|
if(halfY - quarterY > crimes[i].position.y) {
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_SOUTH;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
processed = 1;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
} else if(policeChannelTimer != 60) {
|
2019-10-26 23:06:10 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = SFX_NORTH;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
processed = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(halfX + quarterX < crimes[i].position.x) {
|
|
|
|
if(halfX - quarterX <= crimes[i].position.x) {
|
|
|
|
if(processed || policeChannelTimer == 60) {
|
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = sampleIndex;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-25 16:39:26 +00:00
|
|
|
m_anRandomTable[2] % 3 +
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = TOTAL_AUDIO_SAMPLES;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
crimes[i].type = 0;
|
|
|
|
AgeCrimes();
|
|
|
|
return 1;
|
|
|
|
}
|
2019-10-26 23:06:10 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = SFX_CENTRAL;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-26 23:06:10 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = SFX_WEST;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
} else if(policeChannelTimer != 60) {
|
2019-10-26 23:06:10 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = SFX_EAST;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] = sampleIndex;
|
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
m_anRandomTable[2] % 3 + SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] = TOTAL_AUDIO_SAMPLES;
|
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
crimes[i].type = 0;
|
|
|
|
AgeCrimes();
|
|
|
|
return 1;
|
2019-08-27 18:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WRAPPER
|
2019-09-27 21:19:43 +00:00
|
|
|
bool cAudioManager::SetupJumboEngineSound(uint8, int32) { EAXJMP(0x56F140); }
|
2019-08-27 18:50:59 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::SetupJumboFlySound(uint8 emittingVol)
|
|
|
|
{
|
|
|
|
if(m_sQueueSample.m_fDistance >= 440.0f) return 0;
|
|
|
|
|
2019-09-21 20:10:35 +00:00
|
|
|
int32 vol = ComputeVolume(emittingVol, 440.0f, m_sQueueSample.m_fDistance);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bVolume = vol;
|
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_JUMBO_DIST_FLY;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_counter = 0;
|
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_JUMBO_DIST_FLY);
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_fSoundIntensity = 440.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_48 = 4.0f;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.field_76 = 5;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-27 18:50:59 +00:00
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
cAudioManager::SetupJumboRumbleSound(uint8 emittingVol)
|
2019-07-08 19:44:32 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_sQueueSample.m_fDistance >= 240.f) return 0;
|
|
|
|
|
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 240.f, m_sQueueSample.m_fDistance);
|
|
|
|
|
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 5;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_JUMBO_RUMBLE;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 1;
|
|
|
|
m_sQueueSample.field_16 = 1;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_JUMBO_RUMBLE);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.field_48 = 4.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 240.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 12;
|
|
|
|
m_sQueueSample.m_bOffset = 0;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
m_sQueueSample.m_counter = 6;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_JUMBO_RUMBLE;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_nFrequency += 200;
|
|
|
|
m_sQueueSample.m_bOffset = maxVolume;
|
|
|
|
AddSampleToRequestedQueue();
|
|
|
|
}
|
|
|
|
return 1;
|
2019-07-08 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
bool
|
2019-08-27 18:50:59 +00:00
|
|
|
cAudioManager::SetupJumboTaxiSound(uint8 vol)
|
2019-08-16 18:17:15 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_sQueueSample.m_fDistance >= 180.f) return 0;
|
|
|
|
|
2019-10-12 22:35:01 +00:00
|
|
|
uint8 emittingVol = (vol >> 1) + ((vol >> 1) * m_sQueueSample.m_fDistance / 180);
|
2019-08-27 18:50:59 +00:00
|
|
|
|
2019-10-25 16:39:26 +00:00
|
|
|
if(m_sQueueSample.m_fDistance / 180 < 0.7f) emittingVol -= emittingVol * gJumboVolOffsetPercentage / 100;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 180.f, m_sQueueSample.m_fDistance);
|
|
|
|
|
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 1;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_JUMBO_TAXI;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.m_nFrequency = GetJumboTaxiFreq();
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.field_48 = 4.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 180.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 4;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
2019-08-16 18:17:15 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::SetupJumboWhineSound(uint8 emittingVol, int32 freq)
|
2019-07-16 15:03:37 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_sQueueSample.m_fDistance >= 170.f) return 0;
|
2019-07-16 15:03:37 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bVolume = ComputeVolume(emittingVol, 170.f, m_sQueueSample.m_fDistance);
|
|
|
|
|
|
|
|
if(m_sQueueSample.m_bVolume) {
|
|
|
|
m_sQueueSample.m_counter = 2;
|
2019-10-26 23:06:10 +00:00
|
|
|
m_sQueueSample.m_nSampleIndex = SFX_JUMBO_WHINE;
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.m_bBankIndex = 0;
|
|
|
|
m_sQueueSample.m_bIsDistant = 0;
|
|
|
|
m_sQueueSample.field_16 = 1;
|
|
|
|
m_sQueueSample.m_nFrequency = freq;
|
|
|
|
m_sQueueSample.m_nLoopCount = 0;
|
|
|
|
m_sQueueSample.m_bEmittingVolume = emittingVol;
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(m_sQueueSample.m_nSampleIndex);
|
|
|
|
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(m_sQueueSample.m_nSampleIndex);
|
2019-08-27 18:50:59 +00:00
|
|
|
m_sQueueSample.field_48 = 4.0f;
|
|
|
|
m_sQueueSample.m_fSoundIntensity = 170.0f;
|
|
|
|
m_sQueueSample.field_56 = 0;
|
|
|
|
m_sQueueSample.field_76 = 4;
|
|
|
|
m_sQueueSample.m_bReverbFlag = 1;
|
|
|
|
m_sQueueSample.m_bRequireReflection = 0;
|
|
|
|
AddSampleToRequestedQueue();
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
2019-08-27 18:50:59 +00:00
|
|
|
return 1;
|
2019-07-16 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
2019-07-31 15:54:18 +00:00
|
|
|
void
|
|
|
|
cAudioManager::SetupPedComments(cPedParams *params, uint32 sound)
|
|
|
|
{
|
|
|
|
CPed *ped = params->m_pPed;
|
|
|
|
uint8 emittingVol;
|
|
|
|
float maxDist;
|
|
|
|
float soundIntensity;
|
|
|
|
tPedComment pedComment;
|
|
|
|
|
|
|
|
if(ped) {
|
|
|
|
switch(sound) {
|
2019-10-26 23:06:10 +00:00
|
|
|
case SOUND_AMMUNATION_WELCOME_1: pedComment.m_nSampleIndex = SFX_AMMU_D; break;
|
|
|
|
case SOUND_AMMUNATION_WELCOME_2: pedComment.m_nSampleIndex = SFX_AMMU_E; break;
|
|
|
|
case SOUND_AMMUNATION_WELCOME_3: pedComment.m_nSampleIndex = SFX_AMMU_F; break;
|
2019-07-31 15:54:18 +00:00
|
|
|
default:
|
|
|
|
pedComment.m_nSampleIndex = GetPedCommentSfx(ped, sound);
|
|
|
|
if(pedComment.m_nSampleIndex == NO_SAMPLE) return;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
maxDist = 2500.f;
|
|
|
|
soundIntensity = 50.f;
|
|
|
|
|
|
|
|
if(params->m_fDistance < maxDist) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
if(sound != SOUND_PAGER) {
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_AMMUNATION_WELCOME_1:
|
|
|
|
case SOUND_AMMUNATION_WELCOME_2:
|
|
|
|
case SOUND_AMMUNATION_WELCOME_3: emittingVol = maxVolume; break;
|
|
|
|
default:
|
2019-10-25 16:39:26 +00:00
|
|
|
if(CWorld::GetIsLineOfSightClear(TheCamera.GetGameCamPosition(),
|
|
|
|
m_sQueueSample.m_vecPos, 1, 0, 0, 0, 0, 0,
|
|
|
|
0)) {
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = maxVolume;
|
|
|
|
} else {
|
|
|
|
emittingVol = 31;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(emittingVol, soundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-31 15:54:18 +00:00
|
|
|
pedComment.field_25 = 10;
|
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
pedComment.m_entityIndex = m_sQueueSample.m_nEntityIndex;
|
|
|
|
pedComment.m_vecPos = m_sQueueSample.m_vecPos;
|
2019-07-31 15:54:18 +00:00
|
|
|
pedComment.m_fDistance = m_sQueueSample.m_fDistance;
|
|
|
|
pedComment.m_bVolume = m_sQueueSample.m_bVolume;
|
|
|
|
m_sPedComments.Add(&pedComment);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_PED_HELI_PLAYER_FOUND:
|
|
|
|
maxDist = 160000.f;
|
|
|
|
soundIntensity = 400.f;
|
2019-10-25 16:39:26 +00:00
|
|
|
pedComment.m_nSampleIndex = m_anRandomTable[m_sQueueSample.m_nEntityIndex & 3] % 29 +
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_HELI_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SOUND_PED_BODYCAST_HIT:
|
2019-10-27 17:04:13 +00:00
|
|
|
if(CTimer::GetTimeInMilliseconds() <= gNextCryTime) return;
|
2019-07-31 15:54:18 +00:00
|
|
|
maxDist = 2500.f;
|
|
|
|
soundIntensity = 50.f;
|
2019-10-27 17:04:13 +00:00
|
|
|
gNextCryTime = CTimer::GetTimeInMilliseconds() + 500;
|
2019-07-31 15:54:18 +00:00
|
|
|
pedComment.m_nSampleIndex =
|
2019-10-26 23:06:10 +00:00
|
|
|
(m_anRandomTable[m_sQueueSample.m_nEntityIndex & 3] & 3) + SFX_PLASTER_BLOKE_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SOUND_INJURED_PED_MALE_OUCH:
|
|
|
|
case SOUND_8A:
|
|
|
|
maxDist = 2500.f;
|
|
|
|
soundIntensity = 50.f;
|
2019-10-25 16:39:26 +00:00
|
|
|
pedComment.m_nSampleIndex = m_anRandomTable[m_sQueueSample.m_nEntityIndex & 3] % 15 +
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_GENERIC_MALE_GRUNT_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
case SOUND_INJURED_PED_FEMALE:
|
|
|
|
maxDist = 2500.f;
|
|
|
|
soundIntensity = 50.f;
|
2019-10-25 16:39:26 +00:00
|
|
|
pedComment.m_nSampleIndex = m_anRandomTable[m_sQueueSample.m_nEntityIndex & 3] % 11 +
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_GENERIC_FEMALE_GRUNT_1;
|
2019-07-31 15:54:18 +00:00
|
|
|
break;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(params->m_fDistance < maxDist) {
|
|
|
|
CalculateDistance((bool *)params, params->m_fDistance);
|
|
|
|
if(sound != SOUND_PAGER) {
|
|
|
|
switch(sound) {
|
|
|
|
case SOUND_AMMUNATION_WELCOME_1:
|
|
|
|
case SOUND_AMMUNATION_WELCOME_2:
|
|
|
|
case SOUND_AMMUNATION_WELCOME_3: emittingVol = maxVolume; break;
|
|
|
|
default:
|
2019-10-25 16:39:26 +00:00
|
|
|
if(CWorld::GetIsLineOfSightClear(TheCamera.GetGameCamPosition(),
|
|
|
|
m_sQueueSample.m_vecPos, 1, 0, 0, 0, 0, 0,
|
|
|
|
0)) {
|
2019-07-31 15:54:18 +00:00
|
|
|
emittingVol = maxVolume;
|
|
|
|
} else {
|
|
|
|
emittingVol = 31;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2019-10-25 16:39:26 +00:00
|
|
|
m_sQueueSample.m_bVolume =
|
|
|
|
ComputeVolume(emittingVol, soundIntensity, m_sQueueSample.m_fDistance);
|
2019-07-31 15:54:18 +00:00
|
|
|
pedComment.field_25 = 10;
|
|
|
|
if(m_sQueueSample.m_bVolume) {
|
2019-08-16 18:17:15 +00:00
|
|
|
pedComment.m_entityIndex = m_sQueueSample.m_nEntityIndex;
|
|
|
|
pedComment.m_vecPos = m_sQueueSample.m_vecPos;
|
2019-07-31 15:54:18 +00:00
|
|
|
pedComment.m_fDistance = m_sQueueSample.m_fDistance;
|
|
|
|
pedComment.m_bVolume = m_sQueueSample.m_bVolume;
|
|
|
|
m_sPedComments.Add(&pedComment);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
void
|
|
|
|
cAudioManager::SetupSuspectLastSeenReport()
|
|
|
|
{
|
2019-10-27 17:39:17 +00:00
|
|
|
CVehicle *veh;
|
2019-09-27 21:19:43 +00:00
|
|
|
uint8 color1;
|
|
|
|
int32 main_color;
|
|
|
|
int32 sample;
|
|
|
|
|
|
|
|
int32 color_pre_modifier;
|
|
|
|
int32 color_post_modifier;
|
|
|
|
|
2019-10-27 17:39:17 +00:00
|
|
|
constexpr int32 gCarColourTable[][3] = {
|
2019-10-29 15:08:51 +00:00
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_BLACK, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_WHITE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_BLUE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_RED, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, SFX_POLICE_RADIO_BLUE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_PURPLE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_YELLOW, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_BRIGHT, SFX_POLICE_RADIO_BLUE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, SFX_POLICE_RADIO_BLUE, SFX_POLICE_RADIO_GREY},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, SFX_POLICE_RADIO_RED, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_RED, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_RED, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_RED, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_RED, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_RED, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_RED, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_ORANGE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_ORANGE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_ORANGE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_ORANGE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_ORANGE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_ORANGE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_YELLOW, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_YELLOW, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_YELLOW, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_YELLOW, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_YELLOW, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_YELLOW, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_GREEN, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_GREEN, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_GREEN, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_GREEN, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_GREEN, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_GREEN, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_BLUE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_BLUE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_BLUE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_BLUE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_BLUE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_BLUE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_PURPLE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_PURPLE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_PURPLE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_PURPLE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_PURPLE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_PURPLE, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_SILVER, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_SILVER, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_SILVER, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_SILVER, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_SILVER, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{TOTAL_AUDIO_SAMPLES, SFX_POLICE_RADIO_SILVER, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_LIGHT, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES},
|
|
|
|
{SFX_POLICE_RADIO_DARK, TOTAL_AUDIO_SAMPLES, TOTAL_AUDIO_SAMPLES}
|
|
|
|
};
|
|
|
|
|
|
|
|
if(MusicManager.m_nMusicMode != MUSICMODE_CUTSCENE) {
|
2019-10-27 17:39:17 +00:00
|
|
|
veh = FindPlayerVehicle();
|
|
|
|
if(veh) {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(60 - policeChannelTimer > 9) {
|
2019-10-27 17:39:17 +00:00
|
|
|
color1 = veh->m_currentColour1;
|
2019-10-29 15:08:51 +00:00
|
|
|
if(color1 >= ARRAY_SIZE(gCarColourTable)) {
|
2019-09-27 21:19:43 +00:00
|
|
|
debug("\n *** UNKNOWN CAR COLOUR %d *** ", color1);
|
|
|
|
} else {
|
2019-10-27 17:39:17 +00:00
|
|
|
main_color = gCarColourTable[color1][1];
|
|
|
|
color_pre_modifier = gCarColourTable[color1][0];
|
|
|
|
color_post_modifier = gCarColourTable[color1][2];
|
|
|
|
switch(veh->m_modelIndex) {
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_LANDSTAL:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_BLISTA: sample = SFX_POLICE_RADIO_CRUISER; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_IDAHO:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_STALLION: sample = SFX_POLICE_RADIO_CONVERTIBLE; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_STINGER:
|
|
|
|
case MI_INFERNUS:
|
|
|
|
case MI_CHEETAH:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_BANSHEE: sample = SFX_POLICE_RADIO_SPORTS_CAR; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_PEREN:
|
|
|
|
case MI_SENTINEL:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_FBICAR: sample = SFX_POLICE_RADIO_SALOON; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_PATRIOT:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_BOBCAT: sample = SFX_POLICE_RADIO_PICKUP; break;
|
|
|
|
case MI_FIRETRUCK: sample = SFX_POLICE_RADIO_FIRE_TRUCK; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_TRASH:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_BARRACKS: sample = SFX_POLICE_RADIO_TRUCK; break;
|
|
|
|
case MI_STRETCH: sample = SFX_POLICE_RADIO_LIMO; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_MANANA:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_ESPERANT: sample = SFX_POLICE_RADIO_2_DOOR; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_PONY:
|
|
|
|
case MI_MULE:
|
|
|
|
case MI_MOONBEAM:
|
|
|
|
case MI_ENFORCER:
|
|
|
|
case MI_SECURICA:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_RUMPO: sample = SFX_POLICE_RADIO_VAN; break;
|
|
|
|
case MI_AMBULAN: sample = SFX_POLICE_RADIO_AMBULANCE; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_TAXI:
|
|
|
|
case MI_CABBIE:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_BORGNINE: sample = SFX_POLICE_RADIO_TAXI; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_MRWHOOP:
|
2019-10-26 23:06:10 +00:00
|
|
|
sample = SFX_POLICE_RADIO_ICE_CREAM_VAN;
|
2019-09-27 21:19:43 +00:00
|
|
|
break;
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_BFINJECT: sample = SFX_POLICE_RADIO_BUGGY; break;
|
|
|
|
case MI_POLICE: sample = SFX_POLICE_RADIO_POLICE_CAR; break;
|
|
|
|
case MI_PREDATOR: sample = SFX_POLICE_RADIO_BOAT; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_BUS:
|
2019-10-26 23:06:10 +00:00
|
|
|
case MI_COACH: sample = SFX_POLICE_RADIO_BUS; break;
|
2019-09-27 21:19:43 +00:00
|
|
|
case MI_RHINO:
|
2019-10-26 23:06:10 +00:00
|
|
|
sample = SFX_POLICE_RADIO_TANK;
|
2019-09-27 21:19:43 +00:00
|
|
|
main_color = TOTAL_AUDIO_SAMPLES;
|
|
|
|
color_post_modifier = TOTAL_AUDIO_SAMPLES;
|
|
|
|
break;
|
|
|
|
case MI_TRAIN:
|
2019-10-26 23:06:10 +00:00
|
|
|
sample = SFX_POLICE_RADIO_SUBWAY_CAR;
|
2019-09-27 21:19:43 +00:00
|
|
|
main_color = TOTAL_AUDIO_SAMPLES;
|
|
|
|
color_post_modifier = TOTAL_AUDIO_SAMPLES;
|
2019-09-26 18:47:04 +00:00
|
|
|
|
2019-09-27 21:19:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
debug("\n *** UNKNOWN CAR MODEL INDEX %d *** ",
|
2019-10-27 17:39:17 +00:00
|
|
|
veh->m_modelIndex);
|
2019-09-27 21:19:43 +00:00
|
|
|
return;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-25 16:39:26 +00:00
|
|
|
m_anRandomTable[4] % 3 +
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_SUSPECT;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(m_anRandomTable[3] & 1 && policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_LAST_SEEN;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
2019-10-26 23:06:10 +00:00
|
|
|
if(main_color == SFX_POLICE_RADIO_ORANGE) {
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_IN_AN;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
|
|
|
policeChannelTimerSeconds =
|
|
|
|
(policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
} else if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_IN_A;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-10-29 15:08:51 +00:00
|
|
|
if(color_pre_modifier != TOTAL_AUDIO_SAMPLES && policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = color_pre_modifier;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-10-29 15:08:51 +00:00
|
|
|
if(main_color != TOTAL_AUDIO_SAMPLES && policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = main_color;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-10-29 15:08:51 +00:00
|
|
|
if(color_post_modifier != TOTAL_AUDIO_SAMPLES && policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = color_post_modifier;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] = sample;
|
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-25 16:39:26 +00:00
|
|
|
m_anRandomTable[0] % 3 +
|
2019-10-26 23:06:10 +00:00
|
|
|
SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = TOTAL_AUDIO_SAMPLES;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
} else {
|
2019-10-25 16:39:26 +00:00
|
|
|
if(60 - policeChannelTimer > 4) {
|
2019-09-27 21:19:43 +00:00
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
m_anRandomTable[4] % 3 + SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-26 23:06:10 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = SFX_POLICE_RADIO_SUSPECT;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-26 23:06:10 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = SFX_POLICE_RADIO_ON_FOOT;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
|
|
|
crimesSamples[policeChannelTimerSeconds] =
|
2019-10-26 23:06:10 +00:00
|
|
|
m_anRandomTable[0] % 3 + SFX_POLICE_RADIO_MESSAGE_NOISE_1;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
if(policeChannelTimer != 60) {
|
2019-10-25 16:39:26 +00:00
|
|
|
crimesSamples[policeChannelTimerSeconds] = TOTAL_AUDIO_SAMPLES;
|
2019-09-27 21:19:43 +00:00
|
|
|
++policeChannelTimer;
|
2019-10-25 16:39:26 +00:00
|
|
|
policeChannelTimerSeconds = (policeChannelTimerSeconds + 1) % 60;
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-26 18:47:04 +00:00
|
|
|
}
|
2019-09-27 21:19:43 +00:00
|
|
|
}
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
void
|
|
|
|
cAudioManager::Terminate()
|
2019-06-29 11:44:20 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
if(m_bIsInitialised) {
|
|
|
|
MusicManager.Terminate();
|
2019-06-29 11:44:20 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
for(uint32 i = 0; i < totalAudioEntitiesSlots; i++) {
|
|
|
|
m_asAudioEntities[i].m_bIsUsed = 0;
|
|
|
|
m_anAudioEntityIndices[i] = 200;
|
|
|
|
}
|
2019-08-15 01:43:00 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
m_nAudioEntitiesTotal = 0;
|
|
|
|
m_nScriptObjectEntityTotal = 0;
|
|
|
|
PreTerminateGameSpecificShutdown();
|
2019-08-15 01:43:00 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
for(uint32 i = 0; i < 2; i++) {
|
|
|
|
if(SampleManager.IsSampleBankLoaded(i)) SampleManager.UnloadSampleBank(i);
|
|
|
|
}
|
2019-08-15 01:43:00 +00:00
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
SampleManager.Terminate();
|
|
|
|
|
|
|
|
m_bIsInitialised = 0;
|
|
|
|
PostTerminateGameSpecificShutdown();
|
|
|
|
}
|
2019-08-15 01:43:00 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
void
|
2019-10-26 22:46:48 +00:00
|
|
|
cAudioManager::TranslateEntity(CVector *in, CVector *out) const
|
2019-08-15 01:43:00 +00:00
|
|
|
{
|
2019-10-26 22:46:48 +00:00
|
|
|
*out = MultiplyInverse(TheCamera.GetMatrix(), *in);
|
2019-08-15 01:43:00 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
void
|
|
|
|
cAudioManager::UpdateGasPedalAudio(CAutomobile *automobile)
|
2019-08-15 01:43:00 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
float newGasPedalAudio;
|
|
|
|
|
|
|
|
float gasPedal = Abs(automobile->m_fGasPedal);
|
|
|
|
float gasPedalAudio = automobile->m_fGasPedalAudio;
|
|
|
|
|
|
|
|
if(gasPedalAudio < gasPedal) {
|
|
|
|
newGasPedalAudio = gasPedalAudio + 0.09f;
|
|
|
|
if(gasPedal <= newGasPedalAudio) newGasPedalAudio = gasPedal;
|
|
|
|
} else {
|
|
|
|
newGasPedalAudio = gasPedalAudio - 0.07f;
|
|
|
|
if(gasPedal >= newGasPedalAudio) newGasPedalAudio = gasPedal;
|
|
|
|
}
|
|
|
|
automobile->m_fGasPedalAudio = newGasPedalAudio;
|
2019-08-15 01:43:00 +00:00
|
|
|
}
|
|
|
|
|
2019-09-21 20:10:35 +00:00
|
|
|
void
|
|
|
|
cAudioManager::UpdateReflections()
|
|
|
|
{
|
2019-11-04 23:31:50 +00:00
|
|
|
const CVector &camPos = TheCamera.GetPosition();
|
|
|
|
CColPoint colpoint;
|
|
|
|
CEntity *ent;
|
|
|
|
|
|
|
|
if(m_nTimeOfRecentCrime & 7) {
|
|
|
|
if(((uint8)m_nTimeOfRecentCrime + 1) & 7) {
|
|
|
|
if(((uint8)m_nTimeOfRecentCrime + 2) & 7) {
|
|
|
|
if(((uint8)m_nTimeOfRecentCrime + 3) & 7) {
|
|
|
|
if(!(((uint8)m_nTimeOfRecentCrime + 4) & 7)) {
|
|
|
|
m_avecReflectionsPos[4] = camPos;
|
|
|
|
m_avecReflectionsPos[4].z += 50.f;
|
|
|
|
if(CWorld::ProcessVerticalLine(
|
|
|
|
camPos, m_avecReflectionsPos[4].z, colpoint,
|
|
|
|
ent, true, false, false, false, true, false,
|
|
|
|
false)) {
|
|
|
|
m_afReflectionsDistances[4] =
|
|
|
|
colpoint.point.z - camPos.z;
|
|
|
|
} else {
|
|
|
|
m_afReflectionsDistances[4] = 50.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
m_avecReflectionsPos[3] = camPos;
|
|
|
|
m_avecReflectionsPos[3].x += 50.f;
|
|
|
|
if(CWorld::ProcessLineOfSight(
|
|
|
|
camPos, m_avecReflectionsPos[3], colpoint, ent, true,
|
|
|
|
false, false, true, false, true, true)) {
|
|
|
|
m_afReflectionsDistances[3] =
|
|
|
|
Distance(camPos, colpoint.point);
|
|
|
|
} else {
|
|
|
|
m_afReflectionsDistances[3] = 50.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
m_avecReflectionsPos[2] = camPos;
|
|
|
|
m_avecReflectionsPos[2].x -= 50.f;
|
|
|
|
if(CWorld::ProcessLineOfSight(camPos, m_avecReflectionsPos[2],
|
|
|
|
colpoint, ent, true, false, false,
|
|
|
|
true, false, true, true)) {
|
|
|
|
m_afReflectionsDistances[2] =
|
|
|
|
Distance(camPos, colpoint.point);
|
|
|
|
} else {
|
|
|
|
m_afReflectionsDistances[2] = 50.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
m_avecReflectionsPos[1] = camPos;
|
|
|
|
m_avecReflectionsPos[1].y -= 50.f;
|
|
|
|
if(CWorld::ProcessLineOfSight(camPos, m_avecReflectionsPos[1], colpoint,
|
|
|
|
ent, true, false, false, true, false, true,
|
|
|
|
true)) {
|
|
|
|
m_afReflectionsDistances[1] = Distance(camPos, colpoint.point);
|
|
|
|
} else {
|
|
|
|
m_afReflectionsDistances[1] = 50.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
m_avecReflectionsPos[0] = camPos;
|
|
|
|
m_avecReflectionsPos[0].y += 50.f;
|
|
|
|
if(CWorld::ProcessLineOfSight(camPos, m_avecReflectionsPos[0], colpoint, ent, true,
|
|
|
|
false, false, true, false, true, true)) {
|
|
|
|
m_afReflectionsDistances[0] = Distance(camPos, colpoint.point);
|
|
|
|
} else {
|
|
|
|
m_afReflectionsDistances[0] = 50.0f;
|
|
|
|
}
|
|
|
|
}
|
2019-09-21 20:10:35 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::UsesReverseWarning(int32 model) const
|
2019-08-15 01:43:00 +00:00
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
return model == LINERUN || model == FIRETRUK || model == TRASH || model == BUS || model == COACH;
|
2019-08-15 01:43:00 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::UsesSiren(int32 model) const
|
2019-08-15 01:43:00 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
switch(model) {
|
|
|
|
case FIRETRUK:
|
|
|
|
case AMBULAN:
|
|
|
|
case FBICAR:
|
|
|
|
case POLICE:
|
|
|
|
case ENFORCER:
|
|
|
|
case PREDATOR: return true;
|
|
|
|
default: return false;
|
|
|
|
}
|
2019-08-15 01:43:00 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
bool
|
|
|
|
cAudioManager::UsesSirenSwitching(int32 model) const
|
2019-08-15 01:43:00 +00:00
|
|
|
{
|
2019-08-27 18:50:59 +00:00
|
|
|
switch(model) {
|
|
|
|
case AMBULAN:
|
|
|
|
case POLICE:
|
|
|
|
case ENFORCER:
|
|
|
|
case PREDATOR: return true;
|
|
|
|
default: return false;
|
|
|
|
}
|
2019-08-15 01:43:00 +00:00
|
|
|
}
|
|
|
|
|
2019-08-29 22:44:57 +00:00
|
|
|
void
|
2019-10-19 11:21:35 +00:00
|
|
|
cAudioManager::AdjustSamplesVolume()
|
2019-08-29 22:44:57 +00:00
|
|
|
{
|
2019-10-25 16:39:26 +00:00
|
|
|
for(int i = 0; i < m_bSampleRequestQueuesStatus[m_bActiveSampleQueue]; i++) {
|
2019-10-26 13:20:36 +00:00
|
|
|
tActiveSample* pSample = &m_asSamples[m_bActiveSampleQueue][m_abSampleQueueIndexTable[m_bActiveSampleQueue][i] + 1];
|
2019-10-19 11:21:35 +00:00
|
|
|
|
|
|
|
if(!pSample->m_bBankIndex) // all non-speech sounds on PC
|
|
|
|
pSample->m_bEmittingVolume = ComputeEmittingVolume(
|
2019-10-25 16:39:26 +00:00
|
|
|
pSample->m_bEmittingVolume, pSample->m_fSoundIntensity, pSample->m_fDistance);
|
2019-10-19 11:21:35 +00:00
|
|
|
}
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32
|
2019-10-25 16:39:26 +00:00
|
|
|
cAudioManager::ComputeEmittingVolume(uint8 emittingVolume, float intensity, float dist)
|
2019-10-19 11:21:35 +00:00
|
|
|
{
|
|
|
|
float quatIntensity = intensity / 4.0f;
|
|
|
|
float diffIntensity = intensity - quatIntensity;
|
|
|
|
if(dist > diffIntensity)
|
2019-10-25 16:39:26 +00:00
|
|
|
return (quatIntensity - (dist - diffIntensity)) * (float)emittingVolume / quatIntensity;
|
2019-10-19 11:21:35 +00:00
|
|
|
return emittingVolume;
|
2019-08-29 22:44:57 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 11:44:20 +00:00
|
|
|
STARTPATCHES
|
2019-07-07 14:32:28 +00:00
|
|
|
InjectHook(0x57B210, &cAudioManager::AddDetailsToRequestedOrderList, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x56AD30, &cAudioManager::AddPlayerCarSample, PATCH_JUMP);
|
2019-07-07 14:32:28 +00:00
|
|
|
InjectHook(0x57B300, &cAudioManager::AddReflectionsToRequestedQueue, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x57B8D0, &cAudioManager::AddReleasingSounds, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x57B070, &cAudioManager::AddSampleToRequestedQueue, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x580AF0, &cAudioManager::AgeCrimes, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x5697A0, &cAudioManager::CalculateDistance, PATCH_JUMP);
|
|
|
|
InjectHook(0x57AA10, &cAudioManager::CheckForAnAudioFileOnCD, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x57C160, &cAudioManager::ClearActiveSamples, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x5796A0, &cAudioManager::ClearMissionAudio, PATCH_JUMP);
|
|
|
|
InjectHook(0x57C120, &cAudioManager::ClearRequestedQueue, PATCH_JUMP);
|
|
|
|
InjectHook(0x57AE00, &cAudioManager::ComputeDopplerEffectedFrequency, PATCH_JUMP);
|
2019-09-24 11:33:16 +00:00
|
|
|
InjectHook(0x57AD20, &cAudioManager::ComputePan, PATCH_JUMP);
|
2019-07-07 14:32:28 +00:00
|
|
|
InjectHook(0x57ABB0, &cAudioManager::ComputeVolume, PATCH_JUMP);
|
2019-07-16 15:03:37 +00:00
|
|
|
InjectHook(0x57A310, &cAudioManager::CreateEntity, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A830, &cAudioManager::DestroyAllGameCreatedEntities, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A400, &cAudioManager::DestroyEntity, PATCH_JUMP);
|
|
|
|
InjectHook(0x57F060, &cAudioManager::DoPoliceRadioCrackle, PATCH_JUMP);
|
|
|
|
InjectHook(0x57C290, &cAudioManager::GenerateIntegerRandomNumberTable, PATCH_JUMP);
|
2019-07-02 18:35:47 +00:00
|
|
|
InjectHook(0x57A8C0, &cAudioManager::Get3DProviderName, PATCH_JUMP);
|
2019-06-29 11:44:20 +00:00
|
|
|
InjectHook(0x571110, &cAudioManager::GetArmyTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x573AB0, &cAudioManager::GetBlackBusinessFemaleTalkSfx, PATCH_JUMP);
|
2019-06-29 11:44:20 +00:00
|
|
|
InjectHook(0x572050, &cAudioManager::GetBlackCasualFemaleTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x574380, &cAudioManager::GetBlackConstructionWorkerTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x571D80, &cAudioManager::GetBlackCriminalTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5735E0, &cAudioManager::GetBlackDockerMaleTalkSfx, PATCH_JUMP);
|
2019-06-29 11:44:20 +00:00
|
|
|
InjectHook(0x5724D0, &cAudioManager::GetBlackFatFemaleTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x5726C0, &cAudioManager::GetBlackFatMaleTalkSfx, PATCH_JUMP);
|
2019-06-29 11:44:20 +00:00
|
|
|
InjectHook(0x5728B0, &cAudioManager::GetBlackFemaleProstituteTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x572C20, &cAudioManager::GetBlackProjectFemaleOldTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x572D20, &cAudioManager::GetBlackProjectFemaleYoungTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x572AF0, &cAudioManager::GetBlackProjectMaleTalkSfx, PATCH_JUMP);
|
2019-06-29 11:44:20 +00:00
|
|
|
InjectHook(0x5739C0, &cAudioManager::GetBlackWorkerMaleTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x574FF0, &cAudioManager::GetBomberTalkSfx, PATCH_JUMP);
|
2019-06-29 11:44:20 +00:00
|
|
|
InjectHook(0x5712C0, &cAudioManager::GetBusinessMaleOldTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x5713E0, &cAudioManager::GetBusinessMaleYoungTalkSfx, PATCH_JUMP);
|
2019-06-29 11:44:20 +00:00
|
|
|
InjectHook(0x572040, &cAudioManager::GetCasualMaleOldTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x574FE0, &cAudioManager::GetCatatalinaTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x57AA30, &cAudioManager::GetCDAudioDriveLetter, PATCH_JUMP);
|
|
|
|
InjectHook(0x573010, &cAudioManager::GetChinatownFemaleOldTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5730F0, &cAudioManager::GetChinatownFemaleYoungTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x572E10, &cAudioManager::GetChinatownMaleOldTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x572F10, &cAudioManager::GetChinatownMaleYoungTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x575120, &cAudioManager::GetChunkyTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x571B00, &cAudioManager::GetColumbianTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x570EA0, &cAudioManager::GetCopTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A8F0, &cAudioManager::GetCurrent3DProviderIndex, PATCH_JUMP);
|
|
|
|
InjectHook(0x569060, &cAudioManager::GetCollisionOneShotRatio, PATCH_JUMP);
|
|
|
|
InjectHook(0x5693B0, &cAudioManager::GetCollisionRatio, PATCH_JUMP);
|
|
|
|
InjectHook(0x571770, &cAudioManager::GetDiabloTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x569750, &cAudioManager::GetDistanceSquared, PATCH_JUMP);
|
2019-06-30 16:38:53 +00:00
|
|
|
InjectHook(0x574DA0, &cAudioManager::GetEightTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x574040, &cAudioManager::GetFanFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x573F60, &cAudioManager::GetFanMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x571040, &cAudioManager::GetFBITalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x572280, &cAudioManager::GetFemaleNo3TalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5712B0, &cAudioManager::GetFiremanTalkSfx, PATCH_JUMP);
|
2019-06-30 16:38:53 +00:00
|
|
|
InjectHook(0x574E50, &cAudioManager::GetFrankieTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x575510, &cAudioManager::GetGenericFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x575460, &cAudioManager::GetGenericMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x571C30, &cAudioManager::GetHoodTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5741F0, &cAudioManager::GetHospitalFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x574120, &cAudioManager::GetHospitalMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x56F410, &cAudioManager::GetJumboTaxiFreq, PATCH_JUMP);
|
|
|
|
InjectHook(0x573310, &cAudioManager::GetLittleItalyFemaleOldTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x573400, &cAudioManager::GetLittleItalyFemaleYoungTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5731E0, &cAudioManager::GetLittleItalyMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x571510, &cAudioManager::GetMafiaTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x571F40, &cAudioManager::GetMaleNo2TalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5711C0, &cAudioManager::GetMedicTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5795D0, &cAudioManager::GetMissionAudioLoadingStatus, PATCH_JUMP);
|
|
|
|
InjectHook(0x57F050, &cAudioManager::GetMissionScriptPoliceAudioPlayingStatus, PATCH_JUMP);
|
2019-06-30 16:38:53 +00:00
|
|
|
InjectHook(0x574F00, &cAudioManager::GetMistyTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x575340, &cAudioManager::GetNormalMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A8A0, &cAudioManager::GetNum3DProvidersAvailable, PATCH_JUMP);
|
2019-06-30 16:38:53 +00:00
|
|
|
InjectHook(0x574FD0, &cAudioManager::GetOJGTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x570960, &cAudioManager::GetPedCommentSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x570DB0, &cAudioManager::GetPhrase, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x56BF80, &cAudioManager::GetVehicleDriveWheelSkidValue, PATCH_JUMP);
|
|
|
|
InjectHook(0x56C120, &cAudioManager::GetVehicleNonDriveWheelSkidValue, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x575240, &cAudioManager::GetPimpTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x570E00, &cAudioManager::GetPlayerTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5737E0, &cAudioManager::GetScumFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5736D0, &cAudioManager::GetScumMaleTalkSfx, PATCH_JUMP);
|
2019-06-30 16:38:53 +00:00
|
|
|
InjectHook(0x575060, &cAudioManager::GetSecurityGuardTalkSfx, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x574480, &cAudioManager::GetShopperFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x574790, &cAudioManager::GetSpecialCharacterTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x573E90, &cAudioManager::GetStewardFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x573DC0, &cAudioManager::GetStewardMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x574690, &cAudioManager::GetStudentFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x574590, &cAudioManager::GetStudentMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x573CD0, &cAudioManager::GetSupermodelFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x573BD0, &cAudioManager::GetSupermodelMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x570F80, &cAudioManager::GetSwatTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x575190, &cAudioManager::GetTaxiDriverTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x571650, &cAudioManager::GetTriadTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5723A0, &cAudioManager::GetWhiteBusinessFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x572170, &cAudioManager::GetWhiteCasualFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x574290, &cAudioManager::GetWhiteConstructionWorkerTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x571E60, &cAudioManager::GetWhiteCriminalTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5734F0, &cAudioManager::GetWhiteDockerMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5727B0, &cAudioManager::GetWhiteFatFemaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5725D0, &cAudioManager::GetWhiteFatMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5729D0, &cAudioManager::GetWhiteFemaleProstituteTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5738D0, &cAudioManager::GetWhiteWorkerMaleTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5718D0, &cAudioManager::GetYakuzaTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x5719E0, &cAudioManager::GetYardieTalkSfx, PATCH_JUMP);
|
|
|
|
InjectHook(0x56CAB0, &cAudioManager::HasAirBrakes, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A0E0, &cAudioManager::Initialise, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x57EEC0, &cAudioManager::InitialisePoliceRadio, PATCH_JUMP);
|
2019-09-24 11:33:16 +00:00
|
|
|
InjectHook(0x57EAC0, &cAudioManager::InitialisePoliceRadioZones, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x57B030, &cAudioManager::InterrogateAudioEntities, PATCH_JUMP);
|
|
|
|
InjectHook(0x57AA50, &cAudioManager::IsAudioInitialised, PATCH_JUMP);
|
|
|
|
InjectHook(0x579650, &cAudioManager::IsMissionAudioSampleFinished, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A9C0, &cAudioManager::IsMP3RadioChannelAvailable, PATCH_JUMP);
|
|
|
|
InjectHook(0x579520, &cAudioManager::MissionScriptAudioUsesPoliceChannel, PATCH_JUMP);
|
|
|
|
InjectHook(0x56AD10, &cAudioManager::PlayerJustGotInCar, PATCH_JUMP);
|
|
|
|
InjectHook(0x56AD20, &cAudioManager::PlayerJustLeftCar, PATCH_JUMP);
|
|
|
|
InjectHook(0x579620, &cAudioManager::PlayLoadedMissionAudio, PATCH_JUMP);
|
2019-09-26 18:47:04 +00:00
|
|
|
InjectHook(0x57A500, &cAudioManager::PlayOneShot, PATCH_JUMP);
|
2019-09-27 21:19:43 +00:00
|
|
|
InjectHook(0x580500, &cAudioManager::PlaySuspectLastSeen, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x569420, &cAudioManager::PostInitialiseGameSpecificSetup, PATCH_JUMP);
|
|
|
|
InjectHook(0x569640, &cAudioManager::PostTerminateGameSpecificShutdown, PATCH_JUMP);
|
|
|
|
InjectHook(0x569400, &cAudioManager::PreInitialiseGameSpecificSetup, PATCH_JUMP);
|
2019-10-27 17:39:17 +00:00
|
|
|
InjectHook(0x579550, &cAudioManager::PreloadMissionAudio, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x569570, &cAudioManager::PreTerminateGameSpecificShutdown, PATCH_JUMP);
|
2019-07-12 16:27:12 +00:00
|
|
|
// InjectHook(0x57BA60, &cAudioManager::ProcessActiveQueues, PATCH_JUMP);
|
2019-07-16 15:03:37 +00:00
|
|
|
InjectHook(0x56C940, &cAudioManager::ProcessAirBrakes, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x577B30, &cAudioManager::ProcessAirportScriptObject, PATCH_JUMP);
|
2019-08-02 15:43:40 +00:00
|
|
|
InjectHook(0x56DE80, &cAudioManager::ProcessBoatEngine, PATCH_JUMP);
|
|
|
|
InjectHook(0x56E500, &cAudioManager::ProcessBoatMovingOverWater, PATCH_JUMP);
|
|
|
|
InjectHook(0x5790D0, &cAudioManager::ProcessBridge, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x579250, &cAudioManager::ProcessBridgeMotor, PATCH_JUMP);
|
2019-08-02 15:43:40 +00:00
|
|
|
InjectHook(0x579310, &cAudioManager::ProcessBridgeOneShots, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x579170, &cAudioManager::ProcessBridgeWarning, PATCH_JUMP);
|
2019-08-02 15:43:40 +00:00
|
|
|
InjectHook(0x56CC20, &cAudioManager::ProcessCarBombTick, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x577CA0, &cAudioManager::ProcessCinemaScriptObject, PATCH_JUMP);
|
|
|
|
InjectHook(0x577E50, &cAudioManager::ProcessDocksScriptObject, PATCH_JUMP);
|
2019-08-02 15:43:40 +00:00
|
|
|
InjectHook(0x56CAF0, &cAudioManager::ProcessEngineDamage, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x569870, &cAudioManager::ProcessEntity, PATCH_JUMP);
|
2019-07-31 15:54:18 +00:00
|
|
|
InjectHook(0x575AC0, &cAudioManager::ProcessExplosions, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x578FD0, &cAudioManager::ProcessFireHydrant, PATCH_JUMP);
|
|
|
|
InjectHook(0x5785E0, &cAudioManager::ProcessFrontEnd, PATCH_JUMP);
|
2019-08-02 15:43:40 +00:00
|
|
|
InjectHook(0x56E6A0, &cAudioManager::ProcessHelicopter, PATCH_JUMP);
|
2019-07-16 15:03:37 +00:00
|
|
|
InjectHook(0x577FE0, &cAudioManager::ProcessHomeScriptObject, PATCH_JUMP);
|
|
|
|
InjectHook(0x56E8F0, &cAudioManager::ProcessJumbo, PATCH_JUMP);
|
2019-07-18 21:49:21 +00:00
|
|
|
InjectHook(0x56EA40, &cAudioManager::ProcessJumboAccel, PATCH_JUMP);
|
|
|
|
InjectHook(0x56EE40, &cAudioManager::ProcessJumboDecel, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x56ECF0, &cAudioManager::ProcessJumboFlying, PATCH_JUMP);
|
2019-07-18 21:49:21 +00:00
|
|
|
InjectHook(0x56ED10, &cAudioManager::ProcessJumboLanding, PATCH_JUMP);
|
|
|
|
InjectHook(0x56EC00, &cAudioManager::ProcessJumboTakeOff, PATCH_JUMP);
|
2019-07-08 19:44:32 +00:00
|
|
|
InjectHook(0x56EA10, &cAudioManager::ProcessJumboTaxi, PATCH_JUMP);
|
2019-07-16 15:03:37 +00:00
|
|
|
InjectHook(0x5777E0, &cAudioManager::ProcessLaunderetteScriptObject, PATCH_JUMP);
|
|
|
|
InjectHook(0x576770, &cAudioManager::ProcessLoopingScriptObject, PATCH_JUMP);
|
2019-08-16 18:17:15 +00:00
|
|
|
InjectHook(0x5796E0, &cAudioManager::ProcessMissionAudio, PATCH_JUMP);
|
2019-08-02 15:43:40 +00:00
|
|
|
InjectHook(0x56A050, &cAudioManager::ProcessModelCarEngine, PATCH_JUMP);
|
2019-07-31 15:54:18 +00:00
|
|
|
InjectHook(0x5760C0, &cAudioManager::ProcessOneShotScriptObject, PATCH_JUMP);
|
|
|
|
InjectHook(0x56F450, &cAudioManager::ProcessPed, PATCH_JUMP);
|
|
|
|
InjectHook(0x56F4D0, &cAudioManager::ProcessPedHeadphones, PATCH_JUMP);
|
2019-08-16 18:17:15 +00:00
|
|
|
// InjectHook(0x56F650, &cAudioManager::ProcessPedOneShots, PATCH_JUMP);
|
2019-07-16 15:03:37 +00:00
|
|
|
InjectHook(0x5699C0, &cAudioManager::ProcessPhysical, PATCH_JUMP);
|
2019-08-02 15:43:40 +00:00
|
|
|
InjectHook(0x56E860, &cAudioManager::ProcessPlane, PATCH_JUMP);
|
|
|
|
InjectHook(0x56B0D0, &cAudioManager::ProcessPlayersVehicleEngine, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x578190, &cAudioManager::ProcessPoliceCellBeatingScriptObject, PATCH_JUMP);
|
2019-07-18 21:49:21 +00:00
|
|
|
InjectHook(0x577280, &cAudioManager::ProcessPornCinema, PATCH_JUMP);
|
2019-09-24 11:33:16 +00:00
|
|
|
InjectHook(0x578A80, &cAudioManager::ProcessProjectiles, PATCH_JUMP);
|
2019-08-02 15:43:40 +00:00
|
|
|
InjectHook(0x569CC0, &cAudioManager::ProcessRainOnVehicle, PATCH_JUMP);
|
2019-08-16 18:17:15 +00:00
|
|
|
InjectHook(0x569700, &cAudioManager::ProcessReverb, PATCH_JUMP);
|
|
|
|
InjectHook(0x569E50, &cAudioManager::ProcessReverseGear, PATCH_JUMP);
|
2019-07-18 21:49:21 +00:00
|
|
|
InjectHook(0x577630, &cAudioManager::ProcessSawMillScriptObject, PATCH_JUMP);
|
2019-07-31 15:54:18 +00:00
|
|
|
InjectHook(0x576070, &cAudioManager::ProcessScriptObject, PATCH_JUMP);
|
2019-07-18 21:49:21 +00:00
|
|
|
InjectHook(0x577970, &cAudioManager::ProcessShopScriptObject, PATCH_JUMP);
|
|
|
|
InjectHook(0x5697D0, &cAudioManager::ProcessSpecial, PATCH_JUMP);
|
2019-08-16 18:17:15 +00:00
|
|
|
InjectHook(0x56DBF0, &cAudioManager::ProcessTrainNoise, PATCH_JUMP);
|
2019-09-24 11:33:16 +00:00
|
|
|
InjectHook(0x569A00, &cAudioManager::ProcessVehicle, PATCH_JUMP);
|
2019-08-16 18:17:15 +00:00
|
|
|
InjectHook(0x56C770, &cAudioManager::ProcessVehicleDoors, PATCH_JUMP);
|
2019-09-24 11:33:16 +00:00
|
|
|
InjectHook(0x56C200, &cAudioManager::ProcessVehicleHorn, PATCH_JUMP);
|
2019-08-16 18:17:15 +00:00
|
|
|
InjectHook(0x56C640, &cAudioManager::ProcessVehicleReverseWarning, PATCH_JUMP);
|
|
|
|
InjectHook(0x56A230, &cAudioManager::ProcessVehicleRoadNoise, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x56BCB0, &cAudioManager::ProcessVehicleSkidding, PATCH_JUMP);
|
2019-09-24 11:33:16 +00:00
|
|
|
InjectHook(0x575F30, &cAudioManager::ProcessWaterCannon, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x578370, &cAudioManager::ProcessWeather, PATCH_JUMP);
|
|
|
|
InjectHook(0x56A440, &cAudioManager::ProcessWetRoadNoise, PATCH_JUMP);
|
2019-07-16 15:03:37 +00:00
|
|
|
InjectHook(0x577530, &cAudioManager::ProcessWorkShopScriptObject, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x57AF90, &cAudioManager::RandomDisplacement, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A9F0, &cAudioManager::ReacquireDigitalHandle, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A9E0, &cAudioManager::ReleaseDigitalHandle, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x568410, &cAudioManager::ReportCollision, PATCH_JUMP);
|
|
|
|
InjectHook(0x5803D0, &cAudioManager::ReportCrime, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x569650, &cAudioManager::ResetAudioLogicTimers, PATCH_JUMP);
|
|
|
|
InjectHook(0x57EFF0, &cAudioManager::ResetPoliceRadio, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x57A7B0, &cAudioManager::ResetTimers, PATCH_JUMP);
|
2019-09-21 20:10:35 +00:00
|
|
|
InjectHook(0x57A2A0, &cAudioManager::Service, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x57F110, &cAudioManager::ServicePoliceRadio, PATCH_JUMP);
|
|
|
|
InjectHook(0x57F1B0, &cAudioManager::ServicePoliceRadioChannel, PATCH_JUMP);
|
2019-09-21 20:10:35 +00:00
|
|
|
InjectHook(0x57AA60, &cAudioManager::ServiceSoundEffects, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x57A910, &cAudioManager::SetCurrent3DProvider, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x57AA00, &cAudioManager::SetDynamicAcousticModelingStatus, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A770, &cAudioManager::SetEffectsFadeVolume, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A730, &cAudioManager::SetEffectsMasterVolume, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A4C0, &cAudioManager::SetEntityStatus, PATCH_JUMP);
|
2019-09-21 20:10:35 +00:00
|
|
|
InjectHook(0x568E20, &cAudioManager::SetLoopingCollisionRequestedSfxFreqAndGetVol, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x5795F0, &cAudioManager::SetMissionAudioLocation, PATCH_JUMP);
|
|
|
|
InjectHook(0x57F020, &cAudioManager::SetMissionScriptPoliceAudio, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A790, &cAudioManager::SetMusicFadeVolume, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A750, &cAudioManager::SetMusicMasterVolume, PATCH_JUMP);
|
|
|
|
InjectHook(0x57A9A0, &cAudioManager::SetSpeakerConfig, PATCH_JUMP);
|
2019-09-21 20:10:35 +00:00
|
|
|
InjectHook(0x568D30, &cAudioManager::SetUpLoopingCollisionSound, PATCH_JUMP);
|
|
|
|
InjectHook(0x5689D0, &cAudioManager::SetUpOneShotCollisionSound, PATCH_JUMP);
|
2019-09-27 21:19:43 +00:00
|
|
|
InjectHook(0x57F5B0, &cAudioManager::SetupCrimeReport, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x56F230, &cAudioManager::SetupJumboFlySound, PATCH_JUMP);
|
|
|
|
InjectHook(0x56F310, &cAudioManager::SetupJumboRumbleSound, PATCH_JUMP);
|
|
|
|
InjectHook(0x56EF20, &cAudioManager::SetupJumboTaxiSound, PATCH_JUMP);
|
|
|
|
InjectHook(0x56F070, &cAudioManager::SetupJumboWhineSound, PATCH_JUMP);
|
2019-07-31 15:54:18 +00:00
|
|
|
InjectHook(0x570690, &cAudioManager::SetupPedComments, PATCH_JUMP);
|
2019-09-27 21:19:43 +00:00
|
|
|
InjectHook(0x57FCC0, &cAudioManager::SetupSuspectLastSeenReport, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x57A150, &cAudioManager::Terminate, PATCH_JUMP);
|
|
|
|
InjectHook(0x57AC60, &cAudioManager::TranslateEntity, PATCH_JUMP);
|
|
|
|
InjectHook(0x56AC80, &cAudioManager::UpdateGasPedalAudio, PATCH_JUMP);
|
2019-11-04 23:31:50 +00:00
|
|
|
InjectHook(0x57B470, &cAudioManager::UpdateReflections, PATCH_JUMP);
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x56C600, &cAudioManager::UsesReverseWarning, PATCH_JUMP);
|
|
|
|
InjectHook(0x56C3C0, &cAudioManager::UsesSiren, PATCH_JUMP);
|
|
|
|
InjectHook(0x56C3F0, &cAudioManager::UsesSirenSwitching, PATCH_JUMP);
|
2019-10-19 11:21:35 +00:00
|
|
|
|
|
|
|
InjectHook(0x57C2B0, &cAudioManager::AdjustSamplesVolume, PATCH_JUMP);
|
|
|
|
InjectHook(0x57C320, &cAudioManager::ComputeEmittingVolume, PATCH_JUMP);
|
|
|
|
|
2019-08-27 18:50:59 +00:00
|
|
|
InjectHook(0x5755C0, &cPedComments::Add, PATCH_JUMP);
|
|
|
|
InjectHook(0x575730, &cPedComments::Process, PATCH_JUMP);
|
2019-08-29 22:44:57 +00:00
|
|
|
InjectHook(0x5685E0, &cAudioCollisionManager::AddCollisionToRequestedQueue, PATCH_JUMP);
|
2019-09-21 20:10:35 +00:00
|
|
|
InjectHook(0x57C430, &cAudioScriptObject::Reset, PATCH_JUMP);
|
2019-06-12 17:56:45 +00:00
|
|
|
ENDPATCHES
|