forked from timkchan/scheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scheme_primitives.py
585 lines (491 loc) · 14.9 KB
/
scheme_primitives.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
"""This module implements the primitives of the Scheme language."""
import math
import operator
import sys
from scheme_reader import Pair, nil
try:
import turtle
import tkinter
except:
print("warning: could not import the turtle module.", file=sys.stderr)
class SchemeError(Exception):
"""Exception indicating an error in a Scheme program."""
class okay:
"""Signifies an undefined value."""
def __repr__(self):
return "okay"
okay = okay() # Assignment hides the okay class; there is only one instance
########################
# Primitive Operations #
########################
class PrimitiveProcedure:
"""A Scheme procedure defined as a Python function."""
def __init__(self, fn, use_env=False, name='primitive'):
self.name = name
self.fn = fn
self.use_env = use_env
def __str__(self):
return '#[{}]'.format(self.name)
_PRIMITIVES = []
def primitive(*names):
"""An annotation to convert a Python function into a PrimitiveProcedure."""
def add(fn):
proc = PrimitiveProcedure(fn, name=names[0])
for name in names:
_PRIMITIVES.append((name,proc))
return fn
return add
def add_primitives(frame):
"""Enter bindings in _PRIMITIVES into FRAME, an environment frame."""
for name, proc in _PRIMITIVES:
frame.define(name, proc)
def check_type(val, predicate, k, name):
"""Returns VAL. Raises a SchemeError if not PREDICATE(VAL)
using "argument K of NAME" to describe the offending value."""
if not predicate(val):
msg = "argument {0} of {1} has wrong type ({2})"
raise SchemeError(msg.format(k, name, type(val).__name__))
return val
@primitive("boolean?")
def scheme_booleanp(x):
return x is True or x is False
def scheme_true(val):
"""All values in Scheme are true except False."""
return val is not False
def scheme_false(val):
"""Only False is false in Scheme."""
return val is False
@primitive("not")
def scheme_not(x):
return not scheme_true(x)
@primitive("eq?", "equal?")
def scheme_eqp(x, y):
return x == y
@primitive("pair?")
def scheme_pairp(x):
return isinstance(x, Pair)
@primitive("promise?")
def scheme_promisep(x):
return type(x).__name__ == 'Promise'
@primitive("stream?")
def scheme_streamp(x):
return x is nil or (scheme_pairp(x) and scheme_promisep(x.second))
@primitive("null?")
def scheme_nullp(x):
return x is nil
@primitive("list?")
def scheme_listp(x):
"""Return whether x is a well-formed list. Assumes no cycles."""
while x is not nil:
if not isinstance(x, Pair):
return False
x = x.second
return True
@primitive("length")
def scheme_length(x):
check_type(x, scheme_listp, 0, 'length')
if x is nil:
return 0
return len(x)
@primitive("cons")
def scheme_cons(x, y):
return Pair(x, y)
@primitive("car")
def scheme_car(x):
check_type(x, scheme_pairp, 0, 'car')
return x.first
@primitive("cdr")
def scheme_cdr(x):
check_type(x, scheme_pairp, 0, 'cdr')
return x.second
@primitive("force")
def scheme_force(x):
check_type(x, scheme_promisep, 0, 'promise')
return x.evaluate()
@primitive("stream-cdr")
def scheme_stream_cdr(x):
check_type(x, scheme_streamp, 0, 'promise')
return scheme_force(x.second)
@primitive("list")
def scheme_list(*vals):
result = nil
for e in reversed(vals):
result = Pair(e, result)
return result
@primitive("append")
def scheme_append(*vals):
if len(vals) == 0:
return nil
result = vals[-1]
for i in range(len(vals)-2, -1, -1):
v = vals[i]
if v is not nil:
check_type(v, scheme_pairp, i, 'append')
r = p = Pair(v.first, result)
v = v.second
while scheme_pairp(v):
p.second = Pair(v.first, result)
p = p.second
v = v.second
result = r
return result
@primitive("string?")
def scheme_stringp(x):
return isinstance(x, str) and x.startswith('"')
@primitive("symbol?")
def scheme_symbolp(x):
return isinstance(x, str) and not scheme_stringp(x)
@primitive("number?")
def scheme_numberp(x):
return isinstance(x, (int, float)) and not scheme_booleanp(x)
@primitive("integer?")
def scheme_integerp(x):
return scheme_numberp(x) and (isinstance(x, int) or round(x) == x)
def _check_nums(*vals):
"""Check that all arguments in VALS are numbers."""
for i, v in enumerate(vals):
if not scheme_numberp(v):
msg = "operand {0} ({1}) is not a number"
raise SchemeError(msg.format(i, v))
def _arith(fn, init, vals):
"""Perform the fn fneration on the number values of VALS, with INIT as
the value when VALS is empty. Returns the result as a Scheme value."""
_check_nums(*vals)
s = init
for val in vals:
s = fn(s, val)
if round(s) == s:
s = round(s)
return s
@primitive("+")
def scheme_add(*vals):
return _arith(operator.add, 0, vals)
@primitive("-")
def scheme_sub(val0, *vals):
_check_nums(val0, *vals) # fixes off-by-one error
if len(vals) == 0:
return -val0
return _arith(operator.sub, val0, vals)
@primitive("*")
def scheme_mul(*vals):
return _arith(operator.mul, 1, vals)
@primitive("/")
def scheme_div(val0, *vals):
_check_nums(val0, *vals) # fixes off-by-one error
try:
if len(vals) == 0:
return 1 / val0
return _arith(operator.truediv, val0, vals)
except ZeroDivisionError as err:
raise SchemeError(err)
@primitive("expt")
def scheme_expt(val0, val1):
_check_nums(val0, val1)
return pow(val0, val1)
@primitive("abs")
def scheme_abs(val0):
return abs(val0)
@primitive("quotient")
def scheme_quo(val0, val1):
_check_nums(val0, val1)
try:
return int(val0 / val1)
except ZeroDivisionError as err:
raise SchemeError(err)
@primitive("modulo")
def scheme_modulo(val0, val1):
_check_nums(val0, val1)
try:
return val0 % val1
except ZeroDivisionError as err:
raise SchemeError(err)
@primitive("remainder")
def scheme_remainder(val0, val1):
_check_nums(val0, val1)
try:
result = val0 % val1
except ZeroDivisionError as err:
raise SchemeError(err)
while result < 0 and val0 > 0 or result > 0 and val0 < 0:
result -= val1
return result
def number_fn(module, name):
"""A Scheme primitive for the named fn in module, which takes numbers."""
py_fn = getattr(module, name)
def scheme_fn(*vals):
_check_nums(*vals)
return py_fn(*vals)
return scheme_fn
# Add number functions in the math module as Scheme primitives
for _name in ["acos", "acosh", "asin", "asinh", "atan", "atan2", "atanh",
"ceil", "copysign", "cos", "cosh", "degrees", "floor", "log",
"log10", "log1p", "log2", "radians", "sin", "sinh", "sqrt",
"tan", "tanh", "trunc"]:
primitive(_name)(number_fn(math, _name))
def _numcomp(op, x, y):
_check_nums(x, y)
return op(x, y)
@primitive("=")
def scheme_eq(x, y):
return _numcomp(operator.eq, x, y)
@primitive("<")
def scheme_lt(x, y):
return _numcomp(operator.lt, x, y)
@primitive(">")
def scheme_gt(x, y):
return _numcomp(operator.gt, x, y)
@primitive("<=")
def scheme_le(x, y):
return _numcomp(operator.le, x, y)
@primitive(">=")
def scheme_ge(x, y):
return _numcomp(operator.ge, x, y)
@primitive("even?")
def scheme_evenp(x):
_check_nums(x)
return x % 2 == 0
@primitive("odd?")
def scheme_oddp(x):
_check_nums(x)
return x % 2 == 1
@primitive("zero?")
def scheme_zerop(x):
_check_nums(x)
return x == 0
##
## Other operations
##
@primitive("atom?")
def scheme_atomp(x):
if scheme_booleanp(x):
return True
elif scheme_numberp(x):
return True
elif scheme_symbolp(x):
return True
elif scheme_nullp(x):
return True
else:
return False
@primitive("display")
def scheme_display(val):
if scheme_stringp(val):
val = eval(val)
print(str(val), end="")
return okay
@primitive("print")
def scheme_print(val):
print(str(val))
return okay
@primitive("newline")
def scheme_newline():
print()
sys.stdout.flush()
return okay
@primitive("error")
def scheme_error(msg=None):
msg = "" if msg is None else str(msg)
raise SchemeError(msg)
@primitive("exit")
def scheme_exit():
raise EOFError
##
## Turtle graphics (non-standard)
##
_turtle_screen_on = False
def turtle_screen_on():
return _turtle_screen_on
def _tscheme_prep():
global _turtle_screen_on
if not _turtle_screen_on:
_turtle_screen_on = True
turtle.title("Scheme Turtles")
turtle.mode('logo')
@primitive("forward", "fd")
def tscheme_forward(n):
"""Move the turtle forward a distance N units on the current heading."""
_check_nums(n)
_tscheme_prep()
turtle.forward(n)
return okay
@primitive("backward", "back", "bk")
def tscheme_backward(n):
"""Move the turtle backward a distance N units on the current heading,
without changing direction."""
_check_nums(n)
_tscheme_prep()
turtle.backward(n)
return okay
@primitive("left", "lt")
def tscheme_left(n):
"""Rotate the turtle's heading N degrees counterclockwise."""
_check_nums(n)
_tscheme_prep()
turtle.left(n)
return okay
@primitive("right", "rt")
def tscheme_right(n):
"""Rotate the turtle's heading N degrees clockwise."""
_check_nums(n)
_tscheme_prep()
turtle.right(n)
return okay
@primitive("circle")
def tscheme_circle(r, extent=None):
"""Draw a circle with center R units to the left of the turtle (i.e.,
right if N is negative. If EXTENT is not None, then draw EXTENT degrees
of the circle only. Draws in the clockwise direction if R is negative,
and otherwise counterclockwise, leaving the turtle facing along the
arc at its end."""
if extent is None:
_check_nums(r)
else:
_check_nums(r, extent)
_tscheme_prep()
turtle.circle(r, extent and extent)
return okay
@primitive("quartercircle")
def tscheme_quartercircle(r, extent=None):
"""Draw a circle with center R units to the left of the turtle (i.e.,
right if N is negative. If EXTENT is not None, then draw EXTENT degrees
of the circle only. Draws in the clockwise direction if R is negative,
and otherwise counterclockwise, leaving the turtle facing along the
arc at its end."""
if extent is None:
_check_nums(r)
else:
_check_nums(r, extent)
_tscheme_prep()
turtle.circle(r,90)
return okay
@primitive("setposition", "setpos", "goto")
def tscheme_setposition(x, y):
"""Set turtle's position to (X,Y), heading unchanged."""
_check_nums(x, y)
_tscheme_prep()
turtle.setposition(x, y)
return okay
@primitive("setheading", "seth")
def tscheme_setheading(h):
"""Set the turtle's heading H degrees clockwise from north (up)."""
_check_nums(h)
_tscheme_prep()
turtle.setheading(h)
return okay
@primitive("penup", "pu")
def tscheme_penup():
"""Raise the pen, so that the turtle does not draw."""
_tscheme_prep()
turtle.penup()
return okay
@primitive("pendown", "pd")
def tscheme_pendown():
"""Lower the pen, so that the turtle starts drawing."""
_tscheme_prep()
turtle.pendown()
return okay
@primitive("showturtle", "st")
def tscheme_showturtle():
"""Make turtle visible."""
_tscheme_prep()
turtle.showturtle()
return okay
@primitive("hideturtle", "ht")
def tscheme_hideturtle():
"""Make turtle visible."""
_tscheme_prep()
turtle.hideturtle()
return okay
@primitive("clear")
def tscheme_clear():
"""Clear the drawing, leaving the turtle unchanged."""
_tscheme_prep()
turtle.clear()
return okay
@primitive("color")
def tscheme_color(c):
"""Set the color to C, a string such as '"red"' or '"#ffc0c0"' (representing
hexadecimal red, green, and blue values."""
_tscheme_prep()
check_type(c, scheme_stringp, 0, "color")
turtle.color(eval(c))
return okay
@primitive("rgb")
def tscheme_rgb(red, green, blue):
"""Return a color from red, green, and blue values from 0 to 1."""
colors = (red, green, blue)
for x in colors:
if x < 0 or x > 1:
raise SchemeError("Illegal color intensity in " + str(colors))
scaled = tuple(int(x*255) for x in colors)
return '"#%02x%02x%02x"' % scaled
@primitive("begin_fill")
def tscheme_begin_fill():
"""Start a sequence of moves that outline a shape to be filled."""
_tscheme_prep()
turtle.begin_fill()
return okay
@primitive("end_fill")
def tscheme_end_fill():
"""Fill in shape drawn since last begin_fill."""
_tscheme_prep()
turtle.end_fill()
return okay
@primitive("bgcolor")
def tscheme_bgcolor(c):
_tscheme_prep()
check_type(c, scheme_stringp, 0, "bgcolor")
turtle.bgcolor(eval(c))
return okay
@primitive("exitonclick")
def tscheme_exitonclick():
"""Wait for a click on the turtle window, and then close it."""
global _turtle_screen_on
if _turtle_screen_on:
print("Close or click on turtle window to complete exit")
turtle.exitonclick()
_turtle_screen_on = False
return okay
@primitive("speed")
def tscheme_speed(s):
"""Set the turtle's animation speed as indicated by S (an integer in
0-10, with 0 indicating no animation (lines draw instantly), and 1-10
indicating faster and faster movement."""
check_type(s, scheme_integerp, 0, "speed")
_tscheme_prep()
turtle.speed(s)
return okay
@primitive("pixel")
def tscheme_pixel(x, y, c):
"""Draw a filled box of pixels (default 1 pixel) at (x, y) in color c."""
check_type(c, scheme_stringp, 0, "pixel")
color = eval(c)
canvas = turtle.getcanvas()
w, h = canvas.winfo_width(), canvas.winfo_height()
if not hasattr(tscheme_pixel, 'image'):
_tscheme_prep()
tscheme_pixel.image = tkinter.PhotoImage(width=w, height=h)
canvas.create_image((0, 0), image=tscheme_pixel.image, state="normal")
size = tscheme_pixel.size
for dx in range(size):
for dy in range(size):
screenx, screeny = x * size + dx, h-(y * size + dy)
if 0 < screenx < w and 0 < screeny < h:
tscheme_pixel.image.put(color, (screenx, screeny))
return okay
tscheme_pixel.size = 1
@primitive("pixelsize")
def tscheme_pixelsize(size):
"""Change pixel size."""
_check_nums(size)
if size <= 0 or not isinstance(size, int):
raise SchemeError("Invalid pixel size: " + str(size))
tscheme_pixel.size = size
@primitive("screen_width")
def tscheme_screen_width():
"""Screen width in pixels of the current size (default 1)."""
return turtle.getcanvas().winfo_width() // tscheme_pixel.size
@primitive("screen_height")
def tscheme_screen_width():
"""Screen height in pixels of the current size (default 1)."""
return turtle.getcanvas().winfo_height() // tscheme_pixel.size