mirror of
https://github.com/AxioDL/amuse.git
synced 2025-12-08 21:17:49 +00:00
Work on Sequencer
This commit is contained in:
@@ -1,8 +1,165 @@
|
||||
#include "amuse/Sequencer.hpp"
|
||||
#include "amuse/Submix.hpp"
|
||||
#include "amuse/Voice.hpp"
|
||||
#include "amuse/Engine.hpp"
|
||||
|
||||
namespace amuse
|
||||
{
|
||||
|
||||
void Sequencer::_destroy()
|
||||
{
|
||||
Entity::_destroy();
|
||||
if (m_submix)
|
||||
m_submix->m_activeSequencers.erase(this);
|
||||
|
||||
for (const auto& chan : m_chanStates)
|
||||
for (const auto& vox : chan.second.m_chanVoxs)
|
||||
vox.second->_destroy();
|
||||
}
|
||||
|
||||
Sequencer::~Sequencer() {}
|
||||
|
||||
Sequencer::Sequencer(Engine& engine, const AudioGroup& group,
|
||||
const SongGroupIndex& songGroup, int setupId, Submix* smx)
|
||||
: Entity(engine, group), m_songGroup(songGroup), m_submix(smx)
|
||||
{
|
||||
auto it = m_songGroup.m_midiSetups.find(setupId);
|
||||
if (it != m_songGroup.m_midiSetups.cend())
|
||||
m_midiSetup = it->second->data();
|
||||
if (m_submix)
|
||||
m_submix->m_activeSequencers.insert(this);
|
||||
}
|
||||
|
||||
Sequencer::ChannelState::~ChannelState()
|
||||
{
|
||||
if (m_submix)
|
||||
m_parent.m_engine.removeSubmix(m_submix);
|
||||
}
|
||||
|
||||
Sequencer::ChannelState::ChannelState(Sequencer& parent, uint8_t chanId)
|
||||
: m_parent(parent), m_setup(m_parent.m_midiSetup[chanId])
|
||||
{
|
||||
if (chanId == 10)
|
||||
{
|
||||
auto it = m_parent.m_songGroup.m_drumPages.find(m_setup.programNo);
|
||||
if (it != m_parent.m_songGroup.m_drumPages.cend())
|
||||
m_page = it->second;
|
||||
}
|
||||
else
|
||||
{
|
||||
auto it = m_parent.m_songGroup.m_normPages.find(m_setup.programNo);
|
||||
if (it != m_parent.m_songGroup.m_normPages.cend())
|
||||
m_page = it->second;
|
||||
}
|
||||
|
||||
m_submix = m_parent.m_engine.addSubmix(m_parent.m_submix);
|
||||
if (m_setup.reverb)
|
||||
m_submix->makeReverbStd(0.5f, m_setup.reverb / 127.f, 5.f, 0.5f, 0.f);
|
||||
if (m_setup.chorus)
|
||||
m_submix->makeChorus(15, m_setup.chorus * 5 / 127, 5000);
|
||||
}
|
||||
|
||||
size_t Sequencer::getVoiceCount() const
|
||||
{
|
||||
size_t ret = 0;
|
||||
for (const auto& chan : m_chanStates)
|
||||
for (const auto& vox : chan.second.m_chanVoxs)
|
||||
ret += vox.second->getTotalVoices();
|
||||
return ret;
|
||||
}
|
||||
|
||||
std::shared_ptr<Voice> Sequencer::ChannelState::keyOn(uint8_t note, uint8_t velocity)
|
||||
{
|
||||
if (!m_page)
|
||||
return {};
|
||||
|
||||
std::shared_ptr<Voice> ret = m_parent.m_engine._allocateVoice(m_parent.m_audioGroup, 32000.0,
|
||||
true, false, m_submix);
|
||||
m_chanVoxs[note] = ret;
|
||||
if (!ret->loadSoundObject(SBig(m_page->objId), 0, 1000.f, note, velocity, m_ctrlVals[1]))
|
||||
{
|
||||
m_parent.m_engine._destroyVoice(ret.get());
|
||||
return {};
|
||||
}
|
||||
ret->setVolume(m_setup.volume / 127.f);
|
||||
ret->setPan(m_setup.panning / 64.f - 127.f);
|
||||
return ret;
|
||||
}
|
||||
|
||||
std::shared_ptr<Voice> Sequencer::keyOn(uint8_t chan, uint8_t note, uint8_t velocity)
|
||||
{
|
||||
auto chanSearch = m_chanStates.find(chan);
|
||||
if (chanSearch == m_chanStates.cend())
|
||||
{
|
||||
auto it = m_chanStates.emplace(std::make_pair(chan, ChannelState(*this, chan)));
|
||||
it.first->second.keyOn(note, velocity);
|
||||
}
|
||||
|
||||
return chanSearch->second.keyOn(note, velocity);
|
||||
}
|
||||
|
||||
void Sequencer::ChannelState::keyOff(uint8_t note, uint8_t velocity)
|
||||
{
|
||||
auto keySearch = m_chanVoxs.find(note);
|
||||
if (keySearch == m_chanVoxs.cend())
|
||||
return;
|
||||
|
||||
keySearch->second->keyOff();
|
||||
m_chanVoxs.erase(keySearch);
|
||||
}
|
||||
|
||||
void Sequencer::keyOff(uint8_t chan, uint8_t note, uint8_t velocity)
|
||||
{
|
||||
auto chanSearch = m_chanStates.find(chan);
|
||||
if (chanSearch == m_chanStates.cend())
|
||||
return;
|
||||
|
||||
chanSearch->second.keyOff(note, velocity);
|
||||
}
|
||||
|
||||
void Sequencer::ChannelState::setCtrlValue(uint8_t ctrl, int8_t val)
|
||||
{
|
||||
m_ctrlVals[ctrl] = val;
|
||||
}
|
||||
|
||||
void Sequencer::setCtrlValue(uint8_t chan, uint8_t ctrl, int8_t val)
|
||||
{
|
||||
auto chanSearch = m_chanStates.find(chan);
|
||||
if (chanSearch == m_chanStates.cend())
|
||||
return;
|
||||
|
||||
chanSearch->second.setCtrlValue(ctrl, val);
|
||||
}
|
||||
|
||||
void Sequencer::ChannelState::setPitchWheel(float pitchWheel)
|
||||
{
|
||||
for (const auto& vox : m_chanVoxs)
|
||||
vox.second->setPitchWheel(pitchWheel);
|
||||
}
|
||||
|
||||
void Sequencer::setPitchWheel(uint8_t chan, float pitchWheel)
|
||||
{
|
||||
auto chanSearch = m_chanStates.find(chan);
|
||||
if (chanSearch == m_chanStates.cend())
|
||||
return;
|
||||
|
||||
chanSearch->second.setPitchWheel(pitchWheel);
|
||||
}
|
||||
|
||||
void Sequencer::ChannelState::allOff()
|
||||
{
|
||||
for (const auto& vox : m_chanVoxs)
|
||||
vox.second->keyOff();
|
||||
}
|
||||
|
||||
void Sequencer::allOff(bool now)
|
||||
{
|
||||
if (now)
|
||||
for (auto& chan : m_chanStates)
|
||||
chan.second.m_chanVoxs.clear();
|
||||
else
|
||||
for (auto& chan : m_chanStates)
|
||||
chan.second.allOff();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user