Tagged Questions

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

12
votes
3answers
7k views

Cocos2d + Box2d or Chipmunk

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
10
votes
1answer
1k views

iPhone physics engine for fluid/water simulation?

I'm about to start developing a game that's main feature revolves around 2D water simulation. I have thought about starting with Box2D and designing water in that engine, but I'm not sure if it would ...
8
votes
3answers
710 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 ...
8
votes
3answers
6k views

Guide for Cocos2d and Box2d on iphone?

I'm new to the world of game programming but wanted to build a simple physics-based game for the iPhone. Does anyone know of any tutorials for Cocos2D and/or Box2D on the iPhone? The documentation is ...
7
votes
4answers
1k views

Non-Rigid Body 2D Physics Engines in C++

I'm trying to experiment with 2D physics engines in C++. So far, it seems the most popular is Box2D. Unfortunately, Box2D is a rigid body physics engine and that's not really going to help me with ...
6
votes
1answer
165 views

How to generate textures to fit around shapes?

I have a randomly generated series of EdgeShapes, as shown here: My question is, how can I fill that bottom area with a texture in order to make it look like the ground?
6
votes
2answers
797 views

How to create a level with curved lines with cocos2d + Box2d on the iphone?

I'd like to create a game that has levels such as this: http://img169.imageshack.us/img169/7294/picdq.png The Player moves "flies" through the level and mustn't collide with the walls. How can I ...
6
votes
5answers
1k views

physics game programming box2d - orientating a turret-like object using torques

This is a problem I hit when trying to implement a game using the LÖVE engine, which covers box2d with Lua scripting. The objective is simple: A turret-like object (seen from the top, on a 2D ...
6
votes
6answers
1k 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 ...
5
votes
2answers
218 views

Which Box2D JavaScript library should I use?

There are a few different ports of Box2D for JavaScript. Which one is the best? Box2DJS - "converted from Box2DFlashAS3_1.4.3.1 in an automatic manner" Box2Dflash 2.0 ported to JavaScript - "one ...
5
votes
1answer
286 views

Removing an object when collision happens

I’m still new to Java and Android programming and I am having so much trouble Removing an object when collision happens. I looked around the web and found that I should never handle removing BOX2D ...
5
votes
1answer
288 views

How to animate an explosion that blows the surrounding bodies away? [closed]

I am trying to put a bomb in some place and when it explodes every thing around it will fly away and the speed depends on how close the object to the bomb. something like when the black bird explodes ...
5
votes
4answers
340 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
2answers
1k views

Breaking a concave polygon into convex ones

I'm using a game physics library (Box2D) which only supports convex polygon shapes. However, I'd like the level builder to be able to just specify concave polygons without having to worry about that. ...
5
votes
3answers
2k views

Farseer or Box2D? Top-down shooter physics implementation

Which one of these would fit a top down shooter better? I've heard that Box2D performs faster, but I've also noticed that it lacks wider community support for XNA (it rather seems to be used for ...
4
votes
1answer
105 views

Disadvantages of sleeping bodies in Box2D

When creating a world in Box2D you have the option to enable bodies to sleep (no simulation is done on them if they come to rest). Why isn't sleeping the default option? What disadvantages does it ...
4
votes
5answers
372 views

XCode 4 Autocomplete with C++ library?

I am using Cocos2D Box2D template for my project. When I type , "b2**" the autocomplete doesnt show any Box2D classes. (pressing ESC also doesnt show any ) I have included Box2D.h and Cocos2d.h in ...
4
votes
3answers
447 views

Are there any tutorials on coding a parser for SVG files to be used by box2D?

I am trying to create an iPhone game with fairly large levels. Hard coding the platforms and physics objects is very time consuming. I have seen some people have made their own parsers for svg files ...
4
votes
3answers
4k views

Libgdx tutorial help!

I am trying to find a tutorial for libgdx, but all I find it the one on the projects website on google. Should I just read the java docs or are there any other source I could get some info from?
4
votes
1answer
2k 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 ...
4
votes
2answers
975 views

Diminishing speed in zero gravity box2d world

I am trying to create a dynamic body that orbits around a static body in Box2D. I have a zero-gravity world, and a DistanceJoint that connects the two bodies. I have removed all friction and damping ...
4
votes
3answers
2k views

Friction in Box2d

I am using Box2d for a topdown game. The "ground" is a series of tiles, where each tile is a static body with a sensor shape. Can I make friction take effect for this, even though the objects aren't ...
3
votes
2answers
47 views

Remembering performSelector: for later in Objective-C

In the box2d physics loop of my game (the step), I must call the following block: if ([objectA conformsToProtocol:@protocol(FMCollisionProtocol)]) { [objectA ...
3
votes
1answer
51 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
103 views

AS3 > Mouse Event not happening?

Background: Trying to make a ball appear in the same location the mouse is positioned. Using Box2D Library. Working on a class file (.as) Issue: The mouse event does not work (I click but nothing ...
3
votes
1answer
236 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
5answers
123 views

Is there a functional difference between “2.00” and “2.00f”?

I ask because I am using the Box2D library, which calls for mostly float arguments. Although I see a lot of example code that uses the 0.00f format, I am not quite sure if there is an actual ...
3
votes
2answers
275 views

How do I give a Box2d Kinematic body a predefined curved path

I'm new to using Box2d and really can't find a consistent answer to my question so please excuse me. I'm writing a game for the iPhone -- who isn't these days -- and I'm using Cocos2d and Box2D. I ...
3
votes
2answers
275 views

Developing for HTML5 canvas using Box2D engine but NOT in Javascript

Basically I have the following constraints for an upcoming project/game: Drawing should be done in the HTML5 canvas element Use the Box2D physic engine (or equivalent physics engine) Game logic (and ...
3
votes
1answer
235 views

Rotate a Sprite on a bezier path with touch - Cocos2D/Box2D

I have an arrow that I rotate with touch. I was wondering if it was possible to rotate the arrow on a curved line? I've done some research and I think it is called a bezier path? Is it even possible ...
3
votes
1answer
92 views

b2shape Ellipse?

I'm trying to create a elliptical object in box2D (Cocos2D). So far I've used b2CircleShape for that but I've realized that it ain't gonna cut it no more, I have to have elliptically shaped body. Is ...
3
votes
1answer
41 views

Composition and projectiles

I'm using a composite design in my current game which works pretty well. All game objects are either instances of GameObject or are direct descendants of it... some objects implement a particular ...
3
votes
1answer
331 views

body.setTransform does not work inside contact listener (andEngine and box2d)

I'm trying to move player body while contact with teleport but setTransform isn't executed.This is my contact listener mPhysicsWorld.setContactListener(new ContactListener() { @Override ...
3
votes
1answer
299 views

Adding UIImage to CCSprite using Box2D

I want to add an image to a CCSprite and then use that inside my Box2d world. The createBoxAtLocation picks up the contentSize correctly but never displays the image...what am I doing wrong? Do I need ...
3
votes
2answers
609 views

calculate distance in CGpoint between two CGPoint

i need to calculate distance in CGPoint between given two point(CGPoint) i refer this and this but i dont know how to get distance in CGPoint. so if any one knows Please help. Thanks.
3
votes
2answers
335 views

I cannot init a new World with box2D on Android

I added the gdx.jar and gdx-backend-android.jar in the Libraries tab. I get java.lang.UnsatisfiedLinkError: newWorld for gravity = new Vector2(0,10f); world = new World(gravity, false); ...
3
votes
3answers
257 views

Predicting ball path - Artificial Intelligence

I'm implementing a simple Volleyball game using Box2D in Flash. I need to implement some AI for the CPU player. Let's call him Jack. So Jack needs to predict where's the ball gonna land after it has ...
3
votes
1answer
582 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 ...
3
votes
1answer
367 views

Find what bodies are colliding in Box2D using C++

I have a basic class for detecting collisions but I can't figure out how to see what bodies are colliding to trigger the appropriate event. Lets say I have a pong game and in it a ballBody and ...
3
votes
1answer
1k 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, ...
3
votes
1answer
315 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 ...
3
votes
2answers
807 views

Only Integrating Box2D collision detection in my 2d engine?

I have integrated box2d in my engine, ( Debug Draw, etc. ) and with a world I can throw in some 2d squares/rectangles etc. I saw this post, where the user is basically not using a world for collision ...
3
votes
2answers
2k 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
1answer
232 views

Box2dx: Specify fixtures to ignore in raycasting?

Everybody in my game world has fixtures with sensor shapes attached. When I raycast, it hits these fixtures, but I only want to hit fixtures with at least one shape that is not a sensor. Is this ...
3
votes
1answer
1k views

C# XNA Box2d: What kind of joints for a ragdoll?

I'm trying to make a ragdoll out of a bunch of bodies. What kind of joints do I want to connect them? Distance joints?
3
votes
4answers
669 views

Would Apple reject an app from the iphone app store for using box2d?

I am contemplating using Box2d for making iphone apps, but I don't want to worry about Apple rejecting my app for using Box2d. How does box2d work? http://www.box2d.org/ Would Apple somehow reject ...
3
votes
1answer
998 views

How to create a wrapping world in Box2D

I need to create an endless wrapping world with Box2D (where the X coordinate of all objects is 0 < X < 1000 (say)). I've played some games with teleporting objects back and forth but it's ...
2
votes
0answers
47 views

Detect initial collision of two box2d bodies without continuous collision

I have some simple box2d bodies setup with a contact listener like so: #import "MyContactListener.h" MyContactListener::MyContactListener() : _contacts() { } MyContactListener::~MyContactListener() ...
2
votes
0answers
54 views

Simulating water resistance in Box2D

I'm making a game where player drags a boat around using finger. I'm using Box2D for the physics aspects of the game. In particular, I'm using b2MouseJoint to attach the touch event to the boat to let ...
2
votes
2answers
107 views

Platformer Physics - XNA Farseer C#

So I have been using Farseer for a platformer with physics, and I started running into some concerns as shown below: When I want my character to jump, I don't only want to apply an impulse to the ...

1 2 3 4 5 13