2015-08-27 00:23:46 +00:00
|
|
|
#include "CFrontEndUI.hpp"
|
2016-09-16 20:18:03 +00:00
|
|
|
#include "CArchitectureMessage.hpp"
|
|
|
|
#include "CArchitectureQueue.hpp"
|
|
|
|
#include "CDvdFile.hpp"
|
|
|
|
#include "CSimplePool.hpp"
|
|
|
|
#include "GameGlobalObjects.hpp"
|
|
|
|
#include "MP1.hpp"
|
|
|
|
#include "CSlideShow.hpp"
|
2016-12-13 05:22:30 +00:00
|
|
|
#include "Audio/CSfxManager.hpp"
|
|
|
|
#include "Graphics/CMoviePlayer.hpp"
|
2016-12-19 19:20:30 +00:00
|
|
|
#include "CSaveUI.hpp"
|
2016-12-14 22:56:59 +00:00
|
|
|
#include "GuiSys/CGuiTextPane.hpp"
|
|
|
|
#include "GuiSys/CGuiFrame.hpp"
|
|
|
|
#include "GuiSys/CStringTable.hpp"
|
|
|
|
#include "GuiSys/CGuiTableGroup.hpp"
|
2017-01-10 07:15:49 +00:00
|
|
|
#include "GuiSys/CGuiSliderGroup.hpp"
|
2016-12-15 22:37:34 +00:00
|
|
|
#include "GuiSys/CGuiModel.hpp"
|
2016-12-14 22:56:59 +00:00
|
|
|
#include "CGameState.hpp"
|
|
|
|
#include "CDependencyGroup.hpp"
|
|
|
|
#include "Audio/CAudioGroupSet.hpp"
|
2016-12-30 06:37:01 +00:00
|
|
|
#include "GuiSys/CGuiWidgetDrawParms.hpp"
|
2016-12-14 22:56:59 +00:00
|
|
|
#include "CNESEmulator.hpp"
|
2016-12-30 06:37:01 +00:00
|
|
|
#include "CQuitScreen.hpp"
|
2017-01-13 00:16:26 +00:00
|
|
|
#include "Input/RumbleFxTable.hpp"
|
2015-08-27 00:23:46 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-27 00:23:46 +00:00
|
|
|
{
|
|
|
|
namespace MP1
|
|
|
|
{
|
|
|
|
|
2016-12-14 22:56:59 +00:00
|
|
|
/* Music volume constants */
|
2017-01-09 03:44:00 +00:00
|
|
|
static const float FE1_VOL = 0.7421875f;
|
|
|
|
static const float FE2_VOL = 0.7421875f;
|
2016-12-14 22:56:59 +00:00
|
|
|
|
2016-12-13 05:22:30 +00:00
|
|
|
/* L/R Stereo transition cues */
|
|
|
|
static const u16 FETransitionBackSFX[3][2] =
|
|
|
|
{
|
|
|
|
{1090, 1097},
|
|
|
|
{1098, 1099},
|
|
|
|
{1100, 1101}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const u16 FETransitionForwardSFX[3][2] =
|
|
|
|
{
|
|
|
|
{1102, 1103},
|
|
|
|
{1104, 1105},
|
|
|
|
{1106, 1107}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FEMovie
|
|
|
|
{
|
|
|
|
const char* path;
|
|
|
|
bool loop;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const FEMovie FEMovies[] =
|
|
|
|
{
|
|
|
|
{"Video/00_first_start.thp", false},
|
|
|
|
{"Video/01_startloop.thp", true},
|
|
|
|
{"Video/02_start_fileselect_A.thp", false},
|
|
|
|
{"Video/03_fileselectloop.thp", true},
|
|
|
|
{"Video/04_fileselect_playgame_A.thp", false},
|
|
|
|
{"Video/06_fileselect_GBA.thp", false},
|
|
|
|
{"Video/07_GBAloop.thp", true},
|
|
|
|
{"Video/08_GBA_fileselect.thp", false},
|
|
|
|
{"Video/08_GBA_fileselect.thp", false},
|
|
|
|
};
|
|
|
|
|
2016-09-16 20:18:03 +00:00
|
|
|
SObjectTag g_DefaultWorldTag = {FOURCC('MLVL'), 0x158efe17};
|
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
void CFrontEndUI::PlayAdvanceSfx()
|
2016-12-14 22:56:59 +00:00
|
|
|
{
|
2016-12-16 23:05:29 +00:00
|
|
|
CSfxManager::SfxStart(1096, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
CSfxManager::SfxStart(1091, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
2016-12-15 22:37:34 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
CFrontEndUI::SNewFileSelectFrame::SNewFileSelectFrame(CSaveUI* sui, u32 rnd)
|
|
|
|
: x0_rnd(rnd), x4_saveUI(sui)
|
2016-12-15 22:37:34 +00:00
|
|
|
{
|
2016-12-16 23:05:29 +00:00
|
|
|
x10_frme = g_SimplePool->GetObj("FRME_NewFileSelect");
|
2016-12-15 22:37:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SNewFileSelectFrame::FinishedLoading()
|
|
|
|
{
|
|
|
|
x20_tablegroup_fileselect = static_cast<CGuiTableGroup*>(x1c_loadedFrame->FindWidget("tablegroup_fileselect"));
|
|
|
|
x24_model_erase = static_cast<CGuiModel*>(x1c_loadedFrame->FindWidget("model_erase"));
|
|
|
|
xf8_model_erase_position = x24_model_erase->GetLocalPosition();
|
|
|
|
x28_textpane_erase = FindTextPanePair(x1c_loadedFrame, "textpane_erase");
|
2016-12-16 23:05:29 +00:00
|
|
|
x38_textpane_gba = FindTextPanePair(x1c_loadedFrame, "textpane_gba");
|
|
|
|
x30_textpane_cheats = FindTextPanePair(x1c_loadedFrame, "textpane_cheats");
|
|
|
|
x48_textpane_popupadvance = FindTextPanePair(x1c_loadedFrame, "textpane_popupadvance");
|
|
|
|
x50_textpane_popupcancel = FindTextPanePair(x1c_loadedFrame, "textpane_popupcancel");
|
2016-12-15 22:37:34 +00:00
|
|
|
x58_textpane_popupextra = FindTextPanePair(x1c_loadedFrame, "textpane_popupextra");
|
|
|
|
x40_tablegroup_popup = static_cast<CGuiTableGroup*>(x1c_loadedFrame->FindWidget("tablegroup_popup"));
|
|
|
|
x44_model_dash7 = static_cast<CGuiModel*>(x1c_loadedFrame->FindWidget("model_dash7"));
|
|
|
|
x60_textpane_cancel = static_cast<CGuiTextPane*>(x1c_loadedFrame->FindWidget("textpane_cancel"));
|
|
|
|
FindAndSetPairText(x1c_loadedFrame, "textpane_title", g_MainStringTable->GetString(97));
|
|
|
|
CGuiTextPane* proceed = static_cast<CGuiTextPane*>(x1c_loadedFrame->FindWidget("textpane_proceed"));
|
|
|
|
if (proceed)
|
|
|
|
proceed->TextSupport()->SetText(g_MainStringTable->GetString(85));
|
|
|
|
x40_tablegroup_popup->SetIsVisible(false);
|
|
|
|
x40_tablegroup_popup->SetIsActive(false);
|
2017-01-09 03:44:00 +00:00
|
|
|
x40_tablegroup_popup->SetVertical(false);
|
2016-12-15 22:37:34 +00:00
|
|
|
CGuiWidget* worker = x40_tablegroup_popup->GetWorkerWidget(2);
|
2017-01-09 03:44:00 +00:00
|
|
|
worker->SetIsSelectable(false);
|
2016-12-15 22:37:34 +00:00
|
|
|
worker->SetVisibility(false, ETraversalMode::Children);
|
|
|
|
|
|
|
|
x20_tablegroup_fileselect->SetMenuAdvanceCallback(
|
2016-12-18 04:16:04 +00:00
|
|
|
std::bind(&SNewFileSelectFrame::DoFileMenuAdvance, this, std::placeholders::_1));
|
2016-12-15 22:37:34 +00:00
|
|
|
x20_tablegroup_fileselect->SetMenuSelectionChangeCallback(
|
2017-01-09 03:44:00 +00:00
|
|
|
std::bind(&SNewFileSelectFrame::DoSelectionChange, this, std::placeholders::_1, std::placeholders::_2));
|
2016-12-15 22:37:34 +00:00
|
|
|
x20_tablegroup_fileselect->SetMenuCancelCallback(
|
2016-12-18 04:16:04 +00:00
|
|
|
std::bind(&SNewFileSelectFrame::DoFileMenuCancel, this, std::placeholders::_1));
|
2016-12-14 22:56:59 +00:00
|
|
|
|
2016-12-15 22:37:34 +00:00
|
|
|
x40_tablegroup_popup->SetMenuAdvanceCallback(
|
2016-12-16 04:35:49 +00:00
|
|
|
std::bind(&SNewFileSelectFrame::DoPopupAdvance, this, std::placeholders::_1));
|
2016-12-15 22:37:34 +00:00
|
|
|
x40_tablegroup_popup->SetMenuSelectionChangeCallback(
|
2017-01-09 03:44:00 +00:00
|
|
|
std::bind(&SNewFileSelectFrame::DoSelectionChange, this, std::placeholders::_1, std::placeholders::_2));
|
2016-12-15 22:37:34 +00:00
|
|
|
x40_tablegroup_popup->SetMenuCancelCallback(
|
2016-12-16 04:35:49 +00:00
|
|
|
std::bind(&SNewFileSelectFrame::DoPopupCancel, this, std::placeholders::_1));
|
2016-12-15 22:37:34 +00:00
|
|
|
|
|
|
|
for (int i=0 ; i<3 ; ++i)
|
|
|
|
x64_fileSelections[i] = FindFileSelectOption(x1c_loadedFrame, i);
|
|
|
|
|
2016-12-30 06:37:01 +00:00
|
|
|
x104_rowPitch = (x64_fileSelections[1].x0_base->GetLocalPosition() -
|
|
|
|
x64_fileSelections[0].x0_base->GetLocalPosition()).z;
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CFrontEndUI::SNewFileSelectFrame::PumpLoad()
|
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
if (x1c_loadedFrame)
|
|
|
|
return true;
|
|
|
|
if (x10_frme.IsLoaded())
|
|
|
|
{
|
|
|
|
if (x10_frme->GetIsFinishedLoading())
|
|
|
|
{
|
|
|
|
x1c_loadedFrame = x10_frme.GetObj();
|
|
|
|
FinishedLoading();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2016-12-14 22:56:59 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
bool CFrontEndUI::SNewFileSelectFrame::IsTextDoneAnimating() const
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x64_fileSelections[0].x28_curField != 4)
|
2016-12-16 04:35:49 +00:00
|
|
|
return false;
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x64_fileSelections[1].x28_curField != 4)
|
2016-12-16 04:35:49 +00:00
|
|
|
return false;
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x64_fileSelections[2].x28_curField != 4)
|
2016-12-16 04:35:49 +00:00
|
|
|
return false;
|
2016-12-16 23:05:29 +00:00
|
|
|
if (!x28_textpane_erase.x0_panes[0]->GetTextSupport()->IsAnimationDone())
|
2016-12-16 04:35:49 +00:00
|
|
|
return false;
|
2016-12-16 23:05:29 +00:00
|
|
|
return x38_textpane_gba.x0_panes[0]->GetTextSupport()->IsAnimationDone();
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::Update(float dt)
|
|
|
|
{
|
2017-01-10 07:15:49 +00:00
|
|
|
bool saveReady = x4_saveUI->GetUIType() == CSaveUI::EUIType::SaveReady;
|
|
|
|
if (saveReady != x10c_saveReady)
|
|
|
|
{
|
|
|
|
if (saveReady)
|
|
|
|
{
|
|
|
|
ClearFrameContents();
|
|
|
|
}
|
|
|
|
else if (x8_subMenu != ESubMenu::Root)
|
|
|
|
{
|
|
|
|
ResetFrame();
|
|
|
|
DeactivateExistingGamePopup();
|
|
|
|
DeactivateNewGamePopup();
|
|
|
|
x8_subMenu = ESubMenu::Root;
|
|
|
|
}
|
|
|
|
x10c_saveReady = saveReady;
|
|
|
|
}
|
|
|
|
if (x10c_saveReady)
|
|
|
|
SetupFrameContents();
|
2017-01-29 03:58:16 +00:00
|
|
|
|
2017-01-10 07:15:49 +00:00
|
|
|
x1c_loadedFrame->Update(dt);
|
2017-01-09 03:44:00 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 06:37:01 +00:00
|
|
|
CFrontEndUI::SNewFileSelectFrame::EAction
|
2016-12-16 04:35:49 +00:00
|
|
|
CFrontEndUI::SNewFileSelectFrame::ProcessUserInput(const CFinalInput& input)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x8_subMenu != ESubMenu::ExistingGamePopup)
|
2016-12-16 04:35:49 +00:00
|
|
|
x4_saveUI->ProcessUserInput(input);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
if (IsTextDoneAnimating())
|
|
|
|
x108_curTime = std::min(0.5f, x108_curTime + input.DeltaTime());
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
if (x108_curTime < 0.5f)
|
2016-12-30 06:37:01 +00:00
|
|
|
return xc_action;
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2017-01-10 07:15:49 +00:00
|
|
|
if (x10c_saveReady)
|
2016-12-16 04:35:49 +00:00
|
|
|
x1c_loadedFrame->ProcessUserInput(input);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
if (x10d_needsExistingToggle)
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
|
|
|
if (x40_tablegroup_popup->GetIsActive())
|
2016-12-16 23:05:29 +00:00
|
|
|
DeactivateExistingGamePopup();
|
2016-12-16 04:35:49 +00:00
|
|
|
else
|
2016-12-16 23:05:29 +00:00
|
|
|
ActivateExistingGamePopup();
|
|
|
|
x10d_needsExistingToggle = false;
|
|
|
|
}
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
if (x10e_needsNewToggle)
|
|
|
|
{
|
|
|
|
if (x40_tablegroup_popup->GetIsActive())
|
|
|
|
DeactivateNewGamePopup();
|
|
|
|
else
|
|
|
|
ActivateNewGamePopup();
|
|
|
|
x10e_needsNewToggle = false;
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-30 06:37:01 +00:00
|
|
|
return xc_action;
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2016-12-18 04:16:04 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::Draw() const
|
|
|
|
{
|
2017-01-10 07:15:49 +00:00
|
|
|
if (x1c_loadedFrame && x10c_saveReady)
|
2016-12-31 00:51:51 +00:00
|
|
|
x1c_loadedFrame->Draw(CGuiWidgetDrawParms::Default);
|
2016-12-18 04:16:04 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::HandleActiveChange(CGuiTableGroup* active)
|
|
|
|
{
|
|
|
|
if (!active)
|
|
|
|
return;
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
active->SetColors(zeus::CColor::skWhite,
|
|
|
|
zeus::CColor{0.627450f, 0.627450f, 0.627450f, 0.784313f});
|
|
|
|
|
|
|
|
if (active == x20_tablegroup_fileselect)
|
|
|
|
x24_model_erase->SetLocalTransform(zeus::CTransform::Translate(
|
|
|
|
zeus::CVector3f{0.f, 0.f, active->GetUserSelection() * x104_rowPitch} + xf8_model_erase_position));
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x8_subMenu == ESubMenu::Root || x8_subMenu == ESubMenu::NewGamePopup)
|
2016-12-16 04:35:49 +00:00
|
|
|
x24_model_erase->SetIsVisible(false);
|
|
|
|
else
|
|
|
|
x24_model_erase->SetIsVisible(true);
|
|
|
|
}
|
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::DeactivateExistingGamePopup()
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
|
|
|
x40_tablegroup_popup->SetIsActive(false);
|
|
|
|
x40_tablegroup_popup->SetIsVisible(false);
|
|
|
|
x20_tablegroup_fileselect->SetIsActive(true);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
HandleActiveChange(x20_tablegroup_fileselect);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
x64_fileSelections[x20_tablegroup_fileselect->GetUserSelection()].
|
|
|
|
x0_base->SetColor(zeus::CColor::skWhite);
|
|
|
|
}
|
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::ActivateExistingGamePopup()
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
|
|
|
x40_tablegroup_popup->SetIsActive(true);
|
|
|
|
x40_tablegroup_popup->SetIsVisible(true);
|
|
|
|
x40_tablegroup_popup->SetLocalTransform(
|
|
|
|
zeus::CTransform::Translate(0.f, 0.f, x20_tablegroup_fileselect->GetUserSelection() * x104_rowPitch) *
|
|
|
|
x40_tablegroup_popup->GetTransform());
|
|
|
|
x20_tablegroup_fileselect->SetIsActive(false);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
x8_subMenu = ESubMenu::ExistingGamePopup;
|
2016-12-16 04:35:49 +00:00
|
|
|
HandleActiveChange(x40_tablegroup_popup);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
x48_textpane_popupadvance.SetPairText(g_MainStringTable->GetString(95));
|
|
|
|
x50_textpane_popupcancel.SetPairText(g_MainStringTable->GetString(38));
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
x64_fileSelections[x20_tablegroup_fileselect->GetUserSelection()].
|
|
|
|
x0_base->SetColor(zeus::CColor{1.f, 1.f, 1.f, 0.f});
|
|
|
|
x44_model_dash7->SetVisibility(false, ETraversalMode::Children);
|
|
|
|
}
|
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::DeactivateNewGamePopup()
|
|
|
|
{
|
|
|
|
x40_tablegroup_popup->SetIsActive(false);
|
|
|
|
x40_tablegroup_popup->SetIsVisible(false);
|
|
|
|
x20_tablegroup_fileselect->SetIsActive(true);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
CGuiWidget* worker = x40_tablegroup_popup->GetWorkerWidget(2);
|
2017-01-09 03:44:00 +00:00
|
|
|
worker->SetIsSelectable(false);
|
2016-12-16 23:05:29 +00:00
|
|
|
worker->SetVisibility(false, ETraversalMode::Children);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
x44_model_dash7->SetVisibility(false, ETraversalMode::Children);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
HandleActiveChange(x20_tablegroup_fileselect);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
x64_fileSelections[x20_tablegroup_fileselect->GetUserSelection()].
|
|
|
|
x0_base->SetColor(zeus::CColor::skWhite);
|
2017-01-24 07:41:33 +00:00
|
|
|
x60_textpane_cancel->TextSupport()->SetText(u"");
|
2016-12-16 23:05:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SNewFileSelectFrame::ActivateNewGamePopup()
|
|
|
|
{
|
|
|
|
x40_tablegroup_popup->SetIsActive(true);
|
|
|
|
x40_tablegroup_popup->SetIsVisible(true);
|
|
|
|
x40_tablegroup_popup->SetUserSelection(0);
|
|
|
|
x40_tablegroup_popup->SetLocalTransform(
|
|
|
|
zeus::CTransform::Translate(0.f, 0.f, x20_tablegroup_fileselect->GetUserSelection() * x104_rowPitch) *
|
|
|
|
x40_tablegroup_popup->GetTransform());
|
|
|
|
x20_tablegroup_fileselect->SetIsActive(false);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
x8_subMenu = ESubMenu::NewGamePopup;
|
2016-12-16 23:05:29 +00:00
|
|
|
HandleActiveChange(x40_tablegroup_popup);
|
|
|
|
x64_fileSelections[x20_tablegroup_fileselect->GetUserSelection()].
|
|
|
|
x0_base->SetColor(zeus::CColor{1.f, 1.f, 1.f, 0.f});
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
PlayAdvanceSfx();
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2017-01-01 06:46:52 +00:00
|
|
|
if (g_GameState->SystemOptions().GetPlayerBeatNormalMode())
|
2016-12-16 23:05:29 +00:00
|
|
|
{
|
|
|
|
x48_textpane_popupadvance.SetPairText(g_MainStringTable->GetString(102));
|
|
|
|
x50_textpane_popupcancel.SetPairText(g_MainStringTable->GetString(94));
|
|
|
|
x58_textpane_popupextra.SetPairText(g_MainStringTable->GetString(101));
|
|
|
|
CGuiWidget* worker = x40_tablegroup_popup->GetWorkerWidget(2);
|
2017-01-09 03:44:00 +00:00
|
|
|
worker->SetIsSelectable(true);
|
2016-12-16 23:05:29 +00:00
|
|
|
worker->SetVisibility(true, ETraversalMode::Children);
|
|
|
|
x44_model_dash7->SetVisibility(true, ETraversalMode::Children);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x48_textpane_popupadvance.SetPairText(g_MainStringTable->GetString(67));
|
|
|
|
x50_textpane_popupcancel.SetPairText(g_MainStringTable->GetString(94));
|
|
|
|
x44_model_dash7->SetVisibility(false, ETraversalMode::Children);
|
|
|
|
}
|
|
|
|
x60_textpane_cancel->TextSupport()->SetText(g_MainStringTable->GetString(82));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SNewFileSelectFrame::ResetFrame()
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
x8_subMenu = ESubMenu::Root;
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
x38_textpane_gba.x0_panes[0]->SetIsSelectable(true);
|
2016-12-16 23:05:29 +00:00
|
|
|
x38_textpane_gba.x0_panes[0]->TextSupport()->SetFontColor(zeus::CColor::skWhite);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
x30_textpane_cheats.x0_panes[0]->SetIsSelectable(true);
|
2016-12-16 23:05:29 +00:00
|
|
|
x30_textpane_cheats.x0_panes[0]->TextSupport()->SetFontColor(zeus::CColor::skWhite);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
ClearFrameContents();
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
for (int i=2 ; i>=0 ; --i)
|
2017-01-09 03:44:00 +00:00
|
|
|
x20_tablegroup_fileselect->GetWorkerWidget(i)->SetIsSelectable(true);
|
2017-01-24 07:41:33 +00:00
|
|
|
x60_textpane_cancel->TextSupport()->SetText(u"");
|
2016-12-16 23:05:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::ActivateErase()
|
|
|
|
{
|
|
|
|
x8_subMenu = ESubMenu::EraseGame;
|
|
|
|
x28_textpane_erase.x0_panes[0]->SetIsSelectable(false);
|
|
|
|
zeus::CColor color = zeus::CColor::skGrey;
|
|
|
|
color.a = 0.5f;
|
|
|
|
x28_textpane_erase.x0_panes[0]->TextSupport()->SetFontColor(color);
|
|
|
|
x38_textpane_gba.x0_panes[0]->TextSupport()->SetFontColor(color);
|
|
|
|
x30_textpane_cheats.x0_panes[0]->TextSupport()->SetFontColor(color);
|
|
|
|
|
|
|
|
for (int i=2 ; i>=0 ; --i)
|
|
|
|
{
|
|
|
|
SFileMenuOption& fileOpt = x64_fileSelections[i];
|
|
|
|
const CGameState::GameFileStateInfo* data = x4_saveUI->GetGameData(i);
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
fileOpt.x4_textpanes[0].x0_panes[0]->SetIsSelectable(true);
|
|
|
|
x20_tablegroup_fileselect->SetUserSelection(i);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fileOpt.x4_textpanes[0].x0_panes[0]->SetIsSelectable(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
x60_textpane_cancel->TextSupport()->SetText(g_MainStringTable->GetString(82));
|
|
|
|
HandleActiveChange(x20_tablegroup_fileselect);
|
|
|
|
}
|
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::ClearFrameContents()
|
|
|
|
{
|
|
|
|
x108_curTime = 0.f;
|
|
|
|
bool hasSave = false;
|
|
|
|
for (int i=0 ; i<3 ; ++i)
|
|
|
|
{
|
|
|
|
if (x4_saveUI->GetGameData(i))
|
|
|
|
hasSave = true;
|
2016-12-18 04:16:04 +00:00
|
|
|
SFileMenuOption& option = x64_fileSelections[i];
|
2017-01-09 03:44:00 +00:00
|
|
|
option.x2c_chRate = SFileMenuOption::ComputeRandom();
|
|
|
|
option.x28_curField = -1;
|
2016-12-16 23:05:29 +00:00
|
|
|
for (int j=0 ; j<4 ; ++j)
|
2017-01-24 07:41:33 +00:00
|
|
|
option.x4_textpanes[j].SetPairText(u"");
|
2016-12-16 23:05:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StartTextAnimating(x28_textpane_erase.x0_panes[0], g_MainStringTable->GetString(38), 60.f);
|
|
|
|
StartTextAnimating(x38_textpane_gba.x0_panes[0], g_MainStringTable->GetString(37), 60.f);
|
|
|
|
StartTextAnimating(x30_textpane_cheats.x0_panes[0], g_MainStringTable->GetString(96), 60.f);
|
|
|
|
|
|
|
|
StartTextAnimating(x28_textpane_erase.x0_panes[1], g_MainStringTable->GetString(38), 60.f);
|
|
|
|
StartTextAnimating(x38_textpane_gba.x0_panes[1], g_MainStringTable->GetString(37), 60.f);
|
|
|
|
StartTextAnimating(x30_textpane_cheats.x0_panes[1], g_MainStringTable->GetString(96), 60.f);
|
|
|
|
|
|
|
|
if (hasSave)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
x28_textpane_erase.x0_panes[0]->SetIsSelectable(true);
|
2016-12-16 23:05:29 +00:00
|
|
|
x28_textpane_erase.x0_panes[0]->TextSupport()->SetFontColor(zeus::CColor::skWhite);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
x28_textpane_erase.x0_panes[0]->SetIsSelectable(false);
|
2016-12-16 23:05:29 +00:00
|
|
|
zeus::CColor color = zeus::CColor::skGrey;
|
|
|
|
color.a = 0.5f;
|
|
|
|
x28_textpane_erase.x0_panes[0]->TextSupport()->SetFontColor(color);
|
|
|
|
}
|
|
|
|
|
|
|
|
x20_tablegroup_fileselect->SetUserSelection(0);
|
|
|
|
CGuiTextPane* cheats = static_cast<CGuiTextPane*>(x20_tablegroup_fileselect->GetWorkerWidget(5));
|
|
|
|
if (CSlideShow::SlideShowGalleryFlags())
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
cheats->SetIsSelectable(true);
|
2016-12-16 23:05:29 +00:00
|
|
|
x30_textpane_cheats.x0_panes[0]->TextSupport()->SetFontColor(zeus::CColor::skWhite);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
cheats->SetIsSelectable(false);
|
2016-12-16 23:05:29 +00:00
|
|
|
zeus::CColor color = zeus::CColor::skGrey;
|
|
|
|
color.a = 0.5f;
|
|
|
|
x30_textpane_cheats.x0_panes[0]->TextSupport()->SetFontColor(color);
|
|
|
|
}
|
|
|
|
|
|
|
|
HandleActiveChange(x20_tablegroup_fileselect);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SNewFileSelectFrame::SetupFrameContents()
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
2016-12-16 23:05:29 +00:00
|
|
|
for (int i=0 ; i<3 ; ++i)
|
|
|
|
{
|
2016-12-18 04:16:04 +00:00
|
|
|
SFileMenuOption& option = x64_fileSelections[i];
|
2017-01-09 03:44:00 +00:00
|
|
|
if (option.x28_curField == 4)
|
2016-12-16 23:05:29 +00:00
|
|
|
continue;
|
2017-01-09 03:44:00 +00:00
|
|
|
SGuiTextPair* pair = (option.x28_curField == -1) ? nullptr : &option.x4_textpanes[option.x28_curField];
|
|
|
|
if (!pair ||
|
|
|
|
pair->x0_panes[0]->GetTextSupport()->GetNumCharsPrinted() >=
|
|
|
|
pair->x0_panes[0]->GetTextSupport()->GetNumCharsTotal())
|
2016-12-16 23:05:29 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (++option.x28_curField < 4)
|
|
|
|
{
|
2017-01-24 07:41:33 +00:00
|
|
|
std::u16string str;
|
2017-01-09 03:44:00 +00:00
|
|
|
SGuiTextPair& populatePair = option.x4_textpanes[option.x28_curField];
|
|
|
|
const CGameState::GameFileStateInfo* data = x4_saveUI->GetGameData(i);
|
|
|
|
|
|
|
|
switch (option.x28_curField)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
// Completion percent
|
|
|
|
if (data)
|
|
|
|
{
|
2017-01-24 07:41:33 +00:00
|
|
|
std::u16string fileStr = g_MainStringTable->GetString(data->x20_hardMode ? 106 : 39);
|
|
|
|
str = fileStr + hecl::Char16Format(L" %02d%%", data->x18_itemPercent);
|
2017-01-09 03:44:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
str = g_MainStringTable->GetString(36);
|
|
|
|
break;
|
2016-12-16 04:35:49 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
case 1:
|
|
|
|
// World name
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
if (g_MemoryCardSys->HasSaveWorldMemory(data->x8_mlvlId))
|
|
|
|
{
|
|
|
|
const CSaveWorldMemory& wldMem = g_MemoryCardSys->GetSaveWorldMemory(data->x8_mlvlId);
|
|
|
|
str = wldMem.GetFrontEndName();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
str = g_MainStringTable->GetString(51);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
// Formatted time
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
auto pt = std::div(data->x0_playTime, 3600);
|
2017-01-24 07:41:33 +00:00
|
|
|
str = hecl::Char16Format(L"%02d:%02d", pt.quot, pt.rem / 60);
|
2017-01-09 03:44:00 +00:00
|
|
|
}
|
|
|
|
str = g_MainStringTable->GetString(52);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
// "Elapsed"
|
|
|
|
str = g_MainStringTable->GetString(data ? 54 : 53);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
StartTextAnimating(populatePair.x0_panes[0], str, option.x2c_chRate);
|
|
|
|
StartTextAnimating(populatePair.x0_panes[1], str, option.x2c_chRate);
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 23:05:29 +00:00
|
|
|
}
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::DoPopupCancel(CGuiTableGroup* caller)
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x8_subMenu == ESubMenu::ExistingGamePopup)
|
2016-12-16 23:05:29 +00:00
|
|
|
{
|
|
|
|
CSfxManager::SfxStart(1094, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
2017-01-09 03:44:00 +00:00
|
|
|
x8_subMenu = ESubMenu::EraseGame;
|
2016-12-16 23:05:29 +00:00
|
|
|
x10d_needsExistingToggle = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CSfxManager::SfxStart(1094, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
2017-01-09 03:44:00 +00:00
|
|
|
x8_subMenu = ESubMenu::Root;
|
2016-12-16 23:05:29 +00:00
|
|
|
x10e_needsNewToggle = true;
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 04:35:49 +00:00
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::DoPopupAdvance(CGuiTableGroup* caller)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x8_subMenu == ESubMenu::ExistingGamePopup)
|
2016-12-16 23:05:29 +00:00
|
|
|
{
|
|
|
|
if (x40_tablegroup_popup->GetUserSelection() == 1)
|
|
|
|
{
|
|
|
|
x4_saveUI->EraseGame(x20_tablegroup_fileselect->GetUserSelection());
|
|
|
|
ResetFrame();
|
|
|
|
}
|
|
|
|
else
|
2017-01-09 03:44:00 +00:00
|
|
|
x8_subMenu = ESubMenu::EraseGame;
|
2016-12-16 23:05:29 +00:00
|
|
|
x10d_needsExistingToggle = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
if (g_GameState->SystemOptions().GetPlayerBeatNormalMode())
|
2016-12-16 23:05:29 +00:00
|
|
|
{
|
|
|
|
if (x40_tablegroup_popup->GetUserSelection() == 1)
|
|
|
|
{
|
|
|
|
PlayAdvanceSfx();
|
2017-01-09 03:44:00 +00:00
|
|
|
xc_action = EAction::GameOptions;
|
2016-12-16 23:05:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
g_GameState->SetHardMode(x20_tablegroup_fileselect->GetUserSelection());
|
|
|
|
x4_saveUI->StartGame(x40_tablegroup_popup->GetUserSelection());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (x40_tablegroup_popup->GetUserSelection() == 1)
|
|
|
|
{
|
|
|
|
PlayAdvanceSfx();
|
2017-01-09 03:44:00 +00:00
|
|
|
xc_action = EAction::GameOptions;
|
2016-12-16 23:05:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
x4_saveUI->StartGame(x40_tablegroup_popup->GetUserSelection());
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2016-12-18 04:16:04 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::DoFileMenuCancel(CGuiTableGroup* caller)
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x8_subMenu == ESubMenu::EraseGame)
|
2016-12-16 23:05:29 +00:00
|
|
|
{
|
|
|
|
CSfxManager::SfxStart(1094, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
ResetFrame();
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 04:35:49 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::DoSelectionChange(CGuiTableGroup* caller, int userSel)
|
2016-12-16 23:05:29 +00:00
|
|
|
{
|
|
|
|
HandleActiveChange(caller);
|
|
|
|
CSfxManager::SfxStart(1093, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2016-12-18 04:16:04 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::DoFileMenuAdvance(CGuiTableGroup* caller)
|
2016-12-15 22:37:34 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
int userSel = x20_tablegroup_fileselect->GetUserSelection();
|
|
|
|
if (userSel < 3)
|
|
|
|
{
|
|
|
|
if (x8_subMenu == ESubMenu::EraseGame)
|
|
|
|
{
|
|
|
|
const CGameState::GameFileStateInfo* data = x4_saveUI->GetGameData(userSel);
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
x10d_needsExistingToggle = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const CGameState::GameFileStateInfo* data = x4_saveUI->GetGameData(userSel);
|
|
|
|
if (data)
|
|
|
|
x4_saveUI->StartGame(userSel);
|
|
|
|
else
|
|
|
|
x10e_needsNewToggle = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (userSel == 3)
|
|
|
|
{
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
ActivateErase();
|
|
|
|
}
|
|
|
|
else if (userSel == 4)
|
|
|
|
{
|
|
|
|
xc_action = EAction::FusionBonus;
|
|
|
|
}
|
|
|
|
else if (userSel == 5)
|
|
|
|
{
|
|
|
|
xc_action = EAction::SlideShow;
|
|
|
|
}
|
2016-12-15 22:37:34 +00:00
|
|
|
}
|
|
|
|
|
2016-12-18 04:16:04 +00:00
|
|
|
CFrontEndUI::SFileMenuOption CFrontEndUI::SNewFileSelectFrame::FindFileSelectOption(CGuiFrame* frame, int idx)
|
2016-12-15 22:37:34 +00:00
|
|
|
{
|
2016-12-18 04:16:04 +00:00
|
|
|
SFileMenuOption ret;
|
2016-12-16 23:05:29 +00:00
|
|
|
ret.x0_base = frame->FindWidget(hecl::Format("basewidget_file%d", idx).c_str());
|
|
|
|
ret.x4_textpanes[0] = FindTextPanePair(frame, hecl::Format("textpane_filename%d", idx).c_str());
|
|
|
|
ret.x4_textpanes[1] = FindTextPanePair(frame, hecl::Format("textpane_world%d", idx).c_str());
|
|
|
|
ret.x4_textpanes[2] = FindTextPanePair(frame, hecl::Format("textpane_playtime%d", idx).c_str());
|
|
|
|
ret.x4_textpanes[3] = FindTextPanePair(frame, hecl::Format("textpane_date%d", idx).c_str());
|
|
|
|
return ret;
|
|
|
|
}
|
2016-12-15 22:37:34 +00:00
|
|
|
|
2017-01-24 07:41:33 +00:00
|
|
|
void CFrontEndUI::SNewFileSelectFrame::StartTextAnimating(CGuiTextPane* text, const std::u16string& str, float chRate)
|
2016-12-16 23:05:29 +00:00
|
|
|
{
|
|
|
|
text->TextSupport()->SetText(str);
|
|
|
|
text->TextSupport()->SetTypeWriteEffectOptions(true, 0.1f, chRate);
|
2016-12-15 22:37:34 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
CFrontEndUI::SFusionBonusFrame::SFusionBonusFrame()
|
2016-12-15 22:37:34 +00:00
|
|
|
{
|
|
|
|
x4_gbaSupport = std::make_unique<CGBASupport>();
|
|
|
|
xc_gbaScreen = g_SimplePool->GetObj("FRME_GBAScreen");
|
|
|
|
x18_gbaLink = g_SimplePool->GetObj("FRME_GBALink");
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::SetUIText(EUIType tp)
|
2016-12-31 00:51:51 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
int instructions = -1;
|
|
|
|
int yes = -1;
|
|
|
|
int no = -1;
|
2016-12-31 00:51:51 +00:00
|
|
|
|
2017-01-01 06:46:52 +00:00
|
|
|
bool cableVisible = false;
|
|
|
|
bool circleGcVisible = false;
|
|
|
|
bool circleGbaVisible = false;
|
|
|
|
bool circleStartVisible = false;
|
|
|
|
bool pakoutVisible = false;
|
|
|
|
bool gbaScreenVisible = false;
|
|
|
|
bool connectVisible = false;
|
|
|
|
|
|
|
|
switch (tp)
|
|
|
|
{
|
|
|
|
case EUIType::InsertPak:
|
|
|
|
instructions = 73; // Insert Game Pak
|
|
|
|
no = 82;
|
|
|
|
yes = 83;
|
|
|
|
pakoutVisible = true;
|
|
|
|
circleGbaVisible = true;
|
|
|
|
break;
|
|
|
|
case EUIType::ConnectSocket:
|
|
|
|
instructions = 68; // Connect socket
|
|
|
|
no = 82;
|
|
|
|
yes = 83;
|
|
|
|
cableVisible = true;
|
|
|
|
circleGcVisible = true;
|
|
|
|
circleGbaVisible = true;
|
|
|
|
break;
|
|
|
|
case EUIType::PressStartAndSelect:
|
|
|
|
instructions = 74; // Hold start and select
|
|
|
|
no = 82;
|
|
|
|
yes = 83;
|
|
|
|
cableVisible = true;
|
|
|
|
circleStartVisible = true;
|
|
|
|
gbaScreenVisible = true;
|
|
|
|
break;
|
|
|
|
case EUIType::BeginLink:
|
|
|
|
instructions = 75; // Begin link?
|
|
|
|
no = 82;
|
|
|
|
yes = 83;
|
|
|
|
cableVisible = true;
|
|
|
|
gbaScreenVisible = true;
|
|
|
|
break;
|
|
|
|
case EUIType::TurnOffGBA:
|
|
|
|
instructions = 76; // Turn off GBA
|
|
|
|
no = 82;
|
|
|
|
yes = 83;
|
|
|
|
cableVisible = true;
|
|
|
|
gbaScreenVisible = true;
|
|
|
|
circleStartVisible = true;
|
|
|
|
break;
|
|
|
|
case EUIType::Linking:
|
|
|
|
x4_gbaSupport->StartLink();
|
|
|
|
instructions = 72; // Linking
|
|
|
|
cableVisible = true;
|
|
|
|
gbaScreenVisible = true;
|
|
|
|
connectVisible = true;
|
|
|
|
break;
|
|
|
|
case EUIType::LinkFailed:
|
|
|
|
instructions = 69; // Link failed
|
|
|
|
no = 82;
|
|
|
|
yes = 83;
|
|
|
|
cableVisible = true;
|
|
|
|
circleGcVisible = true;
|
|
|
|
circleGbaVisible = true;
|
|
|
|
circleStartVisible = true;
|
|
|
|
gbaScreenVisible = true;
|
|
|
|
break;
|
|
|
|
case EUIType::LinkCompleteOrLinking:
|
|
|
|
yes = 83;
|
|
|
|
instructions = x40_linkInProgress + 71; // Complete or linking
|
|
|
|
cableVisible = true;
|
|
|
|
gbaScreenVisible = true;
|
|
|
|
break;
|
|
|
|
case EUIType::Complete:
|
|
|
|
case EUIType::Cancelled:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-01-24 07:41:33 +00:00
|
|
|
std::u16string instructionsStr;
|
2017-01-01 06:46:52 +00:00
|
|
|
if (instructions != -1)
|
|
|
|
instructionsStr = g_MainStringTable->GetString(instructions);
|
|
|
|
xc_textpane_instructions.SetPairText(instructionsStr);
|
|
|
|
|
2017-01-24 07:41:33 +00:00
|
|
|
std::u16string yesStr;
|
2017-01-01 06:46:52 +00:00
|
|
|
if (yes != -1)
|
|
|
|
yesStr = g_MainStringTable->GetString(yes);
|
|
|
|
x14_textpane_yes->TextSupport()->SetText(yesStr);
|
|
|
|
|
2017-01-24 07:41:33 +00:00
|
|
|
std::u16string noStr;
|
2017-01-01 06:46:52 +00:00
|
|
|
if (no != -1)
|
|
|
|
noStr = g_MainStringTable->GetString(no);
|
|
|
|
x18_textpane_no->TextSupport()->SetText(noStr);
|
|
|
|
|
|
|
|
x1c_model_gc->SetVisibility(true, ETraversalMode::Children);
|
|
|
|
x20_model_gba->SetVisibility(true, ETraversalMode::Children);
|
|
|
|
x24_model_cable->SetVisibility(cableVisible, ETraversalMode::Children);
|
|
|
|
x28_model_circlegcport->SetVisibility(circleGcVisible, ETraversalMode::Children);
|
|
|
|
x2c_model_circlegbaport->SetVisibility(circleGbaVisible, ETraversalMode::Children);
|
|
|
|
x30_model_circlestartselect->SetVisibility(circleStartVisible, ETraversalMode::Children);
|
|
|
|
x34_model_pakout->SetVisibility(pakoutVisible, ETraversalMode::Children);
|
|
|
|
x38_model_gbascreen->SetVisibility(gbaScreenVisible, ETraversalMode::Children);
|
|
|
|
x3c_model_connect->SetVisibility(connectVisible, ETraversalMode::Children);
|
|
|
|
|
|
|
|
x0_uiType = tp;
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
static const CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType NextLinkUI[] =
|
2017-01-01 06:46:52 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::ConnectSocket,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::PressStartAndSelect,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::BeginLink,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Linking,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Empty,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::TurnOffGBA,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Complete,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::InsertPak,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Empty,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Empty
|
2017-01-01 06:46:52 +00:00
|
|
|
};
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
static const CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType PrevLinkUI[] =
|
|
|
|
{
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Cancelled,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Cancelled,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Cancelled,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Cancelled,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Empty,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Cancelled,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Empty,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Cancelled,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Empty,
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EUIType::Empty
|
2017-01-01 06:46:52 +00:00
|
|
|
};
|
2016-12-31 00:51:51 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::EAction
|
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::ProcessUserInput(const CFinalInput &input, bool linkInProgress)
|
2016-12-31 00:51:51 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
if (linkInProgress != x40_linkInProgress)
|
|
|
|
{
|
|
|
|
x40_linkInProgress = linkInProgress;
|
|
|
|
SetUIText(x0_uiType);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (x0_uiType)
|
|
|
|
{
|
|
|
|
case EUIType::InsertPak:
|
|
|
|
case EUIType::ConnectSocket:
|
|
|
|
case EUIType::PressStartAndSelect:
|
|
|
|
case EUIType::BeginLink:
|
|
|
|
case EUIType::LinkFailed:
|
|
|
|
case EUIType::LinkCompleteOrLinking:
|
|
|
|
case EUIType::TurnOffGBA:
|
|
|
|
if (input.PA())
|
|
|
|
{
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
SetUIText(NextLinkUI[int(x0_uiType)]);
|
|
|
|
}
|
|
|
|
else if (input.PB())
|
|
|
|
{
|
|
|
|
EUIType prevUi = PrevLinkUI[int(x0_uiType)];
|
|
|
|
if (prevUi == EUIType::Empty)
|
|
|
|
break;
|
|
|
|
CSfxManager::SfxStart(1094, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
SetUIText(prevUi);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case EUIType::Linking:
|
|
|
|
if (x4_gbaSupport->GetPhase() == CGBASupport::EPhase::Complete)
|
|
|
|
{
|
|
|
|
if (x4_gbaSupport->IsFusionLinked())
|
|
|
|
g_GameState->SystemOptions().SetPlayerLinkedFusion(true);
|
|
|
|
if (x4_gbaSupport->IsFusionBeat())
|
|
|
|
g_GameState->SystemOptions().SetPlayerBeatFusion(true);
|
|
|
|
if (x4_gbaSupport->IsFusionLinked())
|
|
|
|
{
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
SetUIText(EUIType::LinkCompleteOrLinking);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CSfxManager::SfxStart(1094, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
SetUIText(EUIType::LinkFailed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case EUIType::Complete:
|
|
|
|
return EAction::Complete;
|
|
|
|
case EUIType::Cancelled:
|
|
|
|
return EAction::Cancelled;
|
|
|
|
default: break;
|
|
|
|
}
|
2016-12-31 00:51:51 +00:00
|
|
|
|
2017-01-01 06:46:52 +00:00
|
|
|
return EAction::None;
|
2016-12-31 00:51:51 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::Update(float dt)
|
2016-12-31 00:51:51 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
x4_gbaSupport->Update(dt);
|
|
|
|
x8_frme->Update(dt);
|
2016-12-31 00:51:51 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::FinishedLoading()
|
2016-12-31 00:51:51 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
xc_textpane_instructions = FindTextPanePair(x8_frme, "textpane_instructions");
|
|
|
|
x14_textpane_yes = static_cast<CGuiTextPane*>(x8_frme->FindWidget("textpane_yes"));
|
|
|
|
x18_textpane_no = static_cast<CGuiTextPane*>(x8_frme->FindWidget("textpane_no"));
|
|
|
|
x1c_model_gc = static_cast<CGuiModel*>(x8_frme->FindWidget("model_gc"));
|
|
|
|
x20_model_gba = static_cast<CGuiModel*>(x8_frme->FindWidget("model_gba"));
|
|
|
|
x24_model_cable = static_cast<CGuiModel*>(x8_frme->FindWidget("model_cable"));
|
|
|
|
x28_model_circlegcport = static_cast<CGuiModel*>(x8_frme->FindWidget("model_circlegcport"));
|
|
|
|
x2c_model_circlegbaport = static_cast<CGuiModel*>(x8_frme->FindWidget("model_circlegbaport"));
|
|
|
|
x30_model_circlestartselect = static_cast<CGuiModel*>(x8_frme->FindWidget("model_circlestartselect"));
|
|
|
|
x34_model_pakout = static_cast<CGuiModel*>(x8_frme->FindWidget("model_pakout"));
|
|
|
|
x38_model_gbascreen = static_cast<CGuiModel*>(x8_frme->FindWidget("model_gbascreen"));
|
|
|
|
x3c_model_connect = static_cast<CGuiModel*>(x8_frme->FindWidget("model_connect"));
|
|
|
|
SetUIText(EUIType::InsertPak);
|
2016-12-31 00:51:51 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::Draw()
|
2016-12-31 00:51:51 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
x8_frme->Draw(CGuiWidgetDrawParms::Default);
|
2016-12-31 00:51:51 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
CFrontEndUI::SFusionBonusFrame::SGBALinkFrame::SGBALinkFrame(CGuiFrame* linkFrame,
|
2017-01-01 06:46:52 +00:00
|
|
|
CGBASupport* support,
|
|
|
|
bool linkInProgress)
|
|
|
|
: x4_gbaSupport(support), x8_frme(linkFrame), x40_linkInProgress(linkInProgress)
|
2016-12-31 00:51:51 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
support->InitializeSupport();
|
|
|
|
FinishedLoading();
|
2016-12-31 00:51:51 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::FinishedLoading()
|
2016-12-15 22:37:34 +00:00
|
|
|
{
|
2016-12-16 04:35:49 +00:00
|
|
|
x28_tablegroup_options = static_cast<CGuiTableGroup*>(x24_loadedFrame->FindWidget("tablegroup_options"));
|
|
|
|
x2c_tablegroup_fusionsuit = static_cast<CGuiTableGroup*>(x24_loadedFrame->FindWidget("tablegroup_fusionsuit"));
|
|
|
|
x30_textpane_instructions = FindTextPanePair(x24_loadedFrame, "textpane_instructions");
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
FindAndSetPairText(x24_loadedFrame, "textpane_nes", g_MainStringTable->GetString(66));
|
|
|
|
FindAndSetPairText(x24_loadedFrame, "textpane_fusionsuit", g_MainStringTable->GetString(63));
|
|
|
|
FindAndSetPairText(x24_loadedFrame, "textpane_fusionsuitno", g_MainStringTable->GetString(65));
|
|
|
|
FindAndSetPairText(x24_loadedFrame, "textpane_fusionsuityes", g_MainStringTable->GetString(64));
|
|
|
|
FindAndSetPairText(x24_loadedFrame, "textpane_title", g_MainStringTable->GetString(100));
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
static_cast<CGuiTextPane*>(x24_loadedFrame->FindWidget("textpane_proceed"))->
|
|
|
|
TextSupport()->SetText(g_MainStringTable->GetString(85));
|
|
|
|
static_cast<CGuiTextPane*>(x24_loadedFrame->FindWidget("textpane_cancel"))->
|
|
|
|
TextSupport()->SetText(g_MainStringTable->GetString(82));
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
x2c_tablegroup_fusionsuit->SetIsActive(false);
|
|
|
|
x2c_tablegroup_fusionsuit->SetIsVisible(false);
|
2017-01-09 03:44:00 +00:00
|
|
|
x2c_tablegroup_fusionsuit->SetVertical(false);
|
2017-01-01 06:46:52 +00:00
|
|
|
x2c_tablegroup_fusionsuit->SetUserSelection(g_GameState->SystemOptions().GetPlayerFusionSuitActive());
|
2016-12-16 04:35:49 +00:00
|
|
|
|
|
|
|
SetTableColors(x28_tablegroup_options);
|
|
|
|
SetTableColors(x2c_tablegroup_fusionsuit);
|
|
|
|
|
|
|
|
x28_tablegroup_options->SetMenuAdvanceCallback(
|
2017-01-09 03:44:00 +00:00
|
|
|
std::bind(&SFusionBonusFrame::DoAdvance, this, std::placeholders::_1));
|
2016-12-16 04:35:49 +00:00
|
|
|
x28_tablegroup_options->SetMenuSelectionChangeCallback(
|
2017-01-09 03:44:00 +00:00
|
|
|
std::bind(&SFusionBonusFrame::DoSelectionChange, this, std::placeholders::_1, std::placeholders::_2));
|
2016-12-16 04:35:49 +00:00
|
|
|
x28_tablegroup_options->SetMenuCancelCallback(
|
2017-01-09 03:44:00 +00:00
|
|
|
std::bind(&SFusionBonusFrame::DoCancel, this, std::placeholders::_1));
|
2016-12-16 04:35:49 +00:00
|
|
|
x2c_tablegroup_fusionsuit->SetMenuSelectionChangeCallback(
|
2017-01-09 03:44:00 +00:00
|
|
|
std::bind(&SFusionBonusFrame::DoSelectionChange, this, std::placeholders::_1, std::placeholders::_2));
|
2016-12-15 22:37:34 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
bool CFrontEndUI::SFusionBonusFrame::PumpLoad()
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
|
|
|
if (x24_loadedFrame)
|
|
|
|
return true;
|
|
|
|
if (!xc_gbaScreen.IsLoaded())
|
|
|
|
return false;
|
|
|
|
if (!x18_gbaLink.IsLoaded())
|
|
|
|
return false;
|
|
|
|
if (!x4_gbaSupport->IsReady())
|
|
|
|
return false;
|
|
|
|
if (!xc_gbaScreen->GetIsFinishedLoading())
|
|
|
|
return false;
|
|
|
|
x24_loadedFrame = xc_gbaScreen.GetObj();
|
|
|
|
FinishedLoading();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::SetTableColors(CGuiTableGroup* tbgp) const
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
|
|
|
tbgp->SetColors(zeus::CColor::skWhite,
|
|
|
|
zeus::CColor{0.627450f, 0.627450f, 0.627450f, 0.784313f});
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::Update(float dt, CSaveUI* saveUI)
|
2017-01-01 06:46:52 +00:00
|
|
|
{
|
|
|
|
bool doUpdate = false;
|
|
|
|
if (saveUI)
|
2017-01-09 03:44:00 +00:00
|
|
|
if (saveUI->GetUIType() == CSaveUI::EUIType::SaveReady)
|
2017-01-01 06:46:52 +00:00
|
|
|
doUpdate = true;
|
|
|
|
|
|
|
|
if (doUpdate != x38_lastDoUpdate)
|
|
|
|
{
|
|
|
|
x38_lastDoUpdate = doUpdate;
|
|
|
|
ResetCompletionFlags();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x0_gbaLinkFrame)
|
|
|
|
x0_gbaLinkFrame->Update(dt);
|
|
|
|
else if (x24_loadedFrame)
|
|
|
|
x24_loadedFrame->Update(dt);
|
|
|
|
|
|
|
|
bool showFusionSuit = g_GameState->SystemOptions().GetPlayerLinkedFusion() &&
|
|
|
|
g_GameState->SystemOptions().GetPlayerBeatNormalMode();
|
|
|
|
bool showFusionSuitProceed = showFusionSuit && x28_tablegroup_options->GetUserSelection() == 1;
|
|
|
|
x2c_tablegroup_fusionsuit->SetIsActive(showFusionSuitProceed);
|
|
|
|
x2c_tablegroup_fusionsuit->SetIsVisible(showFusionSuitProceed);
|
|
|
|
x24_loadedFrame->FindWidget("textpane_proceed")->SetIsVisible(showFusionSuitProceed);
|
|
|
|
|
2017-01-24 07:41:33 +00:00
|
|
|
std::u16string instructionStr;
|
2017-01-01 06:46:52 +00:00
|
|
|
if (x28_tablegroup_options->GetUserSelection() == 1)
|
|
|
|
{
|
|
|
|
/* Fusion Suit */
|
|
|
|
if (x3a_mpNotComplete)
|
|
|
|
instructionStr = g_MainStringTable->GetString(80); // MP not complete
|
|
|
|
else if (!showFusionSuit)
|
|
|
|
instructionStr = g_MainStringTable->GetString(78); // To enable fusion suit
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* NES Metroid */
|
|
|
|
if (x39_fusionNotComplete)
|
|
|
|
instructionStr = g_MainStringTable->GetString(79); // You have not completed fusion
|
|
|
|
else if (!g_GameState->SystemOptions().GetPlayerBeatFusion())
|
|
|
|
instructionStr = g_MainStringTable->GetString(77); // To play NES Metroid
|
|
|
|
}
|
|
|
|
|
|
|
|
x30_textpane_instructions.SetPairText(instructionStr);
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
CFrontEndUI::SFusionBonusFrame::EAction
|
|
|
|
CFrontEndUI::SFusionBonusFrame::ProcessUserInput(const CFinalInput& input, CSaveUI* sui)
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
x8_action = EAction::None;
|
|
|
|
|
|
|
|
if (sui)
|
|
|
|
sui->ProcessUserInput(input);
|
|
|
|
|
|
|
|
if (x38_lastDoUpdate)
|
|
|
|
{
|
|
|
|
if (x0_gbaLinkFrame)
|
|
|
|
{
|
|
|
|
SGBALinkFrame::EAction action = x0_gbaLinkFrame->ProcessUserInput(input, sui);
|
|
|
|
if (action != SGBALinkFrame::EAction::None)
|
|
|
|
{
|
|
|
|
x0_gbaLinkFrame.reset();
|
|
|
|
if (action == SGBALinkFrame::EAction::Complete)
|
|
|
|
{
|
|
|
|
if (x28_tablegroup_options->GetUserSelection() == 0 &&
|
|
|
|
!g_GameState->SystemOptions().GetPlayerBeatFusion())
|
|
|
|
x39_fusionNotComplete = true;
|
|
|
|
else if (sui)
|
|
|
|
sui->SaveNESState();
|
|
|
|
else if (x24_loadedFrame)
|
|
|
|
x24_loadedFrame->ProcessUserInput(input);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return x8_action;
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::Draw() const
|
2016-12-18 04:16:04 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
if (!x38_lastDoUpdate)
|
2016-12-31 00:51:51 +00:00
|
|
|
return;
|
|
|
|
if (x0_gbaLinkFrame)
|
2017-01-01 06:46:52 +00:00
|
|
|
x0_gbaLinkFrame->Draw();
|
|
|
|
else if (x24_loadedFrame)
|
|
|
|
x24_loadedFrame->Draw(CGuiWidgetDrawParms::Default);
|
2016-12-18 04:16:04 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::DoCancel(CGuiTableGroup* caller)
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
if (x39_fusionNotComplete || x3a_mpNotComplete)
|
|
|
|
{
|
|
|
|
CSfxManager::SfxStart(1094, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x8_action = EAction::GoBack;
|
|
|
|
x28_tablegroup_options->SetUserSelection(0);
|
|
|
|
x2c_tablegroup_fusionsuit->SetIsActive(false);
|
2017-01-24 07:41:33 +00:00
|
|
|
x30_textpane_instructions.SetPairText(u"");
|
2017-01-01 06:46:52 +00:00
|
|
|
SetTableColors(x28_tablegroup_options);
|
|
|
|
}
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::DoSelectionChange(CGuiTableGroup* caller, int userSel)
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
if (caller == x28_tablegroup_options)
|
|
|
|
{
|
|
|
|
CSfxManager::SfxStart(1093, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
x3a_mpNotComplete = false;
|
|
|
|
x39_fusionNotComplete = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CSfxManager::SfxStart(1095, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
bool fusionActive = x2c_tablegroup_fusionsuit->GetUserSelection() == 1;
|
|
|
|
g_GameState->SystemOptions().SetPlayerFusionSuitActive(fusionActive);
|
|
|
|
g_GameState->GetPlayerState()->SetIsFusionEnabled(fusionActive);
|
|
|
|
}
|
|
|
|
SetTableColors(caller);
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFusionBonusFrame::DoAdvance(CGuiTableGroup* caller)
|
2016-12-15 22:37:34 +00:00
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
switch (x28_tablegroup_options->GetUserSelection())
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
/* Fusion Suit */
|
|
|
|
if (x3a_mpNotComplete)
|
|
|
|
{
|
|
|
|
x3a_mpNotComplete = false;
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
}
|
|
|
|
else if (g_GameState->SystemOptions().GetPlayerBeatNormalMode())
|
|
|
|
{
|
|
|
|
if (g_GameState->SystemOptions().GetPlayerLinkedFusion())
|
|
|
|
return;
|
|
|
|
x0_gbaLinkFrame = std::make_unique<SGBALinkFrame>(x18_gbaLink.GetObj(), x4_gbaSupport.get(), false);
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x3a_mpNotComplete = true;
|
|
|
|
CSfxManager::SfxStart(1094, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
/* NES Metroid */
|
|
|
|
if (x39_fusionNotComplete)
|
|
|
|
{
|
|
|
|
x39_fusionNotComplete = false;
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
}
|
|
|
|
else if (g_GameState->SystemOptions().GetPlayerBeatFusion())
|
|
|
|
{
|
|
|
|
x8_action = EAction::PlayNESMetroid;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x0_gbaLinkFrame = std::make_unique<SGBALinkFrame>(x18_gbaLink.GetObj(), x4_gbaSupport.get(), false);
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
2016-12-15 22:37:34 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 07:41:33 +00:00
|
|
|
void CFrontEndUI::SGuiTextPair::SetPairText(const std::u16string& str)
|
2016-12-14 22:56:59 +00:00
|
|
|
{
|
|
|
|
x0_panes[0]->TextSupport()->SetText(str);
|
|
|
|
x0_panes[1]->TextSupport()->SetText(str);
|
|
|
|
}
|
|
|
|
|
2016-12-15 22:37:34 +00:00
|
|
|
CFrontEndUI::SGuiTextPair CFrontEndUI::FindTextPanePair(CGuiFrame* frame, const char* name)
|
|
|
|
{
|
|
|
|
SGuiTextPair ret;
|
|
|
|
ret.x0_panes[0] = static_cast<CGuiTextPane*>(frame->FindWidget(name));
|
|
|
|
ret.x0_panes[1] = static_cast<CGuiTextPane*>(frame->FindWidget(hecl::Format("%sb", name).c_str()));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-01-24 07:41:33 +00:00
|
|
|
void CFrontEndUI::FindAndSetPairText(CGuiFrame* frame, const char* name, const std::u16string& str)
|
2016-12-15 22:37:34 +00:00
|
|
|
{
|
|
|
|
CGuiTextPane* w1 = static_cast<CGuiTextPane*>(frame->FindWidget(name));
|
|
|
|
w1->TextSupport()->SetText(str);
|
|
|
|
CGuiTextPane* w2 = static_cast<CGuiTextPane*>(frame->FindWidget(hecl::Format("%sb", name).c_str()));
|
|
|
|
w2->TextSupport()->SetText(str);
|
|
|
|
}
|
|
|
|
|
2016-12-14 22:56:59 +00:00
|
|
|
void CFrontEndUI::SFrontEndFrame::FinishedLoading()
|
|
|
|
{
|
|
|
|
x18_tablegroup_mainmenu = static_cast<CGuiTableGroup*>(x14_loadedFrme->FindWidget("tablegroup_mainmenu"));
|
|
|
|
x1c_gbaPair = FindTextPanePair(x14_loadedFrme, "textpane_gba");
|
|
|
|
x1c_gbaPair.SetPairText(g_MainStringTable->GetString(37));
|
|
|
|
x24_cheatPair = FindTextPanePair(x14_loadedFrme, "textpane_cheats");
|
|
|
|
x24_cheatPair.SetPairText(g_MainStringTable->GetString(96));
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-14 22:56:59 +00:00
|
|
|
FindAndSetPairText(x14_loadedFrme, "textpane_start", g_MainStringTable->GetString(67));
|
|
|
|
FindAndSetPairText(x14_loadedFrme, "textpane_options", g_MainStringTable->GetString(94));
|
|
|
|
FindAndSetPairText(x14_loadedFrme, "textpane_title", g_MainStringTable->GetString(98));
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-14 22:56:59 +00:00
|
|
|
CGuiTextPane* proceed = static_cast<CGuiTextPane*>(x14_loadedFrme->FindWidget("textpane_proceed"));
|
|
|
|
if (proceed)
|
|
|
|
proceed->TextSupport()->SetText(g_MainStringTable->GetString(85));
|
|
|
|
|
|
|
|
x18_tablegroup_mainmenu->SetMenuAdvanceCallback(
|
2016-12-16 04:35:49 +00:00
|
|
|
std::bind(&SFrontEndFrame::DoAdvance, this, std::placeholders::_1));
|
2016-12-14 22:56:59 +00:00
|
|
|
x18_tablegroup_mainmenu->SetMenuSelectionChangeCallback(
|
2017-01-09 03:44:00 +00:00
|
|
|
std::bind(&SFrontEndFrame::DoSelectionChange, this, std::placeholders::_1, std::placeholders::_2));
|
2016-12-14 22:56:59 +00:00
|
|
|
x18_tablegroup_mainmenu->SetMenuCancelCallback(
|
2016-12-16 04:35:49 +00:00
|
|
|
std::bind(&SFrontEndFrame::DoCancel, this, std::placeholders::_1));
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CFrontEndUI::SFrontEndFrame::PumpLoad()
|
|
|
|
{
|
|
|
|
if (x14_loadedFrme)
|
|
|
|
return true;
|
|
|
|
if (x8_frme.IsLoaded())
|
|
|
|
{
|
|
|
|
if (CGuiFrame* frme = x8_frme.GetObj())
|
|
|
|
{
|
|
|
|
if (frme->GetIsFinishedLoading())
|
|
|
|
{
|
|
|
|
x14_loadedFrme = frme;
|
|
|
|
FinishedLoading();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFrontEndFrame::Update(float dt)
|
|
|
|
{
|
2017-01-10 07:15:49 +00:00
|
|
|
CGuiTextPane* imageGallery =
|
|
|
|
static_cast<CGuiTextPane*>(x18_tablegroup_mainmenu->GetWorkerWidget(3));
|
|
|
|
|
|
|
|
if (CSlideShow::SlideShowGalleryFlags())
|
|
|
|
{
|
|
|
|
imageGallery->SetIsSelectable(true);
|
|
|
|
x24_cheatPair.x0_panes[0]->TextSupport()->SetFontColor(zeus::CColor::skWhite);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
imageGallery->SetIsSelectable(false);
|
|
|
|
zeus::CColor color = zeus::CColor::skGrey;
|
|
|
|
color.a = 0.5f;
|
|
|
|
x24_cheatPair.x0_panes[0]->TextSupport()->SetFontColor(color);
|
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
|
2017-01-10 07:15:49 +00:00
|
|
|
x14_loadedFrme->Update(dt);
|
2017-01-09 03:44:00 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 06:37:01 +00:00
|
|
|
CFrontEndUI::SFrontEndFrame::EAction
|
|
|
|
CFrontEndUI::SFrontEndFrame::ProcessUserInput(const CFinalInput& input)
|
2016-12-14 22:56:59 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
x4_action = EAction::None;
|
2016-12-30 06:37:01 +00:00
|
|
|
x14_loadedFrme->ProcessUserInput(input);
|
|
|
|
return x4_action;
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2016-12-18 04:16:04 +00:00
|
|
|
void CFrontEndUI::SFrontEndFrame::Draw() const
|
|
|
|
{
|
2016-12-30 06:37:01 +00:00
|
|
|
x14_loadedFrme->Draw(CGuiWidgetDrawParms::Default);
|
2016-12-18 04:16:04 +00:00
|
|
|
}
|
|
|
|
|
2017-01-10 07:15:49 +00:00
|
|
|
void CFrontEndUI::SFrontEndFrame::HandleActiveChange(CGuiTableGroup* active)
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
2017-01-10 07:15:49 +00:00
|
|
|
active->SetColors(zeus::CColor::skWhite,
|
|
|
|
zeus::CColor{0.627450f, 0.627450f, 0.627450f, 0.784313f});
|
|
|
|
}
|
2016-12-16 04:35:49 +00:00
|
|
|
|
2017-01-10 07:15:49 +00:00
|
|
|
void CFrontEndUI::SFrontEndFrame::DoCancel(CGuiTableGroup* caller)
|
|
|
|
{
|
|
|
|
/* Intentionally empty */
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::SFrontEndFrame::DoSelectionChange(CGuiTableGroup* caller, int userSel)
|
2016-12-16 04:35:49 +00:00
|
|
|
{
|
2017-01-10 07:15:49 +00:00
|
|
|
CSfxManager::SfxStart(1093, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
HandleActiveChange(caller);
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 23:05:29 +00:00
|
|
|
void CFrontEndUI::SFrontEndFrame::DoAdvance(CGuiTableGroup* caller)
|
2016-12-14 22:56:59 +00:00
|
|
|
{
|
2017-01-10 07:15:49 +00:00
|
|
|
switch (x18_tablegroup_mainmenu->GetUserSelection())
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
CSfxManager::SfxStart(FETransitionForwardSFX[x0_rnd][0], 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
CSfxManager::SfxStart(FETransitionForwardSFX[x0_rnd][1], 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
x4_action = EAction::StartGame;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
x4_action = EAction::FusionBonus;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
x4_action = EAction::GameOptions;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
PlayAdvanceSfx();
|
|
|
|
x4_action = EAction::SlideShow;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CFrontEndUI::SFrontEndFrame::SFrontEndFrame(u32 rnd)
|
|
|
|
: x0_rnd(rnd)
|
|
|
|
{
|
|
|
|
x8_frme = g_SimplePool->GetObj("FRME_FrontEndPL");
|
|
|
|
}
|
|
|
|
|
2016-12-30 06:37:01 +00:00
|
|
|
CFrontEndUI::SNesEmulatorFrame::SNesEmulatorFrame()
|
2016-12-14 22:56:59 +00:00
|
|
|
{
|
|
|
|
x4_nesEmu = std::make_unique<CNESEmulator>();
|
|
|
|
|
|
|
|
const SObjectTag* deface = g_ResFactory->GetResourceIdByName("FONT_Deface14B");
|
|
|
|
CGuiTextProperties props(false, true, EJustification::Left,
|
|
|
|
EVerticalJustification::Center,
|
|
|
|
ETextDirection::Horizontal);
|
|
|
|
xc_textSupport = std::make_unique<CGuiTextSupport>(deface->id, props, zeus::CColor::skWhite,
|
|
|
|
zeus::CColor::skBlack, zeus::CColor::skWhite,
|
2017-01-29 03:58:16 +00:00
|
|
|
0, 0, g_SimplePool, CGuiWidget::EGuiModelDrawFlags::Alpha);
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 06:37:01 +00:00
|
|
|
void CFrontEndUI::SNesEmulatorFrame::SetMode(EMode mode)
|
|
|
|
{
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case EMode::Emulator:
|
|
|
|
x8_quitScreen.reset();
|
|
|
|
break;
|
2016-12-31 00:51:51 +00:00
|
|
|
case EMode::SaveProgress:
|
|
|
|
x8_quitScreen = std::make_unique<CQuitScreen>(EQuitType::SaveProgress);
|
2016-12-30 06:37:01 +00:00
|
|
|
break;
|
|
|
|
case EMode::ContinuePlaying:
|
|
|
|
x8_quitScreen = std::make_unique<CQuitScreen>(EQuitType::ContinuePlaying);
|
|
|
|
break;
|
2016-12-31 00:51:51 +00:00
|
|
|
case EMode::QuitNESMetroid:
|
|
|
|
x8_quitScreen = std::make_unique<CQuitScreen>(EQuitType::QuitNESMetroid);
|
2016-12-30 06:37:01 +00:00
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
x0_mode = mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SNesEmulatorFrame::ProcessUserInput(const CFinalInput& input, CSaveUI* sui)
|
|
|
|
{
|
|
|
|
bool processInput = true;
|
2017-01-09 03:44:00 +00:00
|
|
|
if (sui && sui->GetUIType() != CSaveUI::EUIType::SaveReady)
|
2016-12-30 06:37:01 +00:00
|
|
|
processInput = false;
|
|
|
|
if (sui)
|
|
|
|
sui->ProcessUserInput(input);
|
|
|
|
if (!processInput)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (x0_mode)
|
|
|
|
{
|
|
|
|
case EMode::Emulator:
|
|
|
|
x4_nesEmu->ProcessUserInput(input, 4);
|
|
|
|
if (input.ControllerIdx() == 0 && input.PL())
|
2016-12-31 00:51:51 +00:00
|
|
|
SetMode(EMode::QuitNESMetroid);
|
2016-12-30 06:37:01 +00:00
|
|
|
break;
|
|
|
|
case EMode::SaveProgress:
|
2016-12-31 00:51:51 +00:00
|
|
|
case EMode::ContinuePlaying:
|
|
|
|
case EMode::QuitNESMetroid:
|
2016-12-30 06:37:01 +00:00
|
|
|
x8_quitScreen->ProcessUserInput(input);
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-31 00:51:51 +00:00
|
|
|
bool CFrontEndUI::SNesEmulatorFrame::Update(float dt, CSaveUI* saveUi)
|
2016-12-15 22:37:34 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
bool doUpdate = (saveUi && saveUi->GetUIType() != CSaveUI::EUIType::SaveReady) ? false : true;
|
2016-12-15 22:37:34 +00:00
|
|
|
x10_remTime = std::max(x10_remTime - dt, 0.f);
|
|
|
|
|
|
|
|
zeus::CColor geomCol(zeus::CColor::skWhite);
|
|
|
|
geomCol.a = std::min(x10_remTime, 1.f);
|
|
|
|
xc_textSupport->SetGeometryColor(geomCol);
|
|
|
|
if (xc_textSupport->GetIsTextSupportFinishedLoading())
|
|
|
|
{
|
2016-12-31 00:51:51 +00:00
|
|
|
xc_textSupport->AutoSetExtent();
|
|
|
|
xc_textSupport->ClearRenderBuffer();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!doUpdate)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (x0_mode)
|
|
|
|
{
|
|
|
|
case EMode::Emulator:
|
|
|
|
{
|
|
|
|
x4_nesEmu->Update();
|
|
|
|
if (!x4_nesEmu->WantsQuit())
|
|
|
|
x14_emulationSuspended = false;
|
|
|
|
if (x4_nesEmu->WantsQuit() && !x14_emulationSuspended)
|
|
|
|
{
|
|
|
|
x14_emulationSuspended = true;
|
|
|
|
if (saveUi && !saveUi->IsSavingDisabled())
|
|
|
|
{
|
|
|
|
SetMode(EMode::SaveProgress);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
SetMode(EMode::ContinuePlaying);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (x4_nesEmu->WantsLoad() && saveUi)
|
|
|
|
x4_nesEmu->LoadState(g_GameState->SystemOptions().GetNESState());
|
|
|
|
break;
|
|
|
|
}
|
2016-12-15 22:37:34 +00:00
|
|
|
|
2016-12-31 00:51:51 +00:00
|
|
|
case EMode::SaveProgress:
|
|
|
|
{
|
|
|
|
if (saveUi)
|
|
|
|
{
|
|
|
|
EQuitAction action = x8_quitScreen->Update(dt);
|
|
|
|
if (action == EQuitAction::Yes)
|
|
|
|
{
|
|
|
|
memmove(g_GameState->SystemOptions().GetNESState(), x4_nesEmu->GetSaveState(), 18);
|
|
|
|
saveUi->SaveNESState();
|
|
|
|
SetMode(EMode::ContinuePlaying);
|
|
|
|
}
|
|
|
|
else if (action == EQuitAction::No)
|
|
|
|
SetMode(EMode::ContinuePlaying);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
SetMode(EMode::ContinuePlaying);
|
|
|
|
break;
|
2016-12-15 22:37:34 +00:00
|
|
|
}
|
2016-12-31 00:51:51 +00:00
|
|
|
|
|
|
|
case EMode::ContinuePlaying:
|
|
|
|
{
|
|
|
|
EQuitAction action = x8_quitScreen->Update(dt);
|
|
|
|
if (action == EQuitAction::Yes)
|
|
|
|
SetMode(EMode::Emulator);
|
|
|
|
else if (action == EQuitAction::No)
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMode::QuitNESMetroid:
|
|
|
|
{
|
|
|
|
EQuitAction action = x8_quitScreen->Update(dt);
|
|
|
|
if (action == EQuitAction::Yes)
|
|
|
|
return true;
|
|
|
|
else if (action == EQuitAction::No)
|
|
|
|
SetMode(EMode::Emulator);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
2016-12-21 19:27:15 +00:00
|
|
|
return false;
|
2016-12-15 22:37:34 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 06:37:01 +00:00
|
|
|
void CFrontEndUI::SNesEmulatorFrame::Draw(CSaveUI* saveUi) const
|
2016-12-18 04:16:04 +00:00
|
|
|
{
|
2016-12-31 00:51:51 +00:00
|
|
|
zeus::CColor mulColor = zeus::CColor::skWhite;
|
2017-01-09 03:44:00 +00:00
|
|
|
bool doDraw = (saveUi && saveUi->GetUIType() != CSaveUI::EUIType::SaveReady) ? false : true;
|
2016-12-31 00:51:51 +00:00
|
|
|
|
|
|
|
if (doDraw)
|
|
|
|
mulColor = zeus::CColor::skBlack;
|
|
|
|
else if (x8_quitScreen)
|
|
|
|
mulColor = zeus::CColor{0.376470f, 0.376470f, 0.376470f, 1.f};
|
|
|
|
|
|
|
|
x4_nesEmu->Draw(mulColor, x15_enableFiltering);
|
|
|
|
if (!doDraw && x8_quitScreen)
|
|
|
|
x8_quitScreen->Draw();
|
2016-12-18 04:16:04 +00:00
|
|
|
|
2016-12-31 00:51:51 +00:00
|
|
|
if (x10_remTime >= 7.5f)
|
|
|
|
return;
|
|
|
|
if (x10_remTime <= 0.f)
|
|
|
|
return;
|
|
|
|
if (xc_textSupport->GetIsTextSupportFinishedLoading())
|
|
|
|
{
|
|
|
|
CGraphics::SetModelMatrix(zeus::CTransform::Translate(-280.f, 0.f, -160.f));
|
|
|
|
xc_textSupport->Render();
|
|
|
|
}
|
2016-12-18 04:16:04 +00:00
|
|
|
}
|
|
|
|
|
2016-12-14 22:56:59 +00:00
|
|
|
CFrontEndUI::SOptionsFrontEndFrame::SOptionsFrontEndFrame()
|
|
|
|
{
|
|
|
|
x4_frme = g_SimplePool->GetObj("FRME_OptionsFrontEnd");
|
|
|
|
x10_pauseScreen = g_SimplePool->GetObj("STRG_PauseScreen");
|
2017-01-10 07:15:49 +00:00
|
|
|
x134_24_visible = true;
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
|
|
|
|
2017-01-10 07:15:49 +00:00
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::DoSliderChange(CGuiSliderGroup* caller, float value)
|
|
|
|
{
|
2017-01-13 00:16:26 +00:00
|
|
|
if (x28_tablegroup_rightmenu->GetIsActive())
|
|
|
|
{
|
|
|
|
int leftSel = x24_tablegroup_leftmenu->GetUserSelection();
|
|
|
|
int rightSel = x28_tablegroup_rightmenu->GetUserSelection();
|
|
|
|
const auto& optionCategory = GameOptionsRegistry[leftSel];
|
|
|
|
const SGameOption& option = optionCategory.second[rightSel];
|
|
|
|
CGameOptions::SetOption(option.option, caller->GetGurVal());
|
|
|
|
}
|
2017-01-10 07:15:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::DoMenuCancel(CGuiTableGroup* caller)
|
|
|
|
{
|
2017-01-13 00:16:26 +00:00
|
|
|
if (x28_tablegroup_rightmenu == caller)
|
|
|
|
{
|
|
|
|
DeactivateRightMenu();
|
|
|
|
x24_tablegroup_leftmenu->SetIsActive(true);
|
|
|
|
x28_tablegroup_rightmenu->SetIsActive(false);
|
|
|
|
x28_tablegroup_rightmenu->SetUserSelection(0);
|
|
|
|
SetTableColors(x28_tablegroup_rightmenu);
|
|
|
|
CSfxManager::SfxStart(1094, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
2017-01-10 07:15:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::DoMenuSelectionChange(CGuiTableGroup* caller, int sel)
|
|
|
|
{
|
2017-01-13 00:16:26 +00:00
|
|
|
SetTableColors(caller);
|
|
|
|
if (x24_tablegroup_leftmenu == caller)
|
|
|
|
{
|
|
|
|
SetRightUIText();
|
|
|
|
CSfxManager::SfxStart(1093, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
|
|
|
else if (x28_tablegroup_rightmenu == caller)
|
|
|
|
{
|
|
|
|
HandleRightSelectionChange();
|
|
|
|
CSfxManager::SfxStart(1093, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
|
|
|
else if (x2c_tablegroup_double == caller || x30_tablegroup_triple == caller)
|
|
|
|
{
|
|
|
|
if (x28_tablegroup_rightmenu->GetIsActive())
|
|
|
|
{
|
|
|
|
int leftSel = x24_tablegroup_leftmenu->GetUserSelection();
|
|
|
|
int rightSel = x28_tablegroup_rightmenu->GetUserSelection();
|
|
|
|
const auto& optionCategory = GameOptionsRegistry[leftSel];
|
|
|
|
const SGameOption& option = optionCategory.second[rightSel];
|
|
|
|
CGameOptions::SetOption(option.option, caller->GetUserSelection());
|
|
|
|
CSfxManager::SfxStart(1095, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
|
|
|
|
if (option.option == EGameOption::Rumble && caller->GetUserSelection() > 0)
|
|
|
|
{
|
|
|
|
x40_rumbleGen.HardStopAll();
|
|
|
|
x40_rumbleGen.Rumble(RumbleFxTable[11], 1.f, ERumblePriority::One, EIOPort::Zero);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-01-10 07:15:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::DoLeftMenuAdvance(CGuiTableGroup* caller)
|
|
|
|
{
|
2017-01-13 00:16:26 +00:00
|
|
|
if (caller == x24_tablegroup_leftmenu)
|
|
|
|
{
|
|
|
|
HandleRightSelectionChange();
|
|
|
|
x28_tablegroup_rightmenu->SetUserSelection(0);
|
|
|
|
x24_tablegroup_leftmenu->SetIsActive(false);
|
|
|
|
x28_tablegroup_rightmenu->SetIsActive(true);
|
|
|
|
CSfxManager::SfxStart(1096, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
CSfxManager::SfxStart(1091, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
2017-01-10 07:15:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::DeactivateRightMenu()
|
|
|
|
{
|
|
|
|
x2c_tablegroup_double->SetIsActive(false);
|
|
|
|
x30_tablegroup_triple->SetIsActive(false);
|
|
|
|
x34_slidergroup_slider->SetIsActive(false);
|
|
|
|
x2c_tablegroup_double->SetVisibility(false, ETraversalMode::Children);
|
|
|
|
x30_tablegroup_triple->SetVisibility(false, ETraversalMode::Children);
|
|
|
|
x34_slidergroup_slider->SetVisibility(false, ETraversalMode::Children);
|
|
|
|
}
|
|
|
|
|
2017-01-13 00:16:26 +00:00
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::HandleRightSelectionChange()
|
|
|
|
{
|
|
|
|
DeactivateRightMenu();
|
|
|
|
int leftSel = x24_tablegroup_leftmenu->GetUserSelection();
|
|
|
|
int rightSel = x28_tablegroup_rightmenu->GetUserSelection();
|
|
|
|
const auto& optionCategory = GameOptionsRegistry[leftSel];
|
|
|
|
const SGameOption& option = optionCategory.second[rightSel];
|
|
|
|
|
|
|
|
switch (option.type)
|
|
|
|
{
|
|
|
|
case EOptionType::Float:
|
|
|
|
x34_slidergroup_slider->SetIsActive(true);
|
|
|
|
x34_slidergroup_slider->SetVisibility(true, ETraversalMode::Children);
|
|
|
|
x34_slidergroup_slider->SetMinVal(option.minVal);
|
|
|
|
x34_slidergroup_slider->SetMaxVal(option.maxVal);
|
|
|
|
x34_slidergroup_slider->SetIncrement(option.increment);
|
|
|
|
x34_slidergroup_slider->SetCurVal(CGameOptions::GetOption(option.option));
|
|
|
|
x34_slidergroup_slider->SetLocalTransform(
|
|
|
|
zeus::CTransform::Translate(0.f, 0.f, rightSel * x38_rowPitch) *
|
|
|
|
x34_slidergroup_slider->GetTransform());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EOptionType::DoubleEnum:
|
|
|
|
x2c_tablegroup_double->SetUserSelection(CGameOptions::GetOption(option.option));
|
|
|
|
x2c_tablegroup_double->SetIsVisible(true);
|
|
|
|
x2c_tablegroup_double->SetIsActive(true);
|
|
|
|
x2c_tablegroup_double->SetLocalTransform(
|
|
|
|
zeus::CTransform::Translate(0.f, 0.f, rightSel * x38_rowPitch) *
|
|
|
|
x2c_tablegroup_double->GetTransform());
|
|
|
|
SetTableColors(x2c_tablegroup_double);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EOptionType::TripleEnum:
|
|
|
|
x30_tablegroup_triple->SetUserSelection(CGameOptions::GetOption(option.option));
|
|
|
|
x30_tablegroup_triple->SetIsVisible(true);
|
|
|
|
x30_tablegroup_triple->SetIsActive(true);
|
|
|
|
x30_tablegroup_triple->SetLocalTransform(
|
|
|
|
zeus::CTransform::Translate(0.f, 0.f, rightSel * x38_rowPitch) *
|
|
|
|
x30_tablegroup_triple->GetTransform());
|
|
|
|
SetTableColors(x30_tablegroup_triple);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-10 07:15:49 +00:00
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::SetRightUIText()
|
2016-12-18 04:16:04 +00:00
|
|
|
{
|
2017-01-10 07:15:49 +00:00
|
|
|
int userSel = x24_tablegroup_leftmenu->GetUserSelection();
|
|
|
|
const std::pair<int, const SGameOption*>& options = GameOptionsRegistry[userSel];
|
|
|
|
|
|
|
|
for (int i=0 ; i<5 ; ++i)
|
|
|
|
{
|
|
|
|
char name[36];
|
|
|
|
snprintf(name, 36, "textpane_right%d", i);
|
|
|
|
if (i < options.first)
|
|
|
|
{
|
|
|
|
FindTextPanePair(x1c_loadedFrame, name).SetPairText(
|
|
|
|
x20_loadedPauseStrg->GetString(options.second[i].stringId));
|
|
|
|
x28_tablegroup_rightmenu->GetWorkerWidget(i)->SetIsSelectable(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-24 07:41:33 +00:00
|
|
|
FindTextPanePair(x1c_loadedFrame, name).SetPairText(u"");
|
2017-01-10 07:15:49 +00:00
|
|
|
x28_tablegroup_rightmenu->GetWorkerWidget(i)->SetIsSelectable(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::SetTableColors(CGuiTableGroup* tbgp) const
|
|
|
|
{
|
|
|
|
tbgp->SetColors(zeus::CColor::skWhite,
|
|
|
|
zeus::CColor{0.627450f, 0.627450f, 0.627450f, 0.784313f});
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::FinishedLoading()
|
|
|
|
{
|
|
|
|
x24_tablegroup_leftmenu = static_cast<CGuiTableGroup*>(x1c_loadedFrame->FindWidget("tablegroup_leftmenu"));
|
|
|
|
x28_tablegroup_rightmenu = static_cast<CGuiTableGroup*>(x1c_loadedFrame->FindWidget("tablegroup_rightmenu"));
|
|
|
|
x2c_tablegroup_double = static_cast<CGuiTableGroup*>(x1c_loadedFrame->FindWidget("tablegroup_double"));
|
|
|
|
x30_tablegroup_triple = static_cast<CGuiTableGroup*>(x1c_loadedFrame->FindWidget("tablegroup_triple"));
|
|
|
|
x34_slidergroup_slider = static_cast<CGuiSliderGroup*>(x1c_loadedFrame->FindWidget("tablegroup_slider"));
|
|
|
|
|
|
|
|
x24_tablegroup_leftmenu->SetMenuAdvanceCallback(
|
|
|
|
std::bind(&SOptionsFrontEndFrame::DoLeftMenuAdvance, this, std::placeholders::_1));
|
|
|
|
x24_tablegroup_leftmenu->SetMenuSelectionChangeCallback(
|
|
|
|
std::bind(&SOptionsFrontEndFrame::DoMenuSelectionChange, this, std::placeholders::_1, std::placeholders::_2));
|
|
|
|
|
|
|
|
x38_rowPitch = x24_tablegroup_leftmenu->GetWorkerWidget(1)->GetIdlePosition().z -
|
|
|
|
x24_tablegroup_leftmenu->GetWorkerWidget(0)->GetIdlePosition().z;
|
|
|
|
|
|
|
|
x28_tablegroup_rightmenu->SetMenuSelectionChangeCallback(
|
|
|
|
std::bind(&SOptionsFrontEndFrame::DoMenuSelectionChange, this, std::placeholders::_1, std::placeholders::_2));
|
|
|
|
x28_tablegroup_rightmenu->SetMenuCancelCallback(
|
|
|
|
std::bind(&SOptionsFrontEndFrame::DoMenuCancel, this, std::placeholders::_1));
|
|
|
|
|
|
|
|
x2c_tablegroup_double->SetMenuSelectionChangeCallback(
|
|
|
|
std::bind(&SOptionsFrontEndFrame::DoMenuSelectionChange, this, std::placeholders::_1, std::placeholders::_2));
|
|
|
|
x2c_tablegroup_double->SetMenuCancelCallback(
|
|
|
|
std::bind(&SOptionsFrontEndFrame::DoMenuCancel, this, std::placeholders::_1));
|
|
|
|
|
|
|
|
x30_tablegroup_triple->SetMenuSelectionChangeCallback(
|
|
|
|
std::bind(&SOptionsFrontEndFrame::DoMenuSelectionChange, this, std::placeholders::_1, std::placeholders::_2));
|
|
|
|
x30_tablegroup_triple->SetMenuCancelCallback(
|
|
|
|
std::bind(&SOptionsFrontEndFrame::DoMenuCancel, this, std::placeholders::_1));
|
|
|
|
|
|
|
|
x34_slidergroup_slider->SetSelectionChangedCallback(
|
|
|
|
std::bind(&SOptionsFrontEndFrame::DoSliderChange, this, std::placeholders::_1, std::placeholders::_2));
|
|
|
|
|
|
|
|
FindTextPanePair(x1c_loadedFrame, "textpane_double0").SetPairText(x20_loadedPauseStrg->GetString(95)); // Off
|
|
|
|
FindTextPanePair(x1c_loadedFrame, "textpane_double1").SetPairText(x20_loadedPauseStrg->GetString(94)); // On
|
|
|
|
FindTextPanePair(x1c_loadedFrame, "textpane_triple0").SetPairText(x20_loadedPauseStrg->GetString(96)); // Mono
|
|
|
|
FindTextPanePair(x1c_loadedFrame, "textpane_triple1").SetPairText(x20_loadedPauseStrg->GetString(97)); // Stereo
|
|
|
|
FindTextPanePair(x1c_loadedFrame, "textpane_triple2").SetPairText(x20_loadedPauseStrg->GetString(98)); // Dolby
|
|
|
|
|
|
|
|
FindTextPanePair(x1c_loadedFrame, "textpane_title").SetPairText(g_MainStringTable->GetString(99)); // OPTIONS
|
|
|
|
|
|
|
|
if (CGuiTextPane* proceed = static_cast<CGuiTextPane*>(x1c_loadedFrame->FindWidget("textpane_proceed")))
|
|
|
|
proceed->TextSupport()->SetText(g_MainStringTable->GetString(85));
|
|
|
|
|
|
|
|
if (CGuiTextPane* cancel = static_cast<CGuiTextPane*>(x1c_loadedFrame->FindWidget("textpane_cancel")))
|
|
|
|
cancel->TextSupport()->SetText(g_MainStringTable->GetString(82));
|
|
|
|
|
|
|
|
// Visor, Display, Sound, Controller
|
|
|
|
for (int i=0 ; i<4 ;++i)
|
|
|
|
{
|
|
|
|
char name[36];
|
|
|
|
snprintf(name, 36, "textpane_filename%d", i);
|
|
|
|
FindTextPanePair(x1c_loadedFrame, name).SetPairText(x20_loadedPauseStrg->GetString(16+i));
|
|
|
|
}
|
|
|
|
|
|
|
|
x2c_tablegroup_double->SetVertical(false);
|
|
|
|
x30_tablegroup_triple->SetVertical(false);
|
|
|
|
|
|
|
|
x24_tablegroup_leftmenu->SetIsActive(true);
|
|
|
|
x28_tablegroup_rightmenu->SetIsActive(false);
|
|
|
|
|
|
|
|
SetTableColors(x24_tablegroup_leftmenu);
|
|
|
|
SetTableColors(x28_tablegroup_rightmenu);
|
|
|
|
SetTableColors(x2c_tablegroup_double);
|
|
|
|
SetTableColors(x30_tablegroup_triple);
|
|
|
|
|
|
|
|
SetRightUIText();
|
|
|
|
DeactivateRightMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CFrontEndUI::SOptionsFrontEndFrame::PumpLoad()
|
|
|
|
{
|
|
|
|
if (x1c_loadedFrame)
|
|
|
|
return true;
|
|
|
|
if (!x4_frme.IsLoaded())
|
|
|
|
return false;
|
|
|
|
if (!x10_pauseScreen.IsLoaded())
|
|
|
|
return false;
|
|
|
|
if (!x4_frme->GetIsFinishedLoading())
|
|
|
|
return false;
|
|
|
|
x1c_loadedFrame = x4_frme.GetObj();
|
|
|
|
x20_loadedPauseStrg = x10_pauseScreen.GetObj();
|
|
|
|
FinishedLoading();
|
2016-12-30 18:38:01 +00:00
|
|
|
return true;
|
2016-12-18 04:16:04 +00:00
|
|
|
}
|
|
|
|
|
2017-01-10 07:15:49 +00:00
|
|
|
bool CFrontEndUI::SOptionsFrontEndFrame::ProcessUserInput(const CFinalInput& input, CSaveUI* sui)
|
|
|
|
{
|
|
|
|
x134_25_exitOptions = false;
|
|
|
|
if (sui)
|
|
|
|
sui->ProcessUserInput(input);
|
|
|
|
if (x1c_loadedFrame && x134_24_visible)
|
|
|
|
{
|
|
|
|
if (input.PB() && x24_tablegroup_leftmenu->GetIsActive())
|
|
|
|
{
|
|
|
|
x134_25_exitOptions = true;
|
|
|
|
CSfxManager::SfxStart(1094, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x1c_loadedFrame->ProcessUserInput(input);
|
|
|
|
CGameOptions::TryRestoreDefaults(input,
|
|
|
|
x24_tablegroup_leftmenu->GetUserSelection(),
|
|
|
|
x28_tablegroup_rightmenu->GetUserSelection(),
|
|
|
|
true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return !x134_25_exitOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::Update(float dt, CSaveUI* sui)
|
2017-01-09 03:44:00 +00:00
|
|
|
{
|
2017-01-13 00:16:26 +00:00
|
|
|
x40_rumbleGen.Update(dt);
|
|
|
|
x134_24_visible = sui && sui->GetUIType() == CSaveUI::EUIType::SaveReady;
|
|
|
|
|
|
|
|
if (!PumpLoad())
|
|
|
|
return;
|
2017-01-09 03:44:00 +00:00
|
|
|
|
2017-01-13 00:16:26 +00:00
|
|
|
x0_uiAlpha = std::min(1.f, x0_uiAlpha + dt);
|
|
|
|
x1c_loadedFrame->Update(dt);
|
|
|
|
|
|
|
|
bool isSliding = x34_slidergroup_slider->GetState() != CGuiSliderGroup::EState::None;
|
|
|
|
if (x3c_sliderSfx.operator bool() != isSliding)
|
|
|
|
{
|
|
|
|
if (isSliding)
|
|
|
|
{
|
|
|
|
x3c_sliderSfx = CSfxManager::SfxStart(1458, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CSfxManager::SfxStop(x3c_sliderSfx);
|
|
|
|
x3c_sliderSfx.reset();
|
|
|
|
}
|
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
}
|
|
|
|
|
2016-12-18 04:16:04 +00:00
|
|
|
void CFrontEndUI::SOptionsFrontEndFrame::Draw() const
|
|
|
|
{
|
2017-01-10 07:15:49 +00:00
|
|
|
if (x1c_loadedFrame && x134_24_visible)
|
|
|
|
{
|
|
|
|
CGuiWidgetDrawParms params(x0_uiAlpha, zeus::CVector3f::skZero);
|
|
|
|
x1c_loadedFrame->Draw(params);
|
|
|
|
}
|
2016-12-18 04:16:04 +00:00
|
|
|
}
|
|
|
|
|
2017-01-17 01:23:19 +00:00
|
|
|
CFrontEndUI::CFrontEndUI()
|
2016-08-05 23:48:53 +00:00
|
|
|
: CIOWin("FrontEndUI")
|
|
|
|
{
|
2017-01-22 01:40:12 +00:00
|
|
|
CMain* m = static_cast<CMain*>(g_Main);
|
|
|
|
|
2016-12-13 05:22:30 +00:00
|
|
|
x18_rndA = std::min(rand() * 3 / RAND_MAX, 2);
|
|
|
|
x1c_rndB = std::min(rand() * 3 / RAND_MAX, 2);
|
|
|
|
|
2016-09-16 20:18:03 +00:00
|
|
|
x20_depsGroup = g_SimplePool->GetObj("FrontEnd_DGRP");
|
|
|
|
x38_pressStart = g_SimplePool->GetObj("TXTR_PressStart");
|
|
|
|
x44_frontendAudioGrp = g_SimplePool->GetObj("FrontEnd_AGSC");
|
|
|
|
|
2017-01-22 01:40:12 +00:00
|
|
|
xdc_saveUI = std::make_unique<CSaveUI>(ESaveContext::FrontEnd, g_GameState->GetCardSerial());
|
|
|
|
|
|
|
|
m->ResetGameState();
|
2016-09-16 20:18:03 +00:00
|
|
|
g_GameState->SetCurrentWorldId(g_DefaultWorldTag.id);
|
|
|
|
|
|
|
|
for (int i=0 ; CDvdFile::FileExists(GetAttractMovieFileName(i).c_str()) ; ++i)
|
|
|
|
++xc0_attractCount;
|
2016-08-05 23:48:53 +00:00
|
|
|
}
|
|
|
|
|
2016-09-16 20:18:03 +00:00
|
|
|
void CFrontEndUI::StartSlideShow(CArchitectureQueue& queue)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
xf4_curAudio->StopMixing();
|
2017-01-17 01:23:19 +00:00
|
|
|
queue.Push(MakeMsg::CreateCreateIOWin(EArchMsgTarget::IOWinManager, 12, 11,
|
|
|
|
std::make_shared<CSlideShow>()));
|
2016-09-16 20:18:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string CFrontEndUI::GetAttractMovieFileName(int idx)
|
|
|
|
{
|
|
|
|
return hecl::Format("Video/attract%d.thp", idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CFrontEndUI::GetNextAttractMovieFileName()
|
|
|
|
{
|
2016-09-17 06:40:45 +00:00
|
|
|
std::string ret = GetAttractMovieFileName(xbc_nextAttract);
|
2016-09-16 20:18:03 +00:00
|
|
|
xbc_nextAttract = (xbc_nextAttract + 1) % xc0_attractCount;
|
2016-09-17 06:40:45 +00:00
|
|
|
return ret;
|
2016-09-16 20:18:03 +00:00
|
|
|
}
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
void CFrontEndUI::SetCurrentMovie(EMenuMovie movie)
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
|
|
|
if (xb8_curMovie == movie)
|
|
|
|
return;
|
|
|
|
StopAttractMovie();
|
|
|
|
|
|
|
|
if (xb8_curMovie != EMenuMovie::Stopped)
|
|
|
|
{
|
|
|
|
xcc_curMoviePtr->SetPlayMode(CMoviePlayer::EPlayMode::Stopped);
|
|
|
|
xcc_curMoviePtr->Rewind();
|
|
|
|
}
|
|
|
|
|
|
|
|
xb8_curMovie = movie;
|
|
|
|
|
|
|
|
if (xb8_curMovie != EMenuMovie::Stopped)
|
|
|
|
{
|
|
|
|
xcc_curMoviePtr = x70_menuMovies[int(xb8_curMovie)].get();
|
|
|
|
xcc_curMoviePtr->SetPlayMode(CMoviePlayer::EPlayMode::Playing);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xcc_curMoviePtr = nullptr;
|
|
|
|
}
|
2016-09-16 20:18:03 +00:00
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
void CFrontEndUI::StopAttractMovie()
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
|
|
|
if (!xc4_attractMovie)
|
|
|
|
return;
|
|
|
|
xc4_attractMovie.reset();
|
|
|
|
xcc_curMoviePtr = nullptr;
|
|
|
|
}
|
2016-09-16 20:18:03 +00:00
|
|
|
|
2016-12-13 05:22:30 +00:00
|
|
|
void CFrontEndUI::StartAttractMovie()
|
|
|
|
{
|
|
|
|
if (xc4_attractMovie)
|
|
|
|
return;
|
|
|
|
SetCurrentMovie(EMenuMovie::Stopped);
|
|
|
|
xc4_attractMovie = std::make_unique<CMoviePlayer>(GetNextAttractMovieFileName().c_str(), 0.f, false, true);
|
|
|
|
xcc_curMoviePtr = xc4_attractMovie.get();
|
|
|
|
}
|
2016-09-16 20:18:03 +00:00
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
void CFrontEndUI::StartStateTransition(EScreen screen)
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
|
|
|
switch (x50_curScreen)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
case EScreen::Title:
|
|
|
|
if (screen != EScreen::FileSelect)
|
2016-12-13 05:22:30 +00:00
|
|
|
break;
|
|
|
|
SetCurrentMovie(EMenuMovie::StartFileSelectA);
|
2017-01-09 03:44:00 +00:00
|
|
|
SetFadeBlackTimer(xcc_curMoviePtr->GetTotalSeconds());
|
2016-12-13 05:22:30 +00:00
|
|
|
break;
|
2017-01-09 03:44:00 +00:00
|
|
|
case EScreen::FileSelect:
|
|
|
|
if (screen == EScreen::ToPlayGame)
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
|
|
|
SetCurrentMovie(EMenuMovie::FileSelectPlayGameA);
|
2017-01-09 03:44:00 +00:00
|
|
|
SetFadeBlackTimer(xcc_curMoviePtr->GetTotalSeconds());
|
2016-12-13 05:22:30 +00:00
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
else if (screen == EScreen::FusionBonus)
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
|
|
|
SetCurrentMovie(EMenuMovie::FileSelectGBA);
|
2017-01-09 03:44:00 +00:00
|
|
|
SetFadeBlackTimer(xcc_curMoviePtr->GetTotalSeconds());
|
2016-12-13 05:22:30 +00:00
|
|
|
CSfxManager::SfxStart(1108, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
CSfxManager::SfxStart(1109, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
|
|
|
break;
|
2017-01-09 03:44:00 +00:00
|
|
|
case EScreen::FusionBonus:
|
|
|
|
if (screen == EScreen::ToPlayGame)
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
|
|
|
SetCurrentMovie(EMenuMovie::GBAFileSelectB);
|
2017-01-09 03:44:00 +00:00
|
|
|
SetFadeBlackTimer(xcc_curMoviePtr->GetTotalSeconds());
|
2016-12-13 05:22:30 +00:00
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
else if (screen == EScreen::FileSelect)
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
|
|
|
SetCurrentMovie(EMenuMovie::GBAFileSelectA);
|
2017-01-09 03:44:00 +00:00
|
|
|
SetFadeBlackTimer(xcc_curMoviePtr->GetTotalSeconds());
|
2016-12-13 05:22:30 +00:00
|
|
|
CSfxManager::SfxStart(1110, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
CSfxManager::SfxStart(1111, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (screen)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
case EScreen::OpenCredits:
|
|
|
|
case EScreen::Title:
|
2016-12-13 05:22:30 +00:00
|
|
|
SetCurrentMovie(EMenuMovie::FirstStart);
|
2017-01-09 03:44:00 +00:00
|
|
|
SetFadeBlackTimer(xcc_curMoviePtr->GetTotalSeconds());
|
2016-12-13 05:22:30 +00:00
|
|
|
break;
|
2017-01-09 03:44:00 +00:00
|
|
|
case EScreen::AttractMovie:
|
2016-12-13 05:22:30 +00:00
|
|
|
StartAttractMovie();
|
2017-01-09 03:44:00 +00:00
|
|
|
SetFadeBlackWithMovie();
|
2016-12-13 05:22:30 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
x54_nextScreen = screen;
|
|
|
|
}
|
2016-09-16 20:18:03 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::CompleteStateTransition()
|
|
|
|
{
|
|
|
|
EScreen oldScreen = x50_curScreen;
|
|
|
|
x50_curScreen = x54_nextScreen;
|
|
|
|
|
|
|
|
switch (x50_curScreen)
|
|
|
|
{
|
|
|
|
case EScreen::AttractMovie:
|
|
|
|
x54_nextScreen = EScreen::OpenCredits;
|
|
|
|
x50_curScreen = EScreen::OpenCredits;
|
|
|
|
xd0_playerSkipToTitle = false;
|
|
|
|
StartStateTransition(EScreen::Title);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EScreen::Title:
|
|
|
|
SetCurrentMovie(EMenuMovie::StartLoop);
|
|
|
|
SetFadeBlackTimer(30.f);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EScreen::FileSelect:
|
|
|
|
SetCurrentMovie(EMenuMovie::FileSelectLoop);
|
|
|
|
if (oldScreen == EScreen::Title)
|
|
|
|
{
|
|
|
|
xf4_curAudio->StopMixing();
|
|
|
|
xf4_curAudio = xd8_audio2.get();
|
|
|
|
xf4_curAudio->StartMixing();
|
|
|
|
}
|
|
|
|
if (xdc_saveUI)
|
|
|
|
xdc_saveUI->ResetCardDriver();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EScreen::FusionBonus:
|
|
|
|
SetCurrentMovie(EMenuMovie::GBALoop);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EScreen::ToPlayGame:
|
|
|
|
x14_phase = EPhase::ExitFrontEnd;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
void CFrontEndUI::HandleDebugMenuReturnValue(CGameDebug::EReturnValue val, CArchitectureQueue& queue)
|
|
|
|
{}
|
2016-09-16 20:18:03 +00:00
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
void CFrontEndUI::Draw() const
|
2016-09-16 20:18:03 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x14_phase < EPhase::DisplayFrontEnd)
|
2016-12-18 04:16:04 +00:00
|
|
|
return;
|
|
|
|
|
2016-12-30 06:37:01 +00:00
|
|
|
if (xec_emuFrme)
|
2017-01-09 03:44:00 +00:00
|
|
|
{
|
2016-12-30 06:37:01 +00:00
|
|
|
xec_emuFrme->Draw(xdc_saveUI.get());
|
2017-01-09 03:44:00 +00:00
|
|
|
}
|
2016-12-18 04:16:04 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
//g_Renderer->SetDepthReadWrite(false, false);
|
|
|
|
g_Renderer->SetViewportOrtho(false, -4096.f, 4096.f);
|
2017-01-09 03:44:00 +00:00
|
|
|
|
2016-12-18 04:16:04 +00:00
|
|
|
if (xcc_curMoviePtr && xcc_curMoviePtr->GetIsFullyCached())
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Render movie */
|
2017-01-22 01:40:12 +00:00
|
|
|
float vpAspectRatio = CGraphics::g_ViewportResolution.x / float(CGraphics::g_ViewportResolution.y);
|
|
|
|
if (vpAspectRatio >= 1.78f)
|
|
|
|
{
|
|
|
|
float hPad = 1.78f / vpAspectRatio;
|
2017-01-22 21:26:58 +00:00
|
|
|
float vPad = 1.78f / 1.33f;
|
2017-01-22 01:40:12 +00:00
|
|
|
xcc_curMoviePtr->SetFrame({-hPad, vPad, 0.f}, {-hPad, -vPad, 0.f}, {hPad, -vPad, 0.f}, {hPad, vPad, 0.f});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-22 21:26:58 +00:00
|
|
|
float vPad = vpAspectRatio / 1.33f;
|
2017-01-22 01:40:12 +00:00
|
|
|
xcc_curMoviePtr->SetFrame({-1.f, vPad, 0.f}, {-1.f, -vPad, 0.f}, {1.f, -vPad, 0.f}, {1.f, vPad, 0.f});
|
|
|
|
}
|
|
|
|
|
2016-12-18 04:16:04 +00:00
|
|
|
xcc_curMoviePtr->DrawFrame();
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x50_curScreen == EScreen::FileSelect && x54_nextScreen == EScreen::FileSelect)
|
2016-12-18 04:16:04 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Render active FileSelect UI */
|
2016-12-18 04:16:04 +00:00
|
|
|
if (xf0_optionsFrme)
|
|
|
|
xf0_optionsFrme->Draw();
|
2017-01-09 03:44:00 +00:00
|
|
|
else if (xe0_frontendCardFrme)
|
|
|
|
xe0_frontendCardFrme->Draw();
|
2016-12-18 04:16:04 +00:00
|
|
|
else
|
2017-01-09 03:44:00 +00:00
|
|
|
xe8_frontendNoCardFrme->Draw();
|
|
|
|
}
|
|
|
|
else if (x50_curScreen == EScreen::FusionBonus && x54_nextScreen == EScreen::FusionBonus)
|
|
|
|
{
|
|
|
|
/* Render Fusion bonus UI */
|
|
|
|
xe4_fusionBonusFrme->Draw();
|
2016-12-18 04:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (x64_pressStartAlpha > 0.f && x38_pressStart.IsLoaded() && m_pressStartQuad)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Render "Press Start" */
|
2017-01-22 21:26:58 +00:00
|
|
|
float vpAspectRatio = CGraphics::g_ViewportResolution.x / float(CGraphics::g_ViewportResolution.y);
|
|
|
|
float hPad, vPad;
|
|
|
|
if (vpAspectRatio >= 1.78f)
|
|
|
|
{
|
|
|
|
hPad = 1.78f / vpAspectRatio;
|
|
|
|
vPad = 1.78f / 1.33f;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hPad = 1.f;
|
|
|
|
vPad = vpAspectRatio / 1.33f;
|
|
|
|
}
|
|
|
|
zeus::CRectangle rect(0.5f - x38_pressStart->GetWidth() / 2.f / 640.f * hPad,
|
|
|
|
0.5f + (x38_pressStart->GetHeight() / 2.f - 240.f + 72.f) / 480.f * vPad,
|
|
|
|
x38_pressStart->GetWidth() / 640.f * hPad,
|
|
|
|
x38_pressStart->GetHeight() / 480.f * vPad);
|
2016-12-18 04:16:04 +00:00
|
|
|
zeus::CColor color = zeus::CColor::skWhite;
|
|
|
|
color.a = x64_pressStartAlpha;
|
|
|
|
const_cast<CTexturedQuadFilterAlpha&>(*m_pressStartQuad).draw(color, 1.f, rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xc0_attractCount > 0)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Render fade-to-black into attract movie */
|
|
|
|
if (((x50_curScreen == EScreen::Title && x54_nextScreen == EScreen::Title) ||
|
|
|
|
x54_nextScreen == EScreen::AttractMovie) && x58_fadeBlackTimer < 1.f)
|
2016-12-18 04:16:04 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* To black */
|
2016-12-18 04:16:04 +00:00
|
|
|
zeus::CColor color = zeus::CColor::skBlack;
|
2017-01-09 03:44:00 +00:00
|
|
|
color.a = 1.f - x58_fadeBlackTimer;
|
2016-12-18 04:16:04 +00:00
|
|
|
const_cast<CColoredQuadFilter&>(m_fadeToBlack).draw(color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
if (xd0_playerSkipToTitle)
|
2016-12-18 04:16:04 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Render fade-through-black into title if player skips */
|
|
|
|
if (x50_curScreen == EScreen::OpenCredits && x54_nextScreen == EScreen::Title)
|
2016-12-18 04:16:04 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* To black */
|
2016-12-18 04:16:04 +00:00
|
|
|
zeus::CColor color = zeus::CColor::skBlack;
|
2017-01-09 03:44:00 +00:00
|
|
|
color.a = zeus::clamp(0.f, 1.f - x58_fadeBlackTimer, 1.f);
|
2016-12-18 04:16:04 +00:00
|
|
|
const_cast<CColoredQuadFilter&>(m_fadeToBlack).draw(color);
|
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
else if (x50_curScreen == EScreen::Title && x54_nextScreen == EScreen::Title)
|
2016-12-18 04:16:04 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* From black with 30-sec skip to title */
|
2016-12-18 04:16:04 +00:00
|
|
|
zeus::CColor color = zeus::CColor::skBlack;
|
2017-01-09 03:44:00 +00:00
|
|
|
color.a = 1.f - zeus::clamp(0.f, 30.f - x58_fadeBlackTimer, 1.f);
|
2016-12-18 04:16:04 +00:00
|
|
|
const_cast<CColoredQuadFilter&>(m_fadeToBlack).draw(color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-29 03:58:16 +00:00
|
|
|
if (0 && xdc_saveUI)
|
2016-12-18 04:16:04 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Render memory card feedback strings */
|
|
|
|
if ((CanShowSaveUI() && !xdc_saveUI->IsHiddenFromFrontEnd()) ||
|
|
|
|
((x50_curScreen == EScreen::FileSelect && x54_nextScreen == EScreen::FileSelect) ||
|
|
|
|
(x50_curScreen == EScreen::FusionBonus && x54_nextScreen == EScreen::FusionBonus)))
|
2016-12-18 04:16:04 +00:00
|
|
|
xdc_saveUI->Draw();
|
|
|
|
}
|
|
|
|
}
|
2016-09-16 20:18:03 +00:00
|
|
|
}
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
void CFrontEndUI::UpdateMovies(float dt)
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (xcc_curMoviePtr && x5c_fadeBlackWithMovie)
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Set fade-to-black timer to match attract movie */
|
|
|
|
x5c_fadeBlackWithMovie = false;
|
|
|
|
x58_fadeBlackTimer = xcc_curMoviePtr->GetTotalSeconds();
|
2016-12-13 05:22:30 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Advance playing menu movies */
|
2016-12-13 05:22:30 +00:00
|
|
|
for (auto& movie : x70_menuMovies)
|
|
|
|
if (movie)
|
|
|
|
movie->Update(dt);
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Advance attract movie */
|
2016-12-13 05:22:30 +00:00
|
|
|
if (xc4_attractMovie)
|
|
|
|
xc4_attractMovie->Update(dt);
|
|
|
|
}
|
|
|
|
|
2016-12-14 22:56:59 +00:00
|
|
|
void CFrontEndUI::FinishedLoadingDepsGroup()
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Transfer DGRP tokens into FrontEnd and lock */
|
2016-12-18 04:16:04 +00:00
|
|
|
const CDependencyGroup* dgrp = x20_depsGroup.GetObj();
|
|
|
|
x2c_deps.reserve(dgrp->GetObjectTagVector().size());
|
|
|
|
for (const SObjectTag& tag : dgrp->GetObjectTagVector())
|
2017-01-09 03:44:00 +00:00
|
|
|
{
|
2016-12-18 04:16:04 +00:00
|
|
|
x2c_deps.push_back(g_SimplePool->GetObj(tag));
|
2017-01-09 03:44:00 +00:00
|
|
|
x2c_deps.back().Lock();
|
|
|
|
}
|
2016-12-18 04:16:04 +00:00
|
|
|
x44_frontendAudioGrp.Lock();
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CFrontEndUI::PumpLoad()
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Poll all tokens for load completion */
|
2016-12-18 04:16:04 +00:00
|
|
|
for (CToken& tok : x2c_deps)
|
|
|
|
if (!tok.IsLoaded())
|
|
|
|
return false;
|
|
|
|
if (!x44_frontendAudioGrp.IsLoaded())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Ready to construct texture quads */
|
2017-01-22 21:26:58 +00:00
|
|
|
m_pressStartQuad.emplace(CCameraFilterPass::EFilterType::Add, x38_pressStart);
|
2016-12-18 04:16:04 +00:00
|
|
|
|
|
|
|
return true;
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 05:22:30 +00:00
|
|
|
bool CFrontEndUI::PumpMovieLoad()
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Prepare all FrontEnd movies and pause each */
|
2016-12-13 05:22:30 +00:00
|
|
|
if (xd1_moviesLoaded)
|
|
|
|
return true;
|
|
|
|
for (int i=0 ; i<9 ; ++i)
|
|
|
|
{
|
|
|
|
if (!x70_menuMovies[i])
|
|
|
|
{
|
2016-12-14 22:56:59 +00:00
|
|
|
const FEMovie& movie = FEMovies[i];
|
|
|
|
x70_menuMovies[i] = std::make_unique<CMoviePlayer>(movie.path, 0.05f, movie.loop, false);
|
2016-12-13 05:22:30 +00:00
|
|
|
x70_menuMovies[i]->SetPlayMode(CMoviePlayer::EPlayMode::Stopped);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xd1_moviesLoaded = true;
|
|
|
|
return true;
|
|
|
|
}
|
2016-09-16 20:18:03 +00:00
|
|
|
|
|
|
|
void CFrontEndUI::ProcessUserInput(const CFinalInput& input, CArchitectureQueue& queue)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (static_cast<CMain*>(g_Main)->GetCardBusy())
|
2016-12-30 06:37:01 +00:00
|
|
|
return;
|
|
|
|
if (input.ControllerIdx() > 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (xec_emuFrme)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* NES emulator pre-empts user input if active */
|
2016-12-30 06:37:01 +00:00
|
|
|
xec_emuFrme->ProcessUserInput(input, xdc_saveUI.get());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Controllers other than first shall not pass */
|
|
|
|
if (x14_phase != EPhase::DisplayFrontEnd || input.ControllerIdx() != 0)
|
2016-12-30 06:37:01 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (x50_curScreen != x54_nextScreen)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x54_nextScreen == EScreen::AttractMovie && (input.PStart() || input.PA()))
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Player wants to return to opening credits from attract movie */
|
|
|
|
SetFadeBlackTimer(std::min(1.f, x58_fadeBlackTimer));
|
2016-12-30 06:37:01 +00:00
|
|
|
PlayAdvanceSfx();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (input.PA() || input.PStart())
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x50_curScreen == EScreen::OpenCredits && x54_nextScreen == EScreen::Title &&
|
|
|
|
x58_fadeBlackTimer > 1.f)
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Player is too impatient to view opening credits */
|
|
|
|
xd0_playerSkipToTitle = true;
|
|
|
|
SetFadeBlackTimer(1.f);
|
2016-12-30 06:37:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x50_curScreen == EScreen::Title)
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
|
|
|
if (input.PStart() || input.PA())
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x58_fadeBlackTimer < 30.f - g_tweakGame->GetPressStartDelay())
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Proceed to file select UI */
|
2016-12-30 06:37:01 +00:00
|
|
|
CSfxManager::SfxStart(FETransitionBackSFX[x18_rndA][0], 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
CSfxManager::SfxStart(FETransitionBackSFX[x18_rndA][1], 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
2017-01-09 03:44:00 +00:00
|
|
|
StartStateTransition(EScreen::FileSelect);
|
2016-12-30 06:37:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
else if (x50_curScreen == EScreen::FileSelect && x54_nextScreen == EScreen::FileSelect)
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
|
|
|
if (xf0_optionsFrme)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Control options UI */
|
2016-12-30 06:37:01 +00:00
|
|
|
if (xf0_optionsFrme->ProcessUserInput(input, xdc_saveUI.get()))
|
|
|
|
return;
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Exit options UI */
|
2016-12-30 06:37:01 +00:00
|
|
|
xf0_optionsFrme.reset();
|
|
|
|
return;
|
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
else if (xe0_frontendCardFrme)
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Control FrontEnd with memory card */
|
|
|
|
switch (xe0_frontendCardFrme->ProcessUserInput(input))
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
case SNewFileSelectFrame::EAction::FusionBonus:
|
|
|
|
StartStateTransition(EScreen::FusionBonus);
|
2016-12-30 06:37:01 +00:00
|
|
|
return;
|
2017-01-09 03:44:00 +00:00
|
|
|
case SNewFileSelectFrame::EAction::GameOptions:
|
2016-12-30 06:37:01 +00:00
|
|
|
xf0_optionsFrme = std::make_unique<SOptionsFrontEndFrame>();
|
|
|
|
return;
|
2017-01-09 03:44:00 +00:00
|
|
|
case SNewFileSelectFrame::EAction::SlideShow:
|
|
|
|
xd2_deferSlideShow = true;
|
2016-12-30 06:37:01 +00:00
|
|
|
StartSlideShow(queue);
|
|
|
|
return;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Control FrontEnd without memory card */
|
|
|
|
switch (xe8_frontendNoCardFrme->ProcessUserInput(input))
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
case SFrontEndFrame::EAction::FusionBonus:
|
|
|
|
StartStateTransition(EScreen::FusionBonus);
|
2016-12-30 06:37:01 +00:00
|
|
|
return;
|
2017-01-09 03:44:00 +00:00
|
|
|
case SFrontEndFrame::EAction::GameOptions:
|
2016-12-30 06:37:01 +00:00
|
|
|
xf0_optionsFrme = std::make_unique<SOptionsFrontEndFrame>();
|
|
|
|
return;
|
2017-01-09 03:44:00 +00:00
|
|
|
case SFrontEndFrame::EAction::StartGame:
|
|
|
|
TransitionToGame();
|
2016-12-30 06:37:01 +00:00
|
|
|
return;
|
2017-01-09 03:44:00 +00:00
|
|
|
case SFrontEndFrame::EAction::SlideShow:
|
|
|
|
xd2_deferSlideShow = true;
|
2016-12-30 06:37:01 +00:00
|
|
|
StartSlideShow(queue);
|
|
|
|
return;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
else if (x50_curScreen == EScreen::FusionBonus && x54_nextScreen == EScreen::FusionBonus)
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Control Fusion bonus UI */
|
|
|
|
switch (xe4_fusionBonusFrme->ProcessUserInput(input, xdc_saveUI.get()))
|
2016-12-30 06:37:01 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
case SFusionBonusFrame::EAction::GoBack:
|
|
|
|
StartStateTransition(EScreen::FileSelect);
|
2016-12-30 06:37:01 +00:00
|
|
|
return;
|
2017-01-09 03:44:00 +00:00
|
|
|
case SFusionBonusFrame::EAction::PlayNESMetroid:
|
2016-12-30 06:37:01 +00:00
|
|
|
xf4_curAudio->StopMixing();
|
|
|
|
xec_emuFrme = std::make_unique<SNesEmulatorFrame>();
|
|
|
|
if (xdc_saveUI)
|
|
|
|
xdc_saveUI->SetInGame(true);
|
|
|
|
return;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-16 20:18:03 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
void CFrontEndUI::TransitionToGame()
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x14_phase >= EPhase::ToPlayGame)
|
2016-12-13 05:22:30 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
const u16* sfx = FETransitionForwardSFX[x1c_rndB];
|
|
|
|
CSfxManager::SfxStart(sfx[0], 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
CSfxManager::SfxStart(sfx[1], 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
x14_phase = EPhase::ToPlayGame;
|
|
|
|
StartStateTransition(EScreen::ToPlayGame);
|
2016-12-13 05:22:30 +00:00
|
|
|
}
|
|
|
|
|
2016-12-14 22:56:59 +00:00
|
|
|
void CFrontEndUI::UpdateMusicVolume()
|
2016-09-16 20:18:03 +00:00
|
|
|
{
|
2016-12-14 22:56:59 +00:00
|
|
|
float volMul = (xf4_curAudio == xd4_audio1.get()) ? FE1_VOL : FE2_VOL;
|
|
|
|
if (xf4_curAudio)
|
|
|
|
{
|
|
|
|
float vol = volMul * x68_musicVol * (g_GameState->GameOptions().GetMusicVolume() / 127.f);
|
|
|
|
xf4_curAudio->SetVolume(vol);
|
|
|
|
}
|
|
|
|
}
|
2016-12-13 05:22:30 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
static const float AudioFadeTimeA[] =
|
|
|
|
{
|
|
|
|
0.44f, 5.41f, 3.41f
|
|
|
|
};
|
|
|
|
|
|
|
|
static const float AudioFadeTimeB[] =
|
|
|
|
{
|
|
|
|
4.2f, 6.1f, 6.1f
|
|
|
|
};
|
|
|
|
|
2016-12-14 22:56:59 +00:00
|
|
|
CIOWin::EMessageReturn CFrontEndUI::Update(float dt, CArchitectureQueue& queue)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
if (xdc_saveUI && x50_curScreen >= EScreen::FileSelect)
|
2016-12-13 05:22:30 +00:00
|
|
|
{
|
|
|
|
switch (xdc_saveUI->Update(dt))
|
|
|
|
{
|
|
|
|
case EMessageReturn::Exit:
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Memory card operation complete, transition to game */
|
|
|
|
TransitionToGame();
|
2016-12-13 05:22:30 +00:00
|
|
|
break;
|
|
|
|
case EMessageReturn::RemoveIOWinAndExit:
|
|
|
|
case EMessageReturn::RemoveIOWin:
|
2017-01-09 03:44:00 +00:00
|
|
|
/* No memory card available, fallback to non-save UI */
|
|
|
|
xe0_frontendCardFrme.reset();
|
2016-12-13 05:22:30 +00:00
|
|
|
xdc_saveUI.reset();
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Set music fade volume */
|
2016-12-14 22:56:59 +00:00
|
|
|
UpdateMusicVolume();
|
|
|
|
|
2016-12-15 22:37:34 +00:00
|
|
|
switch (x14_phase)
|
2016-12-14 22:56:59 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
case EPhase::LoadDepsGroup:
|
|
|
|
/* Poll DGRP load */
|
2016-12-14 22:56:59 +00:00
|
|
|
if (!x20_depsGroup.IsLoaded())
|
|
|
|
return EMessageReturn::Exit;
|
|
|
|
FinishedLoadingDepsGroup();
|
|
|
|
x20_depsGroup.Unlock();
|
2017-01-09 03:44:00 +00:00
|
|
|
x14_phase = EPhase::LoadDeps;
|
2016-12-14 22:56:59 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
case EPhase::LoadDeps:
|
|
|
|
/* Poll loading DGRP resources */
|
2016-12-14 22:56:59 +00:00
|
|
|
if (PumpLoad())
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
xe0_frontendCardFrme = std::make_unique<SNewFileSelectFrame>(xdc_saveUI.get(), x1c_rndB);
|
|
|
|
xe4_fusionBonusFrme = std::make_unique<SFusionBonusFrame>();
|
|
|
|
xe8_frontendNoCardFrme = std::make_unique<SFrontEndFrame>(x1c_rndB);
|
2016-12-14 22:56:59 +00:00
|
|
|
x38_pressStart.GetObj();
|
|
|
|
CAudioSys::AddAudioGroup(x44_frontendAudioGrp->GetAudioGroupData());
|
|
|
|
xd4_audio1 = std::make_unique<CStaticAudioPlayer>("Audio/frontend_1.rsf", 416480, 1973664);
|
|
|
|
xd8_audio2 = std::make_unique<CStaticAudioPlayer>("Audio/frontend_2.rsf", 273556, 1636980);
|
2017-01-09 03:44:00 +00:00
|
|
|
x14_phase = EPhase::LoadFrames;
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
if (x14_phase == EPhase::LoadDeps)
|
2016-12-14 22:56:59 +00:00
|
|
|
return EMessageReturn::Exit;
|
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
case EPhase::LoadFrames:
|
|
|
|
/* Poll loading music and FRME resources */
|
2016-12-14 22:56:59 +00:00
|
|
|
if (!xd4_audio1->IsReady() || !xd8_audio2->IsReady() ||
|
2017-01-09 03:44:00 +00:00
|
|
|
!xe0_frontendCardFrme->PumpLoad() || !xe4_fusionBonusFrme->PumpLoad() ||
|
|
|
|
!xe8_frontendNoCardFrme->PumpLoad() || !xdc_saveUI->PumpLoad())
|
2016-12-14 22:56:59 +00:00
|
|
|
return EMessageReturn::Exit;
|
|
|
|
xf4_curAudio = xd4_audio1.get();
|
|
|
|
xf4_curAudio->StartMixing();
|
2017-01-09 03:44:00 +00:00
|
|
|
x14_phase = EPhase::LoadMovies;
|
2016-12-14 22:56:59 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
case EPhase::LoadMovies:
|
2016-12-14 22:56:59 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Poll loading movies */
|
2016-12-14 22:56:59 +00:00
|
|
|
bool moviesReady = true;
|
|
|
|
if (PumpMovieLoad())
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Prime first frame of movies */
|
2016-12-14 22:56:59 +00:00
|
|
|
UpdateMovies(dt);
|
|
|
|
for (int i=0 ; i<9 ; ++i)
|
|
|
|
{
|
|
|
|
if (!x70_menuMovies[i]->GetIsFullyCached())
|
|
|
|
{
|
|
|
|
moviesReady = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
moviesReady = false;
|
|
|
|
|
|
|
|
if (moviesReady)
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Ready to display FrontEnd */
|
|
|
|
x14_phase = EPhase::DisplayFrontEnd;
|
|
|
|
StartStateTransition(EScreen::Title);
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return EMessageReturn::Exit;
|
|
|
|
}
|
2016-12-15 22:37:34 +00:00
|
|
|
|
2017-01-09 03:44:00 +00:00
|
|
|
case EPhase::DisplayFrontEnd:
|
|
|
|
case EPhase::ToPlayGame:
|
|
|
|
/* Displaying frontend to user */
|
2016-12-30 06:37:01 +00:00
|
|
|
if (xec_emuFrme)
|
2016-12-14 22:56:59 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Update just the emulator if active */
|
2016-12-31 00:51:51 +00:00
|
|
|
if (xec_emuFrme->Update(dt, xdc_saveUI.get()))
|
2016-12-15 22:37:34 +00:00
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Exit emulator */
|
2016-12-30 06:37:01 +00:00
|
|
|
xec_emuFrme.reset();
|
2017-01-09 03:44:00 +00:00
|
|
|
if (xdc_saveUI)
|
|
|
|
xdc_saveUI->SetInGame(false);
|
2016-12-15 22:37:34 +00:00
|
|
|
xf4_curAudio->StartMixing();
|
|
|
|
}
|
|
|
|
break;
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
2017-01-09 03:44:00 +00:00
|
|
|
|
|
|
|
if (xd2_deferSlideShow)
|
|
|
|
{
|
|
|
|
/* Start mixing slideshow music */
|
|
|
|
xd2_deferSlideShow = false;
|
|
|
|
xf4_curAudio->StartMixing();
|
|
|
|
if (xdc_saveUI)
|
|
|
|
xdc_saveUI->ResetCardDriver();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x50_curScreen == EScreen::FileSelect && x54_nextScreen == EScreen::FileSelect)
|
|
|
|
{
|
|
|
|
/* Main FrontEnd UI tree active */
|
|
|
|
if (xf0_optionsFrme)
|
|
|
|
{
|
|
|
|
bool optionsActive = true;
|
|
|
|
if (xdc_saveUI && xdc_saveUI->GetUIType() != CSaveUI::EUIType::SaveReady)
|
|
|
|
optionsActive = false;
|
|
|
|
|
|
|
|
if (optionsActive)
|
|
|
|
{
|
|
|
|
/* Update options UI */
|
|
|
|
xf0_optionsFrme->Update(dt, xdc_saveUI.get());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Save triggered; exit options UI here */
|
|
|
|
xf0_optionsFrme.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (xe0_frontendCardFrme)
|
|
|
|
{
|
|
|
|
/* Update FrontEnd with memory card UI */
|
|
|
|
xe0_frontendCardFrme->Update(dt);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Update FrontEnd without memory card UI */
|
|
|
|
xe8_frontendNoCardFrme->Update(dt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (x50_curScreen == EScreen::FusionBonus && x54_nextScreen == EScreen::FusionBonus)
|
|
|
|
{
|
|
|
|
/* Update Fusion bonus UI */
|
|
|
|
xe4_fusionBonusFrme->Update(dt, xdc_saveUI.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x50_curScreen != x54_nextScreen && xcc_curMoviePtr &&
|
|
|
|
(xcc_curMoviePtr->GetIsMovieFinishedPlaying() || xcc_curMoviePtr->IsLooping()))
|
|
|
|
{
|
|
|
|
/* Movie-based transition complete */
|
|
|
|
CompleteStateTransition();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x58_fadeBlackTimer > 0.f && !x5c_fadeBlackWithMovie)
|
|
|
|
{
|
|
|
|
SetFadeBlackTimer(std::max(0.f, x58_fadeBlackTimer - dt));
|
|
|
|
if (x58_fadeBlackTimer == 0.f)
|
|
|
|
{
|
|
|
|
if (x50_curScreen == EScreen::Title && x54_nextScreen == EScreen::Title)
|
|
|
|
{
|
|
|
|
if (xc0_attractCount > 0)
|
|
|
|
{
|
|
|
|
/* Screen black, start attract movie */
|
|
|
|
StartStateTransition(EScreen::AttractMovie);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (x54_nextScreen == EScreen::AttractMovie)
|
|
|
|
{
|
|
|
|
/* Attract movie done, play open credits again */
|
|
|
|
CompleteStateTransition();
|
|
|
|
}
|
|
|
|
else if (x50_curScreen != x54_nextScreen)
|
|
|
|
{
|
|
|
|
/* Fade-based transition complete */
|
|
|
|
CompleteStateTransition();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Advance active movies */
|
|
|
|
UpdateMovies(dt);
|
|
|
|
|
|
|
|
if (x50_curScreen == EScreen::Title && x54_nextScreen == EScreen::Title)
|
|
|
|
{
|
|
|
|
/* Update press-start pulsing */
|
|
|
|
if (x58_fadeBlackTimer < 30.f - g_tweakGame->GetPressStartDelay())
|
|
|
|
{
|
|
|
|
x60_pressStartTime = std::fmod(x60_pressStartTime + dt, 1.f);
|
|
|
|
if (x60_pressStartTime < 0.5f)
|
|
|
|
x64_pressStartAlpha = x60_pressStartTime / 0.5f;
|
|
|
|
else
|
|
|
|
x64_pressStartAlpha = (1.f - x60_pressStartTime) / 0.5f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Clear press-start pulsing */
|
|
|
|
x60_pressStartTime = 0.f;
|
|
|
|
x64_pressStartAlpha = 0.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x50_curScreen == EScreen::Title && x54_nextScreen == EScreen::FileSelect)
|
|
|
|
{
|
|
|
|
/* Fade out title music */
|
|
|
|
x68_musicVol = 1.f - zeus::clamp(0.f, (xcc_curMoviePtr->GetPlayedSeconds() -
|
|
|
|
AudioFadeTimeA[x18_rndA]) / 2.5f, 1.f);
|
|
|
|
}
|
|
|
|
else if (x54_nextScreen == EScreen::ToPlayGame)
|
|
|
|
{
|
|
|
|
/* Fade out menu music */
|
|
|
|
float delay = AudioFadeTimeB[x1c_rndB];
|
|
|
|
x68_musicVol = 1.f - zeus::clamp(0.f, (xcc_curMoviePtr->GetPlayedSeconds() - delay) /
|
|
|
|
(xcc_curMoviePtr->GetTotalSeconds() - delay), 1.f);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Full music volume */
|
|
|
|
x68_musicVol = 1.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EMessageReturn::Exit;
|
|
|
|
|
|
|
|
case EPhase::ExitFrontEnd:
|
|
|
|
/* Remove FrontEnd IOWin and begin updating next IOWin */
|
|
|
|
return EMessageReturn::RemoveIOWin;
|
|
|
|
|
|
|
|
default: break;
|
2016-12-14 22:56:59 +00:00
|
|
|
}
|
2016-12-13 05:22:30 +00:00
|
|
|
|
2016-09-16 20:18:03 +00:00
|
|
|
return EMessageReturn::Exit;
|
|
|
|
}
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
CIOWin::EMessageReturn CFrontEndUI::OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue)
|
2016-09-16 20:18:03 +00:00
|
|
|
{
|
|
|
|
switch (msg.GetType())
|
|
|
|
{
|
|
|
|
case EArchMsgType::UserInput:
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Forward user events */
|
2016-09-16 20:18:03 +00:00
|
|
|
const CArchMsgParmUserInput& input = MakeMsg::GetParmUserInput(msg);
|
|
|
|
ProcessUserInput(input.x4_parm, queue);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EArchMsgType::TimerTick:
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Forward frame events */
|
2016-09-16 20:18:03 +00:00
|
|
|
float dt = MakeMsg::GetParmTimerTick(msg).x4_parm;
|
|
|
|
return Update(dt, queue);
|
|
|
|
}
|
|
|
|
case EArchMsgType::QuitGameplay:
|
|
|
|
{
|
2017-01-09 03:44:00 +00:00
|
|
|
/* Immediately exit FrontEnd */
|
|
|
|
x14_phase = EPhase::ExitFrontEnd;
|
2016-09-16 20:18:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return EMessageReturn::Normal;
|
|
|
|
}
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
}
|
|
|
|
}
|