pokegold-spaceworld/engine/menu/main_menu.asm
Narishma-gb e88fe24e15
Use the same Makefile build system as Gen 1+2 repos (#163)
This uses catch-all files like main.asm to reduce the total quantity and size of
build objects (from 1.1 GB to 70 MB).

---------

Co-authored-by: Rangi <35663410+Rangi42@users.noreply.github.com>
2026-07-05 15:36:09 -04:00

342 lines
5.5 KiB
NASM
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const_def
const M_NEW_GAME
const M_CONTINUE
const M_PLAY_GAME
const M_SET_TIME
const_def
const CONTINUE
const NEW_GAME
const OPTION
const PLAY_POKEMON
const SET_TIME
InitializeNewGameWRAM:
ld a, [wSGB]
push af
; Clear a lot of in-game WRAM.
ld hl, wShadowOAM
ld bc, wNewGameWRAMEnd - wShadowOAM
xor a
call ByteFill
ld hl, wPlayerName
ld bc, wBoxMonNicknamesEnd - wPlayerName
xor a
call ByteFill
; Lots of other setup.
pop af
ld [wSGB], a
ldh a, [rLY]
ldh [hRTCRandom], a
call DelayFrame
ldh a, [hRandomSub]
ld [wPlayerID], a
ldh a, [rLY]
ldh [hRTCRandom], a
call DelayFrame
ldh a, [hRandomAdd]
ld [wPlayerID + 1], a
ld hl, wPartyCount
call .InitList
ld hl, wBoxCount
call .InitList
ld hl, wNumBagItems
call .InitList
ld hl, wNumKeyItems
call .InitList
ld hl, wNumPCItems
call .InitList
xor a
ld [wMonType], a
ld [wJohtoBadges], a
ld [wKantoBadges], a
ld [wCoins], a
ld [wCoins + 1], a
if START_MONEY >= $10000
ld a, HIGH(START_MONEY >> 8)
endc
ld [wMoney], a
ld a, HIGH(START_MONEY)
ld [wMoney + 1], a
ld a, LOW(START_MONEY)
ld [wMoney + 2], a
ld hl, wNumPCItems
ld a, ITEM_REPEL
ld [wCurItem], a
ld a, 1
ld [wItemQuantity], a
call ReceiveItem
ld a, MAP_SILENT_HILL
ld [wMapId], a
ld a, GROUP_SILENT_HILL
ld [wMapGroup], a
ret
; Loads 0 in the count and -1 in the first item or mon slot.
.InitList:
xor a
ld [hli], a
dec a
ld [hl], a
ret
CheckIfSaveFileExists:
ld a, BANK(sOptions)
call OpenSRAM
ld a, [sOptions]
ld [wSaveFileExists], a
call CloseSRAM
ret
LoadOptions:
ld a, BANK(sOptions)
call OpenSRAM
ld hl, sOptions
ld a, [hli]
ld [wOptions], a
inc hl
ld a, [hli]
ld [wActiveFrame], a
ld a, [hl]
ld [wTextboxFlags], a
call CloseSRAM
ret
; Copies the contents of wDebugFlags - wDebugFlags4 to... themselves.
; Presumably, the debug flags were originally read from the save file (evidenced by SRAM being opened and closed),
; but the source address was dummied out.
Dummy_LoadDebugFlags:
ld a, BANK(sOptions)
call OpenSRAM
ld hl, wDebugFlags
ld a, [hli]
ld [wDebugFlags], a
ld a, [hli]
ld [wDebugFlags2], a
ld a, [hli]
ld [wDebugFlags3], a
ld a, [hl]
ld [wDebugFlags4], a
call CloseSRAM
ret
MainMenu::
ld hl, wGameModeFlags
res 0, [hl]
call ClearTileMap
call GetMemSGBLayout
call LoadFontExtra
call LoadFont
call ClearWindowData
call CheckIfSaveFileExists
ld hl, wSaveFileExists
bit 0, [hl]
jr nz, .setMenuContinue
xor a
jr .skip
.setMenuContinue
ld a, M_CONTINUE
.skip
ldh a, [hJoyState]
and D_DOWN | B_BUTTON | A_BUTTON
cp D_DOWN | B_BUTTON | A_BUTTON
jr nz, .setMenuPlay
ld a, M_SET_TIME
jr .triggerMenu
.setMenuPlay
ld a, M_PLAY_GAME
.triggerMenu
ld [wWhichIndexSet], a
ld hl, MainMenuHeader
call LoadMenuHeader
call OpenMenu
call CloseWindow
jp c, TitleSequenceStart
ld hl, MainMenuJumptable
ld a, [wMenuSelection]
jp CallJumptable
MainMenuHeader:
db MENU_BACKUP_TILES
menu_coords 0, 0, 13, 7
dw .MenuData
db 1 ; default option
.MenuData:
db STATICMENU_CURSOR
db 0 ; items
dw MainMenuItems
dw PlaceMenuStrings
dw .Strings
.Strings:
db "つづきから はじめる@"
db "さいしょから はじめる@"
db "せっていを かえる@"
db "#を あそぶ@"
db "じかんセット@"
MainMenuJumptable:
dw Continue
dw NewGame
dw MenuCallSettings
dw NewGame
dw MainMenuOptionSetTime
MainMenuItems:
NewGameMenu:
db 2
db NEW_GAME
db OPTION
db -1
ContinueMenu:
db 3
db CONTINUE
db NEW_GAME
db OPTION
db -1
PlayPokemonMenu:
db 2
db PLAY_POKEMON
db OPTION
db -1
PlayPokemonSetTimeMenu:
db 3
db PLAY_POKEMON
db OPTION
db SET_TIME
db -1
MainMenuOptionSetTime::
callfar SetTime
ret
Continue::
callfar TryLoadSaveFile
call DisplaySaveInfoOnContinue
.loop
call ClearJoypad
call GetJoypad
ldh a, [hJoyState]
bit A_BUTTON_F, a
jr nz, .escape
bit B_BUTTON_F, a
jp nz, MainMenu
jr .loop
.escape
call LoadOptions
call Dummy_LoadDebugFlags
ld hl, wDebugFlags
res DEBUG_FIELD_F, [hl]
set CONTINUED_F, [hl]
set SAVE_FILE_EXISTS_F, [hl]
ldh a, [hJoyState]
bit SELECT_F, a
jr z, .skip
set 1, [hl]
.skip
call ClearBGPalettes
call ClearTileMap
ld c, 10
call DelayFrames
jp OverworldStart
DisplaySaveInfoOnContinue::
xor a
ldh [hBGMapMode], a
hlcoord 4, 7
ld b, 8
ld c, 13
call DrawTextBox
hlcoord 5, 9
ld de, PlayerInfoText
call PlaceString
hlcoord 13, 9
ld de, wPlayerName
call PlaceString
hlcoord 14, 11
call PrintNumBadges
hlcoord 13, 13
call PrintNumOwnedMons
hlcoord 12, 15
call PrintPlayTime
ld a, $01
ldh [hBGMapMode], a
ld c, 30
call DelayFrames
ret
PrintNumBadges::
push hl
ld hl, wJohtoBadges
ld b, 1 ; only Johto Badges
call CountSetBits
pop hl
ld de, wNumSetBits
lb bc, 1, 2
jp PrintNumber
PrintNumOwnedMons::
push hl
ld hl, wPokedexCaught
ld b, (NUM_POKEMON + 7) / 8 ; flag_array NUM_POKEMON
call CountSetBits
pop hl
ld de, wNumSetBits
lb bc, 1, 3
jp PrintNumber
PrintPlayTime::
ld de, hRTCHours
lb bc, 1, 3
call PrintNumber
ld [hl], ''
inc hl
ld de, hRTCMinutes
lb bc, PRINTNUM_LEADINGZEROS | 1, 2
jp PrintNumber
PlayerInfoText:
db "しゅじんこう"
next "もっているバッジ    こ"
next "#ずかん    ひき"
next "プレイじかん"
text_end
NewGame::
ld de, MUSIC_NONE
call PlayMusic
ld de, MUSIC_OAK_INTRO
call PlayMusic
call LoadFontExtra
xor a
ldh [hBGMapMode], a
farcall InitializeNewGameWRAM
call ClearTileMap
call ClearWindowData
xor a
ldh [hMapAnims], a
ld a, [wDebugFlags]
bit DEBUG_FIELD_F, a
jp z, DemoStart
call DebugSetUpPlayer
jp IntroCleanup