TDME2
1.9.121
src
tdme
tools
editor
misc
Gizmo.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <vector>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/engine/fwd-tdme.h
>
7
#include <
tdme/engine/model/fwd-tdme.h
>
8
#include <
tdme/engine/Transformations.h
>
9
#include <
tdme/math/Vector3.h
>
10
#include <
tdme/tools/editor/misc/fwd-tdme.h
>
11
12
using
std::vector;
13
14
using
tdme::engine::model::Node
;
15
using
tdme::engine::Engine
;
16
using
tdme::engine::Entity
;
17
using
tdme::engine::Object3D
;
18
using
tdme::engine::Transformations
;
19
using
tdme::math::Vector3
;
20
21
/**
22
* Gizmo tool for views
23
* @author Andreas Drewke
24
*/
25
class
tdme::tools::editor::misc::Gizmo
26
{
27
public
:
28
enum
GizmoType
{
29
GIZMOTYPE_NONE
= 0,
30
GIZMOTYPE_TRANSLATE
= 1,
31
GIZMOTYPE_ROTATE
= 2,
32
GIZMOTYPE_SCALE
= 4,
33
GIZMOTYPE_ALL
= 8,
34
};
35
enum
GizmoMode
{
36
GIZMOMODE_NONE
,
37
GIZMOMODE_TRANSLATE_X
,
38
GIZMOMODE_TRANSLATE_Y
,
39
GIZMOMODE_TRANSLATE_Z
,
40
GIZMOMODE_TRANSLATEPLANE_X
,
41
GIZMOMODE_TRANSLATEPLANE_Y
,
42
GIZMOMODE_TRANSLATEPLANE_Z
,
43
GIZMOMODE_SCALE_X
,
44
GIZMOMODE_SCALE_Y
,
45
GIZMOMODE_SCALE_Z
,
46
GIZMOMODE_SCALEPLANE_X
,
47
GIZMOMODE_SCALEPLANE_Y
,
48
GIZMOMODE_SCALEPLANE_Z
,
49
GIZMOMODE_ROTATE_X
,
50
GIZMOMODE_ROTATE_Y
,
51
GIZMOMODE_ROTATE_Z
52
};
53
54
private
:
55
Engine
*
engine
{
nullptr
};
56
string
id
;
57
GizmoType
gizmoType
;
58
GizmoMode
gizmoMode
;
59
Vector3
gizmoLastResult
;
60
bool
gizmoLastResultAvailable
;
61
int32_t
gizmoTypeMask
;
62
63
public
:
64
/**
65
* Public constructor
66
* @param engine engine
67
* @param id id
68
* @param gizmoTypeMask gizmo type mask
69
*/
70
Gizmo
(
Engine
*
engine
,
const
string
&
id
, int32_t
gizmoTypeMask
=
GIZMOTYPE_TRANSLATE
|
GIZMOTYPE_ROTATE
|
GIZMOTYPE_SCALE
);
71
72
/**
73
* Destructor
74
*/
75
virtual
~Gizmo
();
76
77
/**
78
* Set engine
79
* @param engine engine
80
*/
81
inline
void
setEngine
(
Engine
*
engine
) {
82
this->engine =
engine
;
83
}
84
85
/**
86
* @return GIZMO type mask
87
*/
88
inline
int32_t
getGizmoTypeMask
()
const
{
89
return
gizmoTypeMask
;
90
}
91
92
/**
93
* Set GIZMO type mask
94
* @param gizmoTypeMask GIZMO type mask
95
*/
96
inline
void
setGizmoTypeMask
(
int
gizmoTypeMask
) {
97
this->gizmoTypeMask =
gizmoTypeMask
;
98
if
((
gizmoType
&
gizmoTypeMask
) == 0)
gizmoType
=
GIZMOTYPE_ALL
;
99
}
100
101
/**
102
* @return GIZMO type
103
*/
104
inline
GizmoType
getGizmoType
()
const
{
105
return
gizmoType
;
106
}
107
108
/**
109
* Set GIZMO type
110
* @param gizmoType GIZMO type
111
*/
112
inline
void
setGizmoType
(
GizmoType
gizmoType
) {
113
if
(
gizmoType
!=
GIZMOTYPE_ALL
&& (
gizmoType
&
gizmoTypeMask
) == 0)
return
;
114
this->gizmoType =
gizmoType
;
115
}
116
117
/**
118
* @return GIZMO mode
119
*/
120
inline
GizmoMode
getGizmoMode
()
const
{
121
return
gizmoMode
;
122
}
123
124
/**
125
* Set GIZMO mode
126
* @param gizmoMode gizmo mode
127
*/
128
inline
void
setGizmoMode
(
GizmoMode
gizmoMode
) {
129
this->gizmoMode =
gizmoMode
;
130
if
(this->gizmoMode ==
GIZMOMODE_NONE
)
gizmoLastResultAvailable
=
false
;
131
}
132
133
/**
134
* Update gizmo
135
* @param gizmoCenter GIZMO center
136
* @param transformations transformations used for rotation
137
*/
138
void
updateGizmo
(
const
Vector3
& gizmoCenter,
const
Transformations
& transformations);
139
140
/**
141
* @return GIZMO object
142
*/
143
Object3D
*
getGizmoObject3D
();
144
145
/**
146
* Remove gizmo
147
*/
148
void
removeGizmo
();
149
150
/**
151
* Determine movement on a plane given by 4 vertices
152
* @param mouseX current mouse X position
153
* @param mouseY current mouse Y position
154
* @param vertices 4 vertices that span a plane
155
* @param deltaMovement delta movement result
156
* @return success
157
*/
158
bool
determineGizmoMovement
(
int
mouseX,
int
mouseY, vector<Vector3> vertices,
Vector3
& deltaMovement);
159
160
/**
161
* Determine GIZMO delta transformations
162
* @param mouseLastX last mouse X position
163
* @param mouseLastY last mouse Y position
164
* @param mouseX mouse X position
165
* @param mouseY mouse Y position
166
* @param deltaTranslation determined delta translation
167
* @param deltaRotation determined delta rotations
168
* @param deltaScale determined delta scale
169
*/
170
bool
determineGizmoDeltaTransformations
(
int
mouseLastX,
int
mouseLastY,
int
mouseX,
int
mouseY,
Vector3
& deltaTranslation,
Vector3
& deltaRotation,
Vector3
& deltaScale);
171
172
/**
173
* Select GIZMO mode
174
* @param selectedEntity selected entity
175
* @param selectedEntityNode selected entity node
176
*/
177
bool
determineGizmoMode
(
Entity
* selectedEntity,
Node
* selectedEntityNode);
178
179
/**
180
* Set gizmo rotation
181
* @param transformations transformations containing rotations
182
*/
183
void
setGizmoRotation
(
const
Transformations
& transformations);
184
185
};
Transformations.h
Vector3.h
tdme::engine::Engine
Engine main class.
Definition:
Engine.h:122
tdme::engine::Entity
TDME engine entity.
Definition:
Entity.h:31
tdme::engine::Object3D
Object 3D to be used with engine class.
Definition:
Object3D.h:60
tdme::engine::Transformations
Transformations which contain scale, rotations and translation.
Definition:
Transformations.h:27
tdme::engine::model::Node
Model node.
Definition:
Node.h:31
tdme::math::Vector3
3D vector 3 class
Definition:
Vector3.h:22
tdme::tools::editor::misc::Gizmo
Gizmo tool for views.
Definition:
Gizmo.h:26
tdme::tools::editor::misc::Gizmo::~Gizmo
virtual ~Gizmo()
Destructor.
Definition:
Gizmo.cpp:48
tdme::tools::editor::misc::Gizmo::engine
Engine * engine
Definition:
Gizmo.h:55
tdme::tools::editor::misc::Gizmo::getGizmoTypeMask
int32_t getGizmoTypeMask() const
Definition:
Gizmo.h:88
tdme::tools::editor::misc::Gizmo::updateGizmo
void updateGizmo(const Vector3 &gizmoCenter, const Transformations &transformations)
Update gizmo.
Definition:
Gizmo.cpp:51
tdme::tools::editor::misc::Gizmo::setGizmoMode
void setGizmoMode(GizmoMode gizmoMode)
Set GIZMO mode.
Definition:
Gizmo.h:128
tdme::tools::editor::misc::Gizmo::setEngine
void setEngine(Engine *engine)
Set engine.
Definition:
Gizmo.h:81
tdme::tools::editor::misc::Gizmo::getGizmoObject3D
Object3D * getGizmoObject3D()
Definition:
Gizmo.cpp:203
tdme::tools::editor::misc::Gizmo::getGizmoType
GizmoType getGizmoType() const
Definition:
Gizmo.h:104
tdme::tools::editor::misc::Gizmo::GizmoMode
GizmoMode
Definition:
Gizmo.h:35
tdme::tools::editor::misc::Gizmo::GIZMOMODE_TRANSLATE_Z
@ GIZMOMODE_TRANSLATE_Z
Definition:
Gizmo.h:39
tdme::tools::editor::misc::Gizmo::GIZMOMODE_TRANSLATE_Y
@ GIZMOMODE_TRANSLATE_Y
Definition:
Gizmo.h:38
tdme::tools::editor::misc::Gizmo::GIZMOMODE_TRANSLATEPLANE_X
@ GIZMOMODE_TRANSLATEPLANE_X
Definition:
Gizmo.h:40
tdme::tools::editor::misc::Gizmo::GIZMOMODE_ROTATE_Z
@ GIZMOMODE_ROTATE_Z
Definition:
Gizmo.h:51
tdme::tools::editor::misc::Gizmo::GIZMOMODE_TRANSLATEPLANE_Y
@ GIZMOMODE_TRANSLATEPLANE_Y
Definition:
Gizmo.h:41
tdme::tools::editor::misc::Gizmo::GIZMOMODE_ROTATE_X
@ GIZMOMODE_ROTATE_X
Definition:
Gizmo.h:49
tdme::tools::editor::misc::Gizmo::GIZMOMODE_TRANSLATEPLANE_Z
@ GIZMOMODE_TRANSLATEPLANE_Z
Definition:
Gizmo.h:42
tdme::tools::editor::misc::Gizmo::GIZMOMODE_ROTATE_Y
@ GIZMOMODE_ROTATE_Y
Definition:
Gizmo.h:50
tdme::tools::editor::misc::Gizmo::GIZMOMODE_SCALEPLANE_X
@ GIZMOMODE_SCALEPLANE_X
Definition:
Gizmo.h:46
tdme::tools::editor::misc::Gizmo::GIZMOMODE_NONE
@ GIZMOMODE_NONE
Definition:
Gizmo.h:36
tdme::tools::editor::misc::Gizmo::GIZMOMODE_SCALE_Y
@ GIZMOMODE_SCALE_Y
Definition:
Gizmo.h:44
tdme::tools::editor::misc::Gizmo::GIZMOMODE_SCALEPLANE_Z
@ GIZMOMODE_SCALEPLANE_Z
Definition:
Gizmo.h:48
tdme::tools::editor::misc::Gizmo::GIZMOMODE_SCALE_X
@ GIZMOMODE_SCALE_X
Definition:
Gizmo.h:43
tdme::tools::editor::misc::Gizmo::GIZMOMODE_SCALEPLANE_Y
@ GIZMOMODE_SCALEPLANE_Y
Definition:
Gizmo.h:47
tdme::tools::editor::misc::Gizmo::GIZMOMODE_SCALE_Z
@ GIZMOMODE_SCALE_Z
Definition:
Gizmo.h:45
tdme::tools::editor::misc::Gizmo::GIZMOMODE_TRANSLATE_X
@ GIZMOMODE_TRANSLATE_X
Definition:
Gizmo.h:37
tdme::tools::editor::misc::Gizmo::determineGizmoMovement
bool determineGizmoMovement(int mouseX, int mouseY, vector< Vector3 > vertices, Vector3 &deltaMovement)
Determine movement on a plane given by 4 vertices.
Definition:
Gizmo.cpp:219
tdme::tools::editor::misc::Gizmo::setGizmoRotation
void setGizmoRotation(const Transformations &transformations)
Set gizmo rotation.
Definition:
Gizmo.cpp:426
tdme::tools::editor::misc::Gizmo::determineGizmoDeltaTransformations
bool determineGizmoDeltaTransformations(int mouseLastX, int mouseLastY, int mouseX, int mouseY, Vector3 &deltaTranslation, Vector3 &deltaRotation, Vector3 &deltaScale)
Determine GIZMO delta transformations.
Definition:
Gizmo.cpp:254
tdme::tools::editor::misc::Gizmo::gizmoLastResultAvailable
bool gizmoLastResultAvailable
Definition:
Gizmo.h:60
tdme::tools::editor::misc::Gizmo::removeGizmo
void removeGizmo()
Remove gizmo.
Definition:
Gizmo.cpp:211
tdme::tools::editor::misc::Gizmo::gizmoLastResult
Vector3 gizmoLastResult
Definition:
Gizmo.h:59
tdme::tools::editor::misc::Gizmo::setGizmoType
void setGizmoType(GizmoType gizmoType)
Set GIZMO type.
Definition:
Gizmo.h:112
tdme::tools::editor::misc::Gizmo::gizmoMode
GizmoMode gizmoMode
Definition:
Gizmo.h:58
tdme::tools::editor::misc::Gizmo::Gizmo
Gizmo(Engine *engine, const string &id, int32_t gizmoTypeMask=GIZMOTYPE_TRANSLATE|GIZMOTYPE_ROTATE|GIZMOTYPE_SCALE)
Public constructor.
Definition:
Gizmo.cpp:38
tdme::tools::editor::misc::Gizmo::getGizmoMode
GizmoMode getGizmoMode() const
Definition:
Gizmo.h:120
tdme::tools::editor::misc::Gizmo::determineGizmoMode
bool determineGizmoMode(Entity *selectedEntity, Node *selectedEntityNode)
Select GIZMO mode.
Definition:
Gizmo.cpp:400
tdme::tools::editor::misc::Gizmo::gizmoType
GizmoType gizmoType
Definition:
Gizmo.h:57
tdme::tools::editor::misc::Gizmo::id
string id
Definition:
Gizmo.h:56
tdme::tools::editor::misc::Gizmo::GizmoType
GizmoType
Definition:
Gizmo.h:28
tdme::tools::editor::misc::Gizmo::GIZMOTYPE_ALL
@ GIZMOTYPE_ALL
Definition:
Gizmo.h:33
tdme::tools::editor::misc::Gizmo::GIZMOTYPE_SCALE
@ GIZMOTYPE_SCALE
Definition:
Gizmo.h:32
tdme::tools::editor::misc::Gizmo::GIZMOTYPE_TRANSLATE
@ GIZMOTYPE_TRANSLATE
Definition:
Gizmo.h:30
tdme::tools::editor::misc::Gizmo::GIZMOTYPE_NONE
@ GIZMOTYPE_NONE
Definition:
Gizmo.h:29
tdme::tools::editor::misc::Gizmo::GIZMOTYPE_ROTATE
@ GIZMOTYPE_ROTATE
Definition:
Gizmo.h:31
tdme::tools::editor::misc::Gizmo::setGizmoTypeMask
void setGizmoTypeMask(int gizmoTypeMask)
Set GIZMO type mask.
Definition:
Gizmo.h:96
tdme::tools::editor::misc::Gizmo::gizmoTypeMask
int32_t gizmoTypeMask
Definition:
Gizmo.h:61
fwd-tdme.h
fwd-tdme.h
tdme.h
fwd-tdme.h
Generated by
1.9.3