many bugfixes (and rewritten code)

This commit is contained in:
dborth 2009-10-06 06:38:32 +00:00
parent 1cdc0dbb21
commit 67098d8f95
6 changed files with 143 additions and 140 deletions

View File

@ -72,9 +72,6 @@ unsigned char * nesrom = NULL;
static void ExitCleanup() static void ExitCleanup()
{ {
#ifdef HW_RVL
ShutoffRumble();
#endif
ShutdownAudio(); ShutdownAudio();
StopGX(); StopGX();
@ -94,6 +91,10 @@ static void ExitCleanup()
void ExitApp() void ExitApp()
{ {
#ifdef HW_RVL
ShutoffRumble();
#endif
SavePrefs(SILENT); SavePrefs(SILENT);
if (romLoaded && !ConfigRequested && GCSettings.AutoSave == 1) if (romLoaded && !ConfigRequested && GCSettings.AutoSave == 1)

View File

@ -663,7 +663,7 @@ OpenGameList ()
{ {
int device = GCSettings.LoadMethod; int device = GCSettings.LoadMethod;
if(device == DEVICE_AUTO) if(device == DEVICE_AUTO && strlen(GCSettings.LoadFolder) > 0)
device = autoLoadMethod(); device = autoLoadMethod();
// change current dir to roms directory // change current dir to roms directory

View File

@ -241,7 +241,8 @@ void UnmountAllFAT()
static bool MountFAT(int device, int silent) static bool MountFAT(int device, int silent)
{ {
bool mounted = true; // assume our disc is already mounted bool mounted = false;
int retry = 1;
char name[10], name2[10]; char name[10], name2[10];
const DISC_INTERFACE* disc = NULL; const DISC_INTERFACE* disc = NULL;
@ -282,20 +283,19 @@ static bool MountFAT(int device, int silent)
disc->shutdown(); disc->shutdown();
isMounted[device] = false; isMounted[device] = false;
} }
if(!isMounted[device])
{
if(!disc->startup())
mounted = false;
else if(!fatMountSimple(name, disc))
mounted = false;
}
if(!mounted && !silent) while(retry)
{ {
if(disc->startup() && fatMountSimple(name, disc))
mounted = true;
if(mounted || silent)
break;
if(device == DEVICE_SD) if(device == DEVICE_SD)
ErrorPrompt("SD card not found!"); retry = ErrorPromptRetry("SD card not found!");
else else
ErrorPrompt("USB drive not found!"); retry = ErrorPromptRetry("USB drive not found!");
} }
isMounted[device] = mounted; isMounted[device] = mounted;
@ -320,12 +320,8 @@ void MountAllFAT()
***************************************************************************/ ***************************************************************************/
bool MountDVD(bool silent) bool MountDVD(bool silent)
{ {
if(isMounted[DEVICE_DVD])
return true;
ShowAction("Loading DVD...");
bool mounted = false; bool mounted = false;
int retry = 1;
if(unmountRequired[DEVICE_DVD]) if(unmountRequired[DEVICE_DVD])
{ {
@ -333,19 +329,29 @@ bool MountDVD(bool silent)
ISO9660_Unmount(); ISO9660_Unmount();
} }
mounted = dvd->isInserted(); while(retry)
if(!mounted)
{ {
if(!silent) ShowAction("Loading DVD...");
ErrorPrompt("No disc inserted!");
if(!dvd->isInserted())
{
if(silent)
break;
retry = ErrorPromptRetry("No disc inserted!");
}
else if(!ISO9660_Mount())
{
if(silent)
break;
retry = ErrorPromptRetry("Invalid DVD.");
} }
else else
{ {
mounted = ISO9660_Mount(); mounted = true;
break;
if(!mounted && !silent) }
ErrorPrompt("Invalid DVD.");
} }
CancelAction(); CancelAction();
isMounted[DEVICE_DVD] = mounted; isMounted[DEVICE_DVD] = mounted;
@ -419,6 +425,9 @@ char * StripDevice(char * path)
***************************************************************************/ ***************************************************************************/
bool ChangeInterface(int device, bool silent) bool ChangeInterface(int device, bool silent)
{ {
if(isMounted[device])
return true;
bool mounted = false; bool mounted = false;
switch(device) switch(device)
@ -577,14 +586,17 @@ ParseDirectory(bool waitParse)
// if we can't open the dir, try higher levels // if we can't open the dir, try higher levels
if (dirIter == NULL) if (dirIter == NULL)
{ {
char * devEnd = strrchr(browser.dir, '/');
while(!IsDeviceRoot(browser.dir)) while(!IsDeviceRoot(browser.dir))
{ {
char * devEnd = strrchr(browser.dir, '/'); devEnd[0] = 0; // strip slash
devEnd = strrchr(browser.dir, '/');
if(devEnd == NULL) if(devEnd == NULL)
break; break;
devEnd[0] = 0; // strip remaining file listing devEnd[1] = 0; // strip remaining file listing
dirIter = diropen(browser.dir); dirIter = diropen(browser.dir);
if (dirIter) if (dirIter)
break; break;
@ -689,8 +701,7 @@ size_t
LoadFile (char * rbuffer, char *filepath, size_t length, bool silent) LoadFile (char * rbuffer, char *filepath, size_t length, bool silent)
{ {
char zipbuffer[2048]; char zipbuffer[2048];
size_t size = 0; size_t size = 0, offset = 0, readsize = 0;
size_t readsize = 0;
int retry = 1; int retry = 1;
int device; int device;
@ -715,73 +726,59 @@ LoadFile (char * rbuffer, char *filepath, size_t length, bool silent)
else else
{ {
// open the file // open the file
while(!size && retry == 1) while(!size && retry)
{
if(ChangeInterface(device, silent))
{ {
if(!ChangeInterface(device, silent))
break;
file = fopen (filepath, "rb"); file = fopen (filepath, "rb");
if(file > 0) if(!file)
{ {
if(silent)
break;
retry = ErrorPromptRetry("Error opening file!");
continue;
}
if(length > 0 && length <= 2048) // do a partial read (eg: to check file header) if(length > 0 && length <= 2048) // do a partial read (eg: to check file header)
{ {
size = fread (rbuffer, 1, length, file); size = fread (rbuffer, 1, length, file);
} }
else // load whole file else // load whole file
{ {
readsize = fread (zipbuffer, 1, 2048, file); readsize = fread (zipbuffer, 1, 32, file);
if(readsize > 0) if(!readsize)
{ {
unmountRequired[device] = true;
retry = ErrorPromptRetry("Error reading file!");
continue;
}
if (IsZipFile (zipbuffer)) if (IsZipFile (zipbuffer))
{ {
size = UnZipBuffer ((unsigned char *)rbuffer); // unzip size = UnZipBuffer ((unsigned char *)rbuffer); // unzip
} }
else else
{ {
struct stat fileinfo; fseeko(file,0,SEEK_END);
if(fstat(file->_file, &fileinfo) == 0) size = ftello(file);
{ fseeko(file,0,SEEK_SET);
size = fileinfo.st_size;
memcpy (rbuffer, zipbuffer, readsize); // copy what we already read while(!feof(file))
size_t offset = readsize;
size_t nextread = 0;
while(offset < size)
{ {
if(size - offset > 4*1024) nextread = 4*1024;
else nextread = size-offset;
ShowProgress ("Loading...", offset, size); ShowProgress ("Loading...", offset, size);
readsize = fread (rbuffer + offset, 1, nextread, file); // read in next chunk readsize = fread (rbuffer + offset, 1, 4096, file); // read in next chunk
if(readsize <= 0 || readsize > nextread) if(readsize <= 0)
break; // read failure break; // reading finished (or failed)
if(readsize > 0)
offset += readsize; offset += readsize;
} }
size = offset;
CancelAction(); CancelAction();
if(offset != size) // # bytes read doesn't match # expected
size = 0;
}
}
}
}
fclose (file);
}
}
if(!size)
{
if(!silent)
{
unmountRequired[device] = true;
retry = ErrorPromptRetry("Error loading file!");
}
else
{
retry = 0;
} }
} }
} }
@ -806,6 +803,7 @@ size_t
SaveFile (char * buffer, char *filepath, size_t datasize, bool silent) SaveFile (char * buffer, char *filepath, size_t datasize, bool silent)
{ {
size_t written = 0; size_t written = 0;
size_t writesize, nextwrite;
int retry = 1; int retry = 1;
int device; int device;
@ -840,12 +838,11 @@ SaveFile (char * buffer, char *filepath, size_t datasize, bool silent)
{ {
file = fopen (filepath, "wb"); file = fopen (filepath, "wb");
if (file > 0) if (file)
{ {
size_t writesize, nextwrite;
while(written < datasize) while(written < datasize)
{ {
if(datasize - written > 4*1024) nextwrite=4*1024; if(datasize - written > 4096) nextwrite=4096;
else nextwrite = datasize-written; else nextwrite = datasize-written;
writesize = fwrite (buffer+written, 1, nextwrite, file); writesize = fwrite (buffer+written, 1, nextwrite, file);
if(writesize != nextwrite) break; // write failure if(writesize != nextwrite) break; // write failure

View File

@ -1029,6 +1029,7 @@ static int MenuGameSelection()
ExitRequested = 1; ExitRequested = 1;
} }
HaltParseThread(); // halt parsing
HaltGui(); HaltGui();
mainWindow->Remove(&titleTxt); mainWindow->Remove(&titleTxt);
mainWindow->Remove(&buttonWindow); mainWindow->Remove(&buttonWindow);

View File

@ -185,9 +185,14 @@ void InitializeNetwork(bool silent)
{ {
// stop if we're already initialized, or if auto-init has failed before // stop if we're already initialized, or if auto-init has failed before
// in which case, manual initialization is required // in which case, manual initialization is required
if(networkInit || !autoNetworkInit) if(networkInit || (silent && !autoNetworkInit))
return; return;
int retry = 1;
char ip[16];
char msg[150];
s32 initResult;
if(!silent) if(!silent)
ShowAction ("Initializing network..."); ShowAction ("Initializing network...");
@ -198,25 +203,25 @@ void InitializeNetwork(bool silent)
{ {
inNetworkInit = true; inNetworkInit = true;
char ip[16]; while(retry)
s32 initResult = if_config(ip, NULL, NULL, true); {
if(!silent)
ShowAction ("Initializing network...");
initResult = if_config(ip, NULL, NULL, true);
if(initResult == 0) if(initResult == 0)
{
networkInit = true; networkInit = true;
if(networkInit || silent)
break;
sprintf(msg, "Unable to initialize network (Error #: %i)", initResult);
retry = ErrorPromptRetry(msg);
} }
else
{
// do not automatically attempt a reconnection // do not automatically attempt a reconnection
autoNetworkInit = false; autoNetworkInit = false;
if(!silent)
{
char msg[150];
sprintf(msg, "Unable to initialize network (Error #: %i)", initResult);
ErrorPrompt(msg);
}
}
inNetworkInit = false; inNetworkInit = false;
} }
if(!silent) if(!silent)
@ -228,7 +233,6 @@ void CloseShare()
if(networkShareInit) if(networkShareInit)
smbClose("smb"); smbClose("smb");
networkShareInit = false; networkShareInit = false;
networkInit = false; // trigger a network reinit
} }
/**************************************************************************** /****************************************************************************
@ -243,6 +247,7 @@ ConnectShare (bool silent)
return false; return false;
#endif #endif
int retry = 1;
int chkS = (strlen(GCSettings.smbshare) > 0) ? 0:1; int chkS = (strlen(GCSettings.smbshare) > 0) ? 0:1;
int chkI = (strlen(GCSettings.smbip) > 0) ? 0:1; int chkI = (strlen(GCSettings.smbip) > 0) ? 0:1;
@ -272,26 +277,25 @@ ConnectShare (bool silent)
if(!networkInit) if(!networkInit)
InitializeNetwork(silent); InitializeNetwork(silent);
if(networkInit) if(!networkInit)
{ return false;
if(!networkShareInit)
while(retry)
{ {
if(!silent) if(!silent)
ShowAction ("Connecting to network share..."); ShowAction ("Connecting to network share...");
if(smbInit(GCSettings.smbuser, GCSettings.smbpwd, if(smbInit(GCSettings.smbuser, GCSettings.smbpwd, GCSettings.smbshare, GCSettings.smbip))
GCSettings.smbshare, GCSettings.smbip))
{
networkShareInit = true; networkShareInit = true;
if(networkShareInit || silent)
break;
retry = ErrorPromptRetry("Failed to connect to network share.");
} }
if(!silent) if(!silent)
CancelAction(); CancelAction();
}
if(!networkShareInit && !silent)
ErrorPrompt("Failed to connect to network share.");
}
return networkShareInit; return networkShareInit;
} }

View File

@ -368,7 +368,7 @@ SavePrefs (bool silent)
} }
else else
{ {
device = autoLoadMethod(); device = autoSaveMethod(silent);
if(device == 0) if(device == 0)
return false; return false;
@ -376,7 +376,7 @@ SavePrefs (bool silent)
if(device == DEVICE_MC_SLOTA || device == DEVICE_MC_SLOTB) if(device == DEVICE_MC_SLOTA || device == DEVICE_MC_SLOTB)
sprintf(filepath, "%s%s", pathPrefix[device], PREF_FILE_NAME); sprintf(filepath, "%s%s", pathPrefix[device], PREF_FILE_NAME);
else else
sprintf(filepath, "%sfceugx/%s", pathPrefix[device], PREF_FILE_NAME); sprintf(filepath, "%s%s/%s", pathPrefix[device], APPFOLDER, PREF_FILE_NAME);
} }
if(device == 0) if(device == 0)