MegaGlest/source/glest_game/graphics/unit_particle_type.h

80 lines
2.1 KiB
C++
Raw Blame History

// ==============================================================
// This file is part of Glest (www.glest.org)
//
// Copyright (C) 2001-2008 Marti<74>o Figueroa
//
// You can redistribute this code and/or modify it under
// the terms of the GNU General Public License as published
// by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version
// ==============================================================
#ifndef _GLEST_GAME_UNITPARTICLETYPE_H_
#define _GLEST_GAME_UNITPARTICLETYPE_H_
#include <string>
#include "particle.h"
#include "factory.h"
#include "texture.h"
#include "vec.h"
#include "xml_parser.h"
#include "graphics_interface.h"
#include "leak_dumper.h"
using std::string;
using namespace Shared::Graphics;
namespace Glest{ namespace Game{
using Shared::Graphics::ParticleSystem;
using Shared::Graphics::UnitParticleSystem;
using Shared::Graphics::Texture2D;
using Shared::Graphics::Vec3f;
using Shared::Graphics::Vec4f;
using Shared::Util::MultiFactory;
using Shared::Xml::XmlNode;
// ===========================================================
// class ParticleSystemType
//
/// A type of particle system
// ===========================================================
class UnitParticleSystemType{
protected:
string type;
Texture2D *texture;
string primitive;
Vec3f offset;
Vec3f direction;
Vec4f color;
Vec4f colorNoEnergy;
float radius;
float size;
float sizeNoEnergy;
float speed;
float gravity;
float emissionRate;
int energyMax;
int energyVar;
bool relative;
bool relativeDirection;
bool fixed;
bool teamcolorNoEnergy;
bool teamcolorEnergy;
int staticParticleCount;
string mode;
public:
UnitParticleSystemType();
void load(const XmlNode *particleSystemNode, const string &dir, RendererInterface *newTexture);
void load(const string &dir, const string &path, RendererInterface *newTexture);
void setValues(UnitParticleSystem *uts);
bool hasTexture() const { return(texture != NULL); }
};
}}//end namespace
#endif