Files
tmc/src/object/objectB2.c
T
2021-12-28 12:08:30 -08:00

39 lines
942 B
C

#include "global.h"
#include "entity.h"
#include "functions.h"
extern u32 sub_080AE4CC(Entity*, u32, u32, u32);
extern void* gUnk_02027EB4;
extern void* gUnk_0200D654;
void ObjectB2(Entity* this) {
void* pEVar3;
if (this->action == 0) {
this->action = 1;
this->actionDelay = 0x10;
this->direction = this->type << 3;
if (this->collisionLayer == 2) {
pEVar3 = &gUnk_0200D654;
} else {
pEVar3 = &gUnk_02027EB4;
}
this->child = pEVar3;
InitializeAnimation(this, this->type);
}
this->speed = this->parent->speed;
LinearMoveUpdate(this);
if (sub_080AE4CC(this->child, this->x.HALF.HI, this->y.HALF.HI, 9) != 0) {
DeleteThisEntity();
}
if (this->speed < 0x41) {
this->spriteSettings.draw ^= 1;
if (--this->actionDelay == 0) {
DeleteThisEntity();
}
}
GetNextFrame(this);
}