snes9xgx/source/ngc/cheatmgr.cpp

95 lines
2.2 KiB
C++
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
2008-08-14 00:44:59 +02:00
*
2009-03-11 18:28:37 +01:00
* Tantric 2008-2009
*
* cheatmgr.cpp
*
* Cheat handling
***************************************************************************/
#include "memmap.h"
#include "cheats.h"
2008-08-12 05:25:16 +02:00
2008-09-09 19:36:48 +02: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"
2008-08-07 07:19:17 +02:00
extern SCheatData Cheat;
2008-08-12 05:25:16 +02:00
/****************************************************************************
* NGCLoadCheatFile
*
* Loads cheat file from save buffer
* Custom version of S9xLoadCheatFile()
***************************************************************************/
2008-08-12 05:25:16 +02:00
static bool NGCLoadCheatFile (int length)
2008-08-12 05:25:16 +02:00
{
Cheat.num_cheats = 0;
uint8 data [28];
int offset = 0;
while (offset < length)
{
if(Cheat.num_cheats >= MAX_CHEATS || (length - offset) < 28)
break;
memcpy (data, savebuffer+offset, 28);
offset += 28;
Cheat.c [Cheat.num_cheats].enabled = (data [0] & 4) == 0;
Cheat.c [Cheat.num_cheats].byte = data [1];
Cheat.c [Cheat.num_cheats].address = data [2] | (data [3] << 8) | (data [4] << 16);
Cheat.c [Cheat.num_cheats].saved_byte = data [5];
Cheat.c [Cheat.num_cheats].saved = (data [0] & 8) != 0;
memcpy (Cheat.c [Cheat.num_cheats].name, &data[8], 20);
Cheat.c [Cheat.num_cheats].name[20] = 0;
Cheat.num_cheats++;
2008-08-12 05:25:16 +02:00
}
2008-09-27 21:52:11 +02:00
return true;
2008-08-12 05:25:16 +02:00
}
/****************************************************************************
* SetupCheats
*
* Erases any prexisting cheats, loads cheats from a cheat file
* Called when a ROM is first loaded
***************************************************************************/
void
SetupCheats()
{
2008-08-12 05:25:16 +02:00
char filepath[1024];
int offset = 0;
uint16 i;
int method = GCSettings.SaveMethod;
if(method == METHOD_AUTO)
method = autoSaveMethod(SILENT);
2009-03-11 18:28:37 +01:00
if(method == METHOD_AUTO)
return;
2008-11-12 08:50:39 +01:00
if(!MakeFilePath(filepath, FILE_CHEAT, method))
return;
2008-09-27 21:52:11 +02:00
AllocSaveBuffer();
2008-11-12 08:50:39 +01:00
offset = LoadFile(filepath, method, SILENT);
2008-08-07 07:19:17 +02:00
// load cheat file if present
2008-08-12 05:25:16 +02:00
if(offset > 0)
2008-08-07 07:19:17 +02:00
{
2008-08-12 05:25:16 +02:00
if(NGCLoadCheatFile (offset))
{
// disable all cheats loaded from the file
for (i = 0; i < Cheat.num_cheats; i++)
S9xDisableCheat(i);
}
}
2008-09-27 21:52:11 +02:00
FreeSaveBuffer ();
}