Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/weapons/fps_sniper_rifle.h @ 9869

Last change on this file since 9869 was 9869, checked in by bensch, 18 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.8 KB
Line 
1/*!
2    @file weapon.h
3  *  a weapon that a player can use
4
5    A Player has a list of weapons, that can be choosen to shoot projectiles
6    (projectiles.{cc,h}) at enemies. These weapons can be shooted sequentially
7    or (if able) combined. Therefore you can choose the weapon mode = choose
8    a weapon.
9
10    A weapon is characterized by:
11     o firing-rate: the initial firing rate of a weapon (1/s = Herz)
12     o slowdown-factor: this is a factor d: exp(-d*x), d is element of all positive R. it determines how fast the firing-rate will slow down. if no slowdown: d=0, the bigger d is, the faster the weapon will slow down!
13     o energy-consumption: this determines the energy that has to be used to produce this projectile = costs per projectile
14
15    Furthermore there are some other attributes, that will help to represent a firing
16    weapon in this world:
17     o sound file/ressource: this is a pointer to the sound-file/ressource. however it may be represented
18     o shooting animation
19
20*/
21
22
23#ifndef _FPS_SNIPER_RIFLE_H
24#define _FPS_SNIPER_RIFLE_H
25
26#include "weapon.h"
27
28
29//! a weapon can be left or right sided
30/**
31 * @todo this will be reset with mirror X/Y/Z
32 */
33#define    W_LEFT        0
34#define    W_RIGHT       1
35
36
37class Material;
38
39class FPSSniperRifle : public Weapon
40  {
41    ObjectListDeclaration(FPSSniperRifle);
42
43  public:
44    FPSSniperRifle (int leftRight);
45    FPSSniperRifle (const TiXmlElement* root);
46    virtual ~FPSSniperRifle ();
47
48    void init();
49    virtual void loadParams(const TiXmlElement* root);
50
51    virtual void activate();
52    virtual void deactivate();
53
54    virtual void fire();
55
56    virtual void draw() const;
57
58
59
60  private:
61    int              leftRight;   //!< this will become an enum
62    Material*        material;    //!< material
63
64  };
65#endif /* _FPS_SNIPER_RIFLE_H */
Note: See TracBrowser for help on using the repository browser.