git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5249 178a84e3-b1eb-0310-8ba1-8eac791a3b58
120 lines
4.7 KiB
C++
120 lines
4.7 KiB
C++
// $Id$
|
|
//
|
|
// SuperTuxKart - a fun racing game with go-kart
|
|
// Copyright (C) 2004-2005 Steve Baker <sjbaker1@airmail.net>
|
|
// Copyright (C) 2006 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_MOVEABLE_HPP
|
|
#define HEADER_MOVEABLE_HPP
|
|
|
|
#include "irrlicht.h"
|
|
using namespace irr;
|
|
#include "btBulletDynamicsCommon.h"
|
|
|
|
#include "physics/kart_motion_state.hpp"
|
|
#include "physics/user_pointer.hpp"
|
|
#include "utils/vec3.hpp"
|
|
|
|
class Material;
|
|
|
|
/* Limits of Kart performance */
|
|
#define CRASH_PITCH -45.0f
|
|
|
|
#define MAX_ITEMS_COLLECTED 20
|
|
|
|
/**
|
|
* \ingroup karts
|
|
*/
|
|
class Moveable
|
|
{
|
|
private:
|
|
btVector3 m_velocityLC; /**<Velocity in kart coordinates. */
|
|
btTransform m_transform;
|
|
Vec3 m_hpr;
|
|
/** The heading in m_hpr is between -90 and 90 degrees only. The 'real'
|
|
* heading between -180 to 180 degrees is stored in this variable. */
|
|
float m_heading;
|
|
/** The pitch between -90 and 90 degrees. */
|
|
float m_pitch;
|
|
/** The roll between -180 and 180 degrees. */
|
|
float m_roll;
|
|
|
|
protected:
|
|
UserPointer m_user_pointer;
|
|
scene::IMesh *m_mesh;
|
|
scene::ISceneNode *m_node;
|
|
btRigidBody *m_body;
|
|
KartMotionState *m_motion_state;
|
|
|
|
public:
|
|
Moveable();
|
|
virtual ~Moveable();
|
|
/** Returns the scene node of this moveable. */
|
|
scene::ISceneNode
|
|
*getNode() const { return m_node; }
|
|
void setNode(scene::ISceneNode *n);
|
|
virtual const btVector3
|
|
&getVelocity() const {return m_body->getLinearVelocity();}
|
|
const btVector3
|
|
&getVelocityLC() const {return m_velocityLC; }
|
|
virtual void setVelocity(const btVector3& v) {m_body->setLinearVelocity(v); }
|
|
const Vec3& getXYZ() const {return (Vec3&)m_transform.getOrigin();}
|
|
/** Return the rotation, but heading is restricted to -90 and 90 degrees. */
|
|
const Vec3& getHPR() const {return m_hpr; }
|
|
/** Returns the heading between -180 and 180 degrees. Note that using
|
|
* getHPR().getHeading() can result a different heading (e.g. a heading
|
|
* of 180 degrees is the same as a roll and pitch around 180).*/
|
|
float getHeading() const {return m_heading; }
|
|
/** Returns the pitch of the kart, restricted to between -90 and 90 degrees.
|
|
* Note that using getHPR().getPitch can result in a different value! */
|
|
float getPitch() const {return m_pitch; }
|
|
/** Returns the roll of the kart between -180 and 180 degrees. Note that
|
|
* using getHPR.getRoll can result in a different value! */
|
|
float getRoll() const {return m_roll; }
|
|
const btQuaternion
|
|
getRotation() const {return m_transform.getRotation(); }
|
|
|
|
/** Sets the XYZ coordinates of the moveable. */
|
|
void setXYZ(const Vec3& a)
|
|
{
|
|
m_transform.setOrigin(a);
|
|
m_motion_state->setWorldTransform(m_transform);
|
|
}
|
|
// ------------------------------------------------------------------------
|
|
/** Sets the rotation of this moveable. */
|
|
void setRotation(const btQuaternion&a)
|
|
{
|
|
m_transform.setRotation(a);
|
|
m_motion_state->setWorldTransform(m_transform);
|
|
}
|
|
// ------------------------------------------------------------------------
|
|
virtual void handleZipper () {};
|
|
virtual void updateGraphics(const Vec3& off_xyz,
|
|
const btQuaternion& off_rotation);
|
|
virtual void reset();
|
|
virtual void update(float dt) ;
|
|
btRigidBody *getBody() const {return m_body; }
|
|
void createBody(float mass, btTransform& trans,
|
|
btCollisionShape *shape);
|
|
const btTransform
|
|
&getTrans() const {return m_transform;}
|
|
void setTrans(const btTransform& t);
|
|
}
|
|
; // class Moveable
|
|
|
|
#endif
|