|
@@ -14,7 +14,7 @@
|
|
# include <SDL/SDL_gfxPrimitives.h>
|
|
# include <SDL/SDL_gfxPrimitives.h>
|
|
|
|
|
|
// bBox2D
|
|
// bBox2D
|
|
-# include <Box2D/Box2D.h>
|
|
|
|
|
|
+# include <box2d/box2d.h>
|
|
|
|
|
|
// Creater
|
|
// Creater
|
|
# include "creater.h"
|
|
# include "creater.h"
|
|
@@ -85,13 +85,13 @@ int main(int argc, char** argv)
|
|
std::vector<b2Body*> tbody;
|
|
std::vector<b2Body*> tbody;
|
|
|
|
|
|
// Simulation settings
|
|
// Simulation settings
|
|
- float32 timeStep = 1.0f / frameRate;
|
|
|
|
|
|
+ float timeStep = 1.0f / frameRate;
|
|
int32 velocityIterations = 8;
|
|
int32 velocityIterations = 8;
|
|
int32 positionIterations = 3;
|
|
int32 positionIterations = 3;
|
|
|
|
|
|
// Variables
|
|
// Variables
|
|
b2Vec2 position;
|
|
b2Vec2 position;
|
|
- float32 angle;
|
|
|
|
|
|
+ float angle;
|
|
|
|
|
|
// Define the edge body
|
|
// Define the edge body
|
|
b2BodyDef areaDef;
|
|
b2BodyDef areaDef;
|
|
@@ -99,8 +99,8 @@ int main(int argc, char** argv)
|
|
b2Body* areaBody = world.CreateBody(&areaDef);
|
|
b2Body* areaBody = world.CreateBody(&areaDef);
|
|
|
|
|
|
b2Vec2 vs[4];
|
|
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[0].Set( 0.0f, 0.0f );
|
|
vs[1].Set( 0.0f, areah );
|
|
vs[1].Set( 0.0f, areah );
|
|
vs[2].Set( areaw, areah );
|
|
vs[2].Set( areaw, areah );
|
|
@@ -159,7 +159,7 @@ int main(int argc, char** argv)
|
|
pause = !pause ;
|
|
pause = !pause ;
|
|
break;
|
|
break;
|
|
case SDLK_a :
|
|
case SDLK_a :
|
|
- createBloc( world, tbody, blc, (float32)(rand() % 600) / MULTI, 1.5f + (float32)(rand() % 100) / MULTI );
|
|
|
|
|
|
+ createBloc( world, tbody, blc, (float)(rand() % 600) / MULTI, 1.5f + (float)(rand() % 100) / MULTI );
|
|
break;
|
|
break;
|
|
case SDLK_z :
|
|
case SDLK_z :
|
|
link2ByDist( world, tbody, tjoint );
|
|
link2ByDist( world, tbody, tjoint );
|
|
@@ -197,7 +197,7 @@ int main(int argc, char** argv)
|
|
{
|
|
{
|
|
position = tbody[i]->GetPosition();
|
|
position = tbody[i]->GetPosition();
|
|
angle = tbody[i]->GetAngle();
|
|
angle = tbody[i]->GetAngle();
|
|
- tempo = (SDL_Surface*)tbody[i]->GetUserData();
|
|
|
|
|
|
+ tempo = (SDL_Surface*) tbody[i]->GetUserData().pointer;
|
|
|
|
|
|
tempo = rotozoomSurface( tempo, -angle * 180.0f / b2_pi, 2.15f, 0 );
|
|
tempo = rotozoomSurface( tempo, -angle * 180.0f / b2_pi, 2.15f, 0 );
|
|
|
|
|