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

31 lines
676 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 {
ControllerBase::ControllerBase() = default;
2018-10-06 05:14:42 +02:00
ControllerBase::~ControllerBase() = default;
2018-10-05 16:23:21 +02:00
void ControllerBase::ActivateController() {
if (is_activated) {
OnRelease();
}
is_activated = true;
OnInit();
}
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