Files
tp/src/d/actor/d_a_obj_tmoon.cpp
T
LagoLunatic 877889c510 Clean up code, remove fakematches, add UNUSED, enable warnings (#2992)
* Remove NDEBUG_DEFINED fakematch, clean up getName temps

* Fix ifdef

* Fix bad JSystem pch ifdef breaking decomp.me

* Remove Acch Chk fakematches

* Private Acch fields

* Fix some clangd errors in headers

* Add UNUSED macro for matching debug parameters

* Enable clangd unused-parameter warning

* Remove extern from initializers

Probably added by dol2asm?

* Fix process profile definitions

* Remove leftover dol2asm address comments

* Remove some unnecessary double casts

* Enable some more clangd warnings

* Fix missing usages of fopAcM_ct

* Fix wrong enum usage

* Fix more fakematches
2025-12-23 15:53:10 -08:00

120 lines
3.3 KiB
C++

/**
* d_a_obj_tmoon.cpp
* Moon in Hidden Skill Scene
*/
#include "d/dolzel_rel.h" // IWYU pragma: keep
#include "d/actor/d_a_obj_tmoon.h"
#include "f_op/f_op_draw_tag.h"
static int CheckCreateHeap(fopAc_ac_c* i_this) {
return static_cast<daObjTMoon_c*>(i_this)->CreateHeap();
}
void daObjTMoon_c::initBaseMtx() {
mpModel->setBaseScale(scale);
setBaseMtx();
}
void daObjTMoon_c::setBaseMtx() {
mDoMtx_stack_c::transS(current.pos);
mDoMtx_stack_c::YrotM(shape_angle.y);
MTXCopy(mDoMtx_stack_c::now, mpModel->mBaseTransformMtx);
}
int daObjTMoon_c::Create() {
field_0x574 = getEventBit1();
field_0x576 = getEventBit2();
initBaseMtx();
fopAcM_SetMtx(this, mpModel->getBaseTRMtx());
return 1;
}
static const char* l_arcName = "A_TMoon";
int daObjTMoon_c::CreateHeap() {
mpModel = mDoExt_J3DModel__create((J3DModelData*)dComIfG_getObjectRes(l_arcName, 3), 0x80000,
0x11000084);
return mpModel != NULL ? 1 : 0;
}
int daObjTMoon_c::create() {
fopAcM_ct(this, daObjTMoon_c);
int phase = dComIfG_resLoad(&mPhaseReq, l_arcName);
if (phase == cPhs_COMPLEATE_e) {
if (!fopAcM_entrySolidHeap(this, (heapCallbackFunc)CheckCreateHeap, 0x880)) {
return cPhs_ERROR_e;
} else if (!Create()) {
return cPhs_ERROR_e;
}
}
return phase;
}
int daObjTMoon_c::execute() {
if ((field_0x576 != 0x3ff) &&
(dComIfGs_isEventBit(dSv_event_flag_c::saveBitLabels[field_0x576])) ||
(field_0x574 != 0x3ff) &&
(!dComIfGs_isEventBit(dSv_event_flag_c::saveBitLabels[field_0x574])))
{
fopDwTg_DrawQTo(&draw_tag);
return 1;
} else if ((field_0x574 != 0x3ff) &&
(dComIfGs_isEventBit(dSv_event_flag_c::saveBitLabels[field_0x574])))
{
fopDwTg_ToDrawQ(&draw_tag, fpcM_DrawPriority(this));
return 1;
}
return 1;
}
int daObjTMoon_c::draw() {
g_env_light.moon_pos = current.pos;
return 1;
}
int daObjTMoon_c::_delete() {
dComIfG_resDelete(&mPhaseReq, l_arcName);
return 1;
}
static int daObjTMoon_Draw(daObjTMoon_c* i_this) {
return i_this->draw();
}
static int daObjTMoon_Execute(daObjTMoon_c* i_this) {
return i_this->execute();
}
static int daObjTMoon_Delete(daObjTMoon_c* i_this) {
return i_this->_delete();
}
static int daObjTMoon_Create(daObjTMoon_c* i_this) {
return i_this->create();
}
static actor_method_class l_daObjTMoon_Method = {
(process_method_func)daObjTMoon_Create, (process_method_func)daObjTMoon_Delete,
(process_method_func)daObjTMoon_Execute, (process_method_func)NULL,
(process_method_func)daObjTMoon_Draw,
};
actor_process_profile_definition g_profile_Obj_TMoon = {
fpcLy_CURRENT_e, // mLayerID
7, // mListID
fpcPi_CURRENT_e, // mListPrio
PROC_Obj_TMoon, // mProcName
&g_fpcLf_Method.base, // sub_method
sizeof(daObjTMoon_c), // mSize
0, // mSizeOther
0, // mParameters
&g_fopAc_Method.base, // sub_method
569, // mPriority
&l_daObjTMoon_Method, // sub_method
0x40000, // mStatus
fopAc_ACTOR_e, // mActorType
fopAc_CULLBOX_CUSTOM_e, // cullType
};