Making a game for the sake of learning
Posted by artnewbie1@reddit | learnprogramming | View on Reddit | 7 comments
I want to create 2d games but don't want to rely on an engine or GUI for the projects. I don't want to create assets, I don't want to focus on making music or art and overall I don't want to spend a lot of time on things that don't have to do with code.
I'm just thinking of practicing/learning CS concepts, algorithms, AI, memory management etc. and I feel like those would apply really well into games. C++ or Java sound like good options but I'm open to learning another language too.
strcspn@reddit
I recommend raylib.
Ok-Judge-4682@reddit
I also recommend this.
Backson@reddit
For 2D low-level, I think Allegro, SDL or SFML are great starting points. You could make something abstract, like Chess.
leitondelamuerte@reddit
Handmade hero is a project where a guy creates a game from 0 using C.
Enjoy
https://www.youtube.com/watch?v=I5fNrmQYeuI&list=PLnuhp3Xd9PYTt6svyQPyRO_AAuMWGxPzU&pp=0gcJCV8EOCosWNin
zdxqvr@reddit
I'll start off by saying that this is not a bad project if your goal is to learn, but I will earn you to keep your expectations low. Game engines exist for a reason and doing it all from the ground up is not easy at all, be prepared for a lot of frustration.
dmazzoni@reddit
I think your first choice is what platform to build for. If you choose Java that means you could either make a desktop app or an Android app. If you choose C++ but no engine then you could make a Windows app or you could use libSDL for a lightweight, simple cross-platform library.
Consider python with pygame. It's actually an excellent choice for 2d games and much easier than Java or C++ for beginners.
Good games to start with that require no assets:
Or with extremely minimal assets:
You don't have to make an exact clone of any of those games, but recreating one of those classic games is a great way to learn. Then you can try messing with it to make it your own variation.
MrSolarGhost@reddit
About 2 weeks ago I started making a game using the canvas in JS. It is a simple browser game, maybe you could start with that? I havent used any asset, just coded the graphics. My game is kinda like a board game so I made the board with hexagons and the players are circles. You could try something like that.