hkpTypedBroadPhaseHandle.inl
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:
其他游戏
开发平台:
Visual C++
- /*
- *
- * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
- * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
- * 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.
- *
- */
- void hkpTypedBroadPhaseHandle::setOwner(void* o)
- {
- hkInt32 offset = hkGetByteOffsetInt(this, o);
- // +127 is 'offset invalid' flag.
- HK_ASSERT2( 0xfe456f34, offset > -128 && offset < 127, "Can't store offset to typed broadphase handle owner (more than 128 bytes difference).");
- m_ownerOffset = static_cast<hkInt8>( offset );
- }
- hkpTypedBroadPhaseHandle::hkpTypedBroadPhaseHandle( int type )
- {
- m_type = static_cast<hkInt8>(type);
- m_collisionFilterInfo = 0;
- m_objectQualityType = HK_COLLIDABLE_QUALITY_INVALID;
- m_ownerOffset = OFFSET_INVALID;
- }
- hkpTypedBroadPhaseHandle::hkpTypedBroadPhaseHandle( void* owner, int type )
- {
- m_type = static_cast<hkInt8>(type);
- m_collisionFilterInfo = 0;
- m_objectQualityType = HK_COLLIDABLE_QUALITY_INVALID;
- setOwner(owner);
- }
- int hkpTypedBroadPhaseHandle::getType() const
- {
- return m_type;
- }
- void hkpTypedBroadPhaseHandle::setType( int type )
- {
- m_type = static_cast<hkInt8>(type);
- }
- void* hkpTypedBroadPhaseHandle::getOwner() const
- {
- HK_ASSERT2( 0xfe456f35, m_ownerOffset != OFFSET_INVALID, "Owner offset for typed broadphase handle incorrect. Did you call setOwner()?" );
- return const_cast<char*>( reinterpret_cast<const char*>(this) + m_ownerOffset );
- }
- hkUint32 hkpTypedBroadPhaseHandle::getCollisionFilterInfo() const
- {
- return m_collisionFilterInfo;
- }
- void hkpTypedBroadPhaseHandle::setCollisionFilterInfo( hkUint32 info )
- {
- m_collisionFilterInfo = info;
- }
- /*
- * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
- *
- * Confidential Information of Havok. (C) Copyright 1999-2009
- * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
- * Logo, and the Havok buzzsaw logo are trademarks of Havok. Title, ownership
- * rights, and intellectual property rights in the Havok software remain in
- * Havok and/or its suppliers.
- *
- * Use of this software for evaluation purposes is subject to and indicates
- * acceptance of the End User licence Agreement for this product. A copy of
- * the license is included with this software and is also available at www.havok.com/tryhavok.
- *
- */