Files
ss/src/d/tg/d_t_event_f.cpp
T
MaxMotis 8ed64a6656 cleanup
remove unnecessary lines of code
2026-03-13 11:18:13 +01:00

73 lines
2.4 KiB
C++

#include "d/t/d_t_event_f.h"
#include "d/a/d_a_player.h"
#include "d/flag/storyflag_manager.h"
#include "f/f_base.h"
#include "toBeSorted/area_math.h"
SPECIAL_ACTOR_PROFILE(EVENTF_TAG, dTgEventF_c, fProfile::EVENTF_TAG, 0x14, 0, 0);
int dTgEventF_c::create() {
matrixCreateFromPosRotYScale(mMatrix, mPosition, mRotation.y, mScale, 0x0, 0.0f);
mEventId = getFromParams(0, 0xFF);
mSetStoryflag = getFromParams(8, 0x7FF);
if ((s32)mSetStoryflag == 0x3FF) {
mSetStoryflag = 0xFFFFFFFF;
}
mTrigStoryflag = getFromParams(19, 0x7FF);
if ((s32)mTrigStoryflag == 0x3FF) {
mTrigStoryflag = 0xFFFFFFFF;
}
mSubtype = getFromParams(30, 0x3);
return SUCCEEDED;
}
int dTgEventF_c::doDelete() {
return SUCCEEDED;
}
int dTgEventF_c::checkStoryflagValid(u32 counterIdx) {
return StoryflagManager::sInstance->checkFlagValid(counterIdx);
}
bool dTgEventF_c::checkUncommitedStoryFlagValue(u32 flag) {
return StoryflagManager::sInstance->getUncommittedValue(flag);
}
void dTgEventF_c::setStoryFlag(StoryFlags_e flag) {
StoryflagManager::sInstance->setFlag(flag);
}
void dTgEventF_c::unsetStoryFlag(StoryFlags_e flag) {
StoryflagManager::sInstance->unsetFlag(flag);
}
int dTgEventF_c::actorExecute() {
if ((!checkStoryflagValid(mTrigStoryflag) || checkUncommitedStoryFlagValue(mTrigStoryflag))) {
if ((mSubtype != 0 && !(checkStoryflagValid(mSetStoryflag) && checkUncommitedStoryFlagValue(mSetStoryflag))) ||
(mSubtype == 0 && checkStoryflagValid(mSetStoryflag) && checkUncommitedStoryFlagValue(mSetStoryflag))) {
if (checkAreaBox(mMatrix, dAcPy_c::LINK->mPosition)) {
Event EStack_48 = Event(mEventId, (int)mRoomID, 0x100001, 0, 0);
mActorEvent.scheduleEvent(EStack_48, 0);
}
}
}
return SUCCEEDED;
}
int dTgEventF_c::actorExecuteInEvent() {
if (mActorEvent.isThisActorInEvent()) {
mActorEvent.advanceNext();
if (!(mSubtype == 0 || !checkStoryflagValid(mSetStoryflag) || checkUncommitedStoryFlagValue(mSetStoryflag))) {
setStoryFlag((StoryFlags_e)mSetStoryflag);
} else if ((mSubtype == 0 && checkStoryflagValid(mSetStoryflag)) &&
checkUncommitedStoryFlagValue(mSetStoryflag)) {
unsetStoryFlag((StoryFlags_e)mSetStoryflag);
}
}
return SUCCEEDED;
}
int dTgEventF_c::draw() {
return SUCCEEDED;
}