2009-07-06 09:35:33 -04:00
|
|
|
//
|
|
|
|
// SuperTuxKart - a fun racing game with go-kart
|
|
|
|
// Copyright (C) 2009 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.
|
|
|
|
|
2009-09-16 22:54:48 -04:00
|
|
|
#include "tracks/check_line.hpp"
|
2009-07-06 09:35:33 -04:00
|
|
|
|
|
|
|
#include "io/xml_node.hpp"
|
2012-03-19 16:21:11 -04:00
|
|
|
#include "karts/abstract_kart.hpp"
|
2010-02-10 06:40:33 -05:00
|
|
|
#include "modes/world.hpp"
|
2009-07-06 09:35:33 -04:00
|
|
|
#include "race/race_manager.hpp"
|
|
|
|
|
2012-04-18 18:07:45 -04:00
|
|
|
#include "irrlicht.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <string>
|
|
|
|
|
2009-07-08 08:33:22 -04:00
|
|
|
/** Constructor for a checkline.
|
|
|
|
* \param node XML node containing the parameters for this checkline.
|
2012-02-12 16:25:06 -05:00
|
|
|
* \param index Index of this check structure in the check manager.
|
2009-07-08 08:33:22 -04:00
|
|
|
*/
|
2012-02-12 16:25:06 -05:00
|
|
|
CheckLine::CheckLine(const XMLNode &node, unsigned int index)
|
|
|
|
: CheckStructure(node, index)
|
2009-07-06 09:35:33 -04:00
|
|
|
{
|
2010-02-10 06:40:33 -05:00
|
|
|
// Note that when this is called the karts have not been allocated
|
|
|
|
// in world, so we can't call world->getNumKarts()
|
|
|
|
m_previous_sign.resize(race_manager->getNumberOfKarts());
|
2009-07-06 09:35:33 -04:00
|
|
|
core::vector2df p1, p2;
|
2012-04-18 18:07:45 -04:00
|
|
|
if(node.get("p1", &p1) &&
|
|
|
|
node.get("p2", &p2) &&
|
|
|
|
node.get("min-height", &m_min_height))
|
|
|
|
{
|
|
|
|
m_left_point = Vec3(p1.X, m_min_height, p1.Y);
|
|
|
|
m_right_point = Vec3(p2.X, m_min_height, p2.Y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
node.get("p1", &m_left_point);
|
|
|
|
p1 = core::vector2df(m_left_point.getX(), m_left_point.getZ());
|
|
|
|
node.get("p2", &m_right_point);
|
|
|
|
p2 = core::vector2df(m_right_point.getX(), m_right_point.getZ());
|
|
|
|
m_min_height = std::min(m_left_point.getY(), m_right_point.getY());
|
|
|
|
}
|
2009-07-06 09:35:33 -04:00
|
|
|
m_line.setLine(p1, p2);
|
2010-11-28 17:08:02 -05:00
|
|
|
if(UserConfigParams::m_check_debug)
|
|
|
|
{
|
|
|
|
video::SMaterial material;
|
|
|
|
material.setFlag(video::EMF_BACK_FACE_CULLING, false);
|
2010-11-29 00:26:45 -05:00
|
|
|
material.setFlag(video::EMF_LIGHTING, false);
|
2010-11-28 17:08:02 -05:00
|
|
|
material.MaterialType = video::EMT_TRANSPARENT_ADD_COLOR;
|
|
|
|
scene::IMesh *mesh = irr_driver->createQuadMesh(&material,
|
|
|
|
/*create mesh*/true);
|
|
|
|
scene::IMeshBuffer *buffer = mesh->getMeshBuffer(0);
|
2010-12-15 17:31:53 -05:00
|
|
|
assert(buffer->getVertexType()==video::EVT_STANDARD);
|
|
|
|
irr::video::S3DVertex* vertices
|
|
|
|
= (video::S3DVertex*)buffer->getVertices();
|
|
|
|
vertices[0].Pos = core::vector3df(p1.X,
|
|
|
|
m_min_height-m_under_min_height,
|
|
|
|
p1.Y);
|
|
|
|
vertices[1].Pos = core::vector3df(p2.X,
|
|
|
|
m_min_height-m_under_min_height,
|
|
|
|
p2.Y);
|
|
|
|
vertices[2].Pos = core::vector3df(p2.X,
|
|
|
|
m_min_height+m_over_min_height,
|
|
|
|
p2.Y);
|
|
|
|
vertices[3].Pos = core::vector3df(p1.X,
|
|
|
|
m_min_height+m_over_min_height,
|
|
|
|
p1.Y);
|
|
|
|
for(unsigned int i=0; i<4; i++)
|
|
|
|
{
|
|
|
|
vertices[i].Color = m_active_at_reset
|
|
|
|
? video::SColor(0, 255, 0, 0)
|
|
|
|
: video::SColor(0, 128, 128, 128);
|
|
|
|
}
|
|
|
|
buffer->recalculateBoundingBox();
|
|
|
|
mesh->setBoundingBox(buffer->getBoundingBox());
|
2010-11-28 17:08:02 -05:00
|
|
|
m_debug_node = irr_driver->addMesh(mesh);
|
|
|
|
mesh->drop();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_debug_node = NULL;
|
|
|
|
}
|
2009-09-16 22:54:48 -04:00
|
|
|
} // CheckLine
|
2009-07-06 09:35:33 -04:00
|
|
|
|
2010-11-28 17:08:02 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
CheckLine::~CheckLine()
|
|
|
|
{
|
|
|
|
if(m_debug_node)
|
2010-11-29 06:47:15 -05:00
|
|
|
irr_driver->removeNode(m_debug_node);
|
2010-11-28 17:08:02 -05:00
|
|
|
|
|
|
|
} // CheckLine
|
2009-07-06 09:35:33 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
2009-09-16 22:54:48 -04:00
|
|
|
void CheckLine::reset(const Track &track)
|
2009-07-06 09:35:33 -04:00
|
|
|
{
|
|
|
|
CheckStructure::reset(track);
|
|
|
|
for(unsigned int i=0; i<m_previous_sign.size(); i++)
|
|
|
|
{
|
|
|
|
core::vector2df p = m_previous_position[i].toIrrVector2d();
|
|
|
|
m_previous_sign[i] = m_line.getPointOrientation(p)>=0;
|
|
|
|
}
|
|
|
|
} // reset
|
|
|
|
|
2010-11-29 00:26:45 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void CheckLine::changeDebugColor(bool is_active)
|
|
|
|
{
|
|
|
|
assert(m_debug_node);
|
|
|
|
|
|
|
|
scene::IMesh *mesh = m_debug_node->getMesh();
|
|
|
|
scene::IMeshBuffer *buffer = mesh->getMeshBuffer(0);
|
2010-12-15 17:31:53 -05:00
|
|
|
irr::video::S3DVertex* vertices
|
2010-11-29 00:26:45 -05:00
|
|
|
= (video::S3DVertex*)buffer->getVertices();
|
|
|
|
for(unsigned int i=0; i<4; i++)
|
|
|
|
{
|
|
|
|
vertices[i].Color = is_active ? video::SColor(0, 255, 0, 0)
|
|
|
|
: video::SColor(0, 128, 128, 128);
|
|
|
|
}
|
|
|
|
} // changeDebugColor
|
|
|
|
|
2009-07-06 09:35:33 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
/** True if going from old_pos to new_pos crosses this checkline. This function
|
|
|
|
* is called from update (of the checkline structure).
|
|
|
|
* \param old_pos Position in previous frame.
|
|
|
|
* \param new_pos Position in current frame.
|
|
|
|
* \param indx Index of the kart, can be used to store kart specific
|
|
|
|
* additional data.
|
|
|
|
*/
|
2009-09-16 22:54:48 -04:00
|
|
|
bool CheckLine::isTriggered(const Vec3 &old_pos, const Vec3 &new_pos, int indx)
|
2009-07-06 09:35:33 -04:00
|
|
|
{
|
|
|
|
core::vector2df p=new_pos.toIrrVector2d();
|
|
|
|
bool sign = m_line.getPointOrientation(p)>=0;
|
|
|
|
bool result=sign!=m_previous_sign[indx];
|
|
|
|
// If the sign has changed, i.e. the infinite line was crossed somewhere,
|
|
|
|
// check if the finite line was actually crossed:
|
|
|
|
if(sign!=m_previous_sign[indx] &&
|
|
|
|
m_line.intersectWith(core::line2df(old_pos.toIrrVector2d(),
|
2012-04-18 09:14:18 -04:00
|
|
|
new_pos.toIrrVector2d()),
|
|
|
|
m_cross_point) )
|
2009-07-06 09:35:33 -04:00
|
|
|
{
|
|
|
|
// Now check the minimum height: the kart position must be within a
|
|
|
|
// reasonable distance in the Z axis - 'reasonable' for now to be
|
|
|
|
// between -1 and 4 units (negative numbers are unlikely, but help
|
2012-04-18 09:14:18 -04:00
|
|
|
// in case that the kart is 'somewhat' inside of the track, or the
|
2009-07-06 09:35:33 -04:00
|
|
|
// checklines are a bit off in Z direction.
|
2010-11-28 17:08:02 -05:00
|
|
|
result = new_pos.getY()-m_min_height<m_over_min_height &&
|
|
|
|
new_pos.getY()-m_min_height>-m_under_min_height;
|
2010-09-12 19:42:28 -04:00
|
|
|
if(UserConfigParams::m_check_debug && !result)
|
2010-08-02 19:25:35 -04:00
|
|
|
{
|
2012-04-03 18:27:11 -04:00
|
|
|
if(World::getWorld()->getNumKarts()>0)
|
|
|
|
printf("CHECK: Kart %s crosses line, but wrong height "
|
|
|
|
"(%f vs %f).\n",
|
|
|
|
World::getWorld()->getKart(indx)->getIdent().c_str(),
|
|
|
|
new_pos.getY(), m_min_height);
|
|
|
|
else
|
|
|
|
printf("CHECK: Kart %d crosses line, but wrong height "
|
|
|
|
"(%f vs %f).\n",
|
|
|
|
indx, new_pos.getY(), m_min_height);
|
|
|
|
|
2010-08-02 19:25:35 -04:00
|
|
|
}
|
2009-07-06 09:35:33 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
result = false;
|
|
|
|
m_previous_sign[indx] = sign;
|
|
|
|
return result;
|
2009-07-08 08:33:22 -04:00
|
|
|
} // isTriggered
|