metaforce/Runtime/MP1/COptionsScreen.hpp

46 lines
1.3 KiB
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2017-05-02 04:00:38 +00:00
#include "CInGameGuiManager.hpp"
#include "CPauseScreenBase.hpp"
2017-05-12 19:54:35 +00:00
#include "CGameCubeDoll.hpp"
#include "CQuitGameScreen.hpp"
2017-05-02 04:00:38 +00:00
2017-12-29 08:08:12 +00:00
namespace urde::MP1
2017-05-02 04:00:38 +00:00
{
class COptionsScreen : public CPauseScreenBase
{
2017-05-12 19:54:35 +00:00
std::unique_ptr<CQuitGameScreen> x19c_quitGame;
std::unique_ptr<CGameCubeDoll> x1a0_gameCube;
CSfxHandle x1a4_sliderSfx;
CRumbleGenerator x1a8_rumble;
float x29c_optionAlpha = 0.f;
bool x2a0_24_inOptionBody : 1;
void UpdateOptionView();
void ResetOptionWidgetVisibility();
void OnSliderChanged(CGuiSliderGroup* caller, float val);
void OnEnumChanged(CGuiTableGroup* caller, int oldSel);
2017-05-12 19:54:35 +00:00
2017-05-02 04:00:38 +00:00
public:
COptionsScreen(const CStateManager& mgr, CGuiFrame& frame, const CStringTable& pauseStrg);
2017-05-12 19:54:35 +00:00
~COptionsScreen();
2017-05-02 04:00:38 +00:00
2017-05-12 19:54:35 +00:00
bool InputDisabled() const;
void Update(float dt, CRandom16& rand, CArchitectureQueue& archQueue);
void Touch();
void ProcessControllerInput(const CFinalInput& input);
void Draw(float transInterp, float totalAlpha, float yOff);
2017-05-02 04:00:38 +00:00
bool VReady() const;
2017-05-12 19:54:35 +00:00
void VActivate();
void RightTableSelectionChanged(int oldSel, int newSel);
2017-05-14 19:58:44 +00:00
void ChangedMode(EMode oldMode);
2017-05-12 19:54:35 +00:00
void UpdateRightTable();
bool ShouldLeftTableAdvance() const;
bool ShouldRightTableAdvance() const;
2017-05-02 04:00:38 +00:00
u32 GetRightTableCount() const;
};
}