blob: b70b4a0fc4438bae2563802e5506b9d3b6f3dfc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/*
render/renderext.h
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
#ifndef __INCLUDED_RENDER_RENDEREXT_H__
#define __INCLUDED_RENDER_RENDEREXT_H__
#include <list>
#include "core/extension.h"
#include "render/particles.h"
namespace render
{
/// the render extension of an entity
class RenderExt : public core::Extension
{
public:
RenderExt(core::Entity *entity);
~RenderExt();
typedef std::list<ParticleSystem *> ParticleSystems;
inline const bool visible() const {
return state_visible;
}
inline const bool detailvisible() const {
return state_detailvisible;
}
inline const bool power() const {
return state_power;
}
/**
* @brief returns true if the entity is behind the camera
*/
inline const bool behind() const {
return state_behind;
}
inline const float fuzz() const {
return state_fuzz;
}
inline const float thrust() const {
return state_thrust;
}
inline const float enginetime() const {
return state_enginetime;
}
/**
* @brief distance from attached entity to camera
*/
inline float distance() const {
return state_distance;
}
/**
* @brief particle systems for the attached entity
*/
inline ParticleSystems &particles() {
return state_particles;
}
virtual void frame(float elapsed);
private:
bool state_visible;
bool state_detailvisible;
bool state_behind;
bool state_power;
float state_fuzz;
float state_distance;
float state_enginetime;
float state_thrust;
ParticleSystems state_particles;
};
} // namespace render
#endif // __INCLUDED_RENDER_RENDEREXT_H__
|