I'm in the early stages of creating a 2D game as a something to do in my spare time.
For this game I want to create destructible terrain and was hoping I can get some good ideas on the matter. I plan on using Farseer Physics for some general physics such as boxes.
My problem is that I'm not sure how I should create the destructible terrain together with a physics engine.
My best idea so far is to keep a black and white image in memory where black represents some type of ground and then drawing and removing to this image as things change during the course of the game.
Then every time the image changes try to extract the vertexes of the edges with a certain distance between them and using them to create polygons in the physics engine.
Not quite sure how should I do this as the image can have multiple small islands of polygons and getting all of these out, or even figuring out where these islands are turns complex rather quickly.
