cin input limit

Started by
0 comments, last by alvaro 13 years, 4 months ago
Ive been trying to figure out how to limit cin... not by cutting off the rest of what you input, but like a limit of what you can write. Its for my rpg game so you can only write 8 letters for a name, then it stops input until you erase a few letters and click enter. Any ideas?
Advertisement
std::cin can't do that; you'll have to handle keystrokes yourself. Depending on your platform, you can do this using ncurses, <conio.h>, the Windows API, SDL...

This topic is closed to new replies.

Advertisement