summaryrefslogtreecommitdiff
path: root/include/d/actor/d_a_obj_sekizo.h
blob: 54fa84f5df85c6ddfd1b1c2e6e8952d1aed6caa5 (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
#ifndef D_A_OBJ_SEKIZO_H
#define D_A_OBJ_SEKIZO_H

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

struct daObj_Sekizo_HIOParam {
};

class daObj_Sekizo_Param_c {
public:
    virtual ~daObj_Sekizo_Param_c() {}
    static daObj_Sekizo_HIOParam const m;
};

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

    void listenPropertyEvent(const JORPropertyEvent*);

    void genMessage(JORMContext*);

    daObj_Sekizo_HIOParam m;
};

#define OBJ_SEKIZO_HIO_CLASS daObj_Sekizo_HIO_c
#else
#define OBJ_SEKIZO_HIO_CLASS daObj_Sekizo_Param_c
#endif

/**
 * @ingroup actors-objects
 * @class daObj_Sekizo_c
 * @brief Stone Statue
 *
 * @details
 *
 */
class daObj_Sekizo_c : public dBgS_MoveBgActor {
public:
    cPhs_Step create();

    int CreateHeap();
    int Create();
    int Delete();
    int Execute(Mtx**);
    int Draw();
    void initBaseMtx();
    void setBaseMtx();

private:
    /* 0x5A0 */ OBJ_SEKIZO_HIO_CLASS* mpHIO;
    /* 0x5A4 */ request_of_phase_process_class mPhaseReq;
    /* 0x5AC */ J3DModel* mpModel;
    /* 0x5B0 */ u8 field_0x5b0;
    /* 0x5B1 */ bool field_0x5b1;
    /* 0x5B2 */ bool field_0x5b2;
};

STATIC_ASSERT(sizeof(daObj_Sekizo_c) == 0x5B4);

#endif /* D_A_OBJ_SEKIZO_H */