blob: d5c9ed5cff29eac3ff0d8533edb9e352916f3393 (
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
|
#ifndef D_A_ANDSW2_H
#define D_A_ANDSW2_H
#include "f_op/f_op_actor_mng.h"
/**
* @ingroup actors-unsorted
* @class daAndsw2_c
* @brief
*
* @details
*
*/
class daAndsw2_c : public fopAc_ac_c {
public:
enum Action_e {
ACT_ON_ALL_e,
ACT_TIMER_e,
ACT_ORDER_e,
ACT_EVENT_e,
ACT_OFF_e,
ACT_WAIT_e,
};
u8 getEventNo();
u8 getSwbit();
u8 getSwbit2();
u8 getType();
u8 getTimer();
u8 getNum();
u8 getTopSw();
u8 getSwAns();
BOOL chkAllSw2();
bool chkSwStatus();
bool chkSwStatus2();
~daAndsw2_c();
int create();
inline int execute();
void setActio(u8 i_action) { mAction = i_action; }
/* 0x568 */ s16 mTimer;
/* 0x56A */ s16 mEventIdx;
/* 0x56C */ u8 mAction;
};
#endif /* D_A_ANDSW2_H */
|