fceugx/source/filebrowser.h

75 lines
1.7 KiB
C
Raw Normal View History

2008-09-02 03:57:21 +02:00
/****************************************************************************
2009-07-22 04:05:49 +02:00
* FCE Ultra
2008-09-02 03:57:21 +02:00
* Nintendo Wii/Gamecube Port
*
2009-03-28 18:23:08 +01:00
* Tantric 2008-2009
2008-09-02 03:57:21 +02:00
*
2009-03-28 18:23:08 +01:00
* filebrowser.h
2008-09-02 03:57:21 +02:00
*
* Generic file routines - reading, writing, browsing
****************************************************************************/
2009-03-28 18:23:08 +01:00
#ifndef _FILEBROWSER_H_
#define _FILEBROWSER_H_
2008-09-02 03:57:21 +02:00
#include <unistd.h>
2008-09-02 03:57:21 +02:00
#define MAXJOLIET 255
2010-06-23 19:22:46 +02:00
#ifdef HW_DOL
#define MAX_BROWSER_SIZE 1000
#else
#define MAX_BROWSER_SIZE 3000
#endif
2008-09-02 03:57:21 +02:00
typedef struct
{
2011-03-20 18:16:07 +01:00
char dir[MAXPATHLEN + 1]; // 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
2009-10-02 00:21:25 +02:00
int size; // # of entries browerList has space allocated to store
} BROWSERINFO;
typedef struct
{
2009-10-03 20:43:48 +02:00
size_t length; // file length
int isdir; // 0 - file, 1 - directory
char filename[MAXJOLIET + 1]; // full filename
char displayname[MAXJOLIET + 1]; // name for browser display
2009-10-03 21:44:33 +02:00
int filenum; // file # (for 7z support)
2009-10-02 00:21:25 +02:00
int icon; // icon to display
} BROWSERENTRY;
extern BROWSERINFO browser;
extern BROWSERENTRY * browserList;
2009-10-02 00:21:25 +02:00
enum
{
ICON_NONE,
ICON_FOLDER,
ICON_SD,
ICON_USB,
ICON_DVD,
ICON_SMB
};
extern char romFilename[];
extern bool loadingFile;
2008-09-02 03:57:21 +02:00
2009-10-02 00:21:25 +02:00
bool MakeFilePath(char filepath[], int type, char * filename = NULL, int filenum = -2);
int UpdateDirName();
2009-03-28 18:23:08 +01:00
int OpenGameList();
2008-09-02 03:57:21 +02:00
int autoLoadMethod();
int autoSaveMethod(bool silent);
2008-09-02 03:57:21 +02:00
int FileSortCallback(const void *f1, const void *f2);
void StripExt(char* returnstring, char * inputstring);
2009-03-28 18:23:08 +01:00
bool IsSz();
void ResetBrowser();
2009-10-02 00:21:25 +02:00
bool AddBrowserEntry();
bool IsDeviceRoot(char * path);
int BrowserLoadSz();
int BrowserChangeFolder();
int BrowserLoadFile();
2008-09-02 03:57:21 +02:00
#endif