summaryrefslogtreecommitdiff
path: root/src/projectile/v3HandProjectile.c
blob: ce11e1ef7898e9438c2f59edee0dee0d913eda96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "entity.h"
#include "collision.h"
#include "enemy.h"
#include "player.h"
#include "functions.h"

extern void (*const V3HandProjectile_Functions[])(Entity*);

void V3HandProjectile(Entity* this) {
    V3HandProjectile_Functions[GetNextFunction(this)](this);
}

void V3HandProjectile_OnTick(Entity* this) {
    if (this->action == 0) {
        this->action = 1;
        this->direction = GetFacingDirection(this, &gPlayerEntity);
        InitializeAnimation(this, 0);
        SoundReq(SFX_199);
    }
    if (this->z.HALF.HI < -6) {
        this->z.HALF.HI += 2;
    }
    ProcessMovement3(this);
    if (this->collisions != COL_NONE) {
        DeleteThisEntity();
    }
    GetNextFrame(this);
    if (IsProjectileOffScreen(this)) {
        DeleteThisEntity();
    }
}

void sub_080ABFA8(Entity* this) {
    DeleteThisEntity();
}

void (*const V3HandProjectile_Functions[])(Entity*) = {
    V3HandProjectile_OnTick, sub_080ABFA8, DeleteEntity, DeleteEntity, DeleteEntity,
};