pokecrystal-board/engine/menus/init_gender.asm

79 lines
1.4 KiB
NASM
Raw Permalink Normal View History

2018-06-24 07:09:41 -07:00
InitGender:
2015-12-14 17:06:41 -08:00
call InitGenderScreen
call LoadGenderScreenPal
call LoadGenderScreenLightBlueTile
call WaitBGMap2
2024-02-10 15:16:00 -08:00
call SetDefaultBGPAndOBP
ld hl, AreYouABoyOrAreYouAGirlText
call PrintText1bpp
ld hl, .MenuHeader
call LoadMenuHeader
2015-12-14 17:06:41 -08:00
call WaitBGMap2
2015-12-15 15:59:49 -08:00
call VerticalMenu
call CloseWindow
2015-12-15 15:59:49 -08:00
ld a, [wMenuCursorY]
2015-12-14 17:06:41 -08:00
dec a
2024-03-09 07:40:21 -08:00
ld [wPlayerCharacter], a
2015-12-14 17:06:41 -08:00
ld c, 10
call DelayFrames
ret
.MenuHeader:
db MENU_BACKUP_TILES ; flags
menu_coords 6, 4, 12, 9
dw .MenuData
2015-12-14 17:06:41 -08:00
db 1 ; default option
.MenuData:
db STATICMENU_CURSOR | STATICMENU_WRAP | STATICMENU_DISABLE_B ; flags
2015-12-14 17:06:41 -08:00
db 2 ; items
db "Boy@"
db "Girl@"
AreYouABoyOrAreYouAGirlText:
text_far _AreYouABoyOrAreYouAGirlText
text_end
2015-12-14 17:06:41 -08:00
2018-06-24 07:09:41 -07:00
InitGenderScreen:
2015-12-14 17:06:41 -08:00
ld a, $10
2018-01-23 14:39:09 -08:00
ld [wMusicFade], a
2020-04-17 07:52:59 -07:00
ld a, LOW(MUSIC_NONE)
2018-01-23 14:39:09 -08:00
ld [wMusicFadeID], a
2020-04-17 07:52:59 -07:00
ld a, HIGH(MUSIC_NONE)
2018-01-23 14:39:09 -08:00
ld [wMusicFadeID + 1], a
2015-12-14 17:06:41 -08:00
ld c, 8
call DelayFrames
call ClearBGPalettes
call LoadFrame
2015-12-14 17:06:41 -08:00
hlcoord 0, 0
ld bc, SCREEN_HEIGHT * SCREEN_WIDTH
ld a, $0
call ByteFill
hlcoord 0, 0, wAttrmap
2015-12-14 17:06:41 -08:00
ld bc, SCREEN_HEIGHT * SCREEN_WIDTH
xor a
call ByteFill
ret
2018-06-24 07:09:41 -07:00
LoadGenderScreenPal:
2015-12-14 17:06:41 -08:00
ld hl, .Palette
2018-01-01 06:08:21 -08:00
ld de, wBGPals1
2015-12-14 17:06:41 -08:00
ld bc, 1 palettes
ld a, BANK(wBGPals1)
2015-12-14 17:06:41 -08:00
call FarCopyWRAM
2017-12-24 09:47:30 -08:00
farcall ApplyPals
2015-12-14 17:06:41 -08:00
ret
2018-06-24 07:09:41 -07:00
.Palette:
2018-01-21 10:58:16 -08:00
INCLUDE "gfx/new_game/gender_screen.pal"
2015-12-14 17:06:41 -08:00
2018-06-24 07:09:41 -07:00
LoadGenderScreenLightBlueTile:
2015-12-14 17:06:41 -08:00
ld de, .LightBlueTile
2017-12-28 04:32:33 -08:00
ld hl, vTiles2 tile $00
2015-12-14 17:06:41 -08:00
lb bc, BANK(.LightBlueTile), 1
call Get2bpp
ret
2018-06-24 07:09:41 -07:00
.LightBlueTile:
2018-01-21 10:58:16 -08:00
INCBIN "gfx/new_game/gender_screen.2bpp"