|
VoltAir
|
Represents a scheme mapping keyboard input to output actions. More...
Public Member Functions | |
| KeyScheme () | |
| Constructs an empty KeyScheme. More... | |
| KeyScheme (const typename InputScheme< KeyCode >::Map &scheme) | |
Constructs a KeyScheme from the specified scheme. More... | |
| virtual bool | handlesControllerEvent (const ControllerEvent *event) const override |
Returns whether or not this KeyScheme would handle event. More... | |
Public Member Functions inherited from InputScheme< KeyCode > | |
| InputScheme () | |
| Constructs an empty input scheme. More... | |
| InputScheme (const Map &scheme) | |
| Constructs an InputScheme from the specified input to action map. More... | |
| bool | empty () const |
| Returns whether or not the InputScheme contains any mappings. More... | |
| Map::const_iterator | begin () const |
| Returns a const iterator positioned at the beginning of the InputScheme. More... | |
| Map::const_iterator | end () const |
| Returns a const iterator positioned at the end of the InputScheme. More... | |
| bool | hasActionFor (const KeyCode &input) const |
Returns whether or not this input scheme has an action associated with the specified input. More... | |
| bool | intersects (const InputScheme< KeyCode > &inputScheme) const |
Returns whether or not inputScheme intersects with this InputScheme. More... | |
Additional Inherited Members | |
Public Types inherited from InputScheme< KeyCode > | |
| typedef int | Action |
| Output type. More... | |
| typedef std::map< KeyCode, Action > | Map |
| Input "event" to Action output map. More... | |
Represents a scheme mapping keyboard input to output actions.
|
inline |
Constructs an empty KeyScheme.
|
inlineexplicit |
Constructs a KeyScheme from the specified scheme.
| scheme | InputScheme mapping KeyCodes to actions |
|
inlineoverridevirtual |
Returns whether or not this KeyScheme would handle event.
| event | ControllerEvent to check against the KeyScheme inputs |
Implements InputScheme< KeyCode >.