2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2010-01-27 23:20:37 +01:00
|
|
|
* Snes9x Nintendo Wii/Gamecube Port
|
2008-08-14 00:44:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007-July 2007
|
2008-11-12 08:50:39 +01:00
|
|
|
* Michniewski 2008
|
2010-01-27 23:20:37 +01:00
|
|
|
* Tantric 2008-2010
|
2008-08-14 00:44:59 +02:00
|
|
|
*
|
|
|
|
* freeze.cpp
|
2008-09-12 07:28:40 +02:00
|
|
|
***************************************************************************/
|
|
|
|
|
2009-02-07 04:01:10 +01:00
|
|
|
#include <malloc.h>
|
2008-08-06 03:09:59 +02:00
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
2009-03-11 18:28:37 +01:00
|
|
|
|
2010-03-22 00:43:54 +01:00
|
|
|
#include "snes9xgx.h"
|
2008-12-18 19:36:30 +01:00
|
|
|
#include "fileop.h"
|
2009-03-11 18:28:37 +01:00
|
|
|
#include "filebrowser.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "video.h"
|
2010-03-22 00:43:54 +01:00
|
|
|
#include "utils/pngu.h"
|
|
|
|
|
|
|
|
#include "snes9x/snes9x.h"
|
|
|
|
#include "snes9x/port.h"
|
|
|
|
#include "snes9x/memmap.h"
|
|
|
|
#include "snes9x/snapshot.h"
|
|
|
|
#include "snes9x/language.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2010-01-27 23:08:56 +01:00
|
|
|
bool8 S9xOpenSnapshotFile(const char *filepath, bool8 readonly, STREAM *file)
|
2009-11-30 09:14:38 +01:00
|
|
|
{
|
2010-01-27 23:08:56 +01:00
|
|
|
return FALSE;
|
2008-08-06 03:09:59 +02:00
|
|
|
}
|
|
|
|
|
2010-01-27 23:08:56 +01:00
|
|
|
void S9xCloseSnapshotFile(STREAM s)
|
2009-11-30 09:14:38 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* SaveSnapshot
|
|
|
|
***************************************************************************/
|
2010-01-27 23:08:56 +01:00
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
int
|
2009-11-25 07:35:14 +01:00
|
|
|
SaveSnapshot (char * filepath, bool silent)
|
2008-08-06 03:09:59 +02:00
|
|
|
{
|
2009-10-02 00:35:12 +02:00
|
|
|
int device;
|
2010-06-04 01:15:34 +02:00
|
|
|
|
2009-10-02 00:35:12 +02:00
|
|
|
if(!FindDevice(filepath, &device))
|
2008-11-12 08:50:39 +01:00
|
|
|
return 0;
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2010-06-04 01:15:34 +02:00
|
|
|
// save screenshot
|
|
|
|
if(gameScreenPngSize > 0)
|
2009-04-15 07:55:17 +02:00
|
|
|
{
|
2010-06-04 01:15:34 +02:00
|
|
|
char screenpath[1024];
|
2011-03-20 18:17:51 +01:00
|
|
|
strcpy(screenpath, filepath);
|
2010-06-04 01:15:34 +02:00
|
|
|
screenpath[strlen(screenpath)-4] = 0;
|
|
|
|
sprintf(screenpath, "%s.png", screenpath);
|
|
|
|
SaveFile((char *)gameScreenPng, screenpath, gameScreenPngSize, silent);
|
2009-04-15 07:55:17 +02:00
|
|
|
}
|
|
|
|
|
2010-01-27 23:08:56 +01:00
|
|
|
STREAM fp = OPEN_STREAM(filepath, "wb");
|
|
|
|
|
|
|
|
if(!fp)
|
2008-08-07 05:25:02 +02:00
|
|
|
{
|
2009-11-25 07:35:14 +01:00
|
|
|
if(!silent)
|
2010-01-27 23:08:56 +01:00
|
|
|
ErrorPrompt("Save failed!");
|
|
|
|
return 0;
|
2008-08-07 05:25:02 +02:00
|
|
|
}
|
2010-01-27 23:08:56 +01:00
|
|
|
|
|
|
|
S9xFreezeToStream(fp);
|
|
|
|
CLOSE_STREAM(fp);
|
|
|
|
|
|
|
|
if(!silent)
|
|
|
|
InfoPrompt("Save successful");
|
|
|
|
return 1;
|
2008-08-06 03:09:59 +02:00
|
|
|
}
|
|
|
|
|
2009-03-11 18:28:37 +01:00
|
|
|
int
|
2009-11-25 07:35:14 +01:00
|
|
|
SaveSnapshotAuto (bool silent)
|
2009-03-11 18:28:37 +01:00
|
|
|
{
|
|
|
|
char filepath[1024];
|
|
|
|
|
2009-10-02 00:35:12 +02:00
|
|
|
if(!MakeFilePath(filepath, FILE_SNAPSHOT, Memory.ROMFilename, 0))
|
2009-03-20 09:26:10 +01:00
|
|
|
return false;
|
|
|
|
|
2009-11-25 07:35:14 +01:00
|
|
|
return SaveSnapshot(filepath, silent);
|
2009-03-11 18:28:37 +01:00
|
|
|
}
|
|
|
|
|
2008-09-12 07:28:40 +02:00
|
|
|
/****************************************************************************
|
2009-11-25 07:35:14 +01:00
|
|
|
* LoadSnapshot
|
2008-09-12 07:28:40 +02:00
|
|
|
***************************************************************************/
|
2008-08-06 03:09:59 +02:00
|
|
|
int
|
2009-11-25 07:35:14 +01:00
|
|
|
LoadSnapshot (char * filepath, bool silent)
|
2008-08-06 03:09:59 +02:00
|
|
|
{
|
2009-10-02 00:35:12 +02:00
|
|
|
int device;
|
|
|
|
|
|
|
|
if(!FindDevice(filepath, &device))
|
2009-03-11 18:28:37 +01:00
|
|
|
return 0;
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2010-01-27 23:08:56 +01:00
|
|
|
STREAM fp = OPEN_STREAM(filepath, "rb");
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2010-01-27 23:08:56 +01:00
|
|
|
if(!fp)
|
2008-11-12 08:50:39 +01:00
|
|
|
{
|
2010-01-27 23:08:56 +01:00
|
|
|
if(!silent)
|
|
|
|
ErrorPrompt("Unable to open snapshot!");
|
|
|
|
return 0;
|
2009-11-25 07:35:14 +01:00
|
|
|
}
|
2010-01-27 23:08:56 +01:00
|
|
|
|
|
|
|
int result = S9xUnfreezeFromStream(fp);
|
|
|
|
CLOSE_STREAM(fp);
|
|
|
|
|
|
|
|
if (result == SUCCESS)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
switch (result)
|
2008-08-12 05:25:16 +02:00
|
|
|
{
|
2010-01-27 23:08:56 +01:00
|
|
|
case WRONG_FORMAT:
|
|
|
|
ErrorPrompt(SAVE_ERR_WRONG_FORMAT);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WRONG_VERSION:
|
|
|
|
ErrorPrompt(SAVE_ERR_WRONG_VERSION);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SNAPSHOT_INCONSISTENT:
|
|
|
|
ErrorPrompt(MOVIE_ERR_SNAPSHOT_INCONSISTENT);
|
|
|
|
break;
|
2008-08-12 05:25:16 +02:00
|
|
|
}
|
2010-01-27 23:08:56 +01:00
|
|
|
return 0;
|
2008-08-06 03:09:59 +02:00
|
|
|
}
|
2009-03-11 18:28:37 +01:00
|
|
|
|
|
|
|
int
|
2009-11-25 07:35:14 +01:00
|
|
|
LoadSnapshotAuto (bool silent)
|
2009-03-11 18:28:37 +01:00
|
|
|
{
|
|
|
|
char filepath[1024];
|
|
|
|
|
2009-10-02 00:35:12 +02:00
|
|
|
if(!MakeFilePath(filepath, FILE_SNAPSHOT, Memory.ROMFilename, 0))
|
2009-03-16 07:58:50 +01:00
|
|
|
return false;
|
2009-03-11 18:28:37 +01:00
|
|
|
|
2009-11-25 07:35:14 +01:00
|
|
|
return LoadSnapshot(filepath, silent);
|
2009-03-11 18:28:37 +01:00
|
|
|
}
|