Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/projectiles/guided_missile.h @ 9869

Last change on this file since 9869 was 9869, checked in by bensch, 17 years ago

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File size: 1.2 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
11class Weapon;
12class SpriteParticles;
13class ParticleEmitter;
14class FastFactory;
15
16class GuidedMissile : public Projectile
17{
18  ObjectListDeclaration(GuidedMissile);
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 (WorldEntity* killer);
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.