Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/weapons/laser.cc @ 6193

Last change on this file since 6193 was 6162, checked in by bensch, 19 years ago

orxonox/trunk: merged the spaceshipcontroll branche into the trunk
merged with command
svn merge -r6036:HEAD spaceshipcontrol/ ../trunk/
no conflicts

File size: 3.6 KB
RevLine 
[4593]1/*
[3708]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: Patrick Boenzli
[5443]13   co-programmer: Benjamin Grauer
14
[3708]15*/
[5357]16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WEAPON
[3708]17
[5456]18#include "laser.h"
[3708]19
[4947]20#include "fast_factory.h"
[3708]21
[5443]22#include "state.h"
23#include "list.h"
[5444]24#include "class_list.h"
[5511]25#include "model.h"
[5054]26
[5443]27#include "particle_engine.h"
28#include "particle_emitter.h"
29#include "particle_system.h"
30
31
[3708]32using namespace std;
33
[5456]34CREATE_FAST_FACTORY_STATIC(Laser, CL_LASER);
[3708]35
36/**
[4836]37 *  standard constructor
[3708]38*/
[5456]39Laser::Laser () : Projectile()
[3755]40{
[5512]41  this->setClassID(CL_LASER, "Laser");
[4597]42
[5687]43  this->loadModel("models/projectiles/laser.obj");
[4948]44
45  this->energyMin = 1;
46  this->energyMax = 10;
[6162]47  this->lifeSpan = 5.0;
[5443]48
[5447]49  this->emitter = new ParticleEmitter(Vector(0,1,0), M_2_PI, 100, 5);
[5443]50  this->emitter->setParent(this);
[5449]51  this->emitter->setSpread(M_PI, M_PI);
[5465]52  this->emitter->setEmissionRate(300.0);
[5456]53  this->emitter->setEmissionVelocity(50.0);
[3755]54}
[3708]55
56
57/**
[4836]58 *  standard deconstructor
[3708]59*/
[5456]60Laser::~Laser ()
[3708]61{
[5446]62  // delete this->emitter;
[5444]63
[5445]64  /* this is normaly done by World.cc by deleting the ParticleEngine */
[5779]65  if (Laser::explosionParticles != NULL && ClassList::getList(CL_LASER)->size() <= 1)
[5447]66  {
[5512]67    //if (ClassList::exists(Laser::explosionParticles, CL_PARTICLE_SYSTEM))
68    //  delete Laser::explosionParticles;
69    PRINTF(1)("Deleting Laser Particles\n");
[5456]70    Laser::explosionParticles = NULL;
[5447]71  }
[5445]72
[3708]73}
74
[5456]75ParticleSystem* Laser::explosionParticles = NULL;
[5443]76
[5456]77void Laser::activate()
[5443]78{
[5456]79  if (unlikely(Laser::explosionParticles == NULL))
[5447]80  {
[5456]81    Laser::explosionParticles = new ParticleSystem(1000, PARTICLE_SPRITE);
82    Laser::explosionParticles->setName("LaserExplosionParticles");
83    Laser::explosionParticles->setLifeSpan(.5, .3);
[5750]84    Laser::explosionParticles->setRadius(0.0, 10.0);
[5465]85    Laser::explosionParticles->setRadius(.5, 6.0);
[5456]86    Laser::explosionParticles->setRadius(1.0, 3.0);
[5457]87    Laser::explosionParticles->setColor(0.0, 1,1,0,.9);
[5456]88    Laser::explosionParticles->setColor(0.5, .8,.8,0,.5);
[5457]89    Laser::explosionParticles->setColor(1.0, .8,.8,.7,.0);
[5447]90  }
[5443]91}
92
93
[5456]94void Laser::deactivate()
[5443]95{
[5447]96  ParticleEngine::getInstance()->breakConnections(this->emitter);
97  this->lifeCycle = 0.0;
[5443]98
[6142]99  this->toList(OM_NULL);
[6056]100  this->removeNode();
[5456]101  Laser::fastFactory->kill(this);
[5443]102}
103
104
[5456]105void Laser::collidesWith(WorldEntity* entity, const Vector& location)
[5257]106{
[5447]107  if (this->hitEntity != entity && entity->isA(CL_NPC))
108    this->destroy();
109  this->hitEntity = entity;
[5257]110}
[3708]111
112/**
[4836]113 *  signal tick, time dependent things will be handled here
[6056]114 * @param dt time since last tick
[3708]115*/
[6056]116void Laser::tick (float dt)
[3708]117{
[4464]118  //Vector v = *this->flightDirection * ( this->speed * time * 1000 + 0.1);
[6056]119  Vector v = this->velocity * dt;
[3708]120  this->shiftCoor(v);
121
[6056]122  if (this->tickLifeCycle(dt))
123    this->deactivate();
[3708]124}
125
126/**
[4836]127 *  the function gets called, when the projectile is destroyed
[3708]128*/
[5456]129void Laser::destroy ()
[5257]130{
[5456]131  PRINTF(5)("DESTROY Laser\n");
[5448]132  this->lifeCycle = .95; //!< @todo calculate this usefully.
[5456]133  ParticleEngine::getInstance()->addConnection(this->emitter, Laser::explosionParticles);
[5257]134}
135
136
[5500]137void Laser::draw () const
[3708]138{
139  glMatrixMode(GL_MODELVIEW);
140  glPushMatrix();
[5457]141  glPushAttrib(GL_ENABLE_BIT);
142  glDisable(GL_LIGHTING);
[3708]143
[4593]144  float matrix[4][4];
[3708]145  glTranslatef (this->getAbsCoor ().x, this->getAbsCoor ().y, this->getAbsCoor ().z);
146  this->getAbsDir().matrix (matrix);
[4593]147  glMultMatrixf((float*)matrix);
[3755]148  glScalef(2.0, 2.0, 2.0);
[5994]149  this->getModel()->draw();
[5457]150  glPopAttrib();
[3708]151  glPopMatrix();
152}
153
Note: See TracBrowser for help on using the repository browser.