|
@@ -88,7 +88,7 @@ void Car::drive( command cmd )
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void Car::jump( float32 correction )
|
|
|
+void Car::jump( float correction )
|
|
|
{
|
|
|
// Jump
|
|
|
b2Vec2 spring;
|
|
@@ -103,7 +103,7 @@ void Car::jump( float32 correction )
|
|
|
m_bodyCar->ApplyAngularImpulse( - m_bodyCar->GetAngle() * correction, true );
|
|
|
}
|
|
|
|
|
|
-void Car::spin( float32 tq )
|
|
|
+void Car::spin( float tq )
|
|
|
{
|
|
|
// Couple sur le carénage
|
|
|
m_bodyCar->ApplyAngularImpulse( tq, true );
|
|
@@ -135,12 +135,12 @@ b2Vec2 Car::GetVelocity()
|
|
|
return m_bodyCar->GetLinearVelocity();
|
|
|
}
|
|
|
|
|
|
-float32 Car::GetTorque()
|
|
|
+float Car::GetTorque()
|
|
|
{
|
|
|
return m_currentTorque;
|
|
|
}
|
|
|
|
|
|
-float32 Car::GetSpeed()
|
|
|
+float Car::GetSpeed()
|
|
|
{
|
|
|
return m_currentSpeed;
|
|
|
}
|
|
@@ -155,7 +155,7 @@ bool Car::GetIsOnGround()
|
|
|
return rep;
|
|
|
}
|
|
|
|
|
|
-void Car::createMotorWheel( b2World &world, b2Vec2 rel, float32 friction, float32 density )
|
|
|
+void Car::createMotorWheel( b2World &world, b2Vec2 rel, float friction, float density )
|
|
|
{
|
|
|
// Vérifie la présence d'image
|
|
|
if ( m_imgWheel == 0x0 )
|
|
@@ -172,8 +172,8 @@ void Car::createMotorWheel( b2World &world, b2Vec2 rel, float32 friction, float3
|
|
|
}
|
|
|
|
|
|
// Dimensions
|
|
|
- float32 rwheel;
|
|
|
- rwheel = (float32)m_imgWheel->h / MULTI / 2 ;
|
|
|
+ float rwheel;
|
|
|
+ rwheel = (float)m_imgWheel->h / MULTI / 2 ;
|
|
|
|
|
|
// Définition body
|
|
|
b2BodyDef bodyDef;
|
|
@@ -182,7 +182,7 @@ void Car::createMotorWheel( b2World &world, b2Vec2 rel, float32 friction, float3
|
|
|
bodyDef.type = b2_dynamicBody;
|
|
|
|
|
|
// Roue moteur
|
|
|
- bodyDef.userData = m_imgWheel ;
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) m_imgWheel ;
|
|
|
bodyDef.position = m_bodyCar->GetPosition() + rel ;
|
|
|
|
|
|
dynamicCircle.m_radius = rwheel ;
|
|
@@ -210,7 +210,7 @@ void Car::createMotorWheel( b2World &world, b2Vec2 rel, float32 friction, float3
|
|
|
return ;
|
|
|
}
|
|
|
|
|
|
-void Car::createFreeWheel( b2World &world, b2Vec2 rel, float32 friction, float32 density )
|
|
|
+void Car::createFreeWheel( b2World &world, b2Vec2 rel, float friction, float density )
|
|
|
{
|
|
|
// Vérifie la présence d'image
|
|
|
if ( m_imgWheel == 0x0 )
|
|
@@ -227,8 +227,8 @@ void Car::createFreeWheel( b2World &world, b2Vec2 rel, float32 friction, float32
|
|
|
}
|
|
|
|
|
|
// Dimensions
|
|
|
- float32 rwheel;
|
|
|
- rwheel = (float32)m_imgWheel->h / MULTI / 2 ;
|
|
|
+ float rwheel;
|
|
|
+ rwheel = (float)m_imgWheel->h / MULTI / 2 ;
|
|
|
|
|
|
// Définition body
|
|
|
b2BodyDef bodyDef;
|
|
@@ -237,7 +237,7 @@ void Car::createFreeWheel( b2World &world, b2Vec2 rel, float32 friction, float32
|
|
|
bodyDef.type = b2_dynamicBody;
|
|
|
|
|
|
// Roue avant
|
|
|
- bodyDef.userData = m_imgWheel ;
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) m_imgWheel ;
|
|
|
bodyDef.position = m_bodyCar->GetPosition() + rel ;
|
|
|
|
|
|
dynamicCircle.m_radius = rwheel ;
|
|
@@ -261,7 +261,7 @@ void Car::createFreeWheel( b2World &world, b2Vec2 rel, float32 friction, float32
|
|
|
return ;
|
|
|
}
|
|
|
|
|
|
-void Car::createCarenage( b2World &world, float32 x, float32 y, float32 friction, float32 density )
|
|
|
+void Car::createCarenage( b2World &world, float x, float y, float friction, float density )
|
|
|
{
|
|
|
// Vérifie si présence de carénage
|
|
|
if ( m_bodyCar != 0x0 )
|
|
@@ -271,9 +271,9 @@ void Car::createCarenage( b2World &world, float32 x, float32 y, float32 friction
|
|
|
}
|
|
|
|
|
|
// Dimensions
|
|
|
- float32 wtruck, htruck ;
|
|
|
- wtruck = (float32)m_imgCar->w / MULTI / 2 ;
|
|
|
- htruck = (float32)m_imgCar->h / MULTI / 2 ;
|
|
|
+ float wtruck, htruck ;
|
|
|
+ wtruck = (float)m_imgCar->w / MULTI / 2 ;
|
|
|
+ htruck = (float)m_imgCar->h / MULTI / 2 ;
|
|
|
|
|
|
// Définition body
|
|
|
b2BodyDef bodyDef;
|
|
@@ -282,7 +282,7 @@ void Car::createCarenage( b2World &world, float32 x, float32 y, float32 friction
|
|
|
bodyDef.type = b2_dynamicBody;
|
|
|
|
|
|
// Carrosserie
|
|
|
- bodyDef.userData = m_imgCar ;
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) m_imgCar ;
|
|
|
bodyDef.position.Set( x, y );
|
|
|
|
|
|
dynamicBox.SetAsBox( wtruck, htruck );
|