blob: 3907184216ddf9891e121665026f5fbab123d646 (
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
|
/*
model/classes.cc
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
#include "model/classes.h"
namespace model {
/* ---- class MapClass --------------------------------------------- */
MapClass::MapClass()
{
}
MapClass::~MapClass()
{
}
/* ---- class Light ------------------------------------------------ */
Light::Light() :
light_location(),
light_color(1.0f, 1.0f, 1.0f)
{
light_entity = false;
light_strobe = false;
light_radius = 1.0f;
light_frequency = 1.0f;
light_offset = 0.0f;
light_time = 0.5f;
light_flare = 0;
render_texture = 0;
}
Light::~Light()
{}
/* ---- class Flare ------------------------------------------------ */
Flare::Flare() : Light()
{
flare_engine = false;
flare_cull = CullBack;
}
Flare::~Flare()
{}
/* ---- class Particles -------------------------------------------- */
Particles::Particles() :
particles_location()
{
particles_entity = false;
particles_engine = false;
particles_radius = 0.0f;
particles_cull = CullNone;
}
Particles::Particles(math::Vector3f const & location) :
particles_location(location)
{
}
Particles::~Particles()
{}
void Particles::set_radius(const float radius)
{
particles_radius = radius;
}
/* ---- class Dock ------------------------------------------------- */
Dock::Dock()
{
dock_radius = 0.01f;
}
Dock::~Dock()
{
}
}
|