-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathscratch.py
606 lines (534 loc) · 21.8 KB
/
scratch.py
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
"""
This module runs Scratch blocks on demand.
Basically it emulates Scratch in Pygame, hence the name.
"""
import sys
import os
import random
import pygame.time
import cairosvg
import io
import config
import i18n
import targetSprite
import bs4
import time
from datetime import datetime
import eventContainer
from pathlib import Path
import tkinter as tk
import downloader
from tkinter import filedialog
import tkinter.simpledialog
__version__ = "v0.8.0"
__author__ = "Secret-chest"
i18n.set("locale", config.language)
i18n.set("filename_format", "{locale}.{format}")
i18n.load_path.append("lang/")
_ = i18n.t
class SpriteNotFoundError(Exception):
pass
if not config.enableDebugMessages:
sys.stderr = open(os.devnull, "w")
if not config.enableTerminalOutput:
sys.stdout = open(os.devnull, "w")
# Start tkinter for showing some popups, and hide main window
mainWindow = tk.Tk()
mainWindow.withdraw()
# Get project file name based on options and arguments
if len(sys.argv) > 1:
setProject = sys.argv[1]
else:
if config.testMode:
if not config.projectFileName.endswith(".sb3"):
if "http" not in config.projectFileName\
or "https" not in config.projectFileName:
setProject = downloader.downloadByID(config.projectFileName, "./download")
else:
setProject = downloader.downloadByURL(config.projectFileName, "./download")
else:
setProject = config.projectFileName
else:
fileTypes = [(_("sb3-desc"), ".sb3"), (_("all-files-desc"), ".*")]
setProject = filedialog.askopenfilename(parent=mainWindow,
initialdir=os.getcwd(),
title=_("choose-project-title"),
filetypes=fileTypes)
HEIGHT = config.projectScreenHeight
WIDTH = config.projectScreenWidth
# Create project player and window
projectName = Path(setProject).stem
icon = pygame.image.load("icon.svg")
display = pygame.display.set_mode([WIDTH, HEIGHT])
pygame.display.set_caption(_("window-title", projectName=projectName, s2pVersionString="Scratch2Python " + __version__))
pygame.display.set_icon(icon)
# Key maps to convert the key option in blocks to Pygame constants
KEY_MAPPING = {
"up arrow": pygame.K_UP,
"down arrow": pygame.K_DOWN,
"left arrow": pygame.K_LEFT,
"right arrow": pygame.K_RIGHT,
"space": pygame.K_SPACE,
"a": pygame.K_a,
"b": pygame.K_b,
"c": pygame.K_c,
"d": pygame.K_d,
"e": pygame.K_e,
"f": pygame.K_f,
"g": pygame.K_g,
"h": pygame.K_h,
"i": pygame.K_i,
"j": pygame.K_j,
"k": pygame.K_k,
"l": pygame.K_l,
"m": pygame.K_m,
"n": pygame.K_n,
"o": pygame.K_o,
"p": pygame.K_p,
"q": pygame.K_q,
"r": pygame.K_r,
"s": pygame.K_s,
"t": pygame.K_t,
"u": pygame.K_u,
"v": pygame.K_v,
"w": pygame.K_w,
"x": pygame.K_x,
"y": pygame.K_y,
"z": pygame.K_z,
"0": pygame.K_0,
"1": pygame.K_1,
"2": pygame.K_2,
"3": pygame.K_3,
"4": pygame.K_4,
"5": pygame.K_5,
"6": pygame.K_6,
"7": pygame.K_7,
"8": pygame.K_8,
"9": pygame.K_9,
# Scratch supports these keys internally
"enter": pygame.K_RETURN,
"<": pygame.K_LESS,
">": pygame.K_GREATER,
"+": pygame.K_PLUS,
"-": pygame.K_MINUS,
"=": pygame.K_EQUALS,
".": pygame.K_PERIOD,
",": pygame.K_COMMA,
"%": pygame.K_PERCENT,
"$": pygame.K_DOLLAR,
"#": pygame.K_HASH,
"@": pygame.K_AT,
"!": pygame.K_EXCLAIM,
"^": pygame.K_CARET,
"&": pygame.K_AMPERSAND,
"*": pygame.K_ASTERISK,
"(": pygame.K_LEFTPAREN,
")": pygame.K_RIGHTPAREN,
"[": pygame.K_LEFTBRACKET,
"]": pygame.K_RIGHTBRACKET,
"?": pygame.K_QUESTION,
"\\": pygame.K_BACKSLASH,
"/": pygame.K_SLASH,
"'": pygame.K_QUOTE,
"\"": pygame.K_QUOTEDBL,
"`": pygame.K_BACKQUOTE,
# Scratch2Python only
"backspace": pygame.K_BACKSPACE,
"escape": pygame.K_ESCAPE,
"f1": pygame.K_F1,
"f2": pygame.K_F2,
"f3": pygame.K_F3,
"f4": pygame.K_F4,
"f5": pygame.K_F5,
"f6": pygame.K_F6,
"f7": pygame.K_F7,
"f8": pygame.K_F8,
"f9": pygame.K_F9,
"f10": pygame.K_F10,
"f11": pygame.K_F11,
"f12": pygame.K_F12,
}
# Load SVG
def loadSvg(svgBytes):
svg = bs4.BeautifulSoup(svgBytes, "lxml-xml")
if svg.find("svg")["width"] == "0" or svg.find("svg")["height"] == "0":
svg.find("svg")["width"], svg.find("svg")["height"] = 1, 1
newBytes = cairosvg.svg2png(bytestring=str(svg))
byteIo = io.BytesIO(newBytes)
return pygame.image.load(byteIo)
# Refresh screen resolution
def refreshScreenResolution():
global HEIGHT
global WIDTH
HEIGHT = config.projectScreenHeight
WIDTH = config.projectScreenWidth
# Get the stage sprite in the current project
def getStage():
for s in targetSprite.sprites:
if s.isStage:
return s
raise SpriteNotFoundError(_("stage-not-found"))
# Run the given block object
def execute(block, s, events=eventContainer.EventContainer()):
# Get block values
opcode = block.opcode
blockRan = block.blockRan
inputs = block.inputs
fields = block.fields
shadow = block.shadow
nextBlock = None
# Get keys
keys = events.keys
keyEvents = events.keyEvents
if opcode == "motion_gotoxy": # go to x: () y: ()
s.setXy(float(block.getInputValue("x", eventContainer=events)), float(block.getInputValue("y", eventContainer=events)))
elif opcode == "motion_goto":
nextBlock = block.getBlockInputValue("to")
return s.target.blocks[nextBlock]
elif opcode == "motion_goto_menu":
if block.getFieldValue("to") == "_mouse_": # go to [mouse pointer v]
newX, newY = pygame.mouse.get_pos()
newX = newX - WIDTH // 2
newY = HEIGHT // 2 - newY
s.setXy(newX, newY)
if s.target.blocks[block.parent].next:
return s.target.blocks[s.target.blocks[block.parent].next]
return
elif block.getFieldValue("to") == "_random_": # go to [random position v]
minX = 0 - WIDTH // 2
maxX = WIDTH // 2
minY = 0 - HEIGHT // 2
maxY = HEIGHT // 2
newX, newY = (random.randint(minX, maxX), random.randint(minY, maxY))
s.setXy(newX, newY)
if s.target.blocks[block.parent].next:
return s.target.blocks[s.target.blocks[block.parent].next]
return
elif opcode == "motion_setx": # set x to ()
s.setXy(float(block.getInputValue("x", eventContainer=events)), s.y)
elif opcode == "motion_changexby": # change x by ( )
s.setXyDelta(float(block.getInputValue("dx", eventContainer=events)), 0)
elif opcode == "motion_sety": # set y to ()
s.setXy(s.x, float(block.getInputValue("y", eventContainer=events)))
elif opcode == "motion_changeyby": # change y by ()
s.setXyDelta(0, float(block.getInputValue("dy", eventContainer=events)))
elif opcode == "motion_turnleft": # turn ccw () degrees
s.setRotDelta(0 - float(block.getInputValue("degrees", eventContainer=events)))
elif opcode == "motion_turnright": # turn cw () degrees
s.setRotDelta(float(block.getInputValue("degrees", eventContainer=events)))
elif opcode == "motion_pointindirection": # point in direction ()
s.setRot(float(block.getInputValue("direction", eventContainer=events)))
elif opcode == "looks_changesizeby": # turn cw () degrees
s.setSizeDelta(float(block.getInputValue("change", eventContainer=events)))
elif opcode == "looks_setsizeto": # turn cw () degrees
s.setSize(float(block.getInputValue("size", eventContainer=events)))
elif opcode == "motion_pointindirection": # point in direction ()
s.setRot(float(block.getInputValue("direction", eventContainer=events)))
elif opcode == "motion_pointtowards":
nextBlock = block.getBlockInputValue("towards")
return s.target.blocks[nextBlock]
elif opcode == "motion_pointtowards_menu":
if block.getFieldValue("towards") == "_mouse_": # go to [mouse pointer v]
newX, newY = pygame.mouse.get_pos()
newX = newX - WIDTH // 2
newY = HEIGHT // 2 - newY
s.pointTowards(newX, newY)
if s.target.blocks[block.parent].next:
return s.target.blocks[s.target.blocks[block.parent].next]
return
elif block.getFieldValue("towards") == "_random_": # go to [random position v]
minX = 0 - WIDTH // 2
maxX = WIDTH // 2
minY = 0 - HEIGHT // 2
maxY = HEIGHT // 2
newX, newY = (random.randint(minX, maxX), random.randint(minY, maxY))
s.setXy(newX, newY)
if s.target.blocks[block.parent].next:
return s.target.blocks[s.target.blocks[block.parent].next]
return
# TODO: sprite lookup table
elif opcode == "motion_movesteps": # move () steps
offset = pygame.math.Vector2(float(block.getInputValue("steps", eventContainer=events)), 0)
offset.rotate_ip(90 + s.direction)
s.setXyDelta(-offset.x, -offset.y)
elif opcode == "control_wait": # wait () seconds
block.screenRefresh = True
if not block.waiting:
# Get time delay and convert it to milliseconds
block.timeDelay = int(round(float(float(block.getInputValue("duration", eventContainer=events))) * 1000))
block.waiting = True
block.executionTime = 0
print(_("debug-prefix"), _("block-waiting", time=block.timeDelay), file=sys.stderr)
return block
elif opcode == "control_wait_until": # wait until <>
block.screenRefresh = True
truth = block.target.blocks[inputs["CONDITION"][1]].evaluateBlockValue(events)
if truth:
block.blockRan = True
nextBlock = s.target.blocks[block.next]
return nextBlock
else:
return block
elif opcode == "event_whenflagclicked": # when green flag clicked
pass
elif opcode == "event_whenkeypressed":
# print(time.time_ns(), "in whenkeypressed")
# print("Handling key event")
# if not block.waiting:
# # Get time delay and convert it to milliseconds
# block.timeDelay = 500
# block.waiting = True
# block.executionTime = 0
# print("DEBUG: Waiting for", block.timeDelay, "ms")
key = block.getFieldValue("key_option", lookIn=0)
# print(key)
if key == "any": # when key [any v] pressed
if keyEvents and keys and block.next:
print(_("debug-prefix"), _("keypress-handling", keyName=_("key-any")), file=sys.stderr)
# print(time.time_ns() // 1000000, keyName)
for b in block.script:
s.target.blocks[b].blockRan = False
nb = block # s.target.blocks[block.next]
# nb.blockRan = False
block.script.add(nb.blockID)
nb = s.target.blocks[nb.next]
while nb.next and nb.next != block.blockID:
# Reset block
nb.blockRan = False
nb.timeDelay = 0
nb.executionTime = 0
block.script.add(nb.blockID)
nb = s.target.blocks[nb.next]
if not nb.next:
nb.next = block.blockID
if nb:
block.script.add(nb.blockID)
block.script.remove(block.blockID)
nb.blockRan = False
nextBlock = s.target.blocks[block.next]
return nextBlock
elif KEY_MAPPING[key] in keyEvents and block.next: # when key [. . . v] pressed
# print(keyEvents, "received in execute()")
if key == "left arrow":
keyName = _("key-left")
elif key == "right arrow":
keyName = _("key-right")
elif key == "up arrow":
keyName = _("key-up")
elif key == "down arrow":
keyName = _("key-down")
elif key == "space":
keyName = _("key-space")
else:
keyName = key
print(_("debug-prefix"), _("keypress-handling", keyName=keyName), file=sys.stderr)
# print(time.time_ns() // 1000000, keyName)
for b in block.script:
s.target.blocks[b].blockRan = False
nb = block # s.target.blocks[block.next]
# nb.blockRan = False
block.script.add(nb.blockID)
nb = s.target.blocks[nb.next]
while nb.next and nb.next != block.blockID:
# Reset block
nb.blockRan = False
nb.timeDelay = 0
nb.executionTime = 0
block.script.add(nb.blockID)
nb = s.target.blocks[nb.next]
if not nb.next:
nb.next = block.blockID
if nb:
block.script.add(nb.blockID)
block.script.remove(block.blockID)
nb.blockRan = False
nextBlock = s.target.blocks[block.next]
return nextBlock
else:
pass
block.blockRan = False
return None
elif opcode == "control_forever": # forever {..}
# Don't mark the loop as ran, and do a screen refresh
block.blockRan = False
block.screenRefresh = True
# If there are blocks, get them
if inputs["SUBSTACK"][1]:
# No blocks will be flagged as ran inside a forever loop
for b in block.substack:
s.target.blocks[b].blockRan = False
nextBlock = s.target.blocks[inputs["SUBSTACK"][1]]
nb = s.target.blocks[inputs["SUBSTACK"][1]]
block.substack.add(nb.blockID)
while nb.next and nb.next != block.blockID:
nb.blockRan = False
nb.waiting = False
nb.timeDelay = 0
nb.executionTime = 0
nb = s.target.blocks[nb.next]
block.substack.add(nb.blockID)
nb.next = block.blockID
return nextBlock
elif opcode == "control_repeat": # repeat (10) {...}
if block.repeatCounter is None:
block.repeatCounter = int(block.getInputValue("times", eventContainer=events))
# Don't mark the loop as ran until done, and do a screen refresh
if block.repeatCounter > 0:
block.blockRan = False
else:
block.blockRan = True
block.repeatCounter = None
if block.next:
return s.target.blocks[block.next]
else:
return
block.screenRefresh = True
if block.repeatCounter is not None:
block.repeatCounter -= 1
# If there are blocks, get them
if inputs["SUBSTACK"][1]:
# No blocks will be flagged as ran inside a forever loop
for b in block.substack:
s.target.blocks[b].blockRan = False
nextBlock = s.target.blocks[inputs["SUBSTACK"][1]]
nb = s.target.blocks[inputs["SUBSTACK"][1]]
block.substack.add(nb.blockID)
while nb.next and nb.next != block.blockID:
nb.blockRan = False
nb.waiting = False
nb.timeDelay = 0
nb.executionTime = 0
nb = s.target.blocks[nb.next]
block.substack.add(nb.blockID)
nb.next = block.blockID
return nextBlock
elif opcode == "control_if": # if <> then {...}
if block.target.blocks[inputs["CONDITION"][1]].evaluateBlockValue(events):
# If there are blocks, get them
if inputs["SUBSTACK"][1]:
# No blocks will be flagged as ran inside a forever loop
for b in block.substack:
s.target.blocks[b].blockRan = False
nextBlock = s.target.blocks[inputs["SUBSTACK"][1]]
nb = s.target.blocks[inputs["SUBSTACK"][1]]
block.substack.add(nb.blockID)
while nb.next and nb.next not in block.substack:
nb.blockRan = False
nb.waiting = False
nb.timeDelay = 0
nb.executionTime = 0
nb = s.target.blocks[nb.next]
block.substack.add(nb.blockID)
nb.next = block.next
block.blockRan = True
return nextBlock
block.blockRan = True
else:
block.blockRan = True
return s.target.blocks[block.next]
elif opcode == "control_if_else": # if <> then {...}
if block.target.blocks[inputs["CONDITION"][1]].evaluateBlockValue(events):
# If there are blocks, get them
if inputs["SUBSTACK"][1]:
# No blocks will be flagged as ran inside a forever loop
for b in block.substack:
s.target.blocks[b].blockRan = False
nextBlock = s.target.blocks[inputs["SUBSTACK"][1]]
nb = s.target.blocks[inputs["SUBSTACK"][1]]
block.substack.add(nb.blockID)
while nb.next and nb.next not in block.substack:
nb.blockRan = False
nb.waiting = False
nb.timeDelay = 0
nb.executionTime = 0
nb = s.target.blocks[nb.next]
block.substack.add(nb.blockID)
nb.next = block.next
block.blockRan = True
return nextBlock
block.blockRan = True
else:
# If there are blocks, get them
if inputs["SUBSTACK2"][1]:
# No blocks will be flagged as ran inside a forever loop
for b in block.substack2:
s.target.blocks[b].blockRan = False
nextBlock = s.target.blocks[inputs["SUBSTACK2"][1]]
nb = s.target.blocks[inputs["SUBSTACK2"][1]]
block.substack2.add(nb.blockID)
while nb.next and nb.next not in block.substack2:
nb.blockRan = False
nb.waiting = False
nb.timeDelay = 0
nb.executionTime = 0
nb = s.target.blocks[nb.next]
block.substack2.add(nb.blockID)
nb.next = block.next
block.blockRan = True
return nextBlock
block.blockRan = True
elif opcode == "looks_switchcostumeto": # switch costume to [... v]
nextBlock = block.getBlockInputValue("costume")
return s.target.blocks[nextBlock]
elif opcode == "looks_nextcostume": # next costume
s.setCostume(s.target.currentCostume + 1)
elif opcode == "looks_costume":
if s.target.blocks[block.parent].opcode == "looks_switchcostumeto":
costumeName = block.getFieldValue("costume")
newCostume = 0
for c in s.target.costumes:
if c.name == costumeName:
break
newCostume += 1
s.setCostume(newCostume)
if s.target.blocks[block.parent].next:
return s.target.blocks[s.target.blocks[block.parent].next]
return
elif opcode == "looks_switchbackdropto": # switch backdrop to [... v]
nextBlock = block.getBlockInputValue("backdrop")
return s.target.blocks[nextBlock]
elif opcode == "looks_nextbackdrop": # next backdrop
getStage().setCostume(getStage().target.currentCostume + 1)
elif opcode == "looks_backdrops":
if s.target.blocks[block.parent].opcode == "looks_switchbackdropto":
backdropName = block.getFieldValue("backdrop")
newBackdrop = 0
for c in getStage().target.costumes:
if c.name == backdropName:
break
newBackdrop += 1
getStage().setCostume(newBackdrop)
if s.target.blocks[block.parent].next:
return s.target.blocks[s.target.blocks[block.parent].next]
return
elif opcode == "sound_play": # start sound [... v]
nextBlock = block.getBlockInputValue("sound_menu")
return s.target.blocks[nextBlock]
elif opcode == "sound_sounds_menu":
if s.target.blocks[block.parent].opcode == "sound_play":
soundName = block.getFieldValue("sound_menu")
newSound = None
for so in s.target.sounds:
if so.name == soundName:
newSound = so
break
newSound.play()
if s.target.blocks[block.parent].next:
return s.target.blocks[s.target.blocks[block.parent].next]
return
elif opcode == "procedures_call":
if config.showSALogs:
# These are Scratch Addons debugger blocks.
if block.proccode == "log %s": # Scratch Addons log ()
print("[", datetime.now().strftime("%H:%M:%S:%f"), "]", _("project-log"), block.getCustomInputValue(0), file=sys.stderr)
elif block.proccode == "warn %s": # Scratch Addons warn ()
print("[", datetime.now().strftime("%H:%M:%S:%f"), "]", _("project-warn"), block.getCustomInputValue(0), file=sys.stderr)
elif block.proccode == "error %s": # Scratch Addons error ()
print("[", datetime.now().strftime("%H:%M:%S:%f"), "]", _("project-error"), block.getCustomInputValue(0), file=sys.stderr)
else:
print(_("unknown-opcode"), opcode)
# If there is a block below, return it
if block.next:
nextBlock = s.target.blocks[block.next]
block.blockRan = True
return nextBlock