mirror of
https://github.com/PCSX2/pcsx2-sourceforge.git
synced 2026-02-04 03:11:18 +01:00
99 lines
2.6 KiB
C
99 lines
2.6 KiB
C
/* Pcsx2 - Pc Ps2 Emulator
|
|
* Copyright (C) 2002-2008 Pcsx2 Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
#ifndef __PATCH_H__
|
|
#define __PATCH_H__
|
|
|
|
//
|
|
// Defines
|
|
//
|
|
#define MAX_PATCH 1024
|
|
|
|
#define IFIS(x,str) if(!strnicmp(x,str,sizeof(str)-1))
|
|
|
|
#define GETNEXT_PARAM() \
|
|
while ( *param && ( *param != ',' ) ) param++; \
|
|
if ( *param ) param++; \
|
|
while ( *param && ( *param == ' ' ) ) param++; \
|
|
if ( *param == 0 ) { SysPrintf( _( "Not enough params for inicommand\n" ) ); return; }
|
|
|
|
//
|
|
// Typedefs
|
|
//
|
|
typedef void (*PATCHTABLEFUNC)( char * text1, char * text2 );
|
|
|
|
typedef struct
|
|
{
|
|
char * text;
|
|
int code;
|
|
PATCHTABLEFUNC func;
|
|
} PatchTextTable;
|
|
|
|
typedef struct
|
|
{
|
|
int enabled;
|
|
int group;
|
|
int type;
|
|
int cpu;
|
|
int placetopatch;
|
|
u32 addr;
|
|
u64 data;
|
|
} IniPatch;
|
|
|
|
//
|
|
// Function prototypes
|
|
//
|
|
void patchFunc_comment( char * text1, char * text2 );
|
|
void patchFunc_gametitle( char * text1, char * text2 );
|
|
void patchFunc_patch( char * text1, char * text2 );
|
|
void patchFunc_fastmemory( char * text1, char * text2 );
|
|
void patchFunc_path3hack( char * text1, char * text2 );
|
|
void patchFunc_roundmode( char * text1, char * text2 );
|
|
void patchFunc_zerogs( char * text1, char * text2 );
|
|
void patchFunc_vunanmode( char * text1, char * text2 );
|
|
|
|
void inifile_trim( char * buffer );
|
|
|
|
//
|
|
// Variables
|
|
//
|
|
extern PatchTextTable commands[];
|
|
|
|
extern PatchTextTable dataType[];
|
|
|
|
extern PatchTextTable cpuCore[];
|
|
|
|
extern IniPatch patch[ MAX_PATCH ];
|
|
extern int patchnumber;
|
|
|
|
|
|
void applypatch( int place );
|
|
void inifile_read( char * name );
|
|
void inifile_command( char * cmd );
|
|
void resetpatch( void );
|
|
|
|
int AddPatch(int Mode, int Place, int Address, int Size, u64 data);
|
|
|
|
void SetFastMemory(int); // iR5900LoadStore.c
|
|
void SetVUNanMemory(int); // iVUmicro.c
|
|
void SetCPUState(u32 sseMXCSR, u32 sseVUMXCSR);
|
|
|
|
void SetRoundMode(u32 ee, u32 vu);
|
|
|
|
#endif /* __PATCH_H__ */
|
|
|