2011-08-04 19:33:41 -04:00
|
|
|
// $Id$
|
|
|
|
//
|
|
|
|
// SuperTuxKart - a fun racing game with go-kart
|
|
|
|
// Copyright (C) 2011 Joerg Henrichs
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 3
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
2011-09-11 20:28:46 -04:00
|
|
|
#include "modes/linear_world.hpp"
|
2011-09-11 19:59:49 -04:00
|
|
|
#include "modes/world.hpp"
|
|
|
|
#include "tracks/check_manager.hpp"
|
|
|
|
#include "tracks/check_structure.hpp"
|
|
|
|
#include "tracks/track.hpp"
|
2011-08-04 19:33:41 -04:00
|
|
|
#include "tracks/track_sector.hpp"
|
|
|
|
#include "tracks/quad_graph.hpp"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
/** Initialises the object, and sets the current graph node to be undefined.
|
|
|
|
*/
|
|
|
|
TrackSector::TrackSector()
|
|
|
|
{
|
|
|
|
reset();
|
|
|
|
} // TrackSector
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void TrackSector::reset()
|
|
|
|
{
|
2011-09-11 20:57:14 -04:00
|
|
|
m_current_graph_node = QuadGraph::UNKNOWN_SECTOR;
|
|
|
|
m_last_valid_graph_node = QuadGraph::UNKNOWN_SECTOR;
|
|
|
|
m_on_road = false;
|
|
|
|
m_last_triggered_checkline = -1;
|
2011-08-04 19:33:41 -04:00
|
|
|
} // reset
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
/** Updates the current graph node index, and the track coordinates for
|
|
|
|
* the specified point.
|
|
|
|
* \param xyz The new coordinates to search the graph node for.
|
|
|
|
*/
|
2011-10-16 08:29:37 -04:00
|
|
|
void TrackSector::update(const Vec3 &xyz)
|
2011-08-04 19:33:41 -04:00
|
|
|
{
|
|
|
|
int prev_sector = m_current_graph_node;
|
|
|
|
|
|
|
|
QuadGraph::get()->findRoadSector(xyz, &m_current_graph_node);
|
|
|
|
m_on_road = m_current_graph_node != QuadGraph::UNKNOWN_SECTOR;
|
2011-09-11 19:59:49 -04:00
|
|
|
|
2011-08-04 19:33:41 -04:00
|
|
|
// If m_track_sector == UNKNOWN_SECTOR, then the kart is not on top of
|
|
|
|
// the road, so we have to use search for the closest graph node.
|
|
|
|
if(m_current_graph_node == QuadGraph::UNKNOWN_SECTOR)
|
|
|
|
{
|
|
|
|
m_current_graph_node =
|
|
|
|
QuadGraph::get()->findOutOfRoadSector(xyz,
|
|
|
|
prev_sector);
|
|
|
|
}
|
2011-09-11 20:07:41 -04:00
|
|
|
else
|
2011-09-11 19:59:49 -04:00
|
|
|
{
|
2011-09-11 20:28:46 -04:00
|
|
|
// keep the current quad as the latest valid one IF the player has one
|
|
|
|
// of the required checklines
|
2011-09-11 19:59:49 -04:00
|
|
|
const std::vector<int>& checkline_requirements =
|
|
|
|
QuadGraph::get()->getNode(m_current_graph_node).getChecklineRequirements();
|
|
|
|
|
|
|
|
if (checkline_requirements.size() == 0)
|
|
|
|
{
|
|
|
|
m_last_valid_graph_node = m_current_graph_node;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-11 20:28:46 -04:00
|
|
|
bool has_prerequisite = false;
|
|
|
|
|
2011-09-11 19:59:49 -04:00
|
|
|
for (unsigned int i=0; i<checkline_requirements.size(); i++)
|
2011-10-16 07:36:41 -04:00
|
|
|
{
|
2011-09-11 20:57:14 -04:00
|
|
|
if (m_last_triggered_checkline == checkline_requirements[i])
|
2011-09-11 19:59:49 -04:00
|
|
|
{
|
2011-10-16 07:36:41 -04:00
|
|
|
has_prerequisite = true;
|
2011-09-11 19:59:49 -04:00
|
|
|
m_last_valid_graph_node = m_current_graph_node;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-09-11 20:28:46 -04:00
|
|
|
|
2011-09-11 20:57:14 -04:00
|
|
|
// TODO: show a message when we detect a user cheated.
|
2011-10-16 07:36:41 -04:00
|
|
|
|
2011-09-11 19:59:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-04 19:33:41 -04:00
|
|
|
// Now determine the 'track' coords, i.e. ow far from the start of the
|
|
|
|
// track, and how far to the left or right of the center driveline.
|
|
|
|
QuadGraph::get()->spatialToTrack(&m_current_track_coords, xyz,
|
|
|
|
m_current_graph_node);
|
|
|
|
} // update
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void TrackSector::rescue()
|
|
|
|
{
|
2011-09-11 19:59:49 -04:00
|
|
|
if (m_last_valid_graph_node != QuadGraph::UNKNOWN_SECTOR)
|
2011-08-04 19:33:41 -04:00
|
|
|
m_current_graph_node = m_last_valid_graph_node;
|
|
|
|
|
|
|
|
// Using the predecessor has the additional advantage (besides punishing
|
|
|
|
// the player a bit more) that it makes it less likely to fall in a
|
|
|
|
// rescue loop since the kart moves back on each attempt.
|
|
|
|
m_current_graph_node = QuadGraph::get()->getNode(m_current_graph_node)
|
|
|
|
.getPredecessor();
|
|
|
|
m_last_valid_graph_node = QuadGraph::get()->getNode(m_current_graph_node)
|
|
|
|
.getPredecessor();
|
2011-09-08 20:40:08 -04:00
|
|
|
} // rescue
|