Tagged Questions
0
votes
0answers
23 views
issues creating a class that handles contacts
All along I have been handling contacts within the CCPhysicsSprite class since I mainly set the userdata to a CCPhysicsSprite. As below:
ContactListenerClass.mm:
void ContactListenerClass:: ...
0
votes
0answers
16 views
Collision between a sprite and a tilemap with Cocos2d and Box2d
I have the following map I made in Tiled, and then added to my project:
map = [[CCTMXTiledMap alloc] initWithTMXFile:@"FirstLevel.tmx"];
[self addChild:map];
I also have the following object which ...
0
votes
1answer
27 views
saving contact bodies to be destroyed
In my code I would like to destroy one of two contacted bodies. Within the beginContact the following method in CCPhysicsSprite is called:
-(void)contactMade:(CCPhysicsSprite*)contactedSprite {
int ...
0
votes
0answers
20 views
contact listener not recognizing contact between two bodies with circle shapes
I set a contact listener between two dynamic bodies with circle shapes and also set tags for each of their sprites.
The first circle body is jointed to another body by a revolute joint.
When I ...
2
votes
2answers
45 views
EXC_BAD_ACCESS issue with contact listener
I am getting an EXC_BAD_ACCESS error in my contact listener code. Below is the code:
Main object class (GameObjects) through which all objects are subclassed:
GameObjects.h:
#import "cocos2d.h"
...
1
vote
1answer
31 views
why is userdata set to self?
In several box2d code samples I've seen this line of code:
body->SetUserData(self);
In my search I have not found any explanation for this. What is the main purpose for setting the userdata to ...
0
votes
1answer
34 views
box2d contact listener not working
I have set a box2d contact listener but it's not working. It is suppose to print a message in the console when the fixtures touch. I am not sure what's wrong. Below is the code.
...
1
vote
2answers
106 views
making a box2d body move in a sine wave type motion
How can I make a box2d body move in a sine wave type motion? I believe it will require applying some forces to move it along the sine curve path but I am not sure how. I would really appreciate any ...
0
votes
1answer
69 views
Box2D mouse Joint issue while dragging. TestPoint function return false
i'm using box2D mouse joint to drag the objects but i'm stuck in a strange issue that bodies are not responding to the moved function because
if (currentFixture->TestPoint(worldPoint)) {
...
0
votes
1answer
60 views
How to destroy a body with CCPhysicsSprite
I've realized that CCPhysicsSprite is different in a few ways from CCSprite. For example, you must set the body before you set the position of the sprite. I believe it is one of these differences that ...
0
votes
0answers
48 views
EXC_BAD_ACCESS error and strange behaviour when moving box2d body in straight horizontal line
I am having a few issues with making a box2d body move in a straight line. At times when I run the code it works (body moves in a straight line) and other times it falls as it moves. Below is the ...
1
vote
1answer
59 views
making a box2d body move in a spiral motion
How can one make a box2d body move in a spiral motion? I believe it will require applying some force but I am not sure how. I would appreciate any assistance.
1
vote
1answer
57 views
How to make an b2Body ignore another b2Body?
I have three b2Body-s. Head, chin and one static type b2Body. I add a b2Joint from static b2Body to head and another b2Joint for head and chin. Head ignore static body because collideConnected is ...
0
votes
1answer
46 views
Weird Rotation With Box2D and CGAffineTransformMakeRotation
I'm rotating a UIView using CGAffineTransformMakeRotation and rotation value is coming from a 2D Physics Engine called Box2D (you've probably heard of it). The integration seems to work fine except ...
0
votes
1answer
77 views
Cocos2d Box2d - assign generic userData to bodyDef
Most examples I see of assigning userData go something like this:
CCSprite *sprite = [CCSprite spriteWithFile:@"whatever.png" rect:CGRectMake(0, 0, screenSize.width, screenSize.height)];
...
0
votes
1answer
99 views
Box2d - how to grab and throw objects
Say there are 3 boxes on the screen, how can I go about touching one of them to pick it up and "throw" it at the others? I have the rest of the world implemented but can't find much information on how ...
0
votes
1answer
45 views
Box2d in Xcode - use of undeclared identifier 'toDestroy'
Every tutorial I can find on Box2d says to do this to iterate through the bodies in a world:
std::set<b2Body*>toDestroy; //ERROR
for(b2Body *b = world->GetBodyList(); b; ...
1
vote
1answer
203 views
Box2d and Cocos2d on iOS issues with sprites and positioning
I am creating new sprites/bodies when touching the screen:
-(void) addNewSpriteAtPosition:(CGPoint)pos
{
b2BodyDef bodyDef;
bodyDef.type = b2_dynamicBody;
bodyDef.position=[Helper ...
0
votes
1answer
41 views
Apply Interaction using Box2d in iPhone App
I am currently using box2D and UIKit to create an app. Gravity is working great with the objects that I have added. However, I would like the objects to have user interaction through touches. Most of ...
3
votes
1answer
350 views
How to add Box2d to an existing Xcode/Cocos2d Project
I have a working Xcode project that includes Cocos2d in one of the views. I now need to add Box2d. I tried dragging the Box2D folder into the libs directory of my cocos2d-2.x-ARC-iOS folder and adding ...
0
votes
2answers
112 views
In Box2D ball bouncing before hitting the floor
I implemented a basic box2d project in iOS with a bouncing ball, but the ball seems to bounce before it actually reaches the ground. On each progressive bounce it seems to get closer to the bottom and ...
0
votes
1answer
50 views
Object passes through object Box2d
I have two objects...One static and one dynamic (it is a ball). Static object have polygon shape. Sommethimes when I hit the ball, ball passes through static object :(. I have played with density and ...
0
votes
0answers
34 views
How do I create an opposite impulse during post-solve?
In my game I need a collision to occur but one of the bodies in the collision to not be affected by it. My idea was to apply an opposite impulse during each post solve to balance out each collision ...
0
votes
0answers
80 views
box2d how to rotate polygon with offset without changing polygon angle?
Sorry, it's hard to explain what I want to do, here is pic that describes it better:
My code:
b2BodyDef myBodyDef23;
myBodyDef23.type = b2_kinematicBody;
b2PolygonShape polygonShape23;
...
0
votes
2answers
51 views
How to fix b2Assert(kNormal > b2_epsilon) error in b2ContactlSolver?
In my iPhone app game the main character traps enemies (represented by b2bodies) in small spaces. Sometimes when too many enemies are trapped in too small of a space my game fails the ...
0
votes
2answers
69 views
Box2d: have sprite follow sprite
I just recently start to learn box2d, I am making a tiny wing clone. and i am trying to make a sprite follow another sprite, and eventually catch up.
since box2d is a whole new api to me, I do not ...
0
votes
0answers
16 views
Left-over profiling code in box2d 2.2.1?
I'm using Box2d 2.2.1. When I profiled my code in Instruments on iPhone HW I found out that mach_absolute_time was called quite intensively. When I looked in the box2d code i found leftover profiling ...
0
votes
1answer
107 views
Issue with throwing b2body at particular angle in Box2D game
in my game im having one Ccsprite for arrow, and one b2body for ball... im trying to throw ball at direction which is pointed by my arrow sprite. here is my code... i'm counting rotation of arrow ...
1
vote
1answer
134 views
How to make path in box2d in iPhone
I have a path which will be on bottom of the screen where insects will walk. But my path is not a straight line, it have ups and down. So how can I my insects walk my jagged line? The black line is my ...
-1
votes
1answer
122 views
Box2d Radial Gravit Limitation coco2d
I have been tweaking with the following code to create radial gravity,
http://www.vellios.com/2010/06/06/box2d-and-radial-gravity-code/
now its working fine, but I wanted it so that for example this ...
0
votes
1answer
97 views
issue with changing animation of body in Box2D game
im stuck in weird problem, im making one box2d game in which my character has different animation for walking, jumping and standing. i'v problem in switching these. here is my code..
controlLayer.m
...
0
votes
0answers
52 views
Mouse Joint - the sprite doesnt move
i am trying to undestand how mouse joint works. i see the tutorial in this page http://www.raywenderlich.com/475/how-to-create-a-simple-breakout-game-with-box2d-and-cocos2d-tutorial-part-12 that is ...
0
votes
0answers
30 views
Cocos2d touche specific sprite
i am trying to undestand how mouse joint works. i see the tutorial in this page http://www.raywenderlich.com/475/how-to-create-a-simple-breakout-game-with-box2d-and-cocos2d-tutorial-part-12 that is ...
1
vote
2answers
152 views
Cocos2d: graphics tool
I started to learn Cocos2d to develop games and also Box2d; I read some tutorials and I seen that are used two couples of tool "LevelHelper-SpriteHelper" & "PhysicsEditor-TexturePacker".
I ...
0
votes
0answers
86 views
The Revolute joint bodies gets scattered when touch moved
Currently i am developing a game using cocos2d box2d. Occording to the concept of my game a police men have to move his hands freely using physics concept. so i used b2RevoluteJoint for joining ...
0
votes
3answers
156 views
How does cocos2d use fps_images.png?
Can someone explain to me how cocos2d uses png as a font?
I would like to do something similar as my font only contains numbers.
0
votes
1answer
97 views
Can i use b2MouseJoint on a kinematic body
I can't find any documentation on the b2MouseJoint..
Is it only for dynamic bodies? Or can i use it on kinematic?
And if not, how else can i move kinematic other than applying a force?
0
votes
1answer
33 views
How can I update Box2d?
I updated cocos2d template but it doesn't have the new box2d.
http://code.google.com/p/box2d/downloads/detail?name=Box2D_v2.2.1.zip&can=2&q=
How can i update my box2d alone?
When i try ...
0
votes
1answer
70 views
b2Body sinks into static body
I have 2 static bodies, one on top of another.
When I switch the top one to dynamic, it sinks into the static for a second before recovering.
_boxBody->SetType(b2_dynamicBody);
...
0
votes
1answer
160 views
body have two different PhysicsSprite?
I am doing a box2d application. I created 2 different body in the world. check this code
-(void)init{
[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"sheet.plist"];
...
0
votes
2answers
284 views
ARC is working in iOS 6 but not work in iOS5.1
I am trying to enable ARC(Automatic Reference Count) functionality to my cocos2dbox2d application so i flow this link. ARC is enabled successfully and the application is working fine in iOS 6 but same ...
2
votes
1answer
182 views
cocos2d and box2d: camera rotation
i have a similar situation to this Question. I want to keep the camera with the player in the center and the rotation of the player.
But i'm using box2d so i can't rotate the environment and keep the ...
2
votes
0answers
35 views
how to move circle in screen game [duplicate]
Possible Duplicate:
Drag and drop UIViews with Box2d (iOS)
create circle at bottom of screen if I touch down on circle,it will go on to top of screen and if I touch up,it falls down to ...
1
vote
1answer
114 views
How to set revolution anchor when using b2RevoluteJointDef
First, I'd like to apologize the people who help to solute my issues before. Without your selfless help, I can't go smoothly so far in iOS development.
Now I have an issue again. The demo program is ...
2
votes
1answer
105 views
issues creating a weld joint within contact listener class
I have set a contact listener that creates a weld joint when contact is established between two bodies. When the bodies touch I keep getting a SIGABRT pointing to the line
b2Assert(IsLocked() == ...
0
votes
0answers
42 views
creating weld joint when contact is established [closed]
I have seen a number of contact listeners that destroy one body when the bodies touch. How can I set a contact listener in such a way that I'll be able to create a weldjoint when the bodies touch? ...
0
votes
0answers
135 views
Trying to make cut the rope app in c++
Trying to implement the cocos2d-x tutorial how to make a game like cut the rope . Implemented the code with some memory leak Since I am new to box2d and also trying to learn box2d. Right now in that ...
0
votes
0answers
37 views
issues with destroying weldjoint
I have made a method that creates and destroys a weldJoint when some conditions are satisfied. The creation of the weldJoint works fine but the destruction is not working. Please see the method below.
...
1
vote
1answer
526 views
What is the proper way to scale sprites in Cocos2D with Box2D?
I am using PhysicsSprite class
I have changed this piece of code:
transform_ = CGAffineTransformMake( c, s,
-s, c,
x, y );
...
1
vote
1answer
755 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 ...
