mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-03 18:06:02 -04:00
56890c32e8
* Consolidate fopAcM_STATUS into fopAc_Status_e * Add _e suffix to fopAcStts enums * Prepare for profile enumeration * Correct typo in scene_process_profile_definition * Manually handle g_profile_Obj_DamCps (inline preprocessing) * Correct g_profile_TAG_LV5SOUP procname to enum * Create d_priority.h * Update process profile definitions * Moved inline comments to the left * Add missing fopAcStts enums * Add d_priority.h include in f_pc_leaf.h * Manually update d_a_obj_damCps profile * Replace fopAcStts enums replacing and anticipatory profile size correction * Changed profile size from literal to sizeof() in anticipation of PR #3116 * Provided putative names to staff-related status enums * Replaced appropriate literals with fopAcStts enums * Fix borked merge * Rename item number enums and move to d_item_data.h * Rename process profile name & draw priority enums * Move process profile name & draw priority enums to appropriate files * Moved fpcNm_ enums from d/d_procname.h to f_pc/f_pc_name.h * Moved fpcDwPi_ enums from d/d_priority.h to f_pc/f_pc_draw_priority.h * ACTUALLY (whoops) stage merge * Correct item mistranslation Co-authored-by: LagoLunatic <LagoLunatic@users.noreply.github.com> --------- Co-authored-by: LagoLunatic <LagoLunatic@users.noreply.github.com>
326 lines
8.7 KiB
C++
326 lines
8.7 KiB
C++
/**
|
|
* d_a_obj_stopper2.cpp
|
|
*
|
|
*/
|
|
|
|
#include "d/dolzel_rel.h" // IWYU pragma: keep
|
|
|
|
#include "d/actor/d_a_obj_stopper2.h"
|
|
#include "d/actor/d_a_player.h"
|
|
|
|
static char* l_arcName = "Stop00";
|
|
|
|
static char* l_evName[4] = {
|
|
"STOP_OPEN",
|
|
"STOP_CLOSE",
|
|
"STOP_OPEN2",
|
|
"STOP_CLOSE2",
|
|
};
|
|
|
|
static char* l_staffName = "dstop";
|
|
|
|
static int CheckCreateHeap(fopAc_ac_c* i_this) {
|
|
return ((daObjStopper2_c*)i_this)->CreateHeap();
|
|
}
|
|
|
|
static const char* getStopName() {
|
|
return "door-stop.bmd";
|
|
}
|
|
|
|
J3DModelData* daObjStopper2_c::getStopModelData() {
|
|
return (J3DModelData*)dComIfG_getStageRes(getStopName());
|
|
}
|
|
|
|
void daObjStopper2_c::initBaseMtx() {
|
|
mpModel->setBaseScale(scale);
|
|
setBaseMtx();
|
|
}
|
|
|
|
void daObjStopper2_c::setBaseMtx() {
|
|
mDoMtx_stack_c::transS(current.pos.x, current.pos.y + mOffsetY, current.pos.z);
|
|
mDoMtx_stack_c::YrotM(shape_angle.y);
|
|
mpModel->setBaseTRMtx(mDoMtx_stack_c::get());
|
|
}
|
|
|
|
f32 daObjStopper2_c::getMaxOffsetY() {
|
|
J3DJoint* root_jnt = mpModel->getModelData()->getJointNodePointer(0);
|
|
JUT_ASSERT(154, root_jnt != NULL);
|
|
return root_jnt->getMax()->y;
|
|
}
|
|
|
|
int daObjStopper2_c::Create() {
|
|
if (!fopAcM_isSwitch(this, getSwbit())) {
|
|
mOffsetY = 0.0f;
|
|
field_0x588 = 1;
|
|
} else {
|
|
mOffsetY = getMaxOffsetY();
|
|
field_0x588 = 0;
|
|
}
|
|
|
|
attention_info.position.y += 150.0f;
|
|
eyePos.y += 150.0f;
|
|
|
|
initBaseMtx();
|
|
fopAcM_SetMtx(this, mpModel->getBaseTRMtx());
|
|
fopAcM_setCullSizeBox2(this, mpModel->getModelData());
|
|
|
|
mTool = getEvId();
|
|
eventInfo.setArchiveName(l_arcName);
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
mEventIdx[i] = dComIfGp_getEventManager().getEventIdx(this, l_evName[i], 0xFF);
|
|
OS_REPORT("閉じデモ用柵:evid<%d>tool<%d>\n", mEventIdx[0], mTool);
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int daObjStopper2_c::CreateHeap() {
|
|
J3DModelData* modelData = getStopModelData();
|
|
JUT_ASSERT(206, modelData != NULL);
|
|
|
|
mpModel = mDoExt_J3DModel__create(modelData, 0x80000, 0x11000084);
|
|
if (mpModel == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int daObjStopper2_c::create() {
|
|
fopAcM_ct(this, daObjStopper2_c);
|
|
|
|
#if DEBUG
|
|
if (getSwbit() == 0xFF) {
|
|
OS_REPORT_ERROR("ドア柵:スイッチ指定がありません!\n");
|
|
return cPhs_ERROR_e;
|
|
}
|
|
#endif
|
|
|
|
int phase_state = dComIfG_resLoad(&mPhaseReq, l_arcName);
|
|
if (phase_state != cPhs_COMPLEATE_e) {
|
|
return phase_state;
|
|
}
|
|
|
|
if (!fopAcM_entrySolidHeap(this, CheckCreateHeap, 0x4000)) {
|
|
return cPhs_ERROR_e;
|
|
}
|
|
|
|
if (!Create()) {
|
|
return cPhs_ERROR_e;
|
|
}
|
|
|
|
return cPhs_COMPLEATE_e;
|
|
}
|
|
|
|
int daObjStopper2_c::execute() {
|
|
event_proc_call();
|
|
setBaseMtx();
|
|
return 1;
|
|
}
|
|
|
|
void daObjStopper2_c::event_proc_call() {
|
|
static void (daObjStopper2_c::*l_func[])() = {
|
|
&daObjStopper2_c::actionWait,
|
|
&daObjStopper2_c::actionOrderEvent,
|
|
&daObjStopper2_c::actionEvent,
|
|
&daObjStopper2_c::actionDead,
|
|
};
|
|
|
|
(this->*l_func[mAction])();
|
|
}
|
|
|
|
void daObjStopper2_c::actionWait() {
|
|
BOOL is_switch = fopAcM_isSwitch(this, getSwbit());
|
|
|
|
if (mOffsetY == 0.0f) {
|
|
field_0x584 = 0;
|
|
} else {
|
|
field_0x584 = 1;
|
|
}
|
|
|
|
if (mTool != 0xFF && mOffsetY != 0.0f) {
|
|
field_0x584 += 2;
|
|
}
|
|
|
|
if ((field_0x584 == 1 && !is_switch) || (field_0x584 == 3 && !is_switch)) {
|
|
setAction(1);
|
|
|
|
if (mTool != 0xFF) {
|
|
dStage_MapEvent_dt_c* maptooldata = dEvt_control_c::searchMapEventData(mTool);
|
|
JUT_ASSERT(325, maptooldata != NULL);
|
|
|
|
switch (maptooldata->type) {
|
|
case dStage_MapEvent_dt_TYPE_ZEV:
|
|
mEventIdx[field_0x584] = dComIfGp_getEventManager().getEventIdx(this, mTool);
|
|
fopAcM_orderMapToolEvent(this, mTool, 0xFF, 0xFFFF, 1, 0);
|
|
eventInfo.onCondition(dEvtCnd_CANDEMO_e);
|
|
break;
|
|
case dStage_MapEvent_dt_TYPE_MAPTOOLCAMERA:
|
|
case dStage_MapEvent_dt_TYPE_STB:
|
|
fopAcM_orderOtherEventId(this, mEventIdx[field_0x584], mTool, 0xFFFF, 0, 1);
|
|
eventInfo.onCondition(dEvtCnd_CANDEMO_e);
|
|
break;
|
|
default:
|
|
JUT_ASSERT(346, FALSE);
|
|
break;
|
|
}
|
|
} else {
|
|
fopAcM_orderOtherEventId(this, mEventIdx[field_0x584], mTool, 0xFFFF, 0, 1);
|
|
eventInfo.onCondition(dEvtCnd_CANDEMO_e);
|
|
}
|
|
} else if ((field_0x584 == 0 && is_switch) || (field_0x584 == 2 && is_switch)) {
|
|
setAction(1);
|
|
fopAcM_orderOtherEventId(this, mEventIdx[field_0x584], 0xFF, 0xFFFF, 0, 1);
|
|
eventInfo.onCondition(dEvtCnd_CANDEMO_e);
|
|
}
|
|
}
|
|
|
|
void daObjStopper2_c::actionOrderEvent() {
|
|
if (eventInfo.checkCommandDemoAccrpt()) {
|
|
setAction(2);
|
|
mStaffId = dComIfGp_evmng_getMyStaffId(l_staffName, NULL, 0);
|
|
field_0x588 = 1;
|
|
demoProc();
|
|
} else {
|
|
if (mEventIdx[field_0x584] == -1) {
|
|
fopAcM_orderMapToolEvent(this, mTool, 0xFF, 0xFFFF, 1, 0);
|
|
} else {
|
|
fopAcM_orderOtherEventId(this, mEventIdx[field_0x584], mTool, 0xFFFF, 0, 1);
|
|
}
|
|
|
|
eventInfo.onCondition(2);
|
|
}
|
|
}
|
|
|
|
void daObjStopper2_c::actionEvent() {
|
|
if (dComIfGp_evmng_endCheck(mEventIdx[field_0x584])) {
|
|
setAction(0);
|
|
dComIfGp_event_reset();
|
|
} else {
|
|
demoProc();
|
|
}
|
|
}
|
|
|
|
void daObjStopper2_c::actionDead() {}
|
|
|
|
int daObjStopper2_c::demoProc() {
|
|
static char* action_table[3] = {
|
|
"WAIT",
|
|
"STOP_OPEN",
|
|
"STOP_CLOSE",
|
|
};
|
|
|
|
daPy_py_c* player = daPy_getPlayerActorClass();
|
|
int act_idx = dComIfGp_evmng_getMyActIdx(mStaffId, action_table, ARRAY_SIZE(action_table), 0, 0);
|
|
int* idata;
|
|
|
|
if (dComIfGp_evmng_getIsAddvance(mStaffId)) {
|
|
switch (act_idx) {
|
|
case 0:
|
|
idata = dComIfGp_evmng_getMyIntegerP(mStaffId, "Timer");
|
|
if (idata == NULL) {
|
|
mTimer = 1;
|
|
} else {
|
|
mTimer = *idata;
|
|
}
|
|
break;
|
|
case 1:
|
|
mOffsetY = 0.0f;
|
|
speedF = 0.0f;
|
|
fopAcM_seStart(this, Z2SE_OBJ_DOOR_STEEL_BAR, 0);
|
|
OS_REPORT("閉じデモドア柵:シャッターオープンSE\n");
|
|
break;
|
|
case 2:
|
|
mOffsetY = getMaxOffsetY();
|
|
speedF = 0.0f;
|
|
fopAcM_seStart(this, Z2SE_OBJ_DOOR_STEEL_BAR_CL, 0);
|
|
OS_REPORT("閉じデモドア柵:シャッタークローズSE\n");
|
|
break;
|
|
}
|
|
}
|
|
|
|
switch (act_idx) {
|
|
case 0:
|
|
if (cLib_calcTimer<u8>(&mTimer) == 0) {
|
|
dComIfGp_evmng_cutEnd(mStaffId);
|
|
}
|
|
break;
|
|
case 1:
|
|
cLib_chaseF(&speedF, 30.0f, 4.0f);
|
|
if (cLib_chaseF(&mOffsetY, getMaxOffsetY(), speedF)) {
|
|
field_0x588 = 0;
|
|
dComIfGp_evmng_cutEnd(mStaffId);
|
|
}
|
|
break;
|
|
case 2:
|
|
cLib_chaseF(&speedF, 60.0f, 6.0f);
|
|
if (cLib_chaseF(&mOffsetY, 0.0f, speedF)) {
|
|
dComIfGp_evmng_cutEnd(mStaffId);
|
|
}
|
|
break;
|
|
default:
|
|
dComIfGp_evmng_cutEnd(mStaffId);
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int daObjStopper2_c::draw() {
|
|
if (field_0x588 == 0) {
|
|
return 1;
|
|
}
|
|
|
|
g_env_light.settingTevStruct(16, ¤t.pos, &tevStr);
|
|
g_env_light.setLightTevColorType_MAJI(mpModel, &tevStr);
|
|
mDoExt_modelUpdateDL(mpModel);
|
|
return 1;
|
|
}
|
|
|
|
int daObjStopper2_c::_delete() {
|
|
dComIfG_resDelete(&mPhaseReq, l_arcName);
|
|
return 1;
|
|
}
|
|
|
|
static int daObjStopper2_Draw(daObjStopper2_c* i_this) {
|
|
return i_this->draw();
|
|
}
|
|
|
|
static int daObjStopper2_Execute(daObjStopper2_c* i_this) {
|
|
return i_this->execute();
|
|
}
|
|
|
|
static int daObjStopper2_Delete(daObjStopper2_c* i_this) {
|
|
return i_this->_delete();
|
|
}
|
|
|
|
static int daObjStopper2_Create(daObjStopper2_c* i_this) {
|
|
return i_this->create();
|
|
}
|
|
|
|
static actor_method_class l_daObjStopper2_Method = {
|
|
(process_method_func)daObjStopper2_Create,
|
|
(process_method_func)daObjStopper2_Delete,
|
|
(process_method_func)daObjStopper2_Execute,
|
|
NULL,
|
|
(process_method_func)daObjStopper2_Draw,
|
|
};
|
|
|
|
actor_process_profile_definition g_profile_Obj_Stopper2 = {
|
|
/* Layer ID */ fpcLy_CURRENT_e,
|
|
/* List ID */ 3,
|
|
/* List Prio */ fpcPi_CURRENT_e,
|
|
/* Proc Name */ fpcNm_Obj_Stopper2_e,
|
|
/* Proc SubMtd */ &g_fpcLf_Method.base,
|
|
/* Size */ sizeof(daObjStopper2_c),
|
|
/* Size Other */ 0,
|
|
/* Parameters */ 0,
|
|
/* Leaf SubMtd */ &g_fopAc_Method.base,
|
|
/* Draw Prio */ fpcDwPi_Obj_Stopper2_e,
|
|
/* Actor SubMtd */ &l_daObjStopper2_Method,
|
|
/* Status */ fopAcStts_UNK_0x40000_e | fopAcStts_CULL_e,
|
|
/* Group */ fopAc_ACTOR_e,
|
|
/* Cull Type */ fopAc_CULLBOX_CUSTOM_e,
|
|
};
|