metaforce/Runtime/GuiSys/CGuiLight.hpp

38 lines
886 B
C++
Raw Normal View History

2016-03-10 03:47:37 +00:00
#ifndef __URDE_CGUILIGHT_HPP__
#define __URDE_CGUILIGHT_HPP__
#include "CGuiWidget.hpp"
#include "Graphics/CLight.hpp"
2016-03-10 03:47:37 +00:00
namespace urde
{
class CGuiLight : public CGuiWidget
{
2016-03-16 20:49:35 +00:00
ELightType xf8_type;
float xfc_spotCutoff;
float x100_distC;
float x104_distL;
float x108_distQ;
float x10c_angleC;
float x110_angleL;
float x114_angleQ;
u32 x118_loadedIdx;
zeus::CColor x11c_color = zeus::CColor::skBlack;
public:
2016-03-16 20:49:35 +00:00
~CGuiLight();
CGuiLight(const CGuiWidgetParms& parms, const CLight& light);
2016-03-16 20:49:35 +00:00
FourCC GetWidgetTypeID() const {return FOURCC('LITE');}
2016-03-15 04:55:57 +00:00
CLight BuildLight() const;
2016-03-16 20:49:35 +00:00
void SetIsVisible(bool vis);
2016-03-15 04:55:57 +00:00
u32 GetLoadedIdx() const {return x118_loadedIdx;}
2016-03-17 02:18:01 +00:00
const zeus::CColor& GetColor() const {return x11c_color;}
2016-03-15 04:55:57 +00:00
static CGuiLight* Create(CGuiFrame* frame, CInputStream& in, bool);
};
2016-03-10 03:47:37 +00:00
}
#endif // __URDE_CGUILIGHT_HPP__