Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-08-12 12:03:18 +0000
committerStijn Buys <ingar@osirion.org>2009-08-12 12:03:18 +0000
commit183f0f0b905715f0d89b38174fdfd44641c1a79c (patch)
tree6cae553ac6284044002fb668c7991da27291825d /src/model/parts.cc
parent8bf8afe68ca15c61b0dea1f5c1ef5fc7186dca0f (diff)
src/model filenames cleanup, parse .map texture coordinates, early loading of material textures
Diffstat (limited to 'src/model/parts.cc')
-rw-r--r--src/model/parts.cc87
1 files changed, 87 insertions, 0 deletions
diff --git a/src/model/parts.cc b/src/model/parts.cc
new file mode 100644
index 0000000..a4a2d1e
--- /dev/null
+++ b/src/model/parts.cc
@@ -0,0 +1,87 @@
+/*
+ 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() :
+ 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()
+{
+}
+
+/* ---- class SubModel---------------------------------------------- */
+
+SubModel::SubModel()
+{
+ submodel_scale = 1.0f;
+}
+
+SubModel::~SubModel()
+{
+}
+
+}