// This code contains NVIDIA Confidential Information and is disclosed to you // under a form of NVIDIA software license agreement provided separately to you. // // Notice // NVIDIA Corporation and its licensors retain all intellectual property and // proprietary rights in and to this software and related documentation and // any modifications thereto. Any use, reproduction, disclosure, or // distribution of this software and related documentation without an express // license agreement from NVIDIA Corporation is strictly prohibited. // // ALL NVIDIA DESIGN SPECIFICATIONS, CODE ARE PROVIDED "AS IS.". NVIDIA MAKES // NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO // THE MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, // MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. // // Information and code furnished is believed to be accurate and reliable. // However, NVIDIA Corporation assumes no responsibility for the consequences of use of such // information or for any infringement of patents or other rights of third parties that may // result from its use. No license is granted by implication or otherwise under any patent // or patent rights of NVIDIA Corporation. Details are subject to change without notice. // This code supersedes and replaces all information previously supplied. // NVIDIA Corporation products are not authorized for use as critical // components in life support devices or systems without express written approval of // NVIDIA Corporation. // // Copyright (c) 2008-2017 NVIDIA Corporation. All rights reserved. // Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved. // Copyright (c) 2001-2004 NovodeX AG. All rights reserved. #ifndef PX_PHYSICS_COMMON_PRIORITYQUEUE #define PX_PHYSICS_COMMON_PRIORITYQUEUE #include "PsBasicTemplates.h" #include "CmPhysXCommon.h" #include "PsAllocator.h" #include "foundation/PxMemory.h" namespace physx { namespace Cm { template > class PriorityQueueBase : protected Comparator // inherit so that stateless comparators take no space { public: PriorityQueueBase(const Comparator& less, Element* elements) : Comparator(less), mHeapSize(0), mDataPtr(elements) { } ~PriorityQueueBase() { } //! Get the element with the highest priority PX_FORCE_INLINE const Element top() const { return mDataPtr[0]; } //! Get the element with the highest priority PX_FORCE_INLINE Element top() { return mDataPtr[0]; } //! Check to whether the priority queue is empty PX_FORCE_INLINE bool empty() const { return (mHeapSize == 0); } //! Empty the priority queue PX_FORCE_INLINE void clear() { mHeapSize = 0; } //! Insert a new element into the priority queue. Only valid when size() is less than Capacity PX_FORCE_INLINE void push(const Element& value) { PxU32 newIndex; PxU32 parentIndex = parent(mHeapSize); for (newIndex = mHeapSize; newIndex > 0 && compare(value, mDataPtr[parentIndex]); newIndex = parentIndex, parentIndex= parent(newIndex)) { mDataPtr[ newIndex ] = mDataPtr[parentIndex]; } mDataPtr[newIndex] = value; mHeapSize++; PX_ASSERT(valid()); } //! Delete the highest priority element. Only valid when non-empty. PX_FORCE_INLINE Element pop() { PX_ASSERT(mHeapSize > 0); PxU32 i, child; //try to avoid LHS PxU32 tempHs = mHeapSize-1; mHeapSize = tempHs; Element min = mDataPtr[0]; Element last = mDataPtr[tempHs]; for (i = 0; (child = left(i)) < tempHs; i = child) { /* Find highest priority child */ const PxU32 rightChild = child + 1; child += ((rightChild < tempHs) & compare((mDataPtr[rightChild]), (mDataPtr[child]))) ? 1 : 0; if(compare(last, mDataPtr[child])) break; mDataPtr[i] = mDataPtr[child]; } mDataPtr[ i ] = last; PX_ASSERT(valid()); return min; } //! Make sure the priority queue sort all elements correctly bool valid() const { const Element& min = mDataPtr[0]; for(PxU32 i=1; i> 1; } private: PriorityQueueBase& operator = (const PriorityQueueBase); }; template class InlinePriorityQueue : public PriorityQueueBase { Element mData[Capacity]; public: InlinePriorityQueue(const Comparator& less = Comparator()) : PriorityQueueBase(less, mData) { } PX_FORCE_INLINE void push(Element& elem) { PX_ASSERT(this->mHeapSize < Capacity); PriorityQueueBase::push(elem); } private: InlinePriorityQueue& operator = (const InlinePriorityQueue); }; template ::Type> class PriorityQueue : public PriorityQueueBase, protected Alloc { PxU32 mCapacity; public: PriorityQueue(const Comparator& less = Comparator(), PxU32 initialCapacity = 0, Alloc alloc = Alloc()) : PriorityQueueBase(less, NULL), Alloc(alloc), mCapacity(initialCapacity) { if(initialCapacity > 0) this->mDataPtr = reinterpret_cast(Alloc::allocate(sizeof(Element)*initialCapacity, __FILE__, __LINE__)); } ~PriorityQueue() { if(this->mDataPtr) this->deallocate(this->mDataPtr); } PX_FORCE_INLINE void push(Element& elem) { if(this->mHeapSize == mCapacity) { reserve((this->mHeapSize+1)*2); } PriorityQueueBase::push(elem); } PX_FORCE_INLINE PxU32 capacity() { return mCapacity; } PX_FORCE_INLINE void reserve(const PxU32 newCapacity) { if(newCapacity > mCapacity) { Element* newElems = reinterpret_cast(Alloc::allocate(sizeof(Element)*newCapacity, __FILE__, __LINE__)); if(this->mDataPtr) { physx::PxMemCopy(newElems, this->mDataPtr, sizeof(Element) * this->mHeapSize); Alloc::deallocate(this->mDataPtr); } this->mDataPtr = newElems; mCapacity = newCapacity; } } private: PriorityQueue& operator = (const PriorityQueue); }; } } #endif