diff options
author | libjet <libj3t@gmail.com> | 2019-12-11 01:38:36 +0000 |
---|---|---|
committer | libjet <libj3t@gmail.com> | 2019-12-11 01:38:36 +0000 |
commit | 93872e920e9c82e1299a7f674cba5b56397b359d (patch) | |
tree | ad89e14c568a891b702b07e1b44ac25ab253ad73 /macros/scripts/gfx_anims.asm | |
parent | cc8fc02a9467307f1494946fd08b4e57d4ffdac5 (diff) |
Updated macros/scripts/text.asm and cleaned up macros.asm
Diffstat (limited to 'macros/scripts/gfx_anims.asm')
-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..3756481d --- /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 |