mirror of
https://github.com/zeldaret/tmc
synced 2026-06-08 04:17:19 -04:00
64 lines
1.2 KiB
C
64 lines
1.2 KiB
C
#include "global.h"
|
|
#include "entity.h"
|
|
#include "message.h"
|
|
#include "effects.h"
|
|
#include "npc.h"
|
|
|
|
extern void sub_08063280(Entity*, u32);
|
|
|
|
extern void (*gMailboxBehaviors[4])(Entity*);
|
|
|
|
void Mailbox(Entity* this) {
|
|
gMailboxBehaviors[this->action](this);
|
|
|
|
if (this->action != 0) {
|
|
sub_0806ED78(this);
|
|
}
|
|
}
|
|
|
|
void sub_08063210(Entity* this) {
|
|
this->action = 1;
|
|
InitAnimationForceUpdate(this, 0);
|
|
}
|
|
|
|
void sub_08063220(Entity* this) {
|
|
u8 bVar1;
|
|
|
|
if (this->interactType != 0) {
|
|
this->action = 2;
|
|
bVar1 = 8;
|
|
} else {
|
|
bVar1 = 0;
|
|
}
|
|
|
|
if (this->animIndex != bVar1) {
|
|
InitAnimationForceUpdate(this, bVar1);
|
|
} else {
|
|
sub_08063280(this, bVar1);
|
|
}
|
|
}
|
|
|
|
void sub_08063254(Entity* this, u32 unused) {
|
|
sub_08063280(this, unused);
|
|
if ((this->frame & ANIM_DONE) != 0) {
|
|
this->action = 3;
|
|
MessageFromTarget(0);
|
|
}
|
|
}
|
|
|
|
void sub_08063278(Entity* this, u32 unused) {
|
|
sub_08063280(this, unused);
|
|
}
|
|
|
|
void sub_08063280(Entity* this, u32 unused) {
|
|
Entity* e; // r4@1
|
|
u8 var; // r2@1
|
|
|
|
e = this;
|
|
UpdateAnimationSingleFrame(e);
|
|
var = e->frame & 0x7F;
|
|
e->frame ^= var;
|
|
if (var == 2)
|
|
CreateFx(e, FX_MAILBOX_UNUSED, 0);
|
|
}
|