yuzu/src/core/hle/service/hid/controllers/controller_base.cpp

31 lines
705 B
C++
Raw Normal View History

2018-10-05 16:23:21 +02:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/service/hid/controllers/controller_base.h"
namespace Service::HID {
2019-09-22 08:41:34 +02:00
ControllerBase::ControllerBase(Core::System& system) : system(system){};
2018-10-06 05:14:42 +02:00
ControllerBase::~ControllerBase() = default;
2019-09-22 08:41:34 +02:00
void ControllerBase::ActivateController() {
2018-10-05 16:23:21 +02:00
if (is_activated) {
OnRelease();
}
is_activated = true;
2019-09-22 08:41:34 +02:00
OnInit();
2018-10-05 16:23:21 +02:00
}
void ControllerBase::DeactivateController() {
if (is_activated) {
OnRelease();
}
is_activated = false;
}
bool ControllerBase::IsControllerActivated() const {
return is_activated;
}
2018-10-06 05:14:42 +02:00
} // namespace Service::HID