TDME2
1.9.121
src
tdme
engine
prototype
PrototypeParticleSystem_ObjectParticleSystem.cpp
Go to the documentation of this file.
1
#include <
tdme/engine/prototype/PrototypeParticleSystem_ObjectParticleSystem.h
>
2
3
#include <string>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/engine/fileio/models/ModelReader.h
>
7
#include <
tdme/engine/model/Model.h
>
8
#include <
tdme/math/Vector3.h
>
9
#include <
tdme/tools/editor/misc/Tools.h
>
10
#include <
tdme/utilities/ExceptionBase.h
>
11
#include <
tdme/utilities/StringTools.h
>
12
13
using
std::string;
14
15
using
tdme::engine::fileio::models::ModelReader
;
16
using
tdme::engine::model::Model
;
17
using
tdme::engine::prototype::PrototypeParticleSystem_ObjectParticleSystem
;
18
using
tdme::math::Vector3
;
19
using
tdme::tools::editor::misc::Tools
;
20
using
tdme::utilities::ExceptionBase
;
21
using
tdme::utilities::StringTools
;
22
23
void
PrototypeParticleSystem_ObjectParticleSystem::setModelFile(
const
string
& modelFileName)
24
{
25
if
(this->
model
!=
nullptr
)
delete
model
;
26
this->
model
=
nullptr
;
27
this->modelFileName =
modelFileName
;
28
if
(
modelFileName
.empty() ==
false
) {
29
model
= ModelReader::read(
30
Tools::getPathName(
modelFileName
),
31
Tools::getFileName(
modelFileName
)
32
);
33
}
34
}
35
36
PrototypeParticleSystem_ObjectParticleSystem::~PrototypeParticleSystem_ObjectParticleSystem
() {
37
if
(
model
!=
nullptr
)
delete
model
;
38
}
ExceptionBase.h
ModelReader.h
Model.h
PrototypeParticleSystem_ObjectParticleSystem.h
StringTools.h
Tools.h
Vector3.h
tdme::engine::fileio::models::ModelReader
Model reader class.
Definition:
ModelReader.h:27
tdme::engine::model::Model
Representation of a 3d model.
Definition:
Model.h:32
tdme::engine::prototype::PrototypeParticleSystem_ObjectParticleSystem
Prototype object particle system definition.
Definition:
PrototypeParticleSystem_ObjectParticleSystem.h:31
tdme::engine::prototype::PrototypeParticleSystem_ObjectParticleSystem::modelFileName
string modelFileName
Definition:
PrototypeParticleSystem_ObjectParticleSystem.h:37
tdme::engine::prototype::PrototypeParticleSystem_ObjectParticleSystem::model
Model * model
Definition:
PrototypeParticleSystem_ObjectParticleSystem.h:36
tdme::engine::prototype::PrototypeParticleSystem_ObjectParticleSystem::~PrototypeParticleSystem_ObjectParticleSystem
~PrototypeParticleSystem_ObjectParticleSystem()
Destructor.
Definition:
PrototypeParticleSystem_ObjectParticleSystem.cpp:36
tdme::math::Vector3
3D vector 3 class
Definition:
Vector3.h:22
tdme::tools::editor::misc::Tools
Editor tools.
Definition:
Tools.h:38
tdme::utilities::ExceptionBase
Exception base class.
Definition:
ExceptionBase.h:20
tdme::utilities::StringTools
String tools class.
Definition:
StringTools.h:20
tdme.h
Generated by
1.9.3