src/Projectile.hh
author terom
Mon, 08 Dec 2008 17:24:40 +0000
changeset 296 4d3ebaa29430
parent 283 7540b0859579
child 305 56799ec8d7be
permissions -rw-r--r--
add separate Types.hh, and fix projectile-worm collisions on network
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"
233
ff4ecea83cf5 start using CL_ResourceManager, change most draw methods to take a Graphics*, implment even better input handling, and draw weapon names
terom
parents: 224
diff changeset
    11
#include "GraphicsPointer.hh"
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    12
283
7540b0859579 start adding some documentation, most core classes (outside of Network) are now doxygen-enabled
terom
parents: 276
diff changeset
    13
/**
7540b0859579 start adding some documentation, most core classes (outside of Network) are now doxygen-enabled
terom
parents: 276
diff changeset
    14
 * 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
    15
 * 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
    16
 * 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
    17
 */
201
135616467a0a rename Shot -> Projectile
terom
parents: 197
diff changeset
    18
class Projectile : public PhysicsObject {
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    19
protected:
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    20
    /**
276
87434abc1ba1 ability to send NetworkObjectID's via packets, modify Network Projectiles to use this and fix recoil/reloading
terom
parents: 272
diff changeset
    21
     * Which player fired this projectile?
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    22
     */
276
87434abc1ba1 ability to send NetworkObjectID's via packets, modify Network Projectiles to use this and fix recoil/reloading
terom
parents: 272
diff changeset
    23
    Player *player;
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    24
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
     * Projectiles can be inivisble, e.g. for digging
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    27
     */
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    28
    bool visible;
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    29
    
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    30
    /**
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    31
     * The projectile is diamond-shaped, and this is the dimanond's "radius"
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    32
     */
208
7709571e1131 Digging now uses projectiles.
saiam
parents: 204
diff changeset
    33
    float radius;
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    34
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
     * The radius of earth removed by this projectile on impact
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    37
     */
263
8c999cf4c182 weapon projectile radiuses and fix network play (local_player == NULL, Rope releasing upon being hit
terom
parents: 255
diff changeset
    38
    float explosionRadius;
223
2fcaf54ed37b basic network-projectiles
terom
parents: 222
diff changeset
    39
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    40
    /**
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    41
     * How many ticks this projectile lasts before being expiring
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    42
     */
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    43
    TickCount expire;
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
     * The tick we were spawned at
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    47
     */
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    48
    TickCount birth_tick;
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    49
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    50
public:
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    51
    /**
276
87434abc1ba1 ability to send NetworkObjectID's via packets, modify Network Projectiles to use this and fix recoil/reloading
terom
parents: 272
diff changeset
    52
     * 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
    53
     * 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
    54
     */
276
87434abc1ba1 ability to send NetworkObjectID's via packets, modify Network Projectiles to use this and fix recoil/reloading
terom
parents: 272
diff changeset
    55
    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
    56
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    57
    /**
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    58
     * Removes this from the world's list of projectiles
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    59
     */
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
    60
    virtual ~Projectile (void);
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    61
    
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    62
    /**
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    63
     * Draw
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    64
     */
255
99431fdb0dc8 add PixelDimension/PixelCoordinate types, convert Terrain to use them, and convert/clean up drawing code
terom
parents: 252
diff changeset
    65
    virtual void draw (Graphics *g, 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
    66
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
    67
protected:
252
25054ce94d07 Rope is released if the ground on the pivot point is destroyed.
ekku
parents: 248
diff changeset
    68
    /**
224
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    69
     * 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
    70
     *
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    71
     * This is overriden by Network.
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    72
     */
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    73
    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
    74
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    75
    /**
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    76
     * This Projectile has hit the given player.
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    77
     *
4d3ebaa29430 add separate Types.hh, and fix projectile-worm collisions on network
terom
parents: 283
diff changeset
    78
     * 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
    79
     * multiple times...
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
    virtual void onHitPlayer (Player *player, Health damage);
224
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    82
    
252
25054ce94d07 Rope is released if the ground on the pivot point is destroyed.
ekku
parents: 248
diff changeset
    83
    /**
224
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    84
     * Call onDestroy, removingGround
e6faefba2ec1 fixed logger, and network projectiles should work reasonably well now
terom
parents: 223
diff changeset
    85
     */
272
97de051edbcf Added PhysicsObject* attribute to onCollision
saiam
parents: 271
diff changeset
    86
    virtual void onCollision (Vector collisionPoint, PhysicsObject *other);
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
    /**
271
bf6784a95b08 touch up weapon/projectile with comments and slight tweaking
terom
parents: 263
diff changeset
    89
     * 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
    90
     */
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
    91
    virtual void tick (TimeMS dt);
197
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    92
};
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    93
 
d9ac888de778 Hajotetaan lis??
ekku
parents:
diff changeset
    94
#endif