snes9xgx/source/filebrowser.h

81 lines
1.9 KiB
C
Raw Normal View History

/****************************************************************************
2010-01-27 23:20:37 +01:00
* Snes9x Nintendo Wii/Gamecube Port
*
* softdev July 2006
* crunchy2 May 2007
* Michniewski 2008
2010-01-27 23:20:37 +01:00
* Tantric 2008-2010
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
****************************************************************************/
2009-03-28 20:03:35 +01:00
#ifndef _FILEBROWSER_H_
#define _FILEBROWSER_H_
#include <unistd.h>
#include <gccore.h>
#include <snes9xgx.h>
2008-08-14 00:44:59 +02:00
#define MAXJOLIET 255
#ifdef HW_DOL
#define MAX_BROWSER_SIZE 1000
#else
2010-07-24 00:40:20 +02:00
#define MAX_BROWSER_SIZE 5000
#endif
2008-08-14 00:44:59 +02:00
typedef struct
{
2011-03-20 18:17:51 +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:35:12 +02:00
int size; // # of entries browerList has space allocated to store
} BROWSERINFO;
typedef struct
{
2009-10-03 20:44:09 +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:46:57 +02:00
int filenum; // file # (for 7z support)
2009-10-02 00:35:12 +02:00
int icon; // icon to display
} BROWSERENTRY;
extern BROWSERINFO browser;
extern BROWSERENTRY * browserList;
2009-10-02 00:35:12 +02:00
enum
{
ICON_NONE,
ICON_FOLDER,
ICON_SD,
ICON_USB,
ICON_DVD,
ICON_SMB
};
extern unsigned long SNESROMSize;
extern bool loadingFile;
extern char szname[MAXPATHLEN];
extern bool inSz;
2008-08-12 05:25:16 +02:00
2009-10-02 00:35:12 +02:00
bool MakeFilePath(char filepath[], int type, char * filename = NULL, int filenum = -2);
int UpdateDirName();
2009-03-11 18:28:37 +01:00
int OpenGameList();
int autoLoadMethod();
int autoSaveMethod(bool silent);
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();
void ResetBrowser();
2009-10-02 00:35:12 +02:00
bool AddBrowserEntry();
bool IsDeviceRoot(char * path);
int BrowserLoadSz();
int BrowserChangeFolder();
int BrowserLoadFile();
#endif