metaforce/Runtime/GuiSys/CGuiModel.hpp

29 lines
804 B
C++
Raw Normal View History

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