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

其他游戏

开发平台:

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. inline hkxVertexDescription::hkxVertexDescription()
  9. : m_stride(0)
  10. {
  11. }
  12. inline hkUint32 hkxVertexDescription::getUsageCount( DataUsage dt ) const
  13. {
  14. int numDecl = 0;
  15. for (int di=0; di < m_decls.getSize(); ++di)
  16. {
  17. if (m_decls[di].m_usage == dt)
  18. {
  19. ++numDecl;
  20. }
  21. }
  22. return numDecl;
  23. }
  24. inline hkxVertexDescription::ElementDecl* hkxVertexDescription::getElementDeclByIndex( int index )
  25. {
  26. if ((index >= 0) && (index < m_decls.getSize()) )
  27. {
  28. return &m_decls[index];
  29. }
  30. return HK_NULL;
  31. }
  32. inline hkxVertexDescription::ElementDecl* hkxVertexDescription::getElementDecl( DataUsage usage, int index )
  33. {
  34. int numDecl = 0;
  35. for (int di=0; di < m_decls.getSize(); ++di)
  36. {
  37. if (m_decls[di].m_usage == usage)
  38. {
  39. if (numDecl == index)
  40. {
  41. return &m_decls[di];
  42. }
  43. else
  44. {
  45. ++numDecl;
  46. }
  47. }
  48. }
  49. return HK_NULL;
  50. }
  51. inline const hkxVertexDescription::ElementDecl* hkxVertexDescription::getElementDeclByIndex( int index ) const
  52. {
  53. return const_cast<hkxVertexDescription*>( this )->getElementDeclByIndex( index );
  54. }
  55. inline const hkxVertexDescription::ElementDecl* hkxVertexDescription::getElementDecl( DataUsage usage, int index ) const
  56. {
  57. return const_cast<hkxVertexDescription*>( this )->getElementDecl( usage, index );
  58. }
  59. inline hkUint32 hkxVertexDescription::getMask() const
  60. {
  61. hkUint32 ret = 0;
  62. for (int di=0; di < m_decls.getSize(); ++di)
  63. {
  64. ret |= m_decls[di].m_usage;
  65. }
  66. return ret;
  67. }
  68. inline hkUint32 hkxVertexDescription::getElementByteOffset( DataUsage usage, int index ) const
  69. {
  70. const hkxVertexDescription::ElementDecl* decl = getElementDecl( usage, index );
  71. HK_ASSERT2(0x3245364, decl, "Non existant element");
  72. return decl->m_byteOffset;
  73. }
  74. inline hkxVertexDescription::DataType hkxVertexDescription::getElementType( DataUsage usage, int index ) const
  75. {
  76. const hkxVertexDescription::ElementDecl* decl = getElementDecl( usage, index );
  77. HK_ASSERT2(0x3245364, decl, "Non existant element");
  78. return decl->m_type;
  79. }
  80. /*
  81. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  82. * Confidential Information of Havok.  (C) Copyright 1999-2009
  83. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  84. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  85. * rights, and intellectual property rights in the Havok software remain in
  86. * Havok and/or its suppliers.
  87. * Use of this software for evaluation purposes is subject to and indicates
  88. * acceptance of the End User licence Agreement for this product. A copy of
  89. * the license is included with this software and is also available at www.havok.com/tryhavok.
  90. */