patch_test.cpp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. #define mkdir(dir, mode) _mkdir(dir)
  10. #endif
  11. #include "../LotroDatPatcher.h"
  12. using namespace LOTRO_DAT;
  13. // Change these 2 variables to your path and name of .dat file
  14. const std::string path = "";//"E:\\SteamLibrary\\steamapps\\common\\";//Lord Of The Rings Online\\";
  15. const std::string filename = "client_local_English.dat";
  16. const std::string patch_filename = "image.jpg";
  17. const int file_id = 0;
  18. int main() {
  19. const clock_t begin_time = clock();
  20. BinaryData t;
  21. t.ReadFromFile(patch_filename);
  22. t.WriteToFile("kek.jpg");
  23. //freopen("errors.log", "w", stderr);
  24. try {
  25. std::cout << "Starting magic...\n";
  26. DatFile a((path + filename).c_str(), 0);
  27. std::cout << "Files number: " << a.files_number() << std::endl;
  28. a.WriteUnorderedDictionary("");
  29. YAML::Node options;
  30. options["fid"] = "1090551300";
  31. options["ext"] = ".jpg";
  32. a.PatchFile(patch_filename.c_str(), options, 0);
  33. //a.PatchFile(patch_filename.c_str(), options, 0);
  34. a.UpdateSubdirectories();
  35. } catch (std::exception &e) {
  36. fprintf(stderr, "Caught %s exception.", e.what());
  37. printf("Caught %s exception.", e.what());
  38. fflush(stdout);
  39. printf("Some critical errors occured. Need to stop execution. See information in errors.log file");
  40. fprintf(stderr, "Some critical errors occured. Need to stop execution now...");
  41. }
  42. fprintf(stdout, "Spent %f seconds on performing magic! Thank you for your patience!\n",
  43. float(clock() - begin_time) / CLOCKS_PER_SEC);
  44. system("pause");
  45. return 0;
  46. }