Which code module should map physical keys to abstract keys?
- by Paul Manta
How do you bridge the gap between the library's low-level event system and your engine's high-level event system? (I'm not necessarily talking about key events, but also about quit events.)
At the top level of my event system, I send out KeyPressedEvents, KeyRelesedEvents and others of this kind. These high-level events only contain the abstract values of the keys (they don't say that Space way pressed, but that the JumpKey was pressed, for example).
Whose responsibility should it be to map the "JumpKey" to an actual key on the keyboard?