From 4718c83d9204a0a9e2e0add143e829bbb9c0bff0 Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Fri, 26 Nov 2010 12:49:49 +0000 Subject: Implement Sprite::get/setClip for sprite sheet clipping & Creature::Orient for setting a Creature's clip/orientation --- Creature.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'Creature.cpp') diff --git a/Creature.cpp b/Creature.cpp index 7693cb9..ba2a790 100644 --- a/Creature.cpp +++ b/Creature.cpp @@ -38,3 +38,14 @@ int Creature::getHealth() { void Creature::setHealth(int h) { health = h; } + +void Creature::orient() { + if (xVel < 0) + clipNo = ORIENT_LEFT; + else if (xVel > 0) + clipNo = ORIENT_RIGHT; + else if (yVel < 0) + clipNo = ORIENT_BACK; + else + clipNo = ORIENT_FRONT; +} -- cgit v1.2.3