|
@@ -7,7 +7,7 @@
|
|
|
# include <SDL/SDL_gfxPrimitives.h>
|
|
|
|
|
|
// bBox2D
|
|
|
-# include <Box2D/Box2D.h>
|
|
|
+# include <box2d/box2d.h>
|
|
|
|
|
|
// Missiles
|
|
|
# define MULTI 200.0f
|
|
@@ -84,24 +84,24 @@ int main(int argc, char** argv)
|
|
|
std::vector<b2Body*> deadBodies;
|
|
|
|
|
|
// Simulation settings
|
|
|
- float32 timeStep = 1.0f / frameRate;
|
|
|
+ float timeStep = 1.0f / frameRate;
|
|
|
int32 velocityIterations = 8;
|
|
|
int32 positionIterations = 3;
|
|
|
|
|
|
// Variables
|
|
|
b2Vec2 position, force;
|
|
|
- float32 angle;
|
|
|
+ float angle;
|
|
|
Entity* descr( nullptr );
|
|
|
|
|
|
// Define the edge body
|
|
|
b2BodyDef bodyDef;
|
|
|
bodyDef.position.Set(0.0f, 0.0f);
|
|
|
- bodyDef.userData = new Entity( {0.0f, LAND} );
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) new Entity( {0.0f, LAND} );
|
|
|
b2Body* areaBody = world.CreateBody(&bodyDef);
|
|
|
|
|
|
b2Vec2 vs[4];
|
|
|
- float32 areah( (float32)screen->h / MULTI );
|
|
|
- float32 areaw( (float32)screen->w / MULTI );
|
|
|
+ float areah( (float)screen->h / MULTI );
|
|
|
+ float areaw( (float)screen->w / MULTI );
|
|
|
vs[0].Set( 0.0f, 0.0f );
|
|
|
vs[1].Set( 0.0f, areah );
|
|
|
vs[2].Set( areaw, areah );
|
|
@@ -113,7 +113,7 @@ int main(int argc, char** argv)
|
|
|
// Define the plane body
|
|
|
bodyDef.type = b2_dynamicBody;
|
|
|
bodyDef.position.Set(areaw * 0.5f, areaw * 0.5f );
|
|
|
- bodyDef.userData = new Entity( {0.05f, PLANE} );
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) new Entity( {0.05f, PLANE} );
|
|
|
bodyDef.linearDamping = 0.01f;
|
|
|
bodyDef.fixedRotation = true ;
|
|
|
b2Body* plane = world.CreateBody(&bodyDef);
|
|
@@ -250,7 +250,7 @@ int main(int argc, char** argv)
|
|
|
break;
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
|
|
std::cout << "Création tourelle." << std::endl;
|
|
|
- tourelle.push_back({b2Vec2( (float32)mouse.x/MULTI, (float32)mouse.y/MULTI),
|
|
|
+ tourelle.push_back({b2Vec2( (float)mouse.x/MULTI, (float)mouse.y/MULTI),
|
|
|
missile,
|
|
|
SDL_GetTicks(),
|
|
|
weap_wait});
|
|
@@ -321,7 +321,7 @@ int main(int argc, char** argv)
|
|
|
for ( b2Body* b( world.GetBodyList() ); b; b = b->GetNext() )
|
|
|
{
|
|
|
// Besoin d'afficher ?
|
|
|
- descr = (Entity*)b->GetUserData();
|
|
|
+ descr = (Entity*)b->GetUserData().pointer;
|
|
|
|
|
|
if ( descr == nullptr || descr->id == LAND )
|
|
|
continue ;
|