Prevented mis-use of rescuing (drive off road close to another potentially

unreachable part of the track, press rescue, and (if you were closer to
that other part of the track), rescue would drop you off there).


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@2688 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2008-12-16 01:42:22 +00:00
parent a6fc9ab26d
commit 27646ae0b1

View File

@ -192,6 +192,9 @@ void LinearWorld::update(float delta)
}
else
{
// Preserve on_road flag in case of rescue. This allows to pick
// a different rescue position for karts being off road.
if(!kart->isRescue())
kart_info.m_on_road = true;
}
@ -562,6 +565,15 @@ void LinearWorld::moveKartAfterRescue(Kart* kart, btRigidBody* body)
{
KartInfo& info = m_kart_info[kart->getWorldKartId()];
// If the kart is off road, rescue it to the last valid track position
// instead of the current one (since the sector might be determined by
// being closest to it, which allows shortcuts like drive towards another
// part of the lap, press rescue, and be rescued to this other part of
// the track (example: math class, drive towards the left after start,
// when hitting the books, press rescue --> you are rescued to the
// end of the track).
if(!info.m_on_road)
info.m_track_sector = info.m_last_valid_sector;
// FIXME - removing 1 here makes it less likely to fall in a rescue loop since the kart
// moves back on each attempt. This is still a weak hack. Also some other code depends
// on 1 being substracted, like 'forceRescue'