metaforce/Runtime/World/CScriptHUDMemo.cpp

43 lines
1.6 KiB
C++
Raw Permalink Normal View History

#include "Runtime/World/CScriptHUDMemo.hpp"
#include "Runtime/CSimplePool.hpp"
#include "Runtime/GameGlobalObjects.hpp"
#include "Runtime/GuiSys/CStringTable.hpp"
#include "Runtime/MP1/CSamusHud.hpp"
#include "TCastTo.hpp" // Generated file, do not modify include path
2016-05-20 02:17:51 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-05-20 02:17:51 -07:00
CScriptHUDMemo::CScriptHUDMemo(TUniqueId uid, std::string_view name, const CEntityInfo& info,
const CHUDMemoParms& parms, EDisplayType disp, CAssetId msg, bool active)
2018-12-07 21:30:43 -08:00
: CEntity(uid, info, active, name), x34_parms(parms), x3c_dispType(disp), x40_stringTableId(msg) {
if (msg.IsValid()) {
2018-12-07 21:30:43 -08:00
x44_stringTable.emplace(g_SimplePool->GetObj({FOURCC('STRG'), msg}));
}
2016-05-20 02:17:51 -07:00
}
2018-12-07 21:30:43 -08:00
void CScriptHUDMemo::Accept(IVisitor& visitor) { visitor.Visit(this); }
2017-01-14 19:07:01 -08:00
2018-12-07 21:30:43 -08:00
void CScriptHUDMemo::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr) {
if (msg == EScriptObjectMessage::SetToZero) {
if (GetActive()) {
if (x3c_dispType == EDisplayType::MessageBox) {
2018-12-07 21:30:43 -08:00
mgr.ShowPausedHUDMemo(x40_stringTableId, x34_parms.GetDisplayTime());
} else if (x3c_dispType == EDisplayType::StatusMessage) {
if (x44_stringTable) {
2018-12-07 21:30:43 -08:00
MP1::CSamusHud::DisplayHudMemo((*x44_stringTable)->GetString(0), x34_parms);
} else {
2018-12-07 21:30:43 -08:00
MP1::CSamusHud::DisplayHudMemo(u"", x34_parms);
}
2018-12-07 21:30:43 -08:00
}
}
} else if (msg == EScriptObjectMessage::Deactivate && GetActive() && x3c_dispType == EDisplayType::StatusMessage) {
2018-12-07 21:30:43 -08:00
MP1::CSamusHud::DisplayHudMemo(u"", CHUDMemoParms(0.f, false, true, false));
}
2018-12-07 21:30:43 -08:00
CEntity::AcceptScriptMsg(msg, uid, mgr);
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce