| 
                Last change
                  on this file since 6806 was
                  5500,
                  checked in by bensch, 20 years ago
           | 
        
        
          | 
               
orxonox/trunk: all the WorldEntities now have a const function to draw themselves 
 
           | 
        
        | 
            File size:
            834 bytes
           | 
      
      
        
  | Line |   | 
|---|
| 1 | /*! | 
|---|
| 2 |  * @file rocket.h | 
|---|
| 3 |  * @brief a Rocket Projectile | 
|---|
| 4 | */ | 
|---|
| 5 |  | 
|---|
| 6 | #ifndef _ROCKET_H | 
|---|
| 7 | #define _ROCKET_H | 
|---|
| 8 |  | 
|---|
| 9 | #include "projectile.h" | 
|---|
| 10 |  | 
|---|
| 11 | class Vector; | 
|---|
| 12 | class Weapon; | 
|---|
| 13 | class ParticleSystem; | 
|---|
| 14 | class ParticleEmitter; | 
|---|
| 15 | class FastFactory; | 
|---|
| 16 |  | 
|---|
| 17 | class Rocket : public Projectile | 
|---|
| 18 | { | 
|---|
| 19 |   public: | 
|---|
| 20 |     Rocket (); | 
|---|
| 21 |     virtual ~Rocket (); | 
|---|
| 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 time); | 
|---|
| 32 |     virtual void draw () const; | 
|---|
| 33 |  | 
|---|
| 34 |  | 
|---|
| 35 |   private: | 
|---|
| 36 |     static FastFactory*               fastFactory; | 
|---|
| 37 |     static ParticleSystem*            trailParticles; | 
|---|
| 38 |     static ParticleSystem*            explosionParticles; | 
|---|
| 39 |  | 
|---|
| 40 |     ParticleEmitter*                  emitter; | 
|---|
| 41 |  | 
|---|
| 42 |  | 
|---|
| 43 |     WorldEntity* hitEntity; // FIXME TEMPORARY | 
|---|
| 44 |  | 
|---|
| 45 | }; | 
|---|
| 46 |  | 
|---|
| 47 | #endif /* _ROCKET_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.