739 lines
24 KiB
C++
739 lines
24 KiB
C++
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
// This code is part of the sfizz library and is licensed under a BSD 2-clause
|
|
// license. You should have receive a LICENSE.md file along with the code.
|
|
// If not, contact the sfizz maintainers at https://github.com/sfztools/sfizz
|
|
|
|
#include "SfizzVstProcessor.h"
|
|
#include "SfizzVstController.h"
|
|
#include "SfizzVstState.h"
|
|
#include "SfizzVstParameters.h"
|
|
#include "SfizzFileScan.h"
|
|
#include "base/source/fstreamer.h"
|
|
#include "pluginterfaces/vst/ivstevents.h"
|
|
#include "pluginterfaces/vst/ivstparameterchanges.h"
|
|
#include <ghc/fs_std.hpp>
|
|
#include <cstring>
|
|
|
|
template<class T>
|
|
constexpr int fastRound(T x)
|
|
{
|
|
return static_cast<int>(x + T{ 0.5 }); // NOLINT
|
|
}
|
|
|
|
static const char defaultSfzText[] =
|
|
"<region>sample=*sine" "\n"
|
|
"ampeg_attack=0.02 ampeg_release=0.1" "\n";
|
|
|
|
enum {
|
|
kMidiEventMaximumSize = 4,
|
|
kOscTempSize = 8192,
|
|
};
|
|
|
|
static const char* kRingIdMidi = "Mid";
|
|
static const char* kRingIdOsc = "Osc";
|
|
|
|
SfizzVstProcessor::SfizzVstProcessor()
|
|
: _fifoToWorker(64 * 1024), _fifoMessageFromUi(64 * 1024),
|
|
_oscTemp(new uint8_t[kOscTempSize])
|
|
{
|
|
setControllerClass(SfizzVstController::cid);
|
|
|
|
// ensure the SFZ path exists:
|
|
// the one specified in the configuration, otherwise the fallback
|
|
absl::optional<fs::path> configDefaultPath = SfizzPaths::getSfzConfigDefaultPath();
|
|
if (configDefaultPath) {
|
|
std::error_code ec;
|
|
fs::create_directory(*configDefaultPath, ec);
|
|
}
|
|
else {
|
|
fs::path fallbackDefaultPath = SfizzPaths::getSfzFallbackDefaultPath();
|
|
std::error_code ec;
|
|
fs::create_directory(fallbackDefaultPath, ec);
|
|
}
|
|
}
|
|
|
|
SfizzVstProcessor::~SfizzVstProcessor()
|
|
{
|
|
try {
|
|
stopBackgroundWork();
|
|
} catch (const std::exception& e) {
|
|
fprintf(stderr, "Caught exception: %s\n", e.what());
|
|
}
|
|
}
|
|
|
|
tresult PLUGIN_API SfizzVstProcessor::initialize(FUnknown* context)
|
|
{
|
|
tresult result = AudioEffect::initialize(context);
|
|
if (result != kResultTrue)
|
|
return result;
|
|
|
|
addAudioOutput(STR16("Audio Output"), Vst::SpeakerArr::kStereo);
|
|
addEventInput(STR16("Event Input"), 1);
|
|
|
|
_state = SfizzVstState();
|
|
|
|
fprintf(stderr, "[sfizz] new synth\n");
|
|
_synth.reset(new sfz::Sfizz);
|
|
|
|
auto onMessage = +[](void* data, int delay, const char* path, const char* sig, const sfizz_arg_t* args)
|
|
{
|
|
auto *self = reinterpret_cast<SfizzVstProcessor*>(data);
|
|
self->receiveMessage(delay, path, sig, args);
|
|
};
|
|
_client = _synth->createClient(this);
|
|
_synth->setReceiveCallback(*_client, onMessage);
|
|
_synth->setBroadcastCallback(onMessage, this);
|
|
|
|
_currentStretchedTuning = 0.0;
|
|
loadSfzFileOrDefault(*_synth, {});
|
|
|
|
_synth->tempo(0, 0.5);
|
|
_timeSigNumerator = 4;
|
|
_timeSigDenominator = 4;
|
|
_synth->timeSignature(0, _timeSigNumerator, _timeSigDenominator);
|
|
_synth->timePosition(0, 0, 0);
|
|
_synth->playbackState(0, 0);
|
|
|
|
return result;
|
|
}
|
|
|
|
tresult PLUGIN_API SfizzVstProcessor::setBusArrangements(Vst::SpeakerArrangement* inputs, int32 numIns, Vst::SpeakerArrangement* outputs, int32 numOuts)
|
|
{
|
|
bool isStereo = numIns == 0 && numOuts == 1 && outputs[0] == Vst::SpeakerArr::kStereo;
|
|
|
|
if (!isStereo)
|
|
return kResultFalse;
|
|
|
|
return AudioEffect::setBusArrangements(inputs, numIns, outputs, numOuts);
|
|
}
|
|
|
|
tresult PLUGIN_API SfizzVstProcessor::setState(IBStream* stream)
|
|
{
|
|
SfizzVstState s;
|
|
|
|
tresult r = s.load(stream);
|
|
if (r != kResultTrue)
|
|
return r;
|
|
|
|
// check the files to really exist, otherwise search them
|
|
for (std::string* statePath : { &s.sfzFile, &s.scalaFile }) {
|
|
if (statePath->empty())
|
|
continue;
|
|
|
|
fs::path pathOrig = fs::u8path(*statePath);
|
|
std::error_code ec;
|
|
if (fs::is_regular_file(pathOrig, ec))
|
|
continue;
|
|
|
|
fprintf(stderr, "[Sfizz] searching for missing file: %s\n", pathOrig.filename().u8string().c_str());
|
|
|
|
SfzFileScan& fileScan = SfzFileScan::getInstance();
|
|
fs::path pathFound;
|
|
if (!fileScan.locateRealFile(pathOrig, pathFound))
|
|
fprintf(stderr, "[Sfizz] file not found: %s\n", pathOrig.filename().u8string().c_str());
|
|
else {
|
|
fprintf(stderr, "[Sfizz] file found: %s\n", pathFound.u8string().c_str());
|
|
*statePath = pathFound.u8string();
|
|
}
|
|
}
|
|
|
|
//
|
|
std::lock_guard<SpinMutex> lock(_processMutex);
|
|
_state = s;
|
|
|
|
syncStateToSynth();
|
|
|
|
return r;
|
|
}
|
|
|
|
tresult PLUGIN_API SfizzVstProcessor::getState(IBStream* stream)
|
|
{
|
|
std::lock_guard<SpinMutex> lock(_processMutex);
|
|
return _state.store(stream);
|
|
}
|
|
|
|
void SfizzVstProcessor::syncStateToSynth()
|
|
{
|
|
sfz::Sfizz* synth = _synth.get();
|
|
|
|
if (!synth)
|
|
return;
|
|
|
|
loadSfzFileOrDefault(*synth, _state.sfzFile);
|
|
synth->setVolume(_state.volume);
|
|
synth->setNumVoices(_state.numVoices);
|
|
synth->setOversamplingFactor(1 << _state.oversamplingLog2);
|
|
synth->setPreloadSize(_state.preloadSize);
|
|
synth->loadScalaFile(_state.scalaFile);
|
|
synth->setScalaRootKey(_state.scalaRootKey);
|
|
synth->setTuningFrequency(_state.tuningFrequency);
|
|
synth->loadStretchTuningByRatio(_state.stretchedTuning);
|
|
}
|
|
|
|
tresult PLUGIN_API SfizzVstProcessor::canProcessSampleSize(int32 symbolicSampleSize)
|
|
{
|
|
if (symbolicSampleSize != Vst::kSample32)
|
|
return kResultFalse;
|
|
|
|
return kResultTrue;
|
|
}
|
|
|
|
tresult PLUGIN_API SfizzVstProcessor::setActive(TBool state)
|
|
{
|
|
sfz::Sfizz* synth = _synth.get();
|
|
|
|
if (bool(state) == _isActive)
|
|
return kResultTrue;
|
|
|
|
if (!synth)
|
|
return kResultFalse;
|
|
|
|
if (state) {
|
|
synth->setSampleRate(processSetup.sampleRate);
|
|
synth->setSamplesPerBlock(processSetup.maxSamplesPerBlock);
|
|
|
|
_fileChangePeriod = static_cast<uint32>(1.0 * processSetup.sampleRate);
|
|
_playStateChangePeriod = static_cast<uint32>(50e-3 * processSetup.sampleRate);
|
|
|
|
startBackgroundWork();
|
|
} else {
|
|
stopBackgroundWork();
|
|
synth->allSoundOff();
|
|
}
|
|
|
|
_isActive = bool(state);
|
|
return kResultTrue;
|
|
}
|
|
|
|
tresult PLUGIN_API SfizzVstProcessor::process(Vst::ProcessData& data)
|
|
{
|
|
sfz::Sfizz& synth = *_synth;
|
|
|
|
if (data.processContext)
|
|
updateTimeInfo(*data.processContext);
|
|
|
|
if (Vst::IParameterChanges* pc = data.inputParameterChanges)
|
|
processParameterChanges(*pc);
|
|
|
|
if (data.numOutputs < 1) // flush mode
|
|
return kResultTrue;
|
|
|
|
uint32 numFrames = data.numSamples;
|
|
constexpr uint32 numChannels = 2;
|
|
float* outputs[numChannels];
|
|
|
|
assert(numChannels == data.outputs[0].numChannels);
|
|
|
|
for (unsigned c = 0; c < numChannels; ++c)
|
|
outputs[c] = data.outputs[0].channelBuffers32[c];
|
|
|
|
std::unique_lock<SpinMutex> lock(_processMutex, std::try_to_lock);
|
|
|
|
if (!lock.owns_lock()) {
|
|
for (unsigned c = 0; c < numChannels; ++c)
|
|
std::memset(outputs[c], 0, numFrames * sizeof(float));
|
|
data.outputs[0].silenceFlags = 3;
|
|
return kResultTrue;
|
|
}
|
|
|
|
if (data.processMode == Vst::kOffline)
|
|
synth.enableFreeWheeling();
|
|
else
|
|
synth.disableFreeWheeling();
|
|
|
|
processMessagesFromUi();
|
|
|
|
if (Vst::IParameterChanges* pc = data.inputParameterChanges)
|
|
processControllerChanges(*pc);
|
|
|
|
if (Vst::IEventList* events = data.inputEvents)
|
|
processEvents(*events);
|
|
|
|
synth.setVolume(_state.volume);
|
|
synth.setScalaRootKey(_state.scalaRootKey);
|
|
synth.setTuningFrequency(_state.tuningFrequency);
|
|
if (_currentStretchedTuning != _state.stretchedTuning) {
|
|
synth.loadStretchTuningByRatio(_state.stretchedTuning);
|
|
_currentStretchedTuning = _state.stretchedTuning;
|
|
}
|
|
|
|
synth.renderBlock(outputs, numFrames, numChannels);
|
|
|
|
_fileChangeCounter += numFrames;
|
|
if (_fileChangeCounter > _fileChangePeriod) {
|
|
_fileChangeCounter %= _fileChangePeriod;
|
|
if (writeWorkerMessage("CheckShouldReload", nullptr, 0))
|
|
_semaToWorker.post();
|
|
}
|
|
|
|
_playStateChangeCounter += numFrames;
|
|
if (_playStateChangeCounter > _playStateChangePeriod) {
|
|
_playStateChangeCounter %= _playStateChangePeriod;
|
|
SfizzPlayState playState;
|
|
playState.curves = synth.getNumCurves();
|
|
playState.masters = synth.getNumMasters();
|
|
playState.groups = synth.getNumGroups();
|
|
playState.regions = synth.getNumRegions();
|
|
playState.preloadedSamples = synth.getNumPreloadedSamples();
|
|
playState.activeVoices = synth.getNumActiveVoices();
|
|
if (writeWorkerMessage("NotifyPlayState", &playState, sizeof(playState)))
|
|
_semaToWorker.post();
|
|
}
|
|
|
|
return kResultTrue;
|
|
}
|
|
|
|
void SfizzVstProcessor::updateTimeInfo(const Vst::ProcessContext& context)
|
|
{
|
|
sfz::Sfizz& synth = *_synth;
|
|
|
|
if (context.state & context.kTempoValid)
|
|
synth.tempo(0, 60.0f / context.tempo);
|
|
|
|
if (context.state & context.kTimeSigValid) {
|
|
_timeSigNumerator = context.timeSigNumerator;
|
|
_timeSigDenominator = context.timeSigDenominator;
|
|
synth.timeSignature(0, _timeSigNumerator, _timeSigDenominator);
|
|
}
|
|
|
|
if (context.state & context.kProjectTimeMusicValid) {
|
|
double beats = context.projectTimeMusic * 0.25 * _timeSigDenominator;
|
|
double bars = beats / _timeSigNumerator;
|
|
beats -= int(bars) * _timeSigNumerator;
|
|
synth.timePosition(0, int(bars), beats);
|
|
}
|
|
|
|
synth.playbackState(0, (context.state & context.kPlaying) != 0);
|
|
}
|
|
|
|
void SfizzVstProcessor::processParameterChanges(Vst::IParameterChanges& pc)
|
|
{
|
|
uint32 paramCount = pc.getParameterCount();
|
|
|
|
for (uint32 paramIndex = 0; paramIndex < paramCount; ++paramIndex) {
|
|
Vst::IParamValueQueue* vq = pc.getParameterData(paramIndex);
|
|
if (!vq)
|
|
continue;
|
|
|
|
const Vst::ParamID id = vq->getParameterId();
|
|
const SfizzRange range = SfizzRange::getForParameter(id);
|
|
|
|
uint32 pointCount = vq->getPointCount();
|
|
int32 sampleOffset;
|
|
Vst::ParamValue value;
|
|
|
|
switch (id) {
|
|
case kPidVolume:
|
|
if (pointCount > 0 && vq->getPoint(pointCount - 1, sampleOffset, value) == kResultTrue)
|
|
_state.volume = range.denormalize(value);
|
|
break;
|
|
case kPidNumVoices:
|
|
if (pointCount > 0 && vq->getPoint(pointCount - 1, sampleOffset, value) == kResultTrue) {
|
|
int32 data = static_cast<int32>(range.denormalize(value));
|
|
_state.numVoices = data;
|
|
if (writeWorkerMessage("SetNumVoices", &data, sizeof(data)))
|
|
_semaToWorker.post();
|
|
}
|
|
break;
|
|
case kPidOversampling:
|
|
if (pointCount > 0 && vq->getPoint(pointCount - 1, sampleOffset, value) == kResultTrue) {
|
|
int32 data = static_cast<int32>(range.denormalize(value));
|
|
_state.oversamplingLog2 = data;
|
|
if (writeWorkerMessage("SetOversampling", &data, sizeof(data)))
|
|
_semaToWorker.post();
|
|
}
|
|
break;
|
|
case kPidPreloadSize:
|
|
if (pointCount > 0 && vq->getPoint(pointCount - 1, sampleOffset, value) == kResultTrue) {
|
|
int32 data = static_cast<int32>(range.denormalize(value));
|
|
_state.preloadSize = data;
|
|
if (writeWorkerMessage("SetPreloadSize", &data, sizeof(data)))
|
|
_semaToWorker.post();
|
|
}
|
|
break;
|
|
case kPidScalaRootKey:
|
|
if (pointCount > 0 && vq->getPoint(pointCount - 1, sampleOffset, value) == kResultTrue)
|
|
_state.scalaRootKey = static_cast<int32>(range.denormalize(value));
|
|
break;
|
|
case kPidTuningFrequency:
|
|
if (pointCount > 0 && vq->getPoint(pointCount - 1, sampleOffset, value) == kResultTrue)
|
|
_state.tuningFrequency = range.denormalize(value);
|
|
break;
|
|
case kPidStretchedTuning:
|
|
if (pointCount > 0 && vq->getPoint(pointCount - 1, sampleOffset, value) == kResultTrue)
|
|
_state.stretchedTuning = range.denormalize(value);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void SfizzVstProcessor::processControllerChanges(Vst::IParameterChanges& pc)
|
|
{
|
|
sfz::Sfizz& synth = *_synth;
|
|
uint32 paramCount = pc.getParameterCount();
|
|
|
|
for (uint32 paramIndex = 0; paramIndex < paramCount; ++paramIndex) {
|
|
Vst::IParamValueQueue* vq = pc.getParameterData(paramIndex);
|
|
if (!vq)
|
|
continue;
|
|
|
|
Vst::ParamID id = vq->getParameterId();
|
|
uint32 pointCount = vq->getPointCount();
|
|
int32 sampleOffset;
|
|
Vst::ParamValue value;
|
|
|
|
switch (id) {
|
|
default:
|
|
if (id >= kPidCC0 && id <= kPidCCLast) {
|
|
auto ccNumber = static_cast<int>(id - kPidCC0);
|
|
for (uint32 pointIndex = 0; pointIndex < pointCount; ++pointIndex) {
|
|
if (vq->getPoint(pointIndex, sampleOffset, value) == kResultTrue)
|
|
synth.hdcc(sampleOffset, ccNumber, value);
|
|
}
|
|
}
|
|
break;
|
|
|
|
case kPidAftertouch:
|
|
for (uint32 pointIndex = 0; pointIndex < pointCount; ++pointIndex) {
|
|
if (vq->getPoint(pointIndex, sampleOffset, value) == kResultTrue)
|
|
synth.aftertouch(sampleOffset, fastRound(value * 127.0));
|
|
}
|
|
break;
|
|
|
|
case kPidPitchBend:
|
|
for (uint32 pointIndex = 0; pointIndex < pointCount; ++pointIndex) {
|
|
if (vq->getPoint(pointIndex, sampleOffset, value) == kResultTrue)
|
|
synth.pitchWheel(sampleOffset, fastRound(value * 16383) - 8192);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void SfizzVstProcessor::processEvents(Vst::IEventList& events)
|
|
{
|
|
sfz::Sfizz& synth = *_synth;
|
|
uint32 numEvents = events.getEventCount();
|
|
|
|
for (uint32 i = 0; i < numEvents; i++) {
|
|
Vst::Event e;
|
|
if (events.getEvent(i, e) != kResultTrue)
|
|
continue;
|
|
|
|
switch (e.type) {
|
|
case Vst::Event::kNoteOnEvent:
|
|
if (e.noteOn.velocity == 0.0f)
|
|
synth.noteOff(e.sampleOffset, e.noteOn.pitch, 0);
|
|
else
|
|
synth.noteOn(e.sampleOffset, e.noteOn.pitch, convertVelocityFromFloat(e.noteOn.velocity));
|
|
break;
|
|
case Vst::Event::kNoteOffEvent:
|
|
synth.noteOff(e.sampleOffset, e.noteOff.pitch, convertVelocityFromFloat(e.noteOff.velocity));
|
|
break;
|
|
// case Vst::Event::kPolyPressureEvent:
|
|
// synth.aftertouch(e.sampleOffset, convertVelocityFromFloat(e.polyPressure.pressure));
|
|
// break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void SfizzVstProcessor::processMessagesFromUi()
|
|
{
|
|
sfz::Sfizz& synth = *_synth;
|
|
sfz::Client& client = *_client;
|
|
Ring_Buffer& fifo = _fifoMessageFromUi;
|
|
RTMessage header;
|
|
|
|
while (fifo.peek(header) && fifo.size_used() >= sizeof(header) + header.size) {
|
|
fifo.discard(sizeof(header));
|
|
|
|
if (header.type == kRingIdMidi) {
|
|
if (header.size > kMidiEventMaximumSize) {
|
|
fifo.discard(header.size);
|
|
continue;
|
|
}
|
|
|
|
uint8_t data[kMidiEventMaximumSize] = {};
|
|
fifo.get(data, header.size);
|
|
|
|
// interpret the MIDI message
|
|
switch (data[0] & 0xf0) {
|
|
case 0x80:
|
|
synth.noteOff(0, data[1] & 0x7f, data[2] & 0x7f);
|
|
break;
|
|
case 0x90:
|
|
synth.noteOn(0, data[1] & 0x7f, data[2] & 0x7f);
|
|
break;
|
|
case 0xb0:
|
|
synth.cc(0, data[1] & 0x7f, data[2] & 0x7f);
|
|
break;
|
|
case 0xe0:
|
|
synth.pitchWheel(0, (data[2] << 7) + data[1] - 8192);
|
|
break;
|
|
}
|
|
}
|
|
else if (header.type == kRingIdOsc) {
|
|
uint8_t* oscTemp = _oscTemp.get();
|
|
|
|
if (header.size > kOscTempSize) {
|
|
fifo.discard(header.size);
|
|
continue;
|
|
}
|
|
|
|
fifo.get(oscTemp, header.size);
|
|
|
|
const char* path;
|
|
const char* sig;
|
|
const sfizz_arg_t* args;
|
|
uint8_t buffer[1024];
|
|
if (sfizz_extract_message(oscTemp, header.size, buffer, sizeof(buffer), &path, &sig, &args) > 0)
|
|
synth.sendMessage(client, 0, path, sig, args);
|
|
}
|
|
else {
|
|
assert(false);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
int SfizzVstProcessor::convertVelocityFromFloat(float x)
|
|
{
|
|
return std::min(127, std::max(0, (int)(x * 127.0f)));
|
|
}
|
|
|
|
tresult PLUGIN_API SfizzVstProcessor::notify(Vst::IMessage* message)
|
|
{
|
|
// Note(jpc) this notification is not necessarily handled by the RT thread
|
|
|
|
tresult result = AudioEffect::notify(message);
|
|
if (result != kResultFalse)
|
|
return result;
|
|
|
|
const char* id = message->getMessageID();
|
|
Vst::IAttributeList* attr = message->getAttributes();
|
|
|
|
if (!std::strcmp(id, "LoadSfz")) {
|
|
const void* data = nullptr;
|
|
uint32 size = 0;
|
|
result = attr->getBinary("File", data, size);
|
|
|
|
if (result != kResultTrue)
|
|
return result;
|
|
|
|
std::unique_lock<SpinMutex> lock(_processMutex);
|
|
_state.sfzFile.assign(static_cast<const char *>(data), size);
|
|
loadSfzFileOrDefault(*_synth, _state.sfzFile);
|
|
lock.unlock();
|
|
|
|
Steinberg::OPtr<Vst::IMessage> reply { allocateMessage() };
|
|
reply->setMessageID("LoadedSfz");
|
|
reply->getAttributes()->setBinary("File", _state.sfzFile.data(), _state.sfzFile.size());
|
|
sendMessage(reply);
|
|
}
|
|
else if (!std::strcmp(id, "LoadScala")) {
|
|
const void* data = nullptr;
|
|
uint32 size = 0;
|
|
result = attr->getBinary("File", data, size);
|
|
|
|
if (result != kResultTrue)
|
|
return result;
|
|
|
|
std::unique_lock<SpinMutex> lock(_processMutex);
|
|
_state.scalaFile.assign(static_cast<const char *>(data), size);
|
|
_synth->loadScalaFile(_state.scalaFile);
|
|
lock.unlock();
|
|
|
|
Steinberg::OPtr<Vst::IMessage> reply { allocateMessage() };
|
|
reply->setMessageID("LoadedScala");
|
|
reply->getAttributes()->setBinary("File", _state.scalaFile.data(), _state.scalaFile.size());
|
|
sendMessage(reply);
|
|
}
|
|
else if (!std::strcmp(id, "MidiMessage")) {
|
|
const void* data = nullptr;
|
|
uint32 size = 0;
|
|
result = attr->getBinary("Data", data, size);
|
|
if (size < kMidiEventMaximumSize)
|
|
writeMessage(_fifoMessageFromUi, kRingIdMidi, data, size);
|
|
}
|
|
else if (!std::strcmp(id, "OscMessage")) {
|
|
const void* data = nullptr;
|
|
uint32 size = 0;
|
|
result = attr->getBinary("Data", data, size);
|
|
writeMessage(_fifoMessageFromUi, kRingIdOsc, data, size);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
FUnknown* SfizzVstProcessor::createInstance(void*)
|
|
{
|
|
return static_cast<Vst::IAudioProcessor*>(new SfizzVstProcessor);
|
|
}
|
|
|
|
void SfizzVstProcessor::receiveMessage(int delay, const char* path, const char* sig, const sfizz_arg_t* args)
|
|
{
|
|
uint8_t* oscTemp = _oscTemp.get();
|
|
uint32_t oscSize = sfizz_prepare_message(oscTemp, kOscTempSize, path, sig, args);
|
|
if (oscSize <= kOscTempSize) {
|
|
if (writeWorkerMessage("ReceiveMessage", oscTemp, oscSize))
|
|
_semaToWorker.post();
|
|
}
|
|
}
|
|
|
|
void SfizzVstProcessor::loadSfzFileOrDefault(sfz::Sfizz& synth, const std::string& filePath)
|
|
{
|
|
if (!filePath.empty())
|
|
synth.loadSfzFile(filePath);
|
|
else
|
|
synth.loadSfzString("default.sfz", defaultSfzText);
|
|
}
|
|
|
|
void SfizzVstProcessor::doBackgroundWork()
|
|
{
|
|
for (;;) {
|
|
_semaToWorker.wait();
|
|
|
|
if (!_workRunning)
|
|
break;
|
|
|
|
RTMessagePtr msg = readWorkerMessage();
|
|
if (!msg) {
|
|
fprintf(stderr, "[Sfizz] message synchronization error in worker\n");
|
|
std::abort();
|
|
}
|
|
|
|
const char* id = msg->type;
|
|
|
|
if (!std::strcmp(id, "SetNumVoices")) {
|
|
int32 value = *msg->payload<int32>();
|
|
std::lock_guard<SpinMutex> lock(_processMutex);
|
|
_synth->setNumVoices(value);
|
|
}
|
|
else if (!std::strcmp(id, "SetOversampling")) {
|
|
int32 value = *msg->payload<int32>();
|
|
std::lock_guard<SpinMutex> lock(_processMutex);
|
|
_synth->setOversamplingFactor(1 << value);
|
|
}
|
|
else if (!std::strcmp(id, "SetPreloadSize")) {
|
|
int32 value = *msg->payload<int32>();
|
|
std::lock_guard<SpinMutex> lock(_processMutex);
|
|
_synth->setPreloadSize(value);
|
|
}
|
|
else if (!std::strcmp(id, "CheckShouldReload")) {
|
|
if (_synth->shouldReloadFile()) {
|
|
fprintf(stderr, "[Sfizz] sfz file has changed, reloading\n");
|
|
std::lock_guard<SpinMutex> lock(_processMutex);
|
|
loadSfzFileOrDefault(*_synth, _state.sfzFile);
|
|
|
|
Steinberg::OPtr<Vst::IMessage> reply { allocateMessage() };
|
|
reply->setMessageID("LoadedSfz");
|
|
reply->getAttributes()->setBinary("File", _state.sfzFile.data(), _state.sfzFile.size());
|
|
sendMessage(reply);
|
|
}
|
|
else if (_synth->shouldReloadScala()) {
|
|
fprintf(stderr, "[Sfizz] scala file has changed, reloading\n");
|
|
std::lock_guard<SpinMutex> lock(_processMutex);
|
|
_synth->loadScalaFile(_state.scalaFile);
|
|
}
|
|
}
|
|
else if (!std::strcmp(id, "NotifyPlayState")) {
|
|
SfizzPlayState playState = *msg->payload<SfizzPlayState>();
|
|
Steinberg::OPtr<Vst::IMessage> notification { allocateMessage() };
|
|
notification->setMessageID("NotifiedPlayState");
|
|
notification->getAttributes()->setBinary("PlayState", &playState, sizeof(playState));
|
|
sendMessage(notification);
|
|
}
|
|
else if (!std::strcmp(id, "ReceiveMessage")) {
|
|
Steinberg::OPtr<Vst::IMessage> notification { allocateMessage() };
|
|
notification->setMessageID("ReceivedMessage");
|
|
notification->getAttributes()->setBinary("Message", msg->payload<uint8_t>(), msg->size);
|
|
sendMessage(notification);
|
|
}
|
|
}
|
|
}
|
|
|
|
void SfizzVstProcessor::startBackgroundWork()
|
|
{
|
|
if (_workRunning)
|
|
return;
|
|
|
|
_workRunning = true;
|
|
_worker = std::thread([this]() { doBackgroundWork(); });
|
|
}
|
|
|
|
void SfizzVstProcessor::stopBackgroundWork()
|
|
{
|
|
if (!_workRunning)
|
|
return;
|
|
|
|
_workRunning = false;
|
|
_semaToWorker.post();
|
|
_worker.join();
|
|
|
|
while (_semaToWorker.try_wait()) {
|
|
if (!discardWorkerMessage()) {
|
|
fprintf(stderr, "[Sfizz] message synchronization error in processor\n");
|
|
std::abort();
|
|
}
|
|
}
|
|
}
|
|
|
|
bool SfizzVstProcessor::writeWorkerMessage(const char* type, const void* data, uintptr_t size)
|
|
{
|
|
return writeMessage(_fifoToWorker, type, data, size);
|
|
}
|
|
|
|
SfizzVstProcessor::RTMessagePtr SfizzVstProcessor::readWorkerMessage()
|
|
{
|
|
RTMessage header;
|
|
|
|
if (!_fifoToWorker.peek(header))
|
|
return nullptr;
|
|
if (_fifoToWorker.size_used() < sizeof(header) + header.size)
|
|
return nullptr;
|
|
|
|
RTMessagePtr msg { reinterpret_cast<RTMessage*>(std::malloc(sizeof(header) + header.size)) };
|
|
if (!msg)
|
|
throw std::bad_alloc();
|
|
|
|
msg->type = header.type;
|
|
msg->size = header.size;
|
|
_fifoToWorker.discard(sizeof(header));
|
|
_fifoToWorker.get(const_cast<char*>(msg->payload<char>()), header.size);
|
|
|
|
return msg;
|
|
}
|
|
|
|
bool SfizzVstProcessor::discardWorkerMessage()
|
|
{
|
|
RTMessage header;
|
|
|
|
if (!_fifoToWorker.peek(header))
|
|
return false;
|
|
if (_fifoToWorker.size_used() < sizeof(header) + header.size)
|
|
return false;
|
|
|
|
_fifoToWorker.discard(sizeof(header) + header.size);
|
|
return true;
|
|
}
|
|
|
|
bool SfizzVstProcessor::writeMessage(Ring_Buffer& fifo, const char* type, const void* data, uintptr_t size)
|
|
{
|
|
RTMessage header;
|
|
header.type = type;
|
|
header.size = size;
|
|
|
|
if (fifo.size_free() < sizeof(header) + size)
|
|
return false;
|
|
|
|
fifo.put(header);
|
|
fifo.put(static_cast<const uint8*>(data), size);
|
|
return true;
|
|
}
|
|
|
|
/*
|
|
Note(jpc) Generated at random with uuidgen.
|
|
Can't find docs on it... maybe it's to register somewhere?
|
|
*/
|
|
FUID SfizzVstProcessor::cid(0xe8fab718, 0x15ed46e3, 0x8b598310, 0x1e12993f);
|