Added some debug output to swatter to check why a swatter is swatting

(use --debug=misc to enable).


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@9016 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2011-06-22 23:53:10 +00:00
parent da8ec214ce
commit 03b74e2e97

View File

@@ -428,6 +428,9 @@ void Attachment::aimSwatter()
m_count --;
m_animation_phase = SWATTER_TO_KART;
m_animation_target = min_kart;
if(UserConfigParams::logMisc())
printf("[swatter] %s aiming at %s.\n",
m_kart->getIdent().c_str(), min_kart->getIdent().c_str());
const KartProperties *kp = m_kart->getKartProperties();
m_animation_timer = kp->getSwatterAnimationTime();
const bool left = isLeftSideOfKart(min_kart->getXYZ());
@@ -442,6 +445,9 @@ void Attachment::aimSwatter()
*/
void Attachment::swatItem()
{
if(UserConfigParams::logMisc())
printf("[swatter] %s swatting item.\n",
m_kart->getIdent().c_str());
assert(m_type==ATTACH_SWATTER);
assert(m_animation_target==NULL);