本文整理汇总了C++中Bone::GetName方法的典型用法代码示例。如果您正苦于以下问题:C++ Bone::GetName方法的具体用法?C++ Bone::GetName怎么用?C++ Bone::GetName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Bone
的用法示例。
在下文中一共展示了Bone::GetName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: build_bone_from_file
/**
* String must be in the form of:
* begin
* (contents)
* end
*/
void Bone::build_bone_from_file(string contents, map<string, Bone *> & mapper){
regex parse("begin([()-.a-zA-Z0-9\n\r\t ]*?)end");
smatch sm;
while (std::regex_search (contents,sm,parse)) {
for(int i = 1; i < sm.size(); i+=2){
string check = sm[i];
//OutputDebugString(check.c_str());
Bone * bonez = build_node_from_file(check);
mapper[bonez->GetName()] = bonez;
}
contents = sm.suffix().str();
}
}
示例2: XmlLoadBone
void CGrModelXp::XmlLoadBone(CXmlDocument *xml, IXMLDOMNode *topNode)
{
Bone bone;
// Attributes to load: index, name, transform, parent
CComPtr<IXMLDOMNamedNodeMap> attributes;
topNode->get_attributes(&attributes);
GetXmlAttribute(attributes, L"index", bone.mIndex);
wstring name;
GetXmlAttribute(attributes, L"name", name);
bone.SetName(name.c_str());
bone.mParent = -1;
GetXmlAttribute(attributes, L"parent", bone.mParent);
GetXmlAttribute(attributes, L"transform", bone.mTransform);
mBonesByName[bone.GetName()] = (int)mBones.size();
mBones.push_back(bone);
}