metaforce/Runtime/GuiSys/CScanDisplay.hpp

97 lines
3.2 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-08-14 14:38:05 -07:00
#include <optional>
#include <utility>
#include "Runtime/CScannableObjectInfo.hpp"
#include "Runtime/RetroTypes.hpp"
#include "Runtime/rstl.hpp"
#include "Runtime/Camera/CCameraFilter.hpp"
#include "Runtime/Graphics/CTexture.hpp"
#include <zeus/CColor.hpp>
#include <zeus/CQuaternion.hpp>
#include <zeus/CVector2f.hpp>
2016-08-14 14:38:05 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
class CAuiImagePane;
class CGuiFrame;
class CGuiModel;
2016-08-14 14:38:05 -07:00
class CGuiTextPane;
class CGuiWidget;
2017-05-16 22:04:38 -07:00
class CStringTable;
struct CFinalInput;
2017-05-16 22:04:38 -07:00
2018-12-07 21:30:43 -08:00
class CScanDisplay {
friend class CHudDecoInterfaceScan;
2016-08-14 14:38:05 -07:00
public:
2018-12-07 21:30:43 -08:00
class CDataDot {
public:
enum class EDotState { Hidden, Seek, Hold, RevealPane, Done };
private:
EDotState x0_dotState = EDotState::Hidden;
zeus::CVector2f x4_startPos;
zeus::CVector2f xc_curPos;
zeus::CVector2f x14_targetPos;
float x1c_transDur = 0.f;
float x20_remTime = 0.f;
float x24_alpha = 0.f;
float x28_desiredAlpha = 0.f;
public:
explicit CDataDot(const TLockedToken<CTexture>& dataDotTex) {}
2018-12-07 21:30:43 -08:00
void Update(float dt);
void Draw(const zeus::CColor& color, float radius);
2018-12-07 21:30:43 -08:00
float GetTransitionFactor() const { return x1c_transDur > 0.f ? x20_remTime / x1c_transDur : 0.f; }
void StartTransitionTo(const zeus::CVector2f&, float);
void SetDestPosition(const zeus::CVector2f&);
void SetDesiredAlpha(float a) { x28_desiredAlpha = a; }
void SetDotState(EDotState s) { x0_dotState = s; }
void SetAlpha(float a) { x24_alpha = a; }
const zeus::CVector2f& GetCurrPosition() const { return xc_curPos; }
EDotState GetDotState() const { return x0_dotState; }
};
2016-08-14 14:38:05 -07:00
2018-12-07 21:30:43 -08:00
enum class EScanState { Inactive, Downloading, DownloadComplete, ViewingScan, Done };
2016-08-15 13:43:04 -07:00
2017-04-01 20:03:37 -07:00
private:
2018-12-07 21:30:43 -08:00
TLockedToken<CTexture> x0_dataDot;
EScanState xc_state = EScanState::Inactive;
TUniqueId x10_objId = kInvalidUniqueId;
std::optional<CScannableObjectInfo> x14_scannableInfo;
2018-12-07 21:30:43 -08:00
const CGuiFrame& xa0_selHud;
CGuiWidget* xa4_textGroup = nullptr;
CGuiTextPane* xa8_message = nullptr;
CGuiTextPane* xac_scrollMessage = nullptr;
CGuiModel* xb0_xmark = nullptr;
CGuiModel* xb4_abutton = nullptr;
CGuiModel* xb8_dash = nullptr;
rstl::reserved_vector<CDataDot, 4> xbc_dataDots;
rstl::reserved_vector<std::pair<float, CAuiImagePane*>, 4> x170_paneStates;
TLockedToken<CStringTable> x194_scanStr; // Used to be optional
float x1a4_xAlpha = 0.f;
float x1a8_bodyAlpha = 0.f;
int x1ac_pageCounter = 0;
float x1b0_aPulse = 1.f;
bool x1b4_scanComplete = false;
2017-05-16 22:04:38 -07:00
float GetDownloadStartTime(size_t idx) const;
float GetDownloadFraction(size_t idx, float scanningTime) const;
2018-12-07 21:30:43 -08:00
static void SetScanMessageTypeEffect(CGuiTextPane* pane, bool type);
2017-04-01 20:03:37 -07:00
2016-08-14 14:38:05 -07:00
public:
explicit CScanDisplay(const CGuiFrame& selHud);
2018-12-07 21:30:43 -08:00
void ProcessInput(const CFinalInput& input);
void StartScan(TUniqueId id, const CScannableObjectInfo& scanInfo, CGuiTextPane* message, CGuiTextPane* scrollMessage,
CGuiWidget* textGroup, CGuiModel* xmark, CGuiModel* abutton, CGuiModel* dash, float scanTime);
void StopScan();
void Update(float dt, float scanningTime);
void Draw();
2018-12-07 21:30:43 -08:00
EScanState GetScanState() const { return xc_state; }
TUniqueId ScanTarget() const { return x10_objId; }
2016-08-14 14:38:05 -07:00
};
2017-05-16 22:04:38 -07:00
2021-04-10 01:42:06 -07:00
} // namespace metaforce