I was making some games using Game Maker, but I would like to make simple games using C. I am a newb C programmer. When I code the output is always in the CMD Windows Console. I could make some simple games but always in the console, which is not very flexible (you can't animate without scrolling). When you run a more complex game, a complete new screen is created and I actually interact whit that screen.
So the question that i am having using C language is: How is this new screen being loaded? I think there is some windows API to create a new screen or something. By the way, in the old times, I mean DOS time, you just used a console but you could load a new screen where the game was played. How can you achieve this?
I would like some guideline to research the root. I just don't want to call library X or use SDL.
Thanks your your help.
C programming dates back to 1970's, so you can think of creating games similar to that era. The window or the new screen is loaded by few preprocessor directives which are already compiled and stored by the developers. A new screen can be achieved by giving a few commands:
What this basically do is the function getch(); which is stored in (conio.h) will open a new window and it will display the output till it gets a value from the keyboard ie it displays the output till you press any key from the keyboard.
hope this answer helps you.