Bullet 2.85 update
[Torque-3d.git] / Engine / lib / bullet / src / LinearMath / btPoolAllocator.h
blobefdeda8ffc4af9b0d2468fd9854914eb5ee0fb06
1 /*
2 Copyright (c) 2003-2006 Gino van den Bergen / Erwin Coumans http://continuousphysics.com/Bullet/
4 This software is provided 'as-is', without any express or implied warranty.
5 In no event will the authors be held liable for any damages arising from the use of this software.
6 Permission is granted to anyone to use this software for any purpose,
7 including commercial applications, and to alter it and redistribute it freely,
8 subject to the following restrictions:
10 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
11 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
12 3. This notice may not be removed or altered from any source distribution.
16 #ifndef _BT_POOL_ALLOCATOR_H
17 #define _BT_POOL_ALLOCATOR_H
19 #include "btScalar.h"
20 #include "btAlignedAllocator.h"
21 #include "btThreads.h"
23 ///The btPoolAllocator class allows to efficiently allocate a large pool of objects, instead of dynamically allocating them separately.
24 class btPoolAllocator
26 int m_elemSize;
27 int m_maxElements;
28 int m_freeCount;
29 void* m_firstFree;
30 unsigned char* m_pool;
31 btSpinMutex m_mutex; // only used if BT_THREADSAFE
33 public:
35 btPoolAllocator(int elemSize, int maxElements)
36 :m_elemSize(elemSize),
37 m_maxElements(maxElements)
39 m_pool = (unsigned char*) btAlignedAlloc( static_cast<unsigned int>(m_elemSize*m_maxElements),16);
41 unsigned char* p = m_pool;
42 m_firstFree = p;
43 m_freeCount = m_maxElements;
44 int count = m_maxElements;
45 while (--count) {
46 *(void**)p = (p + m_elemSize);
47 p += m_elemSize;
49 *(void**)p = 0;
52 ~btPoolAllocator()
54 btAlignedFree( m_pool);
57 int getFreeCount() const
59 return m_freeCount;
62 int getUsedCount() const
64 return m_maxElements - m_freeCount;
67 int getMaxCount() const
69 return m_maxElements;
72 void* allocate(int size)
74 // release mode fix
75 (void)size;
76 btMutexLock(&m_mutex);
77 btAssert(!size || size<=m_elemSize);
78 //btAssert(m_freeCount>0); // should return null if all full
79 void* result = m_firstFree;
80 if (NULL != m_firstFree)
82 m_firstFree = *(void**)m_firstFree;
83 --m_freeCount;
85 btMutexUnlock(&m_mutex);
86 return result;
89 bool validPtr(void* ptr)
91 if (ptr) {
92 if (((unsigned char*)ptr >= m_pool && (unsigned char*)ptr < m_pool + m_maxElements * m_elemSize))
94 return true;
97 return false;
100 void freeMemory(void* ptr)
102 if (ptr) {
103 btAssert((unsigned char*)ptr >= m_pool && (unsigned char*)ptr < m_pool + m_maxElements * m_elemSize);
105 btMutexLock(&m_mutex);
106 *(void**)ptr = m_firstFree;
107 m_firstFree = ptr;
108 ++m_freeCount;
109 btMutexUnlock(&m_mutex);
113 int getElementSize() const
115 return m_elemSize;
118 unsigned char* getPoolAddress()
120 return m_pool;
123 const unsigned char* getPoolAddress() const
125 return m_pool;
130 #endif //_BT_POOL_ALLOCATOR_H