summaryrefslogtreecommitdiff
path: root/src/being/being.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-08-04 00:55:59 +0300
committerAndrei Karas <akaras@inbox.ru>2016-08-04 00:55:59 +0300
commit4fd2b7bdfa4c860c384557bda8b93f80dec8133f (patch)
tree4e740afd6486f63efa1c6f14bb68e320a27c5f02 /src/being/being.cpp
parent109f2df166a15261e2a43f1a73c7f4aeeb13b681 (diff)
downloadplus-4fd2b7bdfa4c860c384557bda8b93f80dec8133f.tar.gz
plus-4fd2b7bdfa4c860c384557bda8b93f80dec8133f.tar.bz2
plus-4fd2b7bdfa4c860c384557bda8b93f80dec8133f.tar.xz
plus-4fd2b7bdfa4c860c384557bda8b93f80dec8133f.zip
Draw hp bar for elementals.
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r--src/being/being.cpp71
1 files changed, 70 insertions, 1 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index 9a4cc2be3..725bf0f80 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -3606,6 +3606,18 @@ void Being::drawMercenary(Graphics *restrict const graphics,
drawMercenarySpriteAt(graphics, px, py);
}
+void Being::drawElemental(Graphics *restrict const graphics,
+ const int offsetX,
+ const int offsetY) const restrict2
+{
+ // getActorX() + offsetX;
+ const int px = mPixelX - mapTileSize / 2 + offsetX;
+ // getActorY() + offsetY;
+ const int py = mPixelY - mapTileSize + offsetY;
+ drawBeingCursor(graphics, px, py);
+ drawElementalSpriteAt(graphics, px, py);
+}
+
void Being::drawPortal(Graphics *restrict const graphics,
const int offsetX,
const int offsetY) const restrict2
@@ -3643,6 +3655,11 @@ void Being::draw(Graphics *restrict const graphics,
offsetX,
offsetY);
break;
+ case ActorType::Elemental:
+ drawElemental(graphics,
+ offsetX,
+ offsetY);
+ break;
case ActorType::Monster:
drawMonster(graphics,
offsetX,
@@ -3653,7 +3670,6 @@ void Being::draw(Graphics *restrict const graphics,
case ActorType::Unknown:
case ActorType::Npc:
case ActorType::FloorItem:
- case ActorType::Elemental:
#ifdef TMWA_SUPPORT
case ActorType::LocalPet:
#endif
@@ -3935,6 +3951,59 @@ void Being::drawMercenarySpriteAt(Graphics *restrict const graphics,
}
}
+void Being::drawElementalSpriteAt(Graphics *restrict const graphics,
+ const int x,
+ const int y) const restrict2
+{
+ if (mHighlightMonsterAttackRange &&
+ mAction != BeingAction::DEAD)
+ {
+ if (!userPalette)
+ {
+ CompoundSprite::drawSimple(graphics, x, y);
+ return;
+ }
+
+ int attackRange;
+ if (mAttackRange)
+ attackRange = mapTileSize * mAttackRange;
+ else
+ attackRange = mapTileSize;
+
+ graphics->setColor(userPalette->getColorWithAlpha(
+ UserColorId::MONSTER_ATTACK_RANGE));
+
+ graphics->fillRectangle(Rect(
+ x - attackRange, y - attackRange,
+ 2 * attackRange + mapTileSize, 2 * attackRange + mapTileSize));
+ }
+
+ CompoundSprite::drawSimple(graphics, x, y);
+
+ if (mShowMobHP &&
+ mInfo)
+ {
+ if (mId == PlayerInfo::getElementalId())
+ {
+ // show hp bar here
+ int maxHP = PlayerInfo::getStatBase(Attributes::ELEMENTAL_MAX_HP);
+ if (!maxHP)
+ maxHP = mInfo->getMaxHP();
+
+ drawHpBar(graphics,
+ maxHP,
+ PlayerInfo::getStatBase(Attributes::ELEMENTAL_HP),
+ mDamageTaken,
+ UserColorId::MONSTER_HP,
+ UserColorId::MONSTER_HP2,
+ x - 50 + mapTileSize / 2 + mInfo->getHpBarOffsetX(),
+ y + mapTileSize - 6 + mInfo->getHpBarOffsetY(),
+ 2 * 50,
+ 4);
+ }
+ }
+}
+
void Being::drawPortalSpriteAt(Graphics *restrict const graphics,
const int x,
const int y) const restrict2