src/Projectile.hh
author Tero Marttila <terom@fixme.fi>
Wed, 21 Jan 2009 23:07:22 +0200
branchnew_graphics
changeset 412 721c60072091
parent 309 05a39422c81e
child 417 c503e0c6a740
permissions -rw-r--r--
new graphics code compiles... no, it doesn't work yet
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
     1
#ifndef PROJECTILE_HH
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
     2
#define PROJECTILE_HH
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
     3
 
201
135616467a0a rename Shot -> Projectile
terom
parents: 197
diff changeset
     4
class Projectile;
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
     5
222
293ddf4c067d reorganize PhysicsObject/Player/Projectile lists so that PhysicsObject doesn't need to know about its subclasses anymore, and PhysicsWorld doesn't need to know about GameState
ekku
parents: 211
diff changeset
     6
#include "GameState.hh"
296
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
     7
#include "Player.hh"
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
     8
#include "PhysicsObject.hh"
208
7709571e1131 Digging now uses projectiles.
saiam
parents: 204
diff changeset
     9
#include "Timer.hh"
296
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    10
#include "Types.hh"
412
721c60072091 new graphics code compiles... no, it doesn't work yet
Tero Marttila <terom@fixme.fi>
parents: 309
diff changeset
    11
721c60072091 new graphics code compiles... no, it doesn't work yet
Tero Marttila <terom@fixme.fi>
parents: 309
diff changeset
    12
#include "Graphics/Drawable.hh"
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    13
283
7540b0859579 start adding some documentation, most core classes (outside of Network) are now doxygen-enabled
terom
parents: 276
diff changeset
    14
/**
7540b0859579 start adding some documentation, most core classes (outside of Network) are now doxygen-enabled
terom
parents: 276
diff changeset
    15
 * A projectile is a flying PhysicsObject, created by firing a player's weapon. It has an initial velocity, is
7540b0859579 start adding some documentation, most core classes (outside of Network) are now doxygen-enabled
terom
parents: 276
diff changeset
    16
 * represented as a diamond-shape with the given "radius", can explode or bounce on collisions, expires at some point,
7540b0859579 start adding some documentation, most core classes (outside of Network) are now doxygen-enabled
terom
parents: 276
diff changeset
    17
 * and can remove ground around it upon exploding.
7540b0859579 start adding some documentation, most core classes (outside of Network) are now doxygen-enabled
terom
parents: 276
diff changeset
    18
 */
201
135616467a0a rename Shot -> Projectile
terom
parents: 197
diff changeset
    19
class Projectile : public PhysicsObject {
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    20
protected:
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    21
    /**
276
87434abc1ba1 ability to send NetworkObjectID's via packets, modify Network Projectiles to use this and fix recoil/reloading
terom
parents: 272
diff changeset
    22
     * Which player fired this projectile?
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    23
     */
276
87434abc1ba1 ability to send NetworkObjectID's via packets, modify Network Projectiles to use this and fix recoil/reloading
terom
parents: 272
diff changeset
    24
    Player *player;
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    25
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    26
    /**
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    27
     * Projectiles can be inivisble, e.g. for digging
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    28
     */
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    29
    bool visible;
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    30
    
305
56799ec8d7be Weapon damage and some other stuff
ekku
parents: 296
diff changeset
    31
    Weapon *weapon;
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    32
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    33
    /**
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    34
     * The tick we were spawned at
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    35
     */
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    36
    TickCount birth_tick;
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    37
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    38
public:
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    39
    /**
276
87434abc1ba1 ability to send NetworkObjectID's via packets, modify Network Projectiles to use this and fix recoil/reloading
terom
parents: 272
diff changeset
    40
     * Constructs this projectile using the given position/velocity, pulling the rest of the parameter values from the
87434abc1ba1 ability to send NetworkObjectID's via packets, modify Network Projectiles to use this and fix recoil/reloading
terom
parents: 272
diff changeset
    41
     * given weapon. The given player is assigned to this projectile. 
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    42
     */
276
87434abc1ba1 ability to send NetworkObjectID's via packets, modify Network Projectiles to use this and fix recoil/reloading
terom
parents: 272
diff changeset
    43
    Projectile (Player *player, Vector position, Vector velocity, Weapon *weapon, bool visible = true);
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    44
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    45
    /**
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    46
     * Removes this from the world's list of projectiles
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    47
     */
222
293ddf4c067d reorganize PhysicsObject/Player/Projectile lists so that PhysicsObject doesn't need to know about its subclasses anymore, and PhysicsWorld doesn't need to know about GameState
ekku
parents: 211
diff changeset
    48
    virtual ~Projectile (void);
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    49
    
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    50
    /**
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    51
     * Draw
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    52
     */
412
721c60072091 new graphics code compiles... no, it doesn't work yet
Tero Marttila <terom@fixme.fi>
parents: 309
diff changeset
    53
    virtual void draw (graphics::Display &display, PixelCoordinate camera) const;
222
293ddf4c067d reorganize PhysicsObject/Player/Projectile lists so that PhysicsObject doesn't need to know about its subclasses anymore, and PhysicsWorld doesn't need to know about GameState
ekku
parents: 211
diff changeset
    54
308
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    55
    /**
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    56
     * Get damage inflicted by this projectile.
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    57
     *
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    58
     * @return Damage inflicted by projectile.
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    59
     */
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    60
    Health getDamage ();
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    61
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    62
    /**
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    63
     * Adds one kill to projectile owner.
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    64
     */
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    65
    void addKillToOwner ();
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    66
309
05a39422c81e You shouldn't get frags by killing yourself anymore.
saiam
parents: 308
diff changeset
    67
    /**
05a39422c81e You shouldn't get frags by killing yourself anymore.
saiam
parents: 308
diff changeset
    68
     * Return the owner of the projectile.
05a39422c81e You shouldn't get frags by killing yourself anymore.
saiam
parents: 308
diff changeset
    69
     */
05a39422c81e You shouldn't get frags by killing yourself anymore.
saiam
parents: 308
diff changeset
    70
    const Player* getOwner (); 
05a39422c81e You shouldn't get frags by killing yourself anymore.
saiam
parents: 308
diff changeset
    71
222
293ddf4c067d reorganize PhysicsObject/Player/Projectile lists so that PhysicsObject doesn't need to know about its subclasses anymore, and PhysicsWorld doesn't need to know about GameState
ekku
parents: 211
diff changeset
    72
protected:
252
25054ce94d07 Rope is released if the ground on the pivot point is destroyed.
ekku
parents: 248
diff changeset
    73
    /**
224
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    74
     * Removes ground at given position if applicable, and destroys this PhysicsObject.
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    75
     *
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    76
     * This is overriden by Network.
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    77
     */
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    78
    virtual void onDestroy (Vector position, bool removeGround);
296
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    79
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    80
    /**
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    81
     * This Projectile has hit the given player.
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    82
     *
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    83
     * This Projectile inflicts a certain amount of damage on the player. We are not destroyed, this can be called
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    84
     * multiple times...
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    85
     */
308
60f4b55d5713 Calculates kills and deaths. You get frags by killing yourself \o/
saiam
parents: 305
diff changeset
    86
    virtual void onHitPlayer (Player *player);
224
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    87
    
252
25054ce94d07 Rope is released if the ground on the pivot point is destroyed.
ekku
parents: 248
diff changeset
    88
    /**
224
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    89
     * Call onDestroy, removingGround
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    90
     */
272
97de051edbcf Added PhysicsObject* attribute to onCollision
saiam
parents: 271
diff changeset
    91
    virtual void onCollision (Vector collisionPoint, PhysicsObject *other);
224
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    92
252
25054ce94d07 Rope is released if the ground on the pivot point is destroyed.
ekku
parents: 248
diff changeset
    93
    /**
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    94
     * If we have expired, call onDestory and removeGround
224
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    95
     */
222
293ddf4c067d reorganize PhysicsObject/Player/Projectile lists so that PhysicsObject doesn't need to know about its subclasses anymore, and PhysicsWorld doesn't need to know about GameState
ekku
parents: 211
diff changeset
    96
    virtual void tick (TimeMS dt);
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    97
};
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    98
 
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    99
#endif