|
@@ -22,7 +22,7 @@ Car::~Car()
|
|
|
SDL_FreeSurface( m_imgWheel );
|
|
|
}
|
|
|
|
|
|
-void Car::init( b2World &world, float32 x, float32 y, float32 angle )
|
|
|
+void Car::init( b2World &world, float x, float y, float angle )
|
|
|
{
|
|
|
// Images
|
|
|
m_imgCar = SDL_LoadBMP("Truck.bmp");
|
|
@@ -32,10 +32,10 @@ void Car::init( b2World &world, float32 x, float32 y, float32 angle )
|
|
|
SDL_SetColorKey( m_imgWheel, SDL_SRCCOLORKEY, SDL_MapRGBA( m_imgWheel->format, 0, 0, 0, 255 ) );
|
|
|
|
|
|
// Dimensions
|
|
|
- float32 wtruck, htruck, rwheel;
|
|
|
- wtruck = (float32)m_imgCar->w / MULTI / 2 ;
|
|
|
- htruck = (float32)m_imgCar->h / MULTI / 2 ;
|
|
|
- rwheel = (float32)m_imgWheel->h / MULTI / 2 ;
|
|
|
+ float wtruck, htruck, rwheel;
|
|
|
+ wtruck = (float)m_imgCar->w / MULTI / 2 ;
|
|
|
+ htruck = (float)m_imgCar->h / MULTI / 2 ;
|
|
|
+ rwheel = (float)m_imgWheel->h / MULTI / 2 ;
|
|
|
|
|
|
// Définition body
|
|
|
b2BodyDef bodyDef;
|
|
@@ -44,7 +44,7 @@ void Car::init( b2World &world, float32 x, float32 y, float32 angle )
|
|
|
bodyDef.type = b2_dynamicBody;
|
|
|
|
|
|
// Roue arrière
|
|
|
- bodyDef.userData = m_imgWheel ;
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) m_imgWheel ;
|
|
|
bodyDef.position.Set( x - wtruck + rwheel, y + htruck + rwheel );
|
|
|
|
|
|
b2CircleShape dynamicCircle;
|
|
@@ -70,7 +70,7 @@ void Car::init( b2World &world, float32 x, float32 y, float32 angle )
|
|
|
m_bodyWheelFwd->CreateFixture(&fixtureDef);
|
|
|
|
|
|
// Carrosserie
|
|
|
- bodyDef.userData = m_imgCar ;
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) m_imgCar ;
|
|
|
bodyDef.position.Set( x, y );
|
|
|
|
|
|
dynamicBox.SetAsBox( wtruck, htruck );
|
|
@@ -145,4 +145,4 @@ void Car::update()
|
|
|
b2Vec2 Car::GetPosition()
|
|
|
{
|
|
|
return m_bodyCar->GetPosition();
|
|
|
-}
|
|
|
+}
|