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