2014-02-01 17:26:39 -08:00
|
|
|
JoypadInt:: ; 92e
|
2013-02-19 20:57:07 -08:00
|
|
|
; Replaced by Joypad, called from VBlank instead of the useless
|
|
|
|
; joypad interrupt.
|
|
|
|
|
|
|
|
; This is a placeholder in case the interrupt is somehow enabled.
|
|
|
|
reti
|
|
|
|
; 92f
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
ClearJoypad:: ; 92f
|
2013-02-19 20:57:07 -08:00
|
|
|
xor a
|
|
|
|
; Pressed this frame (delta)
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoyPressed], a
|
2013-02-19 20:57:07 -08:00
|
|
|
; Currently pressed
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoyDown], a
|
2013-02-19 20:57:07 -08:00
|
|
|
ret
|
|
|
|
; 935
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Joypad:: ; 935
|
2013-02-19 20:57:07 -08:00
|
|
|
; Read the joypad register and translate it to something more
|
|
|
|
; workable for use in-game. There are 8 buttons, so we can use
|
|
|
|
; one byte to contain all player input.
|
|
|
|
|
|
|
|
; Updates:
|
|
|
|
|
2013-03-20 19:55:09 -07:00
|
|
|
; hJoypadReleased: released this frame (delta)
|
|
|
|
; hJoypadPressed: pressed this frame (delta)
|
|
|
|
; hJoypadDown: currently pressed
|
|
|
|
; hJoypadSum: pressed so far
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
; Any of these three bits can be used to disable input.
|
2015-02-10 15:14:41 -08:00
|
|
|
ld a, [wcfbe]
|
2013-02-19 20:57:07 -08:00
|
|
|
and %11010000
|
|
|
|
ret nz
|
|
|
|
|
|
|
|
; If we're saving, input is disabled.
|
2015-02-10 15:14:41 -08:00
|
|
|
ld a, [wc2cd]
|
2013-02-19 20:57:07 -08:00
|
|
|
and a
|
|
|
|
ret nz
|
|
|
|
|
|
|
|
; We can only get four inputs at a time.
|
|
|
|
; We take d-pad first for no particular reason.
|
2015-10-16 10:35:43 -07:00
|
|
|
ld a, R_DPAD
|
2013-02-19 23:46:40 -08:00
|
|
|
ld [rJOYP], a
|
2013-02-19 20:57:07 -08:00
|
|
|
; Read twice to give the request time to take.
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 2
|
2013-02-19 23:46:40 -08:00
|
|
|
ld a, [rJOYP]
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
; The Joypad register output is in the lo nybble (inversed).
|
|
|
|
; We make the hi nybble of our new container d-pad input.
|
|
|
|
cpl
|
|
|
|
and $f
|
|
|
|
swap a
|
|
|
|
|
|
|
|
; We'll keep this in b for now.
|
|
|
|
ld b, a
|
|
|
|
|
|
|
|
; Buttons make 8 total inputs (A, B, Select, Start).
|
|
|
|
; We can fit this into one byte.
|
2015-10-16 10:35:43 -07:00
|
|
|
ld a, R_BUTTONS
|
2013-02-19 23:46:40 -08:00
|
|
|
ld [rJOYP], a
|
2013-02-19 20:57:07 -08:00
|
|
|
; Wait for input to stabilize.
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 6
|
2013-02-19 23:46:40 -08:00
|
|
|
ld a, [rJOYP]
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2013-02-19 20:57:07 -08:00
|
|
|
; Buttons take the lo nybble.
|
|
|
|
cpl
|
|
|
|
and $f
|
|
|
|
or b
|
|
|
|
ld b, a
|
|
|
|
|
|
|
|
; Reset the joypad register since we're done with it.
|
|
|
|
ld a, $30
|
2013-02-19 23:46:40 -08:00
|
|
|
ld [rJOYP], a
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
; To get the delta we xor the last frame's input with the new one.
|
2013-03-20 19:55:09 -07:00
|
|
|
ld a, [hJoypadDown] ; last frame
|
2013-02-19 20:57:07 -08:00
|
|
|
ld e, a
|
|
|
|
xor b
|
|
|
|
ld d, a
|
|
|
|
; Released this frame:
|
|
|
|
and e
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoypadReleased], a
|
2013-02-19 20:57:07 -08:00
|
|
|
; Pressed this frame:
|
|
|
|
ld a, d
|
|
|
|
and b
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoypadPressed], a
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
; Add any new presses to the list of collective presses:
|
|
|
|
ld c, a
|
2013-03-20 19:55:09 -07:00
|
|
|
ld a, [hJoypadSum]
|
2013-02-19 20:57:07 -08:00
|
|
|
or c
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoypadSum], a
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
; Currently pressed:
|
|
|
|
ld a, b
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoypadDown], a
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
; Now that we have the input, we can do stuff with it.
|
|
|
|
|
|
|
|
; For example, soft reset:
|
2013-09-07 20:49:20 -07:00
|
|
|
and A_BUTTON | B_BUTTON | SELECT | START
|
|
|
|
cp A_BUTTON | B_BUTTON | SELECT | START
|
2013-07-26 20:49:33 -07:00
|
|
|
jp z, Reset
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
ret
|
|
|
|
; 984
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
GetJoypad:: ; 984
|
2013-03-20 19:55:09 -07:00
|
|
|
; Update mirror joypad input from hJoypadDown (real input)
|
2013-02-19 20:57:07 -08:00
|
|
|
|
2013-03-20 19:55:09 -07:00
|
|
|
; hJoyReleased: released this frame (delta)
|
|
|
|
; hJoyPressed: pressed this frame (delta)
|
|
|
|
; hJoyDown: currently pressed
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
; bit 0 A
|
|
|
|
; 1 B
|
|
|
|
; 2 SELECT
|
|
|
|
; 3 START
|
|
|
|
; 4 RIGHT
|
|
|
|
; 5 LEFT
|
|
|
|
; 6 UP
|
|
|
|
; 7 DOWN
|
|
|
|
|
|
|
|
push af
|
|
|
|
push hl
|
|
|
|
push de
|
|
|
|
push bc
|
|
|
|
|
|
|
|
; The player input can be automated using an input stream.
|
|
|
|
; See more below.
|
|
|
|
ld a, [InputType]
|
|
|
|
cp a, AUTO_INPUT
|
|
|
|
jr z, .auto
|
|
|
|
|
|
|
|
; To get deltas, take this and last frame's input.
|
2013-03-20 19:55:09 -07:00
|
|
|
ld a, [hJoypadDown] ; real input
|
2013-02-19 20:57:07 -08:00
|
|
|
ld b, a
|
2013-03-20 19:55:09 -07:00
|
|
|
ld a, [hJoyDown] ; last frame mirror
|
2013-02-19 20:57:07 -08:00
|
|
|
ld e, a
|
|
|
|
|
|
|
|
; Released this frame:
|
|
|
|
xor b
|
|
|
|
ld d, a
|
|
|
|
and e
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoyReleased], a
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
; Pressed this frame:
|
|
|
|
ld a, d
|
|
|
|
and b
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoyPressed], a
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
; It looks like the collective presses got commented out here.
|
|
|
|
ld c, a
|
|
|
|
|
|
|
|
; Currently pressed:
|
|
|
|
ld a, b
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoyDown], a ; frame input
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
.quit
|
|
|
|
pop bc
|
|
|
|
pop de
|
|
|
|
pop hl
|
|
|
|
pop af
|
|
|
|
ret
|
|
|
|
|
|
|
|
.auto
|
|
|
|
; Use a predetermined input stream (used in the catching tutorial).
|
|
|
|
|
|
|
|
; Stream format: [input][duration]
|
|
|
|
; A value of $ff will immediately end the stream.
|
|
|
|
|
|
|
|
; Read from the input stream.
|
2013-03-20 19:55:09 -07:00
|
|
|
ld a, [hROMBank]
|
2013-02-19 20:57:07 -08:00
|
|
|
push af
|
|
|
|
ld a, [AutoInputBank]
|
|
|
|
rst Bankswitch
|
|
|
|
|
|
|
|
ld hl, AutoInputAddress
|
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
|
|
|
|
|
|
|
; We only update when the input duration has expired.
|
|
|
|
ld a, [AutoInputLength]
|
|
|
|
and a
|
|
|
|
jr z, .updateauto
|
|
|
|
|
|
|
|
; Until then, don't change anything.
|
|
|
|
dec a
|
|
|
|
ld [AutoInputLength], a
|
|
|
|
pop af
|
|
|
|
rst Bankswitch
|
|
|
|
jr .quit
|
|
|
|
|
|
|
|
|
|
|
|
.updateauto
|
|
|
|
; An input of $ff will end the stream.
|
|
|
|
ld a, [hli]
|
|
|
|
cp a, $ff
|
|
|
|
jr z, .stopauto
|
|
|
|
ld b, a
|
|
|
|
|
|
|
|
; A duration of $ff will end the stream indefinitely.
|
|
|
|
ld a, [hli]
|
|
|
|
ld [AutoInputLength], a
|
|
|
|
cp a, $ff
|
|
|
|
jr nz, .next
|
|
|
|
|
|
|
|
; The current input is overwritten.
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 2
|
2013-02-19 20:57:07 -08:00
|
|
|
dec hl
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2013-02-19 20:57:07 -08:00
|
|
|
ld b, NO_INPUT
|
|
|
|
jr .finishauto
|
|
|
|
|
|
|
|
.next
|
|
|
|
; On to the next input...
|
|
|
|
ld a, l
|
|
|
|
ld [AutoInputAddress], a
|
|
|
|
ld a, h
|
|
|
|
ld [AutoInputAddress+1], a
|
|
|
|
jr .finishauto
|
|
|
|
|
|
|
|
.stopauto
|
|
|
|
call StopAutoInput
|
|
|
|
ld b, NO_INPUT
|
|
|
|
|
|
|
|
.finishauto
|
|
|
|
pop af
|
|
|
|
rst Bankswitch
|
|
|
|
ld a, b
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoyPressed], a ; pressed
|
|
|
|
ld [hJoyDown], a ; input
|
2013-02-19 20:57:07 -08:00
|
|
|
jr .quit
|
|
|
|
; 9ee
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
StartAutoInput:: ; 9ee
|
2013-02-19 20:57:07 -08:00
|
|
|
; Start reading automated input stream at a:hl.
|
|
|
|
|
|
|
|
ld [AutoInputBank], a
|
|
|
|
ld a, l
|
|
|
|
ld [AutoInputAddress], a
|
|
|
|
ld a, h
|
|
|
|
ld [AutoInputAddress+1], a
|
|
|
|
; Start reading the stream immediately.
|
|
|
|
xor a
|
|
|
|
ld [AutoInputLength], a
|
|
|
|
; Reset input mirrors.
|
|
|
|
xor a
|
2013-03-20 19:55:09 -07:00
|
|
|
ld [hJoyPressed], a ; pressed this frame
|
|
|
|
ld [hJoyReleased], a ; released this frame
|
|
|
|
ld [hJoyDown], a ; currently pressed
|
2013-02-19 20:57:07 -08:00
|
|
|
|
|
|
|
ld a, AUTO_INPUT
|
|
|
|
ld [InputType], a
|
|
|
|
ret
|
|
|
|
; a0a
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
StopAutoInput:: ; a0a
|
2013-02-19 20:57:07 -08:00
|
|
|
; Clear variables related to automated input.
|
|
|
|
xor a
|
|
|
|
ld [AutoInputBank], a
|
|
|
|
ld [AutoInputAddress], a
|
|
|
|
ld [AutoInputAddress+1], a
|
|
|
|
ld [AutoInputLength], a
|
|
|
|
; Back to normal input.
|
|
|
|
ld [InputType], a
|
|
|
|
ret
|
|
|
|
; a1b
|
|
|
|
|
2013-08-29 16:10:06 -07:00
|
|
|
|
2015-10-17 09:58:26 -07:00
|
|
|
JoyTitleScreenInput:: ; a1b
|
|
|
|
.loop
|
2013-08-29 16:10:06 -07:00
|
|
|
|
|
|
|
call DelayFrame
|
|
|
|
|
|
|
|
push bc
|
2015-10-17 09:58:26 -07:00
|
|
|
call JoyTextDelay
|
2013-08-29 16:10:06 -07:00
|
|
|
pop bc
|
|
|
|
|
|
|
|
ld a, [hJoyDown]
|
2013-09-07 20:49:20 -07:00
|
|
|
cp D_UP | SELECT | B_BUTTON
|
2015-10-17 09:58:26 -07:00
|
|
|
jr z, .keycombo
|
2013-08-29 16:10:06 -07:00
|
|
|
|
2015-10-16 10:35:43 -07:00
|
|
|
ld a, [hJoyLast]
|
2013-09-07 20:49:20 -07:00
|
|
|
and START | A_BUTTON
|
2015-10-17 09:58:26 -07:00
|
|
|
jr nz, .keycombo
|
2013-08-29 16:10:06 -07:00
|
|
|
|
|
|
|
dec c
|
2015-10-17 09:58:26 -07:00
|
|
|
jr nz, .loop
|
2013-08-29 16:10:06 -07:00
|
|
|
|
|
|
|
and a
|
|
|
|
ret
|
|
|
|
|
2015-10-17 09:58:26 -07:00
|
|
|
.keycombo
|
2013-08-29 16:10:06 -07:00
|
|
|
scf
|
|
|
|
ret
|
|
|
|
; a36
|
|
|
|
|
|
|
|
|
2015-10-17 09:58:26 -07:00
|
|
|
JoyWaitAorB:: ; a36
|
|
|
|
.loop
|
2013-08-29 16:10:06 -07:00
|
|
|
call DelayFrame
|
2013-12-22 14:30:35 -08:00
|
|
|
call GetJoypad
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, [hJoyPressed]
|
2013-09-07 20:49:20 -07:00
|
|
|
and A_BUTTON | B_BUTTON
|
2013-08-29 16:10:06 -07:00
|
|
|
ret nz
|
|
|
|
call RTC
|
2015-10-17 09:58:26 -07:00
|
|
|
jr .loop
|
2013-08-29 16:10:06 -07:00
|
|
|
; a46
|
|
|
|
|
2015-07-15 12:48:44 -07:00
|
|
|
CloseText:: ; a46
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, [hOAMUpdate]
|
|
|
|
push af
|
|
|
|
ld a, 1
|
|
|
|
ld [hOAMUpdate], a
|
|
|
|
call WaitBGMap
|
2015-10-17 09:58:26 -07:00
|
|
|
call JoyWaitAorB
|
2013-08-29 16:10:06 -07:00
|
|
|
pop af
|
|
|
|
ld [hOAMUpdate], a
|
|
|
|
ret
|
|
|
|
; a57
|
|
|
|
|
2015-10-17 09:58:26 -07:00
|
|
|
JoyTextDelay:: ; a57
|
2013-12-22 14:30:35 -08:00
|
|
|
call GetJoypad
|
2015-10-16 10:35:43 -07:00
|
|
|
ld a, [hInMenu]
|
2013-08-29 16:10:06 -07:00
|
|
|
and a
|
|
|
|
ld a, [hJoyPressed]
|
2015-10-16 10:35:43 -07:00
|
|
|
jr z, .ok
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, [hJoyDown]
|
2015-10-16 10:35:43 -07:00
|
|
|
.ok
|
2015-10-11 09:15:03 -07:00
|
|
|
ld [hJoyLast], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, [hJoyPressed]
|
|
|
|
and a
|
2015-10-16 10:35:43 -07:00
|
|
|
jr z, .checkframedelay
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, 15
|
|
|
|
ld [TextDelayFrames], a
|
|
|
|
ret
|
|
|
|
|
2015-10-16 10:35:43 -07:00
|
|
|
.checkframedelay
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, [TextDelayFrames]
|
|
|
|
and a
|
2015-10-16 10:35:43 -07:00
|
|
|
jr z, .restartframedelay
|
2013-08-29 16:10:06 -07:00
|
|
|
xor a
|
2015-10-11 09:15:03 -07:00
|
|
|
ld [hJoyLast], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ret
|
|
|
|
|
2015-10-16 10:35:43 -07:00
|
|
|
.restartframedelay
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, 5
|
|
|
|
ld [TextDelayFrames], a
|
|
|
|
ret
|
|
|
|
; a80
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Functiona80:: ; a80
|
2015-10-07 10:19:41 -07:00
|
|
|
ld a, [hConnectionStripLength]
|
2013-08-29 16:10:06 -07:00
|
|
|
push af
|
2015-10-16 10:35:43 -07:00
|
|
|
ld a, [hConnectedMapWidth]
|
2013-08-29 16:10:06 -07:00
|
|
|
push af
|
|
|
|
xor a
|
2015-10-07 10:19:41 -07:00
|
|
|
ld [hConnectionStripLength], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, $6
|
2015-10-16 10:35:43 -07:00
|
|
|
ld [hConnectedMapWidth], a
|
2013-08-29 16:10:06 -07:00
|
|
|
.asm_a8d
|
|
|
|
push hl
|
2015-02-10 15:14:41 -08:00
|
|
|
hlcoord 18, 17
|
2013-08-29 16:10:06 -07:00
|
|
|
call Functionb06
|
|
|
|
pop hl
|
2015-10-17 09:58:26 -07:00
|
|
|
call JoyTextDelay
|
2015-10-16 10:35:43 -07:00
|
|
|
ld a, [hJoyLast]
|
2013-08-29 16:10:06 -07:00
|
|
|
and $3
|
|
|
|
jr z, .asm_a8d
|
|
|
|
pop af
|
2015-10-16 10:35:43 -07:00
|
|
|
ld [hConnectedMapWidth], a
|
2013-08-29 16:10:06 -07:00
|
|
|
pop af
|
2015-10-07 10:19:41 -07:00
|
|
|
ld [hConnectionStripLength], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ret
|
|
|
|
; aa5
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Functionaa5:: ; aa5
|
2015-10-17 09:58:26 -07:00
|
|
|
call JoyTextDelay
|
2015-10-16 10:35:43 -07:00
|
|
|
ld a, [hJoyLast]
|
2013-09-07 20:49:20 -07:00
|
|
|
and A_BUTTON | B_BUTTON
|
2013-08-29 16:10:06 -07:00
|
|
|
jr z, Functionaa5
|
|
|
|
ret
|
|
|
|
; aaf
|
|
|
|
|
2015-07-15 12:48:44 -07:00
|
|
|
KeepTextOpen:: ; aaf
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, [InLinkBattle]
|
|
|
|
and a
|
|
|
|
jr nz, .asm_ac1
|
|
|
|
call Functionac6
|
|
|
|
push de
|
|
|
|
ld de, SFX_READ_TEXT_2
|
2013-10-08 10:10:36 -07:00
|
|
|
call PlaySFX
|
2013-08-29 16:10:06 -07:00
|
|
|
pop de
|
|
|
|
ret
|
|
|
|
|
|
|
|
.asm_ac1
|
|
|
|
ld c, 65
|
|
|
|
jp DelayFrames
|
|
|
|
; ac6
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Functionac6:: ; ac6
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, [hOAMUpdate]
|
|
|
|
push af
|
|
|
|
ld a, $1
|
|
|
|
ld [hOAMUpdate], a
|
|
|
|
ld a, [InputType]
|
|
|
|
or a
|
|
|
|
jr z, .asm_ad9
|
|
|
|
callba Function1de28a
|
|
|
|
.asm_ad9
|
|
|
|
call Functionaf5
|
2015-10-17 09:58:26 -07:00
|
|
|
call JoyTextDelay
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, [hJoyPressed]
|
|
|
|
and $3
|
|
|
|
jr nz, .asm_af1
|
|
|
|
call RTC
|
|
|
|
ld a, $1
|
|
|
|
ld [hBGMapMode], a
|
|
|
|
call DelayFrame
|
|
|
|
jr .asm_ad9
|
|
|
|
|
|
|
|
.asm_af1
|
|
|
|
pop af
|
|
|
|
ld [hOAMUpdate], a
|
|
|
|
ret
|
|
|
|
; af5
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Functionaf5:: ; af5
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, [$ff9b]
|
|
|
|
and $10
|
|
|
|
jr z, .asm_aff
|
|
|
|
ld a, $ee
|
|
|
|
jr .asm_b02
|
|
|
|
|
|
|
|
.asm_aff
|
2015-02-10 15:14:41 -08:00
|
|
|
ld a, [TileMap + 17 + 17 * SCREEN_WIDTH]
|
2013-08-29 16:10:06 -07:00
|
|
|
|
|
|
|
.asm_b02
|
2015-02-10 15:14:41 -08:00
|
|
|
ld [TileMap + 18 + 17 * SCREEN_WIDTH], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ret
|
|
|
|
; b06
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Functionb06:: ; b06
|
2013-08-29 16:10:06 -07:00
|
|
|
push bc
|
|
|
|
ld a, [hl]
|
|
|
|
ld b, a
|
|
|
|
ld a, $ee
|
|
|
|
cp b
|
|
|
|
pop bc
|
|
|
|
jr nz, .asm_b27
|
2015-10-07 10:19:41 -07:00
|
|
|
ld a, [hConnectionStripLength]
|
2013-08-29 16:10:06 -07:00
|
|
|
dec a
|
2015-10-07 10:19:41 -07:00
|
|
|
ld [hConnectionStripLength], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ret nz
|
2015-10-16 10:35:43 -07:00
|
|
|
ld a, [hConnectedMapWidth]
|
2013-08-29 16:10:06 -07:00
|
|
|
dec a
|
2015-10-16 10:35:43 -07:00
|
|
|
ld [hConnectedMapWidth], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ret nz
|
|
|
|
ld a, $7a
|
|
|
|
ld [hl], a
|
|
|
|
ld a, $ff
|
2015-10-07 10:19:41 -07:00
|
|
|
ld [hConnectionStripLength], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, $6
|
2015-10-16 10:35:43 -07:00
|
|
|
ld [hConnectedMapWidth], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ret
|
|
|
|
|
|
|
|
.asm_b27
|
2015-10-07 10:19:41 -07:00
|
|
|
ld a, [hConnectionStripLength]
|
2013-08-29 16:10:06 -07:00
|
|
|
and a
|
|
|
|
ret z
|
|
|
|
dec a
|
2015-10-07 10:19:41 -07:00
|
|
|
ld [hConnectionStripLength], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ret nz
|
|
|
|
dec a
|
2015-10-07 10:19:41 -07:00
|
|
|
ld [hConnectionStripLength], a
|
2015-10-16 10:35:43 -07:00
|
|
|
ld a, [hConnectedMapWidth]
|
2013-08-29 16:10:06 -07:00
|
|
|
dec a
|
2015-10-16 10:35:43 -07:00
|
|
|
ld [hConnectedMapWidth], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ret nz
|
|
|
|
ld a, $6
|
2015-10-16 10:35:43 -07:00
|
|
|
ld [hConnectedMapWidth], a
|
2013-08-29 16:10:06 -07:00
|
|
|
ld a, $ee
|
|
|
|
ld [hl], a
|
|
|
|
ret
|
|
|
|
; b40
|