forked from sugarlabs/musicblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMediaBlocks.js
More file actions
1059 lines (948 loc) · 32.9 KB
/
MediaBlocks.js
File metadata and controls
1059 lines (948 loc) · 32.9 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
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
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// 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) {
/**
* Represents a block that returns the position of the right side of the screen.
* @class
* @extends ValueBlock
*/
class RightPosBlock extends ValueBlock {
/**
* Constructs a RightPosBlock instance.
* @constructor
*/
constructor() {
//.TRANS: right side of the screen
super("rightpos", _("right (screen)"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
// Set help string for the block based on context
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"
]);
}
}
/**
* Updates the parameter of the block.
* @returns {number} - The updated parameter value.
*/
updateParameter() {
return toFixed2(activity.turtles._canvas.width / (2.0 * activity.turtles.scale));
}
/**
* Returns the argument value for the block.
* @returns {number} - The argument value.
*/
arg() {
return activity.turtles._canvas.width / (2.0 * activity.turtles.scale);
}
}
/**
* Represents a block that returns the position of the left side of the screen.
* @class
* @extends ValueBlock
*/
class LeftPosBlock extends ValueBlock {
/**
* Constructs a LeftPosBlock instance.
* @constructor
*/
constructor() {
//.TRANS: left side of the screen
super("leftpos", _("left (screen)"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
// Set help string for the block based on context
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"
]);
}
}
/**
* Updates the parameter of the block.
* @returns {number} - The updated parameter value.
*/
updateParameter() {
return toFixed2(-1 * (activity.turtles._canvas.width / (2.0 * activity.turtles.scale)));
}
/**
* Returns the argument value for the block.
* @returns {number} - The argument value.
*/
arg() {
return -1 * (activity.turtles._canvas.width / (2.0 * activity.turtles.scale));
}
}
/**
* Represents a block that returns the position of the top of the screen.
* @class
* @extends ValueBlock
*/
class TopPosBlock extends ValueBlock {
/**
* Constructs a TopPosBlock instance.
* @constructor
*/
constructor() {
super("toppos", _("top (screen)"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
// Set help string for the block based on context
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"
]);
}
}
/**
* Updates the parameter of the block.
* @returns {number} - The updated parameter value.
*/
updateParameter() {
return toFixed2(activity.turtles._canvas.height / (2.0 * activity.turtles.scale));
}
/**
* Returns the argument value for the block.
* @returns {number} - The argument value.
*/
arg() {
return activity.turtles._canvas.height / (2.0 * activity.turtles.scale);
}
}
/**
* Represents a block that returns the position of the bottom of the screen.
* @class
* @extends ValueBlock
*/
class BottomPosBlock extends ValueBlock {
/**
* Constructs a BottomPosBlock instance.
* @constructor
*/
constructor() {
super("bottompos", _("bottom (screen)"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
// Set help string for the block based on context
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"
]);
}
}
/**
* Updates the parameter of the block.
* @returns {number} - The updated parameter value.
*/
updateParameter() {
return toFixed2(
-1 * (activity.turtles._canvas.height / (2.0 * activity.turtles.scale))
);
}
/**
* Returns the argument value for the block.
* @returns {number} - The argument value.
*/
arg() {
return -1 * (activity.turtles._canvas.height / (2.0 * activity.turtles.scale));
}
}
/**
* Represents a block that returns the width of the canvas.
* @class
* @extends ValueBlock
*/
class WidthBlock extends ValueBlock {
/**
* Constructs a WidthBlock instance.
* @constructor
*/
constructor() {
super("width", _("width"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
// Set help string for the block
this.setHelpString([
_("The Width block returns the width of the canvas."),
"documentation",
""
]);
}
/**
* Updates the parameter of the block.
* @returns {number} - The updated parameter value.
*/
updateParameter() {
return toFixed2(activity.turtles._canvas.width / activity.turtles.scale);
}
/**
* Returns the argument value for the block.
* @returns {number} - The argument value.
*/
arg() {
return activity.turtles._canvas.width / activity.turtles.scale;
}
}
/**
* Represents a block that returns the height of the canvas.
* @class
* @extends ValueBlock
*/
class HeightBlock extends ValueBlock {
/**
* Constructs a HeightBlock instance.
* @constructor
*/
constructor() {
super("height", _("height"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.beginnerBlock(true);
this.parameter = true;
// Set help string for the block
this.setHelpString([
_("The Height block returns the height of the canvas."),
"documentation",
""
]);
}
/**
* Updates the parameter of the block.
* @returns {number} - The updated parameter value.
*/
updateParameter() {
return toFixed2(activity.turtles._canvas.height / activity.turtles.scale);
}
/**
* Returns the argument value for the block.
* @returns {number} - The argument value.
*/
arg() {
return activity.turtles._canvas.height / activity.turtles.scale;
}
}
/**
* Represents a block that stops playback of an audio recording.
* @class
* @extends FlowBlock
*/
class StopPlaybackBlock extends FlowBlock {
/**
* Constructs a StopPlaybackBlock instance.
* @constructor
*/
constructor() {
//.TRANS: stops playback of an audio recording
super("stopplayback", _("stop play"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.setHelpString();
// Set the block as hidden
this.hidden = true;
}
/**
* Executes the flow of the block.
* @param {Array} args - The arguments for the block.
* @param {Logo} logo - The logo object.
*/
flow(args, logo) {
for (const sound in logo.sounds) {
logo.sounds[sound].stop();
}
logo.sounds = [];
}
}
/**
* Represents a block that erases text and images.
* @class
* @extends FlowBlock
*/
class ClearMediaBlock extends FlowBlock {
/**
* Constructs a ClearMediaBlock instance.
* @constructor
*/
constructor() {
//.TRANS: Erases the images and text
super("erasemedia", _("erase media"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.setHelpString([
_("The Erase Media block erases text and images."),
"documentation",
""
]);
}
/**
* Executes the flow of the block.
* @param {Array} args - The arguments for the block.
* @param {Logo} logo - The logo object.
* @param {number} turtle - The turtle identifier.
*/
flow(args, logo, turtle) {
const tur = activity.turtles.ithTurtle(turtle);
tur.painter.doClearMedia();
}
}
/**
* Represents a block that plays back an audio recording.
* @class
* @extends FlowBlock
*/
class PlaybackBlock extends FlowBlock {
/**
* Constructs a PlaybackBlock instance.
* @constructor
*/
constructor() {
//.TRANS: play an audio recording
super("playback", _("play back"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.setHelpString();
this.formBlock({
args: 1,
defaults: [null],
argTypes: ["mediain"]
});
// Set the block as hidden
this.hidden = true;
}
/**
* Executes the flow of the block.
* @param {Array} args - The arguments for the block.
* @param {Logo} logo - The logo object.
* @param {number} turtle - The turtle identifier.
* @param {string} blk - The block identifier.
*/
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();
}
}
/**
* Represents a block that outputs to the text-to-speech synthesizer.
* @class
* @extends FlowBlock
*/
class SpeakBlock extends FlowBlock {
// Eliminating until we find a better option.
/**
* Constructs a SpeakBlock instance.
* @constructor
*/
constructor() {
super("speak", _("speak"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.beginnerBlock(true);
// Set help string for the block
this.setHelpString([
_("The Speak block outputs to the text-to-speech synthesizer"),
"documentation",
""
]);
// Form block with arguments and default values
this.formBlock({
args: 1,
defaults: ["hello"],
argTypes: ["textin"]
});
// Set the block as hidden
this.hidden = true;
}
/**
* Executes the flow of the block.
* @param {Array} args - The arguments for the block.
* @param {Logo} logo - The logo object.
* @param {number} turtle - The turtle identifier.
* @param {string} blk - The block identifier.
*/
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]);
}
}
}
}
}
}
/**
* Represents a block that connects a webcam to the Show block.
* @class
* @extends ValueBlock
*/
class CameraBlock extends ValueBlock {
/**
* Constructs a CameraBlock instance.
* @constructor
*/
constructor() {
super("camera", _("camera"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.setHelpString([
_("The Camera block connects a webcam to the Show block."),
"documentation",
""
]);
// Form block with image
this.formBlock({
image: "images/camera.svg"
});
}
}
/**
* Represents a block that selects video for use with the Show block.
* @class
* @extends ValueBlock
*/
class VideoBlock extends ValueBlock {
/**
* Constructs a VideoBlock instance.
* @constructor
*/
constructor() {
super("video", _("video"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.setHelpString([
_("The Video block selects video for use with the Show block."),
"documentation",
""
]);
// Form block with image
this.formBlock({
image: "images/video.svg"
});
}
}
/**
* Represents a block that opens a file for use with the Show block.
* @class
* @extends ValueBlock
*/
class LoadFileBlock extends ValueBlock {
/**
* Constructs a LoadFileBlock instance.
* @constructor
*/
constructor() {
super("loadFile", _("open file"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.setHelpString([
_("The Open file block opens a file for use with the Show block."),
"documentation",
""
]);
// Form block with output type
this.formBlock({
outType: "fileout"
});
// Set parameter flag
this.parameter = false;
}
// eslint-disable-next-line no-unused-vars
/**
* Returns the argument value for the block.
* @param {Logo} logo - The logo object.
* @param {number} turtle - The turtle identifier.
* @param {string} blk - The block identifier.
* @returns {string} - The argument value.
*/
arg(logo, turtle, blk) {
return activity.blocks.blockList[blk].value;
}
}
/**
* Represents a block that stops audio or video playback.
* @class
* @extends FlowBlock
*/
class StopVideoCamBlock extends FlowBlock {
/**
* Constructs a StopVideoCamBlock instance.
* @constructor
*/
constructor() {
super("stopvideocam", _("stop media"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.setHelpString([
_("The Stop media block stops audio or video playback."),
"documentation",
""
]);
}
/**
* Executes the flow of the block.
* @param {Array} args - The arguments for the block.
* @param {Logo} logo - The logo object.
*/
flow(args, logo) {
if (logo.cameraID != null) {
doStopVideoCam(logo.cameraID, logo.setCameraID);
}
}
}
/**
* Represents a block that produces a tone.
* @class
* @extends FlowBlock
*/
class ToneBlock extends FlowBlock {
/**
* Constructs a ToneBlock instance.
* @constructor
*/
constructor() {
super("tone", _("hertz"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.piemenuValuesC1 = [
220, 247, 262, 294, 330, 349, 392, 440, 494, 523, 587, 659, 698, 784, 880
];
this.setHelpString();
// Form block with arguments and default values
this.formBlock({
args: 2,
defaults: [392, 1000 / 3],
argLabels: [_("frequency"), _("duration (MS)")]
});
// Form block with specified connections
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]]
]);
}
/**
* Executes the flow of the block.
*/
flow() {
return;
}
}
/**
* Represents a block that converts a note into hertz.
* @class
* @extends LeftBlock
*/
class ToFrequencyBlock extends LeftBlock {
/**
* Constructs a ToFrequencyBlock instance.
* @constructor
*/
constructor() {
//.TRANS: translate a note into hertz, e.g., A4 -> 440HZ
super("tofrequency", _("note to frequency"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.parameter = true;
// Set help string for the block
this.setHelpString([
_("The To frequency block converts a pitch name and octave to Hertz."),
"documentation",
""
]);
// Form block with arguments, default values, and labels
this.formBlock({
args: 2,
defaults: ["G", 4],
argTypes: ["notein", "anyin"],
argLabels: [this.lang === "ja" ? _("name2") : _("name"), _("octave")]
});
}
/**
* Updates the parameter of the block.
* @param {Logo} logo - The logo object.
* @param {number} turtle - The turtle identifier.
* @param {string} blk - The block identifier.
* @returns {number} - The updated parameter value.
*/
updateParameter(logo, turtle, blk) {
return toFixed2(activity.blocks.blockList[blk].value);
}
/**
* Returns the argument value for the block.
* @param {Logo} logo - The logo object.
* @param {number} turtle - The turtle identifier.
* @param {string} blk - The block identifier.
* @param {*} receivedArg - The received argument.
* @returns {number} - The argument 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));
}
}
/**
* Represents a block that changes the appearance of the mouse or turtle.
* @class
* @extends FlowBlock
*/
class TurtleShellBlock extends FlowBlock {
/**
* Constructs a TurtleShellBlock instance.
* @constructor
*/
constructor() {
//.TRANS: Avatar is the image used to determine the appearance of the mouse.
super("turtleshell", _("avatar"));
// Set palette and activity for the block
this.setPalette("media", activity);
this.beginnerBlock(true);
// Set help string for the block
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"
]);
}
// Form block with arguments, default values, and labels
this.formBlock({
args: 2,
defaults: [55, null],
argTypes: ["numberin", "anyin"],
argLabels: [_("size"), _("image")]
});
// Make macro for the block
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]]
]);
}
/**
* Executes the flow of the block.
* @param {Array} args - The arguments for the block.
* @param {Logo} logo - The logo object.
* @param {number} turtle - The turtle identifier.
* @param {string} blk - The block identifier.
*/
flow(args, logo, turtle, blk) {
if (args.length === 2) {
if (typeof args[0] === "string") {
activity.errorMsg(NANERRORMSG, blk);
} else {
activity.turtles.getTurtle(turtle).doTurtleShell(args[0], args[1]);
}
}
}
}
/**
* Represents a block that displays text or images on the canvas.
* @class
* @extends FlowBlock
*/
class ShowBlock extends FlowBlock {
/**
* Constructs a ShowBlock instance.
* @constructor
*/
constructor() {
super("show");
// Set palette and activity for the block
this.setPalette("media", activity);
this.beginnerBlock(true);
// Set help string for the block
this.setHelpString([
_("The Show block is used to display text or images on the canvas."),
"documentation",
""
]);
// Form block with name, arguments, default values, and labels
this.formBlock({
//.TRANS: show1 is show as in display an image or text on the screen.
name: this.lang === "ja" ? _("show1") : _("Show").toLowerCase(),
//.TRANS: a media object
args: 2,
argLabels: [_("size"), _("obj")],
defaults: [24, _("text")],
argTypes: ["numberin", "anyin"]
});
}
/**
* Executes the flow of the block.
* @param {Array} args - The arguments for the block.
* @param {Logo} logo - The logo object.
* @param {number} turtle - The turtle identifier.
* @param {string} blk - The block identifier.
*/
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]);
}
}
}
}
}
/**
* Represents a block that imports an image or GIF.
* @class
* @extends ValueBlock
*/
class MediaBlock extends ValueBlock {
/**
* Constructs a MediaBlock instance.
* @constructor
*/
constructor() {
super("media", _("Media").toLowerCase());
this.setPalette("media", activity);
this.beginnerBlock(true);
this.setHelpString([
_("The Media block is used to import an image (PNG, JPG) or an animated GIF."),
"documentation",
null,
"turtleshell"
]);
// Set the form and output type
this.formBlock({
image: "images/load-media.svg",
outType: "mediaout"
});
// Default value
this.mediaURL = null;
// Trigger media selection when block is added or clicked (if supported in your environment)
this.createMediaSelector();
}
/**
* Creates a hidden file input to select media files (including GIFs)
*/
createMediaSelector() {
const input = document.createElement("input");
input.type = "file";
input.accept = ".png,.jpg,.jpeg,.gif";
input.style.display = "none";
document.body.appendChild(input);
input.addEventListener("change", (e) => {
const file = e.target.files[0];
if (file) {
const url = URL.createObjectURL(file);
this.mediaURL = url;
this.updateMediaPreview(url); // Optional: show preview
}
});
// Store input for triggering elsewhere (e.g., on click)
this.mediaInput = input;
}
/**
* Triggers the media file picker
*/
triggerMediaSelection() {
if (this.mediaInput) {
this.mediaInput.click();
}
}
/**
* Optional: Updates block UI with a preview or label
*/
updateMediaPreview(url) {
// You can add code here to update block preview with <img src=url>
console.log("Media loaded:", url);
}
/**
* Return the media URL when the block is evaluated (if used this way)
*/
getValue() {
return this.mediaURL;