TDME2
1.9.121
src
tdme
tools
editor
tabviews
subviews
PrototypePhysicsSubView.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/engine/fwd-tdme.h
>
7
#include <
tdme/engine/prototype/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
#include <
tdme/tools/editor/misc/Gizmo.h
>
12
#include <
tdme/tools/editor/tabcontrollers/subcontrollers/PrototypePhysicsSubController.h
>
13
#include <
tdme/tools/editor/tabviews/subviews/fwd-tdme.h
>
14
15
using
std::string;
16
17
using
tdme::engine::prototype::Prototype
;
18
using
tdme::engine::Engine
;
19
using
tdme::engine::Transformations
;
20
using
tdme::math::Vector3
;
21
using
tdme::tools::editor::misc::Gizmo
;
22
using
tdme::tools::editor::misc::PopUps
;
23
using
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController
;
24
25
/**
26
* Prototype physics view
27
* @author Andreas Drewke
28
* @version $Id$
29
*/
30
class
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView
final:
public
Gizmo
31
{
32
public
:
33
static
constexpr
int
DISPLAY_BOUNDINGVOLUMEIDX_ALL
{ -1 };
34
35
private
:
36
static
constexpr
int
MOUSE_DOWN_LAST_POSITION_NONE
{ -1 };
37
38
Engine
*
engine
{
nullptr
};
39
PrototypePhysicsSubController
*
prototypePhysicsSubController
{
nullptr
};
40
PopUps
*
popUps
{
nullptr
};
41
42
int
maxBoundingVolumeCount
;
43
44
int
mouseDownLastX
;
45
int
mouseDownLastY
;
46
Vector3
totalDeltaScale
;
47
48
int
displayBoundingVolumeIdx
;
49
bool
displayBoundingVolume
;
50
51
int32_t
boundingVolumeTypeMask
;
52
53
public
:
54
/**
55
* Public constructor
56
* @param engine engine
57
* @param prototypePhysicsSubController pop ups
58
* @param popUps model editor screen controller
59
* @param maxBoundingVolumeCount maximum number of editable bounding volumes or -1 for default
60
* @param boundingVolumeTypeMask bounding volume type mask
61
*/
62
PrototypePhysicsSubView
(
Engine
*
engine
,
PrototypePhysicsSubController
*
prototypePhysicsSubController
,
PopUps
*
popUps
,
int
maxBoundingVolumeCount
= -1, int32_t
boundingVolumeTypeMask
= PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_ALL);
63
64
/**
65
* Destructor
66
*/
67
~PrototypePhysicsSubView
();
68
69
/**
70
* @return display bounding volume
71
*/
72
inline
bool
isDisplayBoundingVolume
() {
73
return
displayBoundingVolume
;
74
}
75
76
/**
77
* Set up bounding volume visibility
78
* @param displayBoundingVolume bounding volume
79
*/
80
inline
void
setDisplayBoundingVolume
(
bool
displayBoundingVolume
) {
81
this->displayBoundingVolume =
displayBoundingVolume
;
82
}
83
84
/**
85
* @return bounding volume index to display or DISPLAY_BOUNDINGVOLUMEIDX_ALL
86
*/
87
inline
int
getDisplayBoundingVolumeIdx
()
const
{
88
return
displayBoundingVolumeIdx
;
89
}
90
91
/**
92
* Set display bounding volume idx
93
* @param displayBoundingVolumeIdx display bounding volume index or DISPLAY_BOUNDINGVOLUMEIDX_ALL
94
*/
95
inline
void
setDisplayBoundingVolumeIdx
(
int
displayBoundingVolumeIdx
) {
96
this->displayBoundingVolumeIdx =
displayBoundingVolumeIdx
;
97
}
98
99
/**
100
* @return pop ups
101
*/
102
PopUps
*
getPopUps
();
103
104
/**
105
* Clear model bounding volume
106
* @param idx idx
107
*/
108
void
clearModelBoundingVolume
(
int
idx);
109
110
/**
111
* Setup model bounding volume
112
* @param prototype prototype
113
* @param idx idx
114
*/
115
void
setupModelBoundingVolume
(
Prototype
* prototype,
int
idx);
116
117
/**
118
* On bounding volume none apply
119
* @param prototype prototype
120
* @param idx bounding volume index
121
*/
122
void
applyBoundingVolumeNone
(
Prototype
* prototype,
int
idx);
123
124
/**
125
* On bounding volume sphere apply
126
* @param prototype prototype
127
* @param idx bounding volume index
128
* @param center sphere center
129
* @param radius radius
130
*/
131
void
applyBoundingVolumeSphere
(
Prototype
* prototype,
int
idx,
const
Vector3
& center,
float
radius);
132
133
/**
134
* On bounding volume capsule apply
135
* @param prototype prototype
136
* @param idx bounding volume index
137
* @param a point a
138
* @param b point b
139
* @param radius radius
140
*/
141
void
applyBoundingVolumeCapsule
(
Prototype
* prototype,
int
idx,
const
Vector3
& a,
const
Vector3
& b,
float
radius);
142
143
/**
144
* On bounding volume AABB apply
145
* @param prototype prototype
146
* @param idx bounding volume index
147
* @param min AABB min vector
148
* @param max AABB max vector
149
*/
150
void
applyBoundingVolumeAabb
(
Prototype
* prototype,
int
idx,
const
Vector3
& min,
const
Vector3
& max);
151
152
/**
153
* On bounding volume OBB apply
154
* @param prototype prototype
155
* @param idx bounding volume index
156
* @param center OBB center
157
* @param axis0 OBB axis 0
158
* @param axis1 OBB axis 1
159
* @param axis2 OBB axis 2
160
* @param halfExtension OBB half extension
161
*/
162
void
applyBoundingVolumeObb
(
Prototype
* prototype,
int
idx,
const
Vector3
& center,
const
Vector3
& axis0,
const
Vector3
& axis1,
const
Vector3
& axis2,
const
Vector3
& halfExtension);
163
164
/**
165
* Apply bounding volume convex mesh clear
166
* @param prototype prototype
167
* @param idx bounding volume index
168
*/
169
void
applyBoundingVolumeConvexMeshClear
(
Prototype
* prototype,
int
idx);
170
171
/**
172
* On bounding volume convex mesh apply
173
* @param prototype prototype
174
* @param idx bounding volume index
175
* @param fileName file name
176
*/
177
void
applyBoundingVolumeConvexMesh
(
Prototype
* prototype,
int
idx,
const
string
& fileName);
178
179
/**
180
* Apply bounding volume transformations
181
* @param prototype prototype
182
* @param idx bounding volume index
183
* @param transformations transformations
184
* @param objectScale object scale
185
* @param guiOnly only update GUI not the BV it self
186
*/
187
void
applyBoundingVolumeTransformations
(
Prototype
* prototype,
int
idx,
const
Transformations
& transformations,
const
Vector3
& objectScale,
bool
guiOnly);
188
189
/**
190
* Handle input events
191
* @param prototype prototype
192
* @param objectScale object scale
193
*/
194
void
handleInputEvents
(
Prototype
* prototype,
const
Vector3
& objectScale);
195
196
/**
197
* Display
198
* @param prototype prototype
199
*/
200
void
display
(
Prototype
* prototype);
201
202
/**
203
* Update GIZMO
204
* @param prototype prototype
205
*/
206
void
updateGizmo
(
Prototype
* prototype);
207
208
/**
209
* Set GIZMO rotation
210
* @param prototype prototype
211
* @param transformations transformations
212
*/
213
void
setGizmoRotation
(
Prototype
* prototype,
const
Transformations
& transformations);
214
215
/**
216
* Start editing bounding volume
217
* @param prototype prototype
218
*/
219
void
startEditingBoundingVolume
(
Prototype
* prototype);
220
221
/**
222
* End editing bounding volume
223
* @param prototype prototype
224
*/
225
void
endEditingBoundingVolume
(
Prototype
* prototype);
226
227
/**
228
* @return is editing bounding volume
229
*/
230
bool
isEditingBoundingVolume
(
Prototype
* prototype);
231
232
};
Gizmo.h
PrototypePhysicsSubController.h
Transformations.h
Vector3.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::prototype::Prototype
Prototype definition.
Definition:
Prototype.h:49
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::PopUps
Pop ups controller accessor class.
Definition:
PopUps.h:19
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController
Prototype physics sub screen controller.
Definition:
PrototypePhysicsSubController.h:46
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView
Prototype physics view.
Definition:
PrototypePhysicsSubView.h:31
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::display
void display(Prototype *prototype)
Display.
Definition:
PrototypePhysicsSubView.cpp:231
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::engine
Engine * engine
Definition:
PrototypePhysicsSubView.h:38
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::boundingVolumeTypeMask
int32_t boundingVolumeTypeMask
Definition:
PrototypePhysicsSubView.h:51
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::applyBoundingVolumeConvexMesh
void applyBoundingVolumeConvexMesh(Prototype *prototype, int idx, const string &fileName)
On bounding volume convex mesh apply.
Definition:
PrototypePhysicsSubView.cpp:219
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::DISPLAY_BOUNDINGVOLUMEIDX_ALL
static constexpr int DISPLAY_BOUNDINGVOLUMEIDX_ALL
Definition:
PrototypePhysicsSubView.h:33
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::applyBoundingVolumeTransformations
void applyBoundingVolumeTransformations(Prototype *prototype, int idx, const Transformations &transformations, const Vector3 &objectScale, bool guiOnly)
Apply bounding volume transformations.
Definition:
PrototypePhysicsSubView.cpp:364
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::applyBoundingVolumeCapsule
void applyBoundingVolumeCapsule(Prototype *prototype, int idx, const Vector3 &a, const Vector3 &b, float radius)
On bounding volume capsule apply.
Definition:
PrototypePhysicsSubView.cpp:182
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::applyBoundingVolumeSphere
void applyBoundingVolumeSphere(Prototype *prototype, int idx, const Vector3 ¢er, float radius)
On bounding volume sphere apply.
Definition:
PrototypePhysicsSubView.cpp:173
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::applyBoundingVolumeObb
void applyBoundingVolumeObb(Prototype *prototype, int idx, const Vector3 ¢er, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
On bounding volume OBB apply.
Definition:
PrototypePhysicsSubView.cpp:200
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::applyBoundingVolumeConvexMeshClear
void applyBoundingVolumeConvexMeshClear(Prototype *prototype, int idx)
Apply bounding volume convex mesh clear.
Definition:
PrototypePhysicsSubView.cpp:209
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::setDisplayBoundingVolumeIdx
void setDisplayBoundingVolumeIdx(int displayBoundingVolumeIdx)
Set display bounding volume idx.
Definition:
PrototypePhysicsSubView.h:95
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::setGizmoRotation
void setGizmoRotation(Prototype *prototype, const Transformations &transformations)
Set GIZMO rotation.
Definition:
PrototypePhysicsSubView.cpp:359
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::isEditingBoundingVolume
bool isEditingBoundingVolume(Prototype *prototype)
Definition:
PrototypePhysicsSubView.cpp:465
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::clearModelBoundingVolume
void clearModelBoundingVolume(int idx)
Clear model bounding volume.
Definition:
PrototypePhysicsSubView.cpp:91
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::setDisplayBoundingVolume
void setDisplayBoundingVolume(bool displayBoundingVolume)
Set up bounding volume visibility.
Definition:
PrototypePhysicsSubView.h:80
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::updateGizmo
void updateGizmo(Prototype *prototype)
Update GIZMO.
Definition:
PrototypePhysicsSubView.cpp:350
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::displayBoundingVolume
bool displayBoundingVolume
Definition:
PrototypePhysicsSubView.h:49
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::displayBoundingVolumeIdx
int displayBoundingVolumeIdx
Definition:
PrototypePhysicsSubView.h:48
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::isDisplayBoundingVolume
bool isDisplayBoundingVolume()
Definition:
PrototypePhysicsSubView.h:72
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::~PrototypePhysicsSubView
~PrototypePhysicsSubView()
Destructor.
Definition:
PrototypePhysicsSubView.cpp:83
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::getPopUps
PopUps * getPopUps()
Definition:
PrototypePhysicsSubView.cpp:86
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::MOUSE_DOWN_LAST_POSITION_NONE
static constexpr int MOUSE_DOWN_LAST_POSITION_NONE
Definition:
PrototypePhysicsSubView.h:36
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::endEditingBoundingVolume
void endEditingBoundingVolume(Prototype *prototype)
End editing bounding volume.
Definition:
PrototypePhysicsSubView.cpp:460
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::handleInputEvents
void handleInputEvents(Prototype *prototype, const Vector3 &objectScale)
Handle input events.
Definition:
PrototypePhysicsSubView.cpp:251
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::prototypePhysicsSubController
PrototypePhysicsSubController * prototypePhysicsSubController
Definition:
PrototypePhysicsSubView.h:39
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::maxBoundingVolumeCount
int maxBoundingVolumeCount
Definition:
PrototypePhysicsSubView.h:42
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::startEditingBoundingVolume
void startEditingBoundingVolume(Prototype *prototype)
Start editing bounding volume.
Definition:
PrototypePhysicsSubView.cpp:454
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::popUps
PopUps * popUps
Definition:
PrototypePhysicsSubView.h:40
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::mouseDownLastY
int mouseDownLastY
Definition:
PrototypePhysicsSubView.h:45
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::applyBoundingVolumeAabb
void applyBoundingVolumeAabb(Prototype *prototype, int idx, const Vector3 &min, const Vector3 &max)
On bounding volume AABB apply.
Definition:
PrototypePhysicsSubView.cpp:191
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::mouseDownLastX
int mouseDownLastX
Definition:
PrototypePhysicsSubView.h:44
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::getDisplayBoundingVolumeIdx
int getDisplayBoundingVolumeIdx() const
Definition:
PrototypePhysicsSubView.h:87
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::applyBoundingVolumeNone
void applyBoundingVolumeNone(Prototype *prototype, int idx)
On bounding volume none apply.
Definition:
PrototypePhysicsSubView.cpp:164
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::PrototypePhysicsSubView
PrototypePhysicsSubView(Engine *engine, PrototypePhysicsSubController *prototypePhysicsSubController, PopUps *popUps, int maxBoundingVolumeCount=-1, int32_t boundingVolumeTypeMask=PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_ALL)
Public constructor.
Definition:
PrototypePhysicsSubView.cpp:70
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::totalDeltaScale
Vector3 totalDeltaScale
Definition:
PrototypePhysicsSubView.h:46
tdme::tools::editor::tabviews::subviews::PrototypePhysicsSubView::setupModelBoundingVolume
void setupModelBoundingVolume(Prototype *prototype, int idx)
Setup model bounding volume.
Definition:
PrototypePhysicsSubView.cpp:98
fwd-tdme.h
fwd-tdme.h
tdme.h
fwd-tdme.h
fwd-tdme.h
Generated by
1.9.3