I am trying to make a game based on graphics in MASM. I want to get the name of the game player in graphics mode, that can be displayed later. I cannot find a way anywhere on the internet on whether how to do that. How can i do this in MASM? Please Help! Kindly point me in some direction instead of flagging my question or deleting it for no valid reason.
Asked
Active
Viewed 10 times
0
-
2Are you talking about 16-bit real mode, with DOS or BIOS calls? I'd expect BIOS keyboard input calls still work regardless of the current video mode. The system might not automatically echo keystrokes to the screen, but you may want to draw yourself in a game. – Peter Cordes May 05 '22 at 11:13
-
1Or do you mean in a 32-bit or 64-bit Windows program after calling an OpenGL or DirectX function to go full-screen graphics? In that case, probably same way you were getting keyboard input to you window, via an event loop. – Peter Cordes May 05 '22 at 11:15