forked from sugarlabs/musicblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMediaBlocks.js
632 lines (568 loc) · 20.7 KB
/
MediaBlocks.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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
// Copyright (c) 2019 Bottersnike
//
// 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
/*
global
_, ValueBlock, LeftBlock, FlowBlock, NOINPUTERRORMSG, NANERRORMSG,
toFixed2, Howl, last, calcOctave, pitchToFrequency, doStopVideoCam,
_THIS_IS_MUSIC_BLOCKS_
*/
/* exported setupMediaBlocks */
function setupMediaBlocks(activity) {
class RightPosBlock extends ValueBlock {
constructor() {
//.TRANS: right side of the screen
super("rightpos", _("right (screen)"));
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
if (_THIS_IS_MUSIC_BLOCKS_) {
this.setHelpString([
_("The Right block returns the position of the right of the canvas.") +
" " +
_("In this example, the mouse moves right until it reaches the right edge of the canvas; then it reappears at the left of the canvas."),
"documentation",
null,
"lrhelp"
]);
} else {
this.setHelpString([
_("The Right block returns the position of the right of the canvas.") +
" " +
_("In this example, the turtle moves right until it reaches the right edge of the canvas; then it reappears at the left of the canvas."),
"documentation",
null,
"lrhelp"
]);
}
}
updateParameter() {
return toFixed2(
activity.turtles._canvas.width / (2.0 * activity.turtles.scale)
);
}
arg() {
return activity.turtles._canvas.width / (2.0 * activity.turtles.scale);
}
}
class LeftPosBlock extends ValueBlock {
constructor() {
//.TRANS: left side of the screen
super("leftpos", _("left (screen)"));
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
if (_THIS_IS_MUSIC_BLOCKS_) {
this.setHelpString([
_("The Left block returns the position of the left of the canvas.") +
" " +
_("In this example, the mouse moves right until it reaches the right edge of the canvas; then it reappears at the left of the canvas."),
"documentation",
null,
"lrhelp"
]);
} else {
this.setHelpString([
_("The Left block returns the position of the left of the canvas.") +
" " +
_("In this example, the turtle moves right until it reaches the right edge of the canvas; then it reappears at the left of the canvas."),
"documentation",
null,
"lrhelp"
]);
}
}
updateParameter() {
return toFixed2(
-1 * (activity.turtles._canvas.width / (2.0 * activity.turtles.scale))
);
}
arg() {
return (
-1 * (activity.turtles._canvas.width / (2.0 * activity.turtles.scale))
);
}
}
class TopPosBlock extends ValueBlock {
constructor() {
super("toppos", _("top (screen)"));
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
if (_THIS_IS_MUSIC_BLOCKS_) {
this.setHelpString([
_("The Top block returns the position of the top of the canvas.") +
" " +
_("In this example, the mouse moves upward until it reaches the top edge of the canvas; then it reappears at the bottom of the canvas."),
"documentation",
null,
"bottomposhelp"
]);
} else {
this.setHelpString([
_("The Top block returns the position of the top of the canvas.") +
" " +
_("In this example, the turtle moves upward until it reaches the top edge of the canvas; then it reappears at the bottom of the canvas."),
"documentation",
null,
"bottomposhelp"
]);
}
}
updateParameter() {
return toFixed2(
activity.turtles._canvas.height / (2.0 * activity.turtles.scale)
);
}
arg() {
return activity.turtles._canvas.height / (2.0 * activity.turtles.scale);
}
}
class BottomPosBlock extends ValueBlock {
constructor() {
super("bottompos", _("bottom (screen)"));
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
if (_THIS_IS_MUSIC_BLOCKS_) {
this.setHelpString([
_("The Bottom block returns the position of the bottom of the canvas.") +
" " +
_("In this example, the mouse moves upward until it reaches the top edge of the canvas; then it reappears at the bottom of the canvas."),
"documentation",
null,
"bottomposhelp"
]);
} else {
this.setHelpString([
_("The Bottom block returns the position of the bottom of the canvas.") +
" " +
_("In this example, the turtle moves upward until it reaches the top edge of the canvas; then it reappears at the bottom of the canvas."),
"documentation",
null,
"bottomposhelp"
]);
}
}
updateParameter() {
return toFixed2(
-1 * (activity.turtles._canvas.height / (2.0 * activity.turtles.scale))
);
}
arg() {
return (
-1 * (activity.turtles._canvas.height / (2.0 * activity.turtles.scale))
);
}
}
class WidthBlock extends ValueBlock {
constructor() {
super("width", _("width"));
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
this.setHelpString([
_("The Width block returns the width of the canvas."),
"documentation",
""
]);
}
updateParameter() {
return toFixed2(activity.turtles._canvas.width / activity.turtles.scale);
}
arg() {
return activity.turtles._canvas.width / activity.turtles.scale;
}
}
class HeightBlock extends ValueBlock {
constructor() {
super("height", _("height"));
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
this.setHelpString([
_("The Height block returns the height of the canvas."),
"documentation",
""
]);
}
updateParameter() {
return toFixed2(activity.turtles._canvas.height / activity.turtles.scale);
}
arg() {
return activity.turtles._canvas.height / activity.turtles.scale;
}
}
class StopPlaybackBlock extends FlowBlock {
constructor() {
//.TRANS: stops playback of an audio recording
super("stopplayback", _("stop play"));
this.setPalette("media", activity);
this.setHelpString();
this.hidden = true;
}
flow(args, logo) {
for (const sound in logo.sounds) {
logo.sounds[sound].stop();
}
logo.sounds = [];
}
}
class ClearMediaBlock extends FlowBlock {
constructor() {
//.TRANS: Erases the images and text
super("erasemedia", _("erase media"));
this.setPalette("media", activity);
this.setHelpString([
_("The Erase Media block erases text and images."),
"documentation",
""
]);
}
flow(args, logo, turtle) {
const tur = activity.turtles.ithTurtle(turtle);
tur.painter.doClearMedia();
}
}
class PlaybackBlock extends FlowBlock {
constructor() {
//.TRANS: play an audio recording
super("playback", _("play back"));
this.setPalette("media", activity);
this.setHelpString();
this.formBlock({
args: 1,
defaults: [null],
argTypes: ["mediain"]
});
this.hidden = true;
}
flow(args, logo, turtle, blk) {
if (args[0] === null) {
activity.errorMsg(NOINPUTERRORMSG, blk);
return;
}
const sound = new Howl({
urls: [args[0]]
});
logo.sounds.push(sound);
sound.play();
}
}
class SpeakBlock extends FlowBlock {
// Eliminating until we find a better option.
constructor() {
super("speak", _("speak"));
this.setPalette("media", activity);
this.beginnerBlock(true);
this.setHelpString([
_("The Speak block outputs to the text-to-speech synthesizer"),
"documentation",
""
]);
this.formBlock({
args: 1,
defaults: ["hello"],
argTypes: ["textin"]
});
this.hidden = true;
}
flow(args, logo, turtle, blk) {
const tur = activity.turtles.ithTurtle(turtle);
if (args.length === 1) {
if (logo.meSpeak !== null) {
if (tur.singer.inNoteBlock.length > 0) {
tur.singer.embeddedGraphics[last(tur.singer.inNoteBlock)].push(blk);
} else {
if (!tur.singer.suppressOutput) {
logo.processSpeak(args[0]);
}
}
}
}
}
}
class CameraBlock extends ValueBlock {
constructor() {
super("camera", _("camera"));
this.setPalette("media", activity);
this.setHelpString([
_("The Camera block connects a webcam to the Show block."),
"documentation",
""
]);
this.formBlock({
image: "images/camera.svg"
});
}
}
class VideoBlock extends ValueBlock {
constructor() {
super("video", _("video"));
this.setPalette("media", activity);
this.setHelpString([
_("The Video block selects video for use with the Show block."),
"documentation",
""
]);
this.formBlock({
image: "images/video.svg"
});
}
}
class LoadFileBlock extends ValueBlock {
constructor() {
super("loadFile", _("open file"));
this.setPalette("media", activity);
this.setHelpString([
_("The Open file block opens a file for use with the Show block."),
"documentation",
""
]);
this.formBlock({
outType: "fileout"
});
this.parameter = false;
}
// eslint-disable-next-line no-unused-vars
arg(logo, turtle, blk) {
return activity.blocks.blockList[blk].value;
}
}
class StopVideoCamBlock extends FlowBlock {
constructor() {
super("stopvideocam", _("stop media"));
this.setPalette("media", activity);
this.setHelpString([
_("The Stop media block stops audio or video playback."),
"documentation",
""
]);
}
flow(args, logo) {
if (logo.cameraID != null) {
doStopVideoCam(logo.cameraID, logo.setCameraID);
}
}
}
class ToneBlock extends FlowBlock {
constructor() {
super("tone", _("hertz"));
this.setPalette("media", activity);
this.piemenuValuesC1 = [220, 247, 262, 294, 330, 349, 392, 440, 494, 523,
587, 659, 698, 784, 880];
this.setHelpString();
this.formBlock({
args: 2,
defaults: [392, 1000 / 3],
argLabels: [_("frequency"), _("duration (ms)")]
});
this.formBlock((x, y) => [
[0, "drift", x, y, [null, 1, null]],
[1, "osctime", 0, 0, [0, 3, 2, null]],
[2, "vspace", 0, 0, [1, 6]],
[3, "divide", 0, 0, [1, 4, 5]],
[4, ["number", { value: 1000 }], 0, 0, [3]],
[5, ["number", { value: 3 }], 0, 0, [3]],
[6, "hertz", 0, 0, [2, 7, null]],
[7, ["number", { value: 392 }], 0, 0, [6]]
]);
}
flow() {
return;
}
}
class ToFrequencyBlock extends LeftBlock {
constructor() {
//.TRANS: translate a note into hertz, e.g., A4 -> 440HZ
super("tofrequency", _("note to frequency"));
this.setPalette("media", activity);
this.parameter = true;
this.setHelpString([
_("The To frequency block converts a pitch name and octave to Hertz."),
"documentation",
""
]);
this.formBlock({
args: 2,
defaults: ["G", 4],
argTypes: ["notein", "anyin"],
argLabels: [
this.lang === "ja" ? _("name2") : _("name"),
_("octave")
]
});
}
updateParameter(logo, turtle, blk) {
return toFixed2(activity.blocks.blockList[blk].value);
}
arg(logo, turtle, blk, receivedArg) {
const tur = activity.turtles.ithTurtle(turtle);
const cblk1 = activity.blocks.blockList[blk].connections[1];
const cblk2 = activity.blocks.blockList[blk].connections[2];
if (cblk1 === null || cblk2 === null) {
activity.errorMsg(NOINPUTERRORMSG, blk);
return 392;
}
const note = logo.parseArg(logo, turtle, cblk1, blk, receivedArg);
const octave = Math.floor(
calcOctave(
tur.singer.currentOctave,
logo.parseArg(logo, turtle, cblk2, blk, receivedArg),
tur.singer.lastNotePlayed,
note
)
);
return Math.round(pitchToFrequency(note, octave, 0, tur.singer.keySignature));
}
}
class TurtleShellBlock extends FlowBlock {
constructor() {
//.TRANS: Avatar is the image used to determine the appearance of the mouse.
super("turtleshell", _("avatar"));
this.setPalette("media", activity);
this.beginnerBlock(true);
if (_THIS_IS_MUSIC_BLOCKS_) {
this.setHelpString([
_("The Avatar block is used to change the appearance of the mouse."),
"documentation",
null,
"turtleshell"
]);
} else {
this.setHelpString([
_("The Avatar block is used to change the appearance of the turtle."),
"documentation",
null,
"turtleshell"
]);
}
this.formBlock({
args: 2,
defaults: [55, null],
argTypes: ["numberin", "anyin"],
argLabels: [_("size"), _("image")]
});
this.makeMacro((x, y) => [
[0, "turtleshell", x, y, [null, 1, 2, 3]],
[1, ["number", { value: 55 }], 0, 0, [0]],
[2, "media", 0, 0, [0]],
[3, "vspace", 0, 0, [0, null]]
]);
}
flow(args, logo, turtle, blk) {
if (args.length === 2) {
if (typeof args[0] === "string") {
activity.errorMsg(NANERRORMSG, blk);
} else {
activity.turtles.turtleList[turtle].doTurtleShell(
args[0],
args[1]
);
}
}
}
}
class ShowBlock extends FlowBlock {
constructor() {
super("show");
this.setPalette("media", activity);
this.beginnerBlock(true);
this.setHelpString([
_("The Show block is used to display text or images on the canvas."),
"documentation",
""
]);
this.formBlock({
//.TRANS: show1 is show as in display an image or text on the screen.
name: this.lang === "ja" ? _("show1") : _("show"),
//.TRANS: a media object
args: 2,
argLabels: [_("size"), _("obj")],
defaults: [24, _("text")],
argTypes: ["numberin", "anyin"]
});
}
flow(args, logo, turtle, blk) {
const tur = activity.turtles.ithTurtle(turtle);
if (args.length === 2) {
if (tur.singer.inNoteBlock.length > 0) {
tur.singer.embeddedGraphics[last(tur.singer.inNoteBlock)].push(blk);
} else {
if (!tur.singer.suppressOutput) {
logo.processShow(turtle, blk, args[0], args[1]);
}
}
}
}
}
class MediaBlock extends ValueBlock {
constructor() {
super("media", _("media"));
this.setPalette("media", activity);
this.beginnerBlock(true);
this.setHelpString([
_("The Media block is used to import an image."),
"documentation",
null,
"turtleshell"
]);
/*
if (language === 'ja') {
//.TRANS: "video material" is used instead of an image in Japanese
newblock.staticLabels.push(_('video material'));
newblock.extraWidth = 10;
} else {
newblock.image = 'images/load-media.svg'
}
*/
this.formBlock({
image: "images/load-media.svg",
outType: "mediaout"
});
}
}
class TextBlock extends ValueBlock {
constructor() {
super("text", _("text"));
this.extraWidth = 30;
this.setPalette("media", activity);
this.beginnerBlock(true);
this.setHelpString([
_("The Text block holds a text string."),
"documentation",
""
]);
this.formBlock({
outType: "textout"
});
}
}
new RightPosBlock().setup(activity);
new LeftPosBlock().setup(activity);
new TopPosBlock().setup(activity);
new BottomPosBlock().setup(activity);
new WidthBlock().setup(activity);
new HeightBlock().setup(activity);
new CameraBlock().setup(activity);
new StopPlaybackBlock().setup(activity);
new PlaybackBlock().setup(activity);
new SpeakBlock().setup(activity);
new VideoBlock().setup(activity);
new LoadFileBlock().setup(activity);
new StopVideoCamBlock().setup(activity);
new ToneBlock().setup(activity);
new ToFrequencyBlock().setup(activity);
new TurtleShellBlock().setup(activity);
new ClearMediaBlock().setup(activity);
new ShowBlock().setup(activity);
new MediaBlock().setup(activity);
new TextBlock().setup(activity);
}