You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
923 B
C++
39 lines
923 B
C++
#include "quicksavemanager.hpp"
|
|
|
|
MWState::QuickSaveManager::QuickSaveManager(std::string &saveName, unsigned int maxSaves)
|
|
: mSaveName(saveName)
|
|
, mMaxSaves(maxSaves)
|
|
, mSlotsVisited(0)
|
|
, mOldestSlotVisited(nullptr)
|
|
{
|
|
}
|
|
|
|
void MWState::QuickSaveManager::visitSave(const Slot *saveSlot)
|
|
{
|
|
if(mSaveName == saveSlot->mProfile.mDescription)
|
|
{
|
|
++mSlotsVisited;
|
|
if(isOldestSave(saveSlot))
|
|
mOldestSlotVisited = saveSlot;
|
|
}
|
|
}
|
|
|
|
bool MWState::QuickSaveManager::isOldestSave(const Slot *compare)
|
|
{
|
|
if(mOldestSlotVisited == nullptr)
|
|
return true;
|
|
return (compare->mTimeStamp <= mOldestSlotVisited->mTimeStamp);
|
|
}
|
|
|
|
bool MWState::QuickSaveManager::shouldCreateNewSlot()
|
|
{
|
|
return (mSlotsVisited < mMaxSaves);
|
|
}
|
|
|
|
const MWState::Slot *MWState::QuickSaveManager::getNextQuickSaveSlot()
|
|
{
|
|
if(shouldCreateNewSlot())
|
|
return nullptr;
|
|
return mOldestSlotVisited;
|
|
}
|