vbagx/source/ngc/filebrowser.cpp

527 lines
14 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.cpp
2009-04-07 04:49:56 +02:00
*
* Generic file routines - reading, writing, browsing
***************************************************************************/
#include <gccore.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wiiuse/wpad.h>
#include <sys/dir.h>
#include <malloc.h>
#ifdef HW_RVL
extern "C" {
#include <di/di.h>
}
#endif
#include "vba.h"
2009-04-08 09:08:12 +02:00
#include "dvd.h"
2009-04-07 04:49:56 +02:00
#include "vbasupport.h"
#include "vmmem.h"
2009-04-08 09:08:12 +02:00
#include "filebrowser.h"
#include "menu.h"
2009-04-07 04:49:56 +02:00
#include "video.h"
2009-04-08 09:08:12 +02:00
#include "networkop.h"
2009-04-07 04:49:56 +02:00
#include "fileop.h"
#include "memcardop.h"
#include "input.h"
#include "gcunzip.h"
#include "wiiusbsupport.h"
BROWSERINFO browser;
BROWSERENTRY * browserList = NULL; // list of files/folders in browser
char rootdir[10];
char szpath[MAXPATHLEN];
bool inSz = false;
char ROMFilename[512];
bool ROMLoaded = false;
/****************************************************************************
* autoLoadMethod()
* Auto-determines and sets the load method
* Returns method set
****************************************************************************/
int autoLoadMethod()
{
ShowAction ("Attempting to determine load method...");
2009-04-08 09:08:12 +02:00
int method = METHOD_AUTO;
2009-04-07 04:49:56 +02:00
if(ChangeInterface(METHOD_SD, SILENT))
method = METHOD_SD;
else if(ChangeInterface(METHOD_USB, SILENT))
method = METHOD_USB;
else if(ChangeInterface(METHOD_DVD, SILENT))
method = METHOD_DVD;
else if(ChangeInterface(METHOD_SMB, SILENT))
method = METHOD_SMB;
else
2009-04-08 09:08:12 +02:00
ErrorPrompt("Unable to auto-determine load method!");
2009-04-07 04:49:56 +02:00
if(GCSettings.LoadMethod == METHOD_AUTO)
GCSettings.LoadMethod = method; // save method found for later use
2009-04-08 09:08:12 +02:00
CancelAction();
2009-04-07 04:49:56 +02:00
return method;
}
/****************************************************************************
* autoSaveMethod()
* Auto-determines and sets the save method
* Returns method set
****************************************************************************/
int autoSaveMethod(bool silent)
{
if(!silent)
ShowAction ("Attempting to determine save method...");
2009-04-08 09:08:12 +02:00
int method = METHOD_AUTO;
2009-04-07 04:49:56 +02:00
if(ChangeInterface(METHOD_SD, SILENT))
method = METHOD_SD;
else if(ChangeInterface(METHOD_USB, SILENT))
method = METHOD_USB;
2009-04-08 09:08:12 +02:00
else if(ChangeInterface(METHOD_MC_SLOTA, SILENT))
2009-04-07 04:49:56 +02:00
method = METHOD_MC_SLOTA;
2009-04-08 09:08:12 +02:00
else if(ChangeInterface(METHOD_MC_SLOTB, SILENT))
2009-04-07 04:49:56 +02:00
method = METHOD_MC_SLOTB;
else if(ChangeInterface(METHOD_SMB, SILENT))
method = METHOD_SMB;
else if(!silent)
2009-04-08 09:08:12 +02:00
ErrorPrompt("Unable to auto-determine save method!");
2009-04-07 04:49:56 +02:00
if(GCSettings.SaveMethod == METHOD_AUTO)
GCSettings.SaveMethod = method; // save method found for later use
2009-04-08 09:08:12 +02:00
CancelAction();
2009-04-07 04:49:56 +02:00
return method;
}
/****************************************************************************
* ResetBrowser()
* Clears the file browser memory, and allocates one initial entry
***************************************************************************/
void ResetBrowser()
{
2009-04-08 09:08:12 +02:00
browser.numEntries = 0;
browser.selIndex = 0;
browser.pageIndex = 0;
2009-04-07 04:49:56 +02:00
// Clear any existing values
if(browserList != NULL)
{
free(browserList);
browserList = NULL;
}
// set aside space for 1 entry
2009-04-08 09:08:12 +02:00
browserList = (BROWSERENTRY *)malloc(sizeof(BROWSERENTRY));
2009-04-07 04:49:56 +02:00
memset(browserList, 0, sizeof(BROWSERENTRY));
}
/****************************************************************************
* UpdateDirName()
* Update curent directory name for file browser
***************************************************************************/
int UpdateDirName(int method)
{
int size=0;
char * test;
char temp[1024];
// update DVD directory
if(method == METHOD_DVD)
SetDVDdirectory(browserList[browser.selIndex].offset, browserList[browser.selIndex].length);
/* current directory doesn't change */
if (strcmp(browserList[browser.selIndex].filename,".") == 0)
{
return 0;
}
/* go up to parent directory */
else if (strcmp(browserList[browser.selIndex].filename,"..") == 0)
{
/* determine last subdirectory namelength */
sprintf(temp,"%s",browser.dir);
test = strtok(temp,"/");
while (test != NULL)
{
size = strlen(test);
test = strtok(NULL,"/");
}
/* remove last subdirectory name */
size = strlen(browser.dir) - size - 1;
browser.dir[size] = 0;
return 1;
}
/* Open a directory */
else
{
/* test new directory namelength */
if ((strlen(browser.dir)+1+strlen(browserList[browser.selIndex].filename)) < MAXPATHLEN)
{
/* update current directory name */
sprintf(browser.dir, "%s/%s",browser.dir, browserList[browser.selIndex].filename);
return 1;
}
else
{
2009-04-08 09:08:12 +02:00
ErrorPrompt("Directory name is too long!");
2009-04-07 04:49:56 +02:00
return -1;
}
}
}
2009-04-08 09:08:12 +02:00
bool MakeFilePath(char filepath[], int type, int method, char * filename, int filenum)
2009-04-07 04:49:56 +02:00
{
char file[512];
char folder[1024];
2009-04-08 09:08:12 +02:00
char ext[4];
2009-04-07 04:49:56 +02:00
char temppath[MAXPATHLEN];
if(type == FILE_ROM)
{
// Check path length
if ((strlen(browser.dir)+1+strlen(browserList[browser.selIndex].filename)) >= MAXPATHLEN)
{
2009-04-08 09:08:12 +02:00
ErrorPrompt("Maximum filepath length reached!");
2009-04-07 04:49:56 +02:00
filepath[0] = 0;
return false;
}
else
{
sprintf(temppath, "%s/%s",browser.dir,browserList[browser.selIndex].filename);
}
}
else
{
switch(type)
{
case FILE_SRAM:
case FILE_SNAPSHOT:
sprintf(folder, GCSettings.SaveFolder);
2009-04-08 09:08:12 +02:00
if(type == FILE_SRAM) sprintf(ext, "sav");
else sprintf(ext, "sgm");
if(filenum >= -1)
2009-04-08 09:08:12 +02:00
{
if(method == METHOD_MC_SLOTA || method == METHOD_MC_SLOTB)
{
filename[26] = 0; // truncate filename
sprintf(file, "%s%i.%s", filename, filenum, ext);
}
else
{
if(filenum == -1)
sprintf(file, "%s.%s", filename, ext);
else if(filenum == 0)
2009-04-08 09:08:12 +02:00
sprintf(file, "%s Auto.%s", filename, ext);
else
sprintf(file, "%s %i.%s", filename, filenum, ext);
}
}
else
{
sprintf(file, "%s", filename);
}
2009-04-07 04:49:56 +02:00
break;
case FILE_CHEAT:
sprintf(folder, GCSettings.CheatFolder);
sprintf(file, "%s.cht", ROMFilename);
break;
case FILE_PREF:
sprintf(folder, appPath);
sprintf(file, "%s", PREF_FILE_NAME);
break;
}
switch(method)
{
case METHOD_MC_SLOTA:
case METHOD_MC_SLOTB:
sprintf (temppath, "%s", file);
temppath[31] = 0; // truncate filename
break;
default:
sprintf (temppath, "%s/%s", folder, file);
break;
}
}
2009-04-08 09:08:12 +02:00
strncpy(filepath, temppath, MAXPATHLEN);
2009-04-07 04:49:56 +02:00
return true;
}
/****************************************************************************
* FileSortCallback
*
* Quick sort callback to sort file entries with the following order:
* .
* ..
* <dirs>
* <files>
***************************************************************************/
int FileSortCallback(const void *f1, const void *f2)
{
/* Special case for implicit directories */
if(((BROWSERENTRY *)f1)->filename[0] == '.' || ((BROWSERENTRY *)f2)->filename[0] == '.')
{
if(strcmp(((BROWSERENTRY *)f1)->filename, ".") == 0) { return -1; }
if(strcmp(((BROWSERENTRY *)f2)->filename, ".") == 0) { return 1; }
if(strcmp(((BROWSERENTRY *)f1)->filename, "..") == 0) { return -1; }
if(strcmp(((BROWSERENTRY *)f2)->filename, "..") == 0) { return 1; }
}
/* If one is a file and one is a directory the directory is first. */
if(((BROWSERENTRY *)f1)->isdir && !(((BROWSERENTRY *)f2)->isdir)) return -1;
if(!(((BROWSERENTRY *)f1)->isdir) && ((BROWSERENTRY *)f2)->isdir) return 1;
return stricmp(((BROWSERENTRY *)f1)->filename, ((BROWSERENTRY *)f2)->filename);
}
/****************************************************************************
* IsSz
*
* Checks if the specified file is a 7z
***************************************************************************/
bool IsSz()
{
if (strlen(browserList[browser.selIndex].filename) > 4)
{
char * p = strrchr(browserList[browser.selIndex].filename, '.');
if (p != NULL)
if(stricmp(p, ".7z") == 0)
return true;
}
return false;
}
/****************************************************************************
* StripExt
*
* Strips an extension from a filename
***************************************************************************/
void StripExt(char* returnstring, char * inputstring)
{
char* loc_dot;
2009-04-08 09:08:12 +02:00
strncpy (returnstring, inputstring, 255);
if(inputstring == NULL || strlen(inputstring) < 4)
return;
2009-04-07 04:49:56 +02:00
loc_dot = strrchr(returnstring,'.');
if (loc_dot != NULL)
2009-04-08 09:08:12 +02:00
*loc_dot = 0; // strip file extension
2009-04-07 04:49:56 +02:00
}
// Shorten a ROM filename by removing the extension, URLs, id numbers and other rubbish
void ShortenFilename(char * returnstring, char * inputstring)
{
if (!inputstring) {
returnstring[0] = '\0';
return;
}
// skip URLs in brackets
char * dotcom = (char *) strstr(inputstring, ".com)");
char * url = NULL;
if (dotcom) {
url = (char *) strchr(inputstring, '(');
if (url >= dotcom) {
url = NULL;
dotcom = NULL;
} else dotcom+= 5; // point to after ')'
}
// skip URLs not in brackets
if (!dotcom) {
dotcom = (char *) strstr(inputstring, ".com");
url = NULL;
if (dotcom) {
url = (char *) strstr(inputstring, "www");
if (url >= dotcom) {
url = NULL;
dotcom = NULL;
} else dotcom+= 4; // point to after ')'
}
}
// skip file extension
char * loc_dot = (char *)strrchr(inputstring,'.');
char * s = (char *)inputstring;
char * r = (char *)returnstring;
// skip initial whitespace, numbers, - and _ ...
while ((*s!='\0' && *s<=' ') || *s=='-' || *s=='_' || *s=='+') s++;
// ... except those that SHOULD begin with numbers
if (strncmp(s,"3D",2)==0) for (int i=0; i<2; i++, r++, s++) *r=*s;
if (strncmp(s,"1st",3)==0 || strncmp(s,"2nd",3)==0 || strncmp(s,"3rd",3)==0 || strncmp(s,"4th",3)==0) for (int i=0; i<3; i++, r++, s++) *r=*s;
if (strncmp(s,"199",3)==0 || strncmp(s,"007",3)==0 || strncmp(s,"4x4",3)==0 || strncmp(s,"720",3)==0 || strncmp(s,"10 ",3)==0) for (int i=0; i<3; i++, r++, s++) *r=*s;
if (strncmp(s,"102 ",4)==0 || strncmp(s,"1942",4)==0 || strncmp(s,"3 Ch",4)==0) for (int i=0; i<4; i++, r++, s++) *r=*s;
if (strncmp(s,"2 in 1",6)==0 || strncmp(s,"3 in 1",6)==0 || strncmp(s,"4 in 1",6)==0) for (int i=0; i<6; i++, r++, s++) *r=*s;
if (strncmp(s,"2-in-1",6)==0 || strncmp(s,"3-in-1",6)==0 || strncmp(s,"4-in-1",6)==0) for (int i=0; i<6; i++, r++, s++) *r=*s;
while (*s>='0' && *s<='9') s++;
if (r==(char *)returnstring) while ((*s!='\0' && *s<=' ') || *s=='-' || *s=='_' || *s=='+') s++;
// now go through rest of string until we get to the end or the extension
while (*s!='\0' && (loc_dot==NULL || s<loc_dot)) {
// skip url
if (s==url) s=dotcom;
// skip whitespace, numbers, - and _ after url
if (s==dotcom) {
while ((*s>'\0' && *s<=' ') || *s=='-' || *s=='_') s++;
while (*s>='0' && *s<='9') s++;
while ((*s>'\0' && *s<=' ') || *s=='-' || *s=='_') s++;
}
// skip all but 1 '-', '_' or space in a row
char c = s[0];
if (c==s[1] && (c=='-' || c=='_' || c==' ')) s++;
// skip space before hyphen
if (*s==' ' && s[1]=='-') s++;
// copy character to result
if (*s=='_') *r=' ';
else *r = *s;
// skip spaces after hyphen
if (*s=='-') while (s[1]==' ') s++;
s++; r++;
}
*r = '\0';
// if the result is too short, abandon what we did and just strip the ext instead
if (strlen(returnstring) <= 4) StripExt(returnstring, inputstring);
}
2009-04-07 04:49:56 +02:00
/****************************************************************************
2009-04-08 09:08:12 +02:00
* BrowserLoadSz
2009-04-07 04:49:56 +02:00
*
2009-04-08 09:08:12 +02:00
* Opens the selected 7z file, and parses a listing of the files within
2009-04-07 04:49:56 +02:00
***************************************************************************/
2009-04-08 09:08:12 +02:00
int BrowserLoadSz(int method)
2009-04-07 04:49:56 +02:00
{
2009-04-08 09:08:12 +02:00
char filepath[MAXPATHLEN];
memset(filepath, 0, MAXPATHLEN);
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
// we'll store the 7z filepath for extraction later
if(!MakeFilePath(szpath, FILE_ROM, method))
return 0;
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
// add device to filepath
if(method != METHOD_DVD)
{
sprintf(filepath, "%s%s", rootdir, szpath);
memcpy(szpath, filepath, MAXPATHLEN);
}
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
int szfiles = SzParse(szpath, method);
if(szfiles)
{
browser.numEntries = szfiles;
inSz = true;
}
else
ErrorPrompt("Error opening archive!");
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
return szfiles;
}
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
/****************************************************************************
* BrowserLoadFile
*
* Loads the selected ROM
***************************************************************************/
int BrowserLoadFile(int method)
{
// store the filename (w/o ext) - used for sram/freeze naming
StripExt(ROMFilename, browserList[browser.selIndex].filename);
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
ROMLoaded = LoadVBAROM(method);
inSz = false;
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
if (!ROMLoaded)
{
ErrorPrompt("Error loading ROM!");
}
else
{
2009-04-09 09:17:06 +02:00
if (GCSettings.AutoLoad == 1)
LoadBatteryOrStateAuto(GCSettings.SaveMethod, FILE_SRAM, SILENT);
else if (GCSettings.AutoLoad == 2)
LoadBatteryOrStateAuto(GCSettings.SaveMethod, FILE_SNAPSHOT, SILENT);
2009-04-08 09:08:12 +02:00
ResetBrowser();
}
CancelAction();
return ROMLoaded;
}
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
/****************************************************************************
* BrowserChangeFolder
*
* Update current directory and set new entry list if directory has changed
***************************************************************************/
int BrowserChangeFolder(int method)
{
if(inSz && browser.selIndex == 0) // inside a 7z, requesting to leave
{
if(method == METHOD_DVD)
SetDVDdirectory(browserList[0].offset, browserList[0].length);
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
inSz = false;
SzClose();
}
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
if(!UpdateDirName(method))
return -1;
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
switch (method)
{
case METHOD_DVD:
ParseDVDdirectory();
break;
2009-04-07 04:49:56 +02:00
2009-04-08 09:08:12 +02:00
default:
ParseDirectory(method);
break;
}
if (!browser.numEntries)
{
ErrorPrompt("Error reading directory!");
}
return browser.numEntries;
2009-04-07 04:49:56 +02:00
}
/****************************************************************************
* OpenROM
2009-04-08 09:08:12 +02:00
* Displays a list of ROMS on load device
2009-04-07 04:49:56 +02:00
***************************************************************************/
int
2009-04-08 09:08:12 +02:00
OpenGameList ()
2009-04-07 04:49:56 +02:00
{
2009-04-08 09:08:12 +02:00
int method = GCSettings.LoadMethod;
2009-04-07 04:49:56 +02:00
if(method == METHOD_AUTO)
method = autoLoadMethod();
2009-04-08 09:08:12 +02:00
// change current dir to roms directory
switch(method)
2009-04-07 04:49:56 +02:00
{
2009-04-08 09:08:12 +02:00
case METHOD_DVD:
browser.dir[0] = 0;
if(MountDVD(NOTSILENT))
if(ParseDVDdirectory()) // Parse root directory
SwitchDVDFolder(GCSettings.LoadFolder); // switch to ROM folder
break;
default:
sprintf(browser.dir, "/%s", GCSettings.LoadFolder);
ParseDirectory(method); // Parse root directory
break;
2009-04-07 04:49:56 +02:00
}
2009-04-08 09:08:12 +02:00
return browser.numEntries;
2009-04-07 04:49:56 +02:00
}