From d6503ad4863c85642de046697ce28af10dbb5c0d Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 13 Oct 2013 18:25:47 +0000 Subject: Draw both owner and entity name on HUD targets. --- src/client/hud.cc | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src/client') diff --git a/src/client/hud.cc b/src/client/hud.cc index bc75963..0142201 100644 --- a/src/client/hud.cc +++ b/src/client/hud.cc @@ -233,12 +233,16 @@ void HUD::draw_target(core::Entity *entity, bool is_active_target) // labels std::string label_text; + std::string label_textsub; if (entity->type() == core::Entity::Controlable) { const core::EntityControlable *ec = static_cast(entity); if (ec->owner()) { label_text.append("^B"); label_text.append(ec->owner()->name()); + + label_textsub.append("^N"); + label_textsub.append(entity->name()); } else { label_text.append("^B"); label_text.append(entity->name()); @@ -246,10 +250,13 @@ void HUD::draw_target(core::Entity *entity, bool is_active_target) } else { if (entity->has_flag(core::Entity::Dockable)) { label_text.append("^B"); + label_text.append(entity->name()); + } else { label_text.append("^N"); + label_text.append(entity->name()); } - label_text.append(entity->name()); + } const ui::Font *label_font; @@ -262,6 +269,11 @@ void HUD::draw_target(core::Entity *entity, bool is_active_target) math::Vector2f label_size(2.0f * bitmap_radius, label_font->height()); math::Vector2f label_location(cx - bitmap_radius, cy + bitmap_radius); ui::Paint::draw_label(label_location, label_size,label_font, label_text); + + if (label_textsub.size()) { + label_location[1] +=label_font->height(); + ui::Paint::draw_label(label_location, label_size,label_font, label_textsub); + } if (is_active_target) { // draw distance -- cgit v1.2.3