mirror of https://github.com/snes9xgit/snes9x.git
100 lines
2.4 KiB
C++
100 lines
2.4 KiB
C++
/*****************************************************************************\
|
|
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.
|
|
\*****************************************************************************/
|
|
|
|
#ifndef _CHEATS_H_
|
|
#define _CHEATS_H_
|
|
|
|
#include "port.h"
|
|
#include <vector>
|
|
|
|
struct SCheat
|
|
{
|
|
uint32 address;
|
|
uint8 byte;
|
|
uint8 saved_byte;
|
|
bool8 conditional;
|
|
bool8 cond_true;
|
|
uint8 cond_byte;
|
|
bool8 enabled;
|
|
};
|
|
|
|
struct SCheatGroup
|
|
{
|
|
std::string name;
|
|
bool8 enabled;
|
|
std::vector<struct SCheat> cheat;
|
|
};
|
|
|
|
struct SCheatData
|
|
{
|
|
std::vector<struct SCheatGroup> group;
|
|
bool8 enabled;
|
|
uint8 CWRAM[0x20000];
|
|
uint8 CSRAM[0x80000];
|
|
uint8 CIRAM[0x2000];
|
|
uint8 *RAM;
|
|
uint8 *FillRAM;
|
|
uint8 *SRAM;
|
|
uint32 ALL_BITS[0x32000 >> 5];
|
|
uint8 CWatchRAM[0x32000];
|
|
};
|
|
|
|
struct Watch
|
|
{
|
|
bool on;
|
|
int size;
|
|
int format;
|
|
uint32 address;
|
|
char buf[12];
|
|
char desc[32];
|
|
};
|
|
|
|
typedef enum
|
|
{
|
|
S9X_LESS_THAN,
|
|
S9X_GREATER_THAN,
|
|
S9X_LESS_THAN_OR_EQUAL,
|
|
S9X_GREATER_THAN_OR_EQUAL,
|
|
S9X_EQUAL,
|
|
S9X_NOT_EQUAL
|
|
} S9xCheatComparisonType;
|
|
|
|
typedef enum
|
|
{
|
|
S9X_8_BITS,
|
|
S9X_16_BITS,
|
|
S9X_24_BITS,
|
|
S9X_32_BITS
|
|
} S9xCheatDataSize;
|
|
|
|
extern SCheatData Cheat;
|
|
extern Watch watches[16];
|
|
|
|
int S9xAddCheatGroup(const std::string &name, const std::string &cheat);
|
|
int S9xModifyCheatGroup(uint32 index, const std::string &name, const std::string &cheat);
|
|
void S9xEnableCheatGroup(uint32 index);
|
|
void S9xDisableCheatGroup(uint32 index);
|
|
void S9xDeleteCheats(void);
|
|
std::string S9xCheatGroupToText(uint32 index);
|
|
void S9xDeleteCheatGroup(uint32 index);
|
|
bool8 S9xLoadCheatFile(const std::string &filename);
|
|
bool8 S9xSaveCheatFile(const std::string &filename);
|
|
void S9xUpdateCheatsInMemory(void);
|
|
int S9xImportCheatsFromDatabase(const std::string &filename);
|
|
void S9xCheatsDisable(void);
|
|
void S9xCheatsEnable(void);
|
|
std::string S9xCheatValidate(const std::string &cheat);
|
|
|
|
void S9xInitCheatData (void);
|
|
void S9xInitWatchedAddress (void);
|
|
void S9xStartCheatSearch (SCheatData *);
|
|
void S9xSearchForChange (SCheatData *, S9xCheatComparisonType, S9xCheatDataSize, bool8, bool8);
|
|
void S9xSearchForValue (SCheatData *, S9xCheatComparisonType, S9xCheatDataSize, uint32, bool8, bool8);
|
|
void S9xSearchForAddress (SCheatData *, S9xCheatComparisonType, S9xCheatDataSize, uint32, bool8);
|
|
void S9xOutputCheatSearchResults (SCheatData *);
|
|
|
|
#endif
|