-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplayprovider.py
65 lines (46 loc) · 1.65 KB
/
displayprovider.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
"""
Displaymodul that provides access to different kinds of displays.
Different fallback strategies are available if the hardware display is not
available.
"""
import enum
class Fallback(enum.Enum):
SIMULATOR = "simulator"
REMOTE_DISPLAY = "remote_display"
DUMMY = "dummy"
SERIAL = "serial"
class DisplayBase:
"""All displays must conform to the attributes and methods specified in
this class."""
def __init__(self, width=4, height=3):
self.width = width
self.height = height
def px(self, x, y, val):
pass
def show(self):
pass
def clear(self):
"Set all pixels to false."
for x in range(self.width):
for y in range(self.height):
self.px(x, y, False)
def get_display(width=28, height=13, fallback=Fallback.SIMULATOR):
try:
import flipdotdisplay
return flipdotdisplay.FlipDotDisplay(width=width, height=height)
except ImportError as e:
print("Unable to create FlipDotDisplay:", e,
"\nFalling back to", fallback.name)
if fallback == Fallback.SIMULATOR:
import flipdotsim
return flipdotsim.FlipDotSim(width=width, height=height)
elif fallback == Fallback.REMOTE_DISPLAY:
import net
return net.RemoteDisplay(width=width, height=height)
elif fallback == Fallback.DUMMY:
return DisplayBase(width=width, height=height)
elif fallback == Fallback.SERIAL:
import fffserial
return fffserial.SerialDisplay(width=width, height=height)
else:
raise Exception("No display and no fallback!")