Coder Social home page Coder Social logo

Comments (2)

slembcke avatar slembcke commented on May 17, 2024

There used to be a lot of (really gross) code to implement removing collision handlers in the past. Even after all the work that went into fixing all the known bugs it caused, there were still a lot of really nasty gotchas. For example, removing a handler was actually deferred and could cause nasty dangling pointer issues if you freed your user data object after removing the handler.

I decided a couple years ago that it was a misfeature, and that there really was no way to make it work correctly, sensibly, or safely. The new cpCollisionHandler structs were supposed to fix a lot of that. Since collision pairs reference the handler instead of copying the callback pointers, changes to the handler are immediate with no surprises or dangling pointer issues.

You are unfortunately right that the new struct way has a couple new issues. Setting a callback back to the default is difficult (not really on purpose). I'm not entirely certain how to improve that since the default changes based on if the handler is a regular or wildcard handler.

the persistence of setting things in a returned struct is not obvious, nor memory management/life-cycle issues that come with it

Since you cannot remove a handler, it exists as long as the space does. This is the same as how it used to work if you weren't explicitly removing handlers. This was meant to simplify the (basically undocumented and complicated) memory lifecycle problems with removing handlers in v6. Since Chipmunk only reads from the handlers, whatever values you write into them can be considered permanent.

from chipmunk2d.

ewmailing avatar ewmailing commented on May 17, 2024

I made manual fixes to the .def file in my branch. It also contains other things that may be of interest to you.
https://github.com/ewmailing/Chipmunk2D/commits/Blurrr7

from chipmunk2d.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.