metaforce/Runtime/MP1/CInventoryScreen.hpp

64 lines
2.1 KiB
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2017-02-17 18:19:50 -08:00
#include <memory>
#include "Runtime/MP1/CInGameGuiManager.hpp"
#include "Runtime/MP1/CPauseScreenBase.hpp"
#include "Runtime/MP1/CSamusDoll.hpp"
#include <zeus/CVector2f.hpp>
2017-02-17 18:19:50 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2017-02-17 18:19:50 -08:00
class CDependencyGroup;
2018-12-07 21:30:43 -08:00
namespace MP1 {
class CInventoryScreen : public CPauseScreenBase {
enum class EState { Active, Leaving, Inactive };
std::unique_ptr<CSamusDoll> x19c_samusDoll;
float x1a0_ = 0.f;
float x1a4_textBodyAlpha = 0.f;
EState x1a8_state = EState::Active;
bool x1ac_textLeaveRequested = false;
bool x1ad_textViewing;
2019-01-22 23:52:19 -08:00
zeus::CVector2f m_lastMouseCoord;
SScrollDelta m_lastAccumScroll;
SScrollDelta m_dollScroll;
2019-01-22 23:52:19 -08:00
2018-12-07 21:30:43 -08:00
void UpdateSamusDollPulses();
bool HasLeftInventoryItem(int idx) const;
bool HasRightInventoryItem(int idx) const;
bool IsRightInventoryItemEquipped(int idx) const;
void UpdateTextBody();
2017-02-17 18:19:50 -08:00
public:
2018-12-07 21:30:43 -08:00
CInventoryScreen(const CStateManager& mgr, CGuiFrame& frame, const CStringTable& pauseStrg,
const CDependencyGroup& suitDgrp, const CDependencyGroup& ballDgrp);
~CInventoryScreen() override;
bool InputDisabled() const override;
void TransitioningAway() override;
void Update(float dt, CRandom16& rand, CArchitectureQueue& archQueue) override;
void Touch() override;
void ProcessControllerInput(const CFinalInput& input) override;
void Draw(float transInterp, float totalAlpha, float yOff) override;
float GetCameraYBias() const override;
bool VReady() const override;
void VActivate() override;
void RightTableSelectionChanged(int oldSel, int newSel) override;
void ChangedMode(EMode oldMode) override;
void UpdateRightTable() override;
bool ShouldLeftTableAdvance() const override;
bool ShouldRightTableAdvance() const override;
u32 GetRightTableCount() const override;
bool IsRightLogDynamic() const override;
void UpdateRightLogColors(bool active, const zeus::CColor& activeColor, const zeus::CColor& inactiveColor) override;
2018-12-07 21:30:43 -08:00
void UpdateRightLogHighlight(bool active, int idx, const zeus::CColor& activeColor,
const zeus::CColor& inactiveColor) override;
2017-02-17 18:19:50 -08:00
};
2018-12-07 21:30:43 -08:00
} // namespace MP1
2021-04-10 01:42:06 -07:00
} // namespace metaforce