mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
|
#ifndef ENGINE_SHARED_RINGBUFFER_H
|
|
#define ENGINE_SHARED_RINGBUFFER_H
|
|
|
|
typedef struct RINGBUFFER RINGBUFFER;
|
|
|
|
class CRingBufferBase
|
|
{
|
|
class CItem
|
|
{
|
|
public:
|
|
CItem *m_pPrev;
|
|
CItem *m_pNext;
|
|
int m_Free;
|
|
int m_Size;
|
|
};
|
|
|
|
CItem *m_pProduce;
|
|
CItem *m_pConsume;
|
|
|
|
CItem *m_pFirst;
|
|
CItem *m_pLast;
|
|
|
|
int m_Size;
|
|
int m_Flags;
|
|
|
|
CItem *NextBlock(CItem *pItem);
|
|
CItem *PrevBlock(CItem *pItem);
|
|
CItem *MergeBack(CItem *pItem);
|
|
protected:
|
|
void *Allocate(int Size);
|
|
|
|
void *Prev(void *pCurrent);
|
|
void *Next(void *pCurrent);
|
|
void *First();
|
|
void *Last();
|
|
|
|
void Init(void *pMemory, int Size, int Flags);
|
|
int PopFirst();
|
|
public:
|
|
enum
|
|
{
|
|
// Will start to destroy items to try to fit the next one
|
|
FLAG_RECYCLE=1
|
|
};
|
|
};
|
|
|
|
template<typename T, int TSIZE, int TFLAGS=0>
|
|
class TStaticRingBuffer : public CRingBufferBase
|
|
{
|
|
unsigned char m_aBuffer[TSIZE];
|
|
public:
|
|
TStaticRingBuffer() { Init(); }
|
|
|
|
void Init() { CRingBufferBase::Init(m_aBuffer, TSIZE, TFLAGS); }
|
|
|
|
T *Allocate(int Size) { return (T*)CRingBufferBase::Allocate(Size); }
|
|
int PopFirst() { return CRingBufferBase::PopFirst(); }
|
|
|
|
T *Prev(T *pCurrent) { return (T*)CRingBufferBase::Prev(pCurrent); }
|
|
T *Next(T *pCurrent) { return (T*)CRingBufferBase::Next(pCurrent); }
|
|
T *First() { return (T*)CRingBufferBase::First(); }
|
|
T *Last() { return (T*)CRingBufferBase::Last(); }
|
|
};
|
|
|
|
#endif
|