mirror of https://github.com/zeldaret/tmc.git
157 lines
3.5 KiB
C
157 lines
3.5 KiB
C
/**
|
|
* @file wisp.c
|
|
* @ingroup Enemies
|
|
*
|
|
* @brief Wisp enemy
|
|
*/
|
|
|
|
#include "enemy.h"
|
|
#include "save.h"
|
|
#include "object.h"
|
|
#include "functions.h"
|
|
|
|
static void sub_08033744(Entity* this);
|
|
|
|
extern void (*const gUnk_080CEB74[])(Entity*);
|
|
extern void (*const gUnk_080CEB8C[])(Entity*);
|
|
extern void (*const gUnk_080CEB98[])(Entity*);
|
|
|
|
extern u8 gUnk_080CEBA4[];
|
|
|
|
void Wisp(Entity* this) {
|
|
EnemyFunctionHandler(this, gUnk_080CEB74);
|
|
}
|
|
|
|
void sub_0803354C(Entity* this) {
|
|
gUnk_080CEB8C[this->action](this);
|
|
}
|
|
|
|
void sub_08033564(Entity* this) {
|
|
u32 bits;
|
|
Entity* ent;
|
|
|
|
bits = this->bitfield;
|
|
if ((bits & 0x80) == 0) {
|
|
return;
|
|
}
|
|
|
|
switch ((s32)bits & 0x3f) {
|
|
case 0:
|
|
this->action = 2;
|
|
this->spriteSettings.draw = FALSE;
|
|
COLLISION_OFF(this);
|
|
this->field_0x7c.HALF.LO = 0x27c;
|
|
gPlayerState.flags |= PL_DRUGGED;
|
|
gSave.stats.effect = this->type + 1;
|
|
gSave.stats.effectTimer = 600;
|
|
if (this->type == 0) {
|
|
break;
|
|
}
|
|
DeleteThisEntity();
|
|
break;
|
|
case 0xe:
|
|
case 0x15:
|
|
this->health = 0;
|
|
break;
|
|
case 0x14:
|
|
COLLISION_OFF(this);
|
|
this->iframes = 0;
|
|
this->spriteSettings.draw = FALSE;
|
|
ent = CreateFx(this, FX_DEATH, 0);
|
|
if (ent != NULL) {
|
|
this->child = ent;
|
|
this->actionDelay = 0xe;
|
|
CopyPosition(this, ent);
|
|
}
|
|
DeleteThisEntity();
|
|
break;
|
|
}
|
|
}
|
|
|
|
void sub_0803362C(Entity* this) {
|
|
if (sub_0806F520() != 0) {
|
|
gUnk_080CEB98[this->subAction](this);
|
|
}
|
|
}
|
|
|
|
void sub_08033650(Entity* this) {
|
|
this->subAction = 2;
|
|
}
|
|
|
|
void sub_08033658(Entity* this) {
|
|
sub_0806F4E8(this);
|
|
}
|
|
|
|
void sub_08033660(Entity* this) {
|
|
if (sub_0806F3E4(this)) {
|
|
sub_0804A7D4(this);
|
|
}
|
|
}
|
|
|
|
void sub_08033674(Entity* this) {
|
|
sub_0804A720(this);
|
|
this->actionDelay = 0;
|
|
this->action = 1;
|
|
this->field_0x1c = 1;
|
|
this->field_0x80.HWORD = this->x.HALF.HI;
|
|
this->field_0x82.HWORD = this->y.HALF.HI;
|
|
sub_08033744(this);
|
|
InitializeAnimation(this, this->type2);
|
|
}
|
|
|
|
void sub_080336A8(Entity* this) {
|
|
if (--this->actionDelay == 0) {
|
|
sub_08033744(this);
|
|
} else if (this->collisions != 0) {
|
|
sub_0800417E(this, this->collisions);
|
|
}
|
|
ProcessMovement(this);
|
|
GetNextFrame(this);
|
|
}
|
|
|
|
void sub_080336DC(Entity* this) {
|
|
switch ((u16)-- this->field_0x7c.HALF.LO) {
|
|
case 0x24:
|
|
this->x.HALF.HI = this->field_0x80.HWORD;
|
|
this->y.HALF.HI = this->field_0x82.HWORD;
|
|
break;
|
|
case 0x18:
|
|
CreateDust(this);
|
|
break;
|
|
case 0xc:
|
|
this->spriteSettings.draw = TRUE;
|
|
break;
|
|
case 0x0:
|
|
this->action = 1;
|
|
COLLISION_ON(this);
|
|
sub_08033744(this);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void sub_08033744(Entity* this) {
|
|
u32 temp;
|
|
u32 rand = (u32)Random() % 256;
|
|
|
|
// 8 potential options
|
|
this->actionDelay = gUnk_080CEBA4[(rand & 0x70) >> 4];
|
|
|
|
// 4 potential options
|
|
temp = ((rand & 0xc) * 2);
|
|
|
|
// 75% chance to pass
|
|
if ((sub_08049FA0(this) == 0) && ((rand % 4) != 0)) {
|
|
temp = sub_08049EE4(this);
|
|
|
|
// 50% chance to pass
|
|
if ((rand & 0x80) != 0) {
|
|
temp += 0x4;
|
|
temp &= 0x18;
|
|
} else {
|
|
temp += 0x1c;
|
|
temp &= 0x18;
|
|
}
|
|
}
|
|
this->direction = temp;
|
|
}
|