melonDS/src/FIFO.h

115 lines
2.2 KiB
C
Raw Normal View History

2017-01-17 00:58:25 +00:00
/*
2020-02-14 19:18:08 +00:00
Copyright 2016-2020 Arisotura
2017-01-17 00:58:25 +00:00
This file is part of melonDS.
melonDS is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
melonDS is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with melonDS. If not, see http://www.gnu.org/licenses/.
*/
#ifndef FIFO_H
#define FIFO_H
#include "types.h"
template<typename T>
2017-01-17 00:58:25 +00:00
class FIFO
{
public:
FIFO(u32 num)
{
NumEntries = num;
Entries = new T[num];
Clear();
}
2017-01-17 00:58:25 +00:00
~FIFO()
{
delete[] Entries;
}
2017-01-17 00:58:25 +00:00
void Clear()
{
NumOccupied = 0;
ReadPos = 0;
WritePos = 0;
memset(&Entries[ReadPos], 0, sizeof(T));
}
2018-10-18 00:31:01 +00:00
void DoSavestate(Savestate* file)
2018-09-15 01:29:36 +00:00
{
file->Var32(&NumOccupied);
file->Var32(&ReadPos);
file->Var32(&WritePos);
file->VarArray(Entries, sizeof(T)*NumEntries);
}
void Write(T val)
{
if (IsFull()) return;
Entries[WritePos] = val;
WritePos++;
if (WritePos >= NumEntries)
WritePos = 0;
NumOccupied++;
}
T Read()
{
T ret = Entries[ReadPos];
if (IsEmpty())
return ret;
ReadPos++;
if (ReadPos >= NumEntries)
ReadPos = 0;
NumOccupied--;
return ret;
}
T Peek()
{
return Entries[ReadPos];
}
2017-01-17 00:58:25 +00:00
T Peek(u32 offset)
{
u32 pos = ReadPos + offset;
if (pos >= NumEntries)
pos -= NumEntries;
return Entries[pos];
}
2017-01-17 00:58:25 +00:00
u32 Level() { return NumOccupied; }
bool IsEmpty() { return NumOccupied == 0; }
bool IsFull() { return NumOccupied >= NumEntries; }
bool CanFit(u32 num) { return ((NumOccupied + num) <= NumEntries); }
2017-01-17 00:58:25 +00:00
private:
u32 NumEntries;
T* Entries;
2017-01-17 00:58:25 +00:00
u32 NumOccupied;
u32 ReadPos, WritePos;
};
#endif