patch_test.cpp 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // Created by Иван_Архипов on 23.11.2017.
  3. //
  4. #define _CRT_SECURE_NO_WARNINGS
  5. #include <iostream>
  6. #include <ctime>
  7. #include <algorithm>
  8. #ifdef WIN32
  9. #include <direct.h>
  10. #define mkdir(dir, mode) _mkdir(dir)
  11. #endif
  12. #include "../LotroDatPatcher.h"
  13. #include "../Subfile.h"
  14. using namespace LOTRO_DAT;
  15. // Change these 2 variables to your path and name of .dat file
  16. const std::string path = "";//"E:\\SteamLibrary\\steamapps\\common\\";//Lord Of The Rings Online\\";
  17. const std::string filename = "client_local_English.dat";
  18. int main() {
  19. const clock_t begin_time = clock();
  20. freopen("errors.log", "w", stderr);
  21. Database db;
  22. db.InitDatabase("sounds.db");
  23. DatFile *a;
  24. try {
  25. a = new DatFile((path + filename).c_str(), 0);
  26. std::cout << "Starting magic...\n";
  27. std::cout << "Files number: " << a->files_number() << std::endl;
  28. a->WriteUnorderedDictionary("");
  29. SubfileData data;
  30. // data.binary_data.ReadFromFile("167855806.ogg");
  31. // data.options["fid"] = "167855806";
  32. // data.options["ext"] = ".ogg";
  33. //
  34. // auto i = a->dictionary_[167855806];
  35. // BinaryData new_data = i->MakeForImport(a->GetFileData(i), data);
  36. // new_data.WriteToFile("test_new_file");
  37. //
  38. // BinaryData old_data = a->GetFileData(i);
  39. // old_data.WriteToFile("test_old_file");
  40. data = db.GetNextFile();
  41. while (data != SubfileData()) {
  42. a->PatchFile(data);
  43. data = db.GetNextFile();
  44. }
  45. } catch (std::exception &e) {
  46. fprintf(stderr, "Caught %s exception.", e.what());
  47. printf("Caught %s exception.", e.what());
  48. fflush(stdout);
  49. printf("Some critical errors occured. Need to stop execution. See information in errors.log file");
  50. fprintf(stderr, "Some critical errors occured. Need to stop execution now...");
  51. }
  52. delete a;
  53. fprintf(stdout, "Spent %f seconds on performing magic! Thank you for your patience!\n",
  54. float(clock() - begin_time) / CLOCKS_PER_SEC);
  55. system("pause");
  56. return 0;
  57. }