yuzu-mirror/src/common/key_map.cpp

26 lines
520 B
C++

// Copyright 2014 Citra Emulator Project
2014-12-16 23:38:14 +07:00
// Licensed under GPLv2 or any later version
2014-09-03 20:12:58 +07:00
// 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++;
}
2014-09-03 20:12:58 +07:00
void SetKeyMapping(HostDeviceKey key, HID_User::PadState padState) {
key_map[key].hex = padState.hex;
2014-09-03 20:12:58 +07:00
}
HID_User::PadState GetPadKey(HostDeviceKey key) {
return key_map[key];
2014-09-03 20:12:58 +07:00
}
}