snes9x/cheats2.cpp

762 lines
16 KiB
C++
Raw Normal View History

/*****************************************************************************\
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
This file is licensed under the Snes9x License.
For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/
2010-09-25 15:46:12 +00:00
#include "snes9x.h"
#include "memmap.h"
#include "cheats.h"
2018-04-26 00:29:26 +00:00
#include "bml.h"
2010-09-25 15:46:12 +00:00
static inline uint8 S9xGetByteFree (uint32 Address)
2010-09-25 15:46:12 +00:00
{
2018-04-27 20:56:26 +00:00
int block = (Address & 0xffffff) >> MEMMAP_SHIFT;
uint8 *GetAddress = Memory.Map[block];
uint8 byte;
if (GetAddress >= (uint8 *) CMemory::MAP_LAST)
{
byte = *(GetAddress + (Address & 0xffff));
return (byte);
}
switch ((pint) GetAddress)
{
case CMemory::MAP_CPU:
byte = S9xGetCPU(Address & 0xffff);
return (byte);
case CMemory::MAP_PPU:
if (CPU.InDMAorHDMA && (Address & 0xff00) == 0x2100)
return (OpenBus);
byte = S9xGetPPU(Address & 0xffff);
return (byte);
case CMemory::MAP_LOROM_SRAM:
case CMemory::MAP_SA1RAM:
// Address & 0x7fff : offset into bank
// Address & 0xff0000 : bank
// bank >> 1 | offset : SRAM address, unbound
// unbound & SRAMMask : SRAM offset
byte = *(Memory.SRAM + ((((Address & 0xff0000) >> 1) | (Address & 0x7fff)) & Memory.SRAMMask));
return (byte);
case CMemory::MAP_LOROM_SRAM_B:
byte = *(Multi.sramB + ((((Address & 0xff0000) >> 1) | (Address & 0x7fff)) & Multi.sramMaskB));
return (byte);
case CMemory::MAP_HIROM_SRAM:
case CMemory::MAP_RONLY_SRAM:
byte = *(Memory.SRAM + (((Address & 0x7fff) - 0x6000 + ((Address & 0xf0000) >> 3)) & Memory.SRAMMask));
return (byte);
case CMemory::MAP_BWRAM:
byte = *(Memory.BWRAM + ((Address & 0x7fff) - 0x6000));
return (byte);
case CMemory::MAP_DSP:
byte = S9xGetDSP(Address & 0xffff);
return (byte);
case CMemory::MAP_SPC7110_ROM:
byte = S9xGetSPC7110Byte(Address);
return (byte);
case CMemory::MAP_SPC7110_DRAM:
byte = S9xGetSPC7110(0x4800);
return (byte);
case CMemory::MAP_C4:
byte = S9xGetC4(Address & 0xffff);
return (byte);
case CMemory::MAP_OBC_RAM:
byte = S9xGetOBC1(Address & 0xffff);
return (byte);
case CMemory::MAP_SETA_DSP:
byte = S9xGetSetaDSP(Address);
return (byte);
case CMemory::MAP_SETA_RISC:
byte = S9xGetST018(Address);
return (byte);
case CMemory::MAP_BSX:
byte = S9xGetBSX(Address);
return (byte);
case CMemory::MAP_NONE:
default:
byte = OpenBus;
return (byte);
}
2010-09-25 15:46:12 +00:00
}
static inline void S9xSetByteFree (uint8 Byte, uint32 Address)
2010-09-25 15:46:12 +00:00
{
2018-04-27 20:56:26 +00:00
int block = (Address & 0xffffff) >> MEMMAP_SHIFT;
uint8 *SetAddress = Memory.Map[block];
if (SetAddress >= (uint8 *) CMemory::MAP_LAST)
{
*(SetAddress + (Address & 0xffff)) = Byte;
return;
}
switch ((pint) SetAddress)
{
case CMemory::MAP_CPU:
S9xSetCPU(Byte, Address & 0xffff);
return;
case CMemory::MAP_PPU:
if (CPU.InDMAorHDMA && (Address & 0xff00) == 0x2100)
return;
S9xSetPPU(Byte, Address & 0xffff);
return;
case CMemory::MAP_LOROM_SRAM:
if (Memory.SRAMMask)
{
*(Memory.SRAM + ((((Address & 0xff0000) >> 1) | (Address & 0x7fff)) & Memory.SRAMMask)) = Byte;
CPU.SRAMModified = TRUE;
}
return;
case CMemory::MAP_LOROM_SRAM_B:
if (Multi.sramMaskB)
{
*(Multi.sramB + ((((Address & 0xff0000) >> 1) | (Address & 0x7fff)) & Multi.sramMaskB)) = Byte;
CPU.SRAMModified = TRUE;
}
return;
case CMemory::MAP_HIROM_SRAM:
if (Memory.SRAMMask)
{
*(Memory.SRAM + (((Address & 0x7fff) - 0x6000 + ((Address & 0xf0000) >> 3)) & Memory.SRAMMask)) = Byte;
CPU.SRAMModified = TRUE;
}
return;
case CMemory::MAP_BWRAM:
*(Memory.BWRAM + ((Address & 0x7fff) - 0x6000)) = Byte;
CPU.SRAMModified = TRUE;
return;
case CMemory::MAP_SA1RAM:
*(Memory.SRAM + (Address & 0xffff)) = Byte;
return;
case CMemory::MAP_DSP:
S9xSetDSP(Byte, Address & 0xffff);
return;
case CMemory::MAP_C4:
S9xSetC4(Byte, Address & 0xffff);
return;
case CMemory::MAP_OBC_RAM:
S9xSetOBC1(Byte, Address & 0xffff);
return;
case CMemory::MAP_SETA_DSP:
S9xSetSetaDSP(Byte, Address);
return;
case CMemory::MAP_SETA_RISC:
S9xSetST018(Byte, Address);
return;
case CMemory::MAP_BSX:
S9xSetBSX(Byte, Address);
return;
case CMemory::MAP_NONE:
default:
return;
}
2010-09-25 15:46:12 +00:00
}
void S9xInitWatchedAddress (void)
{
2018-04-26 00:29:26 +00:00
for (unsigned int i = 0; i < sizeof(watches) / sizeof(watches[0]); i++)
watches[i].on = false;
2010-09-25 15:46:12 +00:00
}
void S9xInitCheatData (void)
{
2018-04-26 00:29:26 +00:00
Cheat.RAM = Memory.RAM;
Cheat.SRAM = Memory.SRAM;
Cheat.FillRAM = Memory.FillRAM;
}
void S9xUpdateCheatInMemory (SCheat *c)
{
uint8 byte;
if (!c->enabled)
return;
byte = S9xGetByteFree (c->address);
if (byte != c->byte)
{
/* The game wrote a different byte to the address, update saved_byte */
c->saved_byte = byte;
if (c->conditional)
{
if (c->saved_byte != c->cond_byte && c->cond_true)
{
/* Condition is now false, let the byte stand */
c->cond_true = false;
}
else if (c->saved_byte == c->cond_byte && !c->cond_true)
{
c->cond_true = true;
S9xSetByteFree (c->byte, c->address);
}
}
else
S9xSetByteFree (c->byte, c->address);
}
else if (c->conditional)
{
if (byte == c->cond_byte)
{
c->cond_true = true;
c->saved_byte = byte;
S9xSetByteFree (c->byte, c->address);
}
}
2010-09-25 15:46:12 +00:00
}
2018-04-26 00:29:26 +00:00
void S9xDisableCheat (SCheat *c)
2010-09-25 15:46:12 +00:00
{
2018-04-26 00:29:26 +00:00
if (!c->enabled)
return;
if (!Cheat.enabled)
2018-04-26 18:03:26 +00:00
{
c->enabled = false;
return;
2018-04-26 18:03:26 +00:00
}
/* Make sure we restore the up-to-date written byte */
S9xUpdateCheatInMemory (c);
c->enabled = false;
2018-04-26 00:29:26 +00:00
if (c->conditional && !c->cond_true)
return;
S9xSetByteFree (c->saved_byte, c->address);
c->cond_true = false;
2010-09-25 15:46:12 +00:00
}
2018-04-26 00:29:26 +00:00
void S9xDeleteCheatGroup (uint32 g)
2010-09-25 15:46:12 +00:00
{
2018-04-26 00:29:26 +00:00
unsigned int i;
if (g >= Cheat.g.size ())
return;
2010-09-25 15:46:12 +00:00
2018-04-26 00:29:26 +00:00
for (i = 0; i < Cheat.g[g].c.size (); i++)
{
S9xDisableCheat (&Cheat.g[g].c[i]);
}
2010-09-25 15:46:12 +00:00
2018-04-26 00:29:26 +00:00
delete[] Cheat.g[g].name;
Cheat.g.erase (Cheat.g.begin () + g);
2010-09-25 15:46:12 +00:00
}
void S9xDeleteCheats (void)
{
2018-04-26 00:29:26 +00:00
unsigned int i;
for (i = 0; i < Cheat.g.size (); i++)
{
S9xDisableCheatGroup (i);
delete[] Cheat.g[i].name;
}
Cheat.g.clear ();
2010-09-25 15:46:12 +00:00
}
2018-04-26 00:29:26 +00:00
void S9xEnableCheat (SCheat *c)
2010-09-25 15:46:12 +00:00
{
2018-04-26 00:29:26 +00:00
uint8 byte;
if (c->enabled)
return;
c->enabled = true;
if (!Cheat.enabled)
return;
2018-04-26 00:29:26 +00:00
byte = S9xGetByteFree(c->address);
if (c->conditional)
{
if (byte != c->cond_byte)
return;
c->cond_true = true;
}
c->saved_byte = byte;
S9xSetByteFree (c->byte, c->address);
2010-09-25 15:46:12 +00:00
}
2018-04-26 00:29:26 +00:00
void S9xEnableCheatGroup (uint32 num)
2010-09-25 15:46:12 +00:00
{
2018-04-26 00:29:26 +00:00
unsigned int i;
for (i = 0; i < Cheat.g[num].c.size (); i++)
{
S9xEnableCheat (&Cheat.g[num].c[i]);
}
Cheat.g[num].enabled = true;
2010-09-25 15:46:12 +00:00
}
2018-04-26 00:29:26 +00:00
void S9xDisableCheatGroup (uint32 num)
2010-09-25 15:46:12 +00:00
{
2018-04-26 00:29:26 +00:00
unsigned int i;
for (i = 0; i < Cheat.g[num].c.size (); i++)
{
S9xDisableCheat (&Cheat.g[num].c[i]);
}
2018-04-26 00:29:26 +00:00
Cheat.g[num].enabled = false;
2010-09-25 15:46:12 +00:00
}
2018-04-26 00:29:26 +00:00
SCheat S9xTextToCheat (char *text)
2010-09-25 15:46:12 +00:00
{
2018-04-26 00:29:26 +00:00
SCheat c;
unsigned int byte = 0;
unsigned int cond_byte = 0;
c.enabled = false;
c.conditional = false;
if (!S9xGameGenieToRaw (text, c.address, c.byte))
{
byte = c.byte;
}
else if (!S9xProActionReplayToRaw (text, c.address, c.byte))
{
byte = c.byte;
}
else if (sscanf (text, "%x = %x ? %x", &c.address, &cond_byte, &byte) == 3)
2018-04-26 00:29:26 +00:00
{
c.conditional = true;
}
else if (sscanf (text, "%x = %x", &c.address, &byte) == 2)
2018-04-26 00:29:26 +00:00
{
}
else if (sscanf (text, "%x / %x / %x", &c.address, &cond_byte, &byte) == 3)
2018-04-26 00:29:26 +00:00
{
c.conditional = true;
}
else if (sscanf (text, "%x / %x", &c.address, &byte) == 2)
2018-04-26 00:29:26 +00:00
{
}
else
{
c.address = 0;
byte = 0;
}
c.byte = byte;
c.cond_byte = cond_byte;
return c;
2010-09-25 15:46:12 +00:00
}
2018-04-26 00:29:26 +00:00
SCheatGroup S9xCreateCheatGroup (const char *name, const char *cheat)
2010-09-25 15:46:12 +00:00
{
2018-04-26 00:29:26 +00:00
SCheatGroup g;
char *code;
char *code_string = strdup (cheat);
2010-09-25 15:46:12 +00:00
2018-04-26 00:29:26 +00:00
g.name = strdup (name);
g.enabled = false;
2010-09-25 15:46:12 +00:00
2018-04-26 00:29:26 +00:00
for (code = strtok (code_string, "+"); code; code = strtok (NULL, "+"))
{
if (code)
{
SCheat c = S9xTextToCheat (code);
if (c.address)
g.c.push_back (c);
}
}
delete[] code_string;
return g;
}
int S9xAddCheatGroup (const char *name, const char *cheat)
{
SCheatGroup g = S9xCreateCheatGroup (name, cheat);
if (g.c.size () == 0)
return -1;
2018-04-30 22:01:39 +00:00
Cheat.g.push_back (g);
2018-04-26 00:29:26 +00:00
return Cheat.g.size () - 1;
}
int S9xModifyCheatGroup (uint32 num, const char *name, const char *cheat)
{
2018-04-27 20:42:19 +00:00
if (num >= Cheat.g.size())
return -1;
2018-04-26 00:29:26 +00:00
S9xDisableCheatGroup (num);
delete[] Cheat.g[num].name;
Cheat.g[num] = S9xCreateCheatGroup (name, cheat);
return num;
}
char *S9xCheatToText (SCheat *c)
{
int size = 10; /* 6 address, 1 =, 2 byte, 1 NUL */
char *text;
2010-09-25 15:46:12 +00:00
2018-04-26 00:29:26 +00:00
if (c->conditional)
size += 3; /* additional 2 byte, 1 ? */
text = new char[size];
if (c->conditional)
2018-06-03 23:31:29 +00:00
snprintf (text, size, "%06x=%02x?%02x", c->address, c->cond_byte, c->byte);
2018-04-26 00:29:26 +00:00
else
2018-06-03 23:31:29 +00:00
snprintf (text, size, "%06x=%02x", c->address, c->byte);
2018-04-26 00:29:26 +00:00
return text;
2010-09-25 15:46:12 +00:00
}
2018-04-27 20:56:26 +00:00
char *S9xCheatGroupToText (SCheatGroup *g)
2010-09-25 15:46:12 +00:00
{
2018-04-27 20:56:26 +00:00
std::string text = "";
unsigned int i;
if (g->c.size () == 0)
return NULL;
for (i = 0; i < g->c.size (); i++)
{
char *tmp = S9xCheatToText (&g->c[i]);
if (i != 0)
text += " + ";
2018-04-27 20:56:26 +00:00
text += tmp;
delete[] tmp;
}
return strdup (text.c_str ());
2018-04-27 20:42:19 +00:00
}
2018-04-26 00:29:26 +00:00
2018-04-27 20:56:26 +00:00
char *S9xCheatValidate (char *code_string)
2018-04-27 20:42:19 +00:00
{
2018-04-27 20:56:26 +00:00
SCheatGroup g = S9xCreateCheatGroup ("temp", code_string);
2018-04-27 20:42:19 +00:00
2018-04-27 20:56:26 +00:00
delete[] g.name;
2018-04-27 20:42:19 +00:00
2018-04-27 20:56:26 +00:00
if (g.c.size() > 0)
{
return S9xCheatGroupToText (&g);
}
2018-04-27 20:42:19 +00:00
2018-04-27 20:56:26 +00:00
return NULL;
2018-04-27 20:42:19 +00:00
}
char *S9xCheatGroupToText (uint32 num)
{
2018-04-27 20:56:26 +00:00
if (num >= Cheat.g.size ())
return NULL;
2018-04-26 00:29:26 +00:00
2018-04-27 20:56:26 +00:00
return S9xCheatGroupToText (&Cheat.g[num]);
2018-04-26 00:29:26 +00:00
}
void S9xUpdateCheatsInMemory (void)
{
unsigned int i;
unsigned int j;
if (!Cheat.enabled)
return;
2018-04-26 00:29:26 +00:00
for (i = 0; i < Cheat.g.size (); i++)
{
for (j = 0; j < Cheat.g[i].c.size (); j++)
{
S9xUpdateCheatInMemory (&Cheat.g[i].c[j]);
}
}
}
2018-04-28 01:35:20 +00:00
static int S9xCheatIsDuplicate (char *name, char *code)
{
unsigned int i;
for (i = 0; i < Cheat.g.size(); i++)
{
if (!strcmp (name, Cheat.g[i].name))
{
char *code_string = S9xCheatGroupToText (i);
char *validated = S9xCheatValidate (code);
if (validated && !strcmp (code_string, validated))
{
free (code_string);
free (validated);
return TRUE;
}
free (code_string);
free (validated);
}
}
return FALSE;
}
2018-04-26 00:29:26 +00:00
static void S9xLoadCheatsFromBMLNode (bml_node *n)
{
unsigned int i;
for (i = 0; i < n->child.size (); i++)
{
if (!strcasecmp (n->child[i]->name, "cheat"))
{
char *desc = NULL;
char *code = NULL;
bool8 enabled = false;
bml_node *c = n->child[i];
bml_node *tmp = NULL;
tmp = bml_find_sub(c, "name");
2018-06-04 15:36:55 +00:00
if (!tmp)
desc = (char *) "";
2018-06-04 15:36:55 +00:00
else
desc = tmp->data;
2018-04-26 00:29:26 +00:00
tmp = bml_find_sub(c, "code");
2018-06-04 15:36:55 +00:00
if (tmp)
code = tmp->data;
2018-04-26 00:29:26 +00:00
2018-06-04 22:19:00 +00:00
if (bml_find_sub(c, "enable"))
2018-04-26 00:29:26 +00:00
enabled = true;
if (code && !S9xCheatIsDuplicate (desc, code))
2018-04-26 00:29:26 +00:00
{
int index = S9xAddCheatGroup (desc, code);
if (enabled)
S9xEnableCheatGroup (index);
}
}
}
return;
2010-09-25 15:46:12 +00:00
}
static bool8 S9xLoadCheatFileClassic (const char *filename)
{
FILE *fs;
uint8 data[28];
fs = fopen(filename, "rb");
if (!fs)
return (FALSE);
while (fread ((void *) data, 1, 28, fs) == 28)
{
SCheat c;
char name[21];
char cheat[10];
c.enabled = (data[0] & 4) == 0;
c.byte = data[1];
c.address = data[2] | (data[3] << 8) | (data[4] << 16);
memcpy (name, &data[8], 20);
name[20] = 0;
2018-07-03 18:43:55 +00:00
snprintf (cheat, 10, "%x=%x", c.address, c.byte);
S9xAddCheatGroup (name, cheat);
if (c.enabled)
S9xEnableCheatGroup (Cheat.g.size () - 1);
}
fclose(fs);
return (TRUE);
}
2010-09-25 15:46:12 +00:00
bool8 S9xLoadCheatFile (const char *filename)
{
2018-04-26 00:29:26 +00:00
bml_node *bml = NULL;
bml_node *n = NULL;
2010-09-25 15:46:12 +00:00
2018-04-26 00:29:26 +00:00
bml = bml_parse_file (filename);
if (!bml)
{
return S9xLoadCheatFileClassic (filename);
}
2010-09-25 15:46:12 +00:00
n = bml_find_sub (bml, "cheat");
2018-04-26 00:29:26 +00:00
if (n)
{
S9xLoadCheatsFromBMLNode (bml);
2018-04-26 00:29:26 +00:00
}
2010-09-25 15:46:12 +00:00
2018-04-26 00:29:26 +00:00
bml_free_node (bml);
2010-09-25 15:46:12 +00:00
if (!n)
{
return S9xLoadCheatFileClassic (filename);
}
2018-04-26 00:29:26 +00:00
return (TRUE);
2010-09-25 15:46:12 +00:00
}
bool8 S9xSaveCheatFile (const char *filename)
{
2018-04-26 00:29:26 +00:00
unsigned int i;
FILE *file = NULL;
if (Cheat.g.size () == 0)
{
remove (filename);
2018-04-26 00:29:26 +00:00
return TRUE;
}
2018-04-26 00:29:26 +00:00
file = fopen (filename, "w");
if (!file)
return FALSE;
for (i = 0; i < Cheat.g.size (); i++)
{
char *txt = S9xCheatGroupToText (i);
2018-04-26 00:29:26 +00:00
fprintf (file,
"cheat\n"
" name: %s\n"
" code: %s\n"
"%s\n",
Cheat.g[i].name ? Cheat.g[i].name : "",
txt,
2018-06-04 22:19:00 +00:00
Cheat.g[i].enabled ? " enable\n" : ""
);
delete[] txt;
2018-04-26 00:29:26 +00:00
}
fclose (file);
return TRUE;
}
void S9xCheatsDisable (void)
{
unsigned int i;
if (!Cheat.enabled)
return;
for (i = 0; i < Cheat.g.size (); i++)
{
if (Cheat.g[i].enabled)
{
S9xDisableCheatGroup (i);
Cheat.g[i].enabled = TRUE;
}
}
Cheat.enabled = FALSE;
}
void S9xCheatsEnable (void)
{
unsigned int i;
if (Cheat.enabled)
return;
Cheat.enabled = TRUE;
for (i = 0; i < Cheat.g.size (); i++)
{
if (Cheat.g[i].enabled)
{
Cheat.g[i].enabled = FALSE;
S9xEnableCheatGroup (i);
}
}
}
2018-04-28 01:35:20 +00:00
int S9xImportCheatsFromDatabase (const char *filename)
2018-04-26 00:29:26 +00:00
{
bml_node *bml;
char sha256_txt[65];
char hextable[] = "0123456789abcdef";
unsigned int i;
bml = bml_parse_file (filename);
if (!bml)
2018-04-28 01:35:20 +00:00
return -1; /* No file */
2018-04-26 00:29:26 +00:00
for (i = 0; i < 32; i++)
{
sha256_txt[i * 2] = hextable[Memory.ROMSHA256[i] >> 4];
sha256_txt[i * 2 + 1] = hextable[Memory.ROMSHA256[i] & 0xf];
}
sha256_txt[64] = '\0';
for (i = 0; i < bml->child.size (); i++)
{
if (!strcasecmp (bml->child[i]->name, "cartridge"))
{
bml_node *n;
if ((n = bml_find_sub (bml->child[i], "sha256")))
{
if (!strcasecmp (n->data, sha256_txt))
{
S9xLoadCheatsFromBMLNode (bml->child[i]);
bml_free_node (bml);
2018-04-28 01:35:20 +00:00
return 0;
2018-04-26 00:29:26 +00:00
}
}
}
}
bml_free_node (bml);
2018-04-28 01:35:20 +00:00
return -2; /* No codes */
2010-09-25 15:46:12 +00:00
}