Box2D is a free open source 2-dimensional physics simulator engine written in C++ by Erin Catto and published under the zlib license

learn more… | top users | synonyms

1
vote
1answer
633 views

Simple gun in cocos2d+box2d game

I'm newbie in box2d. Can you help me? I want to make gun (touch, move, stopped, ball flew). I make detection and rotation of gun, but I can't make popping of ball. How can I count velocity, which I ...
2
votes
4answers
3k views

How do I apply a force to a body in the direction it is traveling (Box2D)?

I'm using AndEngine/Box2d to develop a game. I have a ball that bounces around the screen. I've successfully made it ignore gravity by applying an opposite force, but it has a tenancy to slow down ...
0
votes
1answer
661 views

Applying a vortex / whirlpool effect in Box2d / Cocos2d for iPhone

I've used Nick Vellios' tutorial to create radial gravity with a Box2D object. I am aware of Make a Vortex here on SO, but I couldn't figure out how to implement it in my project. I have made a ...
16
votes
3answers
12k views

Cocos2d + Box2d or Chipmunk [closed]

OK, im trying to make an iphone version of a game i made here http://scratch.mit.edu/projects/techy/781198 is box2d or chipmunk better and where are some tutorials for each one
2
votes
1answer
587 views

Make a Vortex in Box2D

I'm trying to make a spiral vortex in Box2D on C++ / Objective C by applying forces. What I would like to realize is a vortex that pushes the bodies from a point, or that attract them. I guess I'll ...
4
votes
7answers
4k views

HTML 5 game development tools

Can anybody please guide me with the best engine for game development in HTML5? It is simple jumping and surface detection game. The theme is like jumping and go above the tree tops. What you ...
4
votes
2answers
9k views

Move body to a specific position - Box2D

I have a b2Body which I would like to move at a certain target position. I don't want to use the SetPosition function. How can I achieve this using : Changing linear velocities. Using mouseJoint. ...
9
votes
1answer
6k views

Box2d multiple fixtures and positioning

I'm attempting to create a "U" shape in Box2d (in Cocos2d) by joining 3 rectangles like so: |_| It sounds like joints are not the correct solution here since I don't want any movement so I have ...
5
votes
2answers
4k views

Box2d: Maximum possible linear velocity?

I think I've configured Box2d to have some sort of maximum velocity for any body, but I'm not sure. I apply an impulse like (100000000, 100000000), and the body moves just as fast as (100, 100) - ...
3
votes
2answers
2k views

How to detect collision but do not collide in box2d?

How to detect if body collides other body but do not react on this collision. By default i - detect collision and bodies collide. If i set fixtureDef filter - bodies do not collide but i can not ...
2
votes
2answers
5k views

[ios.cocos2d+box2d]how to disable auto-rotation?

I have created a project with cocos2d 0.99.5 + box2d. When I rotate my iphone, Screen automatically rotated too. So the boxes Flew up into the ceiling. How to disable auto-rotation? plz
7
votes
3answers
7k views

Android, libgdx and box2d basics [closed]

I wrote couple of simple board games since i started on android learning, Please let me know is there any tutorial or links, where i can start with physics library with libgdx, looking for something ...
1
vote
2answers
1k views

Box2D: How to get the position of a static body?

I have a Box2D world with a mixture of static and dynamic bodies. On collisions, I can only get the positions of the dynamic ones. Is it possible to get the positions of static objects? N.b., this ...
5
votes
1answer
663 views

Create a random, sine graph like landscape sprite

Lets say I have this sprite: And I created a random landscape during runtime: And then, I want to tile the area below the line with the sprite: This is the game ground, therefore it should ...
1
vote
2answers
363 views

Create indefinitely oscillating pendulum in Farseer Physics 3.3.1/Box2d

I am new to Farseer Physics and using version 3.3.1. I am after some help and would even be happy to receive Box2d answers just to ensure I get a response as I should then be able to convert it! -- ...
0
votes
1answer
103 views

Screen won't register a touch where a sprite/body has been removed (Box2D)?

I'm using AndEngine/Box2D to create a game. When the game loads, an array of a class containing sprites and bodies are created. When the user touches the screen, the next sprite in order is attached ...
0
votes
2answers
655 views

Getting the world's contactListener in Box2D

I'm writing a game for Mac OS using cocos2D and Box2D. I've added a b2ContactListener subclass to my world as follows: contactListener = new ContactListener(); ...
9
votes
6answers
2k views

2d trajectory planning of a spaceship with physics

I'm implementing a 2D game with ships in space. In order to do it, I'm using LÖVE, which wraps Box2D with Lua. But I believe that my question can be answered by anyone with a greater understanding of ...
6
votes
4answers
10k views

box2d collision groups

does anyone know whether bodies only collide when (body1.categoryBits & body2.maskBits) && (body1.maskBits & body2.categoryBits) ? or do they already collide when (body1.categoryBits ...
4
votes
1answer
2k views

Moving Box2d Bodies Like CCSprite Objects

In cocos2d, you can ease in CCSprites and move them around in all kinds of ways. Most importantly - they can have easing in/out. For most games this is desirable for smooth movement etc. id action = ...
1
vote
1answer
4k views

How to grab a b2Body and move it around the screen? (cocos2d,box2d,iphone)

I want to move any b2body that is touched on the screen around the screen. I've heard something about mouse joints.. I found that: ...
4
votes
1answer
1k views

Box2dweb - Collision Contact Point

I use box2dweb. I am trying to develop a game. At some point I need to find out the contact point between a "Circle" and "Box". All I know is it can be done using b2ContactListener. We can receive ...
3
votes
2answers
1k views

Simulate “Newton's law of universal gravitation” using Box2D?

I want to simulate "Newton's law of universal gravitation" using Box2D . http://en.wikipedia.org/wiki/Newton's_law_of_universal_gravitation I went through the manual but couldnt find a way to do ...
3
votes
1answer
2k views

Box2d As3 contact listener problem

I'm having a problem with the box2d as3 b2ContactListener class. I have a class named ContactListener that extends b2ContactListener and overrides the PostSolve method. PostSolve takes 2 parameters, ...
1
vote
1answer
773 views

Cocos2d + Box2d - how to debug/show bodies?

I've created a pretty simple setup using Cocos2d (2.0) and Box2d that comes packaged with it. I have a few bodies in my world, but don't have sprites linked up with them yet and I want to debug their ...
11
votes
3answers
1k views

Why use Float.floatToIntBits() in Java float comparisons?

In JBox2d, there exists the following code for Vec2.equals(): @Override public boolean equals(Object obj) { //automatically generated by Eclipse if (this == obj) return true; if (obj ...
4
votes
2answers
763 views

Strange “stutter” in box2D on different android devices

I'm developing an engine and a game at the same time in C++ and I'm using box2D for the physics back end. I'm testing on different android devices and on 2 out of 3 devices, the game runs fine and so ...
4
votes
1answer
574 views

Collision Detection using Box2d(for Android)?

Can someone explain the in what way works the collision detection using box2d for android. I cannot understand in what way works BBContactListener. BBContactListener listener = new ...
3
votes
2answers
1k views

Making a Box2d object follow a predetermined path

I'm making a game in which a certain object (modelled as a box2d body) has to follow a fixed path. Is there a way by which I can specify the path coordinates and make the object advance over it for ...
3
votes
1answer
4k views

How to apply constant force on a Box2D body?

I am making a Box2d game for the iPhone. I need to apply a force on a body which represents my main character. The body is actually a rectangle on top of a circle connected using a revolute joint. I ...
3
votes
1answer
4k views

How would I build Box2D to work in Code::Blocks/Mingw32(Windows)

hey the title pretty much says it all. i have been trying different methods from internet sources, but whenever i try something goes wrong..this is where i got Box2D in cMake, i get a bunch of errors ...
3
votes
1answer
603 views

Typedef redefinition (C2371) for uint32 in two 3rd-party libraries

In my application I am using Box2D and Spidermonkey. Both libraries are defining the type uint32, which obviously gives me a compiler-error when using both in the same compilation unit. b2settings.h ...
2
votes
2answers
1k views

AndEngine Game Loop. Where is it?

I have experience programming games with Cocos2d and Box2d. Now I'm playing around with AndEngine and I'm a bit lost. This might sound like a dumb question, but where is the game loop for AndEngine? ...
2
votes
5answers
560 views

Best way to deal with object that can't instantiate itself?

I guess I've asked a few similar questions before, but I was beating around the bush. I think this is the real problem that I can't quite lay to rest. I'm dealing with a third party library, and ...
1
vote
1answer
1k views

Can I scale a shape in box2d as sprite do?

As we always use the function in cocos2d,I can scale my sprite whenever I want.Can I do the same thing in box2d?For example, I created a circle shaped body,then I want to make it bigger. I tried ...
1
vote
1answer
775 views

Distinguish between collision surface orientations in box2d

I've been working on an iOS project, using Cocos2D 1.0 and Box2D, and I've run into a bit of a problem. What I need to be able to do is determine the orientation of a surface my player has hit. For ...
1
vote
1answer
2k views

Game crashes when I try to destroy a b2Body, what should I do?

"Assertion failed: (m_bodyCount < m_bodyCapacity), function Add, file libs/Box2D/Dynamics/b2Island.h, line 65." That is what it the crash leaves in the console. [self ...
0
votes
2answers
1k views

Android libc.so crash?

I'm using AndEngine with the PhysicsBox2DExtension to make a game. My game keeps crashing and I get this in the unfiltered LogCat: 07-06 13:25:27.266: I/DEBUG(19582): *** *** *** *** *** *** *** *** ...
0
votes
1answer
595 views

Creating circle in android andengine by box2d?

I can create rectangle for creating wall for example: final Rectangle wall = new Rectangle(CAMERA_WIDTH-2, 0, 2, CAMERA_HEIGHT -2); PhysicsFactory.createBoxBody(this.physicsWorld, wall, ...
8
votes
1answer
3k views

How to subscribe self on the event of Device Orientation(not interface orientation)?

in my app i want to call some method in CCScene myscene in the case of device rotation(orientation change).I disabled the autorotation(because i want it not to happen). The issue is: i want to change ...
7
votes
4answers
2k views

How to set centers of shapes/fixtures/bodies in Box2D

Hey i'm trying to integrate SFML and Box2D, and SFML has made setting centers for sprites, shapes, etc. very easy. Box2D, on the other hand, I'm having trouble with as i can't figure out how to set or ...
5
votes
5answers
6k views

nsarray was mutated while being enumerated

I have an nsmuatblearray that stores mousejoints for a Box2d physics simulation. When using more than one finger to play I'll get exceptions stating NSArray was mutated while being enumerated I ...
4
votes
2answers
1k views

box2d-js element with external image

So far in the samples of varies box2d js implementation I can find only element defined in shapes (ball/box/etc), is there a way to create an element defined by an image, e.g. a boulder?
3
votes
1answer
2k views

Box2D Gravity to specific object?

I see everyone saying that you add gravity like so in a Box2D world: b2Vec2 gravity = b2Vec2(0.0f, -10.0f); bool doSleep = false; world = new b2World(gravity, doSleep); The thing is though, what if ...
3
votes
1answer
3k views

How to stop the forces acting on a body in box2d

I am using box2d on the iphone to create a game. I have a body that is effected by gravity to move down and not right or left. It will get hit by another body and will then be moving right or left. I ...
3
votes
1answer
989 views

Whats the best way to do character animations with Box2D?

I am developing a 2D, underwater, action-RPG for Android, using Box2D as the physics engine, mainly for collision detection, collision response and movement of in-game characters within an environment ...
2
votes
2answers
181 views

Seamlessly cast between math libraries

I am using two math libraries in a game project. One is the GLM library and the other one is the math part of Box2D. Occasionally conversion between the two is necessary, like this: b2Vec2 vec1(1.0f, ...
2
votes
1answer
872 views

Collision Detection in Box2d (cocos2d )

I have made 10 different static body placed along straight path. I want to detect Collision of a moving body with these different static body. How can i detect the collision of specific ...
2
votes
2answers
5k views

the warning “'uniqueIdentifier' is deprecated” in project based on cocos2d-box2d

I create a new project based on cocos2d-box2d, and there are always 4 warning in two files, one is CLScoreServerPost.m, the code has warning is following [self addValue:[[UIDevice currentDevice] ...
2
votes
1answer
2k views

Corona/Box2D detect collision with non-moving static objects

For posting reasons here's a simple version of what I'm trying to do. On the screen I have a simple circle object that is static and doesn't move. The user can then drag and drop a straight line. If ...

1 2