metaforce/Runtime/GuiSys/CGuiCamera.hpp

69 lines
2.0 KiB
C++
Raw Normal View History

2016-03-10 03:47:37 +00:00
#ifndef __URDE_CGUICAMERA_HPP__
#define __URDE_CGUICAMERA_HPP__
#include "CGuiWidget.hpp"
namespace urde
{
class CSimplePool;
2016-03-10 03:47:37 +00:00
class CGuiCamera : public CGuiWidget
{
public:
2016-06-23 19:40:09 +00:00
enum class EProjection
{
Perspective,
Orthographic
};
2017-05-21 16:01:04 +00:00
struct SProjection
2016-03-16 03:37:51 +00:00
{
2017-05-21 16:01:04 +00:00
union
{
2017-05-21 16:01:04 +00:00
struct
{
float xbc_left;
float xc0_right;
float xc4_top;
float xc8_bottom;
float xcc_znear;
float xd0_zfar;
};
struct
{
float xbc_fov;
float xc0_aspect;
float xc4_znear;
float xc8_zfar;
};
};
2017-05-21 16:01:04 +00:00
SProjection(float left, float right, float top, float bottom, float znear, float zfar)
: xbc_left(left), xc0_right(right), xc4_top(top), xc8_bottom(bottom), xcc_znear(znear),
xd0_zfar(zfar) {}
SProjection(float fov, float aspect, float znear, float zfar)
: xbc_fov(fov), xc0_aspect(aspect), xc4_znear(znear), xc8_zfar(zfar) {}
2016-03-16 03:37:51 +00:00
};
2017-05-21 16:01:04 +00:00
private:
EProjection xb8_projtype;
SProjection m_proj;
public:
2016-03-16 03:37:51 +00:00
CGuiCamera(const CGuiWidgetParms& parms, float left, float right,
float top, float bottom,
float znear, float zfar);
CGuiCamera(const CGuiWidgetParms& parms, float fov, float aspect, float znear, float zfar);
2017-01-29 03:58:16 +00:00
FourCC GetWidgetTypeID() const { return FOURCC('CAMR'); }
static std::shared_ptr<CGuiWidget> Create(CGuiFrame* frame, CInputStream& in, CSimplePool* sp);
2016-03-16 03:37:51 +00:00
zeus::CVector3f ConvertToScreenSpace(const zeus::CVector3f& vec) const;
2017-05-21 16:01:04 +00:00
const SProjection& GetProjection() const { return m_proj; }
void SetFov(float fov) { m_proj.xbc_fov = fov; }
2016-03-16 03:37:51 +00:00
void Draw(const CGuiWidgetDrawParms& parms) const;
std::shared_ptr<CGuiCamera> shared_from_this()
{ return std::static_pointer_cast<CGuiCamera>(CGuiObject::shared_from_this()); }
};
2016-03-10 03:47:37 +00:00
}
#endif // __URDE_CGUICAMERA_HPP__