I make games for use in education.

If the user's locale code starts with 'en', there's no problem - they have easy access to keycodes 0 to 127. If anything else needs to be inputted - I'd better give them a button to make it easier.

On the other hand, a french user wouldn't need an 'é' button. But they would want a ñ, and a ü, were the answer to require it.

It seems like what I need is a list of what keycodes are 'natural' to major languages. Is such a list available anywhere?

link|improve this question
It's unclear what you are asking. If the user is required to enter ordinary text, allow them to enter any character they wish. If they need to use certain characters for game functions, allow the user to assign keys to the functions. – Robert Harvey May 6 at 6:10
feedback

closed as not a real question by Robert Harvey May 6 at 6:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

Whatever “locale” means here (it could mean a variety of things), you cannot infer keyboard properties from it. You could study some typical keyboard layouts and make guesses, but would it really be useful? It does not hurt the user much to see a button for “é” on screen even if the keyboard has a key for it.

It is reasonably safe to assume that the basic Latin letters A to Z, digits 0 to 1, and some basic punctuation like period, comma, and hyphen and a few other characters like “+” can be typed in directly. Anything else is uncertain. If you plan to have buttons for characters it would probably be simplest to have a general mechanism, a small onscreen keyboard as part of the application. Depending on the situation, it could be visible all the time or to be opened via a button.

It then becomes relevant what characters may appear in the strings. If they are basically words in languages spoken in Western Europe, it normally suffices to have ISO Latin 1 letters plus a few additions. They are probably best placed in an alphabetic order, so you would have buttons for á, à, â, å, ä, ã, ç, ð, é etc.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.