2018-09-19 16:21:46 -07:00
|
|
|
/*
|
2019-04-07 19:00:49 -07:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-19 16:21:46 -07: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 12:40:53 -07:00
|
|
|
|
2018-09-19 16:21:46 -07:00
|
|
|
#include <switch.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "ldr_content_management.hpp"
|
|
|
|
#include "ldr_hid.hpp"
|
|
|
|
|
2019-03-15 21:28:38 -07:00
|
|
|
Result HidManagement::GetKeysHeld(u64 *keys) {
|
2019-03-28 21:36:08 -07:00
|
|
|
if (!ContentManagement::HasCreatedTitle(TitleId_Hid)) {
|
2019-03-15 18:34:55 -07:00
|
|
|
return MAKERESULT(Module_Libnx, LibnxError_InitFail_HID);
|
|
|
|
}
|
2019-04-22 12:40:53 -07:00
|
|
|
|
|
|
|
if (!serviceIsActive(hidGetSessionService())) {
|
|
|
|
Result rc;
|
|
|
|
DoWithSmSession([&]() {
|
|
|
|
rc = hidInitialize();
|
|
|
|
});
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
return MAKERESULT(Module_Libnx, LibnxError_InitFail_HID);
|
|
|
|
}
|
2018-09-19 16:21:46 -07:00
|
|
|
}
|
2019-04-22 12:40:53 -07:00
|
|
|
|
2018-09-19 16:21:46 -07:00
|
|
|
hidScanInput();
|
2019-03-15 19:51:00 -07:00
|
|
|
*keys = hidKeysHeld(CONTROLLER_P1_AUTO);
|
2019-04-22 12:40:53 -07:00
|
|
|
|
2019-03-28 22:39:39 -07:00
|
|
|
return ResultSuccess;
|
2019-03-15 19:51:00 -07:00
|
|
|
}
|