2018-09-20 00:21:46 +01:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-20 00:21:46 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-04-22 20:40:53 +01:00
|
|
|
|
2018-09-20 00:21:46 +01:00
|
|
|
#include <switch.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "ldr_content_management.hpp"
|
|
|
|
#include "ldr_hid.hpp"
|
|
|
|
|
2019-03-16 04:28:38 +00:00
|
|
|
Result HidManagement::GetKeysHeld(u64 *keys) {
|
2019-03-29 04:36:08 +00:00
|
|
|
if (!ContentManagement::HasCreatedTitle(TitleId_Hid)) {
|
2019-03-16 01:34:55 +00:00
|
|
|
return MAKERESULT(Module_Libnx, LibnxError_InitFail_HID);
|
|
|
|
}
|
2019-04-22 20:40:53 +01:00
|
|
|
|
|
|
|
if (!serviceIsActive(hidGetSessionService())) {
|
|
|
|
Result rc;
|
|
|
|
DoWithSmSession([&]() {
|
|
|
|
rc = hidInitialize();
|
|
|
|
});
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
return MAKERESULT(Module_Libnx, LibnxError_InitFail_HID);
|
|
|
|
}
|
2018-09-20 00:21:46 +01:00
|
|
|
}
|
2019-04-22 20:40:53 +01:00
|
|
|
|
2018-09-20 00:21:46 +01:00
|
|
|
hidScanInput();
|
2019-03-16 02:51:00 +00:00
|
|
|
*keys = hidKeysHeld(CONTROLLER_P1_AUTO);
|
2019-04-22 20:40:53 +01:00
|
|
|
|
2019-03-29 05:39:39 +00:00
|
|
|
return ResultSuccess;
|
2019-03-16 02:51:00 +00:00
|
|
|
}
|