This repository has been archived by the owner on Mar 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
138 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,140 +1,139 @@ | ||
/*Copyright (c) 2017 The Paradox Game Converters Project | ||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/ | ||
|
||
|
||
|
||
#include <stdexcept> | ||
#include "Configuration.h" | ||
#include "Log.h" | ||
#include "OSCompatibilityLayer.h" | ||
#include "EU4World/EU4World.h" | ||
#include "V2World/V2World.h" | ||
|
||
|
||
|
||
string getSaveFileName(const int argc, const char * argv[]); | ||
void ConvertEU4ToV2(const string& EU4SaveFileName); | ||
int main(const int argc, const char * argv[]) | ||
{ | ||
try | ||
{ | ||
LOG(LogLevel::Info) << "Converter version 1.0Ga"; | ||
LOG(LogLevel::Info) << "Built " << __TIMESTAMP__; | ||
LOG(LogLevel::Debug) << "Current directory is " << Utils::getCurrentDirectory(); | ||
|
||
string EU4SaveFileName = getSaveFileName(argc, argv); | ||
ConvertEU4ToV2(EU4SaveFileName); | ||
|
||
return 0; | ||
} | ||
|
||
catch (const std::exception& e) | ||
{ | ||
LOG(LogLevel::Error) << e.what(); | ||
return -1; | ||
} | ||
} | ||
|
||
|
||
string getSaveFileName(const int argc, const char * argv[]) | ||
{ | ||
if (argc >= 2) | ||
{ | ||
LOG(LogLevel::Info) << "Using input file " << argv[1]; | ||
return argv[1]; | ||
} | ||
else | ||
{ | ||
LOG(LogLevel::Info) << "No input file given, defaulting to input.eu4"; | ||
return "input.eu4"; | ||
} | ||
} | ||
|
||
|
||
void setOutputName(const string& EU4SaveFileName); | ||
void deleteExistingOutputFolder(); | ||
void ConvertEU4ToV2(const string& EU4SaveFileName) | ||
{ | ||
Configuration::getInstance(); | ||
setOutputName(EU4SaveFileName); | ||
deleteExistingOutputFolder(); | ||
|
||
EU4World sourceWorld(EU4SaveFileName); | ||
V2World destWorld(sourceWorld); | ||
|
||
LOG(LogLevel::Info) << "* Conversion complete *"; | ||
} | ||
|
||
|
||
string trimPath(const string& fileName); | ||
string trimExtension(const string& fileName); | ||
string replaceCharacter(string fileName, char character); | ||
void setOutputName(const string& EU4SaveFileName) | ||
{ | ||
string outputName = trimPath(EU4SaveFileName); | ||
outputName = trimExtension(outputName); | ||
outputName = replaceCharacter(outputName, '-'); | ||
outputName = replaceCharacter(outputName, ' '); | ||
|
||
Configuration::setOutputName(outputName); | ||
LOG(LogLevel::Info) << "Using output name " << outputName; | ||
} | ||
|
||
|
||
string trimPath(const string& fileName) | ||
{ | ||
const int lastSlash = fileName.find_last_of("\\"); | ||
return fileName.substr(lastSlash + 1, fileName.length()); | ||
} | ||
|
||
|
||
string trimExtension(const string& fileName) | ||
{ | ||
const int length = fileName.find_last_of("."); | ||
return fileName.substr(0, length); | ||
} | ||
|
||
|
||
string replaceCharacter(string fileName, char character) | ||
{ | ||
int position = fileName.find_first_of(character); | ||
while (position != string::npos) | ||
{ | ||
fileName.replace(position, 1, "_"); | ||
position = fileName.find_first_of(character); | ||
} | ||
|
||
return fileName; | ||
} | ||
|
||
|
||
void deleteExistingOutputFolder() | ||
{ | ||
string outputFolder = Utils::getCurrentDirectory() + "/output/" + Configuration::getOutputName(); | ||
if (Utils::doesFolderExist(outputFolder.c_str())) | ||
{ | ||
if (!Utils::deleteFolder(outputFolder)) | ||
{ | ||
LOG(LogLevel::Error) << "Could not delete pre-existing output folder " << Utils::getCurrentDirectory() << "/output/" << Configuration::getOutputName(); | ||
exit(-1); | ||
} | ||
} | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/ | ||
|
||
|
||
|
||
#include <stdexcept> | ||
#include "Configuration.h" | ||
#include "Log.h" | ||
#include "OSCompatibilityLayer.h" | ||
#include "EU4World/EU4World.h" | ||
#include "V2World/V2World.h" | ||
|
||
|
||
|
||
string getSaveFileName(const int argc, const char * argv[]); | ||
void ConvertEU4ToV2(const string& EU4SaveFileName); | ||
int main(const int argc, const char * argv[]) | ||
{ | ||
try | ||
{ | ||
LOG(LogLevel::Info) << "Converter version 1.0H"; | ||
LOG(LogLevel::Info) << "Built " << __TIMESTAMP__; | ||
LOG(LogLevel::Debug) << "Current directory is " << Utils::getCurrentDirectory(); | ||
|
||
string EU4SaveFileName = getSaveFileName(argc, argv); | ||
ConvertEU4ToV2(EU4SaveFileName); | ||
|
||
return 0; | ||
} | ||
|
||
catch (const std::exception& e) | ||
{ | ||
LOG(LogLevel::Error) << e.what(); | ||
return -1; | ||
} | ||
} | ||
|
||
|
||
string getSaveFileName(const int argc, const char * argv[]) | ||
{ | ||
if (argc >= 2) | ||
{ | ||
LOG(LogLevel::Info) << "Using input file " << argv[1]; | ||
return argv[1]; | ||
} | ||
else | ||
{ | ||
LOG(LogLevel::Info) << "No input file given, defaulting to input.eu4"; | ||
return "input.eu4"; | ||
} | ||
} | ||
|
||
|
||
void setOutputName(const string& EU4SaveFileName); | ||
void deleteExistingOutputFolder(); | ||
void ConvertEU4ToV2(const string& EU4SaveFileName) | ||
{ | ||
Configuration::getInstance(); | ||
setOutputName(EU4SaveFileName); | ||
deleteExistingOutputFolder(); | ||
|
||
EU4World sourceWorld(EU4SaveFileName); | ||
V2World destWorld(sourceWorld); | ||
|
||
LOG(LogLevel::Info) << "* Conversion complete *"; | ||
} | ||
|
||
|
||
string trimPath(const string& fileName); | ||
string trimExtension(const string& fileName); | ||
string replaceCharacter(string fileName, char character); | ||
void setOutputName(const string& EU4SaveFileName) | ||
{ | ||
string outputName = trimPath(EU4SaveFileName); | ||
outputName = trimExtension(outputName); | ||
outputName = replaceCharacter(outputName, '-'); | ||
outputName = replaceCharacter(outputName, ' '); | ||
|
||
Configuration::setOutputName(outputName); | ||
LOG(LogLevel::Info) << "Using output name " << outputName; | ||
} | ||
|
||
|
||
string trimPath(const string& fileName) | ||
{ | ||
const int lastSlash = fileName.find_last_of("\\"); | ||
return fileName.substr(lastSlash + 1, fileName.length()); | ||
} | ||
|
||
|
||
string trimExtension(const string& fileName) | ||
{ | ||
const int length = fileName.find_last_of("."); | ||
return fileName.substr(0, length); | ||
} | ||
|
||
|
||
string replaceCharacter(string fileName, char character) | ||
{ | ||
int position = fileName.find_first_of(character); | ||
while (position != string::npos) | ||
{ | ||
fileName.replace(position, 1, "_"); | ||
position = fileName.find_first_of(character); | ||
} | ||
|
||
return fileName; | ||
} | ||
|
||
|
||
void deleteExistingOutputFolder() | ||
{ | ||
string outputFolder = Utils::getCurrentDirectory() + "/output/" + Configuration::getOutputName(); | ||
if (Utils::doesFolderExist(outputFolder.c_str())) | ||
{ | ||
if (!Utils::deleteFolder(outputFolder)) | ||
{ | ||
LOG(LogLevel::Error) << "Could not delete pre-existing output folder " << Utils::getCurrentDirectory() << "/output/" << Configuration::getOutputName(); | ||
exit(-1); | ||
} | ||
} | ||
} |