blob: 4dba2250dc328e350a7045fe2146c32a67789b9b (
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_LAUNDRY_ROPE_H
#define D_A_OBJ_LAUNDRY_ROPE_H
#include "d/d_cc_d.h"
#include "f_op/f_op_actor.h"
struct daObjLndRope_Attr_c {
f32 mGravity;
f32 field_0x4;
f32 field_0x8;
f32 field_0xc;
f32 field_0x10;
};
struct daObjLndRope_Hio_c {
f32 mGravity;
f32 field_0x4;
f32 field_0x8;
f32 field_0xc;
f32 field_0x10;
};
/**
* @ingroup actors-objects
* @class daObjLndRope_c
* @brief Laundry Rope
*
* @details
*
*/
class daObjLndRope_c : public fopAc_ac_c {
public:
void create_init();
void initBaseMtx();
void setBaseMtx();
void setNormalRopePos();
inline ~daObjLndRope_c();
inline int create();
inline int createHeap();
inline int draw();
inline int execute();
inline u8 getPathId();
inline cXyz* getRopeStartPos();
inline float getStartRate(cXyz* param_1);
#if DEBUG
const daObjLndRope_Hio_c* attr() const {
return &M_Hio;
};
#else
const daObjLndRope_Attr_c* attr() const {
return &mAttr;
};
#endif
static const daObjLndRope_Attr_c mAttr;
static const daObjLndRope_Hio_c M_Hio;
private:
/* 0x0568 */ mDoExt_3DlineMat1_c mRopeMat;
/* 0x05a4 */ request_of_phase_process_class mPhase;
/* 0x05ac */ Mtx mMtx;
/* 0x05dc */ dCcD_Stts mStts;
/* 0x0618 */ dCcD_Sph mSphs[13];
/* 0x15f0 */ cXyz mPositions1[13];
/* 0x168c */ cXyz mPositions2[13];
/* 0x1728 */ fpc_ProcID mProcIds[13];
/* 0x175c */ cXyz mPos;
/* 0x1768 */ f32 mScale;
/* 0x176c */ f32 mSegmentLength;
/* 0x1770 */ u8 mFlag;
};
STATIC_ASSERT(sizeof(daObjLndRope_c) == 0x1774);
#endif /* D_A_OBJ_LAUNDRY_ROPE_H */
|