This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
dungeon-gunner/source/abstract/Character.cpp

105 lines
2.3 KiB
C++
Raw Normal View History

2012-10-01 09:02:44 +00:00
/*
* Actor.cpp
*
* Created on: 02.09.2012
* Author: Felix
2012-09-12 12:21:57 +00:00
*/
2012-10-01 09:02:44 +00:00
#include "Character.h"
#include <algorithm>
#include <assert.h>
#include "../sprite/Body.h"
const String Character::KEY_HEALTH = "health";
const String Character::KEY_SPEED = "speed";
std::vector<Character*> Character::mCharacterInstances = std::vector<Character*>();
2012-10-01 09:02:44 +00:00
/**
* Saves pointer to this instance in static var for think().
*/
Character::Character(const Instances& instances, const String& texturePath,
const PhysicalData& data, const Yaml& config) :
Sprite(config, data),
mMaxHealth(config.get<int>(KEY_HEALTH)),
mCurrentHealth(mMaxHealth),
mMovementSpeed(config.get<float>(KEY_SPEED)),
2012-10-13 16:57:12 +00:00
mWeapon(instances, *this, Yaml("weapon.yaml")),
mInstances(instances) {
mCharacterInstances.push_back(this);
2012-10-01 09:02:44 +00:00
}
/**
* Deletes pointer from static variable mCharacterInstances, inserts body into world
* (done here to avoid altering Box2D data during timestep).
2012-10-01 09:02:44 +00:00
*/
Character::~Character() {
auto it = std::find(mCharacterInstances.begin(), mCharacterInstances.end(), this);
assert(it != mCharacterInstances.end());
mCharacterInstances.erase(it);
mInstances.collection.insert(std::shared_ptr<Sprite>(new Body(mInstances.world,
getPosition(), Yaml("body.yaml"))));
2012-10-01 09:02:44 +00:00
}
/**
* Calls onThink on all Actor instances.
*
* @param elapsedTime Amount of time to simulate.
*/
void
Character::think(float elapsedTime) {
for (auto i : mCharacterInstances) {
2012-10-01 09:02:44 +00:00
i->onThink(elapsedTime);
}
}
/**
* Subtracts health from Actor. Calls onDeath() when health reaches zero and marks
* object for deletion.
2012-10-01 09:02:44 +00:00
*
* @param damage Amount of health to subtract.
*/
void
Character::onDamage(int damage) {
mCurrentHealth -= damage;
if (mCurrentHealth <= 0) {
mCurrentHealth = 0;
onDeath();
setDelete(true);
2012-10-01 09:02:44 +00:00
}
2012-09-12 12:21:57 +00:00
}
2012-10-01 09:02:44 +00:00
/**
* Implement this function for any (regular) AI computations. Default implementation does nothing.
*
* @param elapsedTime Amount of time to simulate.
*/
void
Character::onThink(float elapsedTime) {
}
2012-10-01 09:02:44 +00:00
/**
* Called when health reaches zero. Default immplementation does nothing.
2012-10-01 09:02:44 +00:00
*/
void
Character::onDeath() {
2012-09-12 12:21:57 +00:00
}
/**
* Gets the default movement speed (walking) of the character.
*/
float
Character::getMovementSpeed() const {
return mMovementSpeed;
}
2012-10-13 16:57:12 +00:00
/**
* Fire the attached weapon.
*/
void
Character::fire() {
mWeapon.fire();
}