metaforce/Runtime/GuiSys/CGuiModel.hpp

32 lines
993 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-03-10 03:47:37 +00:00
#include <memory>
#include "Runtime/CToken.hpp"
#include "Runtime/Graphics/CModel.hpp"
#include "Runtime/GuiSys/CGuiWidget.hpp"
2016-03-10 03:47:37 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
class CSimplePool;
2016-03-10 03:47:37 +00:00
2018-12-08 05:30:43 +00:00
class CGuiModel : public CGuiWidget {
TLockedToken<CModel> xb8_model;
CAssetId xc8_modelId;
u32 xcc_lightMask;
public:
2018-12-08 05:30:43 +00:00
CGuiModel(const CGuiWidgetParms& parms, CSimplePool* sp, CAssetId modelId, u32 lightMask, bool flag);
FourCC GetWidgetTypeID() const override { return FOURCC('MODL'); }
2016-03-17 02:18:01 +00:00
2019-01-22 04:23:51 +00:00
std::vector<CAssetId> GetModelAssets() const { return {xc8_modelId}; }
const TLockedToken<CModel>& GetModel() const { return xb8_model; }
bool GetIsFinishedLoadingWidgetSpecific() const override;
void Touch() const override;
void Draw(const CGuiWidgetDrawParms& parms) const override;
bool TestCursorHit(const zeus::CMatrix4f& vp, const zeus::CVector2f& point) const override;
2016-03-17 02:18:01 +00:00
2018-12-08 05:30:43 +00:00
static std::shared_ptr<CGuiWidget> Create(CGuiFrame* frame, CInputStream& in, CSimplePool* sp);
};
2016-03-10 03:47:37 +00:00
2018-12-08 05:30:43 +00:00
} // namespace urde