vbagx/source/ngc/filebrowser.h

61 lines
1.6 KiB
C
Raw Normal View History

2009-04-07 04:49:56 +02:00
/****************************************************************************
* Visual Boy Advance GX
*
* Tantric September 2008
*
2009-04-08 09:08:12 +02:00
* filebrowser.h
2009-04-07 04:49:56 +02:00
*
* Generic file routines - reading, writing, browsing
****************************************************************************/
2009-04-08 09:08:12 +02:00
#ifndef _FILEBROWSER_H_
#define _FILEBROWSER_H_
2009-04-07 04:49:56 +02:00
#include <unistd.h>
2009-04-08 09:08:12 +02:00
#include <gccore.h>
2009-04-07 04:49:56 +02:00
#define MAXJOLIET 255
2009-04-08 09:08:12 +02:00
#define MAXDISPLAY 35
2009-04-07 04:49:56 +02:00
typedef struct
{
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-04-08 09:08:12 +02:00
time_t mtime; // file modified time
2009-04-07 04:49:56 +02: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;
extern char rootdir[10];
2009-04-08 09:08:12 +02:00
extern char ROMFilename[512];
extern bool ROMLoaded;
2009-04-07 04:49:56 +02:00
extern char szpath[MAXPATHLEN];
extern bool inSz;
2009-04-08 09:08:12 +02:00
bool MakeFilePath(char filepath[], int type, int method, char * filename = NULL, int filenum = -1);
int UpdateDirName(int method);
int OpenGameList();
2009-04-07 04:49:56 +02:00
int autoLoadMethod();
int autoSaveMethod(bool silent);
int FileSortCallback(const void *f1, const void *f2);
void StripExt(char* returnstring, char * inputstring);
void ShortenFilename(char* returnstring, char * inputstring);
2009-04-08 09:08:12 +02:00
bool IsSz();
2009-04-07 04:49:56 +02:00
void ResetBrowser();
2009-04-08 09:08:12 +02:00
int BrowserLoadSz(int method);
int BrowserChangeFolder(int method);
int BrowserLoadFile(int method);
2009-04-07 04:49:56 +02:00
#endif