-
Notifications
You must be signed in to change notification settings - Fork 27
/
gadget_cdrom.py
executable file
·387 lines (322 loc) · 10.4 KB
/
gadget_cdrom.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
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
import os
import logging
import time
import subprocess
import spidev
import RPi.GPIO as GPIO
from PIL import Image, ImageDraw, ImageFont
FONT = "/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf"
APP_DIR = os.path.dirname(os.path.realpath(__file__))
MODE_CD = "cd"
MODE_HDD = "hdd"
MODE_USB = "usb"
MODE_SHUTDOWN = "shutdown"
ALL_MODES = [MODE_CD, MODE_HDD, MODE_USB, MODE_SHUTDOWN]
BROWSE_MODES = [MODE_CD, MODE_USB]
FILE_EXTS = {
MODE_CD: "iso",
MODE_USB: "img",
}
logging.basicConfig(level=logging.DEBUG)
LOGGER = logging.getLogger(__name__)
class SH1106:
def __init__(self):
spi = spidev.SpiDev(0, 0)
spi.max_speed_hz = 2000000
spi.mode = 0
self._spi = spi
GPIO.setmode(GPIO.BCM)
GPIO.setup(self.RESET_PIN, GPIO.OUT)
GPIO.setup(self.DC_PIN, GPIO.OUT)
GPIO.setup(self.CS_PIN, GPIO.OUT)
GPIO.setup(self.BL_PIN, GPIO.OUT)
GPIO.output(self.CS_PIN, 0)
GPIO.output(self.BL_PIN, 1)
GPIO.output(self.DC_PIN, 0)
self.reset()
self._run_commands(self.INIT_COMMANDS)
time.sleep(0.1)
self._run_command(0xAF)
def _run_command(self, command):
GPIO.output(self.DC_PIN, GPIO.LOW)
self._spi.writebytes((command,))
def _run_commands(self, commands):
for command in commands:
self._run_command(command)
def reset(self):
GPIO.output(self.RESET_PIN, GPIO.HIGH)
time.sleep(0.1)
GPIO.output(self.RESET_PIN, GPIO.LOW)
time.sleep(0.1)
GPIO.output(self.RESET_PIN, GPIO.HIGH)
time.sleep(0.1)
def display_image(self, pil_image, invert = True):
buf_size = self.HEIGHT_RES * self.WIDTH_RES // 8
buf = [0xFF] * buf_size
image_raw_pixels = pil_image.convert('1').load()
for y in range(self.HEIGHT_RES):
for x in range(self.WIDTH_RES):
if image_raw_pixels[x, y] == 0:
buf[x + (y // 8) * self.WIDTH_RES] &= ~(1 << (y % 8))
for page in range(0, self.HEIGHT_RES // 8):
self._run_command(0xB0 + page)
self._run_command(0x02)
self._run_command(0x10)
time.sleep(0.01)
GPIO.output(self.DC_PIN, GPIO.HIGH)
for i in range(0, self.WIDTH_RES):
page_data = buf[i + self.WIDTH_RES * page]
if not invert:
page_data = ~page_data
self._spi.writebytes((~page_data,))
HEIGHT_RES = 64
WIDTH_RES = 128
RESET_PIN = 25
DC_PIN = 24
CS_PIN = 8
BL_PIN = 18
INIT_COMMANDS = (0xAE,
0x02,
0x10,
0x40,
0x81,
0xA0,
0xC0,
0xA6,
0xA8,
0x3F,
0xD3,
0x00,
0xD5,
0x80,
0xD9,
0xF1,
0xDA,
0x12,
0xDB,
0x40,
0x20,
0x02,
0xA4,
0xA6,
)
class State:
def __init__(self):
self._iso_select = 0
self._mode = None
self._iso_name = None
self._iso_ls_cache = None
self.set_mode(MODE_CD)
def inserted_iso(self):
if self._iso_name is not None:
return os.path.basename(self._iso_name)
return None
def insert_iso(self):
self.remove_iso()
script = os.path.join(APP_DIR, "insert_iso.sh")
iso_list = self.iso_ls()
if not iso_list:
LOGGER.error("No ISO available.")
return
iso_name = iso_list[self.get_iso_select()]
LOGGER.info("Inserting %s: %s", self._mode, iso_name)
self._iso_name = iso_name
subprocess.check_call((script, iso_name, self._mode))
def get_iso_select(self):
return self._iso_select
def set_iso_select(self, select):
self._iso_select = select
def set_iso_select_next(self):
if self._iso_select == len(self.iso_ls()) - 1:
return False
self._iso_select += 1
return True
def set_iso_select_prev(self):
if self._iso_select == 0:
return False
self._iso_select -= 1
return True
def iso_ls(self, paths=True):
if self._mode not in BROWSE_MODES:
raise Exception("invalid mode", self._mode)
if self._iso_ls_cache and self._iso_ls_cache_type == self._mode:
if paths:
return self._iso_ls_cache
return [os.path.basename(x) for x in self._iso_ls_cache]
script = os.path.join(APP_DIR, "list_iso.sh")
output = subprocess.check_output((script, FILE_EXTS[self._mode]))
iso_list = output.decode().split("\0")
iso_list = sorted(filter(len, iso_list))
if len(iso_list) < self._iso_select:
self._iso_select = 0
self._iso_ls_cache_type = self._mode
self._iso_ls_cache = iso_list
if paths:
return iso_list
LOGGER.debug("isolist: %r", [os.path.basename(x) for x in self._iso_ls_cache])
return [os.path.basename(x) for x in self._iso_ls_cache]
def get_mode(self):
return self._mode
def set_mode(self, mode):
if mode not in ALL_MODES:
raise Exception("invalid mode", mode)
self._iso_name = None
script = os.path.join(APP_DIR, "mode.sh")
subprocess.check_call([script, mode])
self._mode = mode
self._iso_ls_cache = None
def toogle_mode(self):
mode = self.get_mode()
if mode == MODE_CD:
self.set_mode(MODE_USB)
elif mode == MODE_USB:
self.set_mode(MODE_HDD)
else:
self.set_mode(MODE_CD)
return self.get_mode()
def remove_iso(self):
if self._mode not in BROWSE_MODES:
return
self._iso_name = None
script = os.path.join(APP_DIR, "remove_iso.sh")
subprocess.check_call((script,))
def shutdown_prepare(self):
self.remove_iso()
self.set_mode(MODE_SHUTDOWN)
def shutdown(self):
script = os.path.join(APP_DIR, "shutdown.sh")
subprocess.check_call((script,))
class Display:
def __init__(self):
disp = SH1106()
self._disp = disp
self._font = ImageFont.truetype(FONT, 13)
self._font_hdd = ImageFont.truetype(FONT, 52)
def refresh(self, state):
if state.get_mode() not in ALL_MODES:
raise Exception("invalid mode", state.get_mode())
mode_text = state.get_mode().upper()
image = Image.new('1', (self._disp.WIDTH_RES, self._disp.HEIGHT_RES), "WHITE")
draw = ImageDraw.Draw(image)
if state.get_mode() in (MODE_HDD, MODE_SHUTDOWN):
draw.text((0,0), mode_text, font=self._font_hdd)
self._disp.display_image(image)
return
iso_name = state.inserted_iso()
if iso_name is None:
iso_name = ""
iso_choice = ["", "", ""]
iso_select = state.get_iso_select()
iso_ls = state.iso_ls(paths=False)
if len(iso_ls) == 0:
iso_choice[1] = " No image"
else:
iso_choice[1] = ">" + iso_ls[iso_select]
try:
if iso_select > 0:
iso_choice[0] = " " + iso_ls[iso_select - 1]
except IndexError:
pass
try:
iso_choice[2] = " " + iso_ls[iso_select + 1]
except IndexError:
pass
draw.text((0,0), mode_text + " •" + iso_name, font = self._font)
draw.text((0,15), iso_choice[0], font = self._font)
draw.text((0,30), iso_choice[1], font = self._font)
draw.text((0,45), iso_choice[2], font = self._font)
self._disp.display_image(image)
def clear(self):
image = Image.new('1', (self._disp.WIDTH_RES, self._disp.HEIGHT_RES), "WHITE")
self._disp.display_image(image)
class WVSButtons:
def __init__(self):
self._button_last_time = 0
self._button_last = 0
for pin in self.PINS:
GPIO.setup(pin, GPIO.IN, pull_up_down=GPIO.PUD_UP)
def wait_on_button(self):
while True:
time.sleep(0.01)
for pin in self.PINS:
if not GPIO.input(pin):
button_time_d = time.time() - self._button_last_time
if self._button_last == pin and button_time_d > 0 and button_time_d < 0.1:
continue
self._button_last_time = time.time()
self._button_last = pin
try:
return self.BUTTON_NAMES[pin]
except KeyError:
pass
KEY1 = 21
KEY2 = 20
KEY3 = 16
J_UP = 6
J_DOWN = 19
J_LEFT = 5
J_RIGHT = 26
J_PRESS = 13
PINS = (KEY1,
KEY2,
KEY3,
J_UP,
J_DOWN,
J_LEFT,
J_RIGHT,
J_PRESS,
)
BUTTON_NAMES = {
KEY1 : "mount",
KEY2 : "umount",
KEY3 : "mode",
J_UP : "up",
J_DOWN : "down",
J_LEFT : "left",
}
class Main:
def __init__(self):
self._state = State()
self._display = Display()
self._display.clear()
self._display.refresh(self._state)
self._buttons = WVSButtons()
self._BUTTON_FUNC = {
"up" : self._button_up,
"down" : self._button_down,
"mount" : self._button_mount,
"umount" : self._button_umount,
"mode" : self._button_mode,
"left" : self._button_shutdown,
}
def main(self):
try:
while True:
button = self._buttons.wait_on_button()
try:
f = self._BUTTON_FUNC[button]
except KeyError:
pass
LOGGER.debug("Pressed %s", button)
f()
self._display.refresh(self._state)
finally:
self._display.clear()
def _button_up(self):
self._state.set_iso_select_prev()
def _button_down(self):
self._state.set_iso_select_next()
def _button_mode(self):
self._state.toogle_mode()
def _button_mount(self):
self._state.insert_iso()
def _button_umount(self):
self._state.remove_iso()
def _button_shutdown(self):
self._state.shutdown_prepare()
self._display.refresh(self._state)
self._state.shutdown()
if __name__ == "__main__":
Main().main()