17 #ifndef _VIEWCONTROLLER_HH_
18 #define _VIEWCONTROLLER_HH_
44 public:
virtual void Init() = 0;
51 const double _yaw = 0,
const double _pitch = 0);
55 public:
virtual void Update() = 0;
60 public:
virtual void Resize(
const unsigned int _width,
61 const unsigned int _height);
65 public:
void SetEnabled(
bool _value);
69 public:
virtual void HandleMouseEvent(
74 public:
virtual void HandleKeyReleaseEvent(
const std::string &_key) = 0;
78 public:
virtual void HandleKeyPressEvent(
const std::string &_key) = 0;
82 public: std::string GetTypeString()
const;
Generic description of a mouse event.
Definition: MouseEvent.hh:35
The Vector3 class represents the generic vector containing 3 elements.
Definition: Vector3.hh:39
std::string typeString
Type of view controller.
Definition: ViewController.hh:91
UserCameraPtr camera
Pointer to the camera to control.
Definition: ViewController.hh:85
#define GZ_RENDERING_VISIBLE
Definition: system.hh:241
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
bool enabled
True if enabled.
Definition: ViewController.hh:88
boost::shared_ptr< UserCamera > UserCameraPtr
Definition: RenderTypes.hh:91
Base class for view controllers.
Definition: ViewController.hh:34