mirror of https://github.com/AxioDL/metaforce.git
185 lines
7.2 KiB
C++
185 lines
7.2 KiB
C++
#include "CPauseScreenBase.hpp"
|
|
#include "GuiSys/CGuiFrame.hpp"
|
|
#include "GuiSys/CGuiTableGroup.hpp"
|
|
#include "GuiSys/CGuiSliderGroup.hpp"
|
|
#include "GuiSys/CGuiModel.hpp"
|
|
#include "GuiSys/CGuiTextPane.hpp"
|
|
#include "GuiSys/CAuiImagePane.hpp"
|
|
#include "GuiSys/CGuiWidgetDrawParms.hpp"
|
|
#include "GameGlobalObjects.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
namespace MP1
|
|
{
|
|
|
|
CPauseScreenBase::CPauseScreenBase(const CStateManager& mgr, CGuiFrame& frame, const CStringTable& pauseStrg)
|
|
: x4_mgr(mgr), x8_frame(frame), xc_pauseStrg(pauseStrg)
|
|
{
|
|
InitializeFrameGlue();
|
|
}
|
|
|
|
void CPauseScreenBase::InitializeFrameGlue()
|
|
{
|
|
x60_basewidget_pivot = x8_frame.FindWidget("basewidget_pivot");
|
|
x64_basewidget_bgframe = x8_frame.FindWidget("basewidget_bgframe");
|
|
x68_basewidget_leftside = x8_frame.FindWidget("basewidget_leftside");
|
|
x6c_basewidget_leftlog = x8_frame.FindWidget("basewidget_leftlog");
|
|
x70_tablegroup_leftlog = static_cast<CGuiTableGroup*>(x8_frame.FindWidget("tablegroup_leftlog"));
|
|
x74_basewidget_leftguages = x8_frame.FindWidget("basewidget_leftguages");
|
|
x78_model_lefthighlight = static_cast<CGuiModel*>(x8_frame.FindWidget("model_lefthighlight"));
|
|
x7c_basewidget_rightside = x8_frame.FindWidget("basewidget_rightside");
|
|
x80_basewidget_rightlog = x8_frame.FindWidget("basewidget_rightlog");
|
|
x84_tablegroup_rightlog = static_cast<CGuiTableGroup*>(x8_frame.FindWidget("tablegroup_rightlog"));
|
|
x88_basewidget_rightguages = x8_frame.FindWidget("basewidget_rightguages");
|
|
x8c_model_righthighlight = static_cast<CGuiModel*>(x8_frame.FindWidget("model_righthighlight"));
|
|
x90_model_textarrowtop = static_cast<CGuiModel*>(x8_frame.FindWidget("model_textarrowtop"));
|
|
x94_model_textarrowbottom = static_cast<CGuiModel*>(x8_frame.FindWidget("model_textarrowbottom"));
|
|
x98_model_scrollleftup = static_cast<CGuiModel*>(x8_frame.FindWidget("model_scrollleftup"));
|
|
x9c_model_scrollleftdown = static_cast<CGuiModel*>(x8_frame.FindWidget("model_scrollleftdown"));
|
|
xa0_model_scrollrightup = static_cast<CGuiModel*>(x8_frame.FindWidget("model_scrollrightup"));
|
|
xa4_model_scrollrightdown = static_cast<CGuiModel*>(x8_frame.FindWidget("model_scrollrightdown"));
|
|
x94_model_textarrowbottom = static_cast<CGuiModel*>(x8_frame.FindWidget("model_textarrowbottom"));
|
|
x178_textpane_title = static_cast<CGuiTextPane*>(x8_frame.FindWidget("textpane_title"));
|
|
x174_textpane_body = static_cast<CGuiTextPane*>(x8_frame.FindWidget("textpane_body"));
|
|
x180_basewidget_yicon = x8_frame.FindWidget("basewidget_yicon");
|
|
x17c_model_textalpha = static_cast<CGuiModel*>(x8_frame.FindWidget("model_textalpha"));
|
|
x184_textpane_yicon = static_cast<CGuiTextPane*>(x8_frame.FindWidget("textpane_yicon"));
|
|
x188_textpane_ytext = static_cast<CGuiTextPane*>(x8_frame.FindWidget("textpane_ytext"));
|
|
x18c_slidergroup_slider = static_cast<CGuiSliderGroup*>(x8_frame.FindWidget("slidergroup_slider"));
|
|
x190_tablegroup_double = static_cast<CGuiTableGroup*>(x8_frame.FindWidget("tablegroup_double"));
|
|
x194_tablegroup_triple = static_cast<CGuiTableGroup*>(x8_frame.FindWidget("tablegroup_triple"));
|
|
|
|
for (int i=0 ; i<5 ; ++i)
|
|
{
|
|
xd8_textpane_titles.push_back(static_cast<CGuiTextPane*>(x8_frame.FindWidget(hecl::Format("xd8_textpane_title%d", i + 1))));
|
|
x144_model_titles.push_back(static_cast<CGuiModel*>(x8_frame.FindWidget(hecl::Format("x144_model_title%d", i + 1))));
|
|
x15c_model_righttitledecos.push_back(static_cast<CGuiModel*>(x8_frame.FindWidget(hecl::Format("x15c_model_righttitledeco%d", i + 1))));
|
|
xa8_textpane_categories.push_back(static_cast<CGuiTextPane*>(x8_frame.FindWidget(hecl::Format("xa8_textpane_category%d", i))));
|
|
xc0_model_categories.push_back(static_cast<CGuiModel*>(x8_frame.FindWidget(hecl::Format("xc0_model_category%d", i))));
|
|
}
|
|
|
|
for (int i=0 ; i<20 ; ++i)
|
|
xf0_imagePanes.push_back(static_cast<CAuiImagePane*>(x8_frame.FindWidget(GetImagePaneName(i))));
|
|
|
|
x70_tablegroup_leftlog->SetUserSelection(0);
|
|
x84_tablegroup_rightlog->SetUserSelection(1);
|
|
|
|
x74_basewidget_leftguages->SetVisibility(false, ETraversalMode::Children);
|
|
x88_basewidget_rightguages->SetVisibility(false, ETraversalMode::Children);
|
|
x6c_basewidget_leftlog->SetColor(g_tweakGuiColors->GetPauseItemAmberColor());
|
|
}
|
|
|
|
bool CPauseScreenBase::IsReady()
|
|
{
|
|
if (x198_24_ready)
|
|
return true;
|
|
x198_24_ready = VReady();
|
|
if (x198_24_ready)
|
|
{
|
|
VActivate();
|
|
Activate(EMode::Zero);
|
|
UpdateSideTable(x70_tablegroup_leftlog);
|
|
UpdateRightTable();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void CPauseScreenBase::Activate(EMode mode)
|
|
{
|
|
|
|
}
|
|
|
|
void CPauseScreenBase::UpdateSideTable(CGuiTableGroup* table)
|
|
{
|
|
|
|
}
|
|
|
|
void CPauseScreenBase::Update(float dt, CRandom16& rand, CArchitectureQueue& archQueue)
|
|
{
|
|
x198_27_canDraw = true;
|
|
x8_frame.Update(dt);
|
|
x14_alpha = std::min(2.f * dt + x14_alpha, 1.f);
|
|
|
|
u32 rightCount = GetRightTableCount();
|
|
bool pulseRightUp = x10_mode == EMode::One && x18_ > 0;
|
|
bool pulseRightDown = x10_mode == EMode::One && x18_ + 5 < rightCount;
|
|
float rightUpT = pulseRightUp ? CGraphics::GetSecondsMod900() : 0.f;
|
|
float rightDownT = pulseRightDown ? CGraphics::GetSecondsMod900() : 0.f;
|
|
|
|
zeus::CColor lowC = g_tweakGuiColors->GetPauseItemAmberColor();
|
|
lowC.a = 0.2f;
|
|
xa0_model_scrollrightup->SetColor(
|
|
zeus::CColor::lerp(lowC, g_tweakGuiColors->GetPauseItemAmberColor(),
|
|
zeus::clamp(0.f, (std::sin(5.f * rightUpT - M_PIF / 2.f) + 1.f) * 0.5f, 1.f)));
|
|
xa4_model_scrollrightdown->SetColor(
|
|
zeus::CColor::lerp(lowC, g_tweakGuiColors->GetPauseItemAmberColor(),
|
|
zeus::clamp(0.f, (std::sin(5.f * rightDownT - M_PIF / 2.f) + 1.f) * 0.5f, 1.f)));
|
|
|
|
float textUpT = x198_28_pulseTextArrowTop ? CGraphics::GetSecondsMod900() : 0.f;
|
|
float textDownT = x198_29_pulseTextArrowBottom ? CGraphics::GetSecondsMod900() : 0.f;
|
|
|
|
x90_model_textarrowtop->SetColor(
|
|
zeus::CColor::lerp(lowC, g_tweakGuiColors->GetPauseItemAmberColor(),
|
|
zeus::clamp(0.f, (std::sin(5.f * textUpT - M_PIF / 2.f) + 1.f) * 0.5f, 1.f)));
|
|
x94_model_textarrowbottom->SetColor(
|
|
zeus::CColor::lerp(lowC, g_tweakGuiColors->GetPauseItemAmberColor(),
|
|
zeus::clamp(0.f, (std::sin(5.f * textDownT - M_PIF / 2.f) + 1.f) * 0.5f, 1.f)));
|
|
}
|
|
|
|
void CPauseScreenBase::ProcessControllerInput(const CFinalInput& input)
|
|
{
|
|
x198_25_handledInput = false;
|
|
x8_frame.ProcessUserInput(input);
|
|
}
|
|
|
|
void CPauseScreenBase::Draw(float mainAlpha, float frameAlpha, float yOff)
|
|
{
|
|
zeus::CColor color = zeus::CColor::skWhite;
|
|
color.a = mainAlpha * x14_alpha;
|
|
x60_basewidget_pivot->SetColor(color);
|
|
color.a = frameAlpha;
|
|
x64_basewidget_bgframe->SetColor(color);
|
|
|
|
CGuiWidgetDrawParms parms(1.f, zeus::CVector3f{0.f, 15.f * yOff, 0.f});
|
|
x8_frame.Draw(parms);
|
|
}
|
|
|
|
void CPauseScreenBase::UpdateRightTable()
|
|
{
|
|
|
|
}
|
|
|
|
static const char* PaneSuffixes[] =
|
|
{
|
|
"0",
|
|
"1",
|
|
"2",
|
|
"3",
|
|
"01",
|
|
"12",
|
|
"23",
|
|
"012",
|
|
"123",
|
|
"0123",
|
|
"4",
|
|
"5",
|
|
"6",
|
|
"7",
|
|
"45",
|
|
"56",
|
|
"67",
|
|
"456",
|
|
"567",
|
|
"4567"
|
|
};
|
|
|
|
std::string CPauseScreenBase::GetImagePaneName(u32 i)
|
|
{
|
|
return hecl::Format("imagepane_pane%s", PaneSuffixes[i]);
|
|
}
|
|
|
|
}
|
|
}
|