Skip to content

Commit

Permalink
Merge pull request #32 from andwhyisit/naming-screen-3
Browse files Browse the repository at this point in the history
Name Entry Part 3
  • Loading branch information
andwhyisit authored Jun 4, 2023
2 parents 631812e + c98f4f4 commit 95c4cca
Show file tree
Hide file tree
Showing 12 changed files with 1,156 additions and 578 deletions.
8 changes: 8 additions & 0 deletions game/src/nameentry/entry.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
INCLUDE "game/src/common/constants.asm"

SECTION "Naming Entry Variables", WRAM0[$C763]
W_NamingEntryBottomRowSelection:: ds 1
W_NamingEntryCursorPositionIndexWithinGroup:: ds 1
W_NamingEntryCursorRowIndex:: ds 1

; Look in version folders for the actual code.
3 changes: 3 additions & 0 deletions game/src/nameentry/entry_core.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
INCLUDE "game/src/common/constants.asm"

; Look in version folders for the actual code.
12 changes: 12 additions & 0 deletions game/src/version/kabuto/name_entry.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
INCLUDE "game/src/common/constants.asm"
INCLUDE "game/src/common/macros.asm"

W_NamingEntryCurrentPage EQU $C48C
W_NamingScreenCursorPositionIndex EQU $C48D

cNSOFFSET EQU 0
INCLUDE "./game/src/version/nameentry_core.asm"
INCLUDE "./game/src/version/nameentry_player_naming_core.asm"
INCLUDE "./game/src/version/nameentry_medal_naming_core.asm"
INCLUDE "./game/src/version/nameentry_entry_core.asm"
INCLUDE "./game/src/version/nameentry_entry.asm"
207 changes: 0 additions & 207 deletions game/src/version/kuwagata/medal_naming_core.asm

This file was deleted.

12 changes: 12 additions & 0 deletions game/src/version/kuwagata/name_entry.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
INCLUDE "game/src/common/constants.asm"
INCLUDE "game/src/common/macros.asm"

W_NamingEntryCurrentPage EQU $C48C
W_NamingScreenCursorPositionIndex EQU $C48D

cNSOFFSET EQU 5
INCLUDE "./game/src/version/nameentry_core.asm"
INCLUDE "./game/src/version/nameentry_player_naming_core.asm"
INCLUDE "./game/src/version/nameentry_medal_naming_core.asm"
INCLUDE "./game/src/version/nameentry_entry_core.asm"
INCLUDE "./game/src/version/nameentry_entry.asm"
57 changes: 0 additions & 57 deletions game/src/version/kuwagata/nameentry_core.asm

This file was deleted.

Loading

0 comments on commit 95c4cca

Please sign in to comment.