Porting my alchemy game engine to C++ wasn't that hard. In fact, less than a week after my brother told me to make a commercial game out of it, I was done. During that time we both brainstormed a bit about how this game would come to be. It was a very simple concept. Basically, recipes are used to create either new elements, weapons, spells or locations. The first three are straight-forward. Elements are used for recipes, weapons are used to kill monsters, and spells are used to either help yourself or kill monsters. Locations were special, as they served two purposes.
First, let me tell you the concept of my game. It's an idea I had that I have reworked into an action RPG. Originally it was going to be a cosmic horror dating sim, set in the world I called Digit-5. However, with the idea of using this element system for my game, I decided to turn it into a platform action RPG. But I didn't want to completely throw away the dating sim element.
By creating locations and decorating them, you can change the world around you, giving you advantages, but also allowing you to make it more challenging for yourself. It also serves as a way to woe the three aspects of the Goddess. I won't go into much detail with this, by the way.
So in the first week I worked on the framework of my game engine, meaning, figuring out how to create game states and game state transitions. After that, it was graphics time. Of course, it would still be in its testing phase.
The first thing I did was figuring out how to do perspective projections. I was still a beginner with OpenGL, despite my experience with Minecraft modding. So, the first thing I did was test everything in orthographic projection. It wasn't hard, I already worked in that projection. But then it was time for me to move onto perspective projection. It wasn't easy, and the first week was brutal. In the end I ended up making my own version of gluPerspective, which I didn't even need in the end anyway, but it did help me a bit with understanding how glFrustum worked.
At that point it was time to do my master plan. You see, ever since I've seen games like Super Paper Mario or Crush, I was wondering how hard it would be to allow people to make a smooth transition between orthographic and perspective projection. Turns out it wasn't that hard.
So then I decided to make a completely new test. Create a camera object, add some boxes to render, and have the switch between the two projections happen using the space bar. When I showed this test to my brother, at first he would see just a few ugly colored rectangles. But the moment I hit the space bar, BAM! 3D.
I then proceeded to make about five more "camera tests". More like excuses to play with this.