metaforce/Runtime/GuiSys/CAuiImagePane.hpp

53 lines
1.7 KiB
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-03-09 19:47:37 -08:00
#include <array>
#include "Runtime/CToken.hpp"
#include "Runtime/rstl.hpp"
#include "Runtime/GuiSys/CGuiWidget.hpp"
#include <zeus/CVector2f.hpp>
#include <zeus/CVector3f.hpp>
namespace zeus {
class CColor;
}
2016-03-09 19:47:37 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
class CSimplePool;
2017-05-14 12:58:44 -07:00
class CTexture;
2016-03-09 19:47:37 -08:00
2018-12-07 21:30:43 -08:00
class CAuiImagePane : public CGuiWidget {
TLockedToken<CTexture> xb8_tex0Tok; // Used to be optional
CAssetId xc8_tex0;
CAssetId xcc_tex1;
zeus::CVector2f xd0_uvBias0;
zeus::CVector2f xd8_uvBias1;
rstl::reserved_vector<zeus::CVector3f, 4> xe0_coords;
rstl::reserved_vector<zeus::CVector2f, 4> x114_uvs;
zeus::CVector2f x138_tileSize;
float x140_interval = 0.f;
float x144_frameTimer = 0.f;
float x148_fadeDuration = 0.f;
float x14c_deResFactor = 0.f;
float x150_flashFactor = 0.f;
2022-03-05 13:46:53 -08:00
void DoDrawImagePane(const zeus::CColor& color, CTexture& tex, int frame, float blurAmt, bool noBlur) const;
2018-12-07 21:30:43 -08:00
public:
2018-12-07 21:30:43 -08:00
CAuiImagePane(const CGuiWidgetParms& parms, CSimplePool* sp, CAssetId, CAssetId,
rstl::reserved_vector<zeus::CVector3f, 4>&& coords, rstl::reserved_vector<zeus::CVector2f, 4>&& uvs,
bool initTex);
FourCC GetWidgetTypeID() const override { return FOURCC('IMGP'); }
2018-12-07 21:30:43 -08:00
static std::shared_ptr<CGuiWidget> Create(CGuiFrame* frame, CInputStream& in, CSimplePool* sp);
2017-05-14 12:58:44 -07:00
void Reset(ETraversalMode mode) override;
void Update(float dt) override;
void Draw(const CGuiWidgetDrawParms& params) override;
bool GetIsFinishedLoadingWidgetSpecific() override;
2018-12-07 21:30:43 -08:00
void SetTextureID0(CAssetId tex, CSimplePool* sp);
void SetAnimationParms(const zeus::CVector2f& vec, float interval, float duration);
void SetDeResFactor(float d) { x14c_deResFactor = d; }
void SetFlashFactor(float t) { x150_flashFactor = t; }
2016-03-09 19:47:37 -08:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce