-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtutorial.py
362 lines (306 loc) · 10.1 KB
/
tutorial.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
import json
import os.path
import struct
import tkinter
from dataclasses import dataclass
from typing import Any, List
with open("The Sword of Kumdor.hdm", "rb") as f:
rom = f.read()
class Cursor(bytearray):
ptr: int
def __init__(self, buf):
super().__init__(buf)
self.ptr = 0
def seek(self, i):
self.ptr = i
def skip(self, i):
self.ptr += i
def read(self, width, format):
(val,) = struct.unpack(format, rom[self.ptr : self.ptr + width])
self.ptr += width
return val
i8 = lambda self: self.read(1, "<b")
u8 = lambda self: self.read(1, "<B")
i16 = lambda self: self.read(2, "<h")
u16 = lambda self: self.read(2, "<H")
root = tkinter.Tk()
scale = 2
canvas = tkinter.Canvas(root, bg="black", height=400 * scale, width=640 * scale)
rom = Cursor(rom)
rom.seek(0x2C000)
def draw_group():
ptr_group = rom.ptr
i = -1
lines = []
pen = "#004040"
while True:
i += 1
ptr0 = rom.ptr
x0 = x = rom.u16()
y0 = y = rom.u16()
if x == 0x5555:
# End
rom.skip(-4)
return None
if x // 256 == 0x96:
op = rom.u8() # IDK what this byte is
if y == 0x5B30:
pen = "#00a000"
elif op == 1:
pen = "#800000"
else:
pen = "#004080"
print(f"{i:4} {ptr0:5x} {x0:4x} {y0:4x} {op:02x} @@@@@@@")
lines.append(MagicLine(bytes(rom[rom.ptr - 5 : rom.ptr])))
continue
if x == 0xC000:
rom.skip(-2)
group_rom = rom[ptr_group : rom.ptr]
while rom[rom.ptr] == 0:
rom.skip(1)
# print(f"{i:4} {ptr0:5x} {x0:4x} {y0:4x} ----------")
return (ptr_group, group_rom, lines)
segments = []
x0, y0 = x, y
while True:
dx = rom.i8()
dy = rom.i8()
if dx == dy == 0:
break
obj = canvas.create_line(
x * scale,
y * scale,
(x + dx) * scale,
(y + dy) * scale,
fill=pen,
width=1 * scale,
)
segment = Segment(dx, dy, obj)
segments.append(segment)
x += dx
y += dy
# print(f"{i:4} {ptr0:5x} {x0:4x} {y0:4x} {len(segments):4}")
lines.append(Line(x0, y0, segments))
@dataclass
class Segment:
dx: int
dy: int
obj: Any
def encode(self) -> bytes:
return struct.pack("bb", self.dx, self.dy)
def sgn(x):
return (x > 0) - (x < 0)
@dataclass
class Line:
x0: int
y0: int
segments: List[Segment]
def encode(self) -> bytes:
bs = bytearray(struct.pack("HH", self.x0, self.y0))
last = None
for s in self.segments:
if (
last
and s.dx * last.dy == last.dx * s.dy
and sgn(s.dx) == sgn(last.dx)
and sgn(s.dy) == sgn(last.dy)
):
# merge 'em
tx = last.dx + s.dx
ty = last.dy + s.dy
bs[-2:] = struct.pack("bb", tx, ty)
last = Segment(tx, ty, None)
else:
bs += struct.pack("bb", s.dx, s.dy)
last = s
return bs + b"\0\0"
def to_json(self):
return {
"x0": self.x0,
"y0": self.y0,
"segments": [[s.dx, s.dy] for s in self.segments],
}
@dataclass
class MagicLine:
magic: bytes
def encode(self) -> bytes:
return self.magic
def to_json(self):
return {"magic": list(self.magic)}
@dataclass
class Group:
ptr: int
magic: bytes
lines: List[Line]
def encode(self) -> bytes:
return self.magic + b"".join(l.encode() for l in self.lines) + b"\x00\xc0"
CYAN = "#00c0ff"
GREEN = "#00ff00"
class Sketch:
mousedown: bool = False
segments: List[Segment]
lines: List[Line]
ptr_group: int
group_rom: bytearray
rom_lines: List[Line]
groups: List[Group]
x0: int
y0: int
x: int
y: int
done: bool
group_num: int = 0
pen: str = CYAN
def __init__(self):
self.mousedown = False
self.segments = []
self.lines = []
self.groups = []
self.done = False
self.text = None
self.next_group()
def line(self, x, y, dx, dy, fill=None):
return canvas.create_line(
x * scale,
y * scale,
(x + dx) * scale,
(y + dy) * scale,
fill=fill or self.pen,
width=2 * scale,
)
def next_group(self):
self.group_num += 1
canvas.delete("all")
if maybe := draw_group():
self.ptr_group, self.group_rom, self.rom_lines = maybe
else:
with open("tutorial/output.hdm", "wb") as f:
copy = rom[:]
for g in self.groups:
ge = g.encode()
copy[g.ptr : g.ptr + len(ge)] = ge
f.write(copy)
print("Wrote rom to tutorial/output.hdm")
self.done = True
if os.path.exists(f"tutorial/tut{self.group_num}.json"):
with open(f"tutorial/tut{self.group_num}.json") as f:
line_data = json.load(f)
for line in line_data:
segments = []
if "magic" in line:
magic = bytes([0x96 if b == 0x98 else b for b in line["magic"]])
self.process_magic(magic)
self.lines.append(MagicLine(magic))
else:
x0 = x = line["x0"]
y0 = y = line["y0"]
for [dx, dy] in line["segments"]:
obj = self.line(x, y, dx, dy)
x += dx
y += dy
segments.append(Segment(dx, dy, obj))
self.lines.append(Line(x0, y0, segments))
self.report()
def save_group(self):
magic = bytes(self.group_rom[0:5])
group = Group(self.ptr_group, magic, self.lines)
if len(group.encode()) > len(self.group_rom):
print(f"Warning: {len(group.encode())} > {len(self.group_rom)} bytes")
self.groups.append(group)
if self.lines:
with open(f"tutorial/tut{self.group_num}.json", "w") as f:
json.dump([line.to_json() for line in self.lines], f)
self.lines = []
self.segments = []
def undo(self):
while self.lines:
last = self.lines.pop()
if isinstance(last, MagicLine):
continue
for s in last.segments:
canvas.delete(s.obj)
break
self.report()
def process_magic(self, magic):
print(magic)
if magic[4] == 0x01:
print("RED")
self.pen = "#ff6000"
elif magic[3] == 0x5B:
self.pen = GREEN
else:
self.pen = CYAN
def key(self, event):
if event.char == "j" and not self.done:
self.save_group()
self.next_group()
elif event.char == "]":
while self.lines:
self.undo()
elif event.char == "z" and self.lines:
self.undo()
elif event.char == "c":
self.lines = []
for line in self.rom_lines:
segs = []
if isinstance(line, MagicLine):
self.process_magic(line.magic)
self.lines.append(line)
continue
x = line.x0
y = line.y0
for seg in line.segments:
obj = self.line(x, y, seg.dx, seg.dy)
x += seg.dx
y += seg.dy
segs.append(Segment(seg.dx, seg.dy, obj))
self.lines.append(Line(line.x0, line.y0, segs))
elif event.char == "1":
self.pen = CYAN
self.lines.append(MagicLine(b"\x91\x96\x30\x0a\x00"))
elif event.char == "2":
self.pen = GREEN
self.lines.append(MagicLine(b"\x91\x96\x30\x5b\x00"))
else:
print(event)
def move(self, event):
down = event.state & 256 != 0
if down and not self.mousedown:
self.mousedown = True
self.x0 = self.x = event.x // scale
self.y0 = self.y = event.y // scale
if down and self.mousedown:
dx = (newx := event.x // scale) - self.x
dy = (newy := event.y // scale) - self.y
if dx**2 + dy**2 > 4**2:
obj = self.line(self.x, self.y, dx, dy)
self.segments.append(Segment(dx, dy, obj))
self.x = newx
self.y = newy
if not down and self.mousedown:
if not self.segments: # dot
obj = self.line(self.x, self.y, 2, 0)
self.segments.append(Segment(2, 0, obj))
self.lines.append(Line(self.x0, self.y0, self.segments))
self.report()
self.segments = []
self.mousedown = False
def report(self):
if self.text: canvas.delete(self.text)
self.text = canvas.create_text(
10,
10,
anchor="nw",
text=f"Page {self.group_num}, size: {sum(len(l.encode()) for l in self.lines)} / {len(self.group_rom)}",
fill="white",
font="Helvetica 15",
)
# add to window and show
canvas.pack()
sketch = Sketch()
canvas.bind("<Motion>", sketch.move)
canvas.bind("<ButtonPress-1>", sketch.move)
canvas.bind("<ButtonRelease-1>", sketch.move)
canvas.bind("<Key>", sketch.key)
canvas.focus_set()
root.mainloop()