|
@@ -17,11 +17,19 @@ int main() {
|
|
|
std::string path = "E:\\SteamLibrary\\steamapps\\common\\Lord of the Rings Online\\";
|
|
|
std::string filename = "client_local_English.dat";
|
|
|
|
|
|
- bool exportTextsToDb = false; // Not implemented - do not turn to true;
|
|
|
+ bool exportTextsToFiles = false; // Not implemented yet - do not turn to true;
|
|
|
+ bool exportImagesToFiles = false;
|
|
|
+ bool exportFontsToFiles = false; // Not implemented yet - do not turn to true;
|
|
|
+ bool exportSoundsToFiles = false;
|
|
|
+ bool exportTexturesToFiles = false;
|
|
|
+ bool exportUnknownToFiles = false; // Not implemented yet - do not turn to true;
|
|
|
+
|
|
|
+ bool exportTextsToDb = false; // Not implemented yet - do not turn to true;
|
|
|
bool exportImagesToDb = true;
|
|
|
- bool exportFontsToDb = false; // Not implemented - do not turn to true;
|
|
|
+ bool exportFontsToDb = false; // Not implemented yet - do not turn to true;
|
|
|
bool exportSoundsToDb = true;
|
|
|
bool exportTexturesToDb = true;
|
|
|
+ bool exportUnknownToDb = false; // Not implemented yet - do not turn to true;
|
|
|
|
|
|
// There is no need to touch something else
|
|
|
|
|
@@ -57,12 +65,14 @@ int main() {
|
|
|
Database *texts = nullptr;
|
|
|
Database *fonts = nullptr;
|
|
|
Database *textures = nullptr;
|
|
|
+ Database *unknown = nullptr;
|
|
|
|
|
|
if (exportImagesToDb) images = new Database(output_dir + std::string("Images.db"));
|
|
|
if (exportSoundsToDb) sounds = new Database(output_dir + std::string("Sounds.db"));
|
|
|
if (exportTextsToDb) texts = new Database(output_dir + std::string("Texts.db"));
|
|
|
if (exportFontsToDb) fonts = new Database(output_dir + std::string("Fonts.db"));
|
|
|
if (exportTexturesToDb) textures= new Database(output_dir + std::string("Textures.db"));
|
|
|
+ if (exportUnknownToDb) textures= new Database(output_dir + std::string("Unknown.db"));
|
|
|
|
|
|
std::cerr << "Starting search...\n";
|
|
|
DatFile a(path + filename);
|
|
@@ -95,39 +105,45 @@ int main() {
|
|
|
EXTENSION ext = i.second->ext();
|
|
|
if (ext == TXT) {
|
|
|
txt_all++;
|
|
|
- //txt_suc += i.second->ExportFile((output_dir + txt_dir + std::to_string(i.second->file_id())).c_str(), texts);
|
|
|
+ if (exportTextsToDb) txt_suc += i.second->ExportFile((output_dir + txt_dir + std::to_string(i.second->file_id())).c_str(), texts);
|
|
|
+ if (exportTextsToFiles) txt_suc += i.second->ExportFile((output_dir + txt_dir + std::to_string(i.second->file_id())).c_str());
|
|
|
}
|
|
|
|
|
|
if (ext == JPG) {
|
|
|
jpg_all++;
|
|
|
- jpg_suc += i.second->ExportFile((output_dir + jpg_dir + std::to_string(i.second->file_id())).c_str(), images);
|
|
|
+ if (exportImagesToDb) jpg_suc += i.second->ExportFile((output_dir + jpg_dir + std::to_string(i.second->file_id())).c_str(), images);
|
|
|
+ if (exportImagesToFiles) jpg_suc += i.second->ExportFile((output_dir + jpg_dir + std::to_string(i.second->file_id())).c_str());
|
|
|
}
|
|
|
|
|
|
if (ext == DDS) {
|
|
|
dds_all++;
|
|
|
- dds_suc += i.second->ExportFile((output_dir + dds_dir + std::to_string(i.second->file_id())).c_str(), textures);
|
|
|
+ if (exportTexturesToDb) dds_suc += i.second->ExportFile((output_dir + dds_dir + std::to_string(i.second->file_id())).c_str(), textures);
|
|
|
+ if (exportTexturesToFiles) dds_suc += i.second->ExportFile((output_dir + dds_dir + std::to_string(i.second->file_id())).c_str());
|
|
|
}
|
|
|
|
|
|
if (ext == WAV) {
|
|
|
wav_all++;
|
|
|
- wav_suc += i.second->ExportFile((output_dir + wav_dir + std::to_string(i.second->file_id())).c_str(), sounds);
|
|
|
+ if (exportSoundsToDb) wav_suc += i.second->ExportFile((output_dir + wav_dir + std::to_string(i.second->file_id())).c_str(), sounds);
|
|
|
+ if (exportSoundsToFiles) wav_suc += i.second->ExportFile((output_dir + wav_dir + std::to_string(i.second->file_id())).c_str());
|
|
|
}
|
|
|
|
|
|
if (ext == OGG) {
|
|
|
ogg_all++;
|
|
|
- ogg_suc += i.second->ExportFile((output_dir + ogg_dir + std::to_string(i.second->file_id())).c_str(), sounds);
|
|
|
+ if (exportSoundsToDb) ogg_suc += i.second->ExportFile((output_dir + ogg_dir + std::to_string(i.second->file_id())).c_str(), sounds);
|
|
|
+ if (exportSoundsToFiles) ogg_suc += i.second->ExportFile((output_dir + ogg_dir + std::to_string(i.second->file_id())).c_str());
|
|
|
}
|
|
|
|
|
|
if (ext == FONT) {
|
|
|
font_all++;
|
|
|
- //font_suc += i.second->ExportFile((output_dir + font_dir + std::to_string(i.second->file_id())).c_str(), fonts);
|
|
|
+ if (exportFontsToDb) font_suc += i.second->ExportFile((output_dir + font_dir + std::to_string(i.second->file_id())).c_str(), fonts);
|
|
|
+ if (exportFontsToFiles) font_suc += i.second->ExportFile((output_dir + font_dir + std::to_string(i.second->file_id())).c_str());
|
|
|
}
|
|
|
|
|
|
if (ext == UNKNOWN)
|
|
|
{
|
|
|
- //cout << " - unk\n";
|
|
|
unk_all++;
|
|
|
- //unk_suc += i.second->ExportFile((output_dir + unk_dir + std::to_string(i.second->file_id())).c_str());
|
|
|
+ if (exportUnknownToDb) unk_suc += i.second->ExportFile((output_dir + unk_dir + std::to_string(i.second->file_id())).c_str(), unknown);
|
|
|
+ if (exportUnknownToFiles) unk_suc += i.second->ExportFile((output_dir + unk_dir + std::to_string(i.second->file_id())).c_str());
|
|
|
}
|
|
|
|
|
|
counter++;
|
|
@@ -145,7 +161,7 @@ int main() {
|
|
|
<< "Fonts " << font_all << std::endl
|
|
|
<< "Unknown: " << unk_all << std::endl;
|
|
|
|
|
|
- std::cerr << "Total exported:" << std::endl;
|
|
|
+ std::cerr << "Total exported (counted both to files and databases):" << std::endl;
|
|
|
std::cerr << "Txt: " << txt_suc << std::endl
|
|
|
<< "JPG: " << jpg_suc << std::endl
|
|
|
<< "DDS: " << dds_suc << std::endl
|