|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- /*
- * Carla Plugin Host
- * Copyright (C) 2011-2019 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program 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 General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #include "CarlaEngineInternal.hpp"
- #include "CarlaEngineUtils.hpp"
- #include "CarlaMathUtils.hpp"
- #include "CarlaMIDI.h"
-
- #include "lv2/lv2.h"
-
- CARLA_BACKEND_START_NAMESPACE
-
- // -----------------------------------------------------------------------
- // Fallback data
-
- static const EngineEvent kFallbackEngineEvent = { kEngineEventTypeNull, 0, 0, {{ kEngineControlEventTypeNull, 0, 0.0f }} };
- static CarlaEngineEventCV kFallbackEngineEventCV = { nullptr, (uint32_t)-1, 0.0f };
-
- // -----------------------------------------------------------------------
- // Carla Engine port (Abstract)
-
- CarlaEnginePort::CarlaEnginePort(const CarlaEngineClient& client, const bool isInputPort, const uint32_t indexOffset) noexcept
- : kClient(client),
- kIsInput(isInputPort),
- kIndexOffset(indexOffset)
- {
- carla_debug("CarlaEnginePort::CarlaEnginePort(%s)", bool2str(isInputPort));
- }
-
- CarlaEnginePort::~CarlaEnginePort() noexcept
- {
- carla_debug("CarlaEnginePort::~CarlaEnginePort()");
- }
-
- void CarlaEnginePort::setMetaData(const char*, const char*, const char*)
- {
- }
-
- // -----------------------------------------------------------------------
- // Carla Engine Audio port
-
- CarlaEngineAudioPort::CarlaEngineAudioPort(const CarlaEngineClient& client, const bool isInputPort, const uint32_t indexOffset) noexcept
- : CarlaEnginePort(client, isInputPort, indexOffset),
- fBuffer(nullptr)
- {
- carla_debug("CarlaEngineAudioPort::CarlaEngineAudioPort(%s)", bool2str(isInputPort));
- }
-
- CarlaEngineAudioPort::~CarlaEngineAudioPort() noexcept
- {
- carla_debug("CarlaEngineAudioPort::~CarlaEngineAudioPort()");
- }
-
- void CarlaEngineAudioPort::initBuffer() noexcept
- {
- }
-
- // -----------------------------------------------------------------------
- // Carla Engine CV port
-
- CarlaEngineCVPort::CarlaEngineCVPort(const CarlaEngineClient& client, const bool isInputPort, const uint32_t indexOffset) noexcept
- : CarlaEnginePort(client, isInputPort, indexOffset),
- fBuffer(nullptr),
- fMinimum(-1.0f),
- fMaximum(1.0f)
- {
- carla_debug("CarlaEngineCVPort::CarlaEngineCVPort(%s)", bool2str(isInputPort));
- }
-
- CarlaEngineCVPort::~CarlaEngineCVPort() noexcept
- {
- carla_debug("CarlaEngineCVPort::~CarlaEngineCVPort()");
- }
-
- void CarlaEngineCVPort::initBuffer() noexcept
- {
- }
-
- void CarlaEngineCVPort::setRange(const float min, const float max) noexcept
- {
- fMinimum = min;
- fMaximum = max;
-
- char strBufMin[STR_MAX];
- char strBufMax[STR_MAX];
- carla_zeroChars(strBufMin, STR_MAX);
- carla_zeroChars(strBufMax, STR_MAX);
-
- {
- const CarlaScopedLocale csl;
- std::snprintf(strBufMin, STR_MAX-1, "%f", static_cast<double>(min));
- std::snprintf(strBufMax, STR_MAX-1, "%f", static_cast<double>(max));
- }
-
- setMetaData(LV2_CORE__minimum, strBufMin, "");
- setMetaData(LV2_CORE__maximum, strBufMax, "");
- }
-
- // -----------------------------------------------------------------------
- // Carla Engine Event port
-
- CarlaEngineEventPort::ProtectedData::ProtectedData(const EngineProcessMode pm) noexcept
- : buffer(nullptr),
- needsBufferDeletion(false),
- processMode(pm),
- cvs()
- {
- if (processMode == ENGINE_PROCESS_MODE_PATCHBAY)
- {
- buffer = new EngineEvent[kMaxEngineEventInternalCount];
- carla_zeroStructs(buffer, kMaxEngineEventInternalCount);
- needsBufferDeletion = true;
- }
- }
-
- CarlaEngineEventPort::ProtectedData::~ProtectedData() noexcept
- {
- for (LinkedList<CarlaEngineEventCV>::Itenerator it = cvs.begin2(); it.valid(); it.next())
- delete it.getValue(kFallbackEngineEventCV).cvPort;
-
- cvs.clear();
-
- if (needsBufferDeletion)
- {
- CARLA_SAFE_ASSERT_RETURN(buffer != nullptr,);
-
- delete[] buffer;
- buffer = nullptr;
- }
- }
-
- CarlaEngineEventPort::CarlaEngineEventPort(const CarlaEngineClient& client, const bool isInputPort, const uint32_t indexOffset) noexcept
- : CarlaEnginePort(client, isInputPort, indexOffset),
- pData(new ProtectedData(client.getEngine().getProccessMode()))
- {
- carla_debug("CarlaEngineEventPort::CarlaEngineEventPort(%s)", bool2str(isInputPort));
- }
-
- CarlaEngineEventPort::~CarlaEngineEventPort() noexcept
- {
- carla_debug("CarlaEngineEventPort::~CarlaEngineEventPort()");
- delete pData;
- }
-
- void CarlaEngineEventPort::initBuffer() noexcept
- {
- if (pData->processMode == ENGINE_PROCESS_MODE_CONTINUOUS_RACK || pData->processMode == ENGINE_PROCESS_MODE_BRIDGE)
- pData->buffer = kClient.getEngine().getInternalEventBuffer(kIsInput);
- else if (pData->processMode == ENGINE_PROCESS_MODE_PATCHBAY && ! kIsInput)
- carla_zeroStructs(pData->buffer, kMaxEngineEventInternalCount);
-
- initCvBuffers();
- }
-
- uint32_t CarlaEngineEventPort::getCVSourceCount() const noexcept
- {
- return static_cast<uint32_t>(pData->cvs.count());
- }
-
- CarlaEngineCVPort* CarlaEngineEventPort::getCVSourcePort(const uint32_t portIndexOffset) const noexcept
- {
- const CarlaEngineEventCV& ecv(pData->cvs.getAt(portIndexOffset, kFallbackEngineEventCV));
- // for (LinkedList<CarlaEngineEventCV>::Itenerator it = pData->cvs.begin2(); it.valid(); it.next())
- // {
- // const CarlaEngineEventCV& ecv(it.getValue(kFallbackEngineEventCV));
-
- // if (ecv.indexOffset == portIndexOffset)
- return ecv.cvPort;
- // }
-
- // return nullptr;
- }
-
- bool CarlaEngineEventPort::addCVSource(CarlaEngineCVPort* const port, const uint32_t portIndexOffset) noexcept
- {
- CARLA_SAFE_ASSERT_RETURN(port != nullptr, false);
- CARLA_SAFE_ASSERT_RETURN(port->isInput(), false);
- carla_debug("CarlaEngineEventPort::addCVSource(%p)", port);
-
- const CarlaEngineEventCV ecv = { port, portIndexOffset, 0.0f };
- return pData->cvs.append(ecv);
- }
-
- bool CarlaEngineEventPort::removeCVSource(const uint32_t portIndexOffset) noexcept
- {
- carla_debug("CarlaEngineEventPort::removeCVSource(%u)", portIndexOffset);
-
- for (LinkedList<CarlaEngineEventCV>::Itenerator it = pData->cvs.begin2(); it.valid(); it.next())
- {
- CarlaEngineEventCV& ecv(it.getValue(kFallbackEngineEventCV));
-
- if (ecv.indexOffset == portIndexOffset)
- {
- pData->cvs.remove(it);
- return true;
- }
- }
-
- return false;
- }
-
- void CarlaEngineEventPort::mixWithCvBuffer(const float* const buffer,
- const uint32_t frames,
- const uint32_t indexOffset) noexcept
- {
- CARLA_SAFE_ASSERT_RETURN(pData->buffer != nullptr,)
- CARLA_SAFE_ASSERT_RETURN(kIsInput,);
-
- uint32_t eventIndex = 0;
- float v, min, max;
-
- for (; eventIndex < kMaxEngineEventInternalCount; ++eventIndex)
- {
- if (pData->buffer[eventIndex].type == kEngineEventTypeNull)
- break;
- }
-
- if (eventIndex == kMaxEngineEventInternalCount)
- return;
-
- for (LinkedList<CarlaEngineEventCV>::Itenerator it = pData->cvs.begin2(); it.valid(); it.next())
- {
- CarlaEngineEventCV& ecv(it.getValue(kFallbackEngineEventCV));
-
- if (ecv.indexOffset != indexOffset)
- continue;
- CARLA_SAFE_ASSERT_RETURN(ecv.cvPort != nullptr,);
-
- float previousValue = ecv.previousValue;
- ecv.cvPort->getRange(min, max);
-
- for (uint32_t i=0; i<frames; i+=32)
- {
- v = buffer[i];
-
- if (carla_isNotEqual(v, previousValue))
- {
- previousValue = v;
-
- EngineEvent& event(pData->buffer[eventIndex++]);
-
- event.type = kEngineEventTypeControl;
- event.time = i;
- event.channel = kEngineEventNonMidiChannel;
-
- event.ctrl.type = kEngineControlEventTypeParameter;
- event.ctrl.param = static_cast<uint16_t>(indexOffset);
- event.ctrl.value = carla_fixedValue(0.0f, 1.0f, (v - min) / (max - min));
- }
- }
-
- ecv.previousValue = previousValue;
- break;
- }
- }
-
- uint32_t CarlaEngineEventPort::getEventCount() const noexcept
- {
- CARLA_SAFE_ASSERT_RETURN(kIsInput, 0);
- CARLA_SAFE_ASSERT_RETURN(pData->buffer != nullptr, 0);
- CARLA_SAFE_ASSERT_RETURN(pData->processMode != ENGINE_PROCESS_MODE_SINGLE_CLIENT && pData->processMode != ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS, 0);
-
- uint32_t i=0;
-
- for (; i < kMaxEngineEventInternalCount; ++i)
- {
- if (pData->buffer[i].type == kEngineEventTypeNull)
- break;
- }
-
- return i;
- }
-
- const EngineEvent& CarlaEngineEventPort::getEvent(const uint32_t index) const noexcept
- {
- CARLA_SAFE_ASSERT_RETURN(kIsInput, kFallbackEngineEvent);
- CARLA_SAFE_ASSERT_RETURN(pData->buffer != nullptr, kFallbackEngineEvent);
- CARLA_SAFE_ASSERT_RETURN(pData->processMode != ENGINE_PROCESS_MODE_SINGLE_CLIENT && pData->processMode != ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS, kFallbackEngineEvent);
- CARLA_SAFE_ASSERT_RETURN(index < kMaxEngineEventInternalCount, kFallbackEngineEvent);
-
- return pData->buffer[index];
- }
-
- const EngineEvent& CarlaEngineEventPort::getEventUnchecked(const uint32_t index) const noexcept
- {
- return pData->buffer[index];
- }
-
- bool CarlaEngineEventPort::writeControlEvent(const uint32_t time, const uint8_t channel, const EngineControlEvent& ctrl) noexcept
- {
- return writeControlEvent(time, channel, ctrl.type, ctrl.param, ctrl.value);
- }
-
- bool CarlaEngineEventPort::writeControlEvent(const uint32_t time, const uint8_t channel, const EngineControlEventType type, const uint16_t param, const float value) noexcept
- {
- CARLA_SAFE_ASSERT_RETURN(! kIsInput, false);
- CARLA_SAFE_ASSERT_RETURN(pData->buffer != nullptr, false);
- CARLA_SAFE_ASSERT_RETURN(pData->processMode != ENGINE_PROCESS_MODE_SINGLE_CLIENT && pData->processMode != ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS, false);
- CARLA_SAFE_ASSERT_RETURN(type != kEngineControlEventTypeNull, false);
- CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS, false);
- CARLA_SAFE_ASSERT(value >= 0.0f && value <= 1.0f);
-
- if (type == kEngineControlEventTypeParameter) {
- CARLA_SAFE_ASSERT(! MIDI_IS_CONTROL_BANK_SELECT(param));
- }
-
- for (uint32_t i=0; i < kMaxEngineEventInternalCount; ++i)
- {
- EngineEvent& event(pData->buffer[i]);
-
- if (event.type != kEngineEventTypeNull)
- continue;
-
- event.type = kEngineEventTypeControl;
- event.time = time;
- event.channel = channel;
-
- event.ctrl.type = type;
- event.ctrl.param = param;
- event.ctrl.value = carla_fixedValue<float>(0.0f, 1.0f, value);
-
- return true;
- }
-
- carla_stderr2("CarlaEngineEventPort::writeControlEvent() - buffer full");
- return false;
- }
-
- bool CarlaEngineEventPort::writeMidiEvent(const uint32_t time, const uint8_t size, const uint8_t* const data) noexcept
- {
- return writeMidiEvent(time, uint8_t(MIDI_GET_CHANNEL_FROM_DATA(data)), size, data);
- }
-
- bool CarlaEngineEventPort::writeMidiEvent(const uint32_t time, const uint8_t channel, const EngineMidiEvent& midi) noexcept
- {
- CARLA_SAFE_ASSERT(midi.port == kIndexOffset);
- return writeMidiEvent(time, channel, midi.size, midi.data);
- }
-
- bool CarlaEngineEventPort::writeMidiEvent(const uint32_t time, const uint8_t channel, const uint8_t size, const uint8_t* const data) noexcept
- {
- CARLA_SAFE_ASSERT_RETURN(! kIsInput, false);
- CARLA_SAFE_ASSERT_RETURN(pData->buffer != nullptr, false);
- CARLA_SAFE_ASSERT_RETURN(pData->processMode != ENGINE_PROCESS_MODE_SINGLE_CLIENT && pData->processMode != ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS, false);
- CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS, false);
- CARLA_SAFE_ASSERT_RETURN(size > 0 && size <= EngineMidiEvent::kDataSize, false);
- CARLA_SAFE_ASSERT_RETURN(data != nullptr, false);
-
- for (uint32_t i=0; i < kMaxEngineEventInternalCount; ++i)
- {
- EngineEvent& event(pData->buffer[i]);
-
- if (event.type != kEngineEventTypeNull)
- continue;
-
- event.time = time;
- event.channel = channel;
-
- const uint8_t status(uint8_t(MIDI_GET_STATUS_FROM_DATA(data)));
-
- if (status == MIDI_STATUS_CONTROL_CHANGE)
- {
- CARLA_SAFE_ASSERT_RETURN(size >= 2, true);
-
- switch (data[1])
- {
- case MIDI_CONTROL_BANK_SELECT:
- case MIDI_CONTROL_BANK_SELECT__LSB:
- CARLA_SAFE_ASSERT_RETURN(size >= 3, true);
- event.type = kEngineEventTypeControl;
- event.ctrl.type = kEngineControlEventTypeMidiBank;
- event.ctrl.param = data[2];
- event.ctrl.value = 0.0f;
- return true;
-
- case MIDI_CONTROL_ALL_SOUND_OFF:
- event.type = kEngineEventTypeControl;
- event.ctrl.type = kEngineControlEventTypeAllSoundOff;
- event.ctrl.param = 0;
- event.ctrl.value = 0.0f;
- return true;
-
- case MIDI_CONTROL_ALL_NOTES_OFF:
- event.type = kEngineEventTypeControl;
- event.ctrl.type = kEngineControlEventTypeAllNotesOff;
- event.ctrl.param = 0;
- event.ctrl.value = 0.0f;
- return true;
- }
- }
-
- if (status == MIDI_STATUS_PROGRAM_CHANGE)
- {
- CARLA_SAFE_ASSERT_RETURN(size >= 2, true);
-
- event.type = kEngineEventTypeControl;
- event.ctrl.type = kEngineControlEventTypeMidiProgram;
- event.ctrl.param = data[1];
- event.ctrl.value = 0.0f;
- return true;
- }
-
- event.type = kEngineEventTypeMidi;
- event.midi.size = size;
-
- if (kIndexOffset < 0xFF /* uint8_t max */)
- {
- event.midi.port = static_cast<uint8_t>(kIndexOffset);
- }
- else
- {
- event.midi.port = 0;
- carla_safe_assert_uint("kIndexOffset < 0xFF", __FILE__, __LINE__, kIndexOffset);
- }
-
- event.midi.data[0] = status;
-
- uint8_t j=1;
- for (; j < size; ++j)
- event.midi.data[j] = data[j];
- for (; j < EngineMidiEvent::kDataSize; ++j)
- event.midi.data[j] = 0;
-
- return true;
- }
-
- carla_stderr2("CarlaEngineEventPort::writeMidiEvent() - buffer full");
- return false;
- }
-
- void CarlaEngineEventPort::initCvBuffers() noexcept
- {
- for (LinkedList<CarlaEngineEventCV>::Itenerator it = pData->cvs.begin2(); it.valid(); it.next())
- {
- CarlaEngineEventCV& ecv(it.getValue(kFallbackEngineEventCV));
- CARLA_SAFE_ASSERT_CONTINUE(ecv.cvPort != nullptr);
-
- ecv.cvPort->initBuffer();
- }
- }
-
- // -----------------------------------------------------------------------
-
- CARLA_BACKEND_END_NAMESPACE
|