Vehicle physics model
Finished setting up physics model for basic vehicle. Added some new constraint types and a new way to enforce the shape of verlet body.
Now i’ll be working on physics materials and rotating body parts mostly for the sake of vehicle wheels.
Gif recording
Added in-game gif recording. You can expect some more of animated pixels in the future.
World streaming and fixed-point math
Since i’m using fixed point math (Q20.12) in the physics engine and some other places to keep things deterministic i had some issues with keeping all the calculations in the range −524288 to 524798.999. This range seems like a lot, but belive me, it’s not…
The solution for the limited range in the physics engine is to introduce world streaming tech. World is divided into chunks, each chunk has it’s own physics system and keeps all the positions relative to that chunk. Bodies can collide inside of the same chunk along with the chunks that are adjacent to that chunk. While comparing/colliding bodies that are in two separate, but adjacent chunks you just shift them to the same origin and BOOM – NO MORE MULTIPLICATION OVERFLOWS!
Similar solution is used with floats due to limited precision far from the origin. You can read more about this issue in paper called Using a Floating Origin to Improve Fidelity and Performance of
Large, Distributed Virtual Worlds by Chris Thorne.
Retro 3d engine
I have been fascinated by the old school id tech engines (DooM, Quake 1) and always wanted to make something similar in spirit for that age. I sat down 3 years ago (yeah, shit takes time) and started crafting my doom-quake love hybrid.
Some things:
- basic cross-platform framework
- fixed point math library
- terrain rendering
- sector based level structure with portal rendering
- level editor
- physics engine (soft and rigid bodies)
- entity component system (scriptable)
- steering behaviors
- vehicle physics (in progress)
- procedural locomotion/animation system(in progress)