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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
//
// Generated by dtk
// Translation Unit: d_throwstone.cpp
//
#include "d/d_throwstone.h"
#include "f_op/f_op_actor.h"
#include "f_op/f_op_actor_mng.h"
#include "d/d_com_inf_game.h"
#include "d/d_demo.h"
#include "d/d_procname.h"
#include "m_Do/m_Do_mtx.h"
#include "JSystem/JKernel/JKRHeap.h"
const char daThrowstone_c::M_arcname[] = "Aisi";
/* 8023B544-8023B564 .text CheckCreateHeap__FP10fopAc_ac_c */
static BOOL CheckCreateHeap(fopAc_ac_c* i_actor) {
daThrowstone_c* i_this = (daThrowstone_c*)i_actor;
return i_this->CreateHeap();
}
/* 8023B564-8023B5DC .text CreateHeap__14daThrowstone_cFv */
BOOL daThrowstone_c::CreateHeap() {
J3DModelData* pModelData = (J3DModelData*)dComIfG_getObjectRes(M_arcname, 0x03);
if (pModelData == NULL)
return FALSE;
mpModel = mDoExt_J3DModel__create(pModelData, 0x80000, 0x11000002);
return (mpModel != NULL) ? TRUE : FALSE;
}
s32 daThrowstone_c::_create() {
s32 result = dComIfG_resLoad(&mPhs, M_arcname);
if (result == cPhs_COMPLEATE_e) {
fopAcM_SetupActor(this, daThrowstone_c);
if (!fopAcM_entrySolidHeap(this, CheckCreateHeap, 0x4C0)) {
result = cPhs_ERROR_e;
} else {
mDoMtx_stack_c::transS(current.pos);
mDoMtx_stack_c::YrotM(shape_angle.y);
mDoMtx_stack_c::scaleM(mScale);
mDoMtx_copy(mDoMtx_stack_c::get(), mMtx);
mCullMtx = mpModel->getBaseTRMtx();
mDoMtx_copy(mpModel->getBaseTRMtx(), mMtx);
}
}
return result;
}
/* 8023B5DC-8023B6DC .text daThrowstoneCreate__FPv */
s32 daThrowstoneCreate(void* ptr) {
return ((daThrowstone_c*)ptr)->_create();
}
BOOL daThrowstone_c::_delete() {
dComIfG_resDelete(&mPhs, M_arcname);
return TRUE;
}
/* 8023B6DC-8023B708 .text daThrowstoneDelete__FPv */
BOOL daThrowstoneDelete(void* ptr) {
return ((daThrowstone_c*)ptr)->_delete();
}
BOOL daThrowstone_c::_execute() {
dDemo_setDemoData(this, 0x6a, NULL, NULL, 0, NULL, 0, 0);
mpModel->setBaseScale(mScale);
f32 pos_x = current.pos.x;
mDoMtx_stack_c::transS(pos_x, current.pos.y, current.pos.z);
s16 rot_x = shape_angle.x;
mDoMtx_stack_c::ZXYrotM(rot_x, shape_angle.y, shape_angle.z);
mpModel->setBaseTRMtx(mDoMtx_stack_c::get());
mDoMtx_copy(mDoMtx_stack_c::get(), mMtx);
return FALSE;
}
/* 8023B708-8023B7C4 .text daThrowstoneExecute__FPv */
BOOL daThrowstoneExecute(void* ptr) {
return ((daThrowstone_c*)ptr)->_execute();
}
bool daThrowstone_c::_draw() {
if (!dComIfGs_isEventBit(0x0310))
return TRUE;
g_env_light.settingTevStruct(TEV_TYPE_ACTOR, ¤t.pos, &mTevStr);
g_env_light.setLightTevColorType(mpModel, &mTevStr);
mDoExt_modelUpdateDL(mpModel);
return TRUE;
}
/* 8023B7C4-8023B858 .text daThrowstoneDraw__FPv */
BOOL daThrowstoneDraw(void* ptr) {
return ((daThrowstone_c*)ptr)->_draw();
}
/* 8023B858-8023B860 .text daThrowstoneIsDelete__FPv */
BOOL daThrowstoneIsDelete(void*) {
return TRUE;
}
actor_method_class daThrowstoneMethodTable = {
(process_method_func)daThrowstoneCreate,
(process_method_func)daThrowstoneDelete,
(process_method_func)daThrowstoneExecute,
(process_method_func)daThrowstoneIsDelete,
(process_method_func)daThrowstoneDraw,
};
actor_process_profile_definition g_profile_THROWSTONE = {
fpcLy_CURRENT_e,
2,
fpcPi_CURRENT_e,
PROC_THROWSTONE,
&g_fpcLf_Method.mBase,
sizeof(daThrowstone_c),
0,
0,
&g_fopAc_Method.base,
0x01CE,
&daThrowstoneMethodTable,
fopAcStts_CULL_e | fopAcStts_UNK40000_e,
fopAc_ACTOR_e,
fopAc_CULLBOX_0_e,
};
|