TDME2 1.9.121
PrototypePhysicsSubController_BoundingVolumeType.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
12
13PrototypePhysicsSubController_BoundingVolumeType::PrototypePhysicsSubController_BoundingVolumeType(const string& name, int ordinal)
14 : Enum(name, ordinal)
15{
16}
17
24
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;
32 if (SPHERE->getName() == name) return SPHERE;
33 // TODO: throw exception here maybe
34 return nullptr;
35}
static PrototypePhysicsSubController_BoundingVolumeType * valueOf(const string &name)
Returns enum object given by name.
Enum base class.
Definition: Enum.h:14
const string & getName() const
Definition: Enum.h:30