This project contains the full source code for the free rack extension A/B 12 Switch for Reason, the music DAW produced by Reason Studios. Check the A/B 12 Switch website for more details.
- The source code is released following Reason Studios decision to open up the Rack Extension SDK platform allowing for this kind of project to be made publicly available
- It is mostly meant as an example of a fully functional RE and the code is sparsely documented. I have since used C++ more intensively (in Jamba and other VST plugins) and would probably make very different implementation decisions now, especially being more familiar with "modern" C++.
- The master branch is currently unreleased as the code has been updated to use re-cmake and RE SDK 4.2.0 but there are no new features. The advantage is that it is much easier to build and can be build on both macOS and Windows10.
- This project requires CMake (minimum version 3.13) properly installed (
cmakeexecutable must be in yourPATH) - This project currently expects RE SDK 4.2.0 or 4.1.0 to be installed on the machine (it will not download it for you)
- Due to the RE SDK requirements, this project also requires python 3 to be installed
- It has been tested on macOS 10.14.6 with Xcode 9 installed
- It has been tested on Windows 10 with Visual Studio 16 2019 build tools
Designcontains the Pixelmator files used to create the graphicsGUI2Dis a standard RE SDK folder which contains the images (png format) as well asdevice_2D.luaandhdgui_2D.luafiles which defines the UIResourcesis a standard RE SDK folder which contains the strings (English only) displayed in the UIsrc/cppcontains the C++ source code for the deviceinfo.lua,motherboard_def.luaandrealtime_controller.luaare standard RE SDK files for defining the devicedisplay.luais the standard SDK file which contains the lua code for the UI (various custom displays)configure.pyis the python script you use to configure the CMake build
- Because this device was originally created for SDK 2.2, it mostly uses C++11. The re-common framework it depends on, uses C++17.
- The class
Motherboardmodels themotherboard_def.luafrom a C++ point of view - The properties use a property manager (
IJBoxPropertyManager) which automatically processes theiPropertyDiffsprovided on each batch to update the properties. - The
Deviceclass represents the entry point and is the class that is theprivateStatein the C-styleJBox_Export_RenderRealtimeapi. It contains 2 copies of theDeviceStateclass: one being the state from the previous batch and one the state for the current batch. At the end of the batch, the current state is copied into the previous state. This allow to see if values have changed and respond appropriately. This design inspired the first iteration of the Jamba framework (VST) but with refinement it then led to having the Property (aka Parameters in VST world) themselves hold the previous and current values which I now believe is a better design. I may retrofit this design in a future implementation...
You can install the SDK wherever you want on your system and provide it as an argument to the configure.py script. Or you can install (or create a link) in a default location:
/Users/Shared/ReasonStudios/JukeboxSDK_<RE_SDK_VERSION>/SDKfor macOSC:/Users/Public/Documents/ReasonStudios/JukeboxSDK_<RE_SDK_VERSION>/SDKfor Windows
Also note that the RE2DRender program needs to be unzipped and is expected to be a sibling of SDK (can be changed as well).
Invoking the configure.py creates a build directory in the directory where the command is run. Although it is strongly recommended to run this command outside the source tree, the build directory is excluded in .gitignore and since everything is contained within the build folder it is easy to clean after the fact.
Running the python3 configure.py -h command will print the usage.
Depending on how
pythonis installed on your system you may have to invoke it differently.
This script is expecting the
cmakecommand line tool to be in the path (usecmake -versionto confirm it is properly installed).
If you have setup the RE SDK in its default location, as specified above, simply run python3 configure.py otherwise use the -p option to specify its location.
After running the configure script, simply go into the newly generated build folder and run re.sh install (resp. re.bat install). This will build the plugin and install it in its default location.
Simply run
re.sh -h(resp.re.bat -h) for help with the command
This script is expecting the
cmakecommand line tool to be in the path (usecmake -versionto confirm it is properly installed).
You can then open Recon and load the newly built A/B 12 Audio Switch rack extension (you will find it under Utilities | pongasoft | A/B 12 Stereo Audio Inputs Switch)
The plugin will only appear in Recon not Reason
If you want to change the code, run a debugger, etc... you can check the instructions for the re-blank-plugin which explain how to generate an XCode project, load it in an IDE, etc...
- Upgraded to use re-cmake (removed all unnecessary files and added CMake build files)
- Upgraded to use RE SDK 4.6.0
- Builds properly on Apple chipset
- Use re-mock for testing
- Use re-logging for logging
- Hi resolution tweaks
- Minor UI redesign (back)
- Requires Reason 10.1+
- Fixed issue with Gate In.
- Added keyboard support in Single mode.
- Expanded keyboard control in Instr. to all octaves.
- Added 12 Gate In CV inputs
- Added 12 Gate Out CV outputs
- Changed design of the back to accomodate 24 new sockets.
- Fixed issue when mono signal.
- Fixed issue with soften.
- First release.
-
This project is released under the terms of the Apache 2.0 license
-
This project uses the Rack extension SDK released under the Rack Extension License agreement