mirror of https://github.com/zeldaret/tmc.git
55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
#define NENT_DEPRECATED
|
|
#include "entity.h"
|
|
#include "functions.h"
|
|
#include "screen.h"
|
|
|
|
void sub_080A04A4(Entity*);
|
|
void sub_080A04E0(Entity*);
|
|
void sub_080A04E8();
|
|
|
|
void ObjectAD(Entity* this) {
|
|
static void (*const actionFuncs[])(Entity*) = {
|
|
sub_080A04A4,
|
|
sub_080A04E0,
|
|
};
|
|
|
|
actionFuncs[this->action]((Entity*)this);
|
|
}
|
|
|
|
void sub_080A04A4(Entity* this) {
|
|
this->action = 1;
|
|
this->frameIndex = 4;
|
|
this->timer = 0;
|
|
this->spriteRendering.b3 = 3;
|
|
this->spritePriority.b0 = 7;
|
|
this->z.WORD = 0;
|
|
this->spriteRendering.alphaBlend = 1;
|
|
sub_080A04E8();
|
|
}
|
|
|
|
void sub_080A04E0(Entity* this) {
|
|
sub_080A04E8();
|
|
}
|
|
|
|
void sub_080A04E8(Entity* this) {
|
|
int iVar2;
|
|
u32 uVar3;
|
|
|
|
iVar2 = (this->parent->z.HALF.HI < 0 ? -this->parent->z.HALF.HI : this->parent->z.HALF.HI) + 0x100;
|
|
SetAffineInfo(this, iVar2, iVar2, 0);
|
|
iVar2 = ((0x1c0 - iVar2) * 10) / iVar2;
|
|
if (this->parent->type == 0x41) {
|
|
uVar3 = iVar2 * 2;
|
|
if (0xc < uVar3) {
|
|
uVar3 = 0xc;
|
|
}
|
|
iVar2 = (0x10 - iVar2) * 0x100;
|
|
iVar2 |= uVar3;
|
|
iVar2 &= 0xffff;
|
|
} else {
|
|
iVar2 |= (0x10 - iVar2) * 0x100;
|
|
iVar2 &= 0xffff;
|
|
}
|
|
gScreen.controls.alphaBlend = iVar2;
|
|
}
|