/* * DISTRHO Cardinal Plugin * Copyright (C) 2021-2022 Filipe Coelho * * 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 3 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 LICENSE file. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef NDEBUG # undef DEBUG #endif #if defined(HAVE_LIBLO) && defined(HEADLESS) # include # include "extra/Thread.hpp" #endif #include #include "CardinalCommon.hpp" #include "DistrhoPluginUtils.hpp" #include "PluginContext.hpp" #include "extra/Base64.hpp" #ifdef DISTRHO_OS_WASM # include #else # include "extra/SharedResourcePointer.hpp" #endif #if CARDINAL_VARIANT_FX # define CARDINAL_TEMPLATE_NAME "init/fx.vcv" #elif CARDINAL_VARIANT_NATIVE # define CARDINAL_TEMPLATE_NAME "init/native.vcv" #elif CARDINAL_VARIANT_SYNTH # define CARDINAL_TEMPLATE_NAME "init/synth.vcv" #else # define CARDINAL_TEMPLATE_NAME "init/main.vcv" #endif static const constexpr uint kCardinalStateBaseCount = 3; // patch, screenshot, comment #ifndef HEADLESS # include "extra/ScopedValueSetter.hpp" # include "WindowParameters.hpp" static const constexpr uint kCardinalStateCount = kCardinalStateBaseCount + 2; // moduleInfos, windowSize #else # define kWindowParameterCount 0 static const constexpr uint kCardinalStateCount = kCardinalStateBaseCount; #endif namespace rack { namespace asset { std::string patchesPath(); void destroy(); } namespace engine { void Engine_setAboutToClose(Engine*); } namespace plugin { void initStaticPlugins(); void destroyStaticPlugins(); } #ifndef HEADLESS namespace window { void WindowInit(Window* window, DISTRHO_NAMESPACE::Plugin* plugin); } #endif } START_NAMESPACE_DISTRHO template static inline bool d_isDiffHigherThanLimit(const T& v1, const T& v2, const T& limit) { return v1 != v2 ? (v1 > v2 ? v1 - v2 : v2 - v1) > limit : false; } // ----------------------------------------------------------------------------------------------------------- #ifdef DISTRHO_OS_WASM static char* getPatchFileEncodedInURL() { return static_cast(EM_ASM_PTR({ var searchParams = new URLSearchParams(window.location.search); var patch = searchParams.get('patch'); if (!patch) return null; var length = lengthBytesUTF8(patch) + 1; var str = _malloc(length); stringToUTF8(patch, str, length); return str; })); }; static char* getPatchRemoteURL() { return static_cast(EM_ASM_PTR({ var searchParams = new URLSearchParams(window.location.search); var patch = searchParams.get('patchurl'); if (!patch) return null; var length = lengthBytesUTF8(patch) + 1; var str = _malloc(length); stringToUTF8(patch, str, length); return str; })); }; static char* getPatchStorageSlug() { return static_cast(EM_ASM_PTR({ var searchParams = new URLSearchParams(window.location.search); var patch = searchParams.get('patchstorage'); if (!patch) return null; var length = lengthBytesUTF8(patch) + 1; var str = _malloc(length); stringToUTF8(patch, str, length); return str; })); }; #endif // ----------------------------------------------------------------------------------------------------------- struct Initializer #if defined(HAVE_LIBLO) && defined(HEADLESS) : public Thread #endif { #if defined(HAVE_LIBLO) && defined(HEADLESS) lo_server oscServer = nullptr; CardinalBasePlugin* oscPlugin = nullptr; #endif std::string templatePath; std::string factoryTemplatePath; Initializer(const CardinalBasePlugin* const plugin) { using namespace rack; #ifdef DISTRHO_OS_WASM settings::allowCursorLock = true; #else settings::allowCursorLock = false; #endif settings::autoCheckUpdates = false; settings::autosaveInterval = 0; settings::devMode = true; settings::isPlugin = true; settings::skipLoadOnLaunch = true; settings::showTipsOnLaunch = false; settings::windowPos = math::Vec(0, 0); #ifdef HEADLESS settings::headless = true; #endif // copied from https://community.vcvrack.com/t/16-colour-cable-palette/15951 settings::cableColors = { color::fromHexString("#ff5252"), color::fromHexString("#ff9352"), color::fromHexString("#ffd452"), color::fromHexString("#e8ff52"), color::fromHexString("#a8ff52"), color::fromHexString("#67ff52"), color::fromHexString("#52ff7d"), color::fromHexString("#52ffbe"), color::fromHexString("#52ffff"), color::fromHexString("#52beff"), color::fromHexString("#527dff"), color::fromHexString("#6752ff"), color::fromHexString("#a852ff"), color::fromHexString("#e952ff"), color::fromHexString("#ff52d4"), color::fromHexString("#ff5293"), }; system::init(); logger::init(); random::init(); ui::init(); if (asset::systemDir.empty()) { if (const char* const bundlePath = plugin->getBundlePath()) { if (const char* const resourcePath = getResourcePath(bundlePath)) { asset::systemDir = resourcePath; asset::bundlePath = system::join(asset::systemDir, "PluginManifests"); } } if (asset::systemDir.empty() || ! system::exists(asset::systemDir) || ! system::exists(asset::bundlePath)) { #ifdef CARDINAL_PLUGIN_SOURCE_DIR // Make system dir point to source code location as fallback asset::systemDir = CARDINAL_PLUGIN_SOURCE_DIR DISTRHO_OS_SEP_STR "Rack"; asset::bundlePath.clear(); // If source code dir does not exist use install target prefix as system dir if (!system::exists(system::join(asset::systemDir, "res"))) #endif { #if defined(DISTRHO_OS_WASM) asset::systemDir = "/resources"; #elif defined(ARCH_MAC) asset::systemDir = "/Library/Application Support/Cardinal"; #elif defined(ARCH_WIN) const std::string commonprogfiles = getSpecialPath(kSpecialPathCommonProgramFiles); if (! commonprogfiles.empty()) asset::systemDir = system::join(commonprogfiles, "Cardinal"); #else asset::systemDir = CARDINAL_PLUGIN_PREFIX "/share/cardinal"; #endif asset::bundlePath = system::join(asset::systemDir, "PluginManifests"); } } asset::userDir = asset::systemDir; } const std::string patchesPath = asset::patchesPath(); #ifdef DISTRHO_OS_WASM templatePath = system::join(patchesPath, CARDINAL_WASM_WELCOME_TEMPLATE_FILENAME); #else templatePath = system::join(patchesPath, CARDINAL_TEMPLATE_NAME); #endif factoryTemplatePath = system::join(patchesPath, CARDINAL_TEMPLATE_NAME); // Log environment INFO("%s %s v%s", APP_NAME.c_str(), APP_EDITION.c_str(), APP_VERSION.c_str()); INFO("%s", system::getOperatingSystemInfo().c_str()); INFO("Binary filename: %s", getBinaryFilename()); INFO("Bundle path: %s", plugin->getBundlePath()); INFO("System directory: %s", asset::systemDir.c_str()); INFO("User directory: %s", asset::userDir.c_str()); INFO("Template patch: %s", templatePath.c_str()); INFO("System template patch: %s", factoryTemplatePath.c_str()); // Report to user if something is wrong with the installation if (asset::systemDir.empty()) { d_stderr2("Failed to locate Cardinal plugin bundle.\n" "Install Cardinal with its bundle folder intact and try again."); } else if (! system::exists(asset::systemDir)) { d_stderr2("System directory \"%s\" does not exist.\n" "Make sure Cardinal was downloaded and installed correctly.", asset::systemDir.c_str()); } INFO("Initializing plugins"); plugin::initStaticPlugins(); INFO("Initializing plugin browser DB"); app::browserInit(); #if defined(HAVE_LIBLO) && defined(HEADLESS) INFO("Initializing OSC Remote control"); oscServer = lo_server_new_with_proto(REMOTE_HOST_PORT, LO_UDP, osc_error_handler); DISTRHO_SAFE_ASSERT_RETURN(oscServer != nullptr,); lo_server_add_method(oscServer, "/hello", "", osc_hello_handler, this); lo_server_add_method(oscServer, "/load", "b", osc_load_handler, this); lo_server_add_method(oscServer, "/screenshot", "b", osc_screenshot_handler, this); lo_server_add_method(oscServer, nullptr, nullptr, osc_fallback_handler, nullptr); startThread(); #elif defined(HEADLESS) INFO("OSC Remote control is not enabled in this build"); #endif } ~Initializer() { using namespace rack; #if defined(HAVE_LIBLO) && defined(HEADLESS) if (oscServer != nullptr) { stopThread(5000); lo_server_del_method(oscServer, nullptr, nullptr); lo_server_free(oscServer); oscServer = nullptr; } #endif INFO("Clearing asset paths"); asset::bundlePath.clear(); asset::systemDir.clear(); asset::userDir.clear(); INFO("Destroying plugins"); plugin::destroyStaticPlugins(); INFO("Destroying colourized assets"); asset::destroy(); INFO("Destroying settings"); settings::destroy(); INFO("Destroying logger"); logger::destroy(); } #if defined(HAVE_LIBLO) && defined(HEADLESS) void run() override { INFO("OSC Thread Listening for remote commands"); while (! shouldThreadExit()) { d_msleep(200); while (lo_server_recv_noblock(oscServer, 0) != 0) {} } INFO("OSC Thread Closed"); } static void osc_error_handler(int num, const char* msg, const char* path) { d_stderr("Cardinal OSC Error: code: %i, msg: \"%s\", path: \"%s\")", num, msg, path); } static int osc_fallback_handler(const char* const path, const char* const types, lo_arg**, int, lo_message, void*) { d_stderr("Cardinal OSC unhandled message \"%s\" with types \"%s\"", path, types); return 0; } static int osc_hello_handler(const char*, const char*, lo_arg**, int, const lo_message m, void* const self) { d_stdout("osc_hello_handler()"); const lo_address source = lo_message_get_source(m); lo_send_from(source, static_cast(self)->oscServer, LO_TT_IMMEDIATE, "/resp", "ss", "hello", "ok"); return 0; } static int osc_load_handler(const char*, const char* types, lo_arg** argv, int argc, const lo_message m, void* const self) { d_stdout("osc_load_handler()"); DISTRHO_SAFE_ASSERT_RETURN(argc == 1, 0); DISTRHO_SAFE_ASSERT_RETURN(types != nullptr && types[0] == 'b', 0); const int32_t size = argv[0]->blob.size; DISTRHO_SAFE_ASSERT_RETURN(size > 4, 0); const uint8_t* const blob = (uint8_t*)(&argv[0]->blob.data); DISTRHO_SAFE_ASSERT_RETURN(blob != nullptr, 0); bool ok = false; if (CardinalBasePlugin* const plugin = static_cast(self)->oscPlugin) { CardinalPluginContext* const context = plugin->context; std::vector data(size); std::memcpy(data.data(), blob, size); rack::contextSet(context); rack::system::removeRecursively(context->patch->autosavePath); rack::system::createDirectories(context->patch->autosavePath); try { rack::system::unarchiveToDirectory(data, context->patch->autosavePath); context->patch->loadAutosave(); ok = true; } catch (rack::Exception& e) { WARN("%s", e.what()); } rack::contextSet(nullptr); } const lo_address source = lo_message_get_source(m); lo_send_from(source, static_cast(self)->oscServer, LO_TT_IMMEDIATE, "/resp", "ss", "load", ok ? "ok" : "fail"); return 0; } static int osc_screenshot_handler(const char*, const char* types, lo_arg** argv, int argc, const lo_message m, void* const self) { d_stdout("osc_screenshot_handler()"); DISTRHO_SAFE_ASSERT_RETURN(argc == 1, 0); DISTRHO_SAFE_ASSERT_RETURN(types != nullptr && types[0] == 'b', 0); const int32_t size = argv[0]->blob.size; DISTRHO_SAFE_ASSERT_RETURN(size > 4, 0); const uint8_t* const blob = (uint8_t*)(&argv[0]->blob.data); DISTRHO_SAFE_ASSERT_RETURN(blob != nullptr, 0); bool ok = false; if (CardinalBasePlugin* const plugin = static_cast(self)->oscPlugin) ok = plugin->updateStateValue("screenshot", String::asBase64(blob, size).buffer()); const lo_address source = lo_message_get_source(m); lo_send_from(source, static_cast(self)->oscServer, LO_TT_IMMEDIATE, "/resp", "ss", "screenshot", ok ? "ok" : "fail"); return 0; } #endif }; // ----------------------------------------------------------------------------------------------------------- void CardinalPluginContext::writeMidiMessage(const rack::midi::Message& message, const uint8_t channel) { if (bypassed) return; const size_t size = message.bytes.size(); DISTRHO_SAFE_ASSERT_RETURN(size > 0,); DISTRHO_SAFE_ASSERT_RETURN(message.frame >= 0,); MidiEvent event; event.frame = message.frame; switch (message.bytes[0] & 0xF0) { case 0x80: case 0x90: case 0xA0: case 0xB0: case 0xE0: event.size = 3; break; case 0xC0: case 0xD0: event.size = 2; break; case 0xF0: switch (message.bytes[0] & 0x0F) { case 0x0: case 0x4: case 0x5: case 0x7: case 0x9: case 0xD: // unsupported return; case 0x1: case 0x2: case 0x3: case 0xE: event.size = 3; break; case 0x6: case 0x8: case 0xA: case 0xB: case 0xC: case 0xF: event.size = 1; break; } break; default: // invalid return; } DISTRHO_SAFE_ASSERT_RETURN(size >= event.size,); std::memcpy(event.data, message.bytes.data(), event.size); if (channel != 0 && event.data[0] < 0xF0) event.data[0] |= channel & 0x0F; plugin->writeMidiEvent(event); } // ----------------------------------------------------------------------------------------------------------- struct ScopedContext { ScopedContext(const CardinalBasePlugin* const plugin) { rack::contextSet(plugin->context); } ~ScopedContext() { rack::contextSet(nullptr); } }; // ----------------------------------------------------------------------------------------------------------- class CardinalPlugin : public CardinalBasePlugin { #ifdef DISTRHO_OS_WASM ScopedPointer fInitializer; #else SharedResourcePointer fInitializer; #endif #if DISTRHO_PLUGIN_NUM_INPUTS != 0 /* If host audio ins == outs we can get issues for inplace processing. * So allocate a float array that will serve as safe copy for those cases. */ float** fAudioBufferCopy; #endif std::string fAutosavePath; uint64_t fNextExpectedFrame; struct { String comment; String screenshot; #ifndef HEADLESS String windowSize; #endif } fState; // bypass handling bool fWasBypassed; MidiEvent bypassMidiEvents[16]; #ifndef HEADLESS // real values, not VCV interpreted ones float fWindowParameters[kWindowParameterCount]; #endif public: CardinalPlugin() : CardinalBasePlugin(kModuleParameters + kWindowParameterCount + 1, 0, kCardinalStateCount), #ifdef DISTRHO_OS_WASM fInitializer(new Initializer(this)), #else fInitializer(this), #endif #if DISTRHO_PLUGIN_NUM_INPUTS != 0 fAudioBufferCopy(nullptr), #endif fNextExpectedFrame(0), fWasBypassed(false) { #ifndef HEADLESS fWindowParameters[kWindowParameterShowTooltips] = 1.0f; fWindowParameters[kWindowParameterCableOpacity] = 50.0f; fWindowParameters[kWindowParameterCableTension] = 75.0f; fWindowParameters[kWindowParameterRackBrightness] = 100.0f; fWindowParameters[kWindowParameterHaloBrightness] = 25.0f; fWindowParameters[kWindowParameterKnobMode] = 0.0f; fWindowParameters[kWindowParameterWheelKnobControl] = 0.0f; fWindowParameters[kWindowParameterWheelSensitivity] = 1.0f; fWindowParameters[kWindowParameterLockModulePositions] = 0.0f; fWindowParameters[kWindowParameterUpdateRateLimit] = 0.0f; fWindowParameters[kWindowParameterBrowserSort] = 3.0f; fWindowParameters[kWindowParameterBrowserZoom] = 50.0f; fWindowParameters[kWindowParameterInvertZoom] = 0.0f; fWindowParameters[kWindowParameterSqueezeModulePositions] = 1.0f; #endif // create unique temporary path for this instance try { char uidBuf[24]; const std::string tmp = rack::system::getTempDirectory(); for (int i=1;; ++i) { std::snprintf(uidBuf, sizeof(uidBuf), "Cardinal.%04d", i); const std::string trypath = rack::system::join(tmp, uidBuf); if (! rack::system::exists(trypath)) { if (rack::system::createDirectories(trypath)) fAutosavePath = trypath; break; } } } DISTRHO_SAFE_EXCEPTION("create unique temporary path"); // initialize midi events used when entering bypassed state std::memset(bypassMidiEvents, 0, sizeof(bypassMidiEvents)); for (uint8_t i=0; i<16; ++i) { bypassMidiEvents[i].size = 3; bypassMidiEvents[i].data[0] = 0xB0 + i; bypassMidiEvents[i].data[1] = 0x7B; } const float sampleRate = getSampleRate(); rack::settings::sampleRate = sampleRate; context->bufferSize = getBufferSize(); context->sampleRate = sampleRate; const ScopedContext sc(this); context->engine = new rack::engine::Engine; context->engine->setSampleRate(sampleRate); context->history = new rack::history::State; context->patch = new rack::patch::Manager; context->patch->autosavePath = fAutosavePath; context->patch->templatePath = fInitializer->templatePath; context->patch->factoryTemplatePath = fInitializer->factoryTemplatePath; context->event = new rack::widget::EventState; context->scene = new rack::app::Scene; context->event->rootWidget = context->scene; if (! isDummyInstance()) context->window = new rack::window::Window; #ifdef DISTRHO_OS_WASM if ((rack::patchStorageSlug = getPatchStorageSlug()) == nullptr && (rack::patchRemoteURL = getPatchRemoteURL()) == nullptr && (rack::patchFromURL = getPatchFileEncodedInURL()) == nullptr) #endif { context->patch->loadTemplate(); context->scene->rackScroll->reset(); // swap to factory template after first load context->patch->templatePath = context->patch->factoryTemplatePath; } #if defined(HAVE_LIBLO) && defined(HEADLESS) fInitializer->oscPlugin = this; #endif } ~CardinalPlugin() override { #if defined(HAVE_LIBLO) && defined(HEADLESS) fInitializer->oscPlugin = nullptr; #endif { const ScopedContext sc(this); context->patch->clear(); // do a little dance to prevent context scene deletion from saving to temp dir #ifndef HEADLESS const ScopedValueSetter svs(rack::settings::headless, true); #endif Engine_setAboutToClose(context->engine); delete context; } if (! fAutosavePath.empty()) rack::system::removeRecursively(fAutosavePath); } CardinalPluginContext* getRackContext() const noexcept { return context; } protected: /* -------------------------------------------------------------------------------------------------------- * Information */ const char* getLabel() const override { return DISTRHO_PLUGIN_LABEL; } const char* getDescription() const override { return "" "Cardinal is a free and open-source virtual modular synthesizer plugin.\n" "It is based on the popular VCV Rack but with a focus on being a fully self-contained plugin version.\n" "It is not an official VCV project, and it is not affiliated with it in any way.\n" "\n" "Cardinal contains Rack, some 3rd-party modules and a few internal utilities.\n" "It does not load external modules and does not connect to the official Rack library/store.\n"; } const char* getMaker() const override { return "DISTRHO"; } const char* getHomePage() const override { return "https://github.com/DISTRHO/Cardinal"; } const char* getLicense() const override { return "GPLv3+"; } uint32_t getVersion() const override { return d_version(0, 22, 10); } int64_t getUniqueId() const override { #if CARDINAL_VARIANT_MAIN || CARDINAL_VARIANT_NATIVE return d_cconst('d', 'C', 'd', 'n'); #elif CARDINAL_VARIANT_FX return d_cconst('d', 'C', 'n', 'F'); #elif CARDINAL_VARIANT_SYNTH return d_cconst('d', 'C', 'n', 'S'); #else #error cardinal variant not set #endif } /* -------------------------------------------------------------------------------------------------------- * Init */ void initAudioPort(const bool input, uint32_t index, AudioPort& port) override { #if CARDINAL_VARIANT_MAIN if (index < 8) { port.groupId = index / 2; } else { port.hints = kAudioPortIsCV | kCVPortHasPositiveUnipolarRange | kCVPortHasScaledRange; index -= 8; } #elif CARDINAL_VARIANT_FX || CARDINAL_VARIANT_NATIVE || CARDINAL_VARIANT_SYNTH if (index < 2) port.groupId = kPortGroupStereo; #endif CardinalBasePlugin::initAudioPort(input, index, port); } #if CARDINAL_VARIANT_MAIN void initPortGroup(const uint32_t index, PortGroup& portGroup) override { switch (index) { case 0: portGroup.name = "Audio 1+2"; portGroup.symbol = "audio_1_and_2"; break; case 1: portGroup.name = "Audio 3+4"; portGroup.symbol = "audio_3_and_4"; break; case 2: portGroup.name = "Audio 5+6"; portGroup.symbol = "audio_5_and_6"; break; case 3: portGroup.name = "Audio 7+8"; portGroup.symbol = "audio_7_and_8"; break; } } #endif void initParameter(const uint32_t index, Parameter& parameter) override { if (index < kModuleParameters) { parameter.name = "Parameter "; parameter.name += String(index + 1); parameter.symbol = "param_"; parameter.symbol += String(index + 1); parameter.unit = "v"; parameter.hints = kParameterIsAutomatable; parameter.ranges.def = 0.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 10.0f; return; } if (index == kModuleParameters) { parameter.initDesignation(kParameterDesignationBypass); return; } #ifndef HEADLESS switch (index - kModuleParameters - 1) { case kWindowParameterShowTooltips: parameter.name = "Show tooltips"; parameter.symbol = "tooltips"; parameter.hints = kParameterIsAutomatable|kParameterIsInteger|kParameterIsBoolean; parameter.ranges.def = 1.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 1.0f; break; case kWindowParameterCableOpacity: parameter.name = "Cable opacity"; parameter.symbol = "cableOpacity"; parameter.unit = "%"; parameter.hints = kParameterIsAutomatable; parameter.ranges.def = 50.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 100.0f; break; case kWindowParameterCableTension: parameter.name = "Cable tension"; parameter.symbol = "cableTension"; parameter.unit = "%"; parameter.hints = kParameterIsAutomatable; parameter.ranges.def = 75.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 100.0f; break; case kWindowParameterRackBrightness: parameter.name = "Room brightness"; parameter.symbol = "rackBrightness"; parameter.unit = "%"; parameter.hints = kParameterIsAutomatable; parameter.ranges.def = 100.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 100.0f; break; case kWindowParameterHaloBrightness: parameter.name = "Light Bloom"; parameter.symbol = "haloBrightness"; parameter.unit = "%"; parameter.hints = kParameterIsAutomatable; parameter.ranges.def = 25.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 100.0f; break; case kWindowParameterKnobMode: parameter.name = "Knob mode"; parameter.symbol = "knobMode"; parameter.hints = kParameterIsAutomatable|kParameterIsInteger; parameter.ranges.def = 0.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 2.0f; parameter.enumValues.count = 3; parameter.enumValues.restrictedMode = true; parameter.enumValues.values = new ParameterEnumerationValue[3]; parameter.enumValues.values[0].label = "Linear"; parameter.enumValues.values[0].value = 0.0f; parameter.enumValues.values[1].label = "Absolute rotary"; parameter.enumValues.values[1].value = 1.0f; parameter.enumValues.values[2].label = "Relative rotary"; parameter.enumValues.values[2].value = 2.0f; break; case kWindowParameterWheelKnobControl: parameter.name = "Scroll wheel knob control"; parameter.symbol = "knobScroll"; parameter.hints = kParameterIsAutomatable|kParameterIsInteger|kParameterIsBoolean; parameter.ranges.def = 0.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 1.0f; break; case kWindowParameterWheelSensitivity: parameter.name = "Scroll wheel knob sensitivity"; parameter.symbol = "knobScrollSensitivity"; parameter.hints = kParameterIsAutomatable|kParameterIsLogarithmic; parameter.ranges.def = 1.0f; parameter.ranges.min = 0.1f; parameter.ranges.max = 10.0f; break; case kWindowParameterLockModulePositions: parameter.name = "Lock module positions"; parameter.symbol = "lockModules"; parameter.hints = kParameterIsAutomatable|kParameterIsInteger|kParameterIsBoolean; parameter.ranges.def = 0.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 1.0f; break; case kWindowParameterUpdateRateLimit: parameter.name = "Update rate limit"; parameter.symbol = "rateLimit"; parameter.hints = kParameterIsAutomatable|kParameterIsInteger; parameter.ranges.def = 0.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 2.0f; parameter.enumValues.count = 3; parameter.enumValues.restrictedMode = true; parameter.enumValues.values = new ParameterEnumerationValue[3]; parameter.enumValues.values[0].label = "None"; parameter.enumValues.values[0].value = 0.0f; parameter.enumValues.values[1].label = "2x"; parameter.enumValues.values[1].value = 1.0f; parameter.enumValues.values[2].label = "4x"; parameter.enumValues.values[2].value = 2.0f; break; case kWindowParameterBrowserSort: parameter.name = "Browser sort"; parameter.symbol = "browserSort"; parameter.hints = kParameterIsAutomatable|kParameterIsInteger; parameter.ranges.def = 3.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 5.0f; parameter.enumValues.count = 6; parameter.enumValues.restrictedMode = true; parameter.enumValues.values = new ParameterEnumerationValue[6]; parameter.enumValues.values[0].label = "Updated"; parameter.enumValues.values[0].value = 0.0f; parameter.enumValues.values[1].label = "Last used"; parameter.enumValues.values[1].value = 1.0f; parameter.enumValues.values[2].label = "Most used"; parameter.enumValues.values[2].value = 2.0f; parameter.enumValues.values[3].label = "Brand"; parameter.enumValues.values[3].value = 3.0f; parameter.enumValues.values[4].label = "Name"; parameter.enumValues.values[4].value = 4.0f; parameter.enumValues.values[5].label = "Random"; parameter.enumValues.values[5].value = 5.0f; break; case kWindowParameterBrowserZoom: parameter.name = "Browser zoom"; parameter.symbol = "browserZoom"; parameter.hints = kParameterIsAutomatable; parameter.unit = "%"; parameter.ranges.def = 50.0f; parameter.ranges.min = 25.0f; parameter.ranges.max = 200.0f; parameter.enumValues.count = 7; parameter.enumValues.restrictedMode = true; parameter.enumValues.values = new ParameterEnumerationValue[7]; parameter.enumValues.values[0].label = "25"; parameter.enumValues.values[0].value = 25.0f; parameter.enumValues.values[1].label = "35"; parameter.enumValues.values[1].value = 35.0f; parameter.enumValues.values[2].label = "50"; parameter.enumValues.values[2].value = 50.0f; parameter.enumValues.values[3].label = "71"; parameter.enumValues.values[3].value = 71.0f; parameter.enumValues.values[4].label = "100"; parameter.enumValues.values[4].value = 100.0f; parameter.enumValues.values[5].label = "141"; parameter.enumValues.values[5].value = 141.0f; parameter.enumValues.values[6].label = "200"; parameter.enumValues.values[6].value = 200.0f; break; case kWindowParameterInvertZoom: parameter.name = "Invert zoom"; parameter.symbol = "invertZoom"; parameter.hints = kParameterIsAutomatable|kParameterIsInteger|kParameterIsBoolean; parameter.ranges.def = 0.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 1.0f; break; case kWindowParameterSqueezeModulePositions: parameter.name = "Auto-squeeze module positions"; parameter.symbol = "squeezeModules"; parameter.hints = kParameterIsAutomatable|kParameterIsInteger|kParameterIsBoolean; parameter.ranges.def = 1.0f; parameter.ranges.min = 0.0f; parameter.ranges.max = 1.0f; break; } #endif } void initState(const uint32_t index, State& state) override { switch (index) { case 0: state.hints = kStateIsBase64Blob | kStateIsOnlyForDSP; state.key = "patch"; state.label = "Patch"; break; case 1: state.hints = kStateIsHostReadable | kStateIsBase64Blob; state.key = "screenshot"; state.label = "Screenshot"; break; case 2: state.hints = kStateIsHostWritable; state.key = "comment"; state.label = "Comment"; break; case 3: state.hints = kStateIsOnlyForUI; state.key = "moduleInfos"; state.label = "moduleInfos"; break; case 4: state.hints = kStateIsOnlyForUI; state.key = "windowSize"; state.label = "Window size"; break; } } /* -------------------------------------------------------------------------------------------------------- * Internal data */ float getParameterValue(uint32_t index) const override { // host mapped parameters if (index < kModuleParameters) return context->parameters[index]; // bypass if (index == kModuleParameters) return context->bypassed ? 1.0f : 0.0f; #ifndef HEADLESS // window related parameters index -= kModuleParameters + 1; if (index < kWindowParameterCount) return fWindowParameters[index]; #endif return 0.0f; } void setParameterValue(uint32_t index, float value) override { // host mapped parameters if (index < kModuleParameters) { context->parameters[index] = value; return; } // bypass if (index == kModuleParameters) { context->bypassed = value > 0.5f; return; } #ifndef HEADLESS // window related parameters index -= kModuleParameters + 1; if (index < kWindowParameterCount) { fWindowParameters[index] = value; return; } #endif } String getState(const char* const key) const override { #ifndef HEADLESS if (std::strcmp(key, "moduleInfos") == 0) { json_t* const rootJ = json_object(); DISTRHO_SAFE_ASSERT_RETURN(rootJ != nullptr, String()); for (const auto& pluginPair : rack::settings::moduleInfos) { json_t* const pluginJ = json_object(); DISTRHO_SAFE_ASSERT_CONTINUE(pluginJ != nullptr); for (const auto& modulePair : pluginPair.second) { json_t* const moduleJ = json_object(); DISTRHO_SAFE_ASSERT_CONTINUE(moduleJ != nullptr); const rack::settings::ModuleInfo& m(modulePair.second); // To make setting.json smaller, only set properties if not default values. if (m.favorite) json_object_set_new(moduleJ, "favorite", json_boolean(m.favorite)); if (m.added > 0) json_object_set_new(moduleJ, "added", json_integer(m.added)); if (std::isfinite(m.lastAdded)) json_object_set_new(moduleJ, "lastAdded", json_real(m.lastAdded)); if (json_object_size(moduleJ)) json_object_set_new(pluginJ, modulePair.first.c_str(), moduleJ); else json_decref(moduleJ); } if (json_object_size(pluginJ)) json_object_set_new(rootJ, pluginPair.first.c_str(), pluginJ); else json_decref(pluginJ); } const String info(json_dumps(rootJ, JSON_COMPACT), false); json_decref(rootJ); return info; } if (std::strcmp(key, "windowSize") == 0) return fState.windowSize; #endif if (std::strcmp(key, "comment") == 0) return fState.comment; if (std::strcmp(key, "screenshot") == 0) return fState.screenshot; if (std::strcmp(key, "patch") != 0) return String(); if (fAutosavePath.empty()) return String(); std::vector data; { const ScopedContext sc(this); context->engine->prepareSave(); context->patch->saveAutosave(); context->patch->cleanAutosave(); // context->history->setSaved(); try { data = rack::system::archiveDirectory(fAutosavePath, 1); } DISTRHO_SAFE_EXCEPTION_RETURN("getState archiveDirectory", String()); } return String::asBase64(data.data(), data.size()); } void setState(const char* const key, const char* const value) override { #ifndef HEADLESS if (std::strcmp(key, "moduleInfos") == 0) { json_error_t error; json_t* const rootJ = json_loads(value, 0, &error); DISTRHO_SAFE_ASSERT_RETURN(rootJ != nullptr,); const char* pluginSlug; json_t* pluginJ; json_object_foreach(rootJ, pluginSlug, pluginJ) { const char* moduleSlug; json_t* moduleJ; json_object_foreach(pluginJ, moduleSlug, moduleJ) { rack::settings::ModuleInfo m; if (json_t* const favoriteJ = json_object_get(moduleJ, "favorite")) m.favorite = json_boolean_value(favoriteJ); if (json_t* const addedJ = json_object_get(moduleJ, "added")) m.added = json_integer_value(addedJ); if (json_t* const lastAddedJ = json_object_get(moduleJ, "lastAdded")) m.lastAdded = json_number_value(lastAddedJ); rack::settings::moduleInfos[pluginSlug][moduleSlug] = m; } } json_decref(rootJ); return; } if (std::strcmp(key, "windowSize") == 0) { fState.windowSize = value; return; } #endif if (std::strcmp(key, "comment") == 0) { fState.comment = value; return; } if (std::strcmp(key, "screenshot") == 0) { fState.screenshot = value; #if defined(HAVE_LIBLO) && !defined(HEADLESS) patchUtils::sendScreenshotToRemote(value); #endif return; } if (std::strcmp(key, "patch") != 0) return; if (fAutosavePath.empty()) return; const std::vector data(d_getChunkFromBase64String(value)); DISTRHO_SAFE_ASSERT_RETURN(data.size() >= 4,); rack::system::removeRecursively(fAutosavePath); rack::system::createDirectories(fAutosavePath); static constexpr const char zstdMagic[] = "\x28\xb5\x2f\xfd"; if (std::memcmp(data.data(), zstdMagic, sizeof(zstdMagic)) != 0) { FILE* const f = std::fopen(rack::system::join(fAutosavePath, "patch.json").c_str(), "w"); DISTRHO_SAFE_ASSERT_RETURN(f != nullptr,); std::fwrite(data.data(), data.size(), 1, f); std::fclose(f); } else { try { rack::system::unarchiveToDirectory(data, fAutosavePath); } DISTRHO_SAFE_EXCEPTION_RETURN("setState unarchiveToDirectory",); } const ScopedContext sc(this); try { context->patch->loadAutosave(); } DISTRHO_SAFE_EXCEPTION_RETURN("setState loadAutosave",); // context->history->setSaved(); } /* -------------------------------------------------------------------------------------------------------- * Process */ void activate() override { context->bufferSize = getBufferSize(); #if DISTRHO_PLUGIN_NUM_INPUTS != 0 fAudioBufferCopy = new float*[DISTRHO_PLUGIN_NUM_INPUTS]; for (int i=0; ibufferSize]; #endif fNextExpectedFrame = 0; } void deactivate() override { #if DISTRHO_PLUGIN_NUM_INPUTS != 0 if (fAudioBufferCopy != nullptr) { for (int i=0; ibypassed; { const TimePosition& timePos(getTimePosition()); bool reset = timePos.playing && (timePos.frame == 0 || d_isDiffHigherThanLimit(fNextExpectedFrame, timePos.frame, (uint64_t)2)); // ignore hosts which cannot supply time frame position if (context->playing == timePos.playing && timePos.frame == 0 && context->frame == 0) reset = false; context->playing = timePos.playing; context->bbtValid = timePos.bbt.valid; context->frame = timePos.frame; if (timePos.bbt.valid) { const double samplesPerTick = 60.0 * getSampleRate() / timePos.bbt.beatsPerMinute / timePos.bbt.ticksPerBeat; context->bar = timePos.bbt.bar; context->beat = timePos.bbt.beat; context->beatsPerBar = timePos.bbt.beatsPerBar; context->beatType = timePos.bbt.beatType; context->barStartTick = timePos.bbt.barStartTick; context->beatsPerMinute = timePos.bbt.beatsPerMinute; context->tick = timePos.bbt.tick; context->ticksPerBeat = timePos.bbt.ticksPerBeat; context->ticksPerClock = timePos.bbt.ticksPerBeat / timePos.bbt.beatType; context->ticksPerFrame = 1.0 / samplesPerTick; context->tickClock = std::fmod(timePos.bbt.tick, context->ticksPerClock); } context->reset = reset; fNextExpectedFrame = timePos.playing ? timePos.frame + frames : 0; } // separate buffers, use them if (inputs != outputs && (inputs == nullptr || inputs[0] != outputs[0])) { context->dataIns = inputs; context->dataOuts = outputs; } // inline processing, use a safe copy else { #if DISTRHO_PLUGIN_NUM_INPUTS != 0 for (int i=0; idataIns = fAudioBufferCopy; #else context->dataIns = nullptr; #endif context->dataOuts = outputs; } for (int i=0; imidiEvents = bypassMidiEvents; context->midiEventCount = 16; } else { context->midiEvents = nullptr; context->midiEventCount = 0; } } else { context->midiEvents = midiEvents; context->midiEventCount = midiEventCount; } ++context->processCounter; context->engine->stepBlock(frames); fWasBypassed = bypassed; } void sampleRateChanged(const double newSampleRate) override { rack::contextSet(context); rack::settings::sampleRate = newSampleRate; context->sampleRate = newSampleRate; context->engine->setSampleRate(newSampleRate); } // ------------------------------------------------------------------------------------------------------- private: /** Set our plugin class as non-copyable and add a leak detector just in case. */ DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CardinalPlugin) }; CardinalPluginContext* getRackContextFromPlugin(void* const ptr) { return static_cast(ptr)->getRackContext(); } /* ------------------------------------------------------------------------------------------------------------ * Plugin entry point, called by DPF to create a new plugin instance. */ Plugin* createPlugin() { return new CardinalPlugin(); } // ----------------------------------------------------------------------------------------------------------- END_NAMESPACE_DISTRHO