This repository was archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzeldaScripts.py
More file actions
executable file
·390 lines (304 loc) · 9.14 KB
/
zeldaScripts.py
File metadata and controls
executable file
·390 lines (304 loc) · 9.14 KB
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
# Library for Zelda scripts
def _makeSigned(value, bitCount):
"""
Take an unsigned variable value and make it signed.
"""
if value < 0: return value
if value & (1 << (bitCount - 1)):
value -= 1 << bitCount
return value
class Label:
"""
Convenience class to represent a label.
"""
bmg = 0
index = 0
def __init__(self, bmg, index):
self.bmg, self.index = bmg, index
def isNull(self):
return self.index == -1 and self.bmg == -1
class Instruction:
"""
Abstract base class for Zelda PH/ST script instructions.
"""
type = None
typeID = 0
@classmethod
def disassemble(cls, value):
raise NotImplementedError
class SayInstruction(Instruction):
"""
Instruction type 1: "SAY". Causes a message to appear.
"""
type = 'SAY'
typeID = 1
@classmethod
def disassemble(cls, value):
assert value & 0xFF == 1
bmgID = (value >> 8) & 0xFF
messageID = (value >> 16) & 0xFFFF
gotoIndex = (value >> 32) & 0xFFFF
gotoBmg = (value >> 48) & 0xFF
gotoIndex = _makeSigned(gotoIndex, 16)
gotoBmg = _makeSigned(gotoBmg, 8)
obj = cls()
obj.messageBMG = bmgID
obj.messageID = messageID
obj.nextLabel = Label(gotoBmg, gotoIndex)
return obj
class SwitchInstruction(Instruction):
"""
Instruction type 2: "SW" ("switch"). Causes execution to branch to
one of any number of labels, depending on some condition.
"""
type = 'SW'
typeID = 2
@classmethod
def disassemble(cls, value):
assert value & 0xFF == 2
numLabels = (value >> 8) & 0xFF
condition = (value >> 16) & 0xFFFF
parameter = (value >> 32) & 0xFFFF
firstLabel = (value >> 48) & 0xFFFF
subclass = {
1: SwitchResponse2Instruction,
2: SwitchResponse3Instruction,
3: SwitchResponse4Instruction,
4: SwitchProgressFlagInstruction,
6: SwitchTempFlagInstruction,
8: SwitchTemp2FlagInstruction,
27: SwitchShopInstruction,
}.get(condition, cls)
obj = subclass()
obj.condition = condition
obj.firstLabel = firstLabel
obj.numLabels = numLabels
obj.parameter = parameter
return obj
def nameForBranch(self, i):
return str(i)
class _SwitchInstruction_NoParameter(SwitchInstruction):
"""
Convenience class that implements a SW instruction with no
parameter.
"""
@property
def parameter(self):
return 0
@parameter.setter
def parameter(self, value):
pass
class SwitchResponse2Instruction(_SwitchInstruction_NoParameter):
"""
A "SW" instruction that checks the player's response to a question
message with 2 possible responses.
"""
type = 'SW_RESP_2'
def nameForBranch(self, i):
return ['(first response)', '(second response)'][i]
class SwitchResponse3Instruction(_SwitchInstruction_NoParameter):
"""
A "SW" instruction that checks the player's response to a question
message with 3 possible responses.
"""
type = 'SW_RESP_3'
def nameForBranch(self, i):
return ['(first response)', '(second response)', '(third response)'][i]
class SwitchResponse4Instruction(_SwitchInstruction_NoParameter):
"""
A "SW" instruction that checks the player's response to a question
message with 4 possible responses.
"""
type = 'SW_RESP_4'
def nameForBranch(self, i):
return ['(first response)', '(second response)', '(third response)', '(fourth response)'][i]
class SwitchProgressFlagInstruction(SwitchInstruction):
"""
A "SW" instruction that checks a progress flag.
"""
type = 'SW_P_FLAG'
# .flag is an alias for .parameter
@property
def flag(self):
return self.parameter
@flag.setter
def flag(self, value):
self.parameter = value
def nameForBranch(self, i):
return ['true', 'false'][i]
class SwitchTempFlagInstruction(SwitchInstruction):
"""
A "SW" instruction that checks a temporary flag.
"""
type = 'SW_T_FLAG'
# .flag is an alias for .parameter
@property
def flag(self):
return self.parameter
@flag.setter
def flag(self, value):
self.parameter = value
def nameForBranch(self, i):
return ['true', 'false'][i]
class SwitchTemp2FlagInstruction(SwitchInstruction):
"""
A "SW" instruction that checks a temporary 2 flag.
"""
type = 'SW_T2_FLAG'
# .flag is an alias for .parameter
@property
def flag(self):
return self.parameter
@flag.setter
def flag(self, value):
self.parameter = value
def nameForBranch(self, i):
return ['true', 'false'][i]
class SwitchShopInstruction(SwitchInstruction):
"""
A "SW" instruction that switches based on the shop you're currently
in (when parameter == 0).
Parameter = 3 is used once, and... no clue what it's for.
"""
type = 'SW_SHOP'
def nameForBranch(self, i):
return [
'Castle Town Shop',
"Forest's General Store",
'Anouki General Store',
'Papuchia Shop',
'Goron Country Store',
][i]
class DoInstruction(Instruction):
"""
Instruction type 3: "DO". Causes something to actually happen.
"""
type = 'DO'
typeID = 3
@classmethod
def disassemble(cls, value):
assert value & 0xFF == 3
action = (value >> 8) & 0xFF
labelNumber = (value >> 16) & 0xFFFF
parameter = value >> 32
subclass = {
0: DoSetProgressFlagInstruction,
1: DoClearProgressFlagInstruction,
2: DoSetTemp2FlagInstruction,
3: DoClearTemp2FlagInstruction,
4: DoSetTempFlagInstruction,
5: DoClearTempFlagInstruction,
7: DoLaunchScriptInstruction,
}.get(action, cls)
if action == 9:
print(parameter)
obj = subclass()
obj.action = action
obj.labelNumber = _makeSigned(labelNumber, 16)
obj.parameter = parameter
return obj
class DoSetProgressFlagInstruction(DoInstruction):
"""
A "DO" instruction that sets a progress flag.
"""
type = 'DO_SET_P_FLAG'
# .flag is an alias for .parameter
@property
def flag(self):
return self.parameter
@flag.setter
def flag(self, value):
self.parameter = value
class DoClearProgressFlagInstruction(DoInstruction):
"""
A "DO" instruction that clears a progress flag.
"""
type = 'DO_CLR_P_FLAG'
# .flag is an alias for .parameter
@property
def flag(self):
return self.parameter
@flag.setter
def flag(self, value):
self.parameter = value
class DoSetTemp2FlagInstruction(DoInstruction):
"""
A "DO" instruction that sets a temp 2 flag.
"""
type = 'DO_SET_T2_FLAG'
# .flag is an alias for .parameter
@property
def flag(self):
return self.parameter
@flag.setter
def flag(self, value):
self.parameter = value
class DoClearTemp2FlagInstruction(DoInstruction):
"""
A "DO" instruction that clears a temp 2 flag.
"""
type = 'DO_CLR_T2_FLAG'
# .flag is an alias for .parameter
@property
def flag(self):
return self.parameter
@flag.setter
def flag(self, value):
self.parameter = value
class DoSetTempFlagInstruction(DoInstruction):
"""
A "DO" instruction that sets a temp flag.
"""
type = 'DO_SET_T_FLAG'
# .flag is an alias for .parameter
@property
def flag(self):
return self.parameter
@flag.setter
def flag(self, value):
self.parameter = value
class DoClearTempFlagInstruction(DoInstruction):
"""
A "DO" instruction that clears a temp flag.
"""
type = 'DO_CLR_T_FLAG'
# .flag is an alias for .parameter
@property
def flag(self):
return self.parameter
@flag.setter
def flag(self, value):
self.parameter = value
class DoLaunchScriptInstruction(DoInstruction):
"""
A "DO" instruction that immediately launches a different script.
"""
type = 'DO_SCRPT'
@property
def parameter(self):
return ((self.scriptID & 0xFFFF) << 16) | (self.scriptID >> 16)
@parameter.setter
def parameter(self, value):
self.scriptID = ((value & 0xFFFF) << 16) | (value >> 16)
def disassembleInstruction(instruction):
"""
Disassemble a single instruction value into an Instruction.
"""
instID = instruction & 0xFF
if instID not in (1, 2, 3):
raise ValueError(f'Unknown instruction type: {instID}')
return {
1: SayInstruction,
2: SwitchInstruction,
3: DoInstruction,
}[instID].disassemble(instruction)
def disassembleInstructions(instructions):
"""
Given a list of instruction values, return a list of Instructions.
"""
return [disassembleInstruction(inst) for inst in instructions]
def disassembleLabels(labels):
"""
Given a list of label tuples, return a list of Labels.
"""
return [Label(*L) for L in labels]