Question

I'm storing Chipmunk Physics' cpShape objects in an NSMutableDictionary by way of NSValue objects and the following lines of code:

NSValue *shapeValue = [[NSValue alloc] initWithBytes: shape objCType: @encode(cpShape)];
[staticBodiesInUse setObject: shapeValue forKey: name];

I now need to get the cpShape back out, to compare it to another shape. How can I do that? I see a getValue: method in NSValue but it needs a buffer, not too sure what to do with it.

Was it helpful?

Solution

So the answer by trojanfoe is only partly correct.

There is a huge problem with doing that. When you create the NSValue that way, you are copying the cpShape struct, and getting it back out, you are copying it again. cpShape structs are pretty much exclusively used by reference. Each time you copy it, you get a new reference to the new copy, and some of those copies exist on the stack and get destroyed silently and automatically. Very very bad.

Instead you want to create a NSValue using [NSValue valueWithPointer:shape] and get that pointer back using [value pointerValue]. This way the NSValue is only storing a pointer to the original cpShape.

OTHER TIPS

Isn't it simply:

NSValue *value = [staticBodiesInUse objectForKey:name];
cpShape shape;
[value getValue:&shape];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top