19 #ifndef HEADER_CHECK_CYLINDER_HPP 20 #define HEADER_CHECK_CYLINDER_HPP 22 #include "tracks/check_structure.hpp" 27 class TriggerItemListener;
54 std::function<
void(
int)> triggering_function);
60 bool isInside(
int index)
const {
return m_is_inside[index]; }
A wrapper around bullets btVector3 to include conventient conversion functions (e.g.
Definition: vec3.hpp:34
bool isInside(int index) const
Returns if kart indx is currently inside of the sphere.
Definition: check_cylinder.hpp:60
This class implements a check sphere that is used to change the ambient light if a kart is inside thi...
Definition: check_cylinder.hpp:37
float m_radius2
Squared radius of the cylinder.
Definition: check_cylinder.hpp:43
Controls all checks structures of a track.
Definition: check_manager.hpp:39
float getRadius2() const
Returns the square of the radius of this sphere.
Definition: check_cylinder.hpp:67
float getDistance2ForKart(int index) const
Returns the squared distance of kart index from the enter of this sphere.
Definition: check_cylinder.hpp:64
std::vector< bool > m_is_inside
A flag for each kart to indicate if it's inside of the sphere.
Definition: check_cylinder.hpp:46
std::function< void(int)> m_triggering_function
Function to call when triggered.
Definition: check_cylinder.hpp:51
utility class used to parse XML files
Definition: xml_node.hpp:47
Vec3 m_center_point
Center of the sphere.
Definition: check_cylinder.hpp:41
Virtual base class for a check structure.
Definition: check_structure.hpp:51
virtual bool isTriggered(const Vec3 &old_pos, const Vec3 &new_pos, int kart_id)
True if going from old_pos to new_pos enters or leaves this cylinder.
Definition: check_cylinder.cpp:58
virtual CheckStructure * clone()
Clone to child process for server usage (atm no sound or scripting).
Definition: check_cylinder.hpp:69
std::vector< float > m_distance2
Stores the distance of each kart from the center of this sphere.
Definition: check_cylinder.hpp:49