TDME2
1.9.121
src
tdme
tools
editor
misc
CameraRotationInputHandler.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/engine/fwd-tdme.h
>
5
#include <
tdme/engine/primitives/BoundingBox.h
>
6
#include <
tdme/engine/Transformations.h
>
7
#include <
tdme/gui/events/GUIInputEventHandler.h
>
8
#include <
tdme/tools/editor/misc/fwd-tdme.h
>
9
10
using
tdme::engine::primitives::BoundingBox
;
11
using
tdme::engine::Engine
;
12
using
tdme::engine::Transformations
;
13
using
tdme::gui::events::GUIInputEventHandler
;
14
using
tdme::tools::editor::misc::CameraRotationInputHandlerEventHandler
;
15
16
/**
17
* Camera Rotation Input Handler
18
* @author Andreas Drewke
19
* @version $Id$
20
*/
21
class
tdme::tools::editor::misc::CameraRotationInputHandler
final
22
:
public
GUIInputEventHandler
23
{
24
private
:
25
Engine
*
engine
{
nullptr
};
26
bool
mouseDragging
;
27
bool
keyLeft
;
28
bool
keyRight
;
29
bool
keyUp
;
30
bool
keyDown
;
31
bool
keyPeriod
;
32
bool
keyComma
;
33
bool
keyPlus
;
34
bool
keyMinus
;
35
bool
keyR
;
36
int
mouseLastX
;
37
int
mouseLastY
;
38
Transformations
lookFromRotations
;
39
float
defaultScale
;
40
float
scale
;
41
bool
resetRequested
;
42
BoundingBox
boundingBoxTransformed
;
43
CameraRotationInputHandlerEventHandler
*
eventHandler
{
nullptr
};
44
45
public
:
46
/**
47
* Public constructor
48
* @param engine engine
49
* @param eventHandler event handler
50
*/
51
CameraRotationInputHandler
(
Engine
*
engine
,
CameraRotationInputHandlerEventHandler
*
eventHandler
=
nullptr
);
52
53
/**
54
* Destructor
55
*/
56
~CameraRotationInputHandler
();
57
58
/**
59
* @return look from rotation
60
*/
61
const
Transformations
&
getLookFromRotations
();
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
};
BoundingBox.h
GUIInputEventHandler.h
Transformations.h
tdme::engine::Engine
Engine main class.
Definition:
Engine.h:122
tdme::engine::Transformations
Transformations which contain scale, rotations and translation.
Definition:
Transformations.h:27
tdme::engine::primitives::BoundingBox
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition:
BoundingBox.h:25
tdme::tools::editor::misc::CameraRotationInputHandler
Camera Rotation Input Handler.
Definition:
CameraRotationInputHandler.h:23
tdme::tools::editor::misc::CameraRotationInputHandler::engine
Engine * engine
Definition:
CameraRotationInputHandler.h:25
tdme::tools::editor::misc::CameraRotationInputHandler::boundingBoxTransformed
BoundingBox boundingBoxTransformed
Definition:
CameraRotationInputHandler.h:42
tdme::tools::editor::misc::CameraRotationInputHandler::keyPeriod
bool keyPeriod
Definition:
CameraRotationInputHandler.h:31
tdme::tools::editor::misc::CameraRotationInputHandler::getDefaultScale
float getDefaultScale()
Definition:
CameraRotationInputHandler.h:66
tdme::tools::editor::misc::CameraRotationInputHandler::scale
float scale
Definition:
CameraRotationInputHandler.h:40
tdme::tools::editor::misc::CameraRotationInputHandler::eventHandler
CameraRotationInputHandlerEventHandler * eventHandler
Definition:
CameraRotationInputHandler.h:43
tdme::tools::editor::misc::CameraRotationInputHandler::getScale
float getScale()
Definition:
CameraRotationInputHandler.h:81
tdme::tools::editor::misc::CameraRotationInputHandler::~CameraRotationInputHandler
~CameraRotationInputHandler()
Destructor.
Definition:
CameraRotationInputHandler.cpp:56
tdme::tools::editor::misc::CameraRotationInputHandler::mouseLastX
int mouseLastX
Definition:
CameraRotationInputHandler.h:36
tdme::tools::editor::misc::CameraRotationInputHandler::handleInputEvents
void handleInputEvents() override
Handle input events that have not yet been processed.
Definition:
CameraRotationInputHandler.cpp:69
tdme::tools::editor::misc::CameraRotationInputHandler::defaultScale
float defaultScale
Definition:
CameraRotationInputHandler.h:39
tdme::tools::editor::misc::CameraRotationInputHandler::keyMinus
bool keyMinus
Definition:
CameraRotationInputHandler.h:34
tdme::tools::editor::misc::CameraRotationInputHandler::mouseDragging
bool mouseDragging
Definition:
CameraRotationInputHandler.h:26
tdme::tools::editor::misc::CameraRotationInputHandler::getLookFromRotations
const Transformations & getLookFromRotations()
Definition:
CameraRotationInputHandler.cpp:59
tdme::tools::editor::misc::CameraRotationInputHandler::setDefaultScale
void setDefaultScale(float defaultScale)
Set default scale.
Definition:
CameraRotationInputHandler.h:74
tdme::tools::editor::misc::CameraRotationInputHandler::keyUp
bool keyUp
Definition:
CameraRotationInputHandler.h:29
tdme::tools::editor::misc::CameraRotationInputHandler::keyComma
bool keyComma
Definition:
CameraRotationInputHandler.h:32
tdme::tools::editor::misc::CameraRotationInputHandler::keyPlus
bool keyPlus
Definition:
CameraRotationInputHandler.h:33
tdme::tools::editor::misc::CameraRotationInputHandler::keyRight
bool keyRight
Definition:
CameraRotationInputHandler.h:28
tdme::tools::editor::misc::CameraRotationInputHandler::keyDown
bool keyDown
Definition:
CameraRotationInputHandler.h:30
tdme::tools::editor::misc::CameraRotationInputHandler::resetRequested
bool resetRequested
Definition:
CameraRotationInputHandler.h:41
tdme::tools::editor::misc::CameraRotationInputHandler::mouseLastY
int mouseLastY
Definition:
CameraRotationInputHandler.h:37
tdme::tools::editor::misc::CameraRotationInputHandler::reset
void reset()
Reset.
Definition:
CameraRotationInputHandler.cpp:64
tdme::tools::editor::misc::CameraRotationInputHandler::setScale
void setScale(float scale)
Set scale.
Definition:
CameraRotationInputHandler.h:89
tdme::tools::editor::misc::CameraRotationInputHandler::CameraRotationInputHandler
CameraRotationInputHandler(Engine *engine, CameraRotationInputHandlerEventHandler *eventHandler=nullptr)
Public constructor.
Definition:
CameraRotationInputHandler.cpp:31
tdme::tools::editor::misc::CameraRotationInputHandler::keyR
bool keyR
Definition:
CameraRotationInputHandler.h:35
tdme::tools::editor::misc::CameraRotationInputHandler::lookFromRotations
Transformations lookFromRotations
Definition:
CameraRotationInputHandler.h:38
tdme::tools::editor::misc::CameraRotationInputHandler::keyLeft
bool keyLeft
Definition:
CameraRotationInputHandler.h:27
fwd-tdme.h
tdme::gui::events::GUIInputEventHandler
GUI input event handler interface.
Definition:
GUIInputEventHandler.h:12
tdme::tools::editor::misc::CameraRotationInputHandlerEventHandler
Camera Rotation Input Handler Event Handler.
Definition:
CameraRotationInputHandlerEventHandler.h:12
tdme.h
fwd-tdme.h
Generated by
1.9.3