mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Eliminate enum: use const instead, with case-by-case parallel const implementations
This commit is contained in:
parent
9e4a00af45
commit
6ca82e5c86
@ -1364,7 +1364,7 @@ ParseMusicCommand:
|
||||
jp hl
|
||||
|
||||
MusicCommands:
|
||||
; entries correspond to macros/scripts/audio.asm enumeration
|
||||
; entries correspond to audio constants (see macros/scripts/audio.asm)
|
||||
dw Music_Octave8 ; octave 8
|
||||
dw Music_Octave7 ; octave 7
|
||||
dw Music_Octave6 ; octave 6
|
||||
|
@ -162,59 +162,60 @@ SLP EQU %111 ; 0-7 turns
|
||||
ALL_STATUS EQU (1 << PSN) | (1 << BRN) | (1 << FRZ) | (1 << PAR) | SLP
|
||||
|
||||
; wPlayerSubStatus1 or wEnemySubStatus1 bit flags
|
||||
enum_start 7, -1
|
||||
enum SUBSTATUS_IN_LOVE
|
||||
enum SUBSTATUS_ROLLOUT
|
||||
enum SUBSTATUS_ENDURE
|
||||
enum SUBSTATUS_PERISH
|
||||
enum SUBSTATUS_IDENTIFIED
|
||||
enum SUBSTATUS_PROTECT
|
||||
enum SUBSTATUS_CURSE
|
||||
enum SUBSTATUS_NIGHTMARE
|
||||
const_def
|
||||
const SUBSTATUS_NIGHTMARE
|
||||
const SUBSTATUS_CURSE
|
||||
const SUBSTATUS_PROTECT
|
||||
const SUBSTATUS_IDENTIFIED
|
||||
const SUBSTATUS_PERISH
|
||||
const SUBSTATUS_ENDURE
|
||||
const SUBSTATUS_ROLLOUT
|
||||
const SUBSTATUS_IN_LOVE
|
||||
|
||||
; wPlayerSubStatus2 or wEnemySubStatus2 bit flags
|
||||
SUBSTATUS_CURLED EQU 0
|
||||
const_def
|
||||
const SUBSTATUS_CURLED
|
||||
|
||||
; wPlayerSubStatus3 or wEnemySubStatus3 bit flags
|
||||
enum_start 7, -1
|
||||
enum SUBSTATUS_CONFUSED
|
||||
enum SUBSTATUS_FLYING
|
||||
enum SUBSTATUS_UNDERGROUND
|
||||
enum SUBSTATUS_CHARGED
|
||||
enum SUBSTATUS_FLINCHED
|
||||
enum SUBSTATUS_IN_LOOP
|
||||
enum SUBSTATUS_RAMPAGE
|
||||
enum SUBSTATUS_BIDE
|
||||
const_def
|
||||
const SUBSTATUS_BIDE
|
||||
const SUBSTATUS_RAMPAGE
|
||||
const SUBSTATUS_IN_LOOP
|
||||
const SUBSTATUS_FLINCHED
|
||||
const SUBSTATUS_CHARGED
|
||||
const SUBSTATUS_UNDERGROUND
|
||||
const SUBSTATUS_FLYING
|
||||
const SUBSTATUS_CONFUSED
|
||||
|
||||
; wPlayerSubStatus4 or wEnemySubStatus4 bit flags
|
||||
enum_start 7, -1
|
||||
enum SUBSTATUS_LEECH_SEED
|
||||
enum SUBSTATUS_RAGE
|
||||
enum SUBSTATUS_RECHARGE
|
||||
enum SUBSTATUS_SUBSTITUTE
|
||||
enum SUBSTATUS_UNKNOWN_1
|
||||
enum SUBSTATUS_FOCUS_ENERGY
|
||||
enum SUBSTATUS_MIST
|
||||
enum SUBSTATUS_X_ACCURACY
|
||||
const_def
|
||||
const SUBSTATUS_X_ACCURACY
|
||||
const SUBSTATUS_MIST
|
||||
const SUBSTATUS_FOCUS_ENERGY
|
||||
const SUBSTATUS_UNKNOWN_1
|
||||
const SUBSTATUS_SUBSTITUTE
|
||||
const SUBSTATUS_RECHARGE
|
||||
const SUBSTATUS_RAGE
|
||||
const SUBSTATUS_LEECH_SEED
|
||||
|
||||
; wPlayerSubStatus5 or wEnemySubStatus5 bit flags
|
||||
enum_start 7, -1
|
||||
enum SUBSTATUS_CANT_RUN
|
||||
enum SUBSTATUS_DESTINY_BOND
|
||||
enum SUBSTATUS_LOCK_ON
|
||||
enum SUBSTATUS_ENCORED
|
||||
enum SUBSTATUS_TRANSFORMED
|
||||
enum SUBSTATUS_UNKNOWN_2
|
||||
enum SUBSTATUS_UNKNOWN_3
|
||||
enum SUBSTATUS_TOXIC
|
||||
const_def
|
||||
const SUBSTATUS_TOXIC
|
||||
const SUBSTATUS_UNKNOWN_2
|
||||
const SUBSTATUS_UNKNOWN_3
|
||||
const SUBSTATUS_TRANSFORMED
|
||||
const SUBSTATUS_ENCORED
|
||||
const SUBSTATUS_LOCK_ON
|
||||
const SUBSTATUS_DESTINY_BOND
|
||||
const SUBSTATUS_CANT_RUN
|
||||
|
||||
; wPlayerScreens or wEnemyScreens bit flags
|
||||
enum_start 4, -1
|
||||
enum SCREENS_REFLECT
|
||||
enum SCREENS_LIGHT_SCREEN
|
||||
enum SCREENS_SAFEGUARD
|
||||
enum SCREENS_UNUSED
|
||||
enum SCREENS_SPIKES
|
||||
const_def
|
||||
const SCREENS_SPIKES
|
||||
const SCREENS_UNUSED
|
||||
const SCREENS_SAFEGUARD
|
||||
const SCREENS_LIGHT_SCREEN
|
||||
const SCREENS_REFLECT
|
||||
|
||||
; values in wBattleWeather
|
||||
const_def
|
||||
|
@ -54,16 +54,18 @@ const_value = 1
|
||||
const SET_UP_ORNAMENT
|
||||
const PUT_AWAY_ORNAMENT
|
||||
|
||||
__deco_value__ = 0
|
||||
|
||||
deco: MACRO
|
||||
const DECO_\1
|
||||
enum DECOFLAG_\1
|
||||
DECOFLAG_\1 EQU __deco_value__
|
||||
__deco_value__ = __deco_value__ + 1
|
||||
ENDM
|
||||
|
||||
; decorations:
|
||||
; - DecorationAttributes (see data/decorations/attributes.asm)
|
||||
; - DecorationIDs (see data/decorations/decorations.asm)
|
||||
const_def 1
|
||||
enum_start
|
||||
; FindOwnedBeds.beds values (see engine/overworld/decorations.asm)
|
||||
const BEDS
|
||||
deco FEATHERY_BED
|
||||
@ -121,7 +123,7 @@ ENDM
|
||||
deco GEODUDE_DOLL
|
||||
deco MACHOP_DOLL
|
||||
deco TENTACOOL_DOLL
|
||||
NUM_NON_TROPHY_DECOS EQU __enum__
|
||||
NUM_NON_TROPHY_DECOS EQU __deco_value__
|
||||
deco GOLD_TROPHY_DOLL
|
||||
deco SILVER_TROPHY_DOLL
|
||||
NUM_DECOS EQU __enum__
|
||||
NUM_DECOS EQU __deco_value__
|
||||
|
@ -197,6 +197,8 @@
|
||||
const MIRAGE_MAIL ; bd
|
||||
const ITEM_BE ; be
|
||||
|
||||
__tmhm_value__ = 1
|
||||
|
||||
add_tm: MACRO
|
||||
; Defines three constants:
|
||||
; - TM_\1: the item id, starting at $bf
|
||||
@ -205,17 +207,17 @@ add_tm: MACRO
|
||||
; The first usage also defines TM01 as the first TM item id.
|
||||
if !DEF(TM01)
|
||||
TM01 EQU const_value
|
||||
enum_start 1
|
||||
endc
|
||||
if __enum__ < 10
|
||||
MOVE_FOR_TM EQUS "TM0{d:__enum__}_MOVE"
|
||||
if __tmhm_value__ < 10
|
||||
MOVE_FOR_TM EQUS "TM0{d:__tmhm_value__}_MOVE"
|
||||
else
|
||||
MOVE_FOR_TM EQUS "TM{d:__enum__}_MOVE"
|
||||
MOVE_FOR_TM EQUS "TM{d:__tmhm_value__}_MOVE"
|
||||
endc
|
||||
MOVE_FOR_TM = \1
|
||||
PURGE MOVE_FOR_TM
|
||||
const TM_\1
|
||||
enum \1_TMNUM
|
||||
\1_TMNUM EQU __tmhm_value__
|
||||
__tmhm_value__ = __tmhm_value__ + 1
|
||||
ENDM
|
||||
|
||||
; see data/moves/tmhm_moves.asm for moves
|
||||
@ -271,7 +273,7 @@ ENDM
|
||||
add_tm FIRE_PUNCH ; f0
|
||||
add_tm FURY_CUTTER ; f1
|
||||
add_tm NIGHTMARE ; f2
|
||||
NUM_TMS EQU __enum__ - 1
|
||||
NUM_TMS EQU __tmhm_value__ - 1
|
||||
|
||||
add_hm: MACRO
|
||||
; Defines three constants:
|
||||
@ -282,7 +284,7 @@ add_hm: MACRO
|
||||
if !DEF(HM01)
|
||||
HM01 EQU const_value
|
||||
endc
|
||||
HM_VALUE EQU __enum__ - NUM_TMS
|
||||
HM_VALUE EQU __tmhm_value__ - NUM_TMS
|
||||
if HM_VALUE < 10
|
||||
MOVE_FOR_HM EQUS "HM0{d:HM_VALUE}_MOVE"
|
||||
else
|
||||
@ -292,7 +294,8 @@ MOVE_FOR_HM = \1
|
||||
PURGE MOVE_FOR_HM
|
||||
PURGE HM_VALUE
|
||||
const HM_\1
|
||||
enum \1_TMNUM
|
||||
\1_TMNUM EQU __tmhm_value__
|
||||
__tmhm_value__ = __tmhm_value__ + 1
|
||||
ENDM
|
||||
|
||||
add_hm CUT ; f3
|
||||
@ -302,13 +305,13 @@ ENDM
|
||||
add_hm FLASH ; f7
|
||||
add_hm WHIRLPOOL ; f8
|
||||
add_hm WATERFALL ; f9
|
||||
NUM_HMS EQU __enum__ - NUM_TMS - 1
|
||||
NUM_HMS EQU __tmhm_value__ - NUM_TMS - 1
|
||||
|
||||
add_mt: MACRO
|
||||
; Defines two constants:
|
||||
; - \1_TMNUM: the learnable TM/HM flag, starting at 58
|
||||
; - MT##_MOVE: alias for the move id, equal to the value of \1
|
||||
MT_VALUE EQU __enum__ - NUM_TMS - NUM_HMS
|
||||
MT_VALUE EQU __tmhm_value__ - NUM_TMS - NUM_HMS
|
||||
if MT_VALUE < 10
|
||||
MOVE_FOR_MT EQUS "MT0{d:MT_VALUE}_MOVE"
|
||||
else
|
||||
@ -317,15 +320,16 @@ endc
|
||||
MOVE_FOR_MT = \1
|
||||
PURGE MOVE_FOR_MT
|
||||
PURGE MT_VALUE
|
||||
enum \1_TMNUM
|
||||
\1_TMNUM EQU __tmhm_value__
|
||||
__tmhm_value__ = __tmhm_value__ + 1
|
||||
ENDM
|
||||
|
||||
add_mt FLAMETHROWER
|
||||
add_mt THUNDERBOLT
|
||||
add_mt ICE_BEAM
|
||||
NUM_TUTORS = __enum__ - NUM_TMS - NUM_HMS - 1
|
||||
NUM_TUTORS = __tmhm_value__ - NUM_TMS - NUM_HMS - 1
|
||||
|
||||
NUM_TM_HM_TUTOR EQU __enum__ - 1
|
||||
NUM_TM_HM_TUTOR EQU __tmhm_value__ - 1
|
||||
|
||||
const ITEM_FA ; fa
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
newgroup: MACRO
|
||||
const_value = const_value + 1
|
||||
enum_start 1
|
||||
__map_value__ = 1
|
||||
ENDM
|
||||
|
||||
map_const: MACRO
|
||||
@ -8,7 +8,8 @@ map_const: MACRO
|
||||
;\2: width: in blocks
|
||||
;\3: height: in blocks
|
||||
GROUP_\1 EQU const_value
|
||||
enum MAP_\1
|
||||
MAP_\1 EQU __map_value__
|
||||
__map_value__ = __map_value__ + 1
|
||||
\1_WIDTH EQU \2
|
||||
\1_HEIGHT EQU \3
|
||||
ENDM
|
||||
|
@ -1,5 +1,8 @@
|
||||
__trainer_class__ = 0
|
||||
|
||||
trainerclass: MACRO
|
||||
enum \1
|
||||
\1 EQU __trainer_class__
|
||||
__trainer_class__ = __trainer_class__ + 1
|
||||
const_value = 1
|
||||
ENDM
|
||||
|
||||
@ -15,8 +18,7 @@ ENDM
|
||||
; - BTTrainerClassSprites (see data/trainers/sprites.asm)
|
||||
; - BTTrainerClassGenders (see data/trainers/genders.asm)
|
||||
; trainer constants are Trainers indexes, for the sub-tables of TrainerGroups (see data/trainers/parties.asm)
|
||||
enum_start
|
||||
CHRIS EQU __enum__
|
||||
CHRIS EQU __trainer_class__
|
||||
trainerclass TRAINER_NONE ; 0
|
||||
const PHONECONTACT_MOM
|
||||
const PHONECONTACT_BIKESHOP
|
||||
@ -24,7 +26,7 @@ CHRIS EQU __enum__
|
||||
const PHONECONTACT_ELM
|
||||
const PHONECONTACT_BUENA
|
||||
|
||||
KRIS EQU __enum__
|
||||
KRIS EQU __trainer_class__
|
||||
trainerclass FALKNER ; 1
|
||||
const FALKNER1
|
||||
|
||||
@ -700,4 +702,4 @@ KRIS EQU __enum__
|
||||
trainerclass MYSTICALMAN ; 43
|
||||
const EUSINE
|
||||
|
||||
NUM_TRAINER_CLASSES EQU __enum__
|
||||
NUM_TRAINER_CLASSES EQU __trainer_class__
|
||||
|
@ -2,7 +2,7 @@
|
||||
; define constants for the item IDs and for the corresponding move values.
|
||||
|
||||
TMHMMoves:
|
||||
; entries correspond to *_TMNUM enums (see constants/item_constants.asm)
|
||||
; entries correspond to *_TMNUM constants (see constants/item_constants.asm)
|
||||
|
||||
; TMs
|
||||
n = 1
|
||||
|
@ -326,7 +326,7 @@ RunBattleAnimCommand:
|
||||
jp hl
|
||||
|
||||
BattleAnimCommands::
|
||||
; entries correspond to macros/scripts/battle_anims.asm enumeration
|
||||
; entries correspond to anim_* constants (see macros/scripts/battle_anims.asm)
|
||||
dw BattleAnimCmd_Obj
|
||||
dw BattleAnimCmd_1GFX
|
||||
dw BattleAnimCmd_2GFX
|
||||
|
@ -231,7 +231,7 @@ DoTradeAnimation:
|
||||
jumptable .JumpTable, wJumptableIndex
|
||||
|
||||
.JumpTable:
|
||||
; entries correspond to macros/scripts/trade_anims.asm enumeration
|
||||
; entries correspond to tradeanim_* constants (see macros/scripts/trade_anims.asm)
|
||||
dw TradeAnim_AdvanceScriptPointer ; 00
|
||||
dw TradeAnim_ShowGivemonData ; 01
|
||||
dw TradeAnim_ShowGetmonData ; 02
|
||||
|
@ -1,5 +1,5 @@
|
||||
MovementPointers:
|
||||
; entries correspond to macros/scripts/movement.asm enumeration
|
||||
; entries correspond to movement_* constants (see macros/scripts/movement.asm)
|
||||
dw Movement_turn_head_down ; 00
|
||||
dw Movement_turn_head_up ; 01
|
||||
dw Movement_turn_head_left ; 02
|
||||
|
@ -62,7 +62,7 @@ RunScriptCommand:
|
||||
ret
|
||||
|
||||
ScriptCommandTable:
|
||||
; entries correspond to macros/scripts/events.asm enumeration
|
||||
; entries correspond to *_command constants (see macros/scripts/events.asm)
|
||||
dw Script_scall ; 00
|
||||
dw Script_farscall ; 01
|
||||
dw Script_memcall ; 02
|
||||
|
@ -1,6 +1,6 @@
|
||||
; A library included as part of the Mobile Adapter GB SDK.
|
||||
|
||||
INCLUDE "macros/enum.asm"
|
||||
INCLUDE "macros/const.asm"
|
||||
INCLUDE "constants/hardware_constants.asm"
|
||||
INCLUDE "constants/mobile_constants.asm"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
INCLUDE "macros/enum.asm"
|
||||
INCLUDE "macros/const.asm"
|
||||
INCLUDE "macros/predef.asm"
|
||||
INCLUDE "macros/rst.asm"
|
||||
INCLUDE "macros/data.asm"
|
||||
|
24
macros/const.asm
Normal file
24
macros/const.asm
Normal file
@ -0,0 +1,24 @@
|
||||
; Enumerate constants
|
||||
|
||||
const_def: MACRO
|
||||
if _NARG >= 1
|
||||
const_value = \1
|
||||
else
|
||||
const_value = 0
|
||||
endc
|
||||
if _NARG >= 2
|
||||
const_inc = \2
|
||||
else
|
||||
const_inc = 1
|
||||
endc
|
||||
ENDM
|
||||
|
||||
const: MACRO
|
||||
\1 EQU const_value
|
||||
const_value = const_value + const_inc
|
||||
ENDM
|
||||
|
||||
shift_const: MACRO
|
||||
\1 EQU (1 << const_value)
|
||||
const_value = const_value + const_inc
|
||||
ENDM
|
@ -1,43 +0,0 @@
|
||||
; Enumerate variables
|
||||
|
||||
enum_start: MACRO
|
||||
if _NARG >= 1
|
||||
__enum__ = \1
|
||||
else
|
||||
__enum__ = 0
|
||||
endc
|
||||
if _NARG >= 2
|
||||
__enumdir__ = \2
|
||||
else
|
||||
__enumdir__ = 1
|
||||
endc
|
||||
ENDM
|
||||
|
||||
enum: MACRO
|
||||
\1 EQU __enum__
|
||||
__enum__ = __enum__ + __enumdir__
|
||||
ENDM
|
||||
|
||||
enum_set: MACRO
|
||||
__enum__ = \1
|
||||
ENDM
|
||||
|
||||
; Enumerate constants
|
||||
|
||||
const_def: MACRO
|
||||
if _NARG >= 1
|
||||
const_value = \1
|
||||
else
|
||||
const_value = 0
|
||||
endc
|
||||
ENDM
|
||||
|
||||
const: MACRO
|
||||
\1 EQU const_value
|
||||
const_value = const_value + 1
|
||||
ENDM
|
||||
|
||||
shift_const: MACRO
|
||||
\1 EQU (1 << const_value)
|
||||
const_value = const_value + 1
|
||||
ENDM
|
@ -41,17 +41,17 @@ noise_note: MACRO
|
||||
ENDM
|
||||
|
||||
; MusicCommands indexes (see audio/engine.asm)
|
||||
enum_start $d0, 8
|
||||
FIRST_MUSIC_CMD EQU __enum__
|
||||
const_def $d0, 8
|
||||
FIRST_MUSIC_CMD EQU const_value
|
||||
|
||||
enum octave_cmd ; $d0
|
||||
const octave_cmd ; $d0
|
||||
octave: MACRO
|
||||
db octave_cmd | 8 - (\1) ; octave
|
||||
ENDM
|
||||
|
||||
__enumdir__ = 1
|
||||
const_inc = 1
|
||||
|
||||
enum note_type_cmd ; $d8
|
||||
const note_type_cmd ; $d8
|
||||
note_type: MACRO
|
||||
db note_type_cmd
|
||||
db \1 ; note length
|
||||
@ -69,25 +69,25 @@ drum_speed: MACRO
|
||||
note_type \1 ; note length
|
||||
ENDM
|
||||
|
||||
enum transpose_cmd ; $d9
|
||||
const transpose_cmd ; $d9
|
||||
transpose: MACRO
|
||||
db transpose_cmd
|
||||
dn \1, \2 ; num octaves, num pitches
|
||||
ENDM
|
||||
|
||||
enum tempo_cmd ; $da
|
||||
const tempo_cmd ; $da
|
||||
tempo: MACRO
|
||||
db tempo_cmd
|
||||
bigdw \1 ; tempo
|
||||
ENDM
|
||||
|
||||
enum duty_cycle_cmd ; $db
|
||||
const duty_cycle_cmd ; $db
|
||||
duty_cycle: MACRO
|
||||
db duty_cycle_cmd
|
||||
db \1 ; duty cycle
|
||||
ENDM
|
||||
|
||||
enum volume_envelope_cmd ; $dc
|
||||
const volume_envelope_cmd ; $dc
|
||||
volume_envelope: MACRO
|
||||
db volume_envelope_cmd
|
||||
IF \2 < 0
|
||||
@ -97,7 +97,7 @@ volume_envelope: MACRO
|
||||
ENDC
|
||||
ENDM
|
||||
|
||||
enum pitch_sweep_cmd ; $dd
|
||||
const pitch_sweep_cmd ; $dd
|
||||
pitch_sweep: MACRO
|
||||
db pitch_sweep_cmd
|
||||
IF \2 < 0
|
||||
@ -107,25 +107,25 @@ pitch_sweep: MACRO
|
||||
ENDC
|
||||
ENDM
|
||||
|
||||
enum duty_cycle_pattern_cmd ; $de
|
||||
const duty_cycle_pattern_cmd ; $de
|
||||
duty_cycle_pattern: MACRO
|
||||
db duty_cycle_pattern_cmd
|
||||
db (\1 << 6) | (\2 << 4) | (\3 << 2) | (\4 << 0) ; duty cycle pattern
|
||||
ENDM
|
||||
|
||||
enum toggle_sfx_cmd ; $df
|
||||
const toggle_sfx_cmd ; $df
|
||||
toggle_sfx: MACRO
|
||||
db toggle_sfx_cmd
|
||||
ENDM
|
||||
|
||||
enum pitch_slide_cmd ; $e0
|
||||
const pitch_slide_cmd ; $e0
|
||||
pitch_slide: MACRO
|
||||
db pitch_slide_cmd
|
||||
db \1 - 1 ; duration
|
||||
dn 8 - \2, \3 % 12 ; octave, pitch
|
||||
ENDM
|
||||
|
||||
enum vibrato_cmd ; $e1
|
||||
const vibrato_cmd ; $e1
|
||||
vibrato: MACRO
|
||||
db vibrato_cmd
|
||||
db \1 ; delay
|
||||
@ -136,13 +136,13 @@ vibrato: MACRO
|
||||
ENDC
|
||||
ENDM
|
||||
|
||||
enum unknownmusic0xe2_cmd ; $e2
|
||||
const unknownmusic0xe2_cmd ; $e2
|
||||
unknownmusic0xe2: MACRO
|
||||
db unknownmusic0xe2_cmd
|
||||
db \1 ; unknown
|
||||
ENDM
|
||||
|
||||
enum toggle_noise_cmd ; $e3
|
||||
const toggle_noise_cmd ; $e3
|
||||
toggle_noise: MACRO
|
||||
db toggle_noise_cmd
|
||||
IF _NARG > 0
|
||||
@ -150,13 +150,13 @@ toggle_noise: MACRO
|
||||
ENDC
|
||||
ENDM
|
||||
|
||||
enum force_stereo_panning_cmd ; $e4
|
||||
const force_stereo_panning_cmd ; $e4
|
||||
force_stereo_panning: MACRO
|
||||
db force_stereo_panning_cmd
|
||||
dn %1111 * (1 && \1), %1111 * (1 && \2) ; left enable, right enable
|
||||
ENDM
|
||||
|
||||
enum volume_cmd ; $e5
|
||||
const volume_cmd ; $e5
|
||||
volume: MACRO
|
||||
db volume_cmd
|
||||
IF _NARG > 1
|
||||
@ -166,65 +166,65 @@ volume: MACRO
|
||||
ENDC
|
||||
ENDM
|
||||
|
||||
enum pitch_offset_cmd ; $e6
|
||||
const pitch_offset_cmd ; $e6
|
||||
pitch_offset: MACRO
|
||||
db pitch_offset_cmd
|
||||
bigdw \1 ; pitch offset
|
||||
ENDM
|
||||
|
||||
enum unknownmusic0xe7_cmd ; $e7
|
||||
const unknownmusic0xe7_cmd ; $e7
|
||||
unknownmusic0xe7: MACRO
|
||||
db unknownmusic0xe7_cmd
|
||||
db \1 ; unknown
|
||||
ENDM
|
||||
|
||||
enum unknownmusic0xe8_cmd ; $e8
|
||||
const unknownmusic0xe8_cmd ; $e8
|
||||
unknownmusic0xe8: MACRO
|
||||
db unknownmusic0xe8_cmd
|
||||
db \1 ; unknown
|
||||
ENDM
|
||||
|
||||
enum tempo_relative_cmd ; $e9
|
||||
const tempo_relative_cmd ; $e9
|
||||
tempo_relative: MACRO
|
||||
db tempo_relative_cmd
|
||||
bigdw \1 ; tempo adjustment
|
||||
ENDM
|
||||
|
||||
enum restart_channel_cmd ; $ea
|
||||
const restart_channel_cmd ; $ea
|
||||
restart_channel: MACRO
|
||||
db restart_channel_cmd
|
||||
dw \1 ; address
|
||||
ENDM
|
||||
|
||||
enum new_song_cmd ; $eb
|
||||
const new_song_cmd ; $eb
|
||||
new_song: MACRO
|
||||
db new_song_cmd
|
||||
bigdw \1 ; id
|
||||
ENDM
|
||||
|
||||
enum sfx_priority_on_cmd ; $ec
|
||||
const sfx_priority_on_cmd ; $ec
|
||||
sfx_priority_on: MACRO
|
||||
db sfx_priority_on_cmd
|
||||
ENDM
|
||||
|
||||
enum sfx_priority_off_cmd ; $ed
|
||||
const sfx_priority_off_cmd ; $ed
|
||||
sfx_priority_off: MACRO
|
||||
db sfx_priority_off_cmd
|
||||
ENDM
|
||||
|
||||
enum unknownmusic0xee_cmd ; $ee
|
||||
const unknownmusic0xee_cmd ; $ee
|
||||
unknownmusic0xee: MACRO
|
||||
db unknownmusic0xee_cmd
|
||||
dw \1 ; address
|
||||
ENDM
|
||||
|
||||
enum stereo_panning_cmd ; $ef
|
||||
const stereo_panning_cmd ; $ef
|
||||
stereo_panning: MACRO
|
||||
db stereo_panning_cmd
|
||||
dn %1111 * (1 && \1), %1111 * (1 && \2) ; left enable, right enable
|
||||
ENDM
|
||||
|
||||
enum sfx_toggle_noise_cmd ; $f0
|
||||
const sfx_toggle_noise_cmd ; $f0
|
||||
sfx_toggle_noise: MACRO
|
||||
db sfx_toggle_noise_cmd
|
||||
IF _NARG > 0
|
||||
@ -232,84 +232,84 @@ sfx_toggle_noise: MACRO
|
||||
ENDC
|
||||
ENDM
|
||||
|
||||
enum music0xf1_cmd ; $f1
|
||||
const music0xf1_cmd ; $f1
|
||||
music0xf1: MACRO
|
||||
db music0xf1_cmd
|
||||
ENDM
|
||||
|
||||
enum music0xf2_cmd ; $f2
|
||||
const music0xf2_cmd ; $f2
|
||||
music0xf2: MACRO
|
||||
db music0xf2_cmd
|
||||
ENDM
|
||||
|
||||
enum music0xf3_cmd ; $f3
|
||||
const music0xf3_cmd ; $f3
|
||||
music0xf3: MACRO
|
||||
db music0xf3_cmd
|
||||
ENDM
|
||||
|
||||
enum music0xf4_cmd ; $f4
|
||||
const music0xf4_cmd ; $f4
|
||||
music0xf4: MACRO
|
||||
db music0xf4_cmd
|
||||
ENDM
|
||||
|
||||
enum music0xf5_cmd ; $f5
|
||||
const music0xf5_cmd ; $f5
|
||||
music0xf5: MACRO
|
||||
db music0xf5_cmd
|
||||
ENDM
|
||||
|
||||
enum music0xf6_cmd ; $f6
|
||||
const music0xf6_cmd ; $f6
|
||||
music0xf6: MACRO
|
||||
db music0xf6_cmd
|
||||
ENDM
|
||||
|
||||
enum music0xf7_cmd ; $f7
|
||||
const music0xf7_cmd ; $f7
|
||||
music0xf7: MACRO
|
||||
db music0xf7_cmd
|
||||
ENDM
|
||||
|
||||
enum music0xf8_cmd ; $f8
|
||||
const music0xf8_cmd ; $f8
|
||||
music0xf8: MACRO
|
||||
db music0xf8_cmd
|
||||
ENDM
|
||||
|
||||
enum unknownmusic0xf9_cmd ; $f9
|
||||
const unknownmusic0xf9_cmd ; $f9
|
||||
unknownmusic0xf9: MACRO
|
||||
db unknownmusic0xf9_cmd
|
||||
ENDM
|
||||
|
||||
enum set_condition_cmd ; $fa
|
||||
const set_condition_cmd ; $fa
|
||||
set_condition: MACRO
|
||||
db set_condition_cmd
|
||||
db \1 ; condition
|
||||
ENDM
|
||||
|
||||
enum sound_jump_if_cmd ; $fb
|
||||
const sound_jump_if_cmd ; $fb
|
||||
sound_jump_if: MACRO
|
||||
db sound_jump_if_cmd
|
||||
db \1 ; condition
|
||||
dw \2 ; address
|
||||
ENDM
|
||||
|
||||
enum sound_jump_cmd ; $fc
|
||||
const sound_jump_cmd ; $fc
|
||||
sound_jump: MACRO
|
||||
db sound_jump_cmd
|
||||
dw \1 ; address
|
||||
ENDM
|
||||
|
||||
enum sound_loop_cmd ; $fd
|
||||
const sound_loop_cmd ; $fd
|
||||
sound_loop: MACRO
|
||||
db sound_loop_cmd
|
||||
db \1 ; count
|
||||
dw \2 ; address
|
||||
ENDM
|
||||
|
||||
enum sound_call_cmd ; $fe
|
||||
const sound_call_cmd ; $fe
|
||||
sound_call: MACRO
|
||||
db sound_call_cmd
|
||||
dw \1 ; address
|
||||
ENDM
|
||||
|
||||
enum sound_ret_cmd ; $ff
|
||||
const sound_ret_cmd ; $ff
|
||||
sound_ret: MACRO
|
||||
db sound_ret_cmd
|
||||
ENDM
|
||||
|
@ -6,9 +6,9 @@ endc
|
||||
ENDM
|
||||
|
||||
; BattleAnimCommands indexes (see engine/battle_anims/anim_commands.asm)
|
||||
enum_start $d0
|
||||
const_def $d0
|
||||
|
||||
enum anim_obj_command ; $d0
|
||||
const anim_obj_command ; $d0
|
||||
anim_obj: MACRO
|
||||
db anim_obj_command
|
||||
if _NARG <= 4
|
||||
@ -25,20 +25,20 @@ else
|
||||
endc
|
||||
ENDM
|
||||
|
||||
enum anim_1gfx_command ; $d1
|
||||
const anim_1gfx_command ; $d1
|
||||
anim_1gfx: MACRO
|
||||
db anim_1gfx_command
|
||||
db \1 ; gfx1
|
||||
ENDM
|
||||
|
||||
enum anim_2gfx_command ; $d2
|
||||
const anim_2gfx_command ; $d2
|
||||
anim_2gfx: MACRO
|
||||
db anim_2gfx_command
|
||||
db \1 ; gfx1
|
||||
db \2 ; gfx2
|
||||
ENDM
|
||||
|
||||
enum anim_3gfx_command ; $d3
|
||||
const anim_3gfx_command ; $d3
|
||||
anim_3gfx: MACRO
|
||||
db anim_3gfx_command
|
||||
db \1 ; gfx1
|
||||
@ -46,7 +46,7 @@ anim_3gfx: MACRO
|
||||
db \3 ; gfx3
|
||||
ENDM
|
||||
|
||||
enum anim_4gfx_command ; $d4
|
||||
const anim_4gfx_command ; $d4
|
||||
anim_4gfx: MACRO
|
||||
db anim_4gfx_command
|
||||
db \1 ; gfx1
|
||||
@ -55,7 +55,7 @@ anim_4gfx: MACRO
|
||||
db \4 ; gfx4
|
||||
ENDM
|
||||
|
||||
enum anim_5gfx_command ; $d5
|
||||
const anim_5gfx_command ; $d5
|
||||
anim_5gfx: MACRO
|
||||
db anim_5gfx_command
|
||||
db \1 ; gfx1
|
||||
@ -65,147 +65,147 @@ anim_5gfx: MACRO
|
||||
db \5 ; gfx5
|
||||
ENDM
|
||||
|
||||
enum anim_incobj_command ; $d6
|
||||
const anim_incobj_command ; $d6
|
||||
anim_incobj: MACRO
|
||||
db anim_incobj_command
|
||||
db \1 ; object_id
|
||||
ENDM
|
||||
|
||||
enum anim_setobj_command ; $d7
|
||||
const anim_setobj_command ; $d7
|
||||
anim_setobj: MACRO
|
||||
db anim_setobj_command
|
||||
db \1 ; object_id
|
||||
db \2 ; value
|
||||
ENDM
|
||||
|
||||
enum anim_incbgeffect_command ; $d8
|
||||
const anim_incbgeffect_command ; $d8
|
||||
anim_incbgeffect: MACRO
|
||||
db anim_incbgeffect_command
|
||||
db \1 ; effect
|
||||
ENDM
|
||||
|
||||
enum anim_battlergfx_2row_command ; $d9
|
||||
const anim_battlergfx_2row_command ; $d9
|
||||
anim_battlergfx_2row: MACRO
|
||||
db anim_battlergfx_2row_command
|
||||
ENDM
|
||||
|
||||
enum anim_battlergfx_1row_command ; $da
|
||||
const anim_battlergfx_1row_command ; $da
|
||||
anim_battlergfx_1row: MACRO
|
||||
db anim_battlergfx_1row_command
|
||||
ENDM
|
||||
|
||||
enum anim_checkpokeball_command ; $db
|
||||
const anim_checkpokeball_command ; $db
|
||||
anim_checkpokeball: MACRO
|
||||
db anim_checkpokeball_command
|
||||
ENDM
|
||||
|
||||
enum anim_transform_command ; $dc
|
||||
const anim_transform_command ; $dc
|
||||
anim_transform: MACRO
|
||||
db anim_transform_command
|
||||
ENDM
|
||||
|
||||
enum anim_raisesub_command ; $dd
|
||||
const anim_raisesub_command ; $dd
|
||||
anim_raisesub: MACRO
|
||||
db anim_raisesub_command
|
||||
ENDM
|
||||
|
||||
enum anim_dropsub_command ; $de
|
||||
const anim_dropsub_command ; $de
|
||||
anim_dropsub: MACRO
|
||||
db anim_dropsub_command
|
||||
ENDM
|
||||
|
||||
enum anim_resetobp0_command ; $df
|
||||
const anim_resetobp0_command ; $df
|
||||
anim_resetobp0: MACRO
|
||||
db anim_resetobp0_command
|
||||
ENDM
|
||||
|
||||
enum anim_sound_command ; $e0
|
||||
const anim_sound_command ; $e0
|
||||
anim_sound: MACRO
|
||||
db anim_sound_command
|
||||
db (\1 << 2) | \2 ; duration, tracks
|
||||
db \3 ; sound_id
|
||||
ENDM
|
||||
|
||||
enum anim_cry_command ; $e1
|
||||
const anim_cry_command ; $e1
|
||||
anim_cry: MACRO
|
||||
db anim_cry_command
|
||||
db \1 ; pitch
|
||||
ENDM
|
||||
|
||||
enum anim_minimizeopp_command ; $e2
|
||||
const anim_minimizeopp_command ; $e2
|
||||
anim_minimizeopp: MACRO
|
||||
db anim_minimizeopp_command
|
||||
ENDM
|
||||
|
||||
enum anim_oamon_command ; $e3
|
||||
const anim_oamon_command ; $e3
|
||||
anim_oamon: MACRO
|
||||
db anim_oamon_command
|
||||
ENDM
|
||||
|
||||
enum anim_oamoff_command ; $e4
|
||||
const anim_oamoff_command ; $e4
|
||||
anim_oamoff: MACRO
|
||||
db anim_oamoff_command
|
||||
ENDM
|
||||
|
||||
enum anim_clearobjs_command ; $e5
|
||||
const anim_clearobjs_command ; $e5
|
||||
anim_clearobjs: MACRO
|
||||
db anim_clearobjs_command
|
||||
ENDM
|
||||
|
||||
enum anim_beatup_command ; $e6
|
||||
const anim_beatup_command ; $e6
|
||||
anim_beatup: MACRO
|
||||
db anim_beatup_command
|
||||
ENDM
|
||||
|
||||
enum anim_0xe7_command ; $e7
|
||||
const anim_0xe7_command ; $e7
|
||||
anim_0xe7: MACRO
|
||||
db anim_0xe7_command
|
||||
ENDM
|
||||
|
||||
enum anim_updateactorpic_command ; $e8
|
||||
const anim_updateactorpic_command ; $e8
|
||||
anim_updateactorpic: MACRO
|
||||
db anim_updateactorpic_command
|
||||
ENDM
|
||||
|
||||
enum anim_minimize_command ; $e9
|
||||
const anim_minimize_command ; $e9
|
||||
anim_minimize: MACRO
|
||||
db anim_minimize_command
|
||||
ENDM
|
||||
|
||||
enum anim_0xea_command ; $ea
|
||||
const anim_0xea_command ; $ea
|
||||
anim_0xea: MACRO
|
||||
db anim_0xea_command
|
||||
ENDM
|
||||
|
||||
enum anim_0xeb_command ; $eb
|
||||
const anim_0xeb_command ; $eb
|
||||
anim_0xeb: MACRO
|
||||
db anim_0xeb_command
|
||||
ENDM
|
||||
|
||||
enum anim_0xec_command ; $ec
|
||||
const anim_0xec_command ; $ec
|
||||
anim_0xec: MACRO
|
||||
db anim_0xec_command
|
||||
ENDM
|
||||
|
||||
enum anim_0xed_command ; $ed
|
||||
const anim_0xed_command ; $ed
|
||||
anim_0xed: MACRO
|
||||
db anim_0xed_command
|
||||
ENDM
|
||||
|
||||
enum anim_if_param_and_command ; $ee
|
||||
const anim_if_param_and_command ; $ee
|
||||
anim_if_param_and: MACRO
|
||||
db anim_if_param_and_command
|
||||
db \1 ; value
|
||||
dw \2 ; address
|
||||
ENDM
|
||||
|
||||
enum anim_jumpuntil_command ; $ef
|
||||
const anim_jumpuntil_command ; $ef
|
||||
anim_jumpuntil: MACRO
|
||||
db anim_jumpuntil_command
|
||||
dw \1 ; address
|
||||
ENDM
|
||||
|
||||
enum anim_bgeffect_command ; $f0
|
||||
const anim_bgeffect_command ; $f0
|
||||
anim_bgeffect: MACRO
|
||||
db anim_bgeffect_command
|
||||
db \1 ; effect
|
||||
@ -214,89 +214,89 @@ anim_bgeffect: MACRO
|
||||
db \4 ; unknown
|
||||
ENDM
|
||||
|
||||
enum anim_bgp_command ; $f1
|
||||
const anim_bgp_command ; $f1
|
||||
anim_bgp: MACRO
|
||||
db anim_bgp_command
|
||||
db \1 ; colors
|
||||
ENDM
|
||||
|
||||
enum anim_obp0_command ; $f2
|
||||
const anim_obp0_command ; $f2
|
||||
anim_obp0: MACRO
|
||||
db anim_obp0_command
|
||||
db \1 ; colors
|
||||
ENDM
|
||||
|
||||
enum anim_obp1_command ; $f3
|
||||
const anim_obp1_command ; $f3
|
||||
anim_obp1: MACRO
|
||||
db anim_obp1_command
|
||||
db \1 ; colors
|
||||
ENDM
|
||||
|
||||
enum anim_keepsprites_command ; $f4
|
||||
const anim_keepsprites_command ; $f4
|
||||
anim_keepsprites: MACRO
|
||||
db anim_keepsprites_command
|
||||
ENDM
|
||||
|
||||
enum anim_0xf5_command ; $f5
|
||||
const anim_0xf5_command ; $f5
|
||||
anim_0xf5: MACRO
|
||||
db anim_0xf5_command
|
||||
ENDM
|
||||
|
||||
enum anim_0xf6_command ; $f6
|
||||
const anim_0xf6_command ; $f6
|
||||
anim_0xf6: MACRO
|
||||
db anim_0xf6_command
|
||||
ENDM
|
||||
|
||||
enum anim_0xf7_command ; $f7
|
||||
const anim_0xf7_command ; $f7
|
||||
anim_0xf7: MACRO
|
||||
db anim_0xf7_command
|
||||
ENDM
|
||||
|
||||
enum anim_if_param_equal_command ; $f8
|
||||
const anim_if_param_equal_command ; $f8
|
||||
anim_if_param_equal: MACRO
|
||||
db anim_if_param_equal_command
|
||||
db \1 ; value
|
||||
dw \2 ; address
|
||||
ENDM
|
||||
|
||||
enum anim_setvar_command ; $f9
|
||||
const anim_setvar_command ; $f9
|
||||
anim_setvar: MACRO
|
||||
db anim_setvar_command
|
||||
db \1 ; value
|
||||
ENDM
|
||||
|
||||
enum anim_incvar_command ; $fa
|
||||
const anim_incvar_command ; $fa
|
||||
anim_incvar: MACRO
|
||||
db anim_incvar_command
|
||||
ENDM
|
||||
|
||||
enum anim_if_var_equal_command ; $fb
|
||||
const anim_if_var_equal_command ; $fb
|
||||
anim_if_var_equal: MACRO
|
||||
db anim_if_var_equal_command
|
||||
db \1 ; value
|
||||
dw \2 ; address
|
||||
ENDM
|
||||
|
||||
enum anim_jump_command ; $fc
|
||||
const anim_jump_command ; $fc
|
||||
anim_jump: MACRO
|
||||
db anim_jump_command
|
||||
dw \1 ; address
|
||||
ENDM
|
||||
|
||||
enum anim_loop_command ; $fd
|
||||
const anim_loop_command ; $fd
|
||||
anim_loop: MACRO
|
||||
db anim_loop_command
|
||||
db \1 ; count
|
||||
dw \2 ; address
|
||||
ENDM
|
||||
|
||||
enum anim_call_command ; $fe
|
||||
const anim_call_command ; $fe
|
||||
anim_call: MACRO
|
||||
db anim_call_command
|
||||
dw \1 ; address
|
||||
ENDM
|
||||
|
||||
enum anim_ret_command ; $ff
|
||||
const anim_ret_command ; $ff
|
||||
anim_ret: MACRO
|
||||
db anim_ret_command
|
||||
ENDM
|
||||
|
@ -1,10 +1,10 @@
|
||||
command: MACRO
|
||||
enum \1_command
|
||||
const \1_command
|
||||
\1 EQUS "db \1_command"
|
||||
ENDM
|
||||
|
||||
; BattleCommandPointers indexes (see data/battle/effect_command_pointers.asm)
|
||||
enum_start 1
|
||||
const_def 1
|
||||
command checkturn ; 01
|
||||
command checkobedience ; 02
|
||||
command usedmovetext ; 03
|
||||
@ -181,6 +181,6 @@ ENDM
|
||||
command startloop ; ae
|
||||
command curl ; af
|
||||
|
||||
enum_start $fe
|
||||
const_def $fe
|
||||
command endturn ; fe
|
||||
command endmove ; ff
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -12,41 +12,41 @@ endc
|
||||
db x
|
||||
ENDM
|
||||
|
||||
enum_start $fc
|
||||
const_def $fc
|
||||
|
||||
enum delanim_command ; $fc
|
||||
const delanim_command ; $fc
|
||||
delanim: MACRO
|
||||
; Removes the object from the screen, as opposed to `endanim` which just stops all motion
|
||||
db delanim_command
|
||||
ENDM
|
||||
|
||||
enum dowait_command ; $fd
|
||||
const dowait_command ; $fd
|
||||
dowait: MACRO
|
||||
db dowait_command
|
||||
db \1 ; frames
|
||||
ENDM
|
||||
|
||||
enum dorestart_command ; $fe
|
||||
const dorestart_command ; $fe
|
||||
dorestart: MACRO
|
||||
db dorestart_command
|
||||
ENDM
|
||||
|
||||
enum endanim_command ; $ff
|
||||
const endanim_command ; $ff
|
||||
endanim: MACRO
|
||||
db endanim_command
|
||||
ENDM
|
||||
|
||||
|
||||
; Used for pic animations
|
||||
__enum__ = $fd
|
||||
const_value = $fd
|
||||
|
||||
enum dorepeat_command ; $fd
|
||||
const dorepeat_command ; $fd
|
||||
dorepeat: MACRO
|
||||
db dorepeat_command
|
||||
db \1 ; command offset to jump to
|
||||
ENDM
|
||||
|
||||
enum setrepeat_command ; $fe
|
||||
const setrepeat_command ; $fe
|
||||
setrepeat: MACRO
|
||||
db setrepeat_command
|
||||
db \1 ; amount of times to repeat
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user