summaryrefslogtreecommitdiff
path: root/asm/macros
diff options
context:
space:
mode:
authorGriffinR <griffin.richards@comcast.net>2020-01-05 10:50:32 -0500
committerGriffinR <griffin.g.richards@gmail.com>2020-01-07 22:30:37 -0500
commitfb5bea98ce28044917451d83695991693fb0b64a (patch)
tree95d2f85fc852fa0b00ba23022f8bd7732ff30c59 /asm/macros
parentbb692a03eb6ac886524e917ed3548d769ac2f6d8 (diff)
More battle_dome.c doc
Diffstat (limited to 'asm/macros')
-rw-r--r--asm/macros/battle_frontier/battle_dome.inc20
1 files changed, 9 insertions, 11 deletions
diff --git a/asm/macros/battle_frontier/battle_dome.inc b/asm/macros/battle_frontier/battle_dome.inc
index 07d6534eb..9adbcc54e 100644
--- a/asm/macros/battle_frontier/battle_dome.inc
+++ b/asm/macros/battle_frontier/battle_dome.inc
@@ -1,5 +1,3 @@
-@ TODO: Add explanatory comments to macros
-
@ Initialize the Battle Dome challenge
.macro dome_init
setvar VAR_0x8004, BATTLE_DOME_FUNC_INIT
@@ -35,7 +33,7 @@
special CallBattleDomeFunction
.endm
- @
+ @ Choose which of the opponents mons to use in battle and load them into the enemy party
.macro dome_initopponentparty
setvar VAR_0x8004, BATTLE_DOME_FUNC_INIT_OPPONENT_PARTY
special CallBattleDomeFunction
@@ -47,19 +45,19 @@
special CallBattleDomeFunction
.endm
- @
+ @ Displays the tourney tree for the current tourney
.macro dome_showtourneytree
setvar VAR_0x8004, BATTLE_DOME_FUNC_SHOW_TOURNEY_TREE
special CallBattleDomeFunction
.endm
- @
- .macro dome_showresultstree
- setvar VAR_0x8004, BATTLE_DOME_FUNC_SHOW_PREV_RESULTS_TREE
+ @ Displays the tourney tree for the results of the previous tourney. Before the player enters their first tourney this is a random tourney generated by dome_initresultstree
+ .macro dome_showprevtourneytree
+ setvar VAR_0x8004, BATTLE_DOME_FUNC_SHOW_PREV_TOURNEY_TREE
special CallBattleDomeFunction
.endm
- @
+ @ Sets gTrainerBattleOpponent_A to the trainer ID of the next opponent
.macro dome_setopponent
setvar VAR_0x8004, BATTLE_DOME_FUNC_SET_OPPONENT_ID
special CallBattleDomeFunction
@@ -71,7 +69,7 @@
special CallBattleDomeFunction
.endm
- @
+ @ A non-interactive version of the tourney tree shown when a round is completed
.macro dome_showstatictourneytree
setvar VAR_0x8004, BATTLE_DOME_FUNC_SHOW_STATIC_TOURNEY_TREE
special CallBattleDomeFunction
@@ -121,7 +119,7 @@
special CallBattleDomeFunction
.endm
- @
+ @ Compares the initial tournament ranking (seed) of the player to opponent A. Returns 1 if the player's seed is better, 2 if the opponent's seed is better.
.macro dome_compareseeds
setvar VAR_0x8004, BATTLE_DOME_FUNC_COMPARE_SEEDS
special CallBattleDomeFunction
@@ -139,7 +137,7 @@
special CallBattleDomeFunction
.endm
- @
+ @ Generates the tourney trainers and their parties, and seeds them in the tourney tree
.macro dome_inittrainers
setvar VAR_0x8004, BATTLE_DOME_FUNC_INIT_TRAINERS
special CallBattleDomeFunction