2010-09-25 08:54:27 +02:00
|
|
|
/****************************************************************************
|
2010-12-18 14:20:45 +01:00
|
|
|
* Copyright (C) 2010
|
|
|
|
* by Dimok
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty. In no event will the authors be held liable for any
|
|
|
|
* damages arising from the use of this software.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any
|
|
|
|
* purpose, including commercial applications, and to alter it and
|
|
|
|
* redistribute it freely, subject to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
|
|
* must not claim that you wrote the original software. If you use
|
|
|
|
* this software in a product, an acknowledgment in the product
|
|
|
|
* documentation would be appreciated but is not required.
|
|
|
|
*
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
|
|
* must not be misrepresented as being the original software.
|
|
|
|
*
|
|
|
|
* 3. This notice may not be removed or altered from any source
|
|
|
|
* distribution.
|
|
|
|
*
|
2010-09-25 08:54:27 +02:00
|
|
|
* DirList Class
|
2010-12-18 14:20:45 +01:00
|
|
|
* for WiiXplorer 2010
|
2010-09-25 08:54:27 +02:00
|
|
|
***************************************************************************/
|
|
|
|
#ifndef ___DIRLIST_H_
|
|
|
|
#define ___DIRLIST_H_
|
|
|
|
|
2010-12-18 14:20:45 +01:00
|
|
|
#include <vector>
|
2010-09-25 08:54:27 +02:00
|
|
|
#include <gctypes.h>
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2010-12-18 14:20:45 +01:00
|
|
|
char * FilePath;
|
|
|
|
u64 FileSize;
|
|
|
|
bool isDir;
|
2010-09-25 08:54:27 +02:00
|
|
|
} FileInfos;
|
|
|
|
|
|
|
|
class DirList
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//!Constructor
|
|
|
|
//!\param path Path from where to load the filelist of all files
|
|
|
|
//!\param filter A fileext that needs to be filtered
|
2010-12-18 14:20:45 +01:00
|
|
|
//!\param flags search/filter flags from the enum
|
|
|
|
DirList(const char * path, const char *filter = NULL, u32 flags = Files | Dirs);
|
2010-09-25 08:54:27 +02:00
|
|
|
//!Destructor
|
|
|
|
~DirList();
|
|
|
|
//! Load all the files from a directory
|
2010-12-18 14:20:45 +01:00
|
|
|
bool LoadPath(const char * path, const char *filter = NULL, u32 flags = Files | Dirs);
|
2010-09-25 08:54:27 +02:00
|
|
|
//! Get a filename of the list
|
|
|
|
//!\param list index
|
2010-12-18 14:20:45 +01:00
|
|
|
const char * GetFilename(int index);
|
2010-09-25 08:54:27 +02:00
|
|
|
//! Get the a filepath of the list
|
|
|
|
//!\param list index
|
2010-12-18 14:20:45 +01:00
|
|
|
const char * GetFilepath(int index) { if(!valid(index)) return NULL; return FileInfo[index].FilePath; };
|
2010-09-25 08:54:27 +02:00
|
|
|
//! Get the a filesize of the list
|
|
|
|
//!\param list index
|
2010-12-18 14:20:45 +01:00
|
|
|
u64 GetFilesize(int index) { if(!valid(index)) return 0; return FileInfo[index].FileSize; };
|
2010-09-25 08:54:27 +02:00
|
|
|
//! Is index a dir or a file
|
|
|
|
//!\param list index
|
2010-12-18 14:20:45 +01:00
|
|
|
bool IsDir(int index) { if(!valid(index)) return 0; return FileInfo[index].isDir; };
|
2010-09-25 08:54:27 +02:00
|
|
|
//! Get the filecount of the whole list
|
2010-12-18 14:20:45 +01:00
|
|
|
int GetFilecount() { return FileInfo.size(); };
|
2010-09-25 08:54:27 +02:00
|
|
|
//! Sort list by filepath
|
|
|
|
void SortList();
|
|
|
|
//! Get the index of the specified filename
|
|
|
|
int GetFileIndex(const char *filename);
|
2010-12-18 14:20:45 +01:00
|
|
|
//! Enum for search/filter flags
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Files = 0x01,
|
|
|
|
Dirs = 0x02,
|
|
|
|
CheckSubfolders = 0x08,
|
|
|
|
};
|
2010-09-25 08:54:27 +02:00
|
|
|
protected:
|
|
|
|
//!Add a list entrie
|
2010-12-18 14:20:45 +01:00
|
|
|
void AddEntrie(const char * folderpath, const char * filename, u64 filesize, bool isDir);
|
2010-09-25 08:54:27 +02:00
|
|
|
//! Clear the list
|
|
|
|
void ClearList();
|
2010-12-18 14:20:45 +01:00
|
|
|
//! Check if valid pos is requested
|
|
|
|
inline bool valid(int pos) { return (pos >= 0 && pos < (int) FileInfo.size()); };
|
2010-09-25 08:54:27 +02:00
|
|
|
|
2010-12-18 14:20:45 +01:00
|
|
|
std::vector<FileInfos> FileInfo;
|
2010-09-25 08:54:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|