2017-12-14 00:38:08 -05:00
|
|
|
; pic + oam animations
|
2017-12-14 00:36:24 -05:00
|
|
|
|
2017-12-28 13:23:44 +01:00
|
|
|
frame: MACRO
|
2017-12-14 00:36:24 -05:00
|
|
|
db \1
|
|
|
|
x = \2
|
|
|
|
if _NARG > 2
|
2020-03-21 14:01:05 -04:00
|
|
|
rept _NARG - 2
|
2017-12-14 00:36:24 -05:00
|
|
|
x = x | (1 << (\3 + 1))
|
|
|
|
shift
|
|
|
|
endr
|
|
|
|
endc
|
|
|
|
db x
|
2017-12-28 22:31:16 +01:00
|
|
|
ENDM
|
2017-12-14 00:36:24 -05:00
|
|
|
|
2020-07-08 16:20:15 -04:00
|
|
|
const_def -1, -1
|
2017-12-14 00:36:24 -05:00
|
|
|
|
2020-07-08 16:20:15 -04:00
|
|
|
const endanim_command ; $ff
|
|
|
|
endanim: MACRO
|
|
|
|
db endanim_command
|
|
|
|
ENDM
|
|
|
|
|
|
|
|
const dorestart_command ; $fe
|
|
|
|
dorestart: MACRO
|
|
|
|
db dorestart_command
|
2017-12-28 22:31:16 +01:00
|
|
|
ENDM
|
2017-12-14 00:36:24 -05:00
|
|
|
|
2020-07-08 15:30:23 -04:00
|
|
|
const dowait_command ; $fd
|
2019-02-15 02:54:35 +01:00
|
|
|
dowait: MACRO
|
|
|
|
db dowait_command
|
|
|
|
db \1 ; frames
|
2017-12-28 22:31:16 +01:00
|
|
|
ENDM
|
2017-12-14 00:36:24 -05:00
|
|
|
|
2020-07-08 16:20:15 -04:00
|
|
|
const delanim_command ; $fc
|
|
|
|
delanim: MACRO
|
|
|
|
; Removes the object from the screen, as opposed to `endanim` which just stops all motion
|
|
|
|
db delanim_command
|
2017-12-28 22:31:16 +01:00
|
|
|
ENDM
|
2017-12-14 00:36:24 -05:00
|
|
|
|
|
|
|
|
2019-02-15 02:54:35 +01:00
|
|
|
; Used for pic animations
|
2020-07-08 16:20:15 -04:00
|
|
|
const_def -2, -1
|
2019-02-15 02:54:35 +01:00
|
|
|
|
2020-07-08 15:30:23 -04:00
|
|
|
const setrepeat_command ; $fe
|
2019-02-15 02:54:35 +01:00
|
|
|
setrepeat: MACRO
|
|
|
|
db setrepeat_command
|
|
|
|
db \1 ; amount of times to repeat
|
2017-12-28 22:31:16 +01:00
|
|
|
ENDM
|
2020-07-08 16:20:15 -04:00
|
|
|
|
|
|
|
const dorepeat_command ; $fd
|
|
|
|
dorepeat: MACRO
|
|
|
|
db dorepeat_command
|
|
|
|
db \1 ; command offset to jump to
|
|
|
|
ENDM
|