| Last change
                  on this file since 7419 was
                  6622,
                  checked in by bensch, 20 years ago | 
        
          | 
orxonox/trunk: Material can now be copiedParticleSprite used for all Projectiles
 
 | 
        | File size:
            799 bytes | 
      
      
        
  | Line |  | 
|---|
| 1 | /*! | 
|---|
| 2 | * @file laser.h | 
|---|
| 3 | * @brief a projectile, that is been shooted by a weapon | 
|---|
| 4 | */ | 
|---|
| 5 |  | 
|---|
| 6 | #ifndef _LASER_H | 
|---|
| 7 | #define _LASER_H | 
|---|
| 8 |  | 
|---|
| 9 | #include "projectile.h" | 
|---|
| 10 |  | 
|---|
| 11 | class Vector; | 
|---|
| 12 | class Weapon; | 
|---|
| 13 | class SpriteParticles; | 
|---|
| 14 | class ParticleEmitter; | 
|---|
| 15 | class FastFactory; | 
|---|
| 16 |  | 
|---|
| 17 | class Laser : public Projectile | 
|---|
| 18 | { | 
|---|
| 19 | public: | 
|---|
| 20 | Laser (); | 
|---|
| 21 | virtual ~Laser (); | 
|---|
| 22 |  | 
|---|
| 23 |  | 
|---|
| 24 | virtual void activate(); | 
|---|
| 25 | virtual void deactivate(); | 
|---|
| 26 |  | 
|---|
| 27 | virtual void collidesWith(WorldEntity* entity, const Vector& location); | 
|---|
| 28 |  | 
|---|
| 29 | virtual void destroy (); | 
|---|
| 30 |  | 
|---|
| 31 | virtual void tick (float dt); | 
|---|
| 32 | virtual void draw () const; | 
|---|
| 33 |  | 
|---|
| 34 |  | 
|---|
| 35 | private: | 
|---|
| 36 | static FastFactory*               fastFactory; | 
|---|
| 37 |  | 
|---|
| 38 | static SpriteParticles*           explosionParticles; | 
|---|
| 39 |  | 
|---|
| 40 | ParticleEmitter*                  emitter; | 
|---|
| 41 |  | 
|---|
| 42 |  | 
|---|
| 43 | WorldEntity* hitEntity; // FIXME TEMPORARY | 
|---|
| 44 | }; | 
|---|
| 45 |  | 
|---|
| 46 | #endif /* _LASER_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.