2014-09-08 21:46:02 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 21:38:14 -08:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-03 18:12:58 -07:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "key_map.h"
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
namespace KeyMap {
|
|
|
|
|
2015-01-18 15:07:48 -08:00
|
|
|
static std::map<HostDeviceKey, Service::HID::PadState> key_map;
|
2014-09-08 21:46:02 -07:00
|
|
|
static int next_device_id = 0;
|
|
|
|
|
|
|
|
int NewDeviceId() {
|
|
|
|
return next_device_id++;
|
|
|
|
}
|
2014-09-03 18:12:58 -07:00
|
|
|
|
2015-01-18 15:07:48 -08:00
|
|
|
void SetKeyMapping(HostDeviceKey key, Service::HID::PadState padState) {
|
2014-09-08 21:46:02 -07:00
|
|
|
key_map[key].hex = padState.hex;
|
2014-09-03 18:12:58 -07:00
|
|
|
}
|
|
|
|
|
2015-01-18 15:07:48 -08:00
|
|
|
Service::HID::PadState GetPadKey(HostDeviceKey key) {
|
2014-09-08 21:46:02 -07:00
|
|
|
return key_map[key];
|
2014-09-03 18:12:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|