Compare commits
5 Commits
ff59c7c66a
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
62f4e21185 | ||
|
|
17d0961eb0 | ||
|
|
6bdc3a4b48 | ||
|
|
2d24006fd9 | ||
|
|
e40645f280 |
16
Readme.md
16
Readme.md
@@ -1,16 +0,0 @@
|
|||||||
# soundThing
|
|
||||||
|
|
||||||
A basic demonstration of generating sound samples and feeding an audio buffer, along with opening a MIDI port with ALSA, and playing back tones from the sound generator using MIDI events.
|
|
||||||
|
|
||||||
## Building:
|
|
||||||
|
|
||||||
Depends on Raylib and probably libasound2-dev, so install those if you don't have them already.
|
|
||||||
|
|
||||||
1) Clone the repository.
|
|
||||||
2) run make from inside the repository directory.
|
|
||||||
|
|
||||||
### Running and use:
|
|
||||||
|
|
||||||
1) Run make run from inside the repository directory.
|
|
||||||
2) Specify the client and port for the MIDI device you want to use to control soundThing.
|
|
||||||
3) You should now be able to play back notes by sending soundThing MIDI data. Use the up and down arrows to change waveforms.
|
|
||||||
@@ -72,6 +72,7 @@ typedef struct {
|
|||||||
char patchCurrentDir[256];
|
char patchCurrentDir[256];
|
||||||
char patchSubDirs[PATCH_MAX_DIRS][PATCH_NAME_LEN];
|
char patchSubDirs[PATCH_MAX_DIRS][PATCH_NAME_LEN];
|
||||||
int patchSubDirCount;
|
int patchSubDirCount;
|
||||||
|
int patchVCursor;
|
||||||
|
|
||||||
// Control registry — built lazily by uiKnob/uiSlider for CC mapping persistence
|
// Control registry — built lazily by uiKnob/uiSlider for CC mapping persistence
|
||||||
UIControlEntry controlRegistry[128];
|
UIControlEntry controlRegistry[128];
|
||||||
|
|||||||
29
makefile
29
makefile
@@ -1,7 +1,9 @@
|
|||||||
# Recursive Directory Digesting Makefile V1.0
|
# Recursive Directory Digesting Makefile V1.0
|
||||||
# === Project Settings ===
|
# === Project Settings ===
|
||||||
PROJECT := soundThing # Change this to your project name
|
# Change PROJECT and VERSION here — VERSION flows into the about screen and archive names.
|
||||||
CFLAGS := -Wall -Wextra -std=c11 -O2
|
PROJECT := soundThing
|
||||||
|
VERSION := 0.9.8-RC
|
||||||
|
CFLAGS := -Wall -Wextra -std=c11 -O2 -DAPP_VERSION=\"$(VERSION)\"
|
||||||
# Preprocessor flags (deps only here)
|
# Preprocessor flags (deps only here)
|
||||||
CPPFLAGS := -MMD -MP
|
CPPFLAGS := -MMD -MP
|
||||||
|
|
||||||
@@ -34,6 +36,16 @@ else
|
|||||||
WIN_RES :=
|
WIN_RES :=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# === Distribution ===
|
||||||
|
DIST_NAME := SoundThing-$(PLATFORM)-v$(VERSION)
|
||||||
|
ifeq ($(PLATFORM),windows)
|
||||||
|
ARCHIVE_CMD = zip -r "$(DIST_NAME).zip" "$(DIST_NAME)"
|
||||||
|
ARCHIVE_EXT = zip
|
||||||
|
else
|
||||||
|
ARCHIVE_CMD = tar czf "$(DIST_NAME).tar.gz" "$(DIST_NAME)"
|
||||||
|
ARCHIVE_EXT = tar.gz
|
||||||
|
endif
|
||||||
|
|
||||||
# === Directory Structure ===
|
# === Directory Structure ===
|
||||||
SRC_DIR := source
|
SRC_DIR := source
|
||||||
OBJ_DIR := build
|
OBJ_DIR := build
|
||||||
@@ -58,7 +70,7 @@ FONT_DATA := $(SRC_DIR)/font_data.c
|
|||||||
ICON_DATA := $(SRC_DIR)/icon_data.c
|
ICON_DATA := $(SRC_DIR)/icon_data.c
|
||||||
|
|
||||||
# === Rules ===
|
# === Rules ===
|
||||||
.PHONY: all clean run dirs
|
.PHONY: all clean run dirs dist
|
||||||
|
|
||||||
all: dirs $(SPRITES_DATA) $(FONT_DATA) $(ICON_DATA) $(BIN)
|
all: dirs $(SPRITES_DATA) $(FONT_DATA) $(ICON_DATA) $(BIN)
|
||||||
|
|
||||||
@@ -86,6 +98,17 @@ clean:
|
|||||||
@rm -rf $(OBJ_DIR) $(BIN)
|
@rm -rf $(OBJ_DIR) $(BIN)
|
||||||
@echo "Clean complete."
|
@echo "Clean complete."
|
||||||
|
|
||||||
|
# Package a release archive: make dist / make dist PLATFORM=windows
|
||||||
|
dist: all
|
||||||
|
rm -rf "$(DIST_NAME)"
|
||||||
|
mkdir -p "$(DIST_NAME)"
|
||||||
|
cp "$(BIN)" "$(DIST_NAME)/"
|
||||||
|
cp -r patches "$(DIST_NAME)/"
|
||||||
|
rm -f "$(DIST_NAME)/patches/favorites.txt"
|
||||||
|
$(ARCHIVE_CMD)
|
||||||
|
rm -rf "$(DIST_NAME)"
|
||||||
|
@echo "Packaged -> $(DIST_NAME).$(ARCHIVE_EXT)"
|
||||||
|
|
||||||
# Include auto-generated dependency files (if present)
|
# Include auto-generated dependency files (if present)
|
||||||
-include $(DEP)
|
-include $(DEP)
|
||||||
|
|
||||||
|
|||||||
50
patches/Bass/FretlessBass.json
Normal file
50
patches/Bass/FretlessBass.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 2,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 50.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -5.000000,
|
||||||
|
"osc1_gain": 2.493054,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": -1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.008000,
|
||||||
|
"ampEnv_decay": 0.200000,
|
||||||
|
"ampEnv_sustain": 0.650000,
|
||||||
|
"ampEnv_release": 0.180000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.150000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.060000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 600.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.790000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Bass/FunkBass.json
Normal file
50
patches/Bass/FunkBass.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 2,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.500000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 2.015748,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 2,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.200000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.200000,
|
||||||
|
"ampEnv_sustain": 0.300000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.030000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.010000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 600.000000,
|
||||||
|
"filter_resonance": 0.200000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 2500.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.800000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Bass/PickBass.json
Normal file
50
patches/Bass/PickBass.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 3.000000,
|
||||||
|
"osc1_gain": 2.488189,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.250000,
|
||||||
|
"ampEnv_sustain": 0.350000,
|
||||||
|
"ampEnv_release": 0.120000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.060000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2000.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 3000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.790000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Bass/RubberBass.json
Normal file
50
patches/Bass/RubberBass.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 2.330709,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": -2,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.005000,
|
||||||
|
"ampEnv_decay": 0.300000,
|
||||||
|
"ampEnv_sustain": 0.500000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 350.000000,
|
||||||
|
"filter_resonance": 0.120000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.800000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Bass/SlapBass.json
Normal file
50
patches/Bass/SlapBass.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 2,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 100.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 1.511811,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 2,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.350000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.300000,
|
||||||
|
"ampEnv_sustain": 0.200000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.035000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.010000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 800.000000,
|
||||||
|
"filter_resonance": 0.150000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 2000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.800000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Bass/SubBass.json
Normal file
50
patches/Bass/SubBass.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -2,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 2.015748,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": -1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.010000,
|
||||||
|
"ampEnv_decay": 0.500000,
|
||||||
|
"ampEnv_sustain": 0.400000,
|
||||||
|
"ampEnv_release": 0.200000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 120.000000,
|
||||||
|
"filter_resonance": 0.040000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.850000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Bass/SynthBass1.json
Normal file
50
patches/Bass/SynthBass1.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 2.677165,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": -2,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.002000,
|
||||||
|
"ampEnv_decay": 0.150000,
|
||||||
|
"ampEnv_sustain": 0.600000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.200000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.050000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 500.000000,
|
||||||
|
"filter_resonance": 0.300000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 2500.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Brass/BrassSection.json
Normal file
50
patches/Brass/BrassSection.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 12.000000,
|
||||||
|
"osc1_gain": 2.960630,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.045000,
|
||||||
|
"ampEnv_decay": 0.200000,
|
||||||
|
"ampEnv_sustain": 0.800000,
|
||||||
|
"ampEnv_release": 0.180000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1800.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.760000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Brass/FrenchHorn.json
Normal file
50
patches/Brass/FrenchHorn.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 3.000000,
|
||||||
|
"osc1_gain": 3.874016,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.060000,
|
||||||
|
"ampEnv_decay": 0.200000,
|
||||||
|
"ampEnv_sustain": 0.750000,
|
||||||
|
"ampEnv_release": 0.200000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 700.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.740000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Brass/MutedTrumpet.json
Normal file
50
patches/Brass/MutedTrumpet.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 4,
|
||||||
|
"osc0_dutyCycle": 0.300000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.600000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 8.000000,
|
||||||
|
"osc1_gain": 0.250000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.015000,
|
||||||
|
"ampEnv_decay": 0.100000,
|
||||||
|
"ampEnv_sustain": 0.750000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1800.000000,
|
||||||
|
"filter_resonance": 0.400000,
|
||||||
|
"filter_type": 2,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.720000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Brass/SynthBrass.json
Normal file
50
patches/Brass/SynthBrass.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -10.000000,
|
||||||
|
"osc1_gain": 3.874016,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.030000,
|
||||||
|
"ampEnv_decay": 0.200000,
|
||||||
|
"ampEnv_sustain": 0.700000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.300000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.100000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1500.000000,
|
||||||
|
"filter_resonance": 0.200000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 4000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.750000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Brass/Trombone.json
Normal file
50
patches/Brass/Trombone.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -7.000000,
|
||||||
|
"osc1_gain": 1.259843,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.040000,
|
||||||
|
"ampEnv_decay": 0.150000,
|
||||||
|
"ampEnv_sustain": 0.800000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.200000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.080000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 800.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 2000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.760000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Brass/Trumpet.json
Normal file
50
patches/Brass/Trumpet.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 5.000000,
|
||||||
|
"osc1_gain": 1.322835,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.025000,
|
||||||
|
"ampEnv_decay": 0.100000,
|
||||||
|
"ampEnv_sustain": 0.850000,
|
||||||
|
"ampEnv_release": 0.120000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.150000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.050000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1200.000000,
|
||||||
|
"filter_resonance": 0.100000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 3000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Brass/Tuba.json
Normal file
50
patches/Brass/Tuba.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -2,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 5.000000,
|
||||||
|
"osc1_gain": 2.708661,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": -1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.070000,
|
||||||
|
"ampEnv_decay": 0.200000,
|
||||||
|
"ampEnv_sustain": 0.750000,
|
||||||
|
"ampEnv_release": 0.200000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 400.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Classic/WobbleBass.json
Normal file
50
patches/Classic/WobbleBass.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.750000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 8.000000,
|
||||||
|
"osc1_gain": 0.650000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": -1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.002000,
|
||||||
|
"ampEnv_decay": 0.150000,
|
||||||
|
"ampEnv_sustain": 0.850000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 4.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 300.000000,
|
||||||
|
"filter_resonance": 0.650000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 3,
|
||||||
|
"filter_modDepth": 4000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.750000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Drums/Clap.json
Normal file
50
patches/Drums/Clap.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 5,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.000000,
|
||||||
|
"osc1_active": 0,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.004000,
|
||||||
|
"ampEnv_decay": 0.095000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.050000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1000.000000,
|
||||||
|
"filter_resonance": 0.220000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.750000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Drums/Cowbell.json
Normal file
50
patches/Drums/Cowbell.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 70.000000,
|
||||||
|
"osc1_gain": 4.000000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.300000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.056840,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 580.000000,
|
||||||
|
"filter_resonance": 0.220000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.640000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Drums/HiHatClosed.json
Normal file
50
patches/Drums/HiHatClosed.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 5,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.600000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.000000,
|
||||||
|
"osc1_active": 0,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.035000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.012000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 4000.000000,
|
||||||
|
"filter_resonance": 0.100000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.650000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Drums/HiHatOpen.json
Normal file
50
patches/Drums/HiHatOpen.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 5,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.550000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.000000,
|
||||||
|
"osc1_active": 0,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.260000,
|
||||||
|
"ampEnv_sustain": 0.060000,
|
||||||
|
"ampEnv_release": 0.160000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 3800.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.620000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Drums/Kick808.json
Normal file
50
patches/Drums/Kick808.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 2,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 650.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 2.291766,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.380000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.060000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.075000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.010000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 240.000000,
|
||||||
|
"filter_resonance": 0.040000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.850000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Drums/Rimshot.json
Normal file
50
patches/Drums/Rimshot.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.380000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 2,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 220.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.480000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.048000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.014000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.022000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.008000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1400.000000,
|
||||||
|
"filter_resonance": 0.160000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.720000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Drums/Snare.json
Normal file
50
patches/Drums/Snare.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.380000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 2,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 250.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.520000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.150000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.050000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.050000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.010000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 300.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Drums/Tom.json
Normal file
50
patches/Drums/Tom.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.750000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 2,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 380.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.080000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.220000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.060000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.085000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.015000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 500.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.750000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Leads/CaliopeLead.json
Normal file
50
patches/Leads/CaliopeLead.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 3,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 10.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 5.000000,
|
||||||
|
"osc1_gain": 2.110236,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.020000,
|
||||||
|
"ampEnv_decay": 0.100000,
|
||||||
|
"ampEnv_sustain": 0.750000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 5.500000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 3500.000000,
|
||||||
|
"filter_resonance": 0.050000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.790000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Leads/DistortedLead.json
Normal file
50
patches/Leads/DistortedLead.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 15.000000,
|
||||||
|
"osc1_gain": 3.149606,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.003000,
|
||||||
|
"ampEnv_decay": 0.150000,
|
||||||
|
"ampEnv_sustain": 0.800000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1200.000000,
|
||||||
|
"filter_resonance": 0.600000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Leads/MoogLead.json
Normal file
50
patches/Leads/MoogLead.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 2.488189,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": -1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.003000,
|
||||||
|
"ampEnv_decay": 0.200000,
|
||||||
|
"ampEnv_sustain": 0.700000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.350000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.100000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 400.000000,
|
||||||
|
"filter_resonance": 0.500000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 6000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Leads/PluckLead.json
Normal file
50
patches/Leads/PluckLead.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 4,
|
||||||
|
"osc1_dutyCycle": 0.300000,
|
||||||
|
"osc1_detune": 5.000000,
|
||||||
|
"osc1_gain": 2.299213,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.200000,
|
||||||
|
"ampEnv_sustain": 0.100000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.030000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2000.000000,
|
||||||
|
"filter_resonance": 0.200000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 4000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.790000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Leads/SawLead.json
Normal file
50
patches/Leads/SawLead.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 3.779528,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.003000,
|
||||||
|
"ampEnv_decay": 0.100000,
|
||||||
|
"ampEnv_sustain": 0.800000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.200000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.060000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 3000.000000,
|
||||||
|
"filter_resonance": 0.150000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 2,
|
||||||
|
"filter_modDepth": 5000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Leads/SquareLead.json
Normal file
50
patches/Leads/SquareLead.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 4,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 4,
|
||||||
|
"osc1_dutyCycle": 0.450000,
|
||||||
|
"osc1_detune": -7.000000,
|
||||||
|
"osc1_gain": 2.834646,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.002000,
|
||||||
|
"ampEnv_decay": 0.100000,
|
||||||
|
"ampEnv_sustain": 0.800000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2500.000000,
|
||||||
|
"filter_resonance": 0.100000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Leads/WhistleLead.json
Normal file
50
patches/Leads/WhistleLead.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 3,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 15.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 8.000000,
|
||||||
|
"osc1_gain": 3.086614,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.010000,
|
||||||
|
"ampEnv_decay": 0.100000,
|
||||||
|
"ampEnv_sustain": 0.800000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 6.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 500.000000,
|
||||||
|
"filter_resonance": 0.050000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Mallets/Celesta.json
Normal file
50
patches/Mallets/Celesta.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.500000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.160000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 2,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.900000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 4000.000000,
|
||||||
|
"filter_resonance": 0.040000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.680000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Mallets/Glockenspiel.json
Normal file
50
patches/Mallets/Glockenspiel.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.550000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 25.000000,
|
||||||
|
"osc1_gain": 0.320000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 2,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 1.800000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.300000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1000.000000,
|
||||||
|
"filter_resonance": 0.040000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 0,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.680000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Mallets/Marimba.json
Normal file
50
patches/Mallets/Marimba.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.700000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -8.000000,
|
||||||
|
"osc1_gain": 0.220000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 2,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 2,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.450000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 1.000000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.018000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.006000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1500.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.750000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Mallets/MusicBox.json
Normal file
50
patches/Mallets/MusicBox.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.500000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 10.000000,
|
||||||
|
"osc1_gain": 0.180000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 2,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.700000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1000.000000,
|
||||||
|
"filter_resonance": 0.040000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 0,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.650000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Mallets/SteelDrum.json
Normal file
50
patches/Mallets/SteelDrum.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.550000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -30.000000,
|
||||||
|
"osc1_gain": 0.320000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 2,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.320000,
|
||||||
|
"ampEnv_attack": 0.002000,
|
||||||
|
"ampEnv_decay": 0.650000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.030000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.010000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 150.000000,
|
||||||
|
"filter_resonance": 0.100000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.720000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Mallets/TubularBells.json
Normal file
50
patches/Mallets/TubularBells.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.600000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 2,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.320000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -20.000000,
|
||||||
|
"osc1_gain": 0.300000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.005000,
|
||||||
|
"ampEnv_decay": 2.200000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.500000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.055000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 80.000000,
|
||||||
|
"filter_resonance": 0.040000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.700000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Mallets/Vibraphone.json
Normal file
50
patches/Mallets/Vibraphone.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.650000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 3,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.180000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 12.000000,
|
||||||
|
"osc1_gain": 0.180000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.002000,
|
||||||
|
"ampEnv_decay": 1.400000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.200000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 6.500000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1000.000000,
|
||||||
|
"filter_resonance": 0.040000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 0,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.700000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Mallets/Xylophone.json
Normal file
50
patches/Mallets/Xylophone.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.600000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 15.000000,
|
||||||
|
"osc1_gain": 0.280000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 2,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.380000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.500000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.070000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.012000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.004000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 3500.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.750000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Pads/ChoirPad.json
Normal file
50
patches/Pads/ChoirPad.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 3,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 12.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 10.000000,
|
||||||
|
"osc1_gain": 3.763191,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.700000,
|
||||||
|
"ampEnv_decay": 0.300000,
|
||||||
|
"ampEnv_sustain": 0.700000,
|
||||||
|
"ampEnv_release": 0.500000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 0.350000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1200.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Pads/CrystalPad.json
Normal file
50
patches/Pads/CrystalPad.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.550000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 3,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 8.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 15.000000,
|
||||||
|
"osc1_gain": 0.350000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 2,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.400000,
|
||||||
|
"ampEnv_decay": 0.500000,
|
||||||
|
"ampEnv_sustain": 0.500000,
|
||||||
|
"ampEnv_release": 0.800000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 0.300000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 300.000000,
|
||||||
|
"filter_resonance": 0.050000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Pads/DarkPad.json
Normal file
50
patches/Pads/DarkPad.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": -1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 3,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.150000,
|
||||||
|
"osc1_waveform": 3,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -12.000000,
|
||||||
|
"osc1_gain": 3.631121,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 1.000000,
|
||||||
|
"ampEnv_decay": 0.300000,
|
||||||
|
"ampEnv_sustain": 0.700000,
|
||||||
|
"ampEnv_release": 1.200000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 0.120000,
|
||||||
|
"lfo0_waveform": 2,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 500.000000,
|
||||||
|
"filter_resonance": 0.150000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 3,
|
||||||
|
"filter_modDepth": 800.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Pads/MetallicPad.json
Normal file
50
patches/Pads/MetallicPad.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 50.000000,
|
||||||
|
"osc1_gain": 3.256185,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.500000,
|
||||||
|
"ampEnv_decay": 0.400000,
|
||||||
|
"ampEnv_sustain": 0.600000,
|
||||||
|
"ampEnv_release": 0.800000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 0.250000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 400.000000,
|
||||||
|
"filter_resonance": 0.200000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 3,
|
||||||
|
"filter_modDepth": 2000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Pads/PolyPad.json
Normal file
50
patches/Pads/PolyPad.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 3,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 5.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 8.000000,
|
||||||
|
"osc1_gain": 3.388255,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.600000,
|
||||||
|
"ampEnv_decay": 0.300000,
|
||||||
|
"ampEnv_sustain": 0.800000,
|
||||||
|
"ampEnv_release": 0.800000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 0.400000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2000.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Pads/StringPad.json
Normal file
50
patches/Pads/StringPad.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 3,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 8.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 10.000000,
|
||||||
|
"osc1_gain": 3.895770,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.350000,
|
||||||
|
"ampEnv_decay": 0.200000,
|
||||||
|
"ampEnv_sustain": 0.800000,
|
||||||
|
"ampEnv_release": 0.600000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 0.500000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2500.000000,
|
||||||
|
"filter_resonance": 0.050000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Pads/SweepPad.json
Normal file
50
patches/Pads/SweepPad.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -7.000000,
|
||||||
|
"osc1_gain": 4.000000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.800000,
|
||||||
|
"ampEnv_decay": 0.300000,
|
||||||
|
"ampEnv_sustain": 0.700000,
|
||||||
|
"ampEnv_release": 1.000000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 0.150000,
|
||||||
|
"lfo0_waveform": 1,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2917.100098,
|
||||||
|
"filter_resonance": 0.150000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 3,
|
||||||
|
"filter_modDepth": 2000.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Plucked/AcousticGuitar.json
Normal file
50
patches/Plucked/AcousticGuitar.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 2,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.350000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.252424,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": -1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 2,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.250000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.800000,
|
||||||
|
"ampEnv_sustain": 0.050000,
|
||||||
|
"ampEnv_release": 1.000000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.025000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.008000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 3000.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Plucked/ElectricGuitar.json
Normal file
50
patches/Plucked/ElectricGuitar.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 2,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.300000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 3.000000,
|
||||||
|
"osc1_gain": 2.029922,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.600000,
|
||||||
|
"ampEnv_sustain": 0.100000,
|
||||||
|
"ampEnv_release": 1.000000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.020000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.008000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 4000.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Plucked/Harp.json
Normal file
50
patches/Plucked/Harp.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 2,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 30.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 1.923622,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 1.200000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.200000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.200000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.060000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 4000.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Plucked/Lute.json
Normal file
50
patches/Plucked/Lute.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -10.000000,
|
||||||
|
"osc1_gain": 3.014202,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.600000,
|
||||||
|
"ampEnv_sustain": 0.020000,
|
||||||
|
"ampEnv_release": 0.150000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2000.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Plucked/Mandolin.json
Normal file
50
patches/Plucked/Mandolin.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 6.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -6.000000,
|
||||||
|
"osc1_gain": 2.351905,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.500000,
|
||||||
|
"ampEnv_sustain": 0.050000,
|
||||||
|
"ampEnv_release": 0.120000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 3500.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Plucked/NylonGuitar.json
Normal file
50
patches/Plucked/NylonGuitar.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 5.000000,
|
||||||
|
"osc1_gain": 2.452789,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.002000,
|
||||||
|
"ampEnv_decay": 0.700000,
|
||||||
|
"ampEnv_sustain": 0.030000,
|
||||||
|
"ampEnv_release": 0.180000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 1800.000000,
|
||||||
|
"filter_resonance": 0.050000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/Plucked/PizzicatoStrings.json
Normal file
50
patches/Plucked/PizzicatoStrings.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 8.000000,
|
||||||
|
"osc1_gain": 2.328470,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.350000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.080000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2000.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.780000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/World/Bagpipe.json
Normal file
50
patches/World/Bagpipe.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 4,
|
||||||
|
"osc0_dutyCycle": 0.300000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 3.579050,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": -1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.080000,
|
||||||
|
"ampEnv_decay": 0.100000,
|
||||||
|
"ampEnv_sustain": 0.900000,
|
||||||
|
"ampEnv_release": 1.000000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 250.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.700000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/World/Dulcimer.json
Normal file
50
patches/World/Dulcimer.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -15.000000,
|
||||||
|
"osc1_gain": 3.591475,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 1,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.700000,
|
||||||
|
"ampEnv_sustain": 0.050000,
|
||||||
|
"ampEnv_release": 1.000000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2500.000000,
|
||||||
|
"filter_resonance": 0.060000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.720000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/World/Kalimba.json
Normal file
50
patches/World/Kalimba.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 0,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 1,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 0,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 8.000000,
|
||||||
|
"osc1_gain": 3.423103,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 2,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.600000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 3000.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.700000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
@@ -1,50 +1,50 @@
|
|||||||
{
|
{
|
||||||
"osc0_waveform": 0,
|
"osc0_waveform": 1,
|
||||||
"osc0_dutyCycle": 0.500000,
|
"osc0_dutyCycle": 0.500000,
|
||||||
"osc0_detune": 0.000000,
|
"osc0_detune": 0.000000,
|
||||||
"osc0_gain": 4.000000,
|
"osc0_gain": 4.000000,
|
||||||
"osc0_active": 1,
|
"osc0_active": 1,
|
||||||
"osc0_octave": 0,
|
"osc0_octave": 0,
|
||||||
"osc0_modRouting0": 0,
|
"osc0_modRouting0": 0,
|
||||||
"osc0_modRouting1": 3,
|
"osc0_modRouting1": 2,
|
||||||
"osc0_modRouting2": 0,
|
"osc0_modRouting2": 0,
|
||||||
"osc0_modDepth0": 0.000000,
|
"osc0_modDepth0": 0.000000,
|
||||||
"osc0_modDepth1": 10.000000,
|
"osc0_modDepth1": 60.000000,
|
||||||
"osc0_modDepth2": 0.000000,
|
"osc0_modDepth2": 0.000000,
|
||||||
"osc1_waveform": 0,
|
"osc1_waveform": 0,
|
||||||
"osc1_dutyCycle": 0.500000,
|
"osc1_dutyCycle": 0.500000,
|
||||||
"osc1_detune": 2.000000,
|
"osc1_detune": 0.000000,
|
||||||
"osc1_gain": 0.300000,
|
"osc1_gain": 3.781827,
|
||||||
"osc1_active": 1,
|
"osc1_active": 1,
|
||||||
"osc1_octave": 1,
|
"osc1_octave": 1,
|
||||||
"osc1_modRouting0": 0,
|
"osc1_modRouting0": 0,
|
||||||
"osc1_modRouting1": 0,
|
"osc1_modRouting1": 0,
|
||||||
"osc1_modRouting2": 2,
|
"osc1_modRouting2": 0,
|
||||||
"osc1_modDepth0": 0.000000,
|
"osc1_modDepth0": 0.000000,
|
||||||
"osc1_modDepth1": 0.000000,
|
"osc1_modDepth1": 0.000000,
|
||||||
"osc1_modDepth2": 1.500000,
|
"osc1_modDepth2": 0.000000,
|
||||||
"ampEnv_attack": 0.001000,
|
"ampEnv_attack": 0.001000,
|
||||||
"ampEnv_decay": 2.000000,
|
"ampEnv_decay": 0.900000,
|
||||||
"ampEnv_sustain": 0.000000,
|
"ampEnv_sustain": 0.000000,
|
||||||
"ampEnv_release": 0.600000,
|
"ampEnv_release": 0.150000,
|
||||||
"modEnv_attack": 0.001000,
|
"modEnv_attack": 0.001000,
|
||||||
"modEnv_decay": 0.080000,
|
"modEnv_decay": 0.080000,
|
||||||
"modEnv_sustain": 0.000000,
|
"modEnv_sustain": 0.000000,
|
||||||
"modEnv_release": 0.040000,
|
"modEnv_release": 0.020000,
|
||||||
"lfo0_rate": 4.500000,
|
"lfo0_rate": 1.000000,
|
||||||
"lfo0_waveform": 0,
|
"lfo0_waveform": 0,
|
||||||
"lfo0_active": 1,
|
"lfo0_active": 0,
|
||||||
"lfo1_rate": 1.000000,
|
"lfo1_rate": 1.000000,
|
||||||
"lfo1_waveform": 0,
|
"lfo1_waveform": 0,
|
||||||
"lfo1_active": 0,
|
"lfo1_active": 0,
|
||||||
"filter_cutoff": 10000.000000,
|
"filter_cutoff": 2000.000000,
|
||||||
"filter_resonance": 0.100000,
|
"filter_resonance": 0.120000,
|
||||||
"filter_type": 0,
|
"filter_type": 0,
|
||||||
"filter_active": 1,
|
"filter_active": 1,
|
||||||
"filter_modRouting": 0,
|
"filter_modRouting": 0,
|
||||||
"filter_modDepth": 0.000000,
|
"filter_modDepth": 0.000000,
|
||||||
"filter_resModRouting": 0,
|
"filter_resModRouting": 0,
|
||||||
"filter_resModDepth": 0.000000,
|
"filter_resModDepth": 0.000000,
|
||||||
"master_volume": 0.800000,
|
"master_volume": 0.720000,
|
||||||
"master_pitchBendRange": 2.000000
|
"master_pitchBendRange": 2.000000
|
||||||
}
|
}
|
||||||
50
patches/World/Shakuhachi.json
Normal file
50
patches/World/Shakuhachi.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 1,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 3,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 18.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.316301,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.060000,
|
||||||
|
"ampEnv_decay": 0.100000,
|
||||||
|
"ampEnv_sustain": 0.700000,
|
||||||
|
"ampEnv_release": 0.200000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.020000,
|
||||||
|
"lfo0_rate": 5.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 1,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 200.000000,
|
||||||
|
"filter_resonance": 0.050000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.720000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/World/Shamisen.json
Normal file
50
patches/World/Shamisen.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 0,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 0.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 5,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 0.000000,
|
||||||
|
"osc1_gain": 0.909873,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 2,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.220000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 0.600000,
|
||||||
|
"ampEnv_sustain": 0.000000,
|
||||||
|
"ampEnv_release": 0.100000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.040000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.015000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 200.000000,
|
||||||
|
"filter_resonance": 0.150000,
|
||||||
|
"filter_type": 1,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.720000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/World/Sitar.json
Normal file
50
patches/World/Sitar.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 0.600000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 2,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 80.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 1,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": 20.000000,
|
||||||
|
"osc1_gain": 0.200000,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.001000,
|
||||||
|
"ampEnv_decay": 1.200000,
|
||||||
|
"ampEnv_sustain": 0.050000,
|
||||||
|
"ampEnv_release": 0.300000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.100000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.050000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2000.000000,
|
||||||
|
"filter_resonance": 0.200000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.720000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
50
patches/World/SteelGuitar.json
Normal file
50
patches/World/SteelGuitar.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"osc0_waveform": 2,
|
||||||
|
"osc0_dutyCycle": 0.500000,
|
||||||
|
"osc0_detune": 0.000000,
|
||||||
|
"osc0_gain": 4.000000,
|
||||||
|
"osc0_active": 1,
|
||||||
|
"osc0_octave": 0,
|
||||||
|
"osc0_modRouting0": 0,
|
||||||
|
"osc0_modRouting1": 2,
|
||||||
|
"osc0_modRouting2": 0,
|
||||||
|
"osc0_modDepth0": 0.000000,
|
||||||
|
"osc0_modDepth1": 120.000000,
|
||||||
|
"osc0_modDepth2": 0.000000,
|
||||||
|
"osc1_waveform": 2,
|
||||||
|
"osc1_dutyCycle": 0.500000,
|
||||||
|
"osc1_detune": -6.000000,
|
||||||
|
"osc1_gain": 3.334732,
|
||||||
|
"osc1_active": 1,
|
||||||
|
"osc1_octave": 0,
|
||||||
|
"osc1_modRouting0": 0,
|
||||||
|
"osc1_modRouting1": 0,
|
||||||
|
"osc1_modRouting2": 0,
|
||||||
|
"osc1_modDepth0": 0.000000,
|
||||||
|
"osc1_modDepth1": 0.000000,
|
||||||
|
"osc1_modDepth2": 0.000000,
|
||||||
|
"ampEnv_attack": 0.003000,
|
||||||
|
"ampEnv_decay": 0.800000,
|
||||||
|
"ampEnv_sustain": 0.100000,
|
||||||
|
"ampEnv_release": 0.200000,
|
||||||
|
"modEnv_attack": 0.001000,
|
||||||
|
"modEnv_decay": 0.120000,
|
||||||
|
"modEnv_sustain": 0.000000,
|
||||||
|
"modEnv_release": 0.040000,
|
||||||
|
"lfo0_rate": 1.000000,
|
||||||
|
"lfo0_waveform": 0,
|
||||||
|
"lfo0_active": 0,
|
||||||
|
"lfo1_rate": 1.000000,
|
||||||
|
"lfo1_waveform": 0,
|
||||||
|
"lfo1_active": 0,
|
||||||
|
"filter_cutoff": 2500.000000,
|
||||||
|
"filter_resonance": 0.080000,
|
||||||
|
"filter_type": 0,
|
||||||
|
"filter_active": 1,
|
||||||
|
"filter_modRouting": 0,
|
||||||
|
"filter_modDepth": 0.000000,
|
||||||
|
"filter_resModRouting": 0,
|
||||||
|
"filter_resModDepth": 0.000000,
|
||||||
|
"master_volume": 0.720000,
|
||||||
|
"master_pitchBendRange": 2.000000
|
||||||
|
}
|
||||||
102
source/ui.c
102
source/ui.c
@@ -137,6 +137,7 @@ void uiInit(UIState *ui, MidiState *midi, Camera2D *camera)
|
|||||||
ui->patchFavCount = patchLoadFavs(ui->patchFavs, PATCH_MAX_FILES);
|
ui->patchFavCount = patchLoadFavs(ui->patchFavs, PATCH_MAX_FILES);
|
||||||
ui->patchCurrentDir[0] = '\0';
|
ui->patchCurrentDir[0] = '\0';
|
||||||
ui->patchSubDirCount = 0;
|
ui->patchSubDirCount = 0;
|
||||||
|
ui->patchVCursor = -1;
|
||||||
ui->controlRegistryCount = 0;
|
ui->controlRegistryCount = 0;
|
||||||
ui->pendingCount = 0;
|
ui->pendingCount = 0;
|
||||||
}
|
}
|
||||||
@@ -827,6 +828,7 @@ static void patchRescan(UIState *ui)
|
|||||||
ui->patchFiles, PATCH_MAX_FILES,
|
ui->patchFiles, PATCH_MAX_FILES,
|
||||||
ui->patchSubDirs, PATCH_MAX_DIRS, &ui->patchSubDirCount);
|
ui->patchSubDirs, PATCH_MAX_DIRS, &ui->patchSubDirCount);
|
||||||
ui->patchScrollOffset = 0;
|
ui->patchScrollOffset = 0;
|
||||||
|
ui->patchVCursor = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void uiPatchMenu(UIState *ui, float x, float y, float width, Synth *s)
|
void uiPatchMenu(UIState *ui, float x, float y, float width, Synth *s)
|
||||||
@@ -1042,32 +1044,69 @@ void uiPatchMenu(UIState *ui, float x, float y, float width, Synth *s)
|
|||||||
ui->patchScrollOffset -= (int)GetMouseWheelMove();
|
ui->patchScrollOffset -= (int)GetMouseWheelMove();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Arrow key navigation: move selection through patches only
|
// Arrow key navigation over all virtual rows: [..], subdirs, patches
|
||||||
if (ui->focusedTextInput == -1 && !ui->patchConfirmOverwrite && !ui->patchConfirmClear
|
if (ui->focusedTextInput == -1 && !ui->patchConfirmOverwrite && !ui->patchConfirmClear
|
||||||
&& filteredCount > 0) {
|
&& totalVirtual > 0) {
|
||||||
int curFi = -1;
|
// Sync cursor from currently loaded patch if unset
|
||||||
for (int fi = 0; fi < filteredCount; fi++) {
|
if (ui->patchVCursor < 0 && ui->patchCurrentName[0]) {
|
||||||
if (strcmp(ui->patchFiles[filteredIdx[fi]], ui->patchCurrentName) == 0) {
|
for (int fi = 0; fi < filteredCount; fi++) {
|
||||||
curFi = fi;
|
if (strcmp(ui->patchFiles[filteredIdx[fi]], ui->patchCurrentName) == 0) {
|
||||||
break;
|
ui->patchVCursor = fi + backRows + ui->patchSubDirCount;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
int nextFi = curFi;
|
int next = ui->patchVCursor;
|
||||||
if (IsKeyPressed(KEY_DOWN) && curFi < filteredCount - 1) nextFi = curFi + 1;
|
if (IsKeyPressed(KEY_DOWN))
|
||||||
if (IsKeyPressed(KEY_UP) && curFi > 0) nextFi = curFi - 1;
|
next = (next < 0) ? 0 : (next < totalVirtual - 1 ? next + 1 : next);
|
||||||
if (nextFi != curFi) {
|
if (IsKeyPressed(KEY_UP))
|
||||||
int i = filteredIdx[nextFi];
|
next = (next < 0) ? totalVirtual - 1 : (next > 0 ? next - 1 : next);
|
||||||
char path[512];
|
if (next != ui->patchVCursor) {
|
||||||
buildPatchPath(path, sizeof(path), ui->patchCurrentDir, ui->patchFiles[i]);
|
ui->patchVCursor = next;
|
||||||
if (patchLoad(s, path)) {
|
// Auto-load when landing on a patch row
|
||||||
snprintf(ui->patchCurrentName, PATCH_NAME_LEN, "%s", ui->patchFiles[i]);
|
if (next >= backRows + ui->patchSubDirCount && filteredCount > 0) {
|
||||||
snprintf(ui->patchSaveName, PATCH_NAME_LEN, "%s", ui->patchFiles[i]);
|
int fi = next - backRows - ui->patchSubDirCount;
|
||||||
|
int i = filteredIdx[fi];
|
||||||
|
char path[512];
|
||||||
|
buildPatchPath(path, sizeof(path), ui->patchCurrentDir, ui->patchFiles[i]);
|
||||||
|
if (patchLoad(s, path)) {
|
||||||
|
snprintf(ui->patchCurrentName, PATCH_NAME_LEN, "%s", ui->patchFiles[i]);
|
||||||
|
snprintf(ui->patchSaveName, PATCH_NAME_LEN, "%s", ui->patchFiles[i]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
int vRow = nextFi + backRows + ui->patchSubDirCount;
|
}
|
||||||
if (vRow < ui->patchScrollOffset)
|
// Enter activates navigation rows (.. and subdirs)
|
||||||
ui->patchScrollOffset = vRow;
|
if (IsKeyPressed(KEY_ENTER) && ui->patchVCursor >= 0) {
|
||||||
if (vRow >= ui->patchScrollOffset + MAX_VIS)
|
int vc = ui->patchVCursor;
|
||||||
ui->patchScrollOffset = vRow - MAX_VIS + 1;
|
if (!isRoot && vc == 0) {
|
||||||
|
char *lastSlash = strrchr(ui->patchCurrentDir, '/');
|
||||||
|
if (lastSlash) *lastSlash = '\0';
|
||||||
|
else ui->patchCurrentDir[0] = '\0';
|
||||||
|
ui->patchCurrentName[0] = '\0';
|
||||||
|
patchRescan(ui);
|
||||||
|
return;
|
||||||
|
} else if (vc >= backRows && vc < backRows + ui->patchSubDirCount) {
|
||||||
|
int d = vc - backRows;
|
||||||
|
if (ui->patchCurrentDir[0]) {
|
||||||
|
size_t curLen = strlen(ui->patchCurrentDir);
|
||||||
|
snprintf(ui->patchCurrentDir + curLen,
|
||||||
|
sizeof(ui->patchCurrentDir) - curLen,
|
||||||
|
"/%s", ui->patchSubDirs[d]);
|
||||||
|
} else {
|
||||||
|
snprintf(ui->patchCurrentDir, sizeof(ui->patchCurrentDir),
|
||||||
|
"%s", ui->patchSubDirs[d]);
|
||||||
|
}
|
||||||
|
ui->patchCurrentName[0] = '\0';
|
||||||
|
patchRescan(ui);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Scroll to keep cursor visible
|
||||||
|
if (ui->patchVCursor >= 0) {
|
||||||
|
if (ui->patchVCursor < ui->patchScrollOffset)
|
||||||
|
ui->patchScrollOffset = ui->patchVCursor;
|
||||||
|
if (ui->patchVCursor >= ui->patchScrollOffset + MAX_VIS)
|
||||||
|
ui->patchScrollOffset = ui->patchVCursor - MAX_VIS + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1099,10 +1138,10 @@ void uiPatchMenu(UIState *ui, float x, float y, float width, Synth *s)
|
|||||||
|
|
||||||
if (!isRoot && r == 0) {
|
if (!isRoot && r == 0) {
|
||||||
// ".." — navigate to parent
|
// ".." — navigate to parent
|
||||||
DrawRectangle((int)(x + padding), (int)contentY, (int)btnW, (int)(rowH - 2),
|
Color dotBg = (ui->patchVCursor == r) ? (Color){40, 60, 100, 255} : (Color){20, 30, 50, 255};
|
||||||
(Color){20, 30, 50, 255});
|
Color dotEdge = (ui->patchVCursor == r) ? SKYBLUE : (Color){80, 120, 180, 255};
|
||||||
DrawRectangleLines((int)(x + padding), (int)contentY, (int)btnW, (int)(rowH - 2),
|
DrawRectangle((int)(x + padding), (int)contentY, (int)btnW, (int)(rowH - 2), dotBg);
|
||||||
(Color){80, 120, 180, 255});
|
DrawRectangleLines((int)(x + padding), (int)contentY, (int)btnW, (int)(rowH - 2), dotEdge);
|
||||||
DRAW_TEXT("..", (int)(x + padding + 4), (int)(contentY + 2), fontSize, SKYBLUE);
|
DRAW_TEXT("..", (int)(x + padding + 4), (int)(contentY + 2), fontSize, SKYBLUE);
|
||||||
if (!ui->patchConfirmClear && IsMouseButtonPressed(MOUSE_LEFT_BUTTON) &&
|
if (!ui->patchConfirmClear && IsMouseButtonPressed(MOUSE_LEFT_BUTTON) &&
|
||||||
mouse.x >= x + padding && mouse.x <= x + padding + btnW &&
|
mouse.x >= x + padding && mouse.x <= x + padding + btnW &&
|
||||||
@@ -1119,10 +1158,10 @@ void uiPatchMenu(UIState *ui, float x, float y, float width, Synth *s)
|
|||||||
int d = r - backRows;
|
int d = r - backRows;
|
||||||
char label[PATCH_NAME_LEN + 4];
|
char label[PATCH_NAME_LEN + 4];
|
||||||
snprintf(label, sizeof(label), "> %s", ui->patchSubDirs[d]);
|
snprintf(label, sizeof(label), "> %s", ui->patchSubDirs[d]);
|
||||||
DrawRectangle((int)(x + padding), (int)contentY, (int)btnW, (int)(rowH - 2),
|
Color dirBg = (ui->patchVCursor == r) ? (Color){40, 60, 100, 255} : (Color){20, 30, 50, 255};
|
||||||
(Color){20, 30, 50, 255});
|
Color dirEdge = (ui->patchVCursor == r) ? SKYBLUE : (Color){80, 120, 180, 255};
|
||||||
DrawRectangleLines((int)(x + padding), (int)contentY, (int)btnW, (int)(rowH - 2),
|
DrawRectangle((int)(x + padding), (int)contentY, (int)btnW, (int)(rowH - 2), dirBg);
|
||||||
(Color){80, 120, 180, 255});
|
DrawRectangleLines((int)(x + padding), (int)contentY, (int)btnW, (int)(rowH - 2), dirEdge);
|
||||||
DRAW_TEXT(label, (int)(x + padding + 4), (int)(contentY + 2), fontSize, SKYBLUE);
|
DRAW_TEXT(label, (int)(x + padding + 4), (int)(contentY + 2), fontSize, SKYBLUE);
|
||||||
if (!ui->patchConfirmClear && IsMouseButtonPressed(MOUSE_LEFT_BUTTON) &&
|
if (!ui->patchConfirmClear && IsMouseButtonPressed(MOUSE_LEFT_BUTTON) &&
|
||||||
mouse.x >= x + padding && mouse.x <= x + padding + btnW &&
|
mouse.x >= x + padding && mouse.x <= x + padding + btnW &&
|
||||||
@@ -1190,6 +1229,7 @@ void uiPatchMenu(UIState *ui, float x, float y, float width, Synth *s)
|
|||||||
if (patchLoad(s, path)) {
|
if (patchLoad(s, path)) {
|
||||||
snprintf(ui->patchCurrentName, PATCH_NAME_LEN, "%s", ui->patchFiles[i]);
|
snprintf(ui->patchCurrentName, PATCH_NAME_LEN, "%s", ui->patchFiles[i]);
|
||||||
snprintf(ui->patchSaveName, PATCH_NAME_LEN, "%s", ui->patchFiles[i]);
|
snprintf(ui->patchSaveName, PATCH_NAME_LEN, "%s", ui->patchFiles[i]);
|
||||||
|
ui->patchVCursor = r;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1651,7 +1691,7 @@ void uiAboutMenu(UIState *ui, float x, float y, float width)
|
|||||||
|
|
||||||
/* Edit these strings to update the about screen. */
|
/* Edit these strings to update the about screen. */
|
||||||
static const char *lines[] = {
|
static const char *lines[] = {
|
||||||
"SoundThing v0.9.5",
|
"SoundThing v" APP_VERSION,
|
||||||
"",
|
"",
|
||||||
"Polyphonic subtractive synthesizer",
|
"Polyphonic subtractive synthesizer",
|
||||||
"Built with Raylib",
|
"Built with Raylib",
|
||||||
|
|||||||
Reference in New Issue
Block a user