2016-05-03 01:16:26 +00:00
|
|
|
#include "amuse/Engine.hpp"
|
2019-08-25 10:28:43 +00:00
|
|
|
|
2016-05-03 01:16:26 +00:00
|
|
|
#include "amuse/AudioGroup.hpp"
|
2019-08-25 10:28:43 +00:00
|
|
|
#include "amuse/AudioGroupData.hpp"
|
2016-05-11 04:48:08 +00:00
|
|
|
#include "amuse/Common.hpp"
|
2019-08-25 10:28:43 +00:00
|
|
|
#include "amuse/IBackendVoice.hpp"
|
|
|
|
#include "amuse/IBackendVoiceAllocator.hpp"
|
|
|
|
#include "amuse/Sequencer.hpp"
|
|
|
|
#include "amuse/Submix.hpp"
|
|
|
|
#include "amuse/Voice.hpp"
|
2016-05-03 01:16:26 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
namespace amuse {
|
2016-05-03 01:16:26 +00:00
|
|
|
|
2016-07-14 04:54:46 +00:00
|
|
|
static const float FullLevels[8] = {1.f, 1.f, 1.f, 1.f, 1.f, 1.f, 1.f, 1.f};
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
Engine::~Engine() {
|
|
|
|
m_backend.setCallbackInterface(nullptr);
|
|
|
|
for (ObjToken<Sequencer>& seq : m_activeSequencers)
|
|
|
|
if (!seq->m_destroyed)
|
|
|
|
seq->_destroy();
|
|
|
|
for (ObjToken<Emitter>& emitter : m_activeEmitters)
|
|
|
|
emitter->_destroy();
|
|
|
|
for (ObjToken<Voice>& vox : m_activeVoices)
|
|
|
|
vox->_destroy();
|
2016-05-16 22:13:24 +00:00
|
|
|
}
|
2016-05-14 22:38:37 +00:00
|
|
|
|
2016-05-22 08:35:55 +00:00
|
|
|
Engine::Engine(IBackendVoiceAllocator& backend, AmplitudeMode ampMode)
|
2018-12-08 05:20:09 +00:00
|
|
|
: m_backend(backend), m_ampMode(ampMode), m_defaultStudio(_allocateStudio(true)) {
|
|
|
|
m_defaultStudio->getAuxA().makeReverbStd(0.5f, 0.8f, 3.0f, 0.5f, 0.1f);
|
|
|
|
m_defaultStudio->getAuxB().makeChorus(15, 0, 500);
|
|
|
|
m_defaultStudioReady = true;
|
|
|
|
m_backend.setCallbackInterface(this);
|
|
|
|
m_midiReader = backend.allocateMIDIReader(*this);
|
2016-05-19 10:12:32 +00:00
|
|
|
}
|
2016-05-03 01:16:26 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::pair<AudioGroup*, const SongGroupIndex*> Engine::_findSongGroup(GroupId groupId) const {
|
|
|
|
for (const auto& pair : m_audioGroups) {
|
|
|
|
const SongGroupIndex* ret = pair.second->getProj().getSongGroupIndex(groupId);
|
|
|
|
if (ret)
|
|
|
|
return {pair.second.get(), ret};
|
|
|
|
}
|
|
|
|
return {};
|
2016-05-15 21:56:23 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::pair<AudioGroup*, const SFXGroupIndex*> Engine::_findSFXGroup(GroupId groupId) const {
|
|
|
|
for (const auto& pair : m_audioGroups) {
|
|
|
|
const SFXGroupIndex* ret = pair.second->getProj().getSFXGroupIndex(groupId);
|
|
|
|
if (ret)
|
|
|
|
return {pair.second.get(), ret};
|
|
|
|
}
|
|
|
|
return {};
|
2016-05-15 21:56:23 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::list<ObjToken<Voice>>::iterator Engine::_allocateVoice(const AudioGroup& group, GroupId groupId, double sampleRate,
|
|
|
|
bool dynamicPitch, bool emitter, ObjToken<Studio> studio) {
|
|
|
|
auto it =
|
|
|
|
m_activeVoices.emplace(m_activeVoices.end(), MakeObj<Voice>(*this, group, groupId, m_nextVid++, emitter, studio));
|
|
|
|
m_activeVoices.back()->m_backendVoice = m_backend.allocateVoice(*m_activeVoices.back(), sampleRate, dynamicPitch);
|
|
|
|
m_activeVoices.back()->m_backendVoice->setChannelLevels(studio->getMaster().m_backendSubmix.get(), FullLevels, false);
|
|
|
|
m_activeVoices.back()->m_backendVoice->setChannelLevels(studio->getAuxA().m_backendSubmix.get(), FullLevels, false);
|
|
|
|
m_activeVoices.back()->m_backendVoice->setChannelLevels(studio->getAuxB().m_backendSubmix.get(), FullLevels, false);
|
|
|
|
return it;
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-10 06:19:23 +00:00
|
|
|
std::list<ObjToken<Sequencer>>::iterator Engine::_allocateSequencer(const AudioGroup& group, GroupId groupId,
|
2018-12-08 05:20:09 +00:00
|
|
|
SongId setupId, ObjToken<Studio> studio) {
|
|
|
|
const SongGroupIndex* songGroup = group.getProj().getSongGroupIndex(groupId);
|
|
|
|
if (songGroup) {
|
|
|
|
amuse::ObjToken<Sequencer> tok = MakeObj<Sequencer>(*this, group, groupId, songGroup, setupId, studio);
|
|
|
|
auto it = m_activeSequencers.emplace(m_activeSequencers.end(), tok);
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
const SFXGroupIndex* sfxGroup = group.getProj().getSFXGroupIndex(groupId);
|
|
|
|
if (sfxGroup) {
|
|
|
|
amuse::ObjToken<Sequencer> tok = MakeObj<Sequencer>(*this, group, groupId, sfxGroup, studio);
|
|
|
|
auto it = m_activeSequencers.emplace(m_activeSequencers.end(), tok);
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
return {};
|
2016-05-15 21:56:23 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
ObjToken<Studio> Engine::_allocateStudio(bool mainOut) {
|
|
|
|
ObjToken<Studio> ret = MakeObj<Studio>(*this, mainOut);
|
|
|
|
ret->m_master.m_backendSubmix = m_backend.allocateSubmix(ret->m_master, mainOut, 0);
|
|
|
|
ret->m_auxA.m_backendSubmix = m_backend.allocateSubmix(ret->m_auxA, mainOut, 1);
|
|
|
|
ret->m_auxB.m_backendSubmix = m_backend.allocateSubmix(ret->m_auxB, mainOut, 2);
|
|
|
|
return ret;
|
2016-05-07 22:10:57 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::list<ObjToken<Voice>>::iterator Engine::_destroyVoice(std::list<ObjToken<Voice>>::iterator it) {
|
|
|
|
assert(this == &(*it)->getEngine());
|
|
|
|
if ((*it)->m_destroyed)
|
|
|
|
return m_activeVoices.begin();
|
|
|
|
(*it)->_destroy();
|
|
|
|
return m_activeVoices.erase(it);
|
2016-05-06 21:22:39 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::list<ObjToken<Sequencer>>::iterator Engine::_destroySequencer(std::list<ObjToken<Sequencer>>::iterator it) {
|
|
|
|
assert(this == &(*it)->getEngine());
|
|
|
|
if ((*it)->m_destroyed)
|
|
|
|
return m_activeSequencers.begin();
|
|
|
|
(*it)->_destroy();
|
|
|
|
return m_activeSequencers.erase(it);
|
2016-05-15 21:56:23 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
void Engine::_bringOutYourDead() {
|
|
|
|
for (auto it = m_activeEmitters.begin(); it != m_activeEmitters.end();) {
|
|
|
|
Emitter* emitter = it->get();
|
|
|
|
if (emitter->getVoice()->_isRecursivelyDead()) {
|
|
|
|
emitter->_destroy();
|
|
|
|
it = m_activeEmitters.erase(it);
|
|
|
|
continue;
|
2016-05-14 06:33:21 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto it = m_activeVoices.begin(); it != m_activeVoices.end();) {
|
|
|
|
Voice* vox = it->get();
|
|
|
|
vox->_bringOutYourDead();
|
|
|
|
if (vox->_isRecursivelyDead()) {
|
|
|
|
it = _destroyVoice(it);
|
|
|
|
continue;
|
2016-05-14 04:46:39 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto it = m_activeSequencers.begin(); it != m_activeSequencers.end();) {
|
|
|
|
Sequencer* seq = it->get();
|
|
|
|
seq->_bringOutYourDead();
|
|
|
|
if (seq->m_state == SequencerState::Dead) {
|
|
|
|
it = _destroySequencer(it);
|
|
|
|
continue;
|
2016-05-15 21:56:23 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
++it;
|
|
|
|
}
|
2016-05-14 04:46:39 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
void Engine::_on5MsInterval(IBackendVoiceAllocator& engine, double dt) {
|
|
|
|
m_channelSet = engine.getAvailableSet();
|
|
|
|
if (m_midiReader)
|
|
|
|
m_midiReader->pumpReader(dt);
|
|
|
|
for (ObjToken<Sequencer>& seq : m_activeSequencers)
|
|
|
|
seq->advance(dt);
|
|
|
|
for (ObjToken<Emitter>& emitter : m_activeEmitters)
|
|
|
|
emitter->_update();
|
|
|
|
for (ObjToken<Listener>& listener : m_activeListeners)
|
|
|
|
listener->m_dirty = false;
|
2016-05-19 10:12:32 +00:00
|
|
|
}
|
2016-05-19 02:19:43 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
void Engine::_onPumpCycleComplete(IBackendVoiceAllocator& engine) {
|
|
|
|
_bringOutYourDead();
|
2016-05-14 04:46:39 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
/* Determine lowest available free vid */
|
|
|
|
int maxVid = -1;
|
|
|
|
for (ObjToken<Voice>& vox : m_activeVoices)
|
|
|
|
maxVid = std::max(maxVid, vox->maxVid());
|
|
|
|
m_nextVid = maxVid + 1;
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
AudioGroup* Engine::_addAudioGroup(const AudioGroupData& data, std::unique_ptr<AudioGroup>&& grp) {
|
|
|
|
AudioGroup* ret = grp.get();
|
|
|
|
m_audioGroups.emplace(std::make_pair(&data, std::move(grp)));
|
2016-05-11 04:48:08 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
/* setup SFX index for contained objects */
|
2019-08-25 04:15:45 +00:00
|
|
|
for (const auto& [groupID, groupIndex] : ret->getProj().sfxGroups()) {
|
|
|
|
const SFXGroupIndex& sfxGroup = *groupIndex;
|
2018-12-08 05:20:09 +00:00
|
|
|
m_sfxLookup.reserve(m_sfxLookup.size() + sfxGroup.m_sfxEntries.size());
|
|
|
|
for (const auto& ent : sfxGroup.m_sfxEntries)
|
2019-08-25 04:15:45 +00:00
|
|
|
m_sfxLookup[ent.first] = std::make_tuple(ret, groupID, &ent.second);
|
2018-12-08 05:20:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
|
|
|
|
2016-05-28 02:28:59 +00:00
|
|
|
/** Add GameCube audio group data pointers to engine; must remain resident! */
|
2018-12-08 05:20:09 +00:00
|
|
|
const AudioGroup* Engine::addAudioGroup(const AudioGroupData& data) {
|
|
|
|
removeAudioGroup(data);
|
|
|
|
return _addAudioGroup(data, std::make_unique<AudioGroup>(data));
|
2016-05-28 02:28:59 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 01:16:26 +00:00
|
|
|
/** Remove audio group from engine */
|
2018-12-08 05:20:09 +00:00
|
|
|
void Engine::removeAudioGroup(const AudioGroupData& data) {
|
|
|
|
auto search = m_audioGroups.find(&data);
|
|
|
|
if (search == m_audioGroups.cend())
|
|
|
|
return;
|
|
|
|
AudioGroup* grp = search->second.get();
|
|
|
|
|
|
|
|
/* Destroy runtime entities within group */
|
|
|
|
for (auto it = m_activeVoices.begin(); it != m_activeVoices.end();) {
|
|
|
|
Voice* vox = it->get();
|
|
|
|
if (&vox->getAudioGroup() == grp) {
|
|
|
|
vox->_destroy();
|
|
|
|
it = m_activeVoices.erase(it);
|
|
|
|
continue;
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto it = m_activeEmitters.begin(); it != m_activeEmitters.end();) {
|
|
|
|
Emitter* emitter = it->get();
|
|
|
|
if (&emitter->getAudioGroup() == grp) {
|
|
|
|
emitter->_destroy();
|
|
|
|
it = m_activeEmitters.erase(it);
|
|
|
|
continue;
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto it = m_activeSequencers.begin(); it != m_activeSequencers.end();) {
|
|
|
|
Sequencer* seq = it->get();
|
|
|
|
if (&seq->getAudioGroup() == grp) {
|
|
|
|
seq->_destroy();
|
|
|
|
it = m_activeSequencers.erase(it);
|
|
|
|
continue;
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
++it;
|
|
|
|
}
|
2016-05-03 01:16:26 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
/* teardown SFX index for contained objects */
|
|
|
|
for (const auto& pair : grp->getProj().sfxGroups()) {
|
|
|
|
const SFXGroupIndex& sfxGroup = *pair.second;
|
2019-08-25 04:15:45 +00:00
|
|
|
for (const auto& sfxEntry : sfxGroup.m_sfxEntries) {
|
|
|
|
m_sfxLookup.erase(sfxEntry.first);
|
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
}
|
2016-05-11 04:48:08 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
m_audioGroups.erase(search);
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
|
|
|
|
2016-07-13 03:04:55 +00:00
|
|
|
/** Create new Studio within engine */
|
2018-07-29 03:37:06 +00:00
|
|
|
ObjToken<Studio> Engine::addStudio(bool mainOut) { return _allocateStudio(mainOut); }
|
2016-05-07 22:10:57 +00:00
|
|
|
|
2016-05-03 01:16:26 +00:00
|
|
|
/** Start soundFX playing from loaded audio groups */
|
2018-12-08 05:20:09 +00:00
|
|
|
ObjToken<Voice> Engine::fxStart(SFXId sfxId, float vol, float pan, ObjToken<Studio> smx) {
|
|
|
|
auto search = m_sfxLookup.find(sfxId);
|
|
|
|
if (search == m_sfxLookup.end())
|
|
|
|
return {};
|
2016-05-11 04:48:08 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
AudioGroup* grp = std::get<0>(search->second);
|
|
|
|
const SFXGroupIndex::SFXEntry* entry = std::get<2>(search->second);
|
|
|
|
if (!grp)
|
|
|
|
return {};
|
2016-05-03 01:16:26 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::list<ObjToken<Voice>>::iterator ret =
|
|
|
|
_allocateVoice(*grp, std::get<1>(search->second), NativeSampleRate, true, false, smx);
|
2016-05-28 02:28:59 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
if (!(*ret)->loadPageObject(entry->objId, 1000.f, entry->defKey, entry->defVel, 0)) {
|
|
|
|
_destroyVoice(ret);
|
|
|
|
return {};
|
|
|
|
}
|
2016-05-28 02:28:59 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
(*ret)->setVolume(vol);
|
|
|
|
float evalPan = pan != 0.f ? pan : ((entry->panning - 64.f) / 63.f);
|
|
|
|
evalPan = clamp(-1.f, evalPan, 1.f);
|
|
|
|
(*ret)->setPan(evalPan);
|
|
|
|
return *ret;
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-10 06:19:23 +00:00
|
|
|
/** Start soundFX playing from explicit group data (for editor use) */
|
2018-12-08 05:20:09 +00:00
|
|
|
ObjToken<Voice> Engine::fxStart(const AudioGroup* group, GroupId groupId, SFXId sfxId, float vol, float pan,
|
|
|
|
ObjToken<Studio> smx) {
|
|
|
|
const SFXGroupIndex* sfxIdx = group->getProj().getSFXGroupIndex(groupId);
|
|
|
|
if (sfxIdx) {
|
|
|
|
auto search = sfxIdx->m_sfxEntries.find(sfxId);
|
|
|
|
if (search != sfxIdx->m_sfxEntries.cend()) {
|
|
|
|
std::list<ObjToken<Voice>>::iterator ret = _allocateVoice(*group, groupId, NativeSampleRate, true, false, smx);
|
|
|
|
|
|
|
|
auto& entry = search->second;
|
|
|
|
if (!(*ret)->loadPageObject(entry.objId, 1000.f, entry.defKey, entry.defVel, 0)) {
|
|
|
|
_destroyVoice(ret);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
(*ret)->setVolume(vol);
|
|
|
|
float evalPan = pan != 0.f ? pan : ((entry.panning - 64.f) / 63.f);
|
|
|
|
evalPan = clamp(-1.f, evalPan, 1.f);
|
|
|
|
(*ret)->setPan(evalPan);
|
|
|
|
return *ret;
|
2018-08-10 06:19:23 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
}
|
2018-08-10 06:19:23 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
return {};
|
2018-08-10 06:19:23 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 04:34:29 +00:00
|
|
|
/** Start SoundMacro node playing directly (for editor use) */
|
2018-12-08 05:20:09 +00:00
|
|
|
ObjToken<Voice> Engine::macroStart(const AudioGroup* group, SoundMacroId id, uint8_t key, uint8_t vel, uint8_t mod,
|
|
|
|
ObjToken<Studio> smx) {
|
|
|
|
if (!group)
|
|
|
|
return {};
|
2018-07-28 04:34:29 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::list<ObjToken<Voice>>::iterator ret = _allocateVoice(*group, {}, NativeSampleRate, true, false, smx);
|
2018-07-28 04:34:29 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
if (!(*ret)->loadMacroObject(id, 0, 1000.f, key, vel, mod)) {
|
|
|
|
_destroyVoice(ret);
|
|
|
|
return {};
|
|
|
|
}
|
2018-07-28 04:34:29 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
(*ret)->setVolume(1.f);
|
|
|
|
(*ret)->setPan(0.f);
|
|
|
|
return *ret;
|
2018-07-28 04:34:29 +00:00
|
|
|
}
|
|
|
|
|
2018-07-31 08:04:43 +00:00
|
|
|
/** Start SoundMacro object playing directly (for editor use) */
|
2018-12-08 05:20:09 +00:00
|
|
|
ObjToken<Voice> Engine::macroStart(const AudioGroup* group, const SoundMacro* macro, uint8_t key, uint8_t vel,
|
|
|
|
uint8_t mod, ObjToken<Studio> smx) {
|
|
|
|
if (!group)
|
|
|
|
return {};
|
2018-07-31 08:04:43 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::list<ObjToken<Voice>>::iterator ret = _allocateVoice(*group, {}, NativeSampleRate, true, false, smx);
|
2018-07-31 08:04:43 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
if (!(*ret)->loadMacroObject(macro, 0, 1000.f, key, vel, mod)) {
|
|
|
|
_destroyVoice(ret);
|
|
|
|
return {};
|
|
|
|
}
|
2018-07-31 08:04:43 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
(*ret)->setVolume(1.f);
|
|
|
|
(*ret)->setPan(0.f);
|
|
|
|
return *ret;
|
2018-07-31 08:04:43 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 04:48:03 +00:00
|
|
|
/** Start PageObject node playing directly (for editor use) */
|
2018-12-08 05:20:09 +00:00
|
|
|
ObjToken<Voice> Engine::pageObjectStart(const AudioGroup* group, ObjectId id, uint8_t key, uint8_t vel, uint8_t mod,
|
|
|
|
ObjToken<Studio> smx) {
|
|
|
|
if (!group)
|
|
|
|
return {};
|
2018-08-06 04:48:03 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::list<ObjToken<Voice>>::iterator ret = _allocateVoice(*group, {}, NativeSampleRate, true, false, smx);
|
2018-08-06 04:48:03 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
if (!(*ret)->loadPageObject(id, 1000.f, key, vel, mod)) {
|
|
|
|
_destroyVoice(ret);
|
|
|
|
return {};
|
|
|
|
}
|
2018-08-06 04:48:03 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
return *ret;
|
2018-08-06 04:48:03 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 01:16:26 +00:00
|
|
|
/** Start soundFX playing from loaded audio groups, attach to positional emitter */
|
2018-12-08 05:20:09 +00:00
|
|
|
ObjToken<Emitter> Engine::addEmitter(const float* pos, const float* dir, float maxDist, float falloff, SFXId sfxId,
|
|
|
|
float minVol, float maxVol, bool doppler, ObjToken<Studio> smx) {
|
|
|
|
auto search = m_sfxLookup.find(sfxId);
|
|
|
|
if (search == m_sfxLookup.end())
|
|
|
|
return {};
|
2016-05-11 04:48:08 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
AudioGroup* grp = std::get<0>(search->second);
|
|
|
|
const SFXGroupIndex::SFXEntry* entry = std::get<2>(search->second);
|
|
|
|
if (!grp)
|
|
|
|
return {};
|
2016-05-03 01:16:26 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::list<ObjToken<Voice>>::iterator vox =
|
|
|
|
_allocateVoice(*grp, std::get<1>(search->second), NativeSampleRate, true, true, smx);
|
2016-05-28 02:28:59 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
if (!(*vox)->loadPageObject(entry->objId, 1000.f, entry->defKey, entry->defVel, 0)) {
|
|
|
|
_destroyVoice(vox);
|
|
|
|
return {};
|
|
|
|
}
|
2016-05-28 02:28:59 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
auto emitIt = m_activeEmitters.emplace(m_activeEmitters.end(),
|
|
|
|
MakeObj<Emitter>(*this, *grp, *vox, maxDist, minVol, falloff, doppler));
|
|
|
|
Emitter& ret = *(*emitIt);
|
2017-11-28 02:44:35 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
ret.getVoice()->setPan(entry->panning);
|
|
|
|
ret.setVectors(pos, dir);
|
|
|
|
ret.setMaxVol(maxVol);
|
2016-05-03 05:16:37 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
return *emitIt;
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
|
|
|
|
2017-09-19 03:59:20 +00:00
|
|
|
/** Build listener and add to engine's listener list */
|
2018-07-29 03:37:06 +00:00
|
|
|
ObjToken<Listener> Engine::addListener(const float* pos, const float* dir, const float* heading, const float* up,
|
2018-12-08 05:20:09 +00:00
|
|
|
float frontDiff, float backDiff, float soundSpeed, float volume) {
|
|
|
|
auto listenerIt =
|
|
|
|
m_activeListeners.emplace(m_activeListeners.end(), MakeObj<Listener>(volume, frontDiff, backDiff, soundSpeed));
|
|
|
|
Listener& ret = *(*listenerIt);
|
|
|
|
ret.setVectors(pos, dir, heading, up);
|
|
|
|
return *listenerIt;
|
2017-09-19 03:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Remove listener from engine's listener list */
|
2018-12-08 05:20:09 +00:00
|
|
|
void Engine::removeListener(Listener* listener) {
|
|
|
|
for (auto it = m_activeListeners.begin(); it != m_activeListeners.end(); ++it) {
|
|
|
|
if (it->get() == listener) {
|
|
|
|
m_activeListeners.erase(it);
|
|
|
|
return;
|
2017-09-19 03:59:20 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
}
|
2017-09-19 03:59:20 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 01:16:26 +00:00
|
|
|
/** Start song playing from loaded audio groups */
|
2018-12-08 05:20:09 +00:00
|
|
|
ObjToken<Sequencer> Engine::seqPlay(GroupId groupId, SongId songId, const unsigned char* arrData, bool loop,
|
|
|
|
ObjToken<Studio> smx) {
|
|
|
|
std::pair<AudioGroup*, const SongGroupIndex*> songGrp = _findSongGroup(groupId);
|
|
|
|
if (songGrp.second) {
|
|
|
|
std::list<ObjToken<Sequencer>>::iterator ret = _allocateSequencer(*songGrp.first, groupId, songId, smx);
|
|
|
|
if (!*ret)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
if (arrData)
|
|
|
|
(*ret)->playSong(arrData, loop);
|
|
|
|
return *ret;
|
|
|
|
}
|
2016-05-15 21:56:23 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
std::pair<AudioGroup*, const SFXGroupIndex*> sfxGrp = _findSFXGroup(groupId);
|
|
|
|
if (sfxGrp.second) {
|
|
|
|
std::list<ObjToken<Sequencer>>::iterator ret = _allocateSequencer(*sfxGrp.first, groupId, songId, smx);
|
|
|
|
if (!*ret)
|
|
|
|
return {};
|
|
|
|
return *ret;
|
|
|
|
}
|
2016-06-15 00:36:25 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
return {};
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-10 06:19:23 +00:00
|
|
|
ObjToken<Sequencer> Engine::seqPlay(const AudioGroup* group, GroupId groupId, SongId songId,
|
2018-12-08 05:20:09 +00:00
|
|
|
const unsigned char* arrData, bool loop, ObjToken<Studio> smx) {
|
|
|
|
const SongGroupIndex* sgIdx = group->getProj().getSongGroupIndex(groupId);
|
|
|
|
if (sgIdx) {
|
|
|
|
std::list<ObjToken<Sequencer>>::iterator ret = _allocateSequencer(*group, groupId, songId, smx);
|
|
|
|
if (!*ret)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
if (arrData)
|
|
|
|
(*ret)->playSong(arrData, loop);
|
|
|
|
return *ret;
|
|
|
|
}
|
2018-08-10 06:19:23 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
const SFXGroupIndex* sfxIdx = group->getProj().getSFXGroupIndex(groupId);
|
|
|
|
if (sfxIdx) {
|
|
|
|
std::list<ObjToken<Sequencer>>::iterator ret = _allocateSequencer(*group, groupId, songId, smx);
|
|
|
|
if (!*ret)
|
|
|
|
return {};
|
|
|
|
return *ret;
|
|
|
|
}
|
2018-08-10 06:19:23 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
return {};
|
2018-08-10 06:19:23 +00:00
|
|
|
}
|
|
|
|
|
2016-07-14 06:16:00 +00:00
|
|
|
/** Set total volume of engine */
|
2018-12-08 05:20:09 +00:00
|
|
|
void Engine::setVolume(float vol) { m_masterVolume = vol; }
|
2016-07-14 06:16:00 +00:00
|
|
|
|
2016-05-03 05:16:37 +00:00
|
|
|
/** Find voice from VoiceId */
|
2018-12-08 05:20:09 +00:00
|
|
|
ObjToken<Voice> Engine::findVoice(int vid) {
|
|
|
|
for (ObjToken<Voice>& vox : m_activeVoices) {
|
|
|
|
ObjToken<Voice> ret = vox->_findVoice(vid, vox);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ObjToken<Sequencer>& seq : m_activeSequencers) {
|
|
|
|
ObjToken<Voice> ret = seq->findVoice(vid);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
2016-05-03 05:16:37 +00:00
|
|
|
}
|
|
|
|
|
2016-05-06 21:22:39 +00:00
|
|
|
/** Stop all voices in `kg`, stops immediately (no KeyOff) when `flag` set */
|
2018-12-08 05:20:09 +00:00
|
|
|
void Engine::killKeygroup(uint8_t kg, bool now) {
|
|
|
|
for (auto it = m_activeVoices.begin(); it != m_activeVoices.end();) {
|
|
|
|
Voice* vox = it->get();
|
|
|
|
if (vox->m_keygroup == kg) {
|
|
|
|
if (now) {
|
|
|
|
it = _destroyVoice(it);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
vox->keyOff();
|
2016-05-06 21:22:39 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
++it;
|
|
|
|
}
|
2016-05-15 21:56:23 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
for (ObjToken<Sequencer>& seq : m_activeSequencers)
|
|
|
|
seq->killKeygroup(kg, now);
|
2016-05-06 21:22:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Send all voices using `macroId` the message `val` */
|
2018-12-08 05:20:09 +00:00
|
|
|
void Engine::sendMacroMessage(ObjectId macroId, int32_t val) {
|
|
|
|
for (auto it = m_activeVoices.begin(); it != m_activeVoices.end(); ++it) {
|
|
|
|
Voice* vox = it->get();
|
|
|
|
if (vox->getObjectId() == macroId)
|
|
|
|
vox->message(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ObjToken<Sequencer>& seq : m_activeSequencers)
|
|
|
|
seq->sendMacroMessage(macroId, val);
|
2016-05-06 21:22:39 +00:00
|
|
|
}
|
2018-08-07 07:09:23 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
size_t Engine::getNumTotalActiveVoices() const {
|
|
|
|
size_t ret = 0;
|
|
|
|
for (const auto& vox : m_activeVoices)
|
|
|
|
ret += vox->getTotalVoices();
|
|
|
|
return ret;
|
2016-05-03 01:16:26 +00:00
|
|
|
}
|
2018-12-08 05:20:09 +00:00
|
|
|
} // namespace amuse
|