hctClassHierarchyUtil.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:5k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  3.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  4.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  5.  * 
  6.  */
  7. #ifndef INC_HCT_CLASS_HIERARCHY_UTIL_H
  8. #define INC_HCT_CLASS_HIERARCHY_UTIL_H
  9. #include <string>
  10. #include <vector>
  11. #include <Common/Base/Reflection/Attributes/hkAttributes.h>
  12. class hctClassHierarchyUtil
  13. {
  14. public:
  15. struct ParamGroup
  16. {
  17. public:
  18. struct ClassAndMember
  19. {
  20. std::string          m_memberLabel; // member's label in string form
  21. std::string          m_memberInternalName; // member's internal name in string form
  22. std::string          m_defaultValue; // member's default value in string form
  23. const hkClass*       m_class; // the class the current member sits in
  24. const hkClassMember* m_member; // the member information
  25. int                  m_classMemberIndex; // member's index inside its class
  26. hkBool               m_visible; // member's visibility flag
  27. };
  28. public:
  29. ParamGroup(const char* groupLabel, const char* groupInternalName)
  30. {
  31. m_groupLabel        = groupLabel;
  32. m_groupInternalName = groupInternalName;
  33. m_visuallyEmpty     = false;
  34. }
  35. HK_FORCE_INLINE void addChild(ParamGroup* child)
  36. {
  37. m_subGroups.push_back(child);
  38. }
  39. public:
  40. const char* m_groupLabel;
  41. std::string m_groupInternalName;
  42. hkBool      m_visuallyEmpty;
  43. std::vector<ClassAndMember> m_members;
  44. std::vector<ParamGroup*>    m_subGroups;
  45. };
  46. public:
  47. static const hkUiAttribute*        getUiAttributes       (const hkClassMember& member);
  48. static const hkGizmoAttribute*     getGizmoAttributes    (const hkClassMember& member);
  49. static const hkLinkAttribute*      getLinkAttributes     (const hkClassMember& member);
  50. static const hkSemanticsAttribute* getSemanticsAttributes(const hkClassMember& member);
  51. static const hkArrayTypeAttribute* getArrayTypeAttributes(const hkClassMember& member);
  52. static const char*                 getMemberName         (const hkClassMember& member, const hkUiAttribute* uiAttributes);
  53. static void createDisplayHierarchyFromClass(const hkClass* klass, std::string& groupPathDelimiter, hkReal unitConversionModifier, std::vector<hctClassHierarchyUtil::ParamGroup*>& groupsArrayOut);
  54. static void buildTreeFromClassDescription(const hkClass& klass, const hkClassMember& member, int classMemberIndex, const std::string* namePrefix, const std::string groupPathDelimiter, hkReal unitConversionModifier, std::vector<ParamGroup*>& virtualRecursionStack, std::vector<ParamGroup*>& advancedGroupVirtualRecursionStack);
  55. static void pruneEmptyGroups(std::vector<ParamGroup*>& groupsArray);
  56. static void pruneInvisibleMembers(hkUiAttribute::HideInModeler modelerId, std::vector<ParamGroup*>& groupsArray);
  57. static void pruneMembersByClassType(const char* parentClassName, std::vector<hctClassHierarchyUtil::ParamGroup*>& groupsArray);
  58. static void markVisuallyEmptyGroup(hkUiAttribute::HideInModeler modelerId, std::vector<ParamGroup*>& groupsArray);
  59. static void flattenHierarchy(ParamGroup* group, std::vector<ParamGroup*>& rootLevelArray);
  60. static bool isParentClassOf(const char* parentClassName, const hkClass* klass);
  61. /// This utility function will assert that the supplied string is "more than" C-style compliant, i.e. it will:
  62. /// - remove all non-alpha-numeric characters (by thus shortening the string)
  63. /// - make the first character lowercase
  64. /// - make sure the first character is a letter (and no digit)
  65. static void verifyAlphaNumericString(std::string& inputString);
  66. protected:
  67. static hkString prettifyName(const char* nameIn);
  68. static void     getDefaultValueAsString(const ParamGroup::ClassAndMember& memberData, hkReal unitConversionModifier, std::string& defaultValueStringOut);
  69. static bool     pruneEmptyGroupsRecursively(ParamGroup* group);
  70. static void     pruneInvisibleMembersRecursively(hkUiAttribute::HideInModeler modelerId, ParamGroup* group);
  71. static void     pruneMembersByClassTypeRecursively(const char* parentClassName, hctClassHierarchyUtil::ParamGroup* group);
  72. static void     markVisuallyEmptyGroupRecursively(hkUiAttribute::HideInModeler modelerId, ParamGroup* group);
  73. static void     mergeGroupsOfSameName(std::vector<hctClassHierarchyUtil::ParamGroup*>& groupsArray);
  74. };
  75. #endif // INC_HCT_CLASS_HIERARCHY_UTIL_H
  76. /*
  77. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  78. * Confidential Information of Havok.  (C) Copyright 1999-2009
  79. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  80. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  81. * rights, and intellectual property rights in the Havok software remain in
  82. * Havok and/or its suppliers.
  83. * Use of this software for evaluation purposes is subject to and indicates
  84. * acceptance of the End User licence Agreement for this product. A copy of
  85. * the license is included with this software and is also available at www.havok.com/tryhavok.
  86. */