fceugx/source/ngc/fceuram.cpp

200 lines
4.4 KiB
C++
Raw Normal View History

/****************************************************************************
2009-07-22 04:05:49 +02:00
* FCE Ultra
* Nintendo Wii/Gamecube Port
*
2009-03-28 18:23:08 +01:00
* Tantric 2008-2009
*
2009-03-28 18:23:08 +01:00
* fceustate.cpp
*
* Memory Based Load/Save RAM Manager
*
* These are the battery-backed RAM (save data) routines, brought together
* as GCxxxxx
* The original file I/O is replaced with Memory Read/Writes to the
* savebuffer below
****************************************************************************/
#include <gccore.h>
#include <string.h>
#include <malloc.h>
#include <fat.h>
#include <string.h>
#include "fceugx.h"
2009-07-17 19:27:04 +02:00
#include "fceusupport.h"
2009-03-28 18:23:08 +01:00
#include "menu.h"
#include "filebrowser.h"
#include "memcardop.h"
#include "fileop.h"
static u32 NGCFCEU_GameSave(CartInfo *LocalHWInfo, int operation, int method)
{
u32 offset = 0;
if(LocalHWInfo->battery && LocalHWInfo->SaveGame[0])
{
int x;
for(x=0;x<4;x++)
{
if(LocalHWInfo->SaveGame[x])
{
if(operation == 0) // save to file
memcpy(savebuffer+offset, LocalHWInfo->SaveGame[x], LocalHWInfo->SaveGameLen[x]);
else // load from file
memcpy(LocalHWInfo->SaveGame[x], savebuffer+offset, LocalHWInfo->SaveGameLen[x]);
offset += LocalHWInfo->SaveGameLen[x];
}
}
}
return offset;
}
2009-03-28 18:23:08 +01:00
bool SaveRAM (char * filepath, int method, bool silent)
{
2008-11-12 09:40:09 +01:00
bool retval = false;
int datasize = 0;
int offset = 0;
if(GameInfo->type == GIT_FDS)
2008-10-03 20:11:32 +02:00
{
if(!silent)
2009-03-28 18:23:08 +01:00
InfoPrompt("RAM saving is not available for FDS games!");
2008-10-03 20:11:32 +02:00
return false;
}
if(method == METHOD_AUTO)
method = autoSaveMethod(silent);
2009-03-28 18:23:08 +01:00
if(method == METHOD_AUTO)
2008-11-12 09:40:09 +01:00
return false;
AllocSaveBuffer ();
// save game save to savebuffer
if(GameInfo->type == GIT_CART)
datasize = NGCFCEU_GameSave(&iNESCart, 0, method);
else if(GameInfo->type == GIT_VSUNI)
datasize = NGCFCEU_GameSave(&UNIFCart, 0, method);
2008-11-12 09:40:09 +01:00
if (datasize)
{
2009-03-28 18:23:08 +01:00
if(method == METHOD_MC_SLOTA || method == METHOD_MC_SLOTB)
{
// Set the comments
char comments[2][32];
memset(comments, 0, 64);
sprintf (comments[0], "%s RAM", APPNAME);
snprintf (comments[1], 32, romFilename);
SetMCSaveComments(comments);
}
2008-11-12 09:40:09 +01:00
offset = SaveFile(filepath, datasize, method, silent);
if (offset > 0)
{
2009-03-28 18:23:08 +01:00
if (!silent)
InfoPrompt("Save successful");
retval = true;
}
}
else
{
2009-03-28 18:23:08 +01:00
if (!silent)
InfoPrompt("No data to save!");
}
FreeSaveBuffer ();
return retval;
}
2009-03-28 18:23:08 +01:00
bool
SaveRAMAuto (int method, bool silent)
{
2009-03-28 18:23:08 +01:00
if(method == METHOD_AUTO)
method = autoSaveMethod(silent);
if(method == METHOD_AUTO)
return false;
2008-11-12 09:40:09 +01:00
char filepath[1024];
2009-03-28 18:23:08 +01:00
if(!MakeFilePath(filepath, FILE_RAM, method, romFilename, 0))
return false;
return SaveRAM(filepath, method, silent);
}
bool LoadRAM (char * filepath, int method, bool silent)
{
2008-11-12 09:40:09 +01:00
int offset = 0;
bool retval = false;
2008-11-12 09:40:09 +01:00
if(GameInfo->type == GIT_FDS) // RAM saves don't exist for FDS games
2008-10-03 20:11:32 +02:00
return false;
if(method == METHOD_AUTO)
method = autoSaveMethod(silent); // we use 'Save' because we need R/W
2009-03-28 18:23:08 +01:00
if(method == METHOD_AUTO)
2008-11-12 09:40:09 +01:00
return false;
AllocSaveBuffer ();
2008-11-12 09:40:09 +01:00
offset = LoadFile(filepath, method, silent);
if (offset > 0)
{
if(GameInfo->type == GIT_CART)
NGCFCEU_GameSave(&iNESCart, 1, method);
else if(GameInfo->type == GIT_VSUNI)
NGCFCEU_GameSave(&UNIFCart, 1, method);
ResetNES();
retval = true;
}
else
{
// if we reached here, nothing was done!
if(!silent)
2009-03-28 18:23:08 +01:00
InfoPrompt ("Save file not found");
}
FreeSaveBuffer ();
return retval;
}
2009-03-28 18:23:08 +01:00
bool
LoadRAMAuto (int method, bool silent)
{
if(method == METHOD_AUTO)
method = autoSaveMethod(silent);
if(method == METHOD_AUTO)
return false;
2009-04-09 09:49:28 +02:00
char filepath[MAXPATHLEN];
char fullpath[MAXPATHLEN];
char filepath2[MAXPATHLEN];
char fullpath2[MAXPATHLEN];
2009-03-28 18:23:08 +01:00
2009-04-09 09:49:28 +02:00
// look for Auto save file
2009-03-28 18:23:08 +01:00
if(!MakeFilePath(filepath, FILE_RAM, method, romFilename, 0))
return false;
2009-04-09 09:49:28 +02:00
if (LoadRAM(filepath, method, silent))
return true;
// look for file with no number or Auto appended
2009-04-10 09:50:10 +02:00
if(!MakeFilePath(filepath2, FILE_RAM, method, romFilename, -1))
2009-04-09 09:49:28 +02:00
return false;
if(LoadRAM(filepath2, method, silent))
{
// rename this file - append Auto
sprintf(fullpath, "%s%s", rootdir, filepath); // add device to path
sprintf(fullpath2, "%s%s", rootdir, filepath2); // add device to path
rename(fullpath2, fullpath); // rename file (to avoid duplicates)
return true;
}
return false;
2009-03-28 18:23:08 +01:00
}