TDME2
1.9.121
src
tdme
tools
editor
tabcontrollers
subcontrollers
PrototypePhysicsSubController_BoundingVolumeType.cpp
Go to the documentation of this file.
1
#include <
tdme/tools/editor/tabcontrollers/subcontrollers/PrototypePhysicsSubController_BoundingVolumeType.h
>
2
3
#include <string>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/utilities/Enum.h
>
7
8
using
std::string;
9
10
using
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType
;
11
using
tdme::utilities::Enum
;
12
13
PrototypePhysicsSubController_BoundingVolumeType::PrototypePhysicsSubController_BoundingVolumeType(
const
string
& name,
int
ordinal)
14
:
Enum
(name, ordinal)
15
{
16
}
17
18
PrototypePhysicsSubController_BoundingVolumeType
*
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::NONE
=
new
PrototypePhysicsSubController_BoundingVolumeType
(
"NONE"
, 0);
19
PrototypePhysicsSubController_BoundingVolumeType
*
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::SPHERE
=
new
PrototypePhysicsSubController_BoundingVolumeType
(
"SPHERE"
, 1);
20
PrototypePhysicsSubController_BoundingVolumeType
*
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::CAPSULE
=
new
PrototypePhysicsSubController_BoundingVolumeType
(
"CAPSULE"
, 2);
21
PrototypePhysicsSubController_BoundingVolumeType
*
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::BOUNDINGBOX
=
new
PrototypePhysicsSubController_BoundingVolumeType
(
"BOUNDINGBOX"
, 3);
22
PrototypePhysicsSubController_BoundingVolumeType
*
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::ORIENTEDBOUNDINGBOX
=
new
PrototypePhysicsSubController_BoundingVolumeType
(
"ORIENTEDBOUNDINGBOX"
, 4);
23
PrototypePhysicsSubController_BoundingVolumeType
*
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::CONVEXMESH
=
new
PrototypePhysicsSubController_BoundingVolumeType
(
"CONVEXMESH"
, 5);
24
25
PrototypePhysicsSubController_BoundingVolumeType
*
PrototypePhysicsSubController_BoundingVolumeType::valueOf
(
const
string
& name)
26
{
27
if
(
BOUNDINGBOX
->
getName
() ==
name
)
return
BOUNDINGBOX
;
28
if
(
CAPSULE
->
getName
() ==
name
)
return
CAPSULE
;
29
if
(
CONVEXMESH
->
getName
() ==
name
)
return
CONVEXMESH
;
30
if
(
NONE
->
getName
() ==
name
)
return
NONE
;
31
if
(
ORIENTEDBOUNDINGBOX
->
getName
() ==
name
)
return
ORIENTEDBOUNDINGBOX
;
32
if
(
SPHERE
->
getName
() ==
name
)
return
SPHERE
;
33
// TODO: throw exception here maybe
34
return
nullptr
;
35
}
Enum.h
PrototypePhysicsSubController_BoundingVolumeType.h
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType
Prototype physics sub screen controller bounding volume type enum.
Definition:
PrototypePhysicsSubController_BoundingVolumeType.h:18
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::CONVEXMESH
static STATIC_DLL_IMPEXT PrototypePhysicsSubController_BoundingVolumeType * CONVEXMESH
Definition:
PrototypePhysicsSubController_BoundingVolumeType.h:25
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::SPHERE
static STATIC_DLL_IMPEXT PrototypePhysicsSubController_BoundingVolumeType * SPHERE
Definition:
PrototypePhysicsSubController_BoundingVolumeType.h:21
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::NONE
static STATIC_DLL_IMPEXT PrototypePhysicsSubController_BoundingVolumeType * NONE
Definition:
PrototypePhysicsSubController_BoundingVolumeType.h:20
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::valueOf
static PrototypePhysicsSubController_BoundingVolumeType * valueOf(const string &name)
Returns enum object given by name.
Definition:
PrototypePhysicsSubController_BoundingVolumeType.cpp:25
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::CAPSULE
static STATIC_DLL_IMPEXT PrototypePhysicsSubController_BoundingVolumeType * CAPSULE
Definition:
PrototypePhysicsSubController_BoundingVolumeType.h:22
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::BOUNDINGBOX
static STATIC_DLL_IMPEXT PrototypePhysicsSubController_BoundingVolumeType * BOUNDINGBOX
Definition:
PrototypePhysicsSubController_BoundingVolumeType.h:23
tdme::tools::editor::tabcontrollers::subcontrollers::PrototypePhysicsSubController_BoundingVolumeType::ORIENTEDBOUNDINGBOX
static STATIC_DLL_IMPEXT PrototypePhysicsSubController_BoundingVolumeType * ORIENTEDBOUNDINGBOX
Definition:
PrototypePhysicsSubController_BoundingVolumeType.h:24
tdme::utilities::Enum
Enum base class.
Definition:
Enum.h:14
tdme::utilities::Enum::getName
const string & getName() const
Definition:
Enum.h:30
tdme::utilities::Enum::name
string name
Definition:
Enum.h:16
tdme.h
Generated by
1.9.3