1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
#ifndef APE_ROLLBUFFER_H
#define APE_ROLLBUFFER_H
template <class TYPE> class CRollBuffer
{
public:
CRollBuffer()
{
m_pData = NULL;
m_pCurrent = NULL;
}
~CRollBuffer()
{
SAFE_ARRAY_DELETE(m_pData);
}
int Create(int nWindowElements, int nHistoryElements)
{
SAFE_ARRAY_DELETE(m_pData)
m_nWindowElements = nWindowElements;
m_nHistoryElements = nHistoryElements;
m_pData = new TYPE[m_nWindowElements + m_nHistoryElements];
if (m_pData == NULL)
return ERROR_INSUFFICIENT_MEMORY;
Flush();
return 0;
}
void Flush()
{
ZeroMemory(m_pData, (m_nHistoryElements + 1) * sizeof(TYPE));
m_pCurrent = &m_pData[m_nHistoryElements];
}
void Roll()
{
memcpy(&m_pData[0], &m_pCurrent[-m_nHistoryElements], m_nHistoryElements * sizeof(TYPE));
m_pCurrent = &m_pData[m_nHistoryElements];
}
__inline void IncrementSafe()
{
m_pCurrent++;
if (m_pCurrent == &m_pData[m_nWindowElements + m_nHistoryElements])
Roll();
}
__inline void IncrementFast()
{
m_pCurrent++;
}
__inline TYPE & operator[](const int nIndex) const
{
return m_pCurrent[nIndex];
}
protected:
TYPE * m_pData;
TYPE * m_pCurrent;
int m_nHistoryElements;
int m_nWindowElements;
};
template <class TYPE, int WINDOW_ELEMENTS, int HISTORY_ELEMENTS> class CRollBufferFast
{
public:
CRollBufferFast()
{
m_pData = new TYPE[WINDOW_ELEMENTS + HISTORY_ELEMENTS];
Flush();
}
~CRollBufferFast()
{
SAFE_ARRAY_DELETE(m_pData);
}
void Flush()
{
ZeroMemory(m_pData, (HISTORY_ELEMENTS + 1) * sizeof(TYPE));
m_pCurrent = &m_pData[HISTORY_ELEMENTS];
}
void Roll()
{
memcpy(&m_pData[0], &m_pCurrent[-HISTORY_ELEMENTS], HISTORY_ELEMENTS * sizeof(TYPE));
m_pCurrent = &m_pData[HISTORY_ELEMENTS];
}
__inline void IncrementSafe()
{
m_pCurrent++;
if (m_pCurrent == &m_pData[WINDOW_ELEMENTS + HISTORY_ELEMENTS])
Roll();
}
__inline void IncrementFast()
{
m_pCurrent++;
}
__inline TYPE & operator[](const int nIndex) const
{
return m_pCurrent[nIndex];
}
protected:
TYPE * m_pData;
TYPE * m_pCurrent;
};
#endif // #ifndef APE_ROLLBUFFER_H
|