WiiFlow_Lite/source/cheats/gct.cpp

254 lines
6.0 KiB
C++
Raw Normal View History

2012-01-21 21:57:41 +01:00
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <string.h>
#include "gct.h"
#define ERRORRANGE "Error: CheatNr out of range"
GCTCheats::GCTCheats(void)
{
Reset();
}
GCTCheats::~GCTCheats(void)
{
string sGameID ="";
string sGameTitle = "";
}
unsigned int GCTCheats::getCnt()
{
return iCntCheats;
}
string GCTCheats::getGameName(void)
{
return sGameTitle;
}
string GCTCheats::getGameID(void)
{
return sGameID;
}
string GCTCheats::getCheat(unsigned int nr)
{
if (nr <= (iCntCheats-1))
return sCheats[nr];
return ERRORRANGE;
}
string GCTCheats::getCheatName(unsigned int nr)
{
if (nr <= (iCntCheats-1))
return sCheatName[nr];
return ERRORRANGE;
}
string GCTCheats::getCheatComment(unsigned int nr)
{
if (nr <= (iCntCheats-1))
return sCheatComment[nr];
return ERRORRANGE;
}
//creates gct from internal array
int GCTCheats::createGCT(const char * filename)
{
std::ofstream filestr;
2012-01-21 21:57:41 +01:00
filestr.open(filename);
if (filestr.fail()) return 0;
//Header and Footer
char header[] = { 0x00, 0xd0, 0xc0, 0xde, 0x00, 0xd0, 0xc0, 0xde};
char footer[] = { 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
filestr.write(header,sizeof(header));
for (unsigned int i=0; i < iCntCheats; ++i)
if (sCheatSelected[i] == true)
{
// cheat is selected, export it
string buf = getCheat(i);
int x = 0;
while (x < (int)buf.size())
{
string temp = buf.substr(x,2);
long int li = strtol(temp.c_str(),NULL,16);
temp = li;
filestr.write(temp.c_str(),1);
x +=2;
}
}
filestr.write(footer,sizeof(footer));
filestr.close();
return 1;
}
//rewrite and save code.txt to mark which codes are #selected#
2012-01-21 21:57:41 +01:00
int GCTCheats::createTXT(const char * filename)
{
// save txt file
std::fstream file;
file.open(filename, std::ios::out);
2012-01-21 21:57:41 +01:00
file << sGameID << std::endl;
file << sGameTitle << std::endl << std::endl;
2012-01-21 21:57:41 +01:00
for (unsigned int i=0; i < iCntCheats; ++i)
if (sCheatSelected[i])
{
file << sCheatName[i] << std::endl;
2012-01-21 21:57:41 +01:00
for (unsigned int j=0; j+8 < sCheats[i].size(); j+=16)
file << sCheats[i].substr(j,8) << " " << sCheats[i].substr(j+8,8) << std::endl;
2012-01-21 21:57:41 +01:00
file << "#selected#" << sCheatComment[i] << std::endl;
file << std::endl;
2012-01-21 21:57:41 +01:00
}
for (unsigned int i=0; i < iCntCheats; ++i)
if (!sCheatSelected[i])
{
file << sCheatName[i] << std::endl;
2012-01-21 21:57:41 +01:00
for (unsigned int j=0; j+8 < sCheats[i].size(); j+=16)
file << sCheats[i].substr(j,8) << " " << sCheats[i].substr(j+8,8) << std::endl;
2012-01-21 21:57:41 +01:00
if (sCheatComment[i].size() > 1)
file << sCheatComment[i] << std::endl;
file << std::endl;
2012-01-21 21:57:41 +01:00
}
file.close();
return 1;
}
int GCTCheats::openTxtfile(const char * filename)
{
Reset();
std::ifstream filestr;
2012-01-21 21:57:41 +01:00
filestr.open(filename);
if (filestr.fail()) return 0;
int i = 0;
string str;
filestr.seekg(0, std::ios_base::end);
2012-01-21 21:57:41 +01:00
int size = filestr.tellg();
if (size <= 0) return -1;
filestr.seekg(0, std::ios_base::beg);
2012-01-21 21:57:41 +01:00
getline(filestr,sGameID);
if (sGameID[sGameID.length() - 1] == '\r')
sGameID.erase(sGameID.length() - 1);
getline(filestr,sGameTitle);
if (sGameTitle[sGameTitle.length() - 1] == '\r')
sGameTitle.erase(sGameTitle.length() - 1);
while (!filestr.eof())
{
getline(filestr,sCheatName[i]);
2012-01-21 21:57:41 +01:00
if (sCheatName[i][sCheatName[i].length() - 1] == '\r')
sCheatName[i].erase(sCheatName[i].length() - 1);
if (sCheatName[i].length() == 0)
continue;
2012-01-21 21:57:41 +01:00
string cheatdata;
while (!filestr.eof())
2012-01-21 21:57:41 +01:00
{
getline(filestr,str);
if (str[str.length() - 1] == '\r')
str.erase(str.length() - 1);
if (str == "" || str[0] == '\r' || str[0] == '\n')
break;
if (IsCode(str))
2012-01-21 21:57:41 +01:00
{
// remove any garbage (comment) after code
while (str.size() > 17)
str.erase(str.length() - 1);
cheatdata.append(str);
size_t found=cheatdata.find(' ');
cheatdata.replace(found,1,"");
}
else
sCheatComment[i] = str;
}
if (cheatdata.size() > 0)
2012-01-21 21:57:41 +01:00
{
sCheats[i] = cheatdata;
sCheatSelected[i] = false;
// wiiflow rewrites and saves code.txt with #selected# added to comments if cheat selected
2012-01-21 21:57:41 +01:00
if (sCheatComment[i].compare(0,10,"#selected#") == 0)
{
sCheatSelected[i] = true;
sCheatComment[i].erase(0,10);
}
i++;
}
else
sCheatComment[i] = "";
if (i == MAXCHEATS) break;
}
iCntCheats = i;
filestr.close();
return 1;
}
bool GCTCheats::IsCode(const std::string& str)
{
if (str[8] == ' ' && str.size() >= 17)
{
// accept strings longer than 17 in case there is a comment on the same line as the code
char part1[9];
char part2[9];
snprintf(part1,sizeof(part1),"%c%c%c%c%c%c%c%c",str[0],str[1],str[2],str[3],str[4],str[5],str[6],str[7]);
snprintf(part2,sizeof(part2),"%c%c%c%c%c%c%c%c",str[9],str[10],str[11],str[12],str[13],str[14],str[15],str[16]);
2012-01-21 21:57:41 +01:00
if ((strtok(part1,"0123456789ABCDEFabcdef") == NULL) && (strtok(part2,"0123456789ABCDEFabcdef") == NULL))
return true;
}
return false;
}
int GCTCheats::IsCodeEx(const std::string& str)
{
int status = 2;
if (str[8] == ' ' && str.size() >= 17)
{
// accept strings longer than 17 in case there is a comment on the same line as the code
for (int i = 0; i < 17; ++i)
{
if (!(str[i] == '0' || str[i] == '1' || str[i] == '2' || str[i] == '3' ||
str[i] == '4' || str[i] == '5' || str[i] == '6' || str[i] == '7' ||
str[i] == '8' || str[i] == '9' || str[i] == 'a' || str[i] == 'b' ||
str[i] == 'c' || str[i] == 'd' || str[i] == 'e' || str[i] == 'f' ||
str[i] == 'A' || str[i] == 'B' || str[i] == 'C' || str[i] == 'D' ||
str[i] == 'E' || str[i] == 'F' || str[i] == 'x' || str[i] == 'X') && i!=8 )
status = 0; // not even x -> no code
if ((str[i] == 'x' || str[i] == 'X') && i!=8 && status >= 1)
status = 1;
}
return status;
}
return 0; // no code
}
void GCTCheats::Reset()
{
iCntCheats = 0;
for (int i=0;i<MAXCHEATS;++i)
sCheatSelected[i] = false;
}