pokecrystal-board/engine/money.asm

222 lines
2.3 KiB
NASM
Raw Normal View History

2015-11-16 18:46:36 -08:00
GiveMoney:: ; 15fd7
2016-01-04 05:43:55 -08:00
ld a, 3
2015-11-16 18:46:36 -08:00
call AddMoney
ld bc, MaxMoney
2016-01-04 05:43:55 -08:00
ld a, 3
2015-11-16 18:46:36 -08:00
call CompareMoney
2016-01-04 05:43:55 -08:00
jr z, .not_maxed_out
jr c, .not_maxed_out
2015-11-16 18:46:36 -08:00
ld hl, MaxMoney
ld a, [hli]
ld [de], a
inc de
ld a, [hli]
ld [de], a
inc de
ld a, [hli]
ld [de], a
scf
ret
2016-01-04 05:43:55 -08:00
.not_maxed_out
2015-11-16 18:46:36 -08:00
and a
ret
; 15ff7
MaxMoney: ; 15ff7
dt MAX_MONEY
2015-11-16 18:46:36 -08:00
; 15ffa
TakeMoney:: ; 15ffa
ld a, 3
call SubtractMoney
2016-01-04 05:43:55 -08:00
jr nc, .okay
; leave with 0 money
2015-11-16 18:46:36 -08:00
xor a
ld [de], a
inc de
ld [de], a
inc de
ld [de], a
scf
ret
2016-01-04 05:43:55 -08:00
.okay
2015-11-16 18:46:36 -08:00
and a
ret
; 1600b
CompareMoney:: ; 1600b
2016-01-04 05:43:55 -08:00
ld a, 3
2015-11-16 18:46:36 -08:00
CompareFunds: ; 1600d
2016-01-04 05:43:55 -08:00
; a: number of bytes
; bc: start addr of amount (big-endian)
; de: start addr of account (big-endian)
2015-11-16 18:46:36 -08:00
push hl
push de
push bc
ld h, b
ld l, c
2016-01-04 05:43:55 -08:00
ld c, 0
2015-11-16 18:46:36 -08:00
ld b, a
.loop1
dec a
jr z, .done
inc de
inc hl
jr .loop1
.done
and a
.loop2
ld a, [de]
sbc [hl]
jr z, .okay
inc c
.okay
dec de
dec hl
dec b
jr nz, .loop2
jr c, .set_carry
ld a, c
and a
jr .skip_carry
.set_carry
2016-01-09 13:28:22 -08:00
ld a, 1
2015-11-16 18:46:36 -08:00
and a
scf
.skip_carry
pop bc
pop de
pop hl
ret
; 16035
SubtractMoney: ; 16035
ld a, 3
SubtractFunds: ; 16037
2016-01-04 05:43:55 -08:00
; a: number of bytes
; bc: start addr of amount (big-endian)
; de: start addr of account (big-endian)
2015-11-16 18:46:36 -08:00
push hl
push de
push bc
ld h, b
ld l, c
ld b, a
ld c, 0
.loop
dec a
jr z, .done
inc de
inc hl
jr .loop
.done
and a
.loop2
ld a, [de]
sbc [hl]
ld [de], a
dec de
dec hl
dec b
jr nz, .loop2
pop bc
pop de
pop hl
ret
; 16053
AddMoney: ; 16053
2016-01-04 05:43:55 -08:00
ld a, 3
2015-11-16 18:46:36 -08:00
AddFunds: ; 16055
2016-01-04 05:43:55 -08:00
; a: number of bytes
; bc: start addr of amount (big-endian)
; de: start addr of account (big-endian)
2015-11-16 18:46:36 -08:00
push hl
push de
push bc
2016-01-04 05:43:55 -08:00
2015-11-16 18:46:36 -08:00
ld h, b
ld l, c
ld b, a
.loop1
dec a
jr z, .done
inc de
inc hl
jr .loop1
.done
and a
.loop2
ld a, [de]
adc [hl]
ld [de], a
dec de
dec hl
dec b
jr nz, .loop2
2016-01-04 05:43:55 -08:00
2015-11-16 18:46:36 -08:00
pop bc
pop de
pop hl
ret
; 1606f
GiveCoins:: ; 1606f
ld a, 2
ld de, wCoins
2015-11-16 18:46:36 -08:00
call AddFunds
ld a, 2
ld bc, .maxcoins
call CompareFunds
jr c, .not_maxed
ld hl, .maxcoins
ld a, [hli]
ld [de], a
inc de
ld a, [hli]
ld [de], a
scf
ret
.not_maxed
and a
ret
; 1608d
.maxcoins ; 1608d
bigdw MAX_COINS
2015-11-16 18:46:36 -08:00
; 1608f
TakeCoins:: ; 1608f
ld a, 2
ld de, wCoins
2015-11-16 18:46:36 -08:00
call SubtractFunds
2016-01-04 05:43:55 -08:00
jr nc, .okay
; leave with 0 coins
2015-11-16 18:46:36 -08:00
xor a
ld [de], a
inc de
ld [de], a
scf
ret
2016-01-04 05:43:55 -08:00
.okay
2015-11-16 18:46:36 -08:00
and a
ret
; 160a1
CheckCoins:: ; 160a1
2016-01-04 05:43:55 -08:00
ld a, 2
ld de, wCoins
2015-11-16 18:46:36 -08:00
jp CompareFunds
; 160a9