Programming your game with SDL (respectively SDL2) is a reasonable approach. But how do you make that speakers play your sounds and music? The Simple DirectMedia Layer (SDL) has an audio sub...
Category: Game Programming
Sound and most of the time also music is mandatory if you want to be at least a little bit serious about programming your own game. OpenAL is a good choice for doing this, but how can you even...
The SDL Library is a very good choice when you want to program games. But when you want to write your game in the C programming language without the C++ ballast, can you still use it? The Simple...
In most applications you have some sort of widgets like buttons, dialogs, sliders, etc. Even in Games you have at least the menu and options dialogs where you might need them. So if you program your...
Programming in C has a lot of advantages but also some disadvantages like not being object oriented or functional. Although you can theoretically develop most programs with any language, is it really...
Sometimes you may want your C program to draw some simple shapes on the screen without using sophisticated GUI Frameworks like Microsoft Forms or Qt. What options are there and on which operating...