void CPeripheralAddon::GetJoystickInfo(const CPeripheral* device, ADDON::Joystick& joystickInfo) { GetPeripheralInfo(device, joystickInfo); if (device->Type() == PERIPHERAL_JOYSTICK) { const CPeripheralJoystick* joystick = static_cast<const CPeripheralJoystick*>(device); joystickInfo.SetProvider(joystick->Provider()); joystickInfo.SetButtonCount(joystick->ButtonCount()); joystickInfo.SetHatCount(joystick->HatCount()); joystickInfo.SetAxisCount(joystick->AxisCount()); joystickInfo.SetMotorCount(joystick->MotorCount()); joystickInfo.SetSupportsPowerOff(joystick->SupportsPowerOff()); } else if (device->Type() == PERIPHERAL_JOYSTICK_EMULATION) { const CPeripheralJoystickEmulation* joystick = static_cast<const CPeripheralJoystickEmulation*>(device); joystickInfo.SetName(JOYSTICK_EMULATION_BUTTON_MAP_NAME); // Override name with non-localized version joystickInfo.SetProvider(JOYSTICK_EMULATION_PROVIDER); joystickInfo.SetIndex(joystick->ControllerNumber()); } }
void CPeripheralAddon::GetJoystickInfo(const CPeripheral* device, ADDON::Joystick& joystickInfo) { GetPeripheralInfo(device, joystickInfo); if (device->Type() == PERIPHERAL_JOYSTICK) { const CPeripheralJoystick* joystick = static_cast<const CPeripheralJoystick*>(device); joystickInfo.SetProvider(joystick->Provider()); joystickInfo.SetButtonCount(joystick->ButtonCount()); joystickInfo.SetHatCount(joystick->HatCount()); joystickInfo.SetAxisCount(joystick->AxisCount()); joystickInfo.SetMotorCount(joystick->MotorCount()); joystickInfo.SetSupportsPowerOff(joystick->SupportsPowerOff()); } }