Files
tp/include/d/actor/d_a_obj_tornado.h
T

48 lines
1.0 KiB
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef D_A_OBJ_TORNADO_H
#define D_A_OBJ_TORNADO_H
2024-10-10 07:29:58 -07:00
#include "d/d_com_inf_game.h"
2023-12-07 01:01:42 +01:00
#include "f_op/f_op_actor_mng.h"
2021-03-28 22:49:05 +02:00
2024-05-29 01:49:10 -06:00
/**
* @ingroup actors-objects
* @class daObjTrnd_c
* @brief Wind Column
2024-05-29 01:49:10 -06:00
*
* @details
*
*/
class daObjTrnd_c : public fopAc_ac_c {
public:
2025-11-30 14:23:42 -08:00
void setPntWind();
void cutPntWind();
void movePntWind();
void setCpsInfo();
void initBaseMtx();
void setBaseMtx();
int Create();
int create();
int execute();
int draw();
int _delete();
u32 checkSE() { return fopAcM_GetParamBit(this, 8, 1); }
u8 getTimer() { return fopAcM_GetParamBit(this, 0, 8); }
u8 getSwbit() { return fopAcM_GetParamBit(this, 0x18, 8); }
2024-05-29 01:49:10 -06:00
private:
/* 0x568 */ dCcD_Stts mStts;
/* 0x5A4 */ dCcD_Cps mCps;
/* 0x6E8 */ cM3dGCpsS mWindCps;
/* 0x704 */ f32 mNowLength;
/* 0x708 */ Mtx mMtx;
/* 0x738 */ s16 mTimer;
/* 0x73C */ f32 mTargetLength;
/* 0x740 */ WIND_INFLUENCE mWindInfluence;
/* 0x76C */ f32 mWindPower;
2024-05-29 01:49:10 -06:00
};
2024-06-10 01:34:52 -06:00
2024-05-29 01:49:10 -06:00
STATIC_ASSERT(sizeof(daObjTrnd_c) == 0x770);
2021-03-28 22:49:05 +02:00
#endif /* D_A_OBJ_TORNADO_H */