Saladsamurai said:
Does anyone know of any good texts that are geared towards creating Physics Engines using c++? Or at the least, a text on creating physics engines in general? Any personal recommendations would be great.
There is a text by O'Reilly that covers this in a little detail:
http://shop.oreilly.com/product/9780596000066.do
But you will need to do a lot on top of reading just this alone.
You have to understand issues about numerical integrators to see when things blow up and go unstable and also need to understand any 'hacks' that are put into stop stuff like this from happening.
Also on top of this understand geometry in a very detailed manner.
The reason is that numerical integrators are good for the 'response' part but for the 'detection' part you need collision primitives and this is a whole other kettle of fish.
Also it's not just static, you will want your scene spatially organized and any kind of dynamic information like momentum (angular and non-angular) need to be taken into account with the spatial classification that is assigned.
If you want a basic idea of spatial classification then the simplest one is the BSP tree which basically keeps dividing the space in half with each plane.
It's not the best way but there are a lot of approaches to spatial classification and its important that you realize that the classifier doesn't have to be straight, and you could even use a specialized data structure and a 'search' algorithm to do some funky stuff.
But yeah aside from 'response' (integration issues, function definition etc) and 'detection' (collision and everything else), then you need 'games' specific stuff because games are not realistic and sometimes you want to have 'wacky' effects that are clearly not real.
After you combine these three then you get a physics engine that allows a template for collision detection and response and that allows you to tweak specific variables to implement 'physics models' which include things like gravity, dampening coeffecients and other things.
If you can get some open source game engine specific physics engines you will see what I mean when I say the things I say in my post.