Report with text when band gets attached to a kart.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@4924 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
mbjornstk 2010-03-03 22:42:01 +00:00
parent 455393e966
commit 4814c03e2b

View File

@ -27,6 +27,7 @@
#include "modes/world.hpp"
#include "physics/physics.hpp"
#include "race/race_manager.hpp"
#include "utils/string_utils.hpp"
/** RubberBand constructor. It creates a simple quad and attaches it to the
* root(!) of the graph. It's easier this way to get the right coordinates
@ -211,6 +212,14 @@ void RubberBand::hit(Kart *kart_hit, const Vec3 *track_xyz)
{
m_hit_kart = kart_hit;
m_attached_state = RB_TO_KART;
RaceGUI* gui = World::getWorld()->getRaceGUI();
irr::core::stringw hit_message;
hit_message += StringUtils::insertValues(_("%s bites %s's bait"),
kart_hit->getName().c_str(),
m_owner.getName().c_str()
).c_str();
gui->addMessage(hit_message, NULL, 3.0f, 40, video::SColor(255, 210, 50, 50));
return;
}