summaryrefslogtreecommitdiff
path: root/include/d/actor/d_a_obj_magLiftRot.h
blob: 647fcee80a8b1da28231c6e5a0e075f5dcad2e2e (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
#ifndef D_A_OBJ_MAGLIFTROT_H
#define D_A_OBJ_MAGLIFTROT_H

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

/**
 * @ingroup actors-objects
 * @class daMagLiftRot_c
 * @brief Rotating Magnetic Lift
 *
 * @details
 *
 */
class daMagLiftRot_c : public dBgS_MoveBgActor {
public:
    void setBaseMtx();
    int create();
    void moveLift();
    void init_modeMove();
    void modeMove();
    void init_modeWait();
    void modeWait();
    void init_modeMoveWait();
    void modeMoveWait();

    virtual int CreateHeap();
    virtual int Execute(Mtx**);
    virtual int Draw();
    virtual int Delete();

private:
    /* 0x5A0 */ request_of_phase_process_class mPhase;
    /* 0x5A8 */ J3DModel* mpModel;
    /* 0x5AC */ mDoExt_btkAnm mBtk;
    /* 0x5C4 */ mDoExt_brkAnm mBrk;
    /* 0x5DC */ u8 mType;
    /* 0x5DE */ s16 mTimer;
    /* 0x5E0 */ u8 mMode;
    /* 0x5E1 */ u8 field_0x5e1;
    /* 0x5E2 */ s16 field_0x5e2;
    /* 0x5E4 */ s16 field_0x5e4;
    /* 0x5E6 */ csXyz field_0x5e6;
    /* 0x5EC */ cXyz field_0x5ec;
    /* 0x5F8 */ f32 field_0x5f8;
    /* 0x5FC */ f32 mShakeStrength;
    /* 0x600 */ f32 field_0x600;
    /* 0x604 */ f32 mShakeYAmp;
    /* 0x608 */ f32 mShakeDecay;
    /* 0x60C */ f32 mMaxShakeDecay;
    /* 0x610 */ f32 mMinShakeDecay;
    /* 0x614 */ f32 mMoveStrength;
    /* 0x618 */ f32 mXMoveAmp;
    /* 0x61C */ f32 mZMoveAmp;
    /* 0x620 */ f32 mMoveDecay;
    /* 0x624 */ f32 mMaxMoveDecay;
    /* 0x628 */ f32 mMinMoveDecay;
    /* 0x62C */ f32 field_0x62c;
    /* 0x630 */ f32 field_0x630;
};

STATIC_ASSERT(sizeof(daMagLiftRot_c) == 0x634);

class daMagLiftRot_HIO_c : public mDoHIO_entry_c {
public:
    daMagLiftRot_HIO_c();
    virtual ~daMagLiftRot_HIO_c() {}

    void genMessage(JORMContext*);

    /* 0x04 */ u8 mWaitTime;
    /* 0x08 */ f32 mInitSpeed;
    /* 0x0C */ f32 mAcceleration;
    /* 0x10 */ f32 mMaxSpeed;
    /* 0x14 */ f32 mShakeStrength;
    /* 0x18 */ f32 mShakeAmpY;
    /* 0x1C */ f32 mShakeDecay;
    /* 0x20 */ f32 mMaxShakeDecay;
    /* 0x24 */ f32 mMinShakeDecay;
    /* 0x28 */ f32 mMoveAmpX;
    /* 0x2C */ f32 mMoveAmpZ;
    /* 0x30 */ f32 mMoveStrength;
    /* 0x34 */ f32 mMoveDecay;
    /* 0x38 */ f32 mMaxMoveDecay;
    /* 0x3C */ f32 mMinMoveDecay;
};


#endif /* D_A_OBJ_MAGLIFTROT_H */