2019-07-10 07:14:31 +02:00
|
|
|
/**
|
|
|
|
* OpenAL cross platform audio library
|
|
|
|
* Copyright (C) 2019 by Anis A. Hireche
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
* Or go to http://www.gnu.org/copyleft/lgpl.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <functional>
|
|
|
|
|
2019-07-29 17:54:07 -07:00
|
|
|
#include "al/auxeffectslot.h"
|
2019-07-28 18:33:29 -07:00
|
|
|
#include "alcmain.h"
|
2019-07-10 07:14:31 +02:00
|
|
|
#include "alcontext.h"
|
|
|
|
#include "alu.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
#define MAX_UPDATE_SAMPLES 128
|
2019-07-18 21:42:59 +02:00
|
|
|
#define NUM_FORMANTS 4
|
|
|
|
#define NUM_FILTERS 2
|
|
|
|
#define Q_FACTOR 5.0f
|
|
|
|
|
|
|
|
#define VOWEL_A_INDEX 0
|
|
|
|
#define VOWEL_B_INDEX 1
|
2019-07-10 07:14:31 +02:00
|
|
|
|
|
|
|
#define WAVEFORM_FRACBITS 24
|
|
|
|
#define WAVEFORM_FRACONE (1<<WAVEFORM_FRACBITS)
|
|
|
|
#define WAVEFORM_FRACMASK (WAVEFORM_FRACONE-1)
|
|
|
|
|
2019-09-14 10:59:02 -07:00
|
|
|
inline ALfloat Sin(ALuint index)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
2019-07-28 17:15:34 -07:00
|
|
|
constexpr ALfloat scale{al::MathDefs<float>::Tau() / ALfloat{WAVEFORM_FRACONE}};
|
|
|
|
return std::sin(static_cast<ALfloat>(index) * scale)*0.5f + 0.5f;
|
2019-07-10 07:14:31 +02:00
|
|
|
}
|
|
|
|
|
2019-09-14 10:59:02 -07:00
|
|
|
inline ALfloat Saw(ALuint index)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
2019-07-28 17:15:34 -07:00
|
|
|
return static_cast<ALfloat>(index) / ALfloat{WAVEFORM_FRACONE};
|
2019-07-10 07:14:31 +02:00
|
|
|
}
|
|
|
|
|
2019-09-14 10:59:02 -07:00
|
|
|
inline ALfloat Triangle(ALuint index)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
2019-07-28 17:15:34 -07:00
|
|
|
return std::fabs(static_cast<ALfloat>(index)*(2.0f/WAVEFORM_FRACONE) - 1.0f);
|
2019-07-10 07:14:31 +02:00
|
|
|
}
|
|
|
|
|
2019-09-14 10:59:02 -07:00
|
|
|
inline ALfloat Half(ALuint)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
|
|
|
return 0.5f;
|
|
|
|
}
|
|
|
|
|
2019-09-14 10:59:02 -07:00
|
|
|
template<ALfloat func(ALuint)>
|
|
|
|
void Oscillate(ALfloat *RESTRICT dst, ALuint index, const ALuint step, size_t todo)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
2019-08-20 14:30:04 -07:00
|
|
|
for(size_t i{0u};i < todo;i++)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
|
|
|
index += step;
|
|
|
|
index &= WAVEFORM_FRACMASK;
|
|
|
|
dst[i] = func(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct FormantFilter
|
|
|
|
{
|
2019-07-18 16:04:45 -07:00
|
|
|
ALfloat f0norm{0.0f};
|
|
|
|
ALfloat fGain{1.0f};
|
|
|
|
ALfloat s1{0.0f};
|
|
|
|
ALfloat s2{0.0f};
|
|
|
|
|
|
|
|
FormantFilter() = default;
|
|
|
|
FormantFilter(ALfloat f0norm_, ALfloat gain) : f0norm{f0norm_}, fGain{gain} { }
|
|
|
|
|
2019-08-20 14:30:04 -07:00
|
|
|
inline void process(const ALfloat* samplesIn, ALfloat* samplesOut, const size_t numInput)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
2019-07-16 17:40:18 +02:00
|
|
|
/* A state variable filter from a topology-preserving transform.
|
|
|
|
* Based on a talk given by Ivan Cohen: https://www.youtube.com/watch?v=esjHXGPyrhg
|
|
|
|
*/
|
2019-07-18 21:42:59 +02:00
|
|
|
const ALfloat g = std::tan(al::MathDefs<float>::Pi() * f0norm);
|
|
|
|
const ALfloat h = 1.0f / (1 + (g / Q_FACTOR) + (g * g));
|
2019-07-10 07:14:31 +02:00
|
|
|
|
2019-08-20 14:30:04 -07:00
|
|
|
for(size_t i{0u};i < numInput;i++)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
2019-07-18 21:42:59 +02:00
|
|
|
const ALfloat H = h * (samplesIn[i] - (1.0f / Q_FACTOR + g) * s1 - s2);
|
|
|
|
const ALfloat B = g * H + s1;
|
|
|
|
const ALfloat L = g * B + s2;
|
2019-07-10 07:14:31 +02:00
|
|
|
|
|
|
|
s1 = g * H + B;
|
|
|
|
s2 = g * B + L;
|
|
|
|
|
|
|
|
// Apply peak and accumulate samples.
|
|
|
|
samplesOut[i] += B * fGain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void clear()
|
|
|
|
{
|
|
|
|
s1 = 0.0f;
|
|
|
|
s2 = 0.0f;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-16 17:40:18 +02:00
|
|
|
|
2019-07-10 07:14:31 +02:00
|
|
|
struct VmorpherState final : public EffectState {
|
|
|
|
struct {
|
2019-07-18 21:42:59 +02:00
|
|
|
/* Effect parameters */
|
|
|
|
FormantFilter Formants[NUM_FILTERS][NUM_FORMANTS];
|
2019-07-10 07:14:31 +02:00
|
|
|
|
|
|
|
/* Effect gains for each channel */
|
|
|
|
ALfloat CurrentGains[MAX_OUTPUT_CHANNELS]{};
|
|
|
|
ALfloat TargetGains[MAX_OUTPUT_CHANNELS]{};
|
|
|
|
} mChans[MAX_AMBI_CHANNELS];
|
|
|
|
|
2019-09-14 10:59:02 -07:00
|
|
|
void (*mGetSamples)(ALfloat* RESTRICT, ALuint, const ALuint, size_t){};
|
2019-07-10 07:14:31 +02:00
|
|
|
|
2019-09-14 10:59:02 -07:00
|
|
|
ALuint mIndex{0};
|
|
|
|
ALuint mStep{1};
|
2019-07-10 07:14:31 +02:00
|
|
|
|
2019-07-16 17:40:18 +02:00
|
|
|
/* Effects buffers */
|
2019-07-10 07:14:31 +02:00
|
|
|
ALfloat mSampleBufferA[MAX_UPDATE_SAMPLES]{};
|
|
|
|
ALfloat mSampleBufferB[MAX_UPDATE_SAMPLES]{};
|
|
|
|
|
|
|
|
ALboolean deviceUpdate(const ALCdevice *device) override;
|
|
|
|
void update(const ALCcontext *context, const ALeffectslot *slot, const EffectProps *props, const EffectTarget target) override;
|
2019-08-26 09:16:20 -07:00
|
|
|
void process(const size_t samplesToDo, const al::span<const FloatBufferLine> samplesIn, const al::span<FloatBufferLine> samplesOut) override;
|
2019-07-10 07:14:31 +02:00
|
|
|
|
2019-07-18 16:04:45 -07:00
|
|
|
static std::array<FormantFilter,4> getFiltersByPhoneme(ALenum phoneme, ALfloat frequency, ALfloat pitch);
|
|
|
|
|
2019-07-10 07:14:31 +02:00
|
|
|
DEF_NEWDEL(VmorpherState)
|
|
|
|
};
|
|
|
|
|
2019-07-18 16:04:45 -07:00
|
|
|
std::array<FormantFilter,4> VmorpherState::getFiltersByPhoneme(ALenum phoneme, ALfloat frequency, ALfloat pitch)
|
|
|
|
{
|
|
|
|
/* Using soprano formant set of values to
|
|
|
|
* better match mid-range frequency space.
|
|
|
|
*
|
|
|
|
* See: https://www.classes.cs.uchicago.edu/archive/1999/spring/CS295/Computing_Resources/Csound/CsManual3.48b1.HTML/Appendices/table3.html
|
|
|
|
*/
|
|
|
|
switch(phoneme)
|
|
|
|
{
|
2019-09-14 10:59:02 -07:00
|
|
|
case AL_VOCAL_MORPHER_PHONEME_A:
|
|
|
|
return {{
|
|
|
|
{( 800 * pitch) / frequency, 1.000000f}, /* std::pow(10.0f, 0 / 20.0f); */
|
|
|
|
{(1150 * pitch) / frequency, 0.501187f}, /* std::pow(10.0f, -6 / 20.0f); */
|
|
|
|
{(2900 * pitch) / frequency, 0.025118f}, /* std::pow(10.0f, -32 / 20.0f); */
|
|
|
|
{(3900 * pitch) / frequency, 0.100000f} /* std::pow(10.0f, -20 / 20.0f); */
|
|
|
|
}};
|
|
|
|
case AL_VOCAL_MORPHER_PHONEME_E:
|
|
|
|
return {{
|
|
|
|
{( 350 * pitch) / frequency, 1.000000f}, /* std::pow(10.0f, 0 / 20.0f); */
|
|
|
|
{(2000 * pitch) / frequency, 0.100000f}, /* std::pow(10.0f, -20 / 20.0f); */
|
|
|
|
{(2800 * pitch) / frequency, 0.177827f}, /* std::pow(10.0f, -15 / 20.0f); */
|
|
|
|
{(3600 * pitch) / frequency, 0.009999f} /* std::pow(10.0f, -40 / 20.0f); */
|
|
|
|
}};
|
|
|
|
case AL_VOCAL_MORPHER_PHONEME_I:
|
|
|
|
return {{
|
|
|
|
{( 270 * pitch) / frequency, 1.000000f}, /* std::pow(10.0f, 0 / 20.0f); */
|
|
|
|
{(2140 * pitch) / frequency, 0.251188f}, /* std::pow(10.0f, -12 / 20.0f); */
|
|
|
|
{(2950 * pitch) / frequency, 0.050118f}, /* std::pow(10.0f, -26 / 20.0f); */
|
|
|
|
{(3900 * pitch) / frequency, 0.050118f} /* std::pow(10.0f, -26 / 20.0f); */
|
|
|
|
}};
|
|
|
|
case AL_VOCAL_MORPHER_PHONEME_O:
|
|
|
|
return {{
|
|
|
|
{( 450 * pitch) / frequency, 1.000000f}, /* std::pow(10.0f, 0 / 20.0f); */
|
|
|
|
{( 800 * pitch) / frequency, 0.281838f}, /* std::pow(10.0f, -11 / 20.0f); */
|
|
|
|
{(2830 * pitch) / frequency, 0.079432f}, /* std::pow(10.0f, -22 / 20.0f); */
|
|
|
|
{(3800 * pitch) / frequency, 0.079432f} /* std::pow(10.0f, -22 / 20.0f); */
|
|
|
|
}};
|
|
|
|
case AL_VOCAL_MORPHER_PHONEME_U:
|
|
|
|
return {{
|
|
|
|
{( 325 * pitch) / frequency, 1.000000f}, /* std::pow(10.0f, 0 / 20.0f); */
|
|
|
|
{( 700 * pitch) / frequency, 0.158489f}, /* std::pow(10.0f, -16 / 20.0f); */
|
|
|
|
{(2700 * pitch) / frequency, 0.017782f}, /* std::pow(10.0f, -35 / 20.0f); */
|
|
|
|
{(3800 * pitch) / frequency, 0.009999f} /* std::pow(10.0f, -40 / 20.0f); */
|
|
|
|
}};
|
2019-07-18 16:04:45 -07:00
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-16 16:19:51 -07:00
|
|
|
ALboolean VmorpherState::deviceUpdate(const ALCdevice* /*device*/)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
|
|
|
for(auto &e : mChans)
|
|
|
|
{
|
2019-07-18 21:42:59 +02:00
|
|
|
std::for_each(std::begin(e.Formants[VOWEL_A_INDEX]), std::end(e.Formants[VOWEL_A_INDEX]),
|
2019-07-10 07:14:31 +02:00
|
|
|
std::mem_fn(&FormantFilter::clear));
|
2019-07-18 21:42:59 +02:00
|
|
|
std::for_each(std::begin(e.Formants[VOWEL_B_INDEX]), std::end(e.Formants[VOWEL_B_INDEX]),
|
2019-07-10 07:14:31 +02:00
|
|
|
std::mem_fn(&FormantFilter::clear));
|
|
|
|
std::fill(std::begin(e.CurrentGains), std::end(e.CurrentGains), 0.0f);
|
|
|
|
}
|
2019-07-16 17:40:18 +02:00
|
|
|
|
2019-07-10 07:14:31 +02:00
|
|
|
return AL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VmorpherState::update(const ALCcontext *context, const ALeffectslot *slot, const EffectProps *props, const EffectTarget target)
|
|
|
|
{
|
2019-08-01 19:44:09 -07:00
|
|
|
const ALCdevice *device{context->mDevice.get()};
|
2019-07-18 21:42:59 +02:00
|
|
|
const ALfloat frequency{static_cast<ALfloat>(device->Frequency)};
|
2019-09-14 10:59:02 -07:00
|
|
|
const ALfloat step{props->Vmorpher.Rate / frequency};
|
|
|
|
mStep = fastf2u(clampf(step*WAVEFORM_FRACONE, 0.0f, ALfloat{WAVEFORM_FRACONE-1}));
|
2019-07-10 07:14:31 +02:00
|
|
|
|
|
|
|
if(mStep == 0)
|
|
|
|
mGetSamples = Oscillate<Half>;
|
|
|
|
else if(props->Vmorpher.Waveform == AL_VOCAL_MORPHER_WAVEFORM_SINUSOID)
|
|
|
|
mGetSamples = Oscillate<Sin>;
|
|
|
|
else if(props->Vmorpher.Waveform == AL_VOCAL_MORPHER_WAVEFORM_SAWTOOTH)
|
|
|
|
mGetSamples = Oscillate<Saw>;
|
|
|
|
else /*if(props->Vmorpher.Waveform == AL_VOCAL_MORPHER_WAVEFORM_TRIANGLE)*/
|
|
|
|
mGetSamples = Oscillate<Triangle>;
|
|
|
|
|
2019-08-08 15:13:47 -07:00
|
|
|
const ALfloat pitchA{std::pow(2.0f, props->Vmorpher.PhonemeACoarseTuning / 12.0f)};
|
|
|
|
const ALfloat pitchB{std::pow(2.0f, props->Vmorpher.PhonemeBCoarseTuning / 12.0f)};
|
2019-07-16 17:40:18 +02:00
|
|
|
|
2019-07-18 16:04:45 -07:00
|
|
|
auto vowelA = getFiltersByPhoneme(props->Vmorpher.PhonemeA, frequency, pitchA);
|
|
|
|
auto vowelB = getFiltersByPhoneme(props->Vmorpher.PhonemeB, frequency, pitchB);
|
2019-07-10 07:14:31 +02:00
|
|
|
|
2019-07-18 16:04:45 -07:00
|
|
|
/* Copy the filter coefficients to the input channels. */
|
|
|
|
for(size_t i{0u};i < slot->Wet.Buffer.size();++i)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
2019-07-18 16:04:45 -07:00
|
|
|
std::copy(vowelA.begin(), vowelA.end(), std::begin(mChans[i].Formants[VOWEL_A_INDEX]));
|
|
|
|
std::copy(vowelB.begin(), vowelB.end(), std::begin(mChans[i].Formants[VOWEL_B_INDEX]));
|
2019-07-10 07:14:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mOutTarget = target.Main->Buffer;
|
2019-07-18 16:04:45 -07:00
|
|
|
for(size_t i{0u};i < slot->Wet.Buffer.size();++i)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
|
|
|
auto coeffs = GetAmbiIdentityRow(i);
|
|
|
|
ComputePanGains(target.Main, coeffs.data(), slot->Params.Gain, mChans[i].TargetGains);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 09:16:20 -07:00
|
|
|
void VmorpherState::process(const size_t samplesToDo, const al::span<const FloatBufferLine> samplesIn, const al::span<FloatBufferLine> samplesOut)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
|
|
|
/* Following the EFX specification for a conformant implementation which describes
|
|
|
|
* the effect as a pair of 4-band formant filters blended together using an LFO.
|
|
|
|
*/
|
2019-08-20 14:30:04 -07:00
|
|
|
for(size_t base{0u};base < samplesToDo;)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
|
|
|
alignas(16) ALfloat lfo[MAX_UPDATE_SAMPLES];
|
2019-08-20 14:30:04 -07:00
|
|
|
const size_t td{minz(MAX_UPDATE_SAMPLES, samplesToDo-base)};
|
2019-07-10 07:14:31 +02:00
|
|
|
|
|
|
|
mGetSamples(lfo, mIndex, mStep, td);
|
|
|
|
mIndex += (mStep * td) & WAVEFORM_FRACMASK;
|
|
|
|
mIndex &= WAVEFORM_FRACMASK;
|
|
|
|
|
2019-08-26 09:16:20 -07:00
|
|
|
auto chandata = std::addressof(mChans[0]);
|
|
|
|
for(const auto &input : samplesIn)
|
2019-07-10 07:14:31 +02:00
|
|
|
{
|
2019-08-08 15:13:47 -07:00
|
|
|
std::fill_n(std::begin(mSampleBufferA), td, 0.0f);
|
|
|
|
std::fill_n(std::begin(mSampleBufferB), td, 0.0f);
|
2019-07-10 07:14:31 +02:00
|
|
|
|
2019-08-26 09:16:20 -07:00
|
|
|
auto& vowelA = chandata->Formants[VOWEL_A_INDEX];
|
|
|
|
auto& vowelB = chandata->Formants[VOWEL_B_INDEX];
|
2019-07-16 17:40:18 +02:00
|
|
|
|
2019-07-10 07:14:31 +02:00
|
|
|
/* Process first vowel. */
|
2019-08-26 09:16:20 -07:00
|
|
|
vowelA[0].process(&input[base], mSampleBufferA, td);
|
|
|
|
vowelA[1].process(&input[base], mSampleBufferA, td);
|
|
|
|
vowelA[2].process(&input[base], mSampleBufferA, td);
|
|
|
|
vowelA[3].process(&input[base], mSampleBufferA, td);
|
2019-07-10 07:14:31 +02:00
|
|
|
|
|
|
|
/* Process second vowel. */
|
2019-08-26 09:16:20 -07:00
|
|
|
vowelB[0].process(&input[base], mSampleBufferB, td);
|
|
|
|
vowelB[1].process(&input[base], mSampleBufferB, td);
|
|
|
|
vowelB[2].process(&input[base], mSampleBufferB, td);
|
|
|
|
vowelB[3].process(&input[base], mSampleBufferB, td);
|
2019-07-10 07:14:31 +02:00
|
|
|
|
2019-08-20 04:16:44 -07:00
|
|
|
alignas(16) ALfloat blended[MAX_UPDATE_SAMPLES];
|
2019-08-20 14:30:04 -07:00
|
|
|
for(size_t i{0u};i < td;i++)
|
2019-08-20 04:16:44 -07:00
|
|
|
blended[i] = lerp(mSampleBufferA[i], mSampleBufferB[i], lfo[i]);
|
2019-07-10 07:14:31 +02:00
|
|
|
|
2019-07-16 17:40:18 +02:00
|
|
|
/* Now, mix the processed sound data to the output. */
|
2019-08-26 09:16:20 -07:00
|
|
|
MixSamples({blended, td}, samplesOut, chandata->CurrentGains, chandata->TargetGains,
|
2019-08-20 14:30:04 -07:00
|
|
|
samplesToDo-base, base);
|
2019-08-26 09:16:20 -07:00
|
|
|
++chandata;
|
2019-07-10 07:14:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
base += td;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Vmorpher_setParami(EffectProps* props, ALCcontext *context, ALenum param, ALint val)
|
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
case AL_VOCAL_MORPHER_WAVEFORM:
|
2019-07-16 17:40:18 +02:00
|
|
|
if(!(val >= AL_VOCAL_MORPHER_MIN_WAVEFORM && val <= AL_VOCAL_MORPHER_MAX_WAVEFORM))
|
2019-07-10 07:14:31 +02:00
|
|
|
SETERR_RETURN(context, AL_INVALID_VALUE,, "Vocal morpher waveform out of range");
|
|
|
|
props->Vmorpher.Waveform = val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VOCAL_MORPHER_PHONEMEA:
|
2019-07-16 17:40:18 +02:00
|
|
|
if(!(val >= AL_VOCAL_MORPHER_MIN_PHONEMEA && val <= AL_VOCAL_MORPHER_MAX_PHONEMEA))
|
2019-07-10 07:14:31 +02:00
|
|
|
SETERR_RETURN(context, AL_INVALID_VALUE,, "Vocal morpher phoneme-a out of range");
|
|
|
|
props->Vmorpher.PhonemeA = val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VOCAL_MORPHER_PHONEMEB:
|
2019-07-16 17:40:18 +02:00
|
|
|
if(!(val >= AL_VOCAL_MORPHER_MIN_PHONEMEB && val <= AL_VOCAL_MORPHER_MAX_PHONEMEB))
|
2019-07-10 07:14:31 +02:00
|
|
|
SETERR_RETURN(context, AL_INVALID_VALUE,, "Vocal morpher phoneme-b out of range");
|
|
|
|
props->Vmorpher.PhonemeB = val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VOCAL_MORPHER_PHONEMEA_COARSE_TUNING:
|
2019-07-16 17:40:18 +02:00
|
|
|
if(!(val >= AL_VOCAL_MORPHER_MIN_PHONEMEA_COARSE_TUNING && val <= AL_VOCAL_MORPHER_MAX_PHONEMEA_COARSE_TUNING))
|
2019-07-10 07:14:31 +02:00
|
|
|
SETERR_RETURN(context, AL_INVALID_VALUE,, "Vocal morpher phoneme-a coarse tuning out of range");
|
|
|
|
props->Vmorpher.PhonemeACoarseTuning = val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VOCAL_MORPHER_PHONEMEB_COARSE_TUNING:
|
2019-07-16 17:40:18 +02:00
|
|
|
if(!(val >= AL_VOCAL_MORPHER_MIN_PHONEMEB_COARSE_TUNING && val <= AL_VOCAL_MORPHER_MAX_PHONEMEB_COARSE_TUNING))
|
2019-07-10 07:14:31 +02:00
|
|
|
SETERR_RETURN(context, AL_INVALID_VALUE,, "Vocal morpher phoneme-b coarse tuning out of range");
|
|
|
|
props->Vmorpher.PhonemeBCoarseTuning = val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2019-07-30 21:32:05 -07:00
|
|
|
context->setError(AL_INVALID_ENUM, "Invalid vocal morpher integer property 0x%04x",
|
|
|
|
param);
|
2019-07-10 07:14:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void Vmorpher_setParamiv(EffectProps*, ALCcontext *context, ALenum param, const ALint*)
|
2019-07-30 21:32:05 -07:00
|
|
|
{ context->setError(AL_INVALID_ENUM, "Invalid vocal morpher integer-vector property 0x%04x", param); }
|
2019-07-10 07:14:31 +02:00
|
|
|
void Vmorpher_setParamf(EffectProps *props, ALCcontext *context, ALenum param, ALfloat val)
|
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
case AL_VOCAL_MORPHER_RATE:
|
2019-07-16 17:40:18 +02:00
|
|
|
if(!(val >= AL_VOCAL_MORPHER_MIN_RATE && val <= AL_VOCAL_MORPHER_MAX_RATE))
|
2019-07-10 07:14:31 +02:00
|
|
|
SETERR_RETURN(context, AL_INVALID_VALUE,, "Vocal morpher rate out of range");
|
|
|
|
props->Vmorpher.Rate = val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2019-07-30 21:32:05 -07:00
|
|
|
context->setError(AL_INVALID_ENUM, "Invalid vocal morpher float property 0x%04x",
|
|
|
|
param);
|
2019-07-10 07:14:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void Vmorpher_setParamfv(EffectProps *props, ALCcontext *context, ALenum param, const ALfloat *vals)
|
|
|
|
{ Vmorpher_setParamf(props, context, param, vals[0]); }
|
|
|
|
|
|
|
|
void Vmorpher_getParami(const EffectProps* props, ALCcontext *context, ALenum param, ALint* val)
|
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
case AL_VOCAL_MORPHER_PHONEMEA:
|
|
|
|
*val = props->Vmorpher.PhonemeA;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VOCAL_MORPHER_PHONEMEB:
|
|
|
|
*val = props->Vmorpher.PhonemeB;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VOCAL_MORPHER_PHONEMEA_COARSE_TUNING:
|
|
|
|
*val = props->Vmorpher.PhonemeACoarseTuning;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VOCAL_MORPHER_PHONEMEB_COARSE_TUNING:
|
|
|
|
*val = props->Vmorpher.PhonemeBCoarseTuning;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VOCAL_MORPHER_WAVEFORM:
|
|
|
|
*val = props->Vmorpher.Waveform;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2019-07-30 21:32:05 -07:00
|
|
|
context->setError(AL_INVALID_ENUM, "Invalid vocal morpher integer property 0x%04x",
|
|
|
|
param);
|
2019-07-10 07:14:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void Vmorpher_getParamiv(const EffectProps*, ALCcontext *context, ALenum param, ALint*)
|
2019-07-30 21:32:05 -07:00
|
|
|
{ context->setError(AL_INVALID_ENUM, "Invalid vocal morpher integer-vector property 0x%04x", param); }
|
2019-07-10 07:14:31 +02:00
|
|
|
void Vmorpher_getParamf(const EffectProps *props, ALCcontext *context, ALenum param, ALfloat *val)
|
|
|
|
{
|
|
|
|
switch(param)
|
|
|
|
{
|
|
|
|
case AL_VOCAL_MORPHER_RATE:
|
|
|
|
*val = props->Vmorpher.Rate;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2019-07-30 21:32:05 -07:00
|
|
|
context->setError(AL_INVALID_ENUM, "Invalid vocal morpher float property 0x%04x",
|
|
|
|
param);
|
2019-07-10 07:14:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void Vmorpher_getParamfv(const EffectProps *props, ALCcontext *context, ALenum param, ALfloat *vals)
|
|
|
|
{ Vmorpher_getParamf(props, context, param, vals); }
|
|
|
|
|
|
|
|
DEFINE_ALEFFECT_VTABLE(Vmorpher);
|
|
|
|
|
|
|
|
|
|
|
|
struct VmorpherStateFactory final : public EffectStateFactory {
|
|
|
|
EffectState *create() override { return new VmorpherState{}; }
|
|
|
|
EffectProps getDefaultProps() const noexcept override;
|
|
|
|
const EffectVtable *getEffectVtable() const noexcept override { return &Vmorpher_vtable; }
|
|
|
|
};
|
|
|
|
|
|
|
|
EffectProps VmorpherStateFactory::getDefaultProps() const noexcept
|
|
|
|
{
|
|
|
|
EffectProps props{};
|
2019-07-18 21:42:59 +02:00
|
|
|
props.Vmorpher.Rate = AL_VOCAL_MORPHER_DEFAULT_RATE;
|
|
|
|
props.Vmorpher.PhonemeA = AL_VOCAL_MORPHER_DEFAULT_PHONEMEA;
|
|
|
|
props.Vmorpher.PhonemeB = AL_VOCAL_MORPHER_DEFAULT_PHONEMEB;
|
2019-07-10 07:14:31 +02:00
|
|
|
props.Vmorpher.PhonemeACoarseTuning = AL_VOCAL_MORPHER_DEFAULT_PHONEMEA_COARSE_TUNING;
|
|
|
|
props.Vmorpher.PhonemeBCoarseTuning = AL_VOCAL_MORPHER_DEFAULT_PHONEMEB_COARSE_TUNING;
|
2019-07-18 21:42:59 +02:00
|
|
|
props.Vmorpher.Waveform = AL_VOCAL_MORPHER_DEFAULT_WAVEFORM;
|
2019-07-10 07:14:31 +02:00
|
|
|
return props;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
EffectStateFactory *VmorpherStateFactory_getFactory()
|
|
|
|
{
|
|
|
|
static VmorpherStateFactory VmorpherFactory{};
|
|
|
|
return &VmorpherFactory;
|
|
|
|
}
|