blob: 915f96f575140e22fa76165c79572aa5743a1092 (
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
|
/*
core/clientstate.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_CORE_CLIENTSTATE_H__
#define __INCLUDED_CORE_CLIENTSTATE_H__
#include "math/axis.h"
#include "math/mathlib.h"
#include "math/vector3f.h"
namespace core
{
class ClientState;
}
#include "core/entity.h"
namespace core
{
/// Entity client render state
class ClientState {
public:
ClientState();
ClientState(Entity *entity);
~ClientState();
inline math::Vector3f const & location() { return state_location; }
inline math::Vector3f const & previouslocation() { return state_previouslocation; }
inline math::Axis const & previousaxis() { return state_previousaxis; }
inline math::Axis const & axis() { return state_axis; }
inline bool visible() const { return state_visible; }
inline bool detailvisible() const { return state_detailvisible; }
/// client render fuzz factor
inline float fuzz() const { return state_fuzz; };
/// assign the content of an entity
void assign(Entity *entity);
math::Vector3f state_location;
math::Axis state_axis;
math::Vector3f state_previouslocation;
math::Axis state_previousaxis;
bool state_visible;
bool state_detailvisible;
float state_fuzz;
};
}
#endif // __INCLUDED_CORE_CLIENTSTATE_H__
|