mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-04 17:35:06 +01:00
26 lines
499 B
C++
26 lines
499 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "key_map.h"
|
|
#include <map>
|
|
|
|
namespace KeyMap {
|
|
|
|
static std::map<HostDeviceKey, HID_User::PadState> key_map;
|
|
static int next_device_id = 0;
|
|
|
|
int NewDeviceId() {
|
|
return next_device_id++;
|
|
}
|
|
|
|
void SetKeyMapping(HostDeviceKey key, HID_User::PadState padState) {
|
|
key_map[key].hex = padState.hex;
|
|
}
|
|
|
|
HID_User::PadState GetPadKey(HostDeviceKey key) {
|
|
return key_map[key];
|
|
}
|
|
|
|
}
|