72 lines
No EOL
2.5 KiB
C++
72 lines
No EOL
2.5 KiB
C++
#pragma once
|
|
#include "Globals.h"
|
|
#include "Defaults.h"
|
|
#include "SfzHelpers.h"
|
|
#include <optional>
|
|
|
|
|
|
namespace sfz
|
|
{
|
|
|
|
struct EGDescription
|
|
{
|
|
EGDescription() = default;
|
|
EGDescription(const EGDescription&) = default;
|
|
EGDescription(EGDescription&&) = default;
|
|
~EGDescription() = default;
|
|
|
|
float attack { Default::attack };
|
|
float decay { Default::decay };
|
|
float delay { Default::delayEG };
|
|
float hold { Default::hold };
|
|
float release { Default::release };
|
|
float start { Default::start };
|
|
float sustain { Default::sustain };
|
|
int depth { Default::depth };
|
|
float vel2attack { Default::attack };
|
|
float vel2decay { Default::decay };
|
|
float vel2delay { Default::delayEG };
|
|
float vel2hold { Default::hold };
|
|
float vel2release { Default::release };
|
|
float vel2sustain { Default::vel2sustain };
|
|
int vel2depth { Default::depth };
|
|
|
|
std::optional<CCValuePair> ccAttack;
|
|
std::optional<CCValuePair> ccDecay;
|
|
std::optional<CCValuePair> ccDelay;
|
|
std::optional<CCValuePair> ccHold;
|
|
std::optional<CCValuePair> ccRelease;
|
|
std::optional<CCValuePair> ccStart;
|
|
std::optional<CCValuePair> ccSustain;
|
|
|
|
float getAttack(const CCValueArray &ccValues, uint8_t velocity) const noexcept
|
|
{
|
|
return ccSwitchedValue(ccValues, ccAttack, attack) + normalizeCC(velocity)*vel2attack;
|
|
}
|
|
float getDecay(const CCValueArray &ccValues, uint8_t velocity) const noexcept
|
|
{
|
|
return ccSwitchedValue(ccValues, ccDecay, decay) + normalizeCC(velocity)*vel2decay;
|
|
}
|
|
float getDelay(const CCValueArray &ccValues, uint8_t velocity) const noexcept
|
|
{
|
|
return ccSwitchedValue(ccValues, ccDelay, delay) + normalizeCC(velocity)*vel2delay;
|
|
}
|
|
float getHold(const CCValueArray &ccValues, uint8_t velocity) const noexcept
|
|
{
|
|
return ccSwitchedValue(ccValues, ccHold, hold) + normalizeCC(velocity)*vel2hold;
|
|
}
|
|
float getRelease(const CCValueArray &ccValues, uint8_t velocity) const noexcept
|
|
{
|
|
return ccSwitchedValue(ccValues, ccRelease, release) + normalizeCC(velocity)*vel2release;
|
|
}
|
|
float getStart(const CCValueArray &ccValues, uint8_t velocity [[maybe_unused]]) const noexcept
|
|
{
|
|
return ccSwitchedValue(ccValues, ccStart, start);
|
|
}
|
|
float getSustain(const CCValueArray &ccValues, uint8_t velocity) const noexcept
|
|
{
|
|
return ccSwitchedValue(ccValues, ccSustain, sustain) + normalizeCC(velocity)*vel2sustain;
|
|
}
|
|
};
|
|
|
|
} //namespace sfz
|