2011-07-22 21:17:16 +00:00
|
|
|
/* (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_FILECOLLECTION_H
|
|
|
|
#define ENGINE_SHARED_FILECOLLECTION_H
|
|
|
|
|
|
|
|
class CFileCollection
|
|
|
|
{
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
MAX_ENTRIES=1000,
|
|
|
|
TIMESTAMP_LENGTH=20, // _YYYY-MM-DD_HH-MM-SS
|
|
|
|
};
|
|
|
|
|
|
|
|
int64 m_aTimestamps[MAX_ENTRIES];
|
|
|
|
int m_NumTimestamps;
|
|
|
|
int m_MaxEntries;
|
|
|
|
char m_aFileDesc[128];
|
|
|
|
int m_FileDescLength;
|
|
|
|
char m_aFileExt[32];
|
|
|
|
int m_FileExtLength;
|
|
|
|
char m_aPath[512];
|
|
|
|
IStorage *m_pStorage;
|
2015-08-22 15:21:00 +00:00
|
|
|
int64 m_Remove; // Timestamp we want to remove
|
2011-07-22 21:17:16 +00:00
|
|
|
|
|
|
|
bool IsFilenameValid(const char *pFilename);
|
|
|
|
int64 ExtractTimestamp(const char *pTimestring);
|
|
|
|
void BuildTimestring(int64 Timestamp, char *pTimestring);
|
2015-08-22 15:21:00 +00:00
|
|
|
int64 GetTimestamp(const char *pFilename);
|
2011-07-22 21:17:16 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
void Init(IStorage *pStorage, const char *pPath, const char *pFileDesc, const char *pFileExt, int MaxEntries);
|
|
|
|
void AddEntry(int64 Timestamp);
|
|
|
|
|
|
|
|
static int FilelistCallback(const char *pFilename, int IsDir, int StorageType, void *pUser);
|
2015-08-22 15:21:00 +00:00
|
|
|
static int RemoveCallback(const char *pFilename, int IsDir, int StorageType, void *pUser);
|
2011-07-22 21:17:16 +00:00
|
|
|
};
|
|
|
|
|
2011-07-30 16:29:40 +00:00
|
|
|
#endif
|