forked from sugarlabs/musicblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport.js
436 lines (365 loc) · 13.1 KB
/
export.js
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/**
* @file This contains the API classes' definitions and utilities for JavaScript based Music Blocks code.
* @author Anindya Kundu
*
* @copyright 2020 Anindya Kundu
*
* @license
* This program is free software; you can redistribute it and/or modify it under the terms of the
* The GNU Affero General Public License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* You should have received a copy of the GNU Affero General Public License along with this
* library; if not, write to the Free Software Foundation, 51 Franklin Street, Suite 500 Boston,
* MA 02110-1335 USA.
*
* Private methods' names begin with underscore '_".
* Unused methods' names begin with double underscore '__'.
* Internal functions' names are in PascalCase.
*/
/* global JSEditor, last, importMembers, Singer, JSInterface, globalActivity */
/**
* @class
* @classdesc pertains to the Mouse (corresponding to Turtle) in JavaScript based Music Blocks programs.
*/
class Mouse {
/** Mouse objects in program */
static MouseList = [];
/** maps Turtle object (turtle ID) to Mouse object */
static TurtleMouseMap = {};
/** list of Turtle objects created by JavaScript based Music Blocks programs */
static AddedTurtles = [];
/**
* @constructor
* @param {Obj} Activity - object that contains activity
* @param {Function} flow - flow function associated with the Mouse
*/
constructor(flow) {
if (Mouse.MouseList.length < globalActivity.turtles.turtleList.length) {
this.turtle = globalActivity.turtles.turtleList[Mouse.MouseList.length];
} else {
globalActivity.turtles.addTurtle();
this.turtle = last(globalActivity.turtles.turtleList);
Mouse.AddedTurtles.push(this.turtle);
}
this.turtle.initTurtle(false);
this.flow = flow;
// eslint-disable-next-line no-use-before-define
this.MB = new MusicBlocks(this); // associate a MusicBlocks object with each Mouse
Mouse.MouseList.push(this);
Mouse.TurtleMouseMap[this.turtle.id] = this;
}
/**
* Returns corresponding Mouse object from a Turtle object.
*
* @static
* @param {Object} turtle - Turtle object
* @returns {Object|null} Mouse object
*/
static getMouseFromTurtle(turtle) {
return turtle.id in Mouse.TurtleMouseMap ? Mouse.TurtleMouseMap[turtle.id] : null;
}
/**
* Executes the flow of the Mouse object.
* @returns {void}
*/
run() {
this.turtle.doWait(0);
this.flow(this.MB);
}
}
/**
* @class
* @classdesc pertains to the execution behavior of JavaScript based Music Blocks programs.
*/
class MusicBlocks {
/** contains list of methods corresponding to each Action class */
static _methodList = {};
/** custom block numbers for JavaScript based Music Blocks programs */
static _blockNo = -1;
/** whether program is running */
static isRun = false;
/**
* @constructor
* @param {Object} mouse - corresponding Mouse object in Mouse.MouseList
*/
constructor(mouse) {
this.mouse = mouse;
this.turtle = mouse.turtle;
this.turIndex = globalActivity.turtles.turtleList.indexOf(this.turtle);
this.listeners = [];
if (MusicBlocks._blockNo === -1) {
MusicBlocks._blockNo = 0;
}
[
"GraphicsBlocksAPI",
"PenBlocksAPI",
"RhythmBlocksAPI",
"MeterBlocksAPI",
"PitchBlocksAPI",
"IntervalsBlocksAPI",
"ToneBlocksAPI",
"OrnamentBlocksAPI",
"VolumeBlocksAPI",
"DrumBlocksAPI",
"DictBlocksAPI"
].forEach((className) => importMembers(this, className));
}
/**
* Returns the next custom block number.
*
* @static
* @returns {String} block number
*/
static get BLK() {
return "B" + MusicBlocks._blockNo++;
}
/**
* Initializes the JavaScript based Music BLocks program's global state at start and end of run.
*
* @static
* @param {Boolean} start - whether starting to run
*/
static init(start) {
/**
* Creates a JSON object that maps API actions' class name to list of corresponding methods.
* Invoked at start of run.
* @returns {void}
*/
function CreateAPIMethodList() {
[
"Painter",
// "Painter.GraphicsActions",
// "Painter.PenActions",
"Singer.RhythmActions",
"Singer.MeterActions",
"Singer.PitchActions",
"Singer.IntervalsActions",
"Singer.ToneActions",
"Singer.OrnamentActions",
"Singer.VolumeActions",
"Singer.DrumActions",
"Turtle.DictActions"
].forEach((className) => {
MusicBlocks._methodList[className] = [];
if (className === "Painter") {
for (const methodName of Object.getOwnPropertyNames(
eval(className + ".prototype")
)) {
if (methodName !== "constructor" && !methodName.startsWith("_"))
MusicBlocks._methodList[className].push(methodName);
}
return;
}
for (const methodName of Object.getOwnPropertyNames(eval(className))) {
if (methodName !== "length" && methodName !== "prototype")
MusicBlocks._methodList[className].push(methodName);
}
});
}
if (start) {
MusicBlocks.isRun = true;
CreateAPIMethodList();
} else {
MusicBlocks.isRun = false;
MusicBlocks._methodList = {};
}
for (const turtle of Mouse.AddedTurtles) {
turtle.container.visible = false;
turtle.inTrash = true;
const turIndex = globalActivity.turtles.turtleList.indexOf(turtle);
globalActivity.turtles.turtleList.splice(turIndex, 1);
}
MusicBlocks._blockNo = -1;
Mouse.MouseList = [];
Mouse.TurtleMouseMap = {};
}
/**
* Executes the Music Blocks program by running all the mice.
*
* @static
* @returns {void}
*/
static run() {
// Remove any listeners that might be still active
for (const mouse of Mouse.MouseList) {
for (const listener in mouse.turtle.listeners) {
if (globalActivity.logo.stage && mouse.turtle.listeners.hasOwnProperty(listener)) {
globalActivity.logo.stage.removeEventListener(
listener, mouse.turtle.listeners[listener], false);
}
}
mouse.turtle.listeners = {};
}
globalActivity.logo.prepSynths();
globalActivity.logo.firstNoteTime = null;
Mouse.MouseList.forEach((mouse) => mouse.run());
}
/**
* Returns a promise to run a particular instruction.
*
* @param {String} command - instruction method name
* @param {[*]} args - arguments to the method
* @returns {Promise}
*/
runCommand(command, args) {
return new Promise((resolve) => {
let returnVal;
if (command === "_anonymous") {
if (args !== undefined) args();
} else {
let cname = null;
for (const className in MusicBlocks._methodList) {
if (MusicBlocks._methodList[className].indexOf(command) !== -1) {
cname = className;
break;
}
}
cname = cname === "Painter" ? this.turtle.painter : eval(cname);
returnVal =
args === undefined || (Array.isArray(args) && args.length === 0) ? cname[command]() : cname[command](...args);
}
const delay = this.turtle.waitTime;
this.turtle.doWait(0);
setTimeout(() => resolve(returnVal), delay);
});
}
/**
* Returns a Promise for ending each flow.
* @returns {Promise}
*/
get ENDFLOW() {
return new Promise((resolve) => resolve());
}
/**
* Returns a Promise for ending a clamp block command.
* Executes the listener created at the initiation of the corresponding command.
* @returns {Promise}
*/
get ENDFLOWCOMMAND() {
return new Promise((resolve) => {
const signal = this.listeners.pop();
if (signal !== null && signal !== undefined) {
globalActivity.stage.dispatchEvent(signal);
}
const delay = this.turtle.waitTime;
this.turtle.doWait(0);
setTimeout(resolve, delay);
});
}
/**
* Returns a Promise for ending a mouse flow.
* @returns {Promise}
*/
get ENDMOUSE() {
return new Promise((resolve) => {
Mouse.MouseList.splice(Mouse.MouseList.indexOf(this.mouse), 1);
if (Mouse.MouseList.length === 0) MusicBlocks.init(false);
resolve();
});
}
// ========= Special Instructions ==============================================================
print(message) {
JSEditor.logConsole(
`Mouse "${this.turtle.name}" (${globalActivity.turtles.turtleList.indexOf(this.turtle)}): ${message}`
);
if (message === undefined) {
globalActivity.textMsg("undefined");
} else if (message === null) {
globalActivity.textMsg("null");
} else {
globalActivity.textMsg(message.toString());
}
}
// ========= Getters/Setters ===================================================================
// ============================== GRAPHICS ================================
get X() {
return globalActivity.turtles.screenX2turtleX(this.turtle.container.x);
}
get Y() {
return globalActivity.turtles.screenY2turtleY(this.turtle.container.y);
}
get HEADING() {
return this.turtle.orientation;
}
// ================================ PEN ===================================
get PENSIZE() {
return this.turtle.painter.stroke;
}
get COLOR() {
return this.turtle.painter.color;
}
get SHADE() {
return this.turtle.painter.value;
}
get GREY() {
return this.turtle.painter.chroma;
}
// ============================== RHYTHM ==================================
get NOTEVALUE() {
return Singer.RhythmActions.getNoteValue(this.turIndex);
}
// ============================== METER ===================================
set PICKUP(value) {
const args = JSInterface.validateArgs("PICKUP", [value]);
const validatedValue = Math.max(0, args[0]);
Singer.MeterActions.setPickup(validatedValue, this.turIndex);
}
get WHOLENOTESPLAYED() {
return Singer.MeterActions.getWholeNotesPlayed(this.turIndex);
}
get BEATCOUNT() {
return Singer.MeterActions.getBeatCount(this.turIndex);
}
get MEASURECOUNT() {
return Singer.MeterActions.getMeasureCount(this.turIndex);
}
get BPM() {
return Singer.MeterActions.getBPM(this.turIndex);
}
get BEATFACTOR() {
return Singer.MeterActions.getBeatFactor(this.turIndex);
}
get CURRENTMETER() {
return Singer.MeterActions.getCurrentMeter(this.turIndex);
}
// ============================== PITCH ===================================
get SCALARCHANGEINPITCH() {
return Singer.PitchActions.deltaPitch("deltapitch2", this.turIndex);
}
get CHANGEINPITCH() {
return Singer.PitchActions.deltaPitch("deltapitch", this.turIndex);
}
get SCALARSTEPUP() {
return Singer.PitchActions.consonantStepSize("up", this.turIndex);
}
get SCALARSTEPDOWN() {
return Singer.PitchActions.consonantStepSize("down", this.turIndex);
}
// ============================ INTERVALS =================================
set MOVABLEDO(movable) {
const args = JSInterface.validateArgs("MOVABLEDO", [movable]);
Singer.IntervalsActions.setMovableDo(args[0], this.turIndex);
}
get CURRENTKEY() {
return Singer.IntervalsActions.getCurrentKey(this.turIndex);
}
get CURRENTMODE() {
return Singer.IntervalsActions.getCurrentMode(this.turIndex);
}
get MODELENGTH() {
return Singer.IntervalsActions.getModeLength(this.turIndex);
}
// ============================== VOLUME ==================================
set PANNING(value) {
const args = JSInterface.validateArgs("PANNING", [value]);
Singer.VolumeActions.setPanning(args[0], this.turIndex);
}
set MASTERVOLUME(volume) {
const args = JSInterface.validateArgs("MASTERVOLUME", [volume]);
Singer.VolumeActions.setMasterVolume(args[0], this.turIndex);
}
get MASTERVOLUME() {
return Singer.VolumeActions.masterVolume;
}
}