ready made key mapper?

Started by
1 comment, last by Postie 11 years, 5 months ago
hi guys long time no see (back to programing after YEARS)

before i make one of my own (and after googleing it) i wanted to ask if code for a key mapper exists out there.
i meen the player side prefrence key map that lets to say what key dose what action.

need it for mouse and joysticks too...

if any1 knows of one rolling around out there i would save me a ice amount of time if not... any tips on how to make one?
Advertisement
really nothing?
not even a "stop looking its not out there"?
For my current project (in C#) I created an enumerated type that represents the actions you can perform. Then to map a key I simply use a Dictionary with a Keys parameter as the lookup key. When a key is pressed I lookup the KeyAction and fire an appropriate event. In my case I don't handle joysticks/gamepads or remapping of the mouse though.
[size="2"]Currently working on an open world survival RPG - For info check out my Development blog:[size="2"] ByteWrangler

This topic is closed to new replies.

Advertisement