43 lines
833 B
C++
Executable file
43 lines
833 B
C++
Executable file
/*
|
|
* Bullet.h
|
|
*
|
|
* Created on: 12.08.2012
|
|
* Author: Felix
|
|
*/
|
|
|
|
#ifndef DG_BULLET_H_
|
|
#define DG_BULLET_H_
|
|
|
|
#include <string>
|
|
|
|
#include "../particle/Particle.h"
|
|
#include "../util/Yaml.h"
|
|
|
|
class Particle;
|
|
class Yaml;
|
|
|
|
/**
|
|
* Bullet particle fired by a weapon, may damage actors.
|
|
*/
|
|
class Bullet : public Particle {
|
|
// Public functions.
|
|
public:
|
|
Bullet(const sf::Vector2f& position, Body& shooter, float direction,
|
|
const Yaml& config);
|
|
|
|
void onCollide(Body& other, Category category);
|
|
bool doesCollide(Body& other);
|
|
|
|
// Private variables.
|
|
private:
|
|
static const std::string KEY_DAMAGE;
|
|
static const int DEFAULT_DAMAGE;
|
|
static const std::string KEY_SPEED;
|
|
static const float DEFAULT_SPEED;
|
|
|
|
Body& mShooter;
|
|
const int mDamage;
|
|
const float mSpeed;
|
|
};
|
|
|
|
#endif /* DG_BULLET_H_ */
|