|
@@ -8,6 +8,7 @@
|
|
|
#include "Common/DatException.h"
|
|
|
#include "SubDirectory.h"
|
|
|
#include "Subfile.h"
|
|
|
+#include "SubfileData.h"
|
|
|
|
|
|
#include <locale>
|
|
|
|
|
@@ -86,13 +87,10 @@ namespace LOTRO_DAT {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- long long export_size = 0;
|
|
|
- std::vector<BinaryData> binary_data;
|
|
|
- std::vector<std::u16string> text_data;
|
|
|
- std::vector<YAML::Node> options;
|
|
|
+ std::vector<SubfileData> export_data;
|
|
|
|
|
|
try {
|
|
|
- dictionary_[file_id]->PrepareForExport(file_data, export_size, binary_data, text_data, options);
|
|
|
+ export_data = dictionary_[file_id]->PrepareForExport(file_data);
|
|
|
} catch (std::exception &e) {
|
|
|
fprintf(stderr, "Caught %s exception.", e.what());
|
|
|
|
|
@@ -100,8 +98,8 @@ namespace LOTRO_DAT {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- for (int i = 0; i < export_size; ++i) {
|
|
|
- binary_data[i].WriteToFile(path + "_" + std::to_string(i) + options[i]["ext"].as<std::string>());
|
|
|
+ for (int i = 0; i < export_data.size(); ++i) {
|
|
|
+ export_data[i].binary_data.WriteToFile(path + "_" + std::to_string(i) + export_data[i].options["ext"].as<std::string>());
|
|
|
}
|
|
|
return true;
|
|
|
}
|
|
@@ -129,13 +127,10 @@ namespace LOTRO_DAT {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- long long export_size = 0;
|
|
|
- std::vector<BinaryData> binary_data;
|
|
|
- std::vector<std::u16string> text_data;
|
|
|
- std::vector<YAML::Node> options;
|
|
|
+ std::vector<SubfileData> export_data;
|
|
|
|
|
|
try {
|
|
|
- dictionary_[file_id]->PrepareForExport(file_data, export_size, binary_data, text_data, options);
|
|
|
+ export_data = dictionary_[file_id]->PrepareForExport(file_data);
|
|
|
} catch (std::exception &e) {
|
|
|
fprintf(stderr, "Caught %s exception.", e.what());
|
|
|
|
|
@@ -143,11 +138,9 @@ namespace LOTRO_DAT {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- for (int i = 0; i < export_size; ++i) {
|
|
|
- std::stringstream option;
|
|
|
- option << options[i];
|
|
|
+ for (int i = 0; i < export_data.size(); ++i) {
|
|
|
try {
|
|
|
- db->PushFile(binary_data[i], text_data[i], option.str());
|
|
|
+ db->PushFile(export_data[i]);
|
|
|
} catch (std::exception &e) {
|
|
|
fprintf(stderr, "Caught %s exception.", e.what());
|
|
|
printf("Caught %s exception.", e.what());
|
|
@@ -202,8 +195,8 @@ namespace LOTRO_DAT {
|
|
|
}
|
|
|
|
|
|
|
|
|
- bool DatFile::PatchFile(const char *filename, YAML::Node options, long long dat_id) {
|
|
|
- if (dat_id != dat_id_)
|
|
|
+ bool DatFile::PatchFile(const char *filename, YAML::Node options) {
|
|
|
+ if (options["did"].IsDefined() && options["did"].as<int>() != dat_id_)
|
|
|
return false;
|
|
|
|
|
|
BinaryData data;
|
|
@@ -211,7 +204,7 @@ namespace LOTRO_DAT {
|
|
|
|
|
|
auto file_id = options["fid"].as<long long>();
|
|
|
BinaryData old_data = GetFileData(dictionary_[file_id]);
|
|
|
- data = dictionary_[file_id]->MakeForImport(old_data, data, u"", options);
|
|
|
+ data = dictionary_[file_id]->MakeForImport(old_data, SubfileData(data, u"", options));
|
|
|
|
|
|
try {
|
|
|
ApplyFilePatch(dictionary_[file_id], data);
|
|
@@ -229,18 +222,18 @@ namespace LOTRO_DAT {
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- bool DatFile::PatchFile(const BinaryData &binary_data, const std::u16string &text_data, YAML::Node &options) {
|
|
|
- auto file_id = options["fid"].as<long long>();
|
|
|
+
|
|
|
+ bool DatFile::PatchFile(const SubfileData &data) {
|
|
|
+ auto file_id = data.options["fid"].as<long long>();
|
|
|
Subfile *file = dictionary_[file_id];
|
|
|
BinaryData old_data = GetFileData(file);
|
|
|
- BinaryData data = file->MakeForImport(old_data, binary_data, text_data, options);
|
|
|
- ApplyFilePatch(file, data);
|
|
|
+ BinaryData patch_data = file->MakeForImport(old_data, data);
|
|
|
+ ApplyFilePatch(file, patch_data);
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- bool DatFile::PatchDatabase(Database *db) {
|
|
|
+
|
|
|
+ bool DatFile::PatchAllDatabase(Database *db) {
|
|
|
return false;
|
|
|
}
|
|
|
|