summaryrefslogtreecommitdiff
path: root/src/player.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.cpp')
-rw-r--r--src/player.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/player.cpp b/src/player.cpp
index 40650157..14882712 100644
--- a/src/player.cpp
+++ b/src/player.cpp
@@ -22,6 +22,8 @@
#include "player.h"
+#include "defines.h"
+
#include <cassert>
void Player::setDatabaseID(int id)
@@ -42,6 +44,20 @@ void Player::update()
setStat(STAT_MAGIC, 10 + mRawStats.stats[STAT_INTELLIGENCE]);
setStat(STAT_ACCURACY, 50 + mRawStats.stats[STAT_DEXTERITY]);
setStat(STAT_SPEED, mRawStats.stats[STAT_DEXTERITY]);
+
+ // attacking
+ if (mIsAttacking)
+ {
+ // plausibility check of attack command
+ if (mActionTime <= 0)
+ {
+ // perform attack
+ mActionTime = 1000;
+ mIsAttacking = false;
+ raiseUpdateFlags (ATTACK);
+ //TODO: attack mechanics
+ }
+ }
}
void Player::setInventory(const Inventory &inven)