summaryrefslogtreecommitdiff
path: root/src/being
diff options
context:
space:
mode:
Diffstat (limited to 'src/being')
-rw-r--r--src/being/being.cpp50
-rw-r--r--src/being/being.h10
2 files changed, 57 insertions, 3 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index 7be22145b..b37db6c62 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -2839,9 +2839,9 @@ void Being::talkTo() const restrict2
npcHandler->talk(mId);
}
-void Being::draw(Graphics *restrict const graphics,
- const int offsetX,
- const int offsetY) const restrict2
+void Being::drawPlayer(Graphics *restrict const graphics,
+ const int offsetX,
+ const int offsetY) const restrict2
{
if (!mErased)
{
@@ -2881,6 +2881,50 @@ void Being::draw(Graphics *restrict const graphics,
}
}
+void Being::drawOther(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;
+ ActorSprite::draw1(graphics, px, py);
+ drawSpriteAt(graphics, px, py);
+}
+
+void Being::draw(Graphics *restrict const graphics,
+ const int offsetX,
+ const int offsetY) const restrict2
+{
+ switch (mType)
+ {
+ case ActorType::Player:
+ drawPlayer(graphics,
+ offsetX,
+ offsetY);
+ break;
+ case ActorType::Npc:
+ case ActorType::Monster:
+ case ActorType::FloorItem:
+ case ActorType::Portal:
+ case ActorType::LocalPet:
+ case ActorType::Avatar:
+#ifdef EATHENA_SUPPORT
+ case ActorType::Pet:
+ case ActorType::Mercenary:
+ case ActorType::Homunculus:
+ case ActorType::SkillUnit:
+ case ActorType::Unknown:
+#endif
+ default:
+ drawOther(graphics,
+ offsetX,
+ offsetY);
+ break;
+ }
+}
+
void Being::drawSprites(Graphics *restrict const graphics,
const int posX,
const int posY) const restrict2
diff --git a/src/being/being.h b/src/being/being.h
index 8d95205fd..7c3860220 100644
--- a/src/being/being.h
+++ b/src/being/being.h
@@ -631,6 +631,16 @@ class Being notfinal : public ActorSprite,
const int offsetY) const
restrict2 override final A_NONNULL(2);
+ void drawPlayer(Graphics *restrict const graphics,
+ const int offsetX,
+ const int offsetY) const
+ restrict2 A_NONNULL(2);
+
+ void drawOther(Graphics *restrict const graphics,
+ const int offsetX,
+ const int offsetY) const
+ restrict2 A_NONNULL(2);
+
void drawBasic(Graphics *restrict const graphics,
const int x,
const int y) const restrict2 A_NONNULL(2);