diff options
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/src/being.cpp b/src/being.cpp index e92dccaa3..fc0f9a9c3 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -1551,16 +1551,18 @@ void Being::updateCoords() if (!mDispName) return; - // Monster names show above the sprite instead of below it - if (mType == MONSTER) + int offsetX = getPixelX(); + int offsetY = getPixelY(); + if (mInfo) { - mDispName->adviseXY(getPixelX(), - getPixelY() - getHeight() - mDispName->getHeight(), mMoveNames); - } - else - { - mDispName->adviseXY(getPixelX(), getPixelY(), mMoveNames); + offsetX += mInfo->getNameOffsetX(); + offsetY += mInfo->getNameOffsetY(); } + // Monster names show above the sprite instead of below it + if (mType == MONSTER) + offsetY += - getHeight() - mDispName->getHeight(); + + mDispName->adviseXY(offsetX, offsetY, mMoveNames); } void Being::optionChanged(const std::string &value) @@ -1654,8 +1656,18 @@ void Being::showName() font = gui->getSecureFont(); } - mDispName = new FlashText(displayName, getPixelX(), getPixelY(), - gcn::Graphics::CENTER, mNameColor, font); + if (mInfo) + { + mDispName = new FlashText(displayName, + getPixelX() + mInfo->getNameOffsetX(), + getPixelY() + mInfo->getNameOffsetY(), + gcn::Graphics::CENTER, mNameColor, font); + } + else + { + mDispName = new FlashText(displayName, getPixelX(), getPixelY(), + gcn::Graphics::CENTER, mNameColor, font); + } updateCoords(); } |