Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/particles/sprite_particles.cc @ 6812

Last change on this file since 6812 was 6812, checked in by bensch, 18 years ago

trunk: Particles should work again

File size: 4.4 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GRAPHICS
17
18#include "sprite_particles.h"
19
20#include "load_param.h"
21#include "factory.h"
22#include "material.h"
23#include "state.h"
24#include "shell_command.h"
25
26#include "parser/tinyxml/tinyxml.h"
27#include <algorithm>
28
29
30CREATE_FACTORY(SpriteParticles, CL_SPRITE_PARTICLES);
31
32SHELL_COMMAND(texture, SpriteParticles, setMaterialTexture)
33    ->defaultValues(1, "maps/evil-flower.png");
34
35using namespace std;
36
37/**
38 *  standard constructor
39 * @param maxCount the Count of particles in the System
40 * @param type The Type of the SpriteParticles
41*/
42SpriteParticles::SpriteParticles (unsigned int maxCount)
43  : ParticleSystem(maxCount)
44{
45  this->init();
46}
47
48/**
49 * @brief creates a Particle System out of a XML-element
50 * @param root: the XML-element to load from
51 */
52SpriteParticles::SpriteParticles(const TiXmlElement* root)
53{
54  this->init();
55  if (root != NULL)
56    this->loadParams(root);
57}
58
59/**
60 *  standard deconstructor
61*/
62SpriteParticles::~SpriteParticles()
63{ }
64
65/**
66 * @brief initializes the SpriteParticles with default values
67*/
68void SpriteParticles::init()
69{
70  this->setClassID(CL_SPRITE_PARTICLES, "SpriteParticles");
71
72  this->material.setDiffuseMap("maps/radial-trans-noise.png");
73}
74
75
76/**
77 * loads Parameters from a TiXmlElement
78 * @param root the XML-element to load from.
79 */
80void SpriteParticles::loadParams(const TiXmlElement* root)
81{
82  ParticleSystem::loadParams(root);
83
84  LoadParam(root, "texture", this, SpriteParticles, setMaterialTexture);
85}
86
87/**
88 * @brief sets the Texutre that is placed onto the particles
89 * @param textureFile the Texture to load onto these SpriteParticles
90 */
91void SpriteParticles::setMaterialTexture(const char* textureFile)
92{
93  this->material.setDiffuseMap(textureFile);
94}
95
96/**
97 * @brief draws all the Particles of this System
98 *
99 * The Cases in this Function all do the same:
100 * Drawing all the particles with the appropriate Type.
101 * This is just the fastest Way to do this, but will most likely be changed in the future.
102 */
103void SpriteParticles::draw() const
104{
105  glPushAttrib(GL_ENABLE_BIT);
106
107  Particle* drawPart = particles;
108  this->material.select();
109
110  GLboolean checkLight = false;
111  glGetBooleanv(GL_LIGHTING, &checkLight);
112  if (checkLight == GL_TRUE)
113    glDisable(GL_LIGHTING);
114
115  glEnable(GL_ALPHA_TEST);
116  glDepthMask(GL_FALSE);
117  /*
118  glClearDepth(1.0);
119  glDepthFunc(GL_LEQUAL);
120  glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
121  glEnable(GL_BLEND);
122  glAlphaFunc(GL_GREATER,0.1);
123  glEnable(GL_ALPHA_TEST);
124  glEnable(GL_TEXTURE_2D);
125  glEnable(GL_CULL_FACE);
126  */
127  //glDepthMask(GL_FALSE);
128//glBlendFunc(GL_SRC_ALPHA, GL_DST_ALPHA);
129
130  glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_ENV_MODE, GL_MODULATE);
131
132
133  while (likely(drawPart != NULL))
134  {
135    glColor4fv(drawPart->color);
136    //! @todo implement a faster code for the look-at Camera algorithm.
137
138    const PNode* camera = State::getCamera();  //!< @todo MUST be different
139    Vector cameraPos = camera->getAbsCoor();
140    Vector cameraTargetPos = State::getCameraTarget()->getAbsCoor();
141    Vector view = cameraTargetPos - cameraPos;
142    Vector up = Vector(0, 1, 0);
143    up = camera->getAbsDir().apply(up);
144    Vector h = up.cross(view);
145    Vector v = h.cross(view);
146    h.normalize();
147    v.normalize();
148    v *= .5 * drawPart->radius;
149    h *= .5 * drawPart->radius;
150
151    glBegin(GL_TRIANGLE_STRIP);
152    glTexCoord2i(1, 1);
153    glVertex3f(drawPart->position.x - h.x - v.x,
154               drawPart->position.y - h.y - v.y,
155               drawPart->position.z - h.z - v.z);
156    glTexCoord2i(0, 1);
157    glVertex3f(drawPart->position.x - h.x + v.x,
158               drawPart->position.y - h.y + v.y,
159               drawPart->position.z - h.z + v.z);
160    glTexCoord2i(1, 0);
161    glVertex3f(drawPart->position.x + h.x - v.x,
162               drawPart->position.y + h.y - v.y,
163               drawPart->position.z + h.z - v.z);
164    glTexCoord2i(0, 0);
165    glVertex3f(drawPart->position.x + h.x + v.x,
166               drawPart->position.y + h.y + v.y,
167               drawPart->position.z + h.z + v.z);
168
169    glEnd();
170
171    drawPart = drawPart->next;
172  }
173  glDepthMask(GL_TRUE);
174  glPopAttrib();
175}
Note: See TracBrowser for help on using the repository browser.