git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@2163 178a84e3-b1eb-0310-8ba1-8eac791a3b58
229 lines
11 KiB
C++
229 lines
11 KiB
C++
// $Id$
|
|
//
|
|
// SuperTuxKart - a fun racing game with go-kart
|
|
// Copyright (C) 2004-2005 Steve Baker <sjbaker1@airmail.net>
|
|
// Copyright (C) 2006 SuperTuxKart-Team, Joerg Henrichs, Steve Baker
|
|
//
|
|
// 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.
|
|
|
|
#ifndef HEADER_KART_H
|
|
#define HEADER_KART_H
|
|
|
|
#include <plib/sg.h>
|
|
#include "btBulletDynamicsCommon.h"
|
|
|
|
#include "moveable.hpp"
|
|
#include "kart_properties.hpp"
|
|
#include "attachment.hpp"
|
|
#include "collectable.hpp"
|
|
#include "terrain_info.hpp"
|
|
|
|
struct KartControl
|
|
{
|
|
float lr;
|
|
float accel;
|
|
bool brake;
|
|
bool wheelie;
|
|
bool jump;
|
|
bool rescue;
|
|
bool fire;
|
|
|
|
KartControl() : lr(0.0f), accel(0.0f), brake(false),
|
|
wheelie(false), jump(false), rescue(false), fire(false){}
|
|
};
|
|
|
|
class SkidMark;
|
|
class Herring;
|
|
class Smoke;
|
|
|
|
class Kart : public TerrainInfo, public Moveable
|
|
{
|
|
private:
|
|
btTransform m_reset_transform; // reset position
|
|
Vec3 m_curr_track_coords;
|
|
Vec3 m_last_track_coords;
|
|
|
|
protected:
|
|
bool m_on_road; // true if the kart is on top of the
|
|
// road path drawn by the drivelines
|
|
Attachment m_attachment;
|
|
Collectable m_collectable;
|
|
|
|
int m_grid_position;
|
|
int m_race_position; // current race position (1-numKarts)
|
|
int m_initial_position; // initial position of kart
|
|
KartControl m_controls; // The position of the karts controls
|
|
int m_track_sector; // index in driveline, special values
|
|
// e.g. UNKNOWN_SECTOR can be negative!
|
|
float m_max_speed; // maximum speed of the kart, computed from
|
|
float m_max_speed_reverse_ratio;
|
|
float m_wheelie_angle;
|
|
float m_zipper_time_left; // zipper time left
|
|
float m_lap_start_time; // Time at start of a new lap
|
|
char m_fastest_lap_message[255];
|
|
|
|
int m_shortcut_sector; // segment on which the shortcut was started
|
|
|
|
// physics parameters, storing it saves time
|
|
btRaycastVehicle::btVehicleTuning *m_tuning;
|
|
btCompoundShape m_kart_chassis;
|
|
btVehicleRaycaster *m_vehicle_raycaster;
|
|
btRaycastVehicle *m_vehicle;
|
|
btUprightConstraint *m_uprightConstraint;
|
|
|
|
private:
|
|
int m_num_herrings_gobbled;
|
|
ssgSimpleState* m_smokepuff;
|
|
// don't delete the following 2 vars (they're kids in the hirarchy)
|
|
Smoke *m_smoke_system;
|
|
ssgTransform* m_exhaust_pipe;
|
|
|
|
float m_wheel_rotation;
|
|
ssgTransform* m_wheel_front_l;
|
|
ssgTransform* m_wheel_front_r;
|
|
ssgTransform* m_wheel_rear_l;
|
|
ssgTransform* m_wheel_rear_r;
|
|
|
|
SkidMark* m_skidmark_left;
|
|
SkidMark* m_skidmark_right;
|
|
|
|
int m_race_lap; // number of finished(!) laps
|
|
float m_time_at_last_lap; // time at finishing last lap
|
|
float m_finish_time;
|
|
bool m_finished_race;
|
|
|
|
float m_speed;
|
|
bool m_rescue;
|
|
bool m_eliminated;
|
|
|
|
protected:
|
|
float m_rescue_pitch, m_rescue_roll;
|
|
const KartProperties *m_kart_properties;
|
|
|
|
/** Search the given branch of objects that match the wheel names
|
|
and if so assign them to wheel_* variables */
|
|
void load_wheels (ssgBranch* obj);
|
|
|
|
public:
|
|
Kart(const std::string& kart_name, int position,
|
|
const btTransform& init_transform);
|
|
virtual ~Kart();
|
|
void loadData();
|
|
virtual void updateGraphics (const Vec3& off_xyz, const Vec3& off_hpr);
|
|
const KartProperties*
|
|
getKartProperties () const { return m_kart_properties; }
|
|
void setKartProperties (const KartProperties *kp)
|
|
{ m_kart_properties=kp; }
|
|
void attach (attachmentType attachment_, float time)
|
|
{ m_attachment.set(attachment_, time); }
|
|
void setCollectable (CollectableType t, int n)
|
|
{ m_collectable.set(t, n); }
|
|
virtual void setPosition (int p)
|
|
{ m_race_position = p; }
|
|
int getSector () const { return m_track_sector; }
|
|
float getDistanceDownTrack() const { return m_curr_track_coords.getY(); }
|
|
float getDistanceToCenter () const { return m_curr_track_coords.getX(); }
|
|
Attachment *getAttachment () { return &m_attachment; }
|
|
void setAttachmentType (attachmentType t, float time_left=0.0f,
|
|
Kart*k=NULL)
|
|
{ m_attachment.set(t, time_left, k); }
|
|
Collectable *getCollectable () { return &m_collectable; }
|
|
int getNumCollectables () const { return m_collectable.getNum();}
|
|
int getNumHerring () const { return m_num_herrings_gobbled;}
|
|
int getLap () const { return m_race_lap; }
|
|
int getPosition () const { return m_race_position; }
|
|
int getInitialPosition () const { return m_initial_position; }
|
|
float getFinishTime () const { return m_finish_time; }
|
|
bool hasFinishedRace () const { return m_finished_race; }
|
|
void endRescue ();
|
|
float estimateFinishTime ();
|
|
void processSkidMarks ();
|
|
void getClosestKart (float *cdist, int *closest);
|
|
void updatePhysics (float dt);
|
|
|
|
// Functions to access the current kart properties (which might get changed,
|
|
// e.g. mass increase or air_friction increase depending on attachment etc.)
|
|
// -------------------------------------------------------------------------
|
|
const Vec3 &getColor () const {return m_kart_properties->getColor();}
|
|
float getMass () const
|
|
{
|
|
return m_kart_properties->getMass()
|
|
+ m_attachment.WeightAdjust();
|
|
}
|
|
float getMaxPower () const {return m_kart_properties->getMaxPower();}
|
|
float getTimeFullSteer () const {return m_kart_properties->getTimeFullSteer();}
|
|
float getBrakeFactor () const {return m_kart_properties->getBrakeFactor();}
|
|
float getWheelBase () const {return m_kart_properties->getWheelBase();}
|
|
float getHeightCOG () const {return m_kart_properties->getHeightCOG();}
|
|
float getFrictionSlip () const {return m_kart_properties->getFrictionSlip();}
|
|
float getMaxSteerAngle () const
|
|
{return m_kart_properties->getMaxSteerAngle(getSpeed());}
|
|
float getGravityCenterShift () const
|
|
{return m_kart_properties->getGravityCenterShift(); }
|
|
float getWheelieMaxSpeedRatio () const
|
|
{return m_kart_properties->getWheelieMaxSpeedRatio(); }
|
|
float getWheelieMaxPitch () const
|
|
{return m_kart_properties->getWheelieMaxPitch(); }
|
|
float getWheeliePitchRate () const
|
|
{return m_kart_properties->getWheeliePitchRate(); }
|
|
float getWheelieRestoreRate() const
|
|
{return m_kart_properties->getWheelieRestoreRate(); }
|
|
float getWheelieSpeedBoost() const
|
|
{return m_kart_properties->getWheelieSpeedBoost(); }
|
|
float getSteerPercent () const {return m_controls.lr; }
|
|
float getMaxSpeed () const {return m_max_speed; }
|
|
void setTimeAtLap (float t){m_time_at_last_lap=t; }
|
|
float getTimeAtLap () const {return m_time_at_last_lap; }
|
|
void createPhysics (ssgEntity *obj);
|
|
float getKartLength () const {return m_kart_properties->getKartLength();}
|
|
float getKartHeight () const {return m_kart_properties->getKartHeight();}
|
|
float getWheelieAngle () const {return m_wheelie_angle; }
|
|
btRaycastVehicle *getVehicle () const {return m_vehicle; }
|
|
btUprightConstraint *getUprightConstraint() const {return m_uprightConstraint;}
|
|
void updateBulletPhysics(float dt);
|
|
void draw ();
|
|
bool isInRest () const;
|
|
//have to use this instead of moveable getVelocity to get velocity for bullet rigid body
|
|
float getSpeed () const {return m_speed; }
|
|
float handleWheelie (float dt);
|
|
float getActualWheelForce();
|
|
bool isOnGround () const;
|
|
bool isEliminated () const {return m_eliminated;}
|
|
void eliminate ();
|
|
bool isRescue () const {return m_rescue;}
|
|
void resetBrakes ();
|
|
void adjustSpeedWeight(float f);
|
|
void forceRescue (bool is_rescue=false);
|
|
void handleExplosion (const Vec3& pos, bool direct_hit);
|
|
const std::string& getName () const {return m_kart_properties->getName();}
|
|
const std::string& getIdent () const {return m_kart_properties->getIdent();}
|
|
virtual int isPlayerKart () const {return 0; }
|
|
// addMessages gets called by world to add messages to the gui
|
|
virtual void addMessages () {};
|
|
virtual void collectedHerring (Herring* herring);
|
|
virtual void reset ();
|
|
virtual void handleZipper ();
|
|
virtual void crashed (Kart *k) {};
|
|
virtual void doLapCounting ();
|
|
virtual void update (float dt);
|
|
virtual void raceFinished (float time);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
/* EOF */
|
|
|