diff options
author | entrpntr <12521136+entrpntr@users.noreply.github.com> | 2020-06-03 19:58:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 19:58:45 -0400 |
commit | d3a6668b1ce4336f9a4443c70376039b700ee012 (patch) | |
tree | 954c9cf0cbfad8207399563d36fd64d02c6f16ce /macros/scripts | |
parent | 7cc52fe23bac6ab9b2d58667e825aef62dd74e03 (diff) | |
parent | 1210a5ef54141eeeebf79132a3124a8392c35c4e (diff) |
Merge pull request #41 from libjet/bank23
Disassemble bank $23
Diffstat (limited to 'macros/scripts')
-rwxr-xr-x | macros/scripts/gfx_anims.asm | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/macros/scripts/gfx_anims.asm b/macros/scripts/gfx_anims.asm new file mode 100755 index 00000000..a6241a0d --- /dev/null +++ b/macros/scripts/gfx_anims.asm @@ -0,0 +1,53 @@ +; pic + oam animations + +frame: MACRO + db \1 +x = \2 +if _NARG > 2 +rept _NARG - 2 +x = x | (1 << (\3 + 1)) + shift +endr +endc + db x +ENDM + + enum_start $fc + + enum 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 +dowait: MACRO + db dowait_command + db \1 ; frames +ENDM + + enum dorestart_command ; $fe +dorestart: MACRO + db dorestart_command +ENDM + + enum endanim_command ; $ff +endanim: MACRO + db endanim_command +ENDM + + +; Used for pic animations +__enum__ = $fd + + enum dorepeat_command ; $fd +dorepeat: MACRO + db dorepeat_command + db \1 ; command offset to jump to +ENDM + + enum setrepeat_command ; $fe +setrepeat: MACRO + db setrepeat_command + db \1 ; amount of times to repeat +ENDM |