blob: 5dcb1cd1e6342fc068847c14d29acda43cf0810c (
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
|
#ifndef D_A_NPC_BMCON1_H
#define D_A_NPC_BMCON1_H
#include "f_op/f_op_actor.h"
#include "d/d_cc_d.h"
class J3DNode;
struct sBmconAnmDat {
};
class daNpcBmcon_c : public fopAc_ac_c {
public:
daNpcBmcon_c();
void getNpcNo() {}
void getPhaseP() {}
void get_arm_L_jnt_num() {}
void get_arm_R_jnt_num() {}
void get_nec_jnt_num() {}
void setResFlag(unsigned char) {}
void nodeArmControl(J3DNode*, J3DModel*);
cPhs_State _create();
void createHeap();
void createInit();
bool _delete();
bool _draw();
bool _execute();
void executeCommon();
void executeSetMode(unsigned char);
void executeWaitInit();
void executeWait();
void executeTalkInit();
void executeTalk();
void executeWalkInit();
void executeWalk();
void executeTurnInit();
void executeTurn();
void checkOrder();
void eventOrder();
void eventMove();
void privateCut();
void eventMesSetInit(int);
void eventMesSet();
void eventGetItemInit();
void talk2(int);
void next_msgStatus(unsigned long*);
void getMsg();
void chkMsg();
void setMessage(unsigned long);
void setAnmFromMsgTag();
void getPrmNpcNo();
void getPrmRailID();
void setMtx();
void chkAttention();
void lookBack();
void playAnm();
void setAnm(unsigned char, int, float);
void setAnmTbl(sBmconAnmDat*);
void XyCheckCB(int);
void setCollision(dCcD_Cyl*, cXyz, float, float);
void calcFlyDist();
void getFlyDistMax();
void setFlyDistMax(short);
void getFlyDistNow();
void setFlyDistNow(short);
void chkEndEvent();
void isClear();
public:
/* Place member variables here */
};
#endif /* D_A_NPC_BMCON1_H */
|