For quite some time now, I've been intensely interested in the idea of building a physics engine from scratch, or as close to that as I could feasibly get. I can think of few projects more suited to both challenging and expanding my understanding of programming and physics than making a general-purpose physics engine. In my vision of the project - which I have called "The Djinn Engine", or just "Djinn" - it would be able to simulate a wide variety of physical systems, from simple pendulums, to complex planetary orbits, to (simplified) atomic models. So far, I have successfully implemented gravity, springs (and several variations of springs, such as the anchored spring, bungee, "fake" spring, etc.), and drag, with working demos for each of these forces. More recently, I have implemented collisions into the engine for particles (not yet rigid bodies).
A demonstration of the capabilities of Djinn to simulate gravitational bodies. Note that the relative sizes are to scale, and the distances between each body are to scale, however the distacnes are not to scale with the sizes. Future work on this demo would see this aspect fixed, however currently the limitation is travel time between each planet (and draw distance). |
Although I have covered a good deal of ground in the relatively short time I have spent designing Djinn, there is still a lot of work to be done. To name a few things:
While I had some experience in C++ with my Mandelbrot Set project and working on PhoSim, that was about my only exposure to the language before I began making Djinn. In the process of making Djinn, I have learned a great deal about some aspects of programming totally absent in higher level languages like Python, such as memory management, pointers, creating robust Makefiles, and the like. I've also had to use external libraries to manage certain aspects of the engine that I've deemed not critical to the actual physics of the engine, such as graphics (Raylib) and logging (spdlog)
The full codebase can be found here on my GitHub.