2018-12-03 12:26:02 +01:00
|
|
|
/*****************************************************************************\
|
|
|
|
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.
|
|
|
|
\*****************************************************************************/
|
2008-09-10 07:57:37 +02:00
|
|
|
|
2008-08-07 05:25:32 +02:00
|
|
|
#ifndef _CHEATS_H_
|
|
|
|
#define _CHEATS_H_
|
|
|
|
|
2018-11-12 00:57:16 +01:00
|
|
|
#include "port.h"
|
2022-11-07 22:26:28 +01:00
|
|
|
#include "bml.h"
|
2018-11-12 00:57:16 +01:00
|
|
|
#include <vector>
|
2010-01-27 23:08:56 +01:00
|
|
|
|
2008-08-07 05:25:32 +02:00
|
|
|
struct SCheat
|
|
|
|
{
|
2010-01-27 23:08:56 +01:00
|
|
|
uint32 address;
|
|
|
|
uint8 byte;
|
|
|
|
uint8 saved_byte;
|
2018-11-12 00:57:16 +01:00
|
|
|
bool8 conditional;
|
|
|
|
bool8 cond_true;
|
|
|
|
uint8 cond_byte;
|
2010-01-27 23:08:56 +01:00
|
|
|
bool8 enabled;
|
2018-11-12 00:57:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SCheatGroup
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
bool8 enabled;
|
|
|
|
std::vector<struct SCheat> c;
|
2008-08-07 05:25:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SCheatData
|
|
|
|
{
|
2018-11-12 00:57:16 +01:00
|
|
|
std::vector<struct SCheatGroup> g;
|
|
|
|
bool8 enabled;
|
2010-01-27 23:08:56 +01:00
|
|
|
uint8 CWRAM[0x20000];
|
2021-08-27 16:40:49 +02:00
|
|
|
uint8 CSRAM[0x80000];
|
2010-01-27 23:08:56 +01:00
|
|
|
uint8 CIRAM[0x2000];
|
|
|
|
uint8 *RAM;
|
|
|
|
uint8 *FillRAM;
|
|
|
|
uint8 *SRAM;
|
|
|
|
uint32 ALL_BITS[0x32000 >> 5];
|
|
|
|
uint8 CWatchRAM[0x32000];
|
2008-09-10 07:57:37 +02:00
|
|
|
};
|
|
|
|
|
2010-01-27 23:08:56 +01:00
|
|
|
struct Watch
|
|
|
|
{
|
|
|
|
bool on;
|
|
|
|
int size;
|
|
|
|
int format;
|
|
|
|
uint32 address;
|
|
|
|
char buf[12];
|
|
|
|
char desc[32];
|
2008-08-07 05:25:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2010-01-27 23:08:56 +01:00
|
|
|
S9X_LESS_THAN,
|
|
|
|
S9X_GREATER_THAN,
|
|
|
|
S9X_LESS_THAN_OR_EQUAL,
|
|
|
|
S9X_GREATER_THAN_OR_EQUAL,
|
|
|
|
S9X_EQUAL,
|
|
|
|
S9X_NOT_EQUAL
|
|
|
|
} S9xCheatComparisonType;
|
2008-08-07 05:25:32 +02:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2010-01-27 23:08:56 +01:00
|
|
|
S9X_8_BITS,
|
|
|
|
S9X_16_BITS,
|
|
|
|
S9X_24_BITS,
|
|
|
|
S9X_32_BITS
|
|
|
|
} S9xCheatDataSize;
|
|
|
|
|
|
|
|
extern SCheatData Cheat;
|
|
|
|
extern Watch watches[16];
|
|
|
|
|
2018-11-12 00:57:16 +01:00
|
|
|
int S9xAddCheatGroup (const char *name, const char *cheat);
|
|
|
|
int S9xModifyCheatGroup (uint32 index, const char *name, const char *cheat);
|
|
|
|
void S9xEnableCheatGroup (uint32 index);
|
|
|
|
void S9xDisableCheatGroup (uint32 index);
|
2010-01-27 23:08:56 +01:00
|
|
|
void S9xDeleteCheats (void);
|
2018-11-12 00:57:16 +01:00
|
|
|
char *S9xCheatGroupToText (uint32 index);
|
|
|
|
void S9xDeleteCheatGroup (uint32 index);
|
|
|
|
bool8 S9xLoadCheatFile (const char *filename);
|
|
|
|
bool8 S9xSaveCheatFile (const char *filename);
|
|
|
|
void S9xUpdateCheatsInMemory (void);
|
|
|
|
int S9xImportCheatsFromDatabase(const char *filename);
|
|
|
|
void S9xCheatsDisable (void);
|
|
|
|
void S9xCheatsEnable (void);
|
2019-05-16 02:55:44 +02:00
|
|
|
char *S9xCheatValidate (const char *cheat);
|
2018-11-12 00:57:16 +01:00
|
|
|
|
2010-01-27 23:08:56 +01:00
|
|
|
void S9xInitCheatData (void);
|
|
|
|
void S9xInitWatchedAddress (void);
|
2008-08-07 05:25:32 +02:00
|
|
|
void S9xStartCheatSearch (SCheatData *);
|
2010-01-27 23:08:56 +01:00
|
|
|
void S9xSearchForChange (SCheatData *, S9xCheatComparisonType, S9xCheatDataSize, bool8, bool8);
|
|
|
|
void S9xSearchForValue (SCheatData *, S9xCheatComparisonType, S9xCheatDataSize, uint32, bool8, bool8);
|
|
|
|
void S9xSearchForAddress (SCheatData *, S9xCheatComparisonType, S9xCheatDataSize, uint32, bool8);
|
2008-08-07 05:25:32 +02:00
|
|
|
void S9xOutputCheatSearchResults (SCheatData *);
|
2022-11-07 22:26:28 +01:00
|
|
|
void S9xLoadCheatsFromBMLNode (bml_node *);
|
2008-08-07 05:25:32 +02:00
|
|
|
|
2010-01-27 23:08:56 +01:00
|
|
|
const char * S9xGameGenieToRaw (const char *, uint32 &, uint8 &);
|
|
|
|
const char * S9xProActionReplayToRaw (const char *, uint32 &, uint8 &);
|
|
|
|
const char * S9xGoldFingerToRaw (const char *, uint32 &, bool8 &, uint8 &, uint8 bytes[3]);
|
2009-11-30 09:14:38 +01:00
|
|
|
|
2010-01-27 23:08:56 +01:00
|
|
|
#endif
|