Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: f75537338d7068bb9bf5b417ea45305a49619461 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
   model/tags.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/model.h"
#include "model/tags.h"

namespace model
{

/* ---- class Tag -------------------------------------------------- */

Tag::Tag() : tag_location()
{
}

Tag::Tag(const Tag& other) : tag_location(other.location())
{
}

Tag::~Tag()
{
}

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

Light::Light() :
	Tag(),
	light_color(1.0f, 1.0f, 1.0f)
{
	light_entity = false;
	light_entity_second = false;
	light_engine = false;
	light_strobe = false;
	light_has_color = false;

	light_radius = 100.0f * SCALE;
	light_frequency = 1.0f;
	light_offset = 0.0f;
	light_time = 0.5f;

	light_flare = 0;

	light_texture = 0;
}

Light::Light(const Light& other) : 
	Tag(other),
	light_color(other.color())
{
	light_entity = other.entity();
	light_entity_second = other.entity_second();
	light_engine = other.engine();
	light_strobe = other.strobe();
	light_has_color = other.has_color();

	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_axis()
{
	flare_cull = CullBack;
}

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

Flare::~Flare()
{}

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

Particles::Particles() : 
	Tag(),
	particles_axis(),
	particles_script()
{
	particles_entity = false;
	particles_entity_second = false;
	particles_engine = false;
	particles_has_color = false;
	particles_scale = 1.0f;
	particles_cull = CullNone;
}

Particles::Particles(const Particles & other) : 
	Tag(other), 
	particles_axis(other.axis()),
	particles_script(other.script())
{
	particles_entity = other.entity();
	particles_entity_second = other.entity_second();
	particles_engine = other.engine();
	particles_scale = other.scale();
	particles_cull = other.cull();
	particles_has_color = other.has_color();
}

Particles::~Particles()
{
}

/* ---- class Sound ------------------------------------------------- */

Sound::Sound() : Tag()
{
}

Sound::Sound(const Sound& other) : Tag(other),
	sound_name(other.name())
{
}

Sound::~Sound()
{
}

/* ---- class Slot ------------------------------------------------- */

Slot::Slot(const Type type) : Tag()
{	
	slot_radius = 0.0f;
	set_type(type);

}

Slot::Slot(const Slot& other) : Tag(other)
{
	slot_type = other.type();
	slot_axis.assign(other.axis());
	slot_radius = other.radius();
	slot_cone = other.cone();

}

Slot::~Slot()
{
}

void Slot::set_type(const Type type)
{
	slot_type = type;
	switch (slot_type) {
		case None:
		case Dock:
			slot_cone = 0.0f;
			break;
		case Cannon:
			slot_cone = 60.0f; 	// 60 degrees
			break;
		case Turret:
			slot_cone = 180.0f; 	// 180 degrees
			break;
	}
}

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

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

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

SubModel::~SubModel()
{
}

}