Tagged Questions
Chipmunk is a physics library written in C.
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
3
votes
0answers
178 views
calculating force, velocity and distance in chipmunk
I am newbie with Cocos 2D, Chipmunk and Box 2D.
I have started basic docs and started to develop games.
Currently I am working with chipmunk.
I stuck at few points And they are as follow.
In my ...
3
votes
2answers
313 views
Common lisp, CFFI, and instantiating c structs
I've been on google for about, oh, 3 hours looking for a solution to this "problem." I'm trying to figure out how to instantiate a C structure in lisp using CFFI. I have a struct in c:
struct ...
3
votes
2answers
3k views
What is Chipmunk? (Apart from being a Physics Engine)
Hopefully, this question isn't a dumb as I fear it sounds, but it may still be pretty dumb.
I'm new to Objective-C, and Cocoa. In fact, I'm completely new to C in general. I'm trying to implement an ...
2
votes
1answer
51 views
Chipmunk performance issue (sleeping bodies not working?)
this is my first post here (wish me luck)
Im building a side-scrolling iOS-game (cocos2d) that uses the chipmunk physics engine (v 5.3.4).
The games framerate is dropping dramatically when I move ...
2
votes
2answers
206 views
For collision detection only, is Chipmunk or Box2d the better tool?
For a Cocos2d based project, I'd like to use a physics toolkit for collision detection only. What are the pros/cons of using Chipmunk or Box2d?
2
votes
0answers
337 views
Using CCSprites in Cocos2d
I was wondering if anyone out there knows how I would attache a CCSprite to a CPCpconstraint and have it update with the physics. Here is my code:
upper = [game.spaceManager addPolyAt:cpv(70,195) ...
2
votes
0answers
180 views
Multiple cpShapes (chipmunk)
So I have created two shapes( poly's to be exact) and I need to be able to attach them to a single CCSprite/image, and have them stay in the position that I have created them at. Is there any way to ...
2
votes
1answer
350 views
How to create a rotation based Impulse Vector (Cocos2d, Chipmunk, Spacemanager)
So im trying to create character with two jetpacks - either of which can be fired independently of one another to create an impulse offset from the center of gravity (Using Cocos2d, Chipmunk, and ...
2
votes
1answer
289 views
Developing A Simple Game without using Game Engines?
I am trying to develop a simple soccer game including penalty kicks in which i have to animate a ball from player to the goal post...earlier i have been using simple animations using a timer to add to ...
2
votes
1answer
567 views
Ball rolling sound effect
I am working on a Labyrinth style app for iPhone using Chipmunk and openAL. I got everything working except the ball rolling sound. What I have tried is playing a small sound for each update in the ...
2
votes
2answers
746 views
Chipmunk: how to delete a body?
What's the right way to delete a Chipmunk body? Simply calling cpBodyFree or cpBodyDestroy doesn't seem to work, as the body still shows up in the cpSpaceEachBody iteration.
if(body->p.y < ...
2
votes
4answers
392 views
c and objective-c variables
Let me see if I can articulate what I'm trying to do... I'll distill it to the core issue.
I have an objective-c program and a c callback function. The context is I am using cocos2d and chipmunk ...
2
votes
3answers
171 views
How to detect stack objects falling down
In my game, Objects are falling down and I have to catch that object and have to create a stack. I am doing this by using chipmunk physics engine. I am able to create stack but I don't understand how ...
2
votes
3answers
739 views
How can I detect a permanent collision with the Chipmunk Physics engine
I'm trying to play a "boing" sound when a ball shape hit's any other kind of shape. Which works. But works a little too well....
When the ball comes to rest, or starts to roll, it's in a permanent ...
2
votes
2answers
2k views
cocos2d iphone - game architecture: physics VS. code simulated sprite behaviors
Hello stackoverflow community !
I am trying to figure out how to architect my game using cocos2d.
My problem is that cocos2d's physics engine (i'm talking about chipmunk) lies in a world behind ...
1
vote
1answer
198 views
Implicit conversion of an Objective-C pointer is disallowed with ARC
I'm playing around with this Chipmunk Tutorial and I'm running into a problem with the following code (in section 5):
// Create our shape associated with the ball's body
cpShape *ballShape = ...
1
vote
1answer
40 views
Creating a distructable ground in chipmunk
I am trying to create a distructable floor in chipmunk
Pretty much I need a floor or body object that when a bomb explodes that the floor disappears in the area of the balls defined explosion area.
...
1
vote
2answers
91 views
cpSpaceHashEach - 2 problems at the same line
I'm trying to grasp basics of Chipmunk. In some tutorial I found a line:
cpSpaceHashEach(space->activeShapes, &updateShape, nil);
But I get 2 mistakes here:
1) Implicit declaration of ...
1
vote
2answers
34 views
Where to find reference to functions, which come with Chipmunk?
I'm new to iPhone development. I installed cocos2d with chipmunk and try to make a simple project from some tutorial.
When I encounter chipmunk functions (like cpSpaceAddShape, cpSegmentShapeNew, ...
1
vote
2answers
167 views
Pixel collision detection?
In my app, I have a bunch of CCSprites and I want to have a collision detection feature that will work only when the non-transparent pixels in the CCSprites collide. I don't want to be restricted to ...
1
vote
1answer
48 views
chipmunk and static bodies : if the game map is to large for the screen, I can move sprites but how can I move static bodies and shapes?
I think the title is pretty clear.
The way I see it is there are two things :
the sprites for display
the bodies for physics
Sprites can be moved in the screen when the level to display is to ...
1
vote
1answer
81 views
chipmunk physics: how to predict the path of a body including bounces
I need to predict the path of a body, including bounces with other bodies, in chipmunk physics. Is there any way to do that?
Thank you in advance
Andrea
1
vote
2answers
374 views
Pass Variables to a Function in Objective C
Firstly, let me explain that I have googled this, and I can't seem to find a clear answer to this; but I believe this is because I am using incorrect terminology.
I am moving a ball to a location in ...
1
vote
1answer
256 views
Is there any good chipmunk/cocos2d sample source out there?
I'm looking for sample to help me understand the how chipmunk physics works ... So I'm asking : is there any source code available out there ?
1
vote
2answers
414 views
Draw a Polygon with Chipmunk and Gosu in Ruby
I am brand new to game development and I thought it would be fun to try out Gosu, Ruby and Chipmunk together.
So far I have a player and a ball on a 2d Top-Down field and they collide.
My problem ...
1
vote
0answers
166 views
Compiling Chipmunk with Code::Blocks
I seem to be unable to compile chipmunk without compile errors, can anyone help me? I turned on C99 but I still get errors.
Here's a few:
C:\c++\ChipmunkLib\chipmunk.c:70: error: 'M_PI' undeclared ...
1
vote
1answer
174 views
wheel of fortune collision detection
Hey, I have a wheel segmented into 8 pie pieces, and a picker that is pointing at the currently selected segment (think wheel of fortune). I want to highlight the currently selected segment, and so ...
1
vote
0answers
107 views
Removing bodies from joints in Chipmunk Physics
In Box2D, when a body that is connected to a joint is removed from the space, the joint is automatically deleted and you can do stuff in callbacks and so on.
Does Chipmunk do this? If so, how can I ...
1
vote
1answer
289 views
Making a Sprite unmovable…[Chipmunk & Cocos2D]
Im using Chipmunk with Cocos2d to make a gravity based puzzle game, however I have reached a part of my project whereby I need a sprite that once drawn does not move and cannot be moved by the other ...
1
vote
3answers
828 views
How to Include Chipmunk libraries to iPhone Xcode project?
[SOLVED]
I copy the chipmunk folder structure from cocos2d+chipmunk template and build OK.
Classes/Chipmunk/include/src for 'src' folder
Classes/Chipmunk/chipmunk for 'include' folder
Thanks to ...
1
vote
1answer
457 views
Move Chipmunk Body to Sprite position
I have a Chipmunk shape, with a body, in a space. I am removing the body from the space so that I can position it and not have it fall due to gravity etc. I need to be able to make this body move, ...
1
vote
1answer
347 views
Chipmunk body move with Parallax?
I'm using Cocos2D, SpaceManager and Chipmunk. I have a parallax node with 4 layers on it, this is tied to the location of a playable chipmunk body. This body needs to collide with static objects on ...
1
vote
2answers
359 views
Use Chipmunk body location to drive Cocos2D Parallax
I'm using Chipmunk with SpaceManager inside of Cocos2D. I have a body which is moving around with impulses, I'd like to be able to use that bodies location to drive a parallax node in Cocos2D.
So, ...
1
vote
1answer
151 views
Projectile hit coordinates at the apex of its path
I have a projectile that I would like to pass through specific coordinates at the apex of its path. I have been using a superb equation that giogadi outlined here, by plugging in the velocity values ...
1
vote
1answer
251 views
How can I store SpaceManager cpShape's in something like an array?
I'm trying to create a squishy ball with Cocos2d and Chipmunk (via SpaceManager) using a bunch of rects all chained together then joined with springs to a central body.
Something like these examples
...
1
vote
1answer
236 views
Check collision speed in Chipmunk Physics
I'm using Chipmunk 5 for iPhone, with Cocos2D. Upon collision between two specific objects I'd like to run a method which checks the velocity of that collision, if it's over x it runs one set of ...
1
vote
1answer
400 views
Chipmunk physics: Velocity question
I'm making an iPhone game where the main actor is a ball that rolls depending on the device's accelerometer rotation.
I haven't started on this part of the coding yet, but I was wondering if you guys ...
1
vote
1answer
475 views
Using Chipmunk physics - how can I tell the force of two colliding objects
If I have two objects in chipmunk (I'm using cocos2d-iphone), once I've detected that they collided, how can I tell how hard they are hitting each other?
I want their force (vs. the velocity) to know ...
1
vote
1answer
310 views
How to apply a force which should not be continuos
I have a body which I move with the help of a button, here is what I'm doing:
-(void) step: (ccTime) delta
{
int steps = 2;
CGFloat dt = delta/(CGFloat)steps;
for(int i=0; i<steps; i++){
...
1
vote
1answer
390 views
Getting X window id for GLUT program? or, How to remote control a GLUT program on X?
I want to send a keystroke to a GLUT program on X11, but I can't find there's an X11 client attached to the GLUT program.
I do this, using the most excellent demo program for the chipmunk 2d physics ...
1
vote
2answers
269 views
How to log data & type from a void pointer?
I have the following code:
eachShape(void *ptr, void* unused) {
cpShape *shape = (cpShape *) ptr;
id obj = shape->data;
NSLog(@"shape->data: %@", obj); // this is where EXC_BAD_ACCESS ...
1
vote
2answers
2k views
Chipmunk collision detection
I am completely new to chipmunk and I have just been using it for a few days, so I'm guessing this is something pretty obvious, however I cannot find any documentation for this. Is there any callback ...
1
vote
1answer
784 views
How to implement moving platforms with Cocos2d, TMXTiledMaps and Chipmunk
I'm making slow but steady progress with a Cocos2d game, but I'm stuck creating moving platforms.
The main character needs physics and collision detection, and is therefore a chipmunk shape/body. I ...
1
vote
2answers
293 views
Accessing a property from a C method in Cocoa
I'm trying to learn Objective C & Cocoa, but I just can't manage to access a property inside an Object. Specifically an object from a C method. I'm working with the chipmunk dynamics library.
...
0
votes
1answer
12 views
Where can i find fixture presets of different materials
Where can i find fixture presets, that can be used is rigid body physics engines like Box2D to simulate behaviour of different materials?
I'm looking for values of density, friction and restitution ...
0
votes
3answers
38 views
Can anyone help me with this Apple Mach-O Linker Error?
I know this is not a programming question, and I need help with setting up Chipmunk. I have already wasted half a day on this and tried solutions from other similar postings...
But can anyone help ...
0
votes
1answer
50 views
Ruby attr_accessor not being read
I am developing a game with Ruby using the Gosu and Chipmunk gems. I have the following class in the file named HeroBullets.rb:
require 'gosu'
class HeroBullets
attr_accessor :y
def ...
0
votes
1answer
67 views
Parallax Scrolling With Finite Length
I have a side scrolling platformer that uses Chipmunk and Cocos2d for iPhone. The player moves from one side of the level to the other side of the level to complete the level. The player actually ...
0
votes
1answer
36 views
how to detect the number of collision that object is having using chipmunk in iphone
I am doing one app related to collisions in cocos2d.
I am using chipmunk in my project for collisions, and its working fine for collisions.
But now my requirement is, I want to know that with how many ...