1
0
Prechádzať zdrojové kódy

Update box2d to 2.4.1

DricomDragon 4 rokov pred
rodič
commit
57880c0253

+ 1 - 1
tankNet/AABBSightQuery.cpp

@@ -22,7 +22,7 @@ bool AABBSightQuery::ReportFixture( b2Fixture* fixture )
 
 	b2Vec2 pos( body->GetPosition() );
 
-	Acteur* myActor( (Acteur*)body->GetUserData() );
+	Acteur* myActor( (Acteur*)body->GetUserData().pointer );
 
 	if ( myActor->idx == TIR )
 	{

+ 3 - 2
tankNet/AABBSightQuery.h

@@ -2,7 +2,8 @@
 #define ACTEUR_H_INCLUDED
 
 #include <iostream>
-#include <Box2D/Box2D.h>
+#include <vector>
+#include <box2d/box2d.h>
 #include "acteur.h"
 #include "description.h"
 
@@ -24,4 +25,4 @@ private:
 	std::vector< Entity > m_data;
 };
 
-#endif // ACTEUR_H_INCLUDED
+#endif // ACTEUR_H_INCLUDED

+ 4 - 4
tankNet/main.cpp

@@ -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 );