summaryrefslogtreecommitdiff
path: root/include/d/actor/d_a_obj_pleaf.h
blob: 084f4f1543bcf270131317e928e07920db89c6ce (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
#ifndef D_A_OBJ_PLEAF_H
#define D_A_OBJ_PLEAF_H

#include "d/d_com_inf_game.h"
#include "f_op/f_op_actor_mng.h"

struct daObj_Pleaf_HIOParam {
    f32 field_0x0;
    f32 field_0x4;
    f32 field_0x8;
    f32 field_0xc;
};

class daObj_Pleaf_Param_c {
public:
    virtual ~daObj_Pleaf_Param_c() {}

    static daObj_Pleaf_HIOParam const m;
};

#if DEBUG
class daObj_Pleaf_HIO_c : public mDoHIO_entry_c {
public:
    daObj_Pleaf_HIO_c();

    void listenPropertyEvent(const JORPropertyEvent*);

    void genMessage(JORMContext*);

    daObj_Pleaf_HIOParam m;
};

#define OBJ_PLEAF_HIO_CLASS daObj_Pleaf_HIO_c
#else
#define OBJ_PLEAF_HIO_CLASS daObj_Pleaf_Param_c
#endif

/**
 * @ingroup actors-objects
 * @class daObj_Pleaf_c
 * @brief Ordon Pumpkin Vine
 *
 * @details
 *
 */
class daObj_Pleaf_c : public fopAc_ac_c {
private:
    /* 0x568 */ OBJ_PLEAF_HIO_CLASS* mpHIO;
    /* 0x56C */ request_of_phase_process_class mPhaseReq;
    /* 0x574 */ J3DModel* mpModel;
    /* 0x578 */ dBgS_ObjAcch mObjAcch;
    /* 0x750 */ dCcD_Stts mStts;
    /* 0x78C */ dBgS_AcchCir mAcchCir;
    /* 0x7CC */ cBgS_GndChk mGndChk;
    /* 0x808 */ dCcD_Sph mSph;
    /* 0x940 */ f32 mGroundDist;
    /* 0x944 */ u32 mShadowKey;
    /* 0x948 */ u8 mType;

public:
    virtual ~daObj_Pleaf_c();
    int create();
    int CreateHeap();
    int Delete();
    int Execute();
    int Draw();
    static int createHeapCallBack(fopAc_ac_c*);
    char* getResName();
    int isDelete();
    void setEnvTevColor();
    void setRoomNo();
    void setMtx();

    u32 getType() { return 0; }
};

STATIC_ASSERT(sizeof(daObj_Pleaf_c) == 0x950);

#endif /* D_A_OBJ_PLEAF_H */