2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007
|
2008-09-26 06:34:33 +02:00
|
|
|
* Michniewski 2008
|
2009-03-11 18:28:37 +01:00
|
|
|
* Tantric 2008-2009
|
2008-08-14 00:44:59 +02:00
|
|
|
*
|
2009-03-28 20:03:35 +01:00
|
|
|
* filebrowser.h
|
2008-08-14 00:44:59 +02:00
|
|
|
*
|
|
|
|
* Generic file routines - reading, writing, browsing
|
2008-08-06 03:09:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2009-03-28 20:03:35 +01:00
|
|
|
#ifndef _FILEBROWSER_H_
|
|
|
|
#define _FILEBROWSER_H_
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-09-26 06:34:33 +02:00
|
|
|
#include <unistd.h>
|
2008-12-24 09:02:04 +01:00
|
|
|
#include <gccore.h>
|
2008-09-26 06:34:33 +02:00
|
|
|
|
2008-08-14 00:44:59 +02:00
|
|
|
#define MAXJOLIET 255
|
2009-03-11 18:28:37 +01:00
|
|
|
#define MAXDISPLAY 35
|
2008-08-14 00:44:59 +02:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2008-12-30 01:08:17 +01:00
|
|
|
char dir[MAXPATHLEN]; // directory path of browserList
|
|
|
|
int numEntries; // # of entries in browserList
|
|
|
|
int selIndex; // currently selected index of browserList
|
|
|
|
int pageIndex; // starting index of browserList page display
|
|
|
|
} BROWSERINFO;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
u64 offset; // DVD offset
|
|
|
|
unsigned int length; // file length
|
2009-03-26 07:49:50 +01:00
|
|
|
time_t mtime; // file modified time
|
2008-12-30 01:08:17 +01:00
|
|
|
char isdir; // 0 - file, 1 - directory
|
|
|
|
char filename[MAXJOLIET + 1]; // full filename
|
|
|
|
char displayname[MAXDISPLAY + 1]; // name for browser display
|
|
|
|
} BROWSERENTRY;
|
|
|
|
|
|
|
|
extern BROWSERINFO browser;
|
|
|
|
extern BROWSERENTRY * browserList;
|
2008-12-18 19:36:30 +01:00
|
|
|
extern char rootdir[10];
|
2008-12-30 01:08:17 +01:00
|
|
|
|
2008-10-10 00:36:22 +02:00
|
|
|
extern unsigned long SNESROMSize;
|
2008-08-12 05:25:16 +02:00
|
|
|
|
2009-03-16 07:58:50 +01:00
|
|
|
bool MakeFilePath(char filepath[], int type, int method, char * filename = NULL, int filenum = -1);
|
2009-03-11 18:28:37 +01:00
|
|
|
int UpdateDirName(int method);
|
|
|
|
int OpenGameList();
|
2008-08-07 05:25:02 +02:00
|
|
|
int autoLoadMethod();
|
2008-12-22 10:20:35 +01:00
|
|
|
int autoSaveMethod(bool silent);
|
2008-08-10 05:14:39 +02:00
|
|
|
int FileSortCallback(const void *f1, const void *f2);
|
2008-08-14 00:44:59 +02:00
|
|
|
void StripExt(char* returnstring, char * inputstring);
|
2009-03-11 18:28:37 +01:00
|
|
|
bool IsSz();
|
2008-12-30 01:08:17 +01:00
|
|
|
void ResetBrowser();
|
2009-03-11 18:28:37 +01:00
|
|
|
int BrowserLoadSz(int method);
|
|
|
|
int BrowserChangeFolder(int method);
|
|
|
|
int BrowserLoadFile(int method);
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|