diff --git a/pcsx2/tinyxml/Makefile.am b/3rdparty/tinyxml/Makefile.am similarity index 100% rename from pcsx2/tinyxml/Makefile.am rename to 3rdparty/tinyxml/Makefile.am diff --git a/pcsx2/tinyxml/tinystr.cpp b/3rdparty/tinyxml/tinystr.cpp similarity index 100% rename from pcsx2/tinyxml/tinystr.cpp rename to 3rdparty/tinyxml/tinystr.cpp diff --git a/pcsx2/tinyxml/tinystr.h b/3rdparty/tinyxml/tinystr.h similarity index 100% rename from pcsx2/tinyxml/tinystr.h rename to 3rdparty/tinyxml/tinystr.h diff --git a/pcsx2/tinyxml/tinyxml.cpp b/3rdparty/tinyxml/tinyxml.cpp similarity index 100% rename from pcsx2/tinyxml/tinyxml.cpp rename to 3rdparty/tinyxml/tinyxml.cpp diff --git a/pcsx2/tinyxml/tinyxml.h b/3rdparty/tinyxml/tinyxml.h similarity index 100% rename from pcsx2/tinyxml/tinyxml.h rename to 3rdparty/tinyxml/tinyxml.h diff --git a/pcsx2/tinyxml/tinyxmlerror.cpp b/3rdparty/tinyxml/tinyxmlerror.cpp similarity index 100% rename from pcsx2/tinyxml/tinyxmlerror.cpp rename to 3rdparty/tinyxml/tinyxmlerror.cpp diff --git a/pcsx2/tinyxml/tinyxmlparser.cpp b/3rdparty/tinyxml/tinyxmlparser.cpp similarity index 100% rename from pcsx2/tinyxml/tinyxmlparser.cpp rename to 3rdparty/tinyxml/tinyxmlparser.cpp diff --git a/pcsx2/Elfheader.cpp b/pcsx2/Elfheader.cpp index c77525c554..275eb28f90 100644 --- a/pcsx2/Elfheader.cpp +++ b/pcsx2/Elfheader.cpp @@ -494,15 +494,16 @@ void ElfApplyPatches() Console.SetTitle( wxsFormat( _("Game running [CRC=%s]"), filename.c_str() ) ); if( !EmuConfig.EnablePatches ) return; - - if(LoadPatch( filename ) != 0) + + /*if(LoadPatch( filename ) != 0) { Console.WriteLn( "XML Loader returned an error. Trying to load a pnach..." ); inifile_read( filename.ToAscii().data() ); } else - Console.WriteLn( "XML Loading success. Will not load from pnach..." ); + Console.WriteLn( "XML Loading success. Will not load from pnach..." );*/ + inifile_read( filename.ToAscii().data() ); applypatch( 0 ); } diff --git a/pcsx2/Linux/pcsx2.cbp b/pcsx2/Linux/pcsx2.cbp index 118067e048..a597f061ed 100644 --- a/pcsx2/Linux/pcsx2.cbp +++ b/pcsx2/Linux/pcsx2.cbp @@ -1,470 +1,464 @@ - - - - - - + + + + + + diff --git a/pcsx2/windows/VCprojects/pcsx2_2008.vcproj b/pcsx2/windows/VCprojects/pcsx2_2008.vcproj index 50d357d1e0..6f11e80973 100644 --- a/pcsx2/windows/VCprojects/pcsx2_2008.vcproj +++ b/pcsx2/windows/VCprojects/pcsx2_2008.vcproj @@ -304,150 +304,6 @@ RelativePath="..\..\PrecompiledHeader.h" > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/pcsx2/xmlpatchloader.cpp b/pcsx2/xmlpatchloader.cpp deleted file mode 100644 index d765ab30ef..0000000000 --- a/pcsx2/xmlpatchloader.cpp +++ /dev/null @@ -1,368 +0,0 @@ -/* PCSX2 - PS2 Emulator for PCs - * Copyright (C) 2002-2009 PCSX2 Dev Team - * - * PCSX2 is free software: you can redistribute it and/or modify it under the terms - * of the GNU Lesser General Public License as published by the Free Software Found- - * ation, either version 3 of the License, or (at your option) any later version. - * - * PCSX2 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 PCSX2. - * If not, see . - */ -#include "PrecompiledHeader.h" - -using namespace std; - -#include "tinyxml/tinyxml.h" - -#include "Patch.h" -#include "System.h" - -#if !defined(_WIN32) -#ifndef strnicmp -#define strnicmp strncasecmp -#endif - -#ifndef stricmp -#define stricmp strcasecmp -#endif -#else -#define strnicmp _strnicmp -#define stricmp _stricmp -#endif - -#include "../cheatscpp.h" - -int LoadGroup(TiXmlNode *group, int parent); - -Group::Group(int nParent,bool nEnabled, string &nTitle): - parentIndex(nParent),enabled(nEnabled),title(nTitle) -{ -} - -Patch::Patch(int patch, int grp, bool en, string &ttl): - title(ttl), - group(grp), - enabled(en), - patchIndex(patch) -{ -} - -Patch Patch::operator =(const Patch&p) -{ - title.assign(p.title); - group=p.group; - enabled=p.enabled; - patchIndex=p.patchIndex; - return *this; -} - - -vector groups; -vector patches; - -int LoadPatch( const wxString& crc ) -{ - wxString pfile( Path::Combine( L"patches", crc ) + L".xml" ); - patchnumber=0; - - TiXmlDocument doc( pfile.ToAscii().data() ); - bool loadOkay = doc.LoadFile(); - if ( !loadOkay ) - { - //Console.Error("XML Patch Loader: Could not load file '%s'. Error='%s'.", pfile, doc.ErrorDesc() ); - return -1; - } - else - { - Console.WriteLn("XML Patch Loader: '%s' Found", pfile.c_str() ); - } - - TiXmlNode *root = doc.FirstChild("GAME"); - if(!root) - { - Console.Error("XML Patch Loader: Root node is not GAME, invalid patch file."); - return -1; - } - - TiXmlElement *rootelement = root->ToElement(); - - const char *title=rootelement->Attribute("title"); - if(title) - Console.WriteLn("XML Patch Loader: Game Title: %s", title); - - int result=LoadGroup(root,-1); - if(result) { - patchnumber=0; - return result; - } - - wxString uTitle( wxString::FromAscii( title ) ); - if( uTitle.IsEmpty() ) uTitle = L""; - Console.SetTitle( uTitle ); - - return 0; -} - - -int LoadGroup(TiXmlNode *group,int gParent) -{ - TiXmlElement *groupelement = group->ToElement(); - - const char *gtitle=groupelement->Attribute("title"); - if(gtitle) - Console.WriteLn("XML Patch Loader: Group Title: %s", gtitle); - - const char *enable=groupelement->Attribute("enabled"); - bool gEnabled=true; - if(enable) - { - if(strcmp(enable,"false")==0) - { - Console.WriteLn("XML Patch Loader: Group is disabled."); - gEnabled=false; - } - } - - TiXmlNode *comment = group->FirstChild("COMMENT"); - if(comment) - { - TiXmlElement *cmelement = comment->ToElement(); - const char *comment = cmelement->GetText(); - if(comment) - Console.WriteLn("XML Patch Loader: Group Comment:\n%s\n---", comment); - } - - string t; - - if(gtitle) - t.assign(gtitle); - else - t.clear(); - - Group gp=Group(gParent,gEnabled,t); - groups.push_back(gp); - - int gIndex=groups.size()-1; - - // only valid for recompilers - TiXmlNode *fastmemory=group->FirstChild("FASTMEMORY"); - if(fastmemory!=NULL) - SetFastMemory(1); - - TiXmlNode *zerogs=group->FirstChild("ZEROGS"); - if(zerogs!=NULL) - { - TiXmlElement *rm=zerogs->ToElement(); - const char* pid = rm->FirstAttribute()->Value(); - - if( pid != NULL ) - sscanf(pid, "%x", &g_ZeroGSOptions); - else - Console.WriteLn("zerogs attribute wrong"); - } - - TiXmlNode *roundmode=group->FirstChild("ROUNDMODE"); - if(roundmode!=NULL) - { - int eetype=0x0000; - int vutype=0x6000; - - TiXmlElement *rm=roundmode->ToElement(); - if(rm!=NULL) - { - const char *eetext=rm->Attribute("ee"); - const char *vutext=rm->Attribute("vu"); - - if(eetext != NULL) { - eetype = 0xffff; - if( stricmp(eetext, "near") == 0 ) { - eetype = 0x0000; - } - else if( stricmp(eetext, "down") == 0 ) { - eetype = 0x2000; - } - else if( stricmp(eetext, "up") == 0 ) { - eetype = 0x4000; - } - else if( stricmp(eetext, "chop") == 0 ) { - eetype = 0x6000; - } - } - - if(vutext != NULL) { - vutype = 0xffff; - if( stricmp(vutext, "near") == 0 ) { - vutype = 0x0000; - } - else if( stricmp(vutext, "down") == 0 ) { - vutype = 0x2000; - } - else if( stricmp(vutext, "up") == 0 ) { - vutype = 0x4000; - } - else if( stricmp(vutext, "chop") == 0 ) { - vutype = 0x6000; - } - } - } - if(( eetype == 0xffff )||( vutype == 0xffff )) { - Console.Notice("XML Patch Loader: WARNING: Invalid value in ROUNDMODE."); - } - else { - SetRoundMode(eetype,vutype); - } - } - - TiXmlNode *cpatch = group->FirstChild("PATCH"); - while(cpatch) - { - TiXmlElement *celement = cpatch->ToElement(); - if(!celement) - { - Console.Error("XML Patch Loader: ERROR: Couldn't convert node to element." ); - return -1; - } - - - const char *ptitle=celement->Attribute("title"); - const char *penable=celement->Attribute("enabled"); - const char *applymode=celement->Attribute("applymode"); - const char *place=celement->Attribute("place"); - const char *address=celement->Attribute("address"); - const char *size=celement->Attribute("size"); - const char *value=celement->Attribute("value"); - - if(ptitle) { - Console.WriteLn("XML Patch Loader: Patch title: %s", ptitle); - } - - bool penabled=gEnabled; - if(penable) - { - if(strcmp(penable,"false")==0) - { - Console.Notice("XML Patch Loader: Patch is disabled."); - penabled=false; - } - } - - if(!applymode) applymode="frame"; - if(!place) place="EE"; - if(!address) { - Console.Error("XML Patch Loader: ERROR: Patch doesn't contain an address."); - return -1; - } - if(!value) { - Console.Error("XML Patch Loader: ERROR: Patch doesn't contain a value."); - return -1; - } - if(!size) { - Console.Notice("XML Patch Loader: WARNING: Patch doesn't contain the size. Trying to deduce from the value size."); - switch(strlen(value)) - { - case 8: - case 7: - case 6: - case 5: - size="32"; - break; - case 4: - case 3: - size="16"; - break; - case 2: - case 1: - size="8"; - break; - case 0: - size="0"; - break; - default: - size="64"; - break; - } - } - - if(strcmp(applymode,"startup")==0) - { - patch[patchnumber].placetopatch=0; - } else - if(strcmp(applymode,"vsync")==0) - { - patch[patchnumber].placetopatch=1; - } else - { - Console.Error("XML Patch Loader: ERROR: Invalid applymode attribute.\n"); - patchnumber=0; - return -1; - } - - if(strcmp(place,"EE")==0) - { - patch[patchnumber].cpu= CPU_EE; - } else - if(strcmp(place,"IOP")==0) - { - patch[patchnumber].cpu= CPU_IOP; - } else - { - Console.Error("XML Patch Loader: ERROR: Invalid place attribute.\n"); - patchnumber=0; - return -1; - } - - if(strcmp(size,"64")==0) - { - patch[patchnumber].type = DOUBLE_T; - } else - if(strcmp(size,"32")==0) - { - patch[patchnumber].type = WORD_T; - } else - if(strcmp(size,"16")==0) - { - patch[patchnumber].type = SHORT_T; - } else - if(strcmp(size,"8")==0) - { - patch[patchnumber].type = BYTE_T; - } else - { - Console.Error("XML Patch Loader: ERROR: Invalid size attribute.\n"); - patchnumber=0; - return -1; - } - - sscanf( address, "%X", &patch[ patchnumber ].addr ); - sscanf( value, "%I64X", &patch[ patchnumber ].data ); - - patch[patchnumber].enabled=penabled?1:0; - - string pt; - - if(ptitle) - pt.assign(ptitle); - else - pt.clear(); - - Patch p=Patch(patchnumber,gIndex,penabled,pt); - patches.push_back(p); - - patchnumber++; - - cpatch = cpatch->NextSibling("PATCH"); - } - - cpatch = group->FirstChild("GROUP"); - while(cpatch) { - int result=LoadGroup(cpatch,gIndex); - if(result) return result; - cpatch = cpatch->NextSibling("GROUP"); - } - - return 0; -}