本文整理汇总了C++中addon::Joystick::ToStruct方法的典型用法代码示例。如果您正苦于以下问题:C++ Joystick::ToStruct方法的具体用法?C++ Joystick::ToStruct怎么用?C++ Joystick::ToStruct使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类addon::Joystick
的用法示例。
在下文中一共展示了Joystick::ToStruct方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: GetIgnoredPrimitives
bool CPeripheralAddon::GetIgnoredPrimitives(const CPeripheral* device, PrimitiveVector& primitives)
{
if (!m_bProvidesButtonMaps)
return false;
PERIPHERAL_ERROR retVal;
ADDON::Joystick joystickInfo;
GetJoystickInfo(device, joystickInfo);
JOYSTICK_INFO joystickStruct;
joystickInfo.ToStruct(joystickStruct);
unsigned int primitiveCount = 0;
JOYSTICK_DRIVER_PRIMITIVE* pPrimitives = nullptr;
LogError(retVal = m_pStruct->GetIgnoredPrimitives(&joystickStruct, &primitiveCount,
&pPrimitives), "GetIgnoredPrimitives()");
if (retVal == PERIPHERAL_NO_ERROR)
{
for (unsigned int i = 0; i < primitiveCount; i++)
primitives.emplace_back(pPrimitives[i]);
m_pStruct->FreePrimitives(primitiveCount, pPrimitives);
return true;
}
return false;
}
示例2: MapFeature
bool CPeripheralAddon::MapFeature(const CPeripheral* device,
const std::string& strControllerId,
const ADDON::JoystickFeature& feature)
{
if (!m_bProvidesButtonMaps)
return false;
PERIPHERAL_ERROR retVal;
ADDON::Joystick joystickInfo;
GetJoystickInfo(device, joystickInfo);
JOYSTICK_INFO joystickStruct;
joystickInfo.ToStruct(joystickStruct);
JOYSTICK_FEATURE addonFeature;
feature.ToStruct(addonFeature);
try { LogError(retVal = m_pStruct->MapFeatures(&joystickStruct, strControllerId.c_str(),
1, &addonFeature), "MapFeatures()"); }
catch (std::exception &e) { LogException(e, "MapFeatures()"); return false; }
if (retVal == PERIPHERAL_NO_ERROR)
{
// Notify observing button maps
RefreshButtonMaps(device->DeviceName());
}
return retVal == PERIPHERAL_NO_ERROR;
}
示例3: SetIgnoredPrimitives
bool CPeripheralAddon::SetIgnoredPrimitives(const CPeripheral* device, const PrimitiveVector& primitives)
{
if (!m_bProvidesButtonMaps)
return false;
PERIPHERAL_ERROR retVal;
ADDON::Joystick joystickInfo;
GetJoystickInfo(device, joystickInfo);
JOYSTICK_INFO joystickStruct;
joystickInfo.ToStruct(joystickStruct);
JOYSTICK_DRIVER_PRIMITIVE* addonPrimitives = nullptr;
ADDON::DriverPrimitives::ToStructs(primitives, &addonPrimitives);
try
{
LogError(retVal = m_pStruct->SetIgnoredPrimitives(&joystickStruct,
primitives.size(), addonPrimitives), "SetIgnoredPrimitives()");
}
catch (std::exception &e)
{
LogException(e, "SetIgnoredPrimitives()"); return false;
}
ADDON::DriverPrimitives::FreeStructs(primitives.size(), addonPrimitives);
return retVal == PERIPHERAL_NO_ERROR;
}
示例4: RevertButtonMap
void CPeripheralAddon::RevertButtonMap(const CPeripheral* device)
{
if (!m_bProvidesButtonMaps)
return;
ADDON::Joystick joystickInfo;
GetJoystickInfo(device, joystickInfo);
JOYSTICK_INFO joystickStruct;
joystickInfo.ToStruct(joystickStruct);
m_pStruct->RevertButtonMap(&joystickStruct);
}
示例5: SaveButtonMap
void CPeripheralAddon::SaveButtonMap(const CPeripheral* device)
{
if (!m_bProvidesButtonMaps)
return;
ADDON::Joystick joystickInfo;
GetJoystickInfo(device, joystickInfo);
JOYSTICK_INFO joystickStruct;
joystickInfo.ToStruct(joystickStruct);
try { m_pStruct->SaveButtonMap(&joystickStruct); }
catch (std::exception &e) { LogException(e, "SaveMap()"); return; }
}
示例6: ResetButtonMap
void CPeripheralAddon::ResetButtonMap(const CPeripheral* device, const std::string& strControllerId)
{
if (!m_bProvidesButtonMaps)
return;
ADDON::Joystick joystickInfo;
GetJoystickInfo(device, joystickInfo);
JOYSTICK_INFO joystickStruct;
joystickInfo.ToStruct(joystickStruct);
m_pStruct->ResetButtonMap(&joystickStruct, strControllerId.c_str());
// Notify observing button maps
RefreshButtonMaps(device->DeviceName());
}
示例7: SaveButtonMap
void CPeripheralAddon::SaveButtonMap(const CPeripheral* device)
{
if (!m_bProvidesButtonMaps)
return;
ADDON::Joystick joystickInfo;
GetJoystickInfo(device, joystickInfo);
JOYSTICK_INFO joystickStruct;
joystickInfo.ToStruct(joystickStruct);
m_pStruct->SaveButtonMap(&joystickStruct);
// Notify observing button maps
RefreshButtonMaps(device->DeviceName());
}
示例8: MapFeature
bool CPeripheralAddon::MapFeature(const CPeripheral* device,
const std::string& strControllerId,
const ADDON::JoystickFeature& feature)
{
if (!m_bProvidesButtonMaps)
return false;
PERIPHERAL_ERROR retVal;
ADDON::Joystick joystickInfo;
GetJoystickInfo(device, joystickInfo);
JOYSTICK_INFO joystickStruct;
joystickInfo.ToStruct(joystickStruct);
JOYSTICK_FEATURE addonFeature;
feature.ToStruct(addonFeature);
LogError(retVal = m_pStruct->MapFeatures(&joystickStruct, strControllerId.c_str(),
1, &addonFeature), "MapFeatures()");
return retVal == PERIPHERAL_NO_ERROR;
}
示例9: GetFeatures
bool CPeripheralAddon::GetFeatures(const CPeripheral* device,
const std::string& strControllerId,
FeatureMap& features)
{
if (!m_bProvidesButtonMaps)
return false;
PERIPHERAL_ERROR retVal;
ADDON::Joystick joystickInfo;
GetJoystickInfo(device, joystickInfo);
JOYSTICK_INFO joystickStruct;
joystickInfo.ToStruct(joystickStruct);
unsigned int featureCount = 0;
JOYSTICK_FEATURE* pFeatures = NULL;
try { LogError(retVal = m_pStruct->GetFeatures(&joystickStruct, strControllerId.c_str(),
&featureCount, &pFeatures), "GetFeatures()"); }
catch (std::exception &e) { LogException(e, "GetFeatures()"); return false; }
if (retVal == PERIPHERAL_NO_ERROR)
{
for (unsigned int i = 0; i < featureCount; i++)
{
ADDON::JoystickFeature feature(pFeatures[i]);
if (feature.Type() != JOYSTICK_FEATURE_TYPE_UNKNOWN)
features[feature.Name()] = std::move(feature);
}
try { m_pStruct->FreeFeatures(featureCount, pFeatures); }
catch (std::exception &e) { LogException(e, "FreeFeatures()"); }
return true;
}
return false;
}