X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdesigner%2Fcameracontroller.h;h=5b6c3155314c74b2eb5b705aa90eabbeab67eee2;hb=abed4a255060d5a233ec0ac2dd60af9132e29201;hp=a2ef86d6bef45f96a0c36ad5631d682637aae675;hpb=495c54e187ddbb7514c983e1829a69d82ccad5f3;p=r2c2.git diff --git a/source/designer/cameracontroller.h b/source/designer/cameracontroller.h index a2ef86d..5b6c315 100644 --- a/source/designer/cameracontroller.h +++ b/source/designer/cameracontroller.h @@ -1,15 +1,10 @@ -/* $Id$ - -This file is part of R²C² -Copyright © 2010-2011 Mikkosoft Productions, Mikko Rasa -Distributed under the GPL -*/ - #ifndef CAMERACONTROLLER_H_ #define CAMERACONTROLLER_H_ -#include +#include #include +#include +#include #include "3d/view.h" /** @@ -38,16 +33,19 @@ private: }; R2C2::View3D &view; - Msp::Graphics::EventSource &event_source; + Msp::Input::Keyboard &keyboard; + Msp::Input::Mouse &mouse; Msp::GL::Camera &camera; int move_x; int move_y; int pointer_x; int pointer_y; + bool shift_pressed; + bool ctrl_pressed; DragMode drag_mode; public: - CameraController(R2C2::View3D &, Msp::Graphics::EventSource &); + CameraController(R2C2::View3D &, Msp::Input::Keyboard &, Msp::Input::Mouse &); void top_down(); void set_look_direction(const Msp::GL::Vector3 &); @@ -55,16 +53,16 @@ public: void move(float, float); void adjust_distance(float); - void rotate(float); - void pitch(float); + void rotate(const R2C2::Angle &); + void pitch(const R2C2::Angle &); void tick(float); private: - void button_press(int, int, unsigned, unsigned); - void button_release(int, int, unsigned, unsigned); - void pointer_motion(int, int); - void key_press(unsigned, unsigned, wchar_t); - void key_release(unsigned, unsigned); + void button_press(unsigned); + void button_release(unsigned); + void axis_motion(unsigned, float, float); + void key_press(unsigned); + void key_release(unsigned); public: /** Return the focus point, i.e. where the look ray intersects with ground. */