From 183f0f0b905715f0d89b38174fdfd44641c1a79c Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 12 Aug 2009 12:03:18 +0000 Subject: src/model filenames cleanup, parse .map texture coordinates, early loading of material textures --- src/model/classes.cc | 87 ---------------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 src/model/classes.cc (limited to 'src/model/classes.cc') diff --git a/src/model/classes.cc b/src/model/classes.cc deleted file mode 100644 index 2a16bae..0000000 --- a/src/model/classes.cc +++ /dev/null @@ -1,87 +0,0 @@ -/* - 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 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() -{ -} - -} -- cgit v1.2.3