-
Notifications
You must be signed in to change notification settings - Fork 1
/
cmu_cs3_graphics.py
104 lines (97 loc) · 3.79 KB
/
cmu_cs3_graphics.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
from cmu_graphics.cmu_graphics import *
from cmu_graphics.shape_logic import PILWrapper as CMUImage
import threading, traceback, types, inspect, copy, sys
import atexit
class MvcException(Exception): pass
class AppWrapper(object):
readOnlyAttrs = set(['bottom','centerX', 'centerY',
'getTextInput', 'left', 'quit', 'right',
'run', 'stop', 'top', 'setMaxShapeCount' ])
readWriteAttrs = set(['height', 'paused', 'stepsPerSecond',
'title', 'width', 'mode', 'background'])
allAttrs = readOnlyAttrs | readWriteAttrs
def __init__(self, app):
self._app = app
app._app = app
app.hasException = False
app.mode = ''
def __dir__(self):
fields = copy.copy(AppWrapper.allAttrs)
for field in self.__dict__:
if field not in self._app.__dict__:
fields.add(field)
return sorted(fields)
def __getattribute__(self, attr):
if (attr == '_app'):
return super().__getattribute__(attr)
if (attr in AppWrapper.allAttrs):
result = self._app.__getattribute__(attr)
else:
result = super().__getattribute__(attr)
return result
def __setattr__(self, attr, value):
if (attr != '_app') and (self._app.inRedrawAll):
raise MvcException(f'Cannot change app.{attr} in redrawAll')
if (attr in AppWrapper.readOnlyAttrs):
raise Exception(f'app.{attr} is read-only')
elif (attr in AppWrapper.readWriteAttrs):
return self._app.__setattr__(attr, value)
else:
return super().__setattr__(attr, value)
def callUserFn(self, fnName, args):
# replacement for App.callUserFn()
fnName0 = fnName
if app.hasException: return
if app.mode not in [None, '']:
fnName = app.mode + fnName[0].upper() + fnName[1:]
if fnName in self.userGlobals:
(self.userGlobals[fnName])(app.appWrapper, *args)
if (not fnName0.endswith('redrawAll')): redrawAllWrapper(self)
def redrawAllWrapper(app):
app.group.clear()
try: app.inRedrawAll = True; callUserFn(app, 'redrawAll', [ ])
finally: app.inRedrawAll = False
def runApp(width=400, height=400, **kwargs):
kwargs.update({'width': width, 'height': height})
for kw in kwargs:
setattr(app.appWrapper, kw, kwargs[kw])
callUserFn(app, 'onAppStart', [ ])
redrawAllWrapper(app)
run()
def setupMvc():
global app
app = app._app
atexit.unregister(run)
exports = ['MvcException', 'runApp', 'gradient', 'rgb', 'Sound', 'CMUImage' ]
app.appWrapper = AppWrapper(app)
app.inRedrawAll = False
shapes = [ Arc, Circle, Image, Label, Line, Oval,
Polygon, Rect, RegularPolygon, Star, ]
def makeDrawFn(shape):
def drawFn(*args, **kwargs):
if (not app.inRedrawAll) and (not app.hasException):
raise MvcException('Cannot draw outside of redrawAll()')
shape(*args, **kwargs)
return drawFn
def makeInvisibleConstructor(shape):
def constructor(*args, **kwargs):
result = shape(*args, **kwargs)
result.visible = False
return result
return constructor
def delUserGlobal(var):
if (var in app.userGlobals):
del app.userGlobals[var]
def addExportedGlobal(var, value):
globals()[var] = value
exports.append(var)
for shape in shapes:
delUserGlobal(shape.__name__)
addExportedGlobal(shape.__name__ + 'Shape', makeInvisibleConstructor(shape))
addExportedGlobal('draw' + shape.__name__, makeDrawFn(shape))
App.callUserFn = callUserFn
for var in ['Group', 'app']:
delUserGlobal(var) # de-globalize these if present
global __all__
__all__ = exports
setupMvc()