1
Fork 0
Virtual modular synthesizer (LADI project modifications)
Go to file
falkTX c06768f70f
Implement update rate limit
Closes #117

Signed-off-by: falkTX <falktx@falktx.com>
2022-01-18 09:50:50 +00:00
.github/workflows Start file list for audiofile module 2022-01-14 20:11:58 +00:00
carla@613e695058 Update dpf and carla, CI tweaks 2022-01-09 05:46:41 +00:00
deps Enable all the builds again 2022-01-14 14:10:22 +00:00
doc Update MindMeld and Prism, more license details 2022-01-17 22:59:41 +00:00
dpf@96d5def58d Experiments with static builds 2022-01-12 15:39:09 +00:00
include Fix regression on MIDI output 2022-01-15 21:27:24 +00:00
jucewrapper Continue battling juce and cmake, add needed stubs 2021-12-08 22:38:39 +00:00
lv2export Make small fonts less blurry 2021-12-23 01:56:37 +00:00
patches Add a patch file that is known to work 2021-10-19 00:41:08 +01:00
plugins Update MindMeld and Prism, more license details 2022-01-17 22:59:41 +00:00
src Implement update rate limit 2022-01-18 09:50:50 +00:00
.gitignore Reorder make rules to fix build on macOS 2021-11-16 13:30:19 +00:00
.gitmodules Update LittleUtils and Zeta, some details on licenses 2022-01-16 23:09:21 +00:00
LICENSE Add LICENSE file 2021-10-08 16:14:43 +01:00
Makefile Enable all the builds again 2022-01-14 14:10:22 +00:00
README.md Add ihtsyn 2022-01-11 16:42:55 +00:00

README.md

DISTRHO Cardinal

Cardinal, the Rack!

! THIS PROJECT IS A WORK IN PROGRESS !

This is a DPF-based plugin wrapper around VCV Rack, using its code directly instead of forking the project.
The target is to have a proper, self-contained, fully free and open-source plugin version of Rack.
See project overview document for an overview on how the project source code is structured.

Cardinal contains Rack, some 3rd-party modules and a few internal utilities all in a single binary.
It does not load external modules and does not connect to the official Rack library/store.

Because it is using DPF, Cardinal already supports LV2 and VST2 with an extra JACK standalone mode if self-compiled.
A VST3 version is in progress, already part of the build but still experimental.

The project should be considered in beta state at the moment.

Plugin variants

Cardinal provides 3 plugin variants - "main", Synth and FX.
They are all equivalent in performance and behaviour, with only the IO and metadata that changes.
This is because some hosts are very strict on which plugins are allowed as instruments vs FX, so separate variants of the same plugin are needed.

FX and Synth variants both have 2 audio outputs, while "main" has 8.
All variants have MIDI input and output support.

Main

This variant provides 8 audio inputs and outputs and 10 CV inputs and outputs.

NOTE: Due to VST2 format not supporting CV ports, this variant is not available for VST2.

Synth

This variant provides 2 audio outputs but no audio inputs or CV ports.
Plugin type is set as "instrument".

FX

This variant provides 2 audio inputs and outputs, but no CV ports.
Plugin type is set as regular "effect".

Screenshots

Because people will ask for it. It is, well... Rack.
But a couple of modules background's have their colors flipped, because damn we want proper dark mode!

screenshot1 screenshot2

Current status

Most of the features already work, you can assume things work in general except when stated otherwise.
Currently the following features are known NOT to work:

  • VST3 support incomplete/experimental #41
  • Factory (plugin-provided) presets #58

Current builds

If you want to try this out early, checkout the GitHub actions tab.
There is absolutely no warranty, use at your own risk and all that...

Community chat

Currently we are all on #cardinal IRC room in irc.libera.chat server.
Come join us in your favorite IRC client or through a Matrix bridge.

License

Cardinal is licensed under GPLv3+, see LICENSE for more details.
An overview of the included code and linked submodules can be seen here.

Included modules

At the moment the following 3rd-party modules are provided:

  • 21kHz
  • AS
  • Amalgamated Harmonics
  • Animated Circuits
  • Aria Salvatrice
  • Atelier
  • Audible Instruments
  • Bacon Music
  • Befaco
  • Bidoo
  • Bogaudio
  • cf
  • ChowDSP
  • DrumKit
  • E-Series
  • ExpertSleepers Encoders
  • Extratone
  • Fehler Fabrik
  • Fundamental
  • Glue the Giant
  • Grande
  • HetrickCV
  • Impromptu
  • ihtsyn
  • JW-Modules
  • LifeFormModular
  • Little Utils
  • Lomas Modules
  • Lyrae Modules
  • MindMeld
  • Mog
  • mscHack
  • Prism
  • Rackwindows
  • repelzen
  • Sonus Modular
  • Valley
  • ZetaCarinae
  • ZZC

Additionally Cardinal provides its own modules for DAW/Host automation, time position and internal plugin hosting.

Restrictions

Being an open-source project, all included 3rd-party modules must be opensource and have a GPLv3+ compatible license. GPLv3-only modules are not allowed.

Special care also needs to be taken with artwork licensing.
Cardinal allows the use of CC-NC because how prevalent it is across many Rack modules, but it should be avoided if possible.
Also, unless the module is really essential, CC-ND is not allowed.

Dependencies should be kept at a minimum, as otherwise it quickly grows the complexity of the build.
Online access (such as phone-home) is not allowed.

Why

Cardinal was created first and foremost as a way to have Rack as a proper open-source audio plugin.
A proper audio plugin should be self-contained as much as possible, as to not interfere with the DAW/Host. Loading external modules clearly goes against this idea.
Not to mention being open-source, otherwise we are at the mercy of the wishes of a company for what we can and cannot do, which is not something Cardinal's authors wish to abide by.

A self-contained plugin can't be overstated, as DLL/shared-object symbol conflicts can trigger hard-to-debug crashes.
While Rack tries to mitigate this as much as possible, crashes due to conflicting modules have already been seen in v2 builds.
On the other side, Cardinal redefines class and function names as needed to avoid as many conflicts as possible.

Support for ARM and non-mainstream platforms (for example BSD) has also always been missing from the official Rack since the start.
While we can patch the Rack free version to support these, same can't be done with Rack Pro with it being a closed-source product.
The online library/store only supports a very specific set of platforms too, so non-supported platforms would need any 3rd-party modules to be manually compiled to make them usable.

Unhappiness with the audio threading behaviour of Rack also plays a role.
Both audio and MIDI should be locked to the host audio thread as to minimize (or even altogether remove) latency and jitter.
The use of separate threads for MIDI is bad design, one that has been corrected in DAWs and JACK-MIDI for several years...
But Rack's use of RtMidi requires separate threading, so Cardinal does not use it.

Other relevant reasons include:

  • LV2 plugin version from the start
  • Proper dark mode support
  • Proper optimized build (because all code is compiled to a single file, we can use LTO over the whole thing)
  • Real CV ports to and from the plugin
  • Removing online access from the plugin and included modules (no phone-home here!)
  • Works as a test case for DPF and Carla
  • It is fun :)

Vs. Rack Pro

It needs to be said that Cardinal project and its author(s) do not wish anything bad to the original/official Rack project.
In fact, Cardinal wouldn't exist if not for Rack v2 release. (which has many needed things to make a plugin version work)

Cardinal and Rack should be able to co-exist friendly and peacefully, as they clearly have different targets.
It is likely most people will prefer to use Rack Pro for its official support and its big module collection (including commercial ones).

A feature comparison between Cardinal and Rack Pro can be seen here.