[SDL] How to handle keyboard text input?

Started by
1 comment, last by SeeForever 12 years, 2 months ago
Hello everyone! :)

I have a GUI in a game I'm developing. I have two text input boxes. I can input text into it using SDL_KEYDOWN events but how would I go about translating the modifier keys like shift and caps lock to turn letters into capitals and numbers into symbols? I'm looking for something locale-independent. I can just check for the 'shift' key modifier and then apply it manually to whichever key was pressed but like, I would do '!' for '1', but not everyone is using an U.S. keyboard layout.

Does SDL have something built-in for this? If not, is there a cross-platform library for it? Or am I stuck calling OS-specific functions?

Thanks in advance!
Advertisement
have you seen this? :)

http://lazyfoo.net/SDL_tutorials/lesson23/index.php
Hey I've followed the LazyFoo tutorials before! How come I missed this one? Thanks a lot Jakez, that's exactly what I was looking for! biggrin.png

This topic is closed to new replies.

Advertisement