|
@@ -1,6 +1,6 @@
|
|
|
// Général
|
|
|
#include <iostream>
|
|
|
-#include <Box2D/Box2D.h>
|
|
|
+#include <box2d/box2d.h>
|
|
|
|
|
|
// Locaux
|
|
|
#include "Serveur.h"
|
|
@@ -25,7 +25,7 @@ int main()
|
|
|
b2Vec2 dir;
|
|
|
|
|
|
// Pramètres de simulation
|
|
|
- float32 timeStep = 1.0f / 60.0f;
|
|
|
+ float timeStep = 1.0f / 60.0f;
|
|
|
int32 velocityIterations = 8;
|
|
|
int32 positionIterations = 3;
|
|
|
|
|
@@ -52,13 +52,13 @@ int main()
|
|
|
|
|
|
// Tank A
|
|
|
bodyDef.position.Set( 7.0f, 5.5f );
|
|
|
- bodyDef.userData = new Acteur({TANK_A});
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) new Acteur({TANK_A});
|
|
|
tank[ TANK_A ] = world.CreateBody( &bodyDef );
|
|
|
tank[ TANK_A ]->CreateFixture( &fixtureDef );
|
|
|
|
|
|
// Tank B
|
|
|
bodyDef.position.Set( 7.0f, 3.5f );
|
|
|
- bodyDef.userData = new Acteur({TANK_B});
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) new Acteur({TANK_B});
|
|
|
tank[ TANK_B ] = world.CreateBody( &bodyDef );
|
|
|
tank[ TANK_B ]->CreateFixture( &fixtureDef );
|
|
|
|