2010-09-24 23:22:01 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2010
|
|
|
|
* by Dimok
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty. In no event will the authors be held liable for any
|
|
|
|
* damages arising from the use of this software.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any
|
|
|
|
* purpose, including commercial applications, and to alter it and
|
|
|
|
* redistribute it freely, subject to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
|
|
* must not claim that you wrote the original software. If you use
|
|
|
|
* this software in a product, an acknowledgment in the product
|
|
|
|
* documentation would be appreciated but is not required.
|
|
|
|
*
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
|
|
* must not be misrepresented as being the original software.
|
|
|
|
*
|
|
|
|
* 3. This notice may not be removed or altered from any source
|
|
|
|
* distribution.
|
|
|
|
***************************************************************************/
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "CGameSettings.h"
|
2010-09-25 08:54:27 +02:00
|
|
|
#include "FileOperations/fileops.h"
|
2010-09-24 23:22:01 +02:00
|
|
|
|
|
|
|
CGameSettings GameSettings;
|
|
|
|
|
|
|
|
const char * VideoMap[] =
|
|
|
|
{
|
|
|
|
"system",
|
|
|
|
"game",
|
|
|
|
"patch",
|
|
|
|
"pal50",
|
|
|
|
"pal60",
|
|
|
|
"ntsc",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char * LanguageMap[] =
|
|
|
|
{
|
|
|
|
"console",
|
|
|
|
"japanese",
|
|
|
|
"english",
|
|
|
|
"german",
|
|
|
|
"french",
|
|
|
|
"spanish",
|
|
|
|
"italian",
|
|
|
|
"dutch",
|
|
|
|
"schinese",
|
|
|
|
"tchinese",
|
|
|
|
"korean",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
CGameSettings::CGameSettings()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CGameSettings::~CGameSettings()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GameCFG * CGameSettings::GetGameCFG(const char * id)
|
|
|
|
{
|
|
|
|
if(!id)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for(u32 i = 0; i < GameList.size(); ++i)
|
|
|
|
{
|
|
|
|
if(strncmp(id, GameList[i].id, 6) == 0)
|
|
|
|
{
|
|
|
|
return &GameList[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-09-25 10:51:44 +02:00
|
|
|
bool CGameSettings::AddGame(const GameCFG & NewGame)
|
2010-09-24 23:22:01 +02:00
|
|
|
{
|
|
|
|
for(u32 i = 0; i < GameList.size(); ++i)
|
|
|
|
{
|
2010-09-25 10:51:44 +02:00
|
|
|
if(strncmp(NewGame.id, GameList[i].id, 6) == 0)
|
2010-09-24 23:22:01 +02:00
|
|
|
{
|
2010-09-25 10:51:44 +02:00
|
|
|
memcpy(&GameList[i], &NewGame, sizeof(GameCFG));
|
2010-09-24 23:43:46 +02:00
|
|
|
return true;
|
2010-09-24 23:22:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-25 10:51:44 +02:00
|
|
|
GameList.push_back(NewGame);
|
2010-09-24 23:22:01 +02:00
|
|
|
|
2010-09-24 23:43:46 +02:00
|
|
|
return true;
|
2010-09-24 23:22:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CGameSettings::RemoveAll()
|
|
|
|
{
|
|
|
|
GameList.clear();
|
|
|
|
std::vector<GameCFG>().swap(GameList);
|
|
|
|
|
|
|
|
return Save();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CGameSettings::Remove(const char * id)
|
|
|
|
{
|
|
|
|
if(!id)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for(u32 i = 0; i < GameList.size(); ++i)
|
|
|
|
{
|
|
|
|
if(strncmp(id, GameList[i].id, 6) == 0)
|
|
|
|
{
|
|
|
|
GameList.erase(GameList.begin()+i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-24 23:43:46 +02:00
|
|
|
return true;
|
2010-09-24 23:22:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CGameSettings::Load(const char * path)
|
|
|
|
{
|
|
|
|
char line[1024];
|
|
|
|
char filepath[300];
|
2010-09-25 08:54:27 +02:00
|
|
|
snprintf(filepath, sizeof(filepath), "%sGXGameSettings.cfg", path);
|
2010-09-24 23:22:01 +02:00
|
|
|
|
|
|
|
ConfigPath = filepath;
|
|
|
|
|
|
|
|
FILE *file = fopen(filepath, "r");
|
|
|
|
if (!file) return false;
|
|
|
|
|
|
|
|
while (fgets(line, sizeof(line), file))
|
|
|
|
{
|
|
|
|
if (line[0] == '#')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
this->ParseLine(line);
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CGameSettings::Save()
|
|
|
|
{
|
|
|
|
char filepath[300];
|
|
|
|
strcpy(filepath, ConfigPath.c_str());
|
|
|
|
|
|
|
|
char * ptr = strrchr(filepath, '/');
|
|
|
|
if(ptr)
|
|
|
|
ptr[0] = 0;
|
|
|
|
|
2010-09-25 08:54:27 +02:00
|
|
|
CreateSubfolder(filepath);
|
2010-09-24 23:22:01 +02:00
|
|
|
|
|
|
|
FILE * f = fopen(ConfigPath.c_str(), "w");
|
|
|
|
if (!f) return false;
|
|
|
|
|
|
|
|
fprintf(f, "# USB Loader settings file\n");
|
|
|
|
fprintf(f, "# note: this file is automatically generated\n");
|
|
|
|
fprintf(f, "# Num Games: %d\n", GameList.size());
|
|
|
|
for (u32 i = 0; i < GameList.size(); ++i)
|
|
|
|
{
|
|
|
|
fprintf(f, "game:%s = ", GameList[i].id);
|
|
|
|
fprintf(f, "video:%s; ", VideoMap[GameList[i].video]);
|
|
|
|
fprintf(f, "language:%s; ", LanguageMap[GameList[i].language]);
|
|
|
|
fprintf(f, "ocarina:%d; ", GameList[i].ocarina);
|
|
|
|
fprintf(f, "vipatch:%d; ", GameList[i].vipatch);
|
|
|
|
fprintf(f, "ios:%d; ", GameList[i].ios);
|
|
|
|
fprintf(f, "parentalcontrol:%d; ", GameList[i].parentalcontrol);
|
|
|
|
fprintf(f, "errorfix002:%d; ", GameList[i].errorfix002);
|
|
|
|
fprintf(f, "iosreloadblock:%d; ", GameList[i].iosreloadblock);
|
|
|
|
fprintf(f, "patchcountrystrings:%d; ", GameList[i].patchcountrystrings);
|
|
|
|
fprintf(f, "loadalternatedol:%d; ", GameList[i].loadalternatedol);
|
|
|
|
fprintf(f, "alternatedolstart:%d; ", GameList[i].alternatedolstart);
|
|
|
|
fprintf(f, "alternatedolname:%s; ", GameList[i].alternatedolname);
|
|
|
|
fprintf(f, "returnTo:%d;\n", GameList[i].returnTo);
|
|
|
|
}
|
|
|
|
fprintf(f, "# END\n");
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CGameSettings::SetSetting(GameCFG & game, char *name, char *value)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
if (strcmp(name, "video") == 0)
|
|
|
|
{
|
|
|
|
for(i = 0; VideoMap[i] != NULL; ++i)
|
|
|
|
{
|
|
|
|
if(strcasecmp(value, VideoMap[i]) == 0)
|
|
|
|
{
|
|
|
|
game.video = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "language") == 0)
|
|
|
|
{
|
|
|
|
for(i = 0; LanguageMap[i] != NULL; ++i)
|
|
|
|
{
|
|
|
|
if(strcasecmp(value, LanguageMap[i]) == 0)
|
|
|
|
{
|
|
|
|
game.language = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "ocarina") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.ocarina = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "vipatch") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.vipatch = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "ios") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.ios = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "parentalcontrol") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.parentalcontrol = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "errorfix002") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.errorfix002 = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "iosreloadblock") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.iosreloadblock = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "loadalternatedol") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.loadalternatedol = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "alternatedolstart") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.alternatedolstart = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "patchcountrystrings") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.patchcountrystrings = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "alternatedolname") == 0)
|
|
|
|
{
|
|
|
|
snprintf(game.alternatedolname, sizeof(game.alternatedolname), value);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(strcmp(name, "returnTo") == 0)
|
|
|
|
{
|
|
|
|
if (sscanf(value, "%d", &i) == 1)
|
|
|
|
{
|
|
|
|
game.returnTo = i;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CGameSettings::ReadGameID(const char * src, char * GameID, int size)
|
|
|
|
{
|
|
|
|
if(strncasecmp(src, "game:", 5) != 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
char * ptr = strchr(src, ':');
|
|
|
|
if(!ptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
for(i = 0; i < size; i++, ptr++)
|
|
|
|
{
|
|
|
|
if(*ptr == ' ' || *ptr == '\0')
|
|
|
|
break;
|
|
|
|
|
|
|
|
GameID[i] = *ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
GameID[i] = 0;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameSettings::ParseLine(char *line)
|
|
|
|
{
|
|
|
|
char name[1024], value[1024];
|
|
|
|
char GameID[8];
|
|
|
|
|
|
|
|
if(!ReadGameID(line, GameID, 6))
|
|
|
|
return;
|
|
|
|
|
2010-09-25 10:51:44 +02:00
|
|
|
if(strlen(GameID) != 6)
|
|
|
|
return;
|
|
|
|
|
2010-09-24 23:43:46 +02:00
|
|
|
GameCFG NewCFG;
|
|
|
|
memset(&NewCFG, 0, sizeof(GameCFG));
|
2010-09-24 23:22:01 +02:00
|
|
|
|
2010-09-24 23:43:46 +02:00
|
|
|
strcpy(NewCFG.id, GameID);
|
2010-09-24 23:22:01 +02:00
|
|
|
|
|
|
|
char * LinePtr = strchr(line, '=');
|
|
|
|
|
|
|
|
while(LinePtr != NULL)
|
|
|
|
{
|
|
|
|
LinePtr++;
|
|
|
|
|
|
|
|
char * eq = strchr(LinePtr, ':');
|
|
|
|
|
2010-09-25 10:51:44 +02:00
|
|
|
if (!eq) break;
|
2010-09-24 23:22:01 +02:00
|
|
|
|
|
|
|
this->TrimLine(name, LinePtr, sizeof(name));
|
|
|
|
this->TrimLine(value, eq + 1, sizeof(value));
|
|
|
|
|
2010-09-24 23:43:46 +02:00
|
|
|
SetSetting(NewCFG, name, value);
|
2010-09-24 23:22:01 +02:00
|
|
|
|
|
|
|
LinePtr = strchr(LinePtr, ';');
|
|
|
|
}
|
2010-09-24 23:43:46 +02:00
|
|
|
|
2010-09-25 10:51:44 +02:00
|
|
|
AddGame(NewCFG);
|
2010-09-24 23:22:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGameSettings::TrimLine(char *dest, const char *src, int size)
|
|
|
|
{
|
|
|
|
while (*src == ' ')
|
|
|
|
src++;
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
for(i = 0; i < size; i++, src++)
|
|
|
|
{
|
2010-09-25 10:51:44 +02:00
|
|
|
if(*src == ':' || *src == ';' || *src == '\n' ||
|
2010-09-24 23:22:01 +02:00
|
|
|
*src == '\r' || *src == '\0')
|
|
|
|
break;
|
|
|
|
|
|
|
|
dest[i] = *src;
|
|
|
|
}
|
|
|
|
|
|
|
|
dest[i] = '\0';
|
|
|
|
}
|