mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-03 18:06:02 -04:00
203 lines
5.9 KiB
C++
203 lines
5.9 KiB
C++
/**
|
|
* @file d_a_ppolamp.cpp
|
|
*
|
|
*/
|
|
|
|
#include "d/dolzel_rel.h" // IWYU pragma: keep
|
|
|
|
#include "d/actor/d_a_ppolamp.h"
|
|
#include "Z2AudioLib/Z2Instances.h"
|
|
#include "d/d_com_inf_game.h"
|
|
#include "f_op/f_op_camera_mng.h"
|
|
|
|
static int daPPolamp_c_createHeap(fopAc_ac_c* i_this) {
|
|
return ((daPPolamp_c*)i_this)->createHeap();
|
|
}
|
|
|
|
static char* l_arcName = "PPolamp";
|
|
|
|
daPPolamp_c::~daPPolamp_c() {
|
|
dComIfG_resDelete(this, l_arcName);
|
|
}
|
|
|
|
int daPPolamp_c::create() {
|
|
int rv = dComIfG_resLoad(this, l_arcName);
|
|
if (rv == cPhs_COMPLEATE_e) {
|
|
if (fopAcM_entrySolidHeap(this, daPPolamp_c_createHeap, 0x1010) == 0) {
|
|
return cPhs_ERROR_e;
|
|
}
|
|
initParam();
|
|
setModelMtx();
|
|
fopAcM_SetMtx(this, mModel1->getBaseTRMtx());
|
|
Vec local_1c;
|
|
Vec local_28 = {0.0f, -45.0f, 0.0f};
|
|
cMtx_multVec(mModel1->getBaseTRMtx(), &local_28, &local_1c);
|
|
mDoMtx_stack_c::transS(local_1c.x, local_1c.y, local_1c.z);
|
|
mDoMtx_stack_c::YrotM(shape_angle.y);
|
|
mDoMtx_stack_c::XrotM(shape_angle.x);
|
|
mDoMtx_stack_c::ZrotM(shape_angle.z);
|
|
mModel2->setBaseTRMtx(mDoMtx_stack_c::get());
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
int daPPolamp_c::execute() {
|
|
if (mSwingTimer != 0) {
|
|
mSwingTimer--;
|
|
} else {
|
|
moveSwing();
|
|
}
|
|
setModelMtx();
|
|
setPclModelMtx();
|
|
mBck.play();
|
|
return 1;
|
|
}
|
|
|
|
int daPPolamp_c::draw() {
|
|
g_env_light.settingTevStruct(0, ¤t.pos, &tevStr);
|
|
g_env_light.setLightTevColorType_MAJI(mModel1, &tevStr);
|
|
mDoExt_modelUpdateDL(mModel1);
|
|
g_env_light.setLightTevColorType_MAJI(mModel2, &tevStr);
|
|
#ifdef __MWERKS__
|
|
static J3DGXColorS10 TEV_COLOR_1 = (GXColorS10){0x48, 0x85, 0xff, 0xff};
|
|
static J3DGXColorS10 TEV_COLOR_2 = (GXColorS10){0, 0, 0xff, 0xff};
|
|
#else
|
|
static J3DGXColorS10 TEV_COLOR_1 = GXColorS10 {0x48, 0x85, 0xff, 0xff};
|
|
static J3DGXColorS10 TEV_COLOR_2 = GXColorS10 {0, 0, 0xff, 0xff};
|
|
#endif
|
|
J3DModelData* modelData = mModel2->getModelData();
|
|
for (u16 i = 0; i < modelData->getMaterialNum(); i++)
|
|
{
|
|
J3DMaterial* material = modelData->getMaterialNodePointer(i);
|
|
if (material != NULL) {
|
|
material->setTevColor(1, &TEV_COLOR_1);
|
|
material->setTevColor(2, &TEV_COLOR_2);
|
|
}
|
|
}
|
|
mBck.entry(modelData);
|
|
mDoExt_modelUpdateDL(mModel2);
|
|
return 1;
|
|
}
|
|
|
|
int daPPolamp_c::Delete() {
|
|
this->~daPPolamp_c();
|
|
return 1;
|
|
}
|
|
|
|
void daPPolamp_c::setModelMtx() {
|
|
mDoMtx_stack_c::transS(current.pos.x, current.pos.y, current.pos.z);
|
|
mDoMtx_stack_c::YrotM(shape_angle.y);
|
|
mDoMtx_stack_c::XrotM(shape_angle.x);
|
|
mDoMtx_stack_c::ZrotM(shape_angle.z);
|
|
mModel1->setBaseTRMtx(mDoMtx_stack_c::get());
|
|
}
|
|
|
|
void daPPolamp_c::setPclModelMtx() {
|
|
Vec local_20;
|
|
Vec local_2c = {0.0f, -45.0f, 0.0f};
|
|
cMtx_multVec(mModel1->getBaseTRMtx(), &local_2c, &local_20);
|
|
mDoMtx_stack_c::transS(local_20.x, local_20.y, local_20.z);
|
|
camera_process_class* camera = dComIfGp_getCamera(0);
|
|
if (camera != NULL) {
|
|
cXyz cStack_38 = camera->view.lookat.eye - current.pos;
|
|
mDoMtx_stack_c::YrotM(cStack_38.atan2sX_Z());
|
|
mDoMtx_stack_c::XrotM(cStack_38.atan2sY_XZ());
|
|
}
|
|
mModel2->setBaseTRMtx(mDoMtx_stack_c::get());
|
|
}
|
|
|
|
int daPPolamp_c::createHeap() {
|
|
J3DModelData* a_model_data_p = (J3DModelData*)dComIfG_getObjectRes(l_arcName, 8);
|
|
JUT_ASSERT(347, a_model_data_p != NULL);
|
|
mModel1 = mDoExt_J3DModel__create(a_model_data_p, 0x80000, 0x11000084);
|
|
if (mModel1 == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
a_model_data_p = (J3DModelData*)dComIfG_getObjectRes(l_arcName, 7);
|
|
JUT_ASSERT(360, a_model_data_p != NULL);
|
|
mModel2 = mDoExt_J3DModel__create(a_model_data_p, 0x80000, 0x11000084);
|
|
if (mModel2 == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
J3DAnmTransform* a_bck_p = (J3DAnmTransform*)dComIfG_getObjectRes(l_arcName, 4);
|
|
JUT_ASSERT(372, a_bck_p != NULL);
|
|
if (mBck.init(a_bck_p, 1, 2, 1.0f, 0, -1, false) == 0) {
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
void daPPolamp_c::moveSwing() {
|
|
s16 sVar1 = field_0x598 * 65 - 500;
|
|
ANGLE_ADD(shape_angle.z, field_0x5a4 * (field_0x59c * sVar1));
|
|
ANGLE_ADD(shape_angle.y, field_0x59e * field_0x5a4);
|
|
if (sVar1 > 500) {
|
|
field_0x598 = 0;
|
|
field_0x59c *= -1;
|
|
field_0x59e = cM_rndFX(450.0f);
|
|
if (cLib_chaseF(&field_0x5a4, field_0x5a8, cM_rndF(0.1f)) != 0) {
|
|
field_0x5a8 = cM_rndF(1.1f);
|
|
if (field_0x5a4 < 0.12f) {
|
|
mSwingTimer = cM_rndF(80.0f);
|
|
}
|
|
}
|
|
}
|
|
field_0x598++;
|
|
}
|
|
|
|
void daPPolamp_c::initParam() {
|
|
field_0x598 = 0;
|
|
field_0x59c = 1;
|
|
field_0x59e = 0;
|
|
mSwingTimer = 0;
|
|
field_0x5a4 = 0.2f;
|
|
field_0x5a8 = 1.0f;
|
|
}
|
|
|
|
static int daPPolamp_create(daPPolamp_c* i_this) {
|
|
fopAcM_ct(i_this, daPPolamp_c);
|
|
return i_this->create();
|
|
}
|
|
|
|
static int daPPolamp_Delete(daPPolamp_c* i_this) {
|
|
return i_this->Delete();
|
|
}
|
|
|
|
static int daPPolamp_execute(daPPolamp_c* i_this) {
|
|
return i_this->execute();
|
|
}
|
|
|
|
static int daPPolamp_draw(daPPolamp_c* i_this) {
|
|
return i_this->draw();
|
|
}
|
|
|
|
static actor_method_class daPPolamp_METHODS = {
|
|
(process_method_func)daPPolamp_create,
|
|
(process_method_func)daPPolamp_Delete,
|
|
(process_method_func)daPPolamp_execute,
|
|
NULL,
|
|
(process_method_func)daPPolamp_draw,
|
|
};
|
|
|
|
actor_process_profile_definition g_profile_PPolamp = {
|
|
/* Layer ID */ fpcLy_CURRENT_e,
|
|
/* List ID */ 7,
|
|
/* List Prio */ fpcPi_CURRENT_e,
|
|
/* Proc Name */ fpcNm_PPolamp_e,
|
|
/* Proc SubMtd */ &g_fpcLf_Method.base,
|
|
/* Size */ sizeof(daPPolamp_c),
|
|
/* Size Other */ 0,
|
|
/* Parameters */ 0,
|
|
/* Leaf SubMtd */ &g_fopAc_Method.base,
|
|
/* Draw Prio */ fpcDwPi_PPolamp_e,
|
|
/* Actor SubMtd */ &daPPolamp_METHODS,
|
|
/* Status */ fopAcStts_UNK_0x40000_e | fopAcStts_CULL_e | fopAcStts_NOEXEC_e,
|
|
/* Group */ fopAc_ENV_e,
|
|
/* Cull Type */ fopAc_CULLBOX_12_e,
|
|
};
|
|
|
|
AUDIO_INSTANCES;
|