summaryrefslogtreecommitdiff
path: root/src/map.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-01-25 03:36:13 +0100
committerIra Rice <irarice@gmail.com>2009-01-25 00:00:10 -0700
commitedd500dd27bb648840abfe1cecb0767d7b2ba3ae (patch)
tree7500a0c6906b3901677d4010b9a0dc845740c882 /src/map.cpp
parent20adf0056f3b22bf9628daed0967151918f75ad2 (diff)
downloadMana-edd500dd27bb648840abfe1cecb0767d7b2ba3ae.tar.gz
Mana-edd500dd27bb648840abfe1cecb0767d7b2ba3ae.tar.bz2
Mana-edd500dd27bb648840abfe1cecb0767d7b2ba3ae.tar.xz
Mana-edd500dd27bb648840abfe1cecb0767d7b2ba3ae.zip
Fixed performance hickups caused by animations due to buggy tick timer. A tad less performant than the intended solution but at least it is constantly so.
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/map.cpp b/src/map.cpp
index 01844409..57b79ef4 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -64,7 +64,6 @@ struct Location
TileAnimation::TileAnimation(Animation *ani):
mAnimation(ani),
- mLastUpdate(tick_time),
mLastImage(NULL)
{
}
@@ -72,8 +71,7 @@ TileAnimation::TileAnimation(Animation *ani):
void TileAnimation::update()
{
//update animation
- mAnimation.update(tick_time - mLastUpdate);
- mLastUpdate = tick_time;
+ mAnimation.update(1);
// exchange images
Image *img = mAnimation.getCurrentImage();
@@ -231,6 +229,17 @@ bool spriteCompare(const Sprite *a, const Sprite *b)
return a->getPixelY() < b->getPixelY();
}
+void Map::update()
+{
+ //update animated tiles
+ for (std::map<int, TileAnimation*>::iterator iAni = mTileAnimations.begin();
+ iAni != mTileAnimations.end();
+ iAni++)
+ {
+ iAni->second->update();
+ }
+}
+
void Map::draw(Graphics *graphics, int scrollX, int scrollY)
{
int endPixelY = graphics->getHeight() + scrollY + mTileHeight - 1;
@@ -246,14 +255,6 @@ void Map::draw(Graphics *graphics, int scrollX, int scrollY)
// Make sure sprites are sorted
mSprites.sort(spriteCompare);
- //update animated tiles
- for (std::map<int, TileAnimation*>::iterator iAni = mTileAnimations.begin();
- iAni != mTileAnimations.end();
- iAni++)
- {
- iAni->second->update();
- }
-
// draw the game world
Layers::const_iterator layeri = mLayers.begin();
for (; layeri != mLayers.end(); ++layeri)