mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-04-26 04:45:18 -06:00
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#include "BackendEmulated.h"
|
|
|
|
#include "Dimensions.h"
|
|
#include "Infinity.h"
|
|
#include "Skylander.h"
|
|
#include "config/CemuConfig.h"
|
|
|
|
namespace nsyshid::backend::emulated
|
|
{
|
|
BackendEmulated::BackendEmulated()
|
|
{
|
|
cemuLog_logDebug(LogType::Force, "nsyshid::BackendEmulated: emulated backend initialised");
|
|
}
|
|
|
|
BackendEmulated::~BackendEmulated() = default;
|
|
|
|
bool BackendEmulated::IsInitialisedOk()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void BackendEmulated::AttachVisibleDevices()
|
|
{
|
|
if (GetConfig().emulated_usb_devices.emulate_skylander_portal && !FindDeviceById(0x1430, 0x0150))
|
|
{
|
|
cemuLog_logDebug(LogType::Force, "Attaching Emulated Portal");
|
|
// Add Skylander Portal
|
|
auto device = std::make_shared<SkylanderPortalDevice>();
|
|
AttachDevice(device);
|
|
}
|
|
if (GetConfig().emulated_usb_devices.emulate_infinity_base && !FindDeviceById(0x0E6F, 0x0129))
|
|
{
|
|
cemuLog_logDebug(LogType::Force, "Attaching Emulated Base");
|
|
// Add Infinity Base
|
|
auto device = std::make_shared<InfinityBaseDevice>();
|
|
AttachDevice(device);
|
|
}
|
|
if (GetConfig().emulated_usb_devices.emulate_dimensions_toypad && !FindDeviceById(0x0E6F, 0x0241))
|
|
{
|
|
cemuLog_logDebug(LogType::Force, "Attaching Emulated Toypad");
|
|
// Add Dimensions Toypad
|
|
auto device = std::make_shared<DimensionsToypadDevice>();
|
|
AttachDevice(device);
|
|
}
|
|
}
|
|
} // namespace nsyshid::backend::emulated
|