2014-10-10 17:10:57 +00:00
|
|
|
|
|
|
|
#include <engine/engine.h>
|
|
|
|
#include <engine/sound.h>
|
|
|
|
|
2014-10-12 14:12:13 +00:00
|
|
|
#include <game/client/components/maplayers.h> // envelope
|
2014-10-10 17:10:57 +00:00
|
|
|
#include <game/client/components/sounds.h>
|
|
|
|
|
|
|
|
#include "mapsounds.h"
|
|
|
|
|
|
|
|
CMapSounds::CMapSounds()
|
|
|
|
{
|
|
|
|
m_Count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMapSounds::OnMapLoad()
|
|
|
|
{
|
|
|
|
IMap *pMap = Kernel()->RequestInterface<IMap>();
|
|
|
|
|
2014-10-11 11:38:08 +00:00
|
|
|
// unload all samples
|
|
|
|
for(int i = 0; i < m_Count; i++)
|
|
|
|
{
|
|
|
|
Sound()->UnloadSample(m_aSounds[i]);
|
|
|
|
m_aSounds[i] = -1;
|
|
|
|
}
|
|
|
|
m_Count = 0;
|
|
|
|
|
|
|
|
// load samples
|
|
|
|
int Start;
|
|
|
|
pMap->GetType(MAPITEMTYPE_SOUND, &Start, &m_Count);
|
|
|
|
|
|
|
|
// load new samples
|
|
|
|
for(int i = 0; i < m_Count; i++)
|
|
|
|
{
|
|
|
|
m_aSounds[i] = 0;
|
|
|
|
|
|
|
|
CMapItemSound *pSound = (CMapItemSound *)pMap->GetItem(Start+i, 0, 0);
|
|
|
|
if(pSound->m_External)
|
|
|
|
{
|
|
|
|
char Buf[256];
|
|
|
|
char *pName = (char *)pMap->GetData(pSound->m_SoundName);
|
|
|
|
str_format(Buf, sizeof(Buf), "mapres/%s.wv", pName);
|
|
|
|
m_aSounds[i] = Sound()->LoadWV(Buf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-11 12:50:16 +00:00
|
|
|
void *pData = pMap->GetData(pSound->m_SoundData);
|
|
|
|
m_aSounds[i] = Sound()->LoadWVFromMem(pData, pSound->m_SoundDataSize);
|
|
|
|
pMap->UnloadData(pSound->m_SoundData);
|
2014-10-11 11:38:08 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-10 17:10:57 +00:00
|
|
|
|
|
|
|
// enqueue sound sources
|
2014-10-12 14:12:13 +00:00
|
|
|
m_lSourceQueue.clear();
|
2014-10-10 17:10:57 +00:00
|
|
|
for(int g = 0; g < Layers()->NumGroups(); g++)
|
|
|
|
{
|
|
|
|
CMapItemGroup *pGroup = Layers()->GetGroup(g);
|
|
|
|
|
|
|
|
if(!pGroup)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for(int l = 0; l < pGroup->m_NumLayers; l++)
|
|
|
|
{
|
|
|
|
CMapItemLayer *pLayer = Layers()->GetLayer(pGroup->m_StartLayer+l);
|
|
|
|
|
|
|
|
if(!pLayer)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(pLayer->m_Type == LAYERTYPE_SOUNDS)
|
|
|
|
{
|
|
|
|
CMapItemLayerSounds *pSoundLayer = (CMapItemLayerSounds *)pLayer;
|
2014-10-11 11:38:08 +00:00
|
|
|
|
|
|
|
if(pSoundLayer->m_Sound == -1)
|
|
|
|
continue;
|
|
|
|
|
2014-10-10 17:10:57 +00:00
|
|
|
CSoundSource *pSources = (CSoundSource *)Layers()->Map()->GetDataSwapped(pSoundLayer->m_Data);
|
|
|
|
|
|
|
|
if(!pSources)
|
|
|
|
continue;
|
|
|
|
|
2014-10-10 17:50:39 +00:00
|
|
|
for(int i = 0; i < pSoundLayer->m_NumSources; i++) {
|
|
|
|
// dont add sources which are too much delayed
|
2014-10-11 11:55:13 +00:00
|
|
|
if(pSources[i].m_Loop || (Client()->LocalTime() >= pSources[i].m_TimeDelay + Sound()->GetSampleDuration(pSoundLayer->m_Sound)))
|
2014-10-11 11:38:08 +00:00
|
|
|
{
|
2014-10-12 14:12:13 +00:00
|
|
|
CSourceQueueEntry source;
|
2014-10-11 11:38:08 +00:00
|
|
|
source.m_Sound = pSoundLayer->m_Sound;
|
|
|
|
source.m_pSource = &pSources[i];
|
2014-10-12 14:12:13 +00:00
|
|
|
m_lSourceQueue.add(source);
|
2014-10-11 11:38:08 +00:00
|
|
|
}
|
|
|
|
|
2014-10-10 17:50:39 +00:00
|
|
|
}
|
|
|
|
|
2014-10-10 17:10:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-12 14:12:13 +00:00
|
|
|
|
|
|
|
m_lVoices.clear();
|
2014-10-10 17:10:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMapSounds::OnRender()
|
|
|
|
{
|
|
|
|
if(Client()->State() != IClient::STATE_ONLINE && Client()->State() != IClient::STATE_DEMOPLAYBACK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// enqueue sounds
|
2014-10-12 14:12:13 +00:00
|
|
|
for(int i = 0; i < m_lSourceQueue.size(); i++)
|
2014-10-10 17:10:57 +00:00
|
|
|
{
|
2014-10-12 14:12:13 +00:00
|
|
|
CSourceQueueEntry *pSource = &m_lSourceQueue[i];
|
2014-10-10 17:10:57 +00:00
|
|
|
|
2014-10-12 14:12:13 +00:00
|
|
|
if(!pSource->m_pSource || pSource->m_Sound == -1)
|
2014-10-10 17:10:57 +00:00
|
|
|
{
|
2014-10-12 14:12:13 +00:00
|
|
|
m_lSourceQueue.remove_index(i);
|
2014-10-10 17:10:57 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-10-12 14:12:13 +00:00
|
|
|
if(pSource->m_pSource->m_TimeDelay <= Client()->LocalTime())
|
2014-10-10 17:10:57 +00:00
|
|
|
{
|
2014-10-12 14:12:13 +00:00
|
|
|
int Flags = 0;
|
|
|
|
if(pSource->m_pSource->m_Loop) Flags |= ISound::FLAG_LOOP;
|
2014-10-10 17:50:39 +00:00
|
|
|
|
2014-10-12 14:12:13 +00:00
|
|
|
CSourceVoice Voice;
|
|
|
|
Voice.m_pSource = pSource->m_pSource;
|
|
|
|
|
|
|
|
if(pSource->m_pSource->m_Global)
|
|
|
|
Voice.m_Voice = m_pClient->m_pSounds->PlaySample(CSounds::CHN_AMBIENT, m_aSounds[pSource->m_Sound], 1.0f, Flags);
|
|
|
|
else
|
|
|
|
Voice.m_Voice = m_pClient->m_pSounds->PlaySampleAt(CSounds::CHN_AMBIENT, m_aSounds[pSource->m_Sound], 1.0f, vec2(fx2f(pSource->m_pSource->m_Position.x), fx2f(pSource->m_pSource->m_Position.y)), Flags);
|
|
|
|
|
|
|
|
Sound()->SetVoiceMaxDistance(Voice.m_Voice, pSource->m_pSource->m_FalloffDistance);
|
|
|
|
|
|
|
|
m_lVoices.add(Voice);
|
|
|
|
m_lSourceQueue.remove_index(i);
|
|
|
|
}
|
|
|
|
}
|
2014-10-10 17:50:39 +00:00
|
|
|
|
2014-10-12 14:12:13 +00:00
|
|
|
// update voices
|
|
|
|
for(int i = 0; i < m_lVoices.size(); i++)
|
|
|
|
{
|
|
|
|
CSourceVoice *pVoice = &m_lVoices[i];;
|
|
|
|
|
|
|
|
if(!pVoice->m_Voice.IsValid())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(pVoice->m_pSource->m_PosEnv >= 0)
|
|
|
|
{
|
|
|
|
float aChannels[4];
|
|
|
|
CMapLayers::EnvelopeEval(pVoice->m_pSource->m_PosEnvOffset/1000.0f, pVoice->m_pSource->m_PosEnv, aChannels, m_pClient->m_pMapLayersBackGround);
|
|
|
|
float OffsetX = aChannels[0];
|
|
|
|
float OffsetY = aChannels[1];
|
|
|
|
|
|
|
|
Sound()->SetVoiceLocation(pVoice->m_Voice, fx2f(pVoice->m_pSource->m_Position.x)+OffsetX, fx2f(pVoice->m_pSource->m_Position.y)+OffsetY);
|
|
|
|
}
|
2014-10-10 17:10:57 +00:00
|
|
|
}
|
|
|
|
}
|