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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
|
DisplayOptionMenu_:
call InitOptionsMenu
.optionMenuLoop
call JoypadLowSensitivity
ldh a, [hJoy5]
and START | B_BUTTON
jr nz, .exitOptionMenu
call OptionsControl
jr c, .dpadDelay
call GetOptionPointer
jr c, .exitOptionMenu
.dpadDelay
call OptionsMenu_UpdateCursorPosition
call DelayFrame
call DelayFrame
call DelayFrame
jr .optionMenuLoop
.exitOptionMenu
ret
GetOptionPointer:
ld a, [wOptionsCursorLocation]
ld e, a
ld d, $0
ld hl, OptionMenuJumpTable
add hl, de
add hl, de
ld a, [hli]
ld h, [hl]
ld l, a
jp hl ; jump to the function for the current highlighted option
OptionMenuJumpTable:
dw OptionsMenu_TextSpeed
dw OptionsMenu_BattleAnimations
dw OptionsMenu_BattleStyle
dw OptionsMenu_SpeakerSettings
dw OptionsMenu_GBPrinterBrightness
dw OptionsMenu_Dummy
dw OptionsMenu_Dummy
dw OptionsMenu_Cancel
OptionsMenu_TextSpeed:
call GetTextSpeed
ldh a, [hJoy5]
bit 4, a ; right
jr nz, .pressedRight
bit 5, a
jr nz, .pressedLeft
jr .nonePressed
.pressedRight
ld a, c
cp $2
jr c, .increase
ld c, $ff
.increase
inc c
ld a, e
jr .save
.pressedLeft
ld a, c
and a
jr nz, .decrease
ld c, $3
.decrease
dec c
ld a, d
.save
ld b, a
ld a, [wOptions]
and $f0
or b
ld [wOptions], a
.nonePressed
ld b, $0
ld hl, TextSpeedStringsPointerTable
add hl, bc
add hl, bc
ld e, [hl]
inc hl
ld d, [hl]
hlcoord 14, 2
call PlaceString
and a
ret
TextSpeedStringsPointerTable:
dw FastText
dw MidText
dw SlowText
FastText:
db "FAST@"
MidText:
db "MID @"
SlowText:
db "SLOW@"
GetTextSpeed:
ld a, [wOptions]
and $f
cp $5
jr z, .slowTextOption
cp $1
jr z, .fastTextOption
; mid text option
ld c, $1
lb de, 1, 5
ret
.slowTextOption
ld c, $2
lb de, 3, 1
ret
.fastTextOption
ld c, $0
lb de, 5, 3
ret
OptionsMenu_BattleAnimations:
ldh a, [hJoy5]
and D_RIGHT | D_LEFT
jr nz, .asm_41d33
ld a, [wOptions]
and $80 ; mask other bits
jr .asm_41d3b
.asm_41d33
ld a, [wOptions]
xor $80
ld [wOptions], a
.asm_41d3b
ld bc, $0
sla a
rl c
ld hl, AnimationOptionStringsPointerTable
add hl, bc
add hl, bc
ld e, [hl]
inc hl
ld d, [hl]
hlcoord 14, 4
call PlaceString
and a
ret
AnimationOptionStringsPointerTable:
dw AnimationOnText
dw AnimationOffText
AnimationOnText:
db "ON @"
AnimationOffText:
db "OFF@"
OptionsMenu_BattleStyle:
ldh a, [hJoy5]
and D_LEFT | D_RIGHT
jr nz, .asm_41d6b
ld a, [wOptions]
and $40 ; mask other bits
jr .asm_41d73
.asm_41d6b
ld a, [wOptions]
xor $40
ld [wOptions], a
.asm_41d73
ld bc, $0
sla a
sla a
rl c
ld hl, BattleStyleOptionStringsPointerTable
add hl, bc
add hl, bc
ld e, [hl]
inc hl
ld d, [hl]
hlcoord 14, 6
call PlaceString
and a
ret
BattleStyleOptionStringsPointerTable:
dw BattleStyleShiftText
dw BattleStyleSetText
BattleStyleShiftText:
db "SHIFT@"
BattleStyleSetText:
db "SET @"
OptionsMenu_SpeakerSettings:
ld a, [wOptions]
and $30
swap a
ld c, a
ldh a, [hJoy5]
bit 4, a
jr nz, .pressedRight
bit 5, a
jr nz, .pressedLeft
jr .asm_41dca
.pressedRight
ld a, c
inc a
and $3
jr .asm_41dba
.pressedLeft
ld a, c
dec a
and $3
.asm_41dba
ld c, a
swap a
ld b, a
xor a
ldh [rNR51], a
ld a, [wOptions]
and $cf
or b
ld [wOptions], a
.asm_41dca
ld b, $0
ld hl, SpeakerOptionStringsPointerTable
add hl, bc
add hl, bc
ld e, [hl]
inc hl
ld d, [hl]
hlcoord 8, 8
call PlaceString
and a
ret
SpeakerOptionStringsPointerTable:
dw MonoSoundText
dw Earphone1SoundText
dw Earphone2SoundText
dw Earphone3SoundText
MonoSoundText:
db "MONO @"
Earphone1SoundText:
db "EARPHONE1@"
Earphone2SoundText:
db "EARPHONE2@"
Earphone3SoundText:
db "EARPHONE3@"
OptionsMenu_GBPrinterBrightness:
call Func_41e7b
ldh a, [hJoy5]
bit 4, a
jr nz, .pressedRight
bit 5, a
jr nz, .pressedLeft
jr .asm_41e32
.pressedRight
ld a, c
cp $4
jr c, .asm_41e22
ld c, $ff
.asm_41e22
inc c
ld a, e
jr .asm_41e2e
.pressedLeft
ld a, c
and a
jr nz, .asm_41e2c
ld c, $5
.asm_41e2c
dec c
ld a, d
.asm_41e2e
ld b, a
ld [wPrinterSettings], a
.asm_41e32
ld b, $0
ld hl, GBPrinterOptionStringsPointerTable
add hl, bc
add hl, bc
ld e, [hl]
inc hl
ld d, [hl]
hlcoord 8, 10
call PlaceString
and a
ret
GBPrinterOptionStringsPointerTable:
dw LightestPrintText
dw LighterPrintText
dw NormalPrintText
dw DarkerPrintText
dw DarkestPrintText
LightestPrintText:
db "LIGHTEST@"
LighterPrintText:
db "LIGHTER @"
NormalPrintText:
db "NORMAL @"
DarkerPrintText:
db "DARKER @"
DarkestPrintText:
db "DARKEST @"
Func_41e7b:
ld a, [wPrinterSettings]
and a
jr z, .asm_41e93
cp $20
jr z, .asm_41e99
cp $60
jr z, .asm_41e9f
cp $7f
jr z, .asm_41ea5
ld c, $2
lb de, $20, $60
ret
.asm_41e93
ld c, $0
lb de, $7f, $20
ret
.asm_41e99
ld c, $1
lb de, $0, $40
ret
.asm_41e9f
ld c, $3
lb de, $40, $7f
ret
.asm_41ea5
ld c, $4
lb de, $60, $0
ret
OptionsMenu_Dummy:
and a
ret
OptionsMenu_Cancel:
ldh a, [hJoy5]
and A_BUTTON
jr nz, .pressedCancel
and a
ret
.pressedCancel
scf
ret
OptionsControl:
ld hl, wOptionsCursorLocation
ldh a, [hJoy5]
cp D_DOWN
jr z, .pressedDown
cp D_UP
jr z, .pressedUp
and a
ret
.pressedDown
ld a, [hl]
cp $7
jr nz, .doNotWrapAround
ld [hl], $0
scf
ret
.doNotWrapAround
cp $4
jr c, .regularIncrement
ld [hl], $6
.regularIncrement
inc [hl]
scf
ret
.pressedUp
ld a, [hl]
cp $7
jr nz, .doNotMoveCursorToPrintOption
ld [hl], $4
scf
ret
.doNotMoveCursorToPrintOption
and a
jr nz, .regularDecrement
ld [hl], $8
.regularDecrement
dec [hl]
scf
ret
OptionsMenu_UpdateCursorPosition:
hlcoord 1, 1
ld de, SCREEN_WIDTH
ld c, 16
.loop
ld [hl], " "
add hl, de
dec c
jr nz, .loop
hlcoord 1, 2
ld bc, SCREEN_WIDTH * 2
ld a, [wOptionsCursorLocation]
call AddNTimes
ld [hl], "▶"
ret
InitOptionsMenu:
hlcoord 0, 0
lb bc, SCREEN_HEIGHT - 2, SCREEN_WIDTH - 2
call TextBoxBorder
hlcoord 2, 2
ld de, AllOptionsText
call PlaceString
hlcoord 2, 16
ld de, OptionMenuCancelText
call PlaceString
xor a
ld [wOptionsCursorLocation], a
ld c, 5 ; the number of options to loop through
.loop
push bc
call GetOptionPointer ; updates the next option
pop bc
ld hl, wOptionsCursorLocation
inc [hl] ; moves the cursor for the highlighted option
dec c
jr nz, .loop
xor a
ld [wOptionsCursorLocation], a
inc a
ldh [hAutoBGTransferEnabled], a
call Delay3
ret
AllOptionsText:
db "TEXT SPEED :"
next "ANIMATION :"
next "BATTLESTYLE:"
next "SOUND:"
next "PRINT:@"
OptionMenuCancelText:
db "CANCEL@"
|