fceugx/source/ngc/memcardop.cpp

417 lines
9.9 KiB
C++
Raw Normal View History

2008-09-02 03:57:21 +02:00
/****************************************************************************
* FCE Ultra 0.98.12
* Nintendo Wii/Gamecube Port
*
* Tantric September 2008
*
* memcardop.c
*
* Memory Card routines
****************************************************************************/
#include <gccore.h>
#include <ogcsys.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "common.h"
#include "menudraw.h"
#include "fceugx.h"
2008-09-02 03:57:21 +02:00
#include "menu.h"
#include "memcardop.h"
#include "fileop.h"
#include "filesel.h"
2008-09-02 03:57:21 +02:00
/****************************************************************************
* CardFileExists
*
* Wrapper to search through the files on the card.
* Returns TRUE if found.
2008-11-12 09:40:09 +01:00
***************************************************************************/
static int
2008-09-02 03:57:21 +02:00
CardFileExists (char *filename, int slot)
{
card_dir CardDir;
2008-09-02 03:57:21 +02:00
int CardError;
CardError = CARD_FindFirst (slot, &CardDir, TRUE);
while (CardError != CARD_ERROR_NOFILE)
{
CardError = CARD_FindNext (&CardDir);
if (strcmp ((char *) CardDir.filename, filename) == 0)
return 1;
}
return 0;
}
/****************************************************************************
* MountCard
*
* Mounts the memory card in the given slot.
* Returns the result of the last attempted CARD_Mount command.
***************************************************************************/
static int MountCard(int cslot, bool silent, u8 * SysArea)
{
int ret = -1;
int tries = 0;
// Mount the card
while ( tries < 10 && ret != 0)
{
EXI_ProbeReset ();
ret = CARD_Mount (cslot, &SysArea, NULL);
VIDEO_WaitVSync ();
tries++;
}
return ret;
}
2008-09-02 03:57:21 +02:00
/****************************************************************************
* TestCard
*
* Checks to see if a card is in the card slot specified
2008-11-12 09:40:09 +01:00
***************************************************************************/
2008-09-02 03:57:21 +02:00
bool TestCard(int slot, bool silent)
{
// Memory Cards do not work in Wii mode - disable
#ifdef HW_RVL
return false;
#endif
/*** Initialize Card System ***/
u8 SysArea[CARD_WORKAREA] ATTRIBUTE_ALIGN (32);
2008-09-02 03:57:21 +02:00
memset (SysArea, 0, CARD_WORKAREA);
CARD_Init ("FCEU", "00");
2008-09-02 03:57:21 +02:00
/*** Try to mount the card ***/
if (MountCard(slot, silent, (u8 *)SysArea) == 0)
2008-09-02 03:57:21 +02:00
{
// Mount successful!
if(!silent)
{
if (slot == CARD_SLOTA)
WaitPrompt("Mounted Slot A Memory Card!");
2008-09-02 03:57:21 +02:00
else
WaitPrompt("Mounted Slot B Memory Card!");
2008-09-02 03:57:21 +02:00
}
CARD_Unmount (slot);
return true;
}
else
{
if(!silent)
{
if (slot == CARD_SLOTA)
WaitPrompt("Unable to Mount Slot A Memory Card!");
2008-09-02 03:57:21 +02:00
else
WaitPrompt("Unable to Mount Slot B Memory Card!");
2008-09-02 03:57:21 +02:00
}
return false;
}
}
/****************************************************************************
* Verify Memory Card file against buffer
2008-11-12 09:40:09 +01:00
***************************************************************************/
static int
2008-11-12 09:40:09 +01:00
VerifyMCFile (char *buf, int slot, char *filename, int datasize)
2008-09-02 03:57:21 +02:00
{
card_file CardFile;
unsigned char verifbuffer[65536] ATTRIBUTE_ALIGN (32);
2008-09-02 03:57:21 +02:00
int CardError;
unsigned int blocks;
unsigned int SectorSize;
char msg[80];
int bytesleft = 0;
int bytesread = 0;
/*** Initialize Card System ***/
u8 SysArea[CARD_WORKAREA] ATTRIBUTE_ALIGN (32);
2008-09-02 03:57:21 +02:00
memset (SysArea, 0, CARD_WORKAREA);
CARD_Init ("FCEU", "00");
2008-09-02 03:57:21 +02:00
/*** Try to mount the card ***/
CardError = MountCard(slot, NOTSILENT, (u8 *)SysArea);
2008-09-02 03:57:21 +02:00
if (CardError == 0)
{
/*** Get Sector Size ***/
CARD_GetSectorSize (slot, &SectorSize);
if (!CardFileExists (filename, slot))
{
CARD_Unmount (slot);
WaitPrompt("Unable to open file for verify!");
2008-09-02 03:57:21 +02:00
return 0;
}
memset (&CardFile, 0, sizeof (CardFile));
CardError = CARD_Open (slot, filename, &CardFile);
blocks = CardFile.len;
if (blocks < SectorSize)
blocks = SectorSize;
if (blocks % SectorSize)
blocks += SectorSize;
if (blocks > (unsigned int)datasize)
blocks = datasize;
memset (verifbuffer, 0, 65536);
2008-09-02 03:57:21 +02:00
bytesleft = blocks;
bytesread = 0;
while (bytesleft > 0)
{
CARD_Read (&CardFile, verifbuffer, SectorSize, bytesread);
if ( memcmp (buf + bytesread, verifbuffer, (unsigned int)bytesleft < SectorSize ? bytesleft : SectorSize) )
{
CARD_Close (&CardFile);
CARD_Unmount (slot);
WaitPrompt("File did not verify!");
2008-09-02 03:57:21 +02:00
return 0;
}
bytesleft -= SectorSize;
bytesread += SectorSize;
sprintf (msg, "Verified %d of %d bytes", bytesread, blocks);
ShowProgress (msg, bytesread, blocks);
}
CARD_Close (&CardFile);
CARD_Unmount (slot);
return 1;
}
else
if (slot == CARD_SLOTA)
WaitPrompt("Unable to Mount Slot A Memory Card!");
2008-09-02 03:57:21 +02:00
else
WaitPrompt("Unable to Mount Slot B Memory Card!");
2008-09-02 03:57:21 +02:00
return 0;
}
/****************************************************************************
2008-11-12 09:40:09 +01:00
* LoadMCFile
2008-09-02 03:57:21 +02:00
* Load savebuffer from Memory Card file
2008-11-12 09:40:09 +01:00
***************************************************************************/
2008-09-02 03:57:21 +02:00
int
2008-11-12 09:40:09 +01:00
LoadMCFile (char *buf, int slot, char *filename, bool silent)
2008-09-02 03:57:21 +02:00
{
card_file CardFile;
2008-09-02 03:57:21 +02:00
int CardError;
unsigned int blocks;
unsigned int SectorSize;
int bytesleft = 0;
int bytesread = 0;
/*** Initialize Card System ***/
u8 SysArea[CARD_WORKAREA] ATTRIBUTE_ALIGN (32);
2008-09-02 03:57:21 +02:00
memset (SysArea, 0, CARD_WORKAREA);
CARD_Init ("FCEU", "00");
2008-09-02 03:57:21 +02:00
/*** Try to mount the card ***/
CardError = MountCard(slot, NOTSILENT, (u8 *)SysArea);
2008-09-02 03:57:21 +02:00
if (CardError == 0)
{
/*** Get Sector Size ***/
CARD_GetSectorSize (slot, &SectorSize);
if (!CardFileExists (filename, slot))
{
if (!silent)
WaitPrompt("Unable to open file");
2008-09-02 03:57:21 +02:00
return 0;
}
memset (&CardFile, 0, sizeof (CardFile));
CardError = CARD_Open (slot, filename, &CardFile);
blocks = CardFile.len;
if (blocks < SectorSize)
blocks = SectorSize;
if (blocks % SectorSize)
blocks += SectorSize;
memset (buf, 0, 0x22000);
bytesleft = blocks;
bytesread = 0;
while (bytesleft > 0)
{
CARD_Read (&CardFile, buf + bytesread, SectorSize, bytesread);
bytesleft -= SectorSize;
bytesread += SectorSize;
}
CARD_Close (&CardFile);
CARD_Unmount (slot);
}
else
if (slot == CARD_SLOTA)
WaitPrompt("Unable to Mount Slot A Memory Card!");
2008-09-02 03:57:21 +02:00
else
WaitPrompt("Unable to Mount Slot B Memory Card!");
2008-09-02 03:57:21 +02:00
return bytesread;
}
/****************************************************************************
2008-11-12 09:40:09 +01:00
* SaveMCFile
2008-09-02 03:57:21 +02:00
* Write savebuffer to Memory Card file
2008-11-12 09:40:09 +01:00
***************************************************************************/
2008-09-02 03:57:21 +02:00
int
2008-11-12 09:40:09 +01:00
SaveMCFile (char *buf, int slot, char *filename, int datasize, bool silent)
2008-09-02 03:57:21 +02:00
{
card_file CardFile;
card_stat CardStatus;
2008-09-02 03:57:21 +02:00
int CardError;
unsigned int blocks;
unsigned int SectorSize;
char msg[80];
2008-12-24 08:58:23 +01:00
if(datasize <= 0)
return 0;
2008-09-02 03:57:21 +02:00
/*** Initialize Card System ***/
u8 SysArea[CARD_WORKAREA] ATTRIBUTE_ALIGN (32);
2008-09-02 03:57:21 +02:00
memset (SysArea, 0, CARD_WORKAREA);
CARD_Init ("FCEU", "00");
2008-09-02 03:57:21 +02:00
/*** Try to mount the card ***/
CardError = MountCard(slot, NOTSILENT, (u8 *)SysArea);
2008-09-02 03:57:21 +02:00
if (CardError == 0)
{
/*** Get Sector Size ***/
CARD_GetSectorSize (slot, &SectorSize);
2008-12-24 08:58:23 +01:00
/*** Calculate number of blocks required ***/
blocks = (datasize / SectorSize) * SectorSize;
if (datasize % SectorSize)
blocks += SectorSize;
/*** Does this file exist ? ***/
if (CardFileExists (filename, slot))
2008-09-02 03:57:21 +02:00
{
2008-12-24 08:58:23 +01:00
/*** Try to open the file ***/
CardError = CARD_Open (slot, filename, &CardFile);
if (CardError)
{
CARD_Unmount (slot);
WaitPrompt("Unable to open card file!");
return 0;
}
2008-09-02 03:57:21 +02:00
2008-12-24 08:58:23 +01:00
if ( (s32)blocks > CardFile.len ) /*** new data is longer ***/
2008-09-02 03:57:21 +02:00
{
2008-12-24 08:58:23 +01:00
CARD_Close (&CardFile);
/*** Try to create temp file to check available space ***/
CardError = CARD_Create (slot, "TEMPFILESNES9XGX201", blocks, &CardFile);
2008-09-02 03:57:21 +02:00
if (CardError)
{
2008-12-24 08:58:23 +01:00
CARD_Unmount (slot);
WaitPrompt("Not enough space to update file!");
2008-09-02 03:57:21 +02:00
return 0;
}
2008-12-24 08:58:23 +01:00
/*** Delete the temporary file ***/
CARD_Close (&CardFile);
CardError = CARD_Delete(slot, "TEMPFILESNES9XGX201");
if (CardError)
2008-09-02 03:57:21 +02:00
{
2008-12-24 08:58:23 +01:00
CARD_Unmount (slot);
WaitPrompt("Unable to delete temporary file!");
return 0;
}
/*** Delete the existing shorter file ***/
CardError = CARD_Delete(slot, filename);
if (CardError)
{
CARD_Unmount (slot);
WaitPrompt("Unable to delete existing file!");
return 0;
2008-09-02 03:57:21 +02:00
}
2008-12-24 08:58:23 +01:00
/*** Create new, longer file ***/
CardError = CARD_Create (slot, filename, blocks, &CardFile);
if (CardError)
{
CARD_Unmount (slot);
WaitPrompt("Unable to create updated card file!");
return 0;
}
}
}
else /*** no file existed, create new one ***/
{
/*** Create new file ***/
CardError = CARD_Create (slot, filename, blocks, &CardFile);
if (CardError)
2008-09-02 03:57:21 +02:00
{
2008-12-24 08:58:23 +01:00
CARD_Unmount (slot);
if ( CardError == CARD_ERROR_INSSPACE )
WaitPrompt("Not enough space to create file!");
else
WaitPrompt("Unable to create card file!");
return 0;
2008-09-02 03:57:21 +02:00
}
2008-12-24 08:58:23 +01:00
}
2008-09-02 03:57:21 +02:00
2008-12-24 08:58:23 +01:00
/*** Now, have an open file handle, ready to send out the data ***/
CARD_GetStatus (slot, CardFile.filenum, &CardStatus);
CardStatus.icon_addr = 0x0;
CardStatus.icon_fmt = 2;
CardStatus.icon_speed = 1;
CardStatus.comment_addr = 2048;
CARD_SetStatus (slot, CardFile.filenum, &CardStatus);
2008-09-02 03:57:21 +02:00
2008-12-24 08:58:23 +01:00
int byteswritten = 0;
int bytesleft = blocks;
while (bytesleft > 0)
{
CardError =
CARD_Write (&CardFile, buf + byteswritten,
SectorSize, byteswritten);
bytesleft -= SectorSize;
byteswritten += SectorSize;
sprintf (msg, "Wrote %d of %d bytes", byteswritten, blocks);
ShowProgress (msg, byteswritten, blocks);
}
CARD_Close (&CardFile);
CARD_Unmount (slot);
if ( GCSettings.VerifySaves )
{
/*** Verify the written file, but only up to the length we wrote
because the file could be longer due to past writes ***/
if ( VerifyMCFile (buf, slot, filename, byteswritten) )
return byteswritten;
else
return 0;
2008-09-02 03:57:21 +02:00
}
else
2008-12-24 08:58:23 +01:00
return byteswritten;
2008-09-02 03:57:21 +02:00
}
else
if (slot == CARD_SLOTA)
WaitPrompt("Unable to Mount Slot A Memory Card!");
2008-09-02 03:57:21 +02:00
else
WaitPrompt("Unable to Mount Slot B Memory Card!");
2008-09-02 03:57:21 +02:00
return 0;
}