summaryrefslogtreecommitdiff
path: root/include/d/actor/d_a_e_oct_bg.h
blob: cd5b6b27cd2854513cce245e68b17a2b2a1ff0cf (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#ifndef D_A_E_OCT_BG_H
#define D_A_E_OCT_BG_H

#include <types.h>
#include "f_op/f_op_actor.h"
#include "d/d_bg_s_acch.h"
#include "Z2AudioLib/Z2Creature.h"
#include "d/d_cc_d.h"
#include "d/d_cc_uty.h"
#include "SSystem/SComponent/c_phase.h"

/**
 * @ingroup actors-enemies
 * @class daE_OctBg_c
 * @brief Morpheel Bomb Fish
 * 
 * @details 
 * 
 */
class daE_OctBg_c : public fopEn_enemy_c {
public:
    typedef void (daE_OctBg_c::*actionFunc)();

    void setAction(actionFunc);
    void setSparkEffect();
    bool checkExplode();
    void action();
    int _delete();
    void cc_set();
    void mtx_set();
    bool checkNormalAttack();
    bool checkChase();
    void born_swim();
    void swim();
    void setChasePos(cXyz&, f32);
    bool checkCoreFishAttack();
    void chase_core();
    void normal_attack();
    void core_fish_attack();
    void back_swim();
    bool setBombCarry(int);
    void hook();
    void damage();
    void bomb_wait();
    void damage_check();
    int execute();
    int ctrlJoint(J3DJoint*, J3DModel*);
    static int JointCallBack(J3DJoint*, int);
    int CreateHeap();
    int create();
    int draw();

    u8 getChaseFlag() { return field_0xbac; }
    u32 checkAction(actionFunc func) { return field_0xb58 == func; }
    bool checkNormalAttk() { return checkAction(&daE_OctBg_c::normal_attack); }

private:
    /* 0x5AC */ request_of_phase_process_class mPhase;
    /* 0x5B4 */ mDoExt_McaMorfSO* field_0x5b4;
    /* 0x5B8 */ mDoExt_brkAnm* field_0x5b8;
    /* 0x5BC */ Z2CreatureEnemy field_0x5bc;
    /* 0x660 */ cXyz field_0x660;
    /* 0x66C */ dBgS_AcchCir field_0x66c;
    /* 0x6AC */ dBgS_ObjAcch field_0x6ac;
    /* 0x884 */ dCcD_Stts field_0x884;
    /* 0x8C0 */ dCcD_Sph field_0x8c0;
    /* 0x9F8 */ dCcD_Sph field_0x9f8;
    /* 0xB30 */ dCcU_AtInfo field_0xb30;
    /* 0xB54 */ u8 field_0xb54[0xb58 - 0xb54];
    /* 0xB58 */ actionFunc field_0xb58;
    /* 0xB64 */ actionFunc field_0xb64;
    /* 0xB70 */ int field_0xb70;
    /* 0xB74 */ bool field_0xb74;
    /* 0xB75 */ u8 field_0xb75;
    /* 0xB76 */ u8 field_0xb76;
    /* 0xB77 */ u8 field_0xb77;
    /* 0xB78 */ int field_0xb78;
    /* 0xB7C */ s16 field_0xb7c;
    /* 0xB7E */ s16 field_0xb7e;
    /* 0xB80 */ s16 field_0xb80;
    /* 0xB82 */ s16 field_0xb82;
    /* 0xB84 */ s16 field_0xb84[4];
    /* 0xB8C */ s16 field_0xb8c;
    /* 0xB8E */ u8 field_0xb8e[0xb90 - 0xb8e];
    /* 0xB90 */ int field_0xb90;
    /* 0xB94 */ s16 field_0xb94;
    /* 0xB96 */ s16 field_0xb96;
    /* 0xB98 */ u32 field_0xb98[5];
    /* 0xBAC */ u8 field_0xbac;
    /* 0xBAD */ u8 field_0xbad;
    /* 0xBAE */ u8 field_0xbae;
    /* 0xBAF */ u8 field_0xbaf;
    /* 0xBB0 */ u16 field_0xbb0;
    /* 0xBB2 */ u8 field_0xbb2;
    /* 0xBB3 */ u8 field_0xbb3;
};

STATIC_ASSERT(sizeof(daE_OctBg_c) == 0xBB4);

class daE_OctBg_HIO_c {
public:
    daE_OctBg_HIO_c();
    virtual ~daE_OctBg_HIO_c() {}

    /* 0x04 */ s8 field_0x04;
    /* 0x08 */ f32 field_0x08;
    /* 0x0C */ f32 field_0x0c;
    /* 0x10 */ f32 field_0x10;
    /* 0x14 */ f32 field_0x14;
    /* 0x18 */ f32 field_0x18;
    /* 0x1C */ f32 field_0x1c;
    /* 0x20 */ u8 field_0x20;
    /* 0x21 */ u8 field_0x21;
};

#endif /* D_A_E_OCT_BG_H */