2016-03-10 03:47:37 +00:00
|
|
|
#ifndef __URDE_CGUICAMERA_HPP__
|
|
|
|
#define __URDE_CGUICAMERA_HPP__
|
|
|
|
|
|
|
|
#include "CGuiWidget.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
2017-01-22 01:40:12 +00:00
|
|
|
class CSimplePool;
|
2016-03-10 03:47:37 +00:00
|
|
|
|
2016-03-12 04:58:56 +00:00
|
|
|
class CGuiCamera : public CGuiWidget
|
|
|
|
{
|
|
|
|
public:
|
2016-06-23 19:40:09 +00:00
|
|
|
enum class EProjection
|
2016-03-12 04:58:56 +00:00
|
|
|
{
|
|
|
|
Perspective,
|
|
|
|
Orthographic
|
|
|
|
};
|
|
|
|
private:
|
2016-06-23 19:40:09 +00:00
|
|
|
EProjection xf8_proj;
|
2016-03-16 03:37:51 +00:00
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
float xfc_fov;
|
|
|
|
float x100_aspect;
|
|
|
|
float x104_znear;
|
|
|
|
float x108_zfar;
|
|
|
|
};
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
float xfc_left;
|
|
|
|
float x100_right;
|
|
|
|
float x104_top;
|
|
|
|
float x108_bottom;
|
|
|
|
float x10c_znear;
|
|
|
|
float x110_zfar;
|
|
|
|
};
|
|
|
|
};
|
2016-03-12 04:58:56 +00:00
|
|
|
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);
|
2016-03-12 04:58:56 +00:00
|
|
|
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'); }
|
|
|
|
|
2017-01-22 01:40:12 +00:00
|
|
|
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;
|
|
|
|
void Draw(const CGuiWidgetDrawParms& parms) const;
|
2017-01-22 01:40:12 +00:00
|
|
|
|
|
|
|
std::shared_ptr<CGuiCamera> shared_from_this()
|
|
|
|
{ return std::static_pointer_cast<CGuiCamera>(CGuiObject::shared_from_this()); }
|
2016-03-12 04:58:56 +00:00
|
|
|
};
|
2016-03-10 03:47:37 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CGUICAMERA_HPP__
|