本文整理汇总了C++中KeyMap::isMapValid方法的典型用法代码示例。如果您正苦于以下问题:C++ KeyMap::isMapValid方法的具体用法?C++ KeyMap::isMapValid怎么用?C++ KeyMap::isMapValid使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类KeyMap
的用法示例。
在下文中一共展示了KeyMap::isMapValid方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: mapMouse
Penjin::ERRORS KeyMapper::mapMouse(CRuchar id)
{
Penjin::ERRORS result = PENJIN_OK;
string device = "Mouse";
vector<string> keyList = getKeys(device);
for(uint i = 0; i < keyList.size(); ++i)
{
KeyMap* t = NULL;
if(keyList.at(i).find("Button") != keyList.at(i).npos)
{
t = new KeyMapMouseButton(Penjin::StringUtility::stringToInt(getValue(device,keyList.at(i))), keyList.at(i), id);
}
else
{
t = new KeyMapMouseAxis(Penjin::StringUtility::stringToInt(getValue(device,keyList.at(i))), keyList.at(i), id);
}
if(t == NULL)
result = PENJIN_ERROR;
else if(t->isMapValid())
{
keys.push_back(t);
}
else
{
ErrorMan::getInstance()->print(PENJIN_ERROR, "KeyMapper::mapMouse(): ");
delete t;
result = PENJIN_ERROR; // We have to show that something went wrong with the config
}
}
return result;
}