-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.json
More file actions
277 lines (267 loc) · 6.98 KB
/
module.json
File metadata and controls
277 lines (267 loc) · 6.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
{
"name":"TheatreMix",
"type":"OSC",
"path":"Software",
"version":"1.1.0",
"description":"Module to control James Holt's TheatreMix Software for DCA mixing",
"url":"https://github.com/CJWestProductions/TheatreMix-Chataigne-Module",
"downloadURL":"https://github.com/CJWestProductions/TheatreMix-Chataigne-Module/archive/refs/heads/main.zip",
"hasInput":false,
"hasOutput":true,
"alwaysShowValues":true,
"hideDefaultCommands": true,
"hideDefaultParameters":
[
"autoAdd",
"splitArguments",
"useHierarchy",
"autoFeedback",
"colorSendMode",
"booleanSendMode",
"clearValues",
"oscOutputs/oscOutput/remotePort",
"oscOutputs/oscOutput/listenToFeedback"
],
"defaults":
{
"autoAdd":false,
"OSC Outputs":{
"OSC Output":{
"local":true,
"remotePort":32000,
"listenToFeedback":true
}
}
},
"scripts": ["TheatreMix.js"],
"parameters":
{
"Subscribe":{
"type":"Boolean",
"description":"Subscribe to Events sent back from TheatreMix (cue fired, LR Ganging, Record offsets",
"default":true
}
},
"values":
{
"Subscription Active":{
"type":"Boolean",
"description":"Is the subscription active and connected?",
"default":false,
"readOnly":true
},
"Cue Fired":{
"type":"Trigger",
"description":"Triggers when a cue fired message is received",
"readOnly":true
},
"Last Cue Fired":{
"type":"Float",
"description":"Which cue has last been fired",
"default":0,
"readOnly":true
},
"Gang L/R Level":{
"type":"Boolean",
"description":"LR Fader gang level (-inf is off, otherwise on)",
"default":false,
"readOnly":true,
"shortName":"gangLevel"
},
"Record Offsets Status":{
"type":"Boolean",
"description": "Is Record Offsets on?",
"default":false,
"readOnly":true,
"shortName":"offsetsStatus"
}
},
"commands":
{
"Set Subscribed":
{
"callback":"setSubscribed",
"parameters":
{
"Subscribed":
{
"type":"Boolean",
"description":"Set the Subscribe Parameter in Chataigne",
"default":true
}
}
},
"Go":
{
"menu":"Cues",
"callback":"sendGo"
},
"Back":
{
"menu":"Cues",
"callback":"sendBack"
},
"Jump":
{
"menu":"Cues",
"callback":"sendJump",
"parameters":
{
"Number":
{
"type":"String",
"description":"Cue number to jump to",
"default":1
}
}
},
"Jump to Selected":
{
"menu":"Cues",
"callback":"sendJumpToSelected"
},
"Mark Cue":
{
"menu":"Cues",
"callback":"sendMark",
"parameters":
{
"Mode":
{
"type":"Enum",
"description":"Mark Current Cue, or mark Selected cue?",
"options":
{
"Current":"current",
"Selected":"selected"
}
},
"Notes":
{
"type":"String",
"description":"Notes to add to the marked cue",
"default":""
}
}
},
"Insert Cue":
{
"menu":"Cues",
"callback":"sendInsert"
},
"Clone Cue":
{
"menu":"Cues",
"callback":"sendClone"
},
"Delete Cue":
{
"menu":"Cues",
"callback":"sendDelete"
},
"Set Lock":
{
"menu":"UI",
"callback":"sendLock",
"parameters":
{
"Lock":
{
"type":"Boolean",
"description":"Send locked or unlocked?",
"default":1
}
}
},
"Select":
{
"menu":"UI",
"callback":"sendSelect",
"parameters":
{
"Mode":
{
"type":"Enum",
"description":"Move selection up, down, or to current cue",
"options":
{
"Up":"up",
"Down":"down",
"Current":"current"
}
}
}
},
"Undo":
{
"menu":"UI",
"callback":"sendUndo"
},
"Redo":
{
"menu":"UI",
"callback":"sendRedo"
},
"Toggle Backup":
{
"menu":"Mics",
"callback":"toggleBackup",
"parameters":
{
"Channel":
{
"type":"String",
"description":"Toggle the backup channel (prefix Aux-Ins with A)",
"default":1
}
}
},
"Allocate Spare":
{
"menu":"Mics",
"callback":"allocateSpare",
"parameters":
{
"Channel":
{
"type":"String",
"description":"Allocate the spare backup channel (prefix Aux-Ins with A)",
"default":1
}
}
},
"Toggle Spare":
{
"menu":"Mics",
"callback":"toggleSpare"
},
"Remove Spare Allocation":
{
"menu":"Mics",
"callback":"removeSpare"
},
"Record Offsets":
{
"menu":"Offsets",
"callback":"recordOffsets",
"parameters":
{
"Mode":
{
"type":"Enum",
"description":"If not in toggle mode, on and off will use the status value to only send if needed. Subscribe should be on",
"options":{
"Toggle":0,
"On":1,
"Off":2
}
}
}
},
"Clone Offsets":
{
"menu":"Offsets",
"callback":"cloneOffsets"
}
}
}