Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: ac54410ccf7f2668dde9c3d8e4e2a269802ee01e (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
   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/parts.h"

namespace model {

/* ---- class Light ------------------------------------------------ */

Light::Light() :
		Part(),
		light_color(1.0f, 1.0f, 1.0f)
{
	light_entity = false;
	light_engine = false;
	light_strobe = false;

	light_radius = 1.0f;
	light_frequency = 1.0f;
	light_offset = 0.0f;
	light_time = 0.5f;

	light_flare = 0;
	
	light_texture = 0;
}

Light::Light(const Light& other) : Part(other),
	light_color(other.color())
{
	light_entity = other.entity();
	light_engine = other.engine();
	light_strobe = other.strobe();

	light_radius = other.radius();
	light_frequency = other.frequency();
	light_offset = other.offset();
	light_time = other.time();

	light_flare = other.flare();
	
	light_texture = other.texture();
}
Light::~Light()
{}

/* ---- class Flare ------------------------------------------------ */

Flare::Flare() : Light()
{
	flare_cull = CullBack;
}

Flare::Flare(const Flare& other) : Light(other)
{
	flare_cull = other.cull();
}

Flare::~Flare()
{}

/* ---- class Particles -------------------------------------------- */

Particles::Particles() : Part()
{
	particles_entity = false;
	particles_engine = false;
	particles_radius = 0.0f;
	particles_cull = CullNone;
}

Particles::Particles(const math::Vector3f& location) :
		Part(location)
{
}

Particles::~Particles()
{
}

/* ---- class Dock ------------------------------------------------- */

Dock::Dock() : Part()
{
	dock_radius = 0.01f;
}

Dock::Dock(const Dock& other) : Part(other)
{
	dock_radius = other.radius();
}

Dock::~Dock()
{
}

/* ---- class SubModel---------------------------------------------- */

SubModel::SubModel() : Part()
{
	submodel_scale = 1.0f;
}

SubModel::SubModel(const SubModel& other) : Part(other),
	submodel_name(other.name()),
	submodel_axis(other.axis())
{
	submodel_scale = other.scale();
}

SubModel::~SubModel()
{
}

}