snes9xgx/source/ngc/sram.cpp
2009-11-30 08:14:38 +00:00

149 lines
2.9 KiB
C++

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
*
* crunchy2 April 2007-July 2007
* Michniewski 2008
* Tantric 2008-2009
*
* sram.cpp
*
* SRAM save/load/import/export handling
***************************************************************************/
#include <gccore.h>
#include <stdio.h>
#include <string.h>
#include <ogcsys.h>
#include "snes9x.h"
#include "memmap.h"
#include "srtc.h"
#include "snes9xGX.h"
#include "menu.h"
#include "fileop.h"
#include "filebrowser.h"
#include "input.h"
/****************************************************************************
* Load SRAM
***************************************************************************/
bool
LoadSRAM (char * filepath, bool silent)
{
int len = 0;
int device;
bool result = false;
if(!FindDevice(filepath, &device))
return 0;
Memory.ClearSRAM();
int size = Memory.SRAMSize ? (1 << (Memory.SRAMSize + 3)) * 128 : 0;
if (size > 0x20000)
size = 0x20000;
if (size)
{
len = LoadFile((char *)Memory.SRAM, filepath, size, silent);
if (len > 0)
{
if (len - size == 512)
memmove(Memory.SRAM, Memory.SRAM + 512, size);
result = true;
}
else if(!silent)
{
// if we reached here, nothing was done!
ErrorPrompt("SRAM file not found");
}
S9xSoftReset();
}
return result;
}
bool
LoadSRAMAuto (bool silent)
{
char filepath[MAXPATHLEN];
char filepath2[MAXPATHLEN];
// look for Auto save file
if(!MakeFilePath(filepath, FILE_SRAM, Memory.ROMFilename, 0))
return false;
if (LoadSRAM(filepath, silent))
return true;
// look for file with no number or Auto appended
if(!MakeFilePath(filepath2, FILE_SRAM, Memory.ROMFilename, -1))
return false;
if(LoadSRAM(filepath2, silent))
{
// rename this file - append Auto
rename(filepath2, filepath); // rename file (to avoid duplicates)
return true;
}
return false;
}
/****************************************************************************
* Save SRAM
***************************************************************************/
bool
SaveSRAM (char * filepath, bool silent)
{
bool retval = false;
int offset = 0;
int device;
if(!FindDevice(filepath, &device))
return 0;
if (Settings.SuperFX && Memory.ROMType < 0x15) // doesn't have SRAM
return true;
if (Settings.SA1 && Memory.ROMType == 0x34) // doesn't have SRAM
return true;
// determine SRAM size
int size = Memory.SRAMSize ? (1 << (Memory.SRAMSize + 3)) * 128 : 0;
if (size > 0x20000)
size = 0x20000;
if (size > 0)
{
offset = SaveFile((char *)Memory.SRAM, filepath, size, silent);
if (offset > 0)
{
if (!silent)
InfoPrompt("Save successful");
retval = true;
}
}
else
{
if(!silent)
ErrorPrompt("No SRAM data to save!");
}
return retval;
}
bool
SaveSRAMAuto (bool silent)
{
char filepath[1024];
if(!MakeFilePath(filepath, FILE_SRAM, Memory.ROMFilename, 0))
return false;
return SaveSRAM(filepath, silent);
}