OpenGL Engine
Overview:
This engine is an ECS game engine written in C++ using OpenGL. I started working on this project late into my senior year, as a sort of personal capstone project for myself. I wanted to take what I had been learning about in school and on my own time, and apply it to something that would prove to myself (and potential employers) that I had the programming chops to work in a low level environment and build up the tools that I needed to make my own game. It also proved a good experience to practice modern C++ and teach myself more low level physics and linear algebra concepts.
My Role:
This project was entirely created by me. I’ve personally created every piece of it, with inspiration taken from various reference materials and tutorials which can be found on the GitHub page.
Link to GitHub Repository.
Lessons Learned:
This list will be updated as I continue to work on the project, so this list while be perpetually behind what I have finished.
Modern C++:
The whole smart pointer family
STL library functions
Variadic templates and parameters
Move constructors
typeid and reflection
std::chrono
OpenGL/Graphics
GLFW + GLAD
glm
Shaders vert/frag
Textures
Graphics matrices and transformations
Camera control and movements
Physics
Forces, acceleration, velocity calculation, trade offs between the
Damping, friction, drag, gravity
Importance of a fixed timestep for physics calculations (and the annoyance of floating point imprecision)