-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d37b91f
Showing
23 changed files
with
2,889 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Xenos | ||
|
||
Xenos is a virtual instrument plug-in that implements and extends the Dynamic Stochastic Synthesis (DSS) algorithm invented by Iannis Xenakis. It is open-source, cross-platform, and can be built in a number of plugin formats. | ||
|
||
![](Extra/xenosInterface.png "The Xenos interface") | ||
|
||
Features include: | ||
- Authentic DSS engine | ||
- Xenharmonic pitch quantizer | ||
- Custom scale import in the [Scala](https://www.huygens-fokker.org/scala/) format | ||
- Ten stochastic distributions with up to two parameters each | ||
- First- and second-order random walks | ||
- Variable number of segments per wave cycle | ||
- Variable amplitude envelope | ||
- Polyphonic (64 voices by default) | ||
- MIDI implementation (notes, sustain, pitch bend) | ||
- External MIDI controller assignment | ||
- Parameter automation | ||
- Simple and streamlined interface | ||
- Free and open source | ||
|
||
## Build | ||
|
||
1. [Download](https://juce.com/get-juce/download) JUCE | ||
2. Clone or [download](https://github.com/raphaelradna/xenos/archive/refs/heads/main.zip) Xenos | ||
3. Open Xenos.jucer in the Projucer | ||
4. Export the project for your IDE and platform (e.g. Xcode (maxOS) or Visual Studio 2019); see [here](https://docs.juce.com/master/tutorial_new_projucer_project.html) for help | ||
5. Compile Xenos using your IDE (or make on Linux) | ||
6. Copy the plug-in binary (e.g., Xenos.component, Xenos.vst3, etc.) to the proper location for your platform and host software | ||
7. Open a suitable plug-in host application, add Xenos on a virtual instrument track, and enjoy! | ||
|
||
## Pre-built releases and user manual coming soon! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
============================================================================== | ||
ParamListener.h | ||
Xenos: Xenharmonic Stochastic Synthesizer | ||
Raphael Radna | ||
This code is licensed under the GPLv3 | ||
============================================================================== | ||
*/ | ||
|
||
#pragma once | ||
|
||
class ParamListener : public juce::AudioProcessorValueTreeState::Listener { | ||
public: | ||
ParamListener(XenosAudioProcessor& aP_) : aP(aP_) {} | ||
|
||
void parameterChanged(const juce::String& parameterID, float newValue) | ||
{ | ||
aP.xenosAudioSource.setParam(parameterID, newValue); | ||
} | ||
private: | ||
XenosAudioProcessor& aP; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
============================================================================== | ||
ParamMenu.h | ||
Xenos: Xenharmonic Stochastic Synthesizer | ||
Raphael Radna | ||
This code is licensed under the GPLv3 | ||
============================================================================== | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "ParamListener.h" | ||
|
||
struct ParamMenu : juce::ComboBox { | ||
juce::Label label; | ||
std::unique_ptr<juce::AudioProcessorValueTreeState::ComboBoxAttachment> | ||
attachment; | ||
ParamListener* listener; | ||
std::string param, disp; | ||
|
||
ParamMenu() {} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
============================================================================== | ||
ParamSlider.h | ||
Xenos: Xenharmonic Stochastic Synthesizer | ||
Raphael Radna | ||
This code is licensed under the GPLv3 | ||
============================================================================== | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "ParamListener.h" | ||
|
||
struct ParamSlider : juce::Slider { | ||
juce::Label label; | ||
std::unique_ptr<juce::AudioProcessorValueTreeState::SliderAttachment> | ||
attachment; | ||
ParamListener* listener; | ||
std::string param, disp; | ||
|
||
ParamSlider() {} | ||
}; |
Oops, something went wrong.