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

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * 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.
  6.  * 
  7.  */
  8. #ifndef HKSCENEDATA_HKX_ATTRIBUTE_HOLDER_H
  9. #define HKSCENEDATA_HKX_ATTRIBUTE_HOLDER_H
  10. struct hkxAttributeHolder
  11. {
  12. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_SCENE_DATA, hkxAttributeHolder );
  13. HK_DECLARE_REFLECTION();
  14. /// Attributes associated with this node.
  15. /// You can use hkxAttribute::findObjectByName and related methods
  16. /// to search the array for a given attribute
  17. /// They are organized by groups, each group with a string type identifier
  18. struct hkxAttributeGroup* m_attributeGroups;
  19. int m_numAttributeGroups;
  20. /// Looks for an attribute group by name 
  21. const hkxAttributeGroup* findAttributeGroupByName (const char* name) const;
  22. /// Search an array of attributes for one by name, and optionally
  23. /// check the type of that attribute to make sure it matches the 
  24. /// given class. If no attribute matches by name (and by class if given)
  25. /// it will return HK_NULL.
  26. /// Will search all groups;
  27. void* findAttributeObjectByName( const char* name, const hkClass* type = HK_NULL ) const;
  28. /// Search the attributes for one by name and return the variant  
  29. /// of that attribute. Will return HK_NULL if not found.
  30. /// Will search all groups;
  31. const hkVariant* findAttributeVariantByName( const char* name ) const;
  32. };
  33. #endif // HKSCENEDATA_HKX_ATTRIBUTE_HOLDER_H
  34. /*
  35. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  36. * Confidential Information of Havok.  (C) Copyright 1999-2009
  37. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  38. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  39. * rights, and intellectual property rights in the Havok software remain in
  40. * Havok and/or its suppliers.
  41. * Use of this software for evaluation purposes is subject to and indicates
  42. * acceptance of the End User licence Agreement for this product. A copy of
  43. * the license is included with this software and is also available at www.havok.com/tryhavok.
  44. */