Over the course of August 2021 I decided that I would like to learn OpenGL. Like most people I started with LearnOpenGL.com this resulted with me wanting to create a 2D game framework that I could use to create basic games. The project however did start to lose my attention as University started a month later. This project originally started off with just learning OpenGL so I also implemented various lighting techniques and shader effects such as point shadows.
Built in C++14 using OpenGL 3.4
Built in 2 months. August 2021 - September 2021
Features
UI Framework


Tweets
Thought I'd show some more progress on my 2D framework, text can now be left, center, and right-aligned. With buttons that function as well. The next step is to make an input class to simplify key checks. #gamedev #gamedevelopment #opengl #software #learnprogramming #indiedev pic.twitter.com/yprXoqj476
— Adam Harris (@AdamHarrisDev) September 24, 2021
Made Breakout in #OpenGL Thanks to https://t.co/V0zsRquxOa Now looking forward to expanding this and then start work on my own 2D game engine/framework #gamedev #gamedevelopment #indiegamedev #graphics #programming #tech pic.twitter.com/3xg1bxTNas
— Adam Harris (@AdamHarrisDev) September 16, 2021
Instanced drawing
— Adam Harris (@AdamHarrisDev) September 8, 2021
Amount of asteroids: 1,000,000 (that's right 1 million asteroids)
FPS: 20
\3 pic.twitter.com/53VUosPZ8Z
Challenges
This was my first project using OpenGL and as such I ran into a few obstacles at first such as using uniforms and understanding how VAOs, VBOs, and IBOs worked in OpenGL compared to DirectX.
As I shifted the project to creating a 2D framework I was having to make a lot of architectural decisions such as how should I make this system easy to use for the end user. I opted on utilising a large amount of abstraction to remove complexities from the end user while still allowing them plenty of control in how data was processed. To handle button presses and events I opted for utilising the Observer design pattern to handle buttons being clicked or mouse and keyboard events.