|
@@ -10,23 +10,23 @@
|
|
|
# include <SDL/SDL_gfxPrimitives.h>
|
|
|
|
|
|
// Box2D
|
|
|
-# include <Box2D/Box2D.h>
|
|
|
+# include <box2d/box2d.h>
|
|
|
# define MULTI 100.0f
|
|
|
|
|
|
// Prototypes
|
|
|
# include "creater.h"
|
|
|
|
|
|
-void createBloc( b2World &world, std::vector<b2Body*> &tbody, SDL_Surface* blc, float32 x, float32 y )
|
|
|
+void createBloc( b2World &world, std::vector<b2Body*> &tbody, SDL_Surface* blc, float x, float y )
|
|
|
{
|
|
|
// Définition
|
|
|
b2BodyDef bodyDef;
|
|
|
bodyDef.type = b2_dynamicBody;
|
|
|
- bodyDef.userData = blc;
|
|
|
+ bodyDef.userData.pointer = (uintptr_t) blc;
|
|
|
bodyDef.position.Set( x, y );
|
|
|
|
|
|
// Shape
|
|
|
b2PolygonShape dynamicBox;
|
|
|
- dynamicBox.SetAsBox( (float32)blc->w * 2.0f / MULTI / 2 , (float32)blc->h * 2.0f / MULTI / 2 );
|
|
|
+ dynamicBox.SetAsBox( (float)blc->w * 2.0f / MULTI / 2 , (float)blc->h * 2.0f / MULTI / 2 );
|
|
|
|
|
|
// Fixture
|
|
|
b2FixtureDef fixtureDef;
|
|
@@ -57,8 +57,8 @@ void link2ByDist( b2World &world, std::vector<b2Body*> &tbody, std::vector<b2Joi
|
|
|
posB = myDistJointDef.bodyB->GetPosition();
|
|
|
myDistJointDef.length = ( posA - posB ).Length() / 2.0f;
|
|
|
|
|
|
- myDistJointDef.frequencyHz = 4.0f ;
|
|
|
- myDistJointDef.dampingRatio = 0.5f ;
|
|
|
+ myDistJointDef.stiffness = 4.0f ;
|
|
|
+ myDistJointDef.damping = 0.5f ;
|
|
|
|
|
|
tjoint.push_back( 0x0 );
|
|
|
tjoint.back() = world.CreateJoint(&myDistJointDef);
|
|
@@ -74,8 +74,8 @@ void link3ByDist( b2World &world, std::vector<b2Body*> &tbody, std::vector<b2Joi
|
|
|
|
|
|
myDistJointDef.collideConnected = true ;
|
|
|
|
|
|
- myDistJointDef.frequencyHz = 4.0f ;
|
|
|
- myDistJointDef.dampingRatio = 0.5f ;
|
|
|
+ myDistJointDef.stiffness = 4.0f ;
|
|
|
+ myDistJointDef.damping = 0.5f ;
|
|
|
|
|
|
// Joint 1
|
|
|
myDistJointDef.bodyA = tbody[ tbody.size() - 2];
|
|
@@ -109,4 +109,4 @@ void link3ByDist( b2World &world, std::vector<b2Body*> &tbody, std::vector<b2Joi
|
|
|
|
|
|
tjoint.push_back( 0x0 );
|
|
|
tjoint.back() = world.CreateJoint(&myDistJointDef);
|
|
|
-}
|
|
|
+}
|