TDME2 1.9.121
CameraRotationInputHandler.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
9
15
16/**
17 * Camera Rotation Input Handler
18 * @author Andreas Drewke
19 * @version $Id$
20 */
23{
24private:
25 Engine* engine { nullptr };
27 bool keyLeft;
29 bool keyUp;
30 bool keyDown;
33 bool keyPlus;
35 bool keyR;
40 float scale;
44
45public:
46 /**
47 * Public constructor
48 * @param engine engine
49 * @param eventHandler event handler
50 */
52
53 /**
54 * Destructor
55 */
57
58 /**
59 * @return look from rotation
60 */
62
63 /**
64 * @return default scale
65 */
66 inline float getDefaultScale() {
67 return defaultScale;
68 }
69
70 /**
71 * Set default scale
72 * @param scale default scale
73 */
74 inline void setDefaultScale(float defaultScale) {
75 this->defaultScale = defaultScale;
76 }
77
78 /**
79 * @return scale
80 */
81 inline float getScale() {
82 return scale;
83 }
84
85 /**
86 * Set scale
87 * @param scale scale
88 */
89 inline void setScale(float scale) {
90 this->scale = scale;
91 }
92
93 /**
94 * Reset
95 */
96 void reset();
97
98 // overriden methods
99 void handleInputEvents() override;
100
101};
Engine main class.
Definition: Engine.h:122
Transformations which contain scale, rotations and translation.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
void handleInputEvents() override
Handle input events that have not yet been processed.
void setDefaultScale(float defaultScale)
Set default scale.
CameraRotationInputHandler(Engine *engine, CameraRotationInputHandlerEventHandler *eventHandler=nullptr)
Public constructor.
GUI input event handler interface.