2012-07-20 16:14:09 +00:00
|
|
|
#include "SystemData.h"
|
|
|
|
#include "GameData.h"
|
|
|
|
#include <boost/filesystem.hpp>
|
2012-07-21 19:06:24 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <stdlib.h>
|
2012-07-20 16:14:09 +00:00
|
|
|
|
2012-07-21 20:57:53 +00:00
|
|
|
std::vector<SystemData*> SystemData::sSystemVector;
|
|
|
|
|
2012-07-20 16:14:09 +00:00
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
2012-07-21 19:06:24 +00:00
|
|
|
SystemData::SystemData(std::string name, std::string startPath, std::string extension, std::string command)
|
2012-07-20 16:14:09 +00:00
|
|
|
{
|
|
|
|
mName = name;
|
|
|
|
mStartPath = startPath;
|
|
|
|
mSearchExtension = extension;
|
2012-07-21 19:06:24 +00:00
|
|
|
mLaunchCommand = command;
|
2012-07-20 16:14:09 +00:00
|
|
|
buildGameList();
|
|
|
|
}
|
|
|
|
|
|
|
|
SystemData::~SystemData()
|
2012-07-21 19:06:24 +00:00
|
|
|
{
|
|
|
|
deleteGames();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string strreplace(std::string& str, std::string replace, std::string with)
|
|
|
|
{
|
|
|
|
size_t pos = str.find(replace);
|
|
|
|
|
|
|
|
return str.replace(pos, replace.length(), with.c_str(), with.length());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemData::launchGame(unsigned int i)
|
|
|
|
{
|
|
|
|
std::cout << "Attempting to launch game...\n";
|
|
|
|
|
|
|
|
std::string command = mLaunchCommand;
|
|
|
|
GameData* game = mGameVector.at(i);
|
|
|
|
|
|
|
|
command = strreplace(command, "%ROM%", game->getValidPath());
|
|
|
|
|
|
|
|
std::cout << " " << command << "\n";
|
|
|
|
std::cout << "=====================================================\n";
|
|
|
|
system(command.c_str());
|
|
|
|
std::cout << "=====================================================\n";
|
|
|
|
|
|
|
|
std::cout << "...launch terminated!\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemData::deleteGames()
|
2012-07-20 16:14:09 +00:00
|
|
|
{
|
|
|
|
for(unsigned int i = 0; i < mGameVector.size(); i++)
|
|
|
|
{
|
|
|
|
delete mGameVector.at(i);
|
|
|
|
}
|
2012-07-21 19:06:24 +00:00
|
|
|
|
2012-07-20 16:14:09 +00:00
|
|
|
mGameVector.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemData::buildGameList()
|
|
|
|
{
|
|
|
|
std::cout << "System " << mName << " building game list...\n";
|
|
|
|
|
2012-07-21 19:06:24 +00:00
|
|
|
deleteGames();
|
|
|
|
|
2012-07-20 16:14:09 +00:00
|
|
|
if(!fs::is_directory(mStartPath))
|
|
|
|
{
|
|
|
|
std::cout << "Error - system \"" << mName << "\"'s start path does not exist!\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(fs::recursive_directory_iterator end, dir(mStartPath); dir != end; ++dir)
|
|
|
|
{
|
2012-07-21 19:06:24 +00:00
|
|
|
//std::cout << "File found: " << *dir << "\n";
|
2012-07-20 16:14:09 +00:00
|
|
|
|
|
|
|
fs::path path = (*dir).path();
|
|
|
|
|
|
|
|
if(fs::is_directory(path))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
std::string name = path.stem().string();
|
|
|
|
std::string extension = path.extension().string();
|
|
|
|
|
|
|
|
if(extension == mSearchExtension)
|
|
|
|
{
|
|
|
|
mGameVector.push_back(new GameData(this, path.string(), name));
|
2012-07-21 19:06:24 +00:00
|
|
|
std::cout << " Added game \"" << name << "\"\n";
|
2012-07-20 16:14:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "...done! Found " << mGameVector.size() << " games.\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int SystemData::getGameCount()
|
|
|
|
{
|
|
|
|
return mGameVector.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
GameData* SystemData::getGame(unsigned int i)
|
|
|
|
{
|
|
|
|
return mGameVector.at(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string SystemData::getName()
|
|
|
|
{
|
|
|
|
return mName;
|
|
|
|
}
|
2012-07-21 19:06:24 +00:00
|
|
|
|
2012-07-21 20:57:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//creates systems from information located in a config file
|
|
|
|
void SystemData::loadConfig(std::string path)
|
2012-07-21 19:06:24 +00:00
|
|
|
{
|
2012-07-21 20:57:53 +00:00
|
|
|
deleteSystems();
|
2012-07-21 19:06:24 +00:00
|
|
|
|
2012-07-21 20:57:53 +00:00
|
|
|
std::cout << "Loading system config file \"" << path << "\"...\n";
|
2012-07-21 19:06:24 +00:00
|
|
|
|
|
|
|
std::ifstream file(path.c_str());
|
|
|
|
if(file.is_open())
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
std::string sysName, sysPath, sysExtension, sysCommand;
|
|
|
|
while(file.good())
|
|
|
|
{
|
|
|
|
std::getline(file, line);
|
|
|
|
|
2012-07-21 20:57:53 +00:00
|
|
|
//skip blank lines and comments
|
|
|
|
if(line.empty() || line[0] == *"#")
|
2012-07-21 19:06:24 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
//find the name (left of the equals sign) and the value (right of the equals sign)
|
|
|
|
bool lineValid = false;
|
|
|
|
std::string varName, varValue;
|
|
|
|
for(unsigned int i = 0; i < line.length(); i++)
|
|
|
|
{
|
|
|
|
if(line[i] == *"=")
|
|
|
|
{
|
|
|
|
lineValid = true;
|
|
|
|
varName = line.substr(0, i);
|
|
|
|
varValue = line.substr(i + 1, line.length() - 1);
|
|
|
|
std::cout << " " << varName << " = " << varValue << "\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lineValid)
|
|
|
|
{
|
2012-07-21 20:57:53 +00:00
|
|
|
//map the value to the appropriate variable
|
2012-07-21 19:06:24 +00:00
|
|
|
if(varName == "NAME")
|
|
|
|
sysName = varValue;
|
|
|
|
else if(varName == "PATH")
|
|
|
|
sysPath = varValue;
|
|
|
|
else if(varName == "EXTENSION")
|
|
|
|
sysExtension = varValue;
|
|
|
|
else if(varName == "COMMAND")
|
|
|
|
sysCommand = varValue;
|
|
|
|
else
|
|
|
|
std::cerr << "Error reading config file - unknown variable name \"" << varName << "\"!\n";
|
|
|
|
|
|
|
|
//we have all our variables - create the system object
|
|
|
|
if(!sysName.empty() && !sysPath.empty() &&!sysExtension.empty() && !sysCommand.empty())
|
|
|
|
{
|
2012-07-21 20:57:53 +00:00
|
|
|
sSystemVector.push_back(new SystemData(sysName, sysPath, sysExtension, sysCommand));
|
2012-07-21 19:06:24 +00:00
|
|
|
|
|
|
|
//reset the variables for the next block (should there be one)
|
2012-07-21 20:57:53 +00:00
|
|
|
sysName = ""; sysPath = ""; sysExtension = ""; sysCommand = "";
|
2012-07-21 19:06:24 +00:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
std::cerr << "Error reading config file \"" << path << "\" - no equals sign found on line \"" << line << "\"!\n";
|
2012-07-21 20:57:53 +00:00
|
|
|
return;
|
2012-07-21 19:06:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
std::cerr << "Error - could not load config file \"" << path << "\"!\n";
|
2012-07-21 20:57:53 +00:00
|
|
|
return;
|
2012-07-21 19:06:24 +00:00
|
|
|
}
|
|
|
|
|
2012-07-21 20:57:53 +00:00
|
|
|
std::cout << "Finished loading config file - created " << sSystemVector.size() << " systems.\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemData::deleteSystems()
|
|
|
|
{
|
|
|
|
for(unsigned int i = 0; i < sSystemVector.size(); i++)
|
|
|
|
{
|
|
|
|
delete sSystemVector.at(i);
|
|
|
|
}
|
|
|
|
sSystemVector.clear();
|
2012-07-21 19:06:24 +00:00
|
|
|
}
|