12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- //
- // Created by Иван_Архипов on 23.11.2017.
- //
- #define _CRT_SECURE_NO_WARNINGS
- #include <iostream>
- #include <ctime>
- #include <algorithm>
- #ifdef WIN32
- #include <direct.h>
- #define mkdir(dir, mode) _mkdir(dir)
- #endif
- #include "../LotroDatPatcher.h"
- #include "../Subfile.h"
- using namespace LOTRO_DAT;
- // Change these 2 variables to your path and name of .dat file
- const std::string path = "";//"E:\\SteamLibrary\\steamapps\\common\\";//Lord Of The Rings Online\\";
- const std::string filename = "client_local_English.dat";
- int main() {
- const clock_t begin_time = clock();
- freopen("errors.log", "w", stderr);
- Database db;
- db.InitDatabase("sounds.db");
- DatFile *a;
- try {
- a = new DatFile((path + filename).c_str(), 0);
- std::cout << "Starting magic...\n";
- std::cout << "Files number: " << a->files_number() << std::endl;
- a->WriteUnorderedDictionary("");
- SubfileData data;
- // data.binary_data.ReadFromFile("167855806.ogg");
- // data.options["fid"] = "167855806";
- // data.options["ext"] = ".ogg";
- //
- // auto i = a->dictionary_[167855806];
- // BinaryData new_data = i->MakeForImport(a->GetFileData(i), data);
- // new_data.WriteToFile("test_new_file");
- //
- // BinaryData old_data = a->GetFileData(i);
- // old_data.WriteToFile("test_old_file");
- data = db.GetNextFile();
- while (data != SubfileData()) {
- a->PatchFile(data);
- data = db.GetNextFile();
- }
- } catch (std::exception &e) {
- fprintf(stderr, "Caught %s exception.", e.what());
- printf("Caught %s exception.", e.what());
- fflush(stdout);
- printf("Some critical errors occured. Need to stop execution. See information in errors.log file");
- fprintf(stderr, "Some critical errors occured. Need to stop execution now...");
- }
- delete a;
- fprintf(stdout, "Spent %f seconds on performing magic! Thank you for your patience!\n",
- float(clock() - begin_time) / CLOCKS_PER_SEC);
- system("pause");
- return 0;
- }
|