@gorilla-engine-sdk/create-gorilla-engine-plugin 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +64 -0
- package/README.md +103 -0
- package/generator-gorilla-engine-plugin/app/index.js +338 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/SKILL.md +295 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/effects-filters.md +186 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/indexing.md +129 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/instrument-files.md +547 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/key-rules.md +81 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/modulation.md +210 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/module-control.md +217 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/module-reference-bus-effects.md +663 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/module-reference-core.md +145 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/module-reference-misc.md +59 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/module-reference-modulation.md +85 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/module-reference-voice-effects.md +407 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/note-events.md +278 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/properties.md +230 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/script-patterns.md +494 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-dsp/references/time-tempo.md +209 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/SKILL.md +104 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/advanced-controls.md +194 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/base-props.md +167 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/basic-controls.md +230 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/bindings.md +183 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/composite-components.md +258 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/containers.md +149 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/editors.md +191 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/event-handlers.md +150 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/getting-started.md +143 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/gorilla-engine-api.md +147 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/instrument-api.md +250 -0
- package/generator-gorilla-engine-plugin/app/templates/.agents/skills/gorilla-engine-ui/references/visualization.md +209 -0
- package/generator-gorilla-engine-plugin/app/templates/.prettierignore +13 -0
- package/generator-gorilla-engine-plugin/app/templates/.vscode/settings.json +14 -0
- package/generator-gorilla-engine-plugin/app/templates/.vscode_input/launch.json +89 -0
- package/generator-gorilla-engine-plugin/app/templates/README.md +36 -0
- package/generator-gorilla-engine-plugin/app/templates/assets/fonts/OFL.txt +93 -0
- package/generator-gorilla-engine-plugin/app/templates/assets/fonts/Roboto-Bold.otf +0 -0
- package/generator-gorilla-engine-plugin/app/templates/assets/fonts/Roboto-Medium.otf +0 -0
- package/generator-gorilla-engine-plugin/app/templates/assets/fonts/Roboto-Regular.otf +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/Presets/Factory/Category 1/Init.preset +1 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/Presets/Factory/Category 1/Three Quarters.preset +1 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/Horizontal Slider.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/Horizontal Slider@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/Rotary Bipolar.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/Rotary-Bipolar@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/Rotary.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/Rotary@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-down-default.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-down-default@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-down-hover.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-down-hover@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-down-pressed.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-down-pressed@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-up-default.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-up-default@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-up-hover.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-up-hover@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-up-pressed.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-up-pressed@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/toggle-default.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/toggle-default@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/toggle-pressed.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/toggle-pressed@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/instruments/Basic Synth Example_part1.blob +0 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/instruments/Basic Synth Example_part2.blob +1 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/instrument/Basic Synth Example.inst +157 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/instrument/Basic Synth Example.txt +184 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/src/app/Root.tsx +35 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/src/app/components/ErrorBoundary.tsx +138 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/src/app/components/UserInterface.tsx +338 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/src/app/pluginConfig.ts +4 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/src/dialogsCustomStyle.ts +98 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/src/index.tsx +217 -0
- package/generator-gorilla-engine-plugin/app/templates/basic-synth/src/presetBrowserCustomStyle.ts +124 -0
- package/generator-gorilla-engine-plugin/app/templates/build.ugep +173 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/assets/Presets/Factory/Category 1/01 - All The Way Down.preset +1 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/assets/Presets/Factory/Category 1/02 - About Half.preset +1 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/assets/Presets/Factory/Category 1/03 - Three Quarters.preset +1 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/assets/Presets/Factory/Category 1/04 - All The Way Up.preset +1 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/assets/images/Rotary.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/assets/images/Rotary@2x.png +0 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/assets/instruments/Reverb Example_part1.blob +0 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/assets/instruments/Reverb Example_part2.blob +1 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/instrument/Reverb Example.inst +73 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/instrument/Reverb Example.txt +21 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/src/app/Root.tsx +35 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/src/app/components/ErrorBoundary.tsx +114 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/src/app/components/UserInterface.tsx +85 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/src/app/pluginConfig.ts +4 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/src/dialogsCustomStyle.ts +101 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/src/index.tsx +214 -0
- package/generator-gorilla-engine-plugin/app/templates/effect/src/presetBrowserCustomStyle.ts +124 -0
- package/generator-gorilla-engine-plugin/app/templates/gitignore +9 -0
- package/generator-gorilla-engine-plugin/app/templates/licence.txt +0 -0
- package/generator-gorilla-engine-plugin/app/templates/package.json +38 -0
- package/generator-gorilla-engine-plugin/app/templates/prettierrc +9 -0
- package/generator-gorilla-engine-plugin/app/templates/tsconfig.json +20 -0
- package/generator-gorilla-engine-plugin/package.json +17 -0
- package/index.js +72 -0
- package/package.json +42 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.2.0",
|
|
3
|
+
"configurations": [
|
|
4
|
+
{
|
|
5
|
+
"name": "Start application",
|
|
6
|
+
"type": "node-terminal",
|
|
7
|
+
"request": "launch",
|
|
8
|
+
"presentation": {
|
|
9
|
+
"hidden": true,
|
|
10
|
+
"group": "",
|
|
11
|
+
"order": 1
|
|
12
|
+
},
|
|
13
|
+
"command": "\"/Applications/<%= plugin_manufacturer %>/<%= plugin_name %>.app/Contents/MacOS/<%= plugin_name %>\"",
|
|
14
|
+
"windows": {
|
|
15
|
+
"command": "&\"C:\\Program Files\\<%= plugin_manufacturer %>\\<%= plugin_name %>\\<%= plugin_name %>.exe\"",
|
|
16
|
+
"remoteRoot": "C:\\ProgramData\\<%= plugin_manufacturer %>\\<%= plugin_name %>"
|
|
17
|
+
},
|
|
18
|
+
"env": {
|
|
19
|
+
"<%= debug_env_var %>": "43210"
|
|
20
|
+
},
|
|
21
|
+
"cwd": "${workspaceFolder}",
|
|
22
|
+
"sourceMaps": true,
|
|
23
|
+
"outFiles": ["${workspaceFolder}/esbuild/**/*.js"],
|
|
24
|
+
// The deployed bundle lives outside the workspace, so the default
|
|
25
|
+
// "${workspaceFolder}/**" gating would discard its source map.
|
|
26
|
+
"resolveSourceMapLocations": null,
|
|
27
|
+
"localRoot": "${workspaceFolder}/esbuild",
|
|
28
|
+
"remoteRoot": "/Library/Application Support/<%= plugin_manufacturer %>/<%= plugin_name %>",
|
|
29
|
+
"skipFiles": ["<node_internals>/**"]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Attach to started application",
|
|
33
|
+
"type": "node",
|
|
34
|
+
"request": "attach",
|
|
35
|
+
"presentation": {
|
|
36
|
+
"hidden": true,
|
|
37
|
+
"group": "",
|
|
38
|
+
"order": 1
|
|
39
|
+
},
|
|
40
|
+
"port": 43210,
|
|
41
|
+
"cwd": "${workspaceFolder}",
|
|
42
|
+
"sourceMaps": true,
|
|
43
|
+
"outFiles": ["${workspaceFolder}/esbuild/**/*.js"],
|
|
44
|
+
// The deployed bundle lives outside the workspace, so the default
|
|
45
|
+
// "${workspaceFolder}/**" gating would discard its source map.
|
|
46
|
+
"resolveSourceMapLocations": null,
|
|
47
|
+
"localRoot": "${workspaceFolder}/esbuild",
|
|
48
|
+
"remoteRoot": "/Library/Application Support/<%= plugin_manufacturer %>/<%= plugin_name %>",
|
|
49
|
+
"windows": {
|
|
50
|
+
"remoteRoot": "C:\\ProgramData\\<%= plugin_manufacturer %>\\<%= plugin_name %>"
|
|
51
|
+
},
|
|
52
|
+
"skipFiles": ["<node_internals>/**"]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Attach to Plugin Inspector",
|
|
56
|
+
"type": "node",
|
|
57
|
+
"request": "attach",
|
|
58
|
+
"port": "${input:inspectorPort}",
|
|
59
|
+
"cwd": "${workspaceFolder}",
|
|
60
|
+
"sourceMaps": true,
|
|
61
|
+
"outFiles": ["${workspaceFolder}/esbuild/**/*.js"],
|
|
62
|
+
"resolveSourceMapLocations": null,
|
|
63
|
+
"localRoot": "${workspaceFolder}/esbuild",
|
|
64
|
+
"remoteRoot": "/Library/Application Support/<%= plugin_manufacturer %>/<%= plugin_name %>",
|
|
65
|
+
"windows": {
|
|
66
|
+
"remoteRoot": "C:\\ProgramData\\<%= plugin_manufacturer %>\\<%= plugin_name %>"
|
|
67
|
+
},
|
|
68
|
+
"skipFiles": ["<node_internals>/**"]
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"inputs": [
|
|
72
|
+
{
|
|
73
|
+
"id": "inspectorPort",
|
|
74
|
+
"type": "promptString",
|
|
75
|
+
"description": "Inspector port (shown in ws://127.0.0.1:PORT/...)",
|
|
76
|
+
"default": "9229"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"compounds": [
|
|
80
|
+
{
|
|
81
|
+
"name": "Start & Attach",
|
|
82
|
+
"configurations": ["Start application", "Attach to started application"],
|
|
83
|
+
"presentation": {
|
|
84
|
+
"group": "Start & Attach",
|
|
85
|
+
"order": 1
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# ge-react-startup
|
|
2
|
+
|
|
3
|
+
## One-time build credentials setup
|
|
4
|
+
|
|
5
|
+
Run `npm run buildAndInstall` or `npm run build` once and follow the prompt.
|
|
6
|
+
Credentials are saved to a user-wide file:
|
|
7
|
+
|
|
8
|
+
- macOS: `~/.gorilla-engine/credentials.json`
|
|
9
|
+
- Windows: `%USERPROFILE%\\.gorilla-engine\\credentials.json`
|
|
10
|
+
|
|
11
|
+
## Optional project-local override
|
|
12
|
+
|
|
13
|
+
If you want credentials scoped to this project only, edit `./buildCredentials.json`:
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
{
|
|
17
|
+
"username": "enter your username",
|
|
18
|
+
"password": "enter your password"
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Build the plugin installer
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
npm run build
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Run the plugin installer
|
|
29
|
+
|
|
30
|
+
find it in the installer folder
|
|
31
|
+
|
|
32
|
+
## Start developing
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
npm start
|
|
36
|
+
```
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Copyright 2011 The Roboto Project Authors (https://github.com/googlefonts/roboto-classic)
|
|
2
|
+
|
|
3
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
4
|
+
This license is copied below, and is also available with a FAQ at:
|
|
5
|
+
https://openfontlicense.org
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
-----------------------------------------------------------
|
|
9
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
10
|
+
-----------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
PREAMBLE
|
|
13
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
14
|
+
development of collaborative font projects, to support the font creation
|
|
15
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
16
|
+
open framework in which fonts may be shared and improved in partnership
|
|
17
|
+
with others.
|
|
18
|
+
|
|
19
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
20
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
21
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
22
|
+
redistributed and/or sold with any software provided that any reserved
|
|
23
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
24
|
+
however, cannot be released under any other type of license. The
|
|
25
|
+
requirement for fonts to remain under this license does not apply
|
|
26
|
+
to any document created using the fonts or their derivatives.
|
|
27
|
+
|
|
28
|
+
DEFINITIONS
|
|
29
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
30
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
31
|
+
include source files, build scripts and documentation.
|
|
32
|
+
|
|
33
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
34
|
+
copyright statement(s).
|
|
35
|
+
|
|
36
|
+
"Original Version" refers to the collection of Font Software components as
|
|
37
|
+
distributed by the Copyright Holder(s).
|
|
38
|
+
|
|
39
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
40
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
41
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
42
|
+
new environment.
|
|
43
|
+
|
|
44
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
45
|
+
writer or other person who contributed to the Font Software.
|
|
46
|
+
|
|
47
|
+
PERMISSION & CONDITIONS
|
|
48
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
49
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
50
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
51
|
+
Software, subject to the following conditions:
|
|
52
|
+
|
|
53
|
+
1) Neither the Font Software nor any of its individual components,
|
|
54
|
+
in Original or Modified Versions, may be sold by itself.
|
|
55
|
+
|
|
56
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
57
|
+
redistributed and/or sold with any software, provided that each copy
|
|
58
|
+
contains the above copyright notice and this license. These can be
|
|
59
|
+
included either as stand-alone text files, human-readable headers or
|
|
60
|
+
in the appropriate machine-readable metadata fields within text or
|
|
61
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
62
|
+
|
|
63
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
64
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
65
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
66
|
+
presented to the users.
|
|
67
|
+
|
|
68
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
69
|
+
Software shall not be used to promote, endorse or advertise any
|
|
70
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
71
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
72
|
+
permission.
|
|
73
|
+
|
|
74
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
75
|
+
must be distributed entirely under this license, and must not be
|
|
76
|
+
distributed under any other license. The requirement for fonts to
|
|
77
|
+
remain under this license does not apply to any document created
|
|
78
|
+
using the Font Software.
|
|
79
|
+
|
|
80
|
+
TERMINATION
|
|
81
|
+
This license becomes null and void if any of the above conditions are
|
|
82
|
+
not met.
|
|
83
|
+
|
|
84
|
+
DISCLAIMER
|
|
85
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
86
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
87
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
88
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
89
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
90
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
91
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
92
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
93
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"general":{"pluginVersion":"3.2.7","buildNumber":"manual","manufacturer":"Gorilla Engine","pluginName":"React Basic Synth","date":"2026-05-08T10:31:24.741Z"},"dsp_settings":[{"key":"mode","controlType":"drag","normValue":0,"value":0,"valueText":"Poly","maxValue":1,"minValue":0,"resolution":2,"isArray":true,"stepsLength":2},{"key":"octave","controlType":"drag","normValue":0.5,"value":2,"valueText":" 0","maxValue":4,"minValue":0,"resolution":5,"isArray":true,"stepsLength":5},{"key":"lfo_rate","controlType":"default","normValue":0.6945890188217163,"value":0.6945890188217163,"valueText":"6.00 Hz","maxValue":1,"minValue":0,"resolution":0},{"key":"glide_time","controlType":"default","normValue":0,"value":0,"valueText":"0","maxValue":127,"minValue":0,"resolution":0},{"key":"filter_cutoff","controlType":"default","normValue":0.5,"value":0.5,"valueText":"707.1 Hz","maxValue":1,"minValue":0,"resolution":0},{"key":"filter_reso","controlType":"default","normValue":0,"value":0,"valueText":"0.0 %","maxValue":100,"minValue":0,"resolution":0},{"key":"filter_env","controlType":"default","normValue":0.875,"value":75,"valueText":"+75.0 %","maxValue":100,"minValue":-100,"resolution":0},{"key":"filter_attack","controlType":"default","normValue":0,"value":0,"valueText":"0.0 ms","maxValue":1,"minValue":0,"resolution":0},{"key":"filter_decay","controlType":"default","normValue":0.5,"value":0.5,"valueText":"385 ms","maxValue":1,"minValue":0,"resolution":0},{"key":"filter_sustain","controlType":"default","normValue":0,"value":0,"valueText":"0.0 %","maxValue":100,"minValue":0,"resolution":0},{"key":"filter_release","controlType":"default","normValue":0.25,"value":0.25,"valueText":"59.8 ms","maxValue":1,"minValue":0,"resolution":0},{"key":"amp_attack","controlType":"default","normValue":0,"value":0,"valueText":"0.0 ms","maxValue":1,"minValue":0,"resolution":0},{"key":"amp_decay","controlType":"default","normValue":0.5,"value":0.5,"valueText":"385 ms","maxValue":1,"minValue":0,"resolution":0},{"key":"amp_sustain","controlType":"default","normValue":1,"value":100,"valueText":"100.0 %","maxValue":100,"minValue":0,"resolution":0},{"key":"amp_release","controlType":"default","normValue":0.25,"value":0.25,"valueText":"59.8 ms","maxValue":1,"minValue":0,"resolution":0},{"key":"amp_velocity","controlType":"default","normValue":0.5,"value":50,"valueText":"50 %","maxValue":100,"minValue":0,"resolution":0},{"key":"chorus","controlType":"onOffSwitch","normValue":0,"value":0,"valueText":"Off","maxValue":1,"minValue":0,"resolution":2,"isArray":true,"stepsLength":2},{"key":"volume","controlType":"volume","normValue":0.5,"value":0.5,"valueText":"-6.1 dB","maxValue":1,"minValue":0,"resolution":0}]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"general":{"pluginVersion":"3.2.7","buildNumber":"manual","manufacturer":"Gorilla Engine","pluginName":"React Basic Synth","date":"2026-05-08T09:53:37.172Z"},"dsp_settings":[{"key":"mode","controlType":"drag","normValue":0,"value":0,"valueText":"Poly","maxValue":1,"minValue":0,"resolution":2,"isArray":true,"stepsLength":2},{"key":"octave","controlType":"drag","normValue":0.5,"value":2,"valueText":" 0","maxValue":4,"minValue":0,"resolution":5,"isArray":true,"stepsLength":5},{"key":"lfo_rate","controlType":"default","normValue":0.2580655813217163,"value":0.2580655813217163,"valueText":"0.11 Hz","maxValue":1,"minValue":0,"resolution":0},{"key":"glide_time","controlType":"default","normValue":0.17963169515132904,"value":22.813225284218788,"valueText":"23","maxValue":127,"minValue":0,"resolution":0},{"key":"filter_cutoff","controlType":"default","normValue":0.8341562151908875,"value":0.8341562151908875,"valueText":"7.66 kHz","maxValue":1,"minValue":0,"resolution":0},{"key":"filter_reso","controlType":"default","normValue":0.8280937671661377,"value":82.80937671661377,"valueText":"82.8 %","maxValue":100,"minValue":0,"resolution":0},{"key":"filter_env","controlType":"default","normValue":0.8327187299728394,"value":66.54374599456787,"valueText":"+66.5 %","maxValue":100,"minValue":-100,"resolution":0},{"key":"filter_attack","controlType":"default","normValue":0.8322656154632568,"value":0.8322656154632568,"valueText":"4.58 s","maxValue":1,"minValue":0,"resolution":0},{"key":"filter_decay","controlType":"default","normValue":0.837109386920929,"value":0.837109386920929,"valueText":"4.75 s","maxValue":1,"minValue":0,"resolution":0},{"key":"filter_sustain","controlType":"default","normValue":0.7887656688690186,"value":78.87656688690186,"valueText":"78.9 %","maxValue":100,"minValue":0,"resolution":0},{"key":"filter_release","controlType":"default","normValue":0.8617187738418579,"value":0.8617187738418579,"valueText":"5.71 s","maxValue":1,"minValue":0,"resolution":0},{"key":"amp_attack","controlType":"default","normValue":0.8259375095367432,"value":0.8259375095367432,"valueText":"4.37 s","maxValue":1,"minValue":0,"resolution":0},{"key":"amp_decay","controlType":"default","normValue":0.8347499966621399,"value":0.8347499966621399,"valueText":"4.67 s","maxValue":1,"minValue":0,"resolution":0},{"key":"amp_sustain","controlType":"default","normValue":0.8542187213897705,"value":85.42187213897705,"valueText":"85.4 %","maxValue":100,"minValue":0,"resolution":0},{"key":"amp_release","controlType":"default","normValue":0.8462656140327454,"value":0.8462656140327454,"valueText":"5.09 s","maxValue":1,"minValue":0,"resolution":0},{"key":"amp_velocity","controlType":"default","normValue":0.8503437042236328,"value":85.03437042236328,"valueText":"85 %","maxValue":100,"minValue":0,"resolution":0},{"key":"chorus","controlType":"onOffSwitch","normValue":1,"value":1,"valueText":"On","maxValue":1,"minValue":0,"resolution":2,"isArray":true,"stepsLength":2},{"key":"volume","controlType":"volume","normValue":0.8350468873977661,"value":0.8350468873977661,"valueText":"+7.3 dB","maxValue":1,"minValue":0,"resolution":0}]}
|
|
Binary file
|
|
Binary file
|
package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/Rotary Bipolar.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-down-hover.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-up-default.png
ADDED
|
Binary file
|
|
Binary file
|
package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-up-hover.png
ADDED
|
Binary file
|
|
Binary file
|
package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/arrow-up-pressed.png
ADDED
|
Binary file
|
|
Binary file
|
package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/toggle-default.png
ADDED
|
Binary file
|
|
Binary file
|
package/generator-gorilla-engine-plugin/app/templates/basic-synth/assets/images/toggle-pressed.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bb9322b2-ec6d-46b7-bb93-af8351b3b470
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Module": "Instrument",
|
|
3
|
+
"Name": "Basic Synth",
|
|
4
|
+
"Blob Number": "None",
|
|
5
|
+
"Blob Path": "Gorilla Tester",
|
|
6
|
+
"Volume": 0.630957,
|
|
7
|
+
"Glide": "On",
|
|
8
|
+
"Pitch Bend Range": 2,
|
|
9
|
+
"Script Defines": null,
|
|
10
|
+
"Version": "1.1.8",
|
|
11
|
+
"Editor Data": null,
|
|
12
|
+
"Groups": [
|
|
13
|
+
{
|
|
14
|
+
"Module": "Group",
|
|
15
|
+
"Name": "saw osc",
|
|
16
|
+
"Volume": 0.6033961773,
|
|
17
|
+
"Output": -1,
|
|
18
|
+
"ModSources": [
|
|
19
|
+
{
|
|
20
|
+
"Module": "ModSourceADSR",
|
|
21
|
+
"Name": "Filter Env",
|
|
22
|
+
"Decay Curve": 75.0
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"Module": "ModSourceADSR",
|
|
26
|
+
"Name": "Amp Env",
|
|
27
|
+
"Decay Curve": 90.0,
|
|
28
|
+
"Sustain": 1.0
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"Module": "ModSourceCustom",
|
|
32
|
+
"Name": "Glide Curve",
|
|
33
|
+
"ModRoutings": [
|
|
34
|
+
{
|
|
35
|
+
"Module": "ModRouting",
|
|
36
|
+
"Source": "Glide",
|
|
37
|
+
"Depth": 1.0
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"Module": "ModRouting",
|
|
41
|
+
"Source": "MIDI CC",
|
|
42
|
+
"CC": 5,
|
|
43
|
+
"Depth": 1.0,
|
|
44
|
+
"Dest": "Time 1",
|
|
45
|
+
"Curve Active": "On",
|
|
46
|
+
"Curve": [ -1.0, -0.93000001, -0.87, -0.82999998, -0.79000002, -0.75, -0.70999998, -0.69, -0.65000004, -0.62, -0.59999996, -0.57999998, -0.56, -0.55000001, -0.52999997, -0.51999998, -0.5, -0.47999999, -0.47, -0.44999999, -0.44, -0.43000001, -0.41999999, -0.41, -0.38999999, -0.38, -0.37, -0.34999999, -0.34, -0.34, -0.32999998, -0.32999998, -0.31999999, -0.31, -0.30000001, -0.30000001, -0.28999999, -0.28, -0.27000001, -0.25999999, -0.25, -0.23, -0.22, -0.20999999, -0.2, -0.19, -0.17999999, -0.16, -0.15000001, -0.14, -0.12, -0.11, -0.1, -0.08, -0.06, -0.06, -0.04, -0.03, -0.01, -0.01, 0.01, 0.02, 0.03, 0.03, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15000001, 0.16, 0.16, 0.18000001, 0.19, 0.19, 0.2, 0.20999999, 0.22, 0.23, 0.23999999, 0.25, 0.25, 0.25999999, 0.27000001, 0.28, 0.28, 0.28999999, 0.28999999, 0.30000001, 0.30000001, 0.31, 0.32000002, 0.33000001, 0.34, 0.34, 0.34999999, 0.36000001, 0.37, 0.38, 0.38999999, 0.38999999, 0.40000001, 0.40000001, 0.41, 0.41000003, 0.42000002, 0.42000002, 0.43000001, 0.44, 0.45000002, 0.46000001, 0.47, 0.47999999, 0.48999998, 0.5, 0.50999999, 0.51999998, 0.52999997, 0.54000002, 0.55000001, 0.56, 0.56999999 ]
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"Curve": [ 1.0, 0.0, 0.0, 1.0, 0.25010288, -3.06986642, 0.0, 0.5, -5.0, 0.0, 0.5, -5.0, 0.0, 0.5, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"Module": "ModSourceLFO",
|
|
53
|
+
"Name": "LFO",
|
|
54
|
+
"ModRoutings": [
|
|
55
|
+
{
|
|
56
|
+
"Module": "ModRouting",
|
|
57
|
+
"Source": "MIDI CC",
|
|
58
|
+
"Depth": 1.0
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"Wave": "Triangle",
|
|
62
|
+
"Rate": 0.694589
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"ModRoutings": [
|
|
66
|
+
{
|
|
67
|
+
"Module": "ModRouting",
|
|
68
|
+
"Source": "Pitch Bend",
|
|
69
|
+
"Depth": 1.0,
|
|
70
|
+
"Smooth": 0.25906554,
|
|
71
|
+
"Dest": "Tune"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"Module": "ModRouting",
|
|
75
|
+
"Source": "Velocity",
|
|
76
|
+
"Depth": 0.9487031698,
|
|
77
|
+
"Curve": [ 0.0, 0.0039680079, 0.007998016, 0.0120900242, 0.0162440325, 0.0204600409, 0.0247380495, 0.0290780582, 0.033480067, 0.0379440759, 0.0424700849, 0.0470580941, 0.0517081034, 0.0564201128, 0.0611941224, 0.0660301321, 0.0709281419, 0.0758881518, 0.0809101618, 0.085994172, 0.0911401823, 0.0963481927, 0.1016182032, 0.1069502139, 0.1123442247, 0.1178002356, 0.1233182466, 0.1288982578, 0.1345402691, 0.1402442805, 0.146010292, 0.1518383037, 0.1577283155, 0.1636803274, 0.1696943394, 0.1757703515, 0.1819083638, 0.1881083762, 0.1943703887, 0.2006944014, 0.2070804142, 0.2135284271, 0.2200384401, 0.2266104532, 0.2332444665, 0.2399404799, 0.2466984934, 0.253518507, 0.2604005208, 0.2673445347, 0.2743505487, 0.2814185628, 0.2885485771, 0.2957405915, 0.302994606, 0.3103106206, 0.3176886354, 0.3251286503, 0.3326306653, 0.3401946804, 0.3478206956, 0.355508711, 0.3632587265, 0.3710707421, 0.3789447579, 0.3868807738, 0.3948787898, 0.4029388059, 0.4110608221, 0.4192448385, 0.427490855, 0.4357988716, 0.4441688883, 0.4526009052, 0.4610949222, 0.4696509393, 0.4782689565, 0.4869489739, 0.4956909914, 0.504495009, 0.5133610267, 0.5222890446, 0.5312790626, 0.5403310807, 0.5494450989, 0.5586211172, 0.5678591357, 0.5771591543, 0.586521173, 0.5959451919, 0.6054312109, 0.61497923, 0.6245892492, 0.6342612685, 0.643995288, 0.6537913076, 0.6636493273, 0.6735693471, 0.6835513671, 0.6935953872, 0.7037014074, 0.7138694277, 0.7240994482, 0.7343914688, 0.7447454895, 0.7551615103, 0.7656395313, 0.7761795524, 0.7867815736, 0.7974455949, 0.8081716163, 0.8189596379, 0.8298096596, 0.8407216814, 0.8516957034, 0.8627317255, 0.8738297477, 0.88498977, 0.8962117924, 0.907495815, 0.9188418377, 0.9302498605, 0.9417198834, 0.9532519065, 0.9648459297, 0.976501953, 0.9882199764, 1.0 ]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"Module": "ModRouting",
|
|
81
|
+
"Source": "Mod 2",
|
|
82
|
+
"Depth": 1.0
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"Module": "ModRouting",
|
|
86
|
+
"Source": "Mod 3",
|
|
87
|
+
"Depth": 1.0,
|
|
88
|
+
"Dest": "Tune"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"Module": "ModRouting",
|
|
92
|
+
"Source": "Mod 4",
|
|
93
|
+
"Depth": 0.44666666,
|
|
94
|
+
"Dest": "Tune"
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
"Filters": [
|
|
98
|
+
{
|
|
99
|
+
"Module": "FilterAnalogOsc"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"Module": "FilterLadder",
|
|
103
|
+
"ModRoutings": [
|
|
104
|
+
{
|
|
105
|
+
"Module": "ModRouting",
|
|
106
|
+
"Depth": 0.75
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"Module": "ModRouting",
|
|
110
|
+
"Source": "Key",
|
|
111
|
+
"Depth": 0.30000001
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"Cutoff": 0.5
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"Zones": [
|
|
118
|
+
{ "Module": "Zone", "Sample": "" }
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"Voice Groups": [
|
|
123
|
+
{
|
|
124
|
+
"Module": "VoiceGroup",
|
|
125
|
+
"Name": null,
|
|
126
|
+
"Max Voices": 8
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"Module": "VoiceGroup",
|
|
130
|
+
"Name": null,
|
|
131
|
+
"Max Voices": 1
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"FX Busses": [
|
|
135
|
+
{
|
|
136
|
+
"Module": "EffectBus",
|
|
137
|
+
"Name": null,
|
|
138
|
+
"Effects": [
|
|
139
|
+
{
|
|
140
|
+
"Module": "EffectChorus",
|
|
141
|
+
"Bypass": "On",
|
|
142
|
+
"Delay": 0.17666666,
|
|
143
|
+
"Voices": 3,
|
|
144
|
+
"Dry": 0.8899999857,
|
|
145
|
+
"Wet": 0.70666665
|
|
146
|
+
}
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"Scripts": [
|
|
151
|
+
{
|
|
152
|
+
"Module": "Script",
|
|
153
|
+
"Script Path": "Basic Synth Example.txt",
|
|
154
|
+
"Script": "' SimpleSynth\n'\n' Demonstrating a basic set of synth controls\n'\n\non init\n 'oscillator properties\n prop_stepped Mode\n add_step(Mode, \"Poly\")\n add_step(Mode, \"Mono\")\n set_prop_param(Mode, PROP_GROUP, \"Osc\")\n\n prop_stepped Octave = 2\n add_step(Octave, \"-2\")\n add_step(Octave, \"-1\")\n add_step(Octave, \" 0\")\n add_step(Octave, \"+1\")\n add_step(Octave, \"+2\")\n set_prop_param(Octave, PROP_GROUP, \"Osc\")\n\n prop_exp LFO_Rate(1000000, 10, 100000) = 694589\n set_prop_param(LFO_Rate, PROP_UNITS, \"Hz\")\n set_prop_param(LFO_Rate, PROP_GROUP, \"Osc\")\n\n prop_linear Glide_Time(0, 127, 1)\n set_prop_param(Glide_Time, PROP_GROUP, \"Osc\")\n\n 'filter properties\n prop_exp Filter_Cutoff(1000000, 20000, 25000000) = 500000\n set_prop_param(Filter_Cutoff, PROP_UNITS, \"Hz\")\n set_prop_param(Filter_Cutoff, PROP_GROUP, \"Filter\")\n\n prop_linear Filter_Reso(0, 1000, 10)\n set_prop_param(Filter_Reso, PROP_UNITS, \"%\")\n set_prop_param(Filter_Reso, PROP_GROUP, \"Filter\")\n\n prop_linear Filter_Env(-1000, 1000, 10) = 750\n set_prop_param(Filter_Env, PROP_UNITS, \"%\")\n set_prop_param(Filter_Env, PROP_GROUP, \"Filter\")\n\n prop_exp Filter_Attack(1000000, 0, 16000)\n set_prop_param(Filter_Attack, PROP_UNITS, \"s\")\n set_prop_param(Filter_Attack, PROP_GROUP, \"Filter\")\n\n prop_exp Filter_Decay(1000000, 0, 16000) = 500000\n set_prop_param(Filter_Decay, PROP_UNITS, \"s\")\n set_prop_param(Filter_Decay, PROP_GROUP, \"Filter\")\n\n prop_linear Filter_Sustain(0, 1000, 10)\n set_prop_param(Filter_Sustain, PROP_UNITS, \"%\")\n set_prop_param(Filter_Sustain, PROP_GROUP, \"Filter\")\n\n prop_exp Filter_Release(1000000, 0, 16000) = 250000\n set_prop_param(Filter_Release, PROP_UNITS, \"s\")\n set_prop_param(Filter_Release, PROP_GROUP, \"Filter\")\n\n 'amp properties\n prop_exp Amp_Attack(1000000, 0, 16000)\n set_prop_param(Amp_Attack, PROP_UNITS, \"s\")\n set_prop_param(Amp_Attack, PROP_GROUP, \"Amp\")\n\n prop_exp Amp_Decay(1000000, 0, 16000) = 500000\n set_prop_param(Amp_Decay, PROP_UNITS, \"s\")\n set_prop_param(Amp_Decay, PROP_GROUP, \"Amp\")\n\n prop_linear Amp_Sustain(0, 1000, 10) = 1000\n set_prop_param(Amp_Sustain, PROP_UNITS, \"%\")\n set_prop_param(Amp_Sustain, PROP_GROUP, \"Amp\")\n\n prop_exp Amp_Release(1000000, 0, 16000) = 250000\n set_prop_param(Amp_Release, PROP_UNITS, \"s\")\n set_prop_param(Amp_Release, PROP_GROUP, \"Amp\")\n\n prop_linear Amp_Velocity(0, 100, 1) = 50\n set_prop_param(Amp_Velocity, PROP_UNITS, \"%\")\n set_prop_param(Amp_Velocity, PROP_GROUP, \"Amp\")\n var v 'for velocity sensitivity calculations\n\n prop_boolean Chorus\n\n prop_decibels Volume(1000000, 12)\n set_prop_param(Volume, PROP_MIDI_CC, 7)\nend on\n\n\non Mode\n set_module_param(M_GROUP, 0, 0, 8, Mode) 'select Voice Group\nend on\n\n\non Octave\n 'could set in oscillator directly instead of in \"on note\"\n 'set_module_param(M_GROUP+0, M_FILTER+1, 0, 2, 166666 + 166667 * Octave)\nend on\n\n\non note\n 'adjust octave\n set_key(EVENT_ID, EVENT_KEY + 12 * Octave - 24)\nend on\n\n\non LFO_Rate\n set_module_param(M_GROUP, M_MOD_SRC+4, 0, 3, LFO_Rate)\nend on\n\n\non Glide_Time 'set MIDI CC used as a mod source\n set_controller(5, Glide_Time)\nend on\n\n\non Filter_Cutoff\n set_module_param(M_GROUP, M_FILTER+2, 0, 2, Filter_Cutoff)\nend on\n\n\non Filter_Reso\n set_module_param(M_GROUP, M_FILTER+2, 0, 3, 1000 * Filter_Reso)\nend on\n\n\non Filter_Env\n set_module_param(M_GROUP, M_FILTER+2, M_MOD+1, 4, -Filter_Env) 'Invert\n set_module_param(M_GROUP, M_FILTER+2, M_MOD+1, 5, 1000 * abs(Filter_Env)) 'Depth\nend on\n\n\non Filter_Attack\n set_module_param(M_GROUP, M_MOD_SRC+1, 0, 2, Filter_Attack)\nend on\n\n\non Filter_Decay\n set_module_param(M_GROUP, M_MOD_SRC+1, 0, 5, Filter_Decay)\nend on\n\n\non Filter_Sustain\n set_module_param(M_GROUP, M_MOD_SRC+1, 0, 7, 1000 * Filter_Sustain)\nend on\n\n\non Filter_Release\n set_module_param(M_GROUP, M_MOD_SRC+1, 0, 8, Filter_Release)\nend on\n\n\non Amp_Attack\n set_module_param(M_GROUP, M_MOD_SRC+2, 0, 2, Amp_Attack)\nend on\n\n\non Amp_Decay\n set_module_param(M_GROUP, M_MOD_SRC+2, 0, 5, Amp_Decay)\nend on\n\n\non Amp_Sustain\n set_module_param(M_GROUP, M_MOD_SRC+2, 0, 7, 1000 * Amp_Sustain)\nend on\n\n\non Amp_Release\n set_module_param(M_GROUP, M_MOD_SRC+2, 0, 8, Amp_Release)\nend on\n\n\non Amp_Velocity\n v = 100 - Amp_Velocity\n v = 1000000 - v * v * v\n set_module_param(M_GROUP, 0, M_MOD+2, 5, v)\nend on\n\n\non Chorus\n set_module_param(M_BUS+1, M_EFFECT+1, 0, 1, 1 - Chorus)\nend on\n\n\non Volume\n set_module_param(M_INST, 0, 0, 4, Volume)\nend on\n\n"
|
|
155
|
+
}
|
|
156
|
+
]
|
|
157
|
+
}
|