patch_test.cpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. using namespace LOTRO_DAT;
  14. // Change these 2 variables to your path and name of .dat file
  15. const std::string path = "E:\\SteamLibrary\\steamapps\\common\\";//Lord Of The Rings Online\\";
  16. const std::string filename = "client_local_English.dat";
  17. const std::string patch_filename = "image.jpg";
  18. const int file_id = 0;
  19. int main() {
  20. const clock_t begin_time = clock();
  21. freopen("patch_errors.log", "w", stderr);
  22. try {
  23. std::cout << "Starting search...\n";
  24. DatFile a(path + filename, 0);
  25. std::cout << "Total files found: " << a.dictionary().size() << std::endl;
  26. fprintf(stdout, "Spent %f seconds on running patcher! Thank you for your patience!\n",
  27. float(clock() - begin_time) / CLOCKS_PER_SEC);
  28. system("pause");
  29. } catch (...) {
  30. printf("Some critical errors occured. Need to stop execution. See information in errors.log file");
  31. fprintf(stderr, "Some critical errors occured. Need to stop execution now...");
  32. }
  33. return 0;
  34. }