mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-30 00:16:19 -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>
221 lines
5.9 KiB
C++
221 lines
5.9 KiB
C++
/**
|
|
* @file d_a_obj_ktOnFire.cpp
|
|
*
|
|
*/
|
|
|
|
#include "d/dolzel_rel.h" // IWYU pragma: keep
|
|
|
|
#include "d/actor/d_a_obj_ktOnFire.h"
|
|
#include "d/d_s_play.h"
|
|
|
|
class daKtOnFire_HIO_c : public mDoHIO_entry_c {
|
|
public:
|
|
daKtOnFire_HIO_c();
|
|
~daKtOnFire_HIO_c() {}
|
|
|
|
void genMessage(JORMContext*);
|
|
|
|
/* 0x4 */ u8 wait_time;
|
|
};
|
|
|
|
static daKtOnFire_HIO_c l_HIO;
|
|
|
|
static cull_box l_cull_box = {
|
|
{-50.0f, 0.0f, -50.0f},
|
|
{50.0f, 100.0f, 50.0f},
|
|
};
|
|
|
|
const dCcD_SrcGObjInf daKtOnFire_c::mCcDObjInfo = {
|
|
{0x0, {{0x200, 0x0, 0x13}, {0xD8FBFFFF, 0x11}, 0x0}}, // mObj
|
|
{dCcD_SE_SWORD, 0x0, 0x0, 0x0, 0x0}, // mGObjAt
|
|
{dCcD_SE_STONE, 0x0, 0x0, 0x0, 0x0}, // mGObjTg
|
|
{0x0}, // mGObjCo
|
|
};
|
|
|
|
dCcD_SrcCyl daKtOnFire_c::mCcDCyl = {
|
|
mCcDObjInfo,
|
|
{
|
|
{
|
|
{0.0f, 0.0f, 0.0f}, // mCenter
|
|
0.0f, // mRadius
|
|
0.0f // mHeight
|
|
} // mCyl
|
|
}
|
|
};
|
|
|
|
daKtOnFire_HIO_c::daKtOnFire_HIO_c() {
|
|
wait_time = 20;
|
|
}
|
|
|
|
void daKtOnFire_c::setBaseMtx() {
|
|
mDoMtx_stack_c::transS(current.pos.x, current.pos.y, current.pos.z);
|
|
mDoMtx_stack_c::ZXYrotM(shape_angle.x, shape_angle.y, shape_angle.z);
|
|
}
|
|
|
|
int daKtOnFire_c::create() {
|
|
fopAcM_ct(this, daKtOnFire_c);
|
|
|
|
setBaseMtx();
|
|
|
|
mCcStts.Init(255, 255, this);
|
|
mCcCyl.Set(mCcDCyl);
|
|
mCcCyl.SetStts(&mCcStts);
|
|
|
|
cull_box cullbox;
|
|
cullbox.min.x = l_cull_box.min.x * scale.x;
|
|
cullbox.min.y = l_cull_box.min.y * scale.y;
|
|
cullbox.min.z = l_cull_box.min.z * scale.x;
|
|
cullbox.max.x = l_cull_box.max.x * scale.x;
|
|
cullbox.max.y = l_cull_box.max.y * scale.y;
|
|
cullbox.max.z = l_cull_box.max.z * scale.x;
|
|
|
|
fopAcM_setCullSizeBox(this,
|
|
cullbox.min.x, cullbox.min.y, cullbox.min.z,
|
|
cullbox.max.x, cullbox.max.y, cullbox.max.y);
|
|
|
|
u8 arg0 = (fopAcM_GetParam(this) & 0xFF00) >> 8;
|
|
mTorchPos.x = current.pos.x;
|
|
mTorchPos.y = current.pos.y + arg0 * 10.0f;
|
|
mTorchPos.z = current.pos.z;
|
|
|
|
lightInit();
|
|
|
|
mWaitTime = 0;
|
|
field_0x6e2 = 0;
|
|
|
|
mIsSwitch = fopAcM_isSwitch(this, fopAcM_GetParam(this) & 0xFF);
|
|
if (mIsSwitch) {
|
|
mCcCyl.SetAtMtrl(dCcD_MTRL_FIRE);
|
|
setLight();
|
|
field_0x6e2 = 1;
|
|
}
|
|
|
|
return cPhs_COMPLEATE_e;
|
|
}
|
|
|
|
void daKtOnFire_c::lightInit() {
|
|
mLightPos = mTorchPos;
|
|
mLightPos.y += 10.0f;
|
|
|
|
mLight.mPosition = mLightPos;
|
|
mLight.mColor.r = 188;
|
|
mLight.mColor.g = 102;
|
|
mLight.mColor.b = 66;
|
|
mLight.mPow = 500.0f;
|
|
mLight.mFluctuation = 1.0f;
|
|
}
|
|
|
|
void daKtOnFire_c::setLight() {
|
|
dKy_plight_set(&mLight);
|
|
}
|
|
|
|
void daKtOnFire_c::cutLight() {
|
|
dKy_plight_cut(&mLight);
|
|
}
|
|
|
|
int daKtOnFire_c::Execute() {
|
|
u8 prev_switch = mIsSwitch;
|
|
mIsSwitch = fopAcM_isSwitch(this, fopAcM_GetParam(this) & 0xFF);
|
|
|
|
if (prev_switch != mIsSwitch && !mIsSwitch) {
|
|
fopAcM_offSwitch(this, fopAcM_GetParam(this) & 0xFF);
|
|
mCcCyl.SetAtMtrl(dCcD_MTRL_NONE);
|
|
cutLight();
|
|
field_0x6e2 = 0;
|
|
}
|
|
|
|
if (mCcCyl.ChkTgHit()) {
|
|
dCcD_GObjInf* hit_gobj = mCcCyl.GetTgHitGObj();
|
|
if (hit_gobj->GetAtType() == AT_TYPE_LANTERN_SWING && hit_gobj->GetAtMtrl() == dCcD_MTRL_FIRE && field_0x6e2 == 0) {
|
|
field_0x6e2 = 1;
|
|
mCcCyl.SetAtMtrl(dCcD_MTRL_FIRE);
|
|
mDoAud_seStart(Z2SE_OBJ_FIRE_IGNITION, &mTorchPos, 0, dComIfGp_getReverb(fopAcM_GetRoomNo(this)));
|
|
mWaitTime = l_HIO.wait_time;
|
|
setLight();
|
|
}
|
|
|
|
if (hit_gobj->GetAtType() == AT_TYPE_LANTERN_SWING && hit_gobj->GetAtMtrl() == dCcD_MTRL_UNK_6 && field_0x6e2 == 1) {
|
|
field_0x6e2 = 0;
|
|
mCcCyl.SetAtMtrl(dCcD_MTRL_NONE);
|
|
mDoAud_seStart(Z2SE_OBJ_FIRE_OFF, &mTorchPos, 0, dComIfGp_getReverb(fopAcM_GetRoomNo(this)));
|
|
mWaitTime = l_HIO.wait_time;
|
|
cutLight();
|
|
}
|
|
}
|
|
|
|
mCcCyl.SetR(50.0f + oREG_F(2));
|
|
mCcCyl.SetH(100.0f + oREG_F(3));
|
|
mCcCyl.SetC(current.pos);
|
|
dComIfG_Ccsp()->Set(&mCcCyl);
|
|
|
|
if (field_0x6e2 != 0) {
|
|
field_0x6f0 = dComIfGp_particle_set(field_0x6f0, 0x3AD, &mTorchPos, NULL, NULL);
|
|
field_0x6f4 = dComIfGp_particle_set(field_0x6f4, 0x3AF, &mTorchPos, NULL, NULL);
|
|
field_0x6f8 = dComIfGp_particle_set(field_0x6f8, 0x3AE, &mTorchPos, NULL, NULL);
|
|
mDoAud_seStartLevel(Z2SE_OBJ_FIRE_BURNING, &mTorchPos, 0, dComIfGp_getReverb(fopAcM_GetRoomNo(this)));
|
|
}
|
|
|
|
if (mWaitTime != 0) {
|
|
mWaitTime--;
|
|
if (mWaitTime == 0) {
|
|
if (field_0x6e2 == 1) {
|
|
fopAcM_onSwitch(this, fopAcM_GetParam(this) & 0xFF);
|
|
} else {
|
|
fopAcM_offSwitch(this, fopAcM_GetParam(this) & 0xFF);
|
|
}
|
|
}
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int daKtOnFire_c::Draw() {
|
|
return 1;
|
|
}
|
|
|
|
int daKtOnFire_c::Delete() {
|
|
dKy_plight_cut(&mLight);
|
|
return 1;
|
|
}
|
|
|
|
static int daKtOnFire_Draw(daKtOnFire_c* i_this) {
|
|
return i_this->Draw();
|
|
}
|
|
|
|
static int daKtOnFire_Execute(daKtOnFire_c* i_this) {
|
|
return i_this->Execute();
|
|
}
|
|
|
|
static int daKtOnFire_Delete(daKtOnFire_c* i_this) {
|
|
return i_this->Delete();
|
|
}
|
|
|
|
static int daKtOnFire_Create(fopAc_ac_c* i_this) {
|
|
return ((daKtOnFire_c*)i_this)->create();
|
|
}
|
|
|
|
static actor_method_class l_daKtOnFire_Method = {
|
|
(process_method_func)daKtOnFire_Create,
|
|
(process_method_func)daKtOnFire_Delete,
|
|
(process_method_func)daKtOnFire_Execute,
|
|
0,
|
|
(process_method_func)daKtOnFire_Draw,
|
|
};
|
|
|
|
actor_process_profile_definition g_profile_Tag_KtOnFire = {
|
|
/* Layer ID */ fpcLy_CURRENT_e,
|
|
/* List ID */ 7,
|
|
/* List Prio */ fpcPi_CURRENT_e,
|
|
/* Proc Name */ fpcNm_Tag_KtOnFire_e,
|
|
/* Proc SubMtd */ &g_fpcLf_Method.base,
|
|
/* Size */ sizeof(daKtOnFire_c),
|
|
/* Size Other */ 0,
|
|
/* Parameters */ 0,
|
|
/* Leaf SubMtd */ &g_fopAc_Method.base,
|
|
/* Draw Prio */ fpcDwPi_Tag_KtOnFire_e,
|
|
/* Actor SubMtd */ &l_daKtOnFire_Method,
|
|
/* Status */ fopAcStts_UNK_0x40000_e | fopAcStts_UNK_0x4000_e,
|
|
/* Group */ fopAc_ACTOR_e,
|
|
/* Cull Type */ fopAc_CULLBOX_CUSTOM_e,
|
|
};
|