patch_test.cpp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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("errors.log", "w", stderr);
  22. Database db;
  23. db.InitDatabase("images.db");
  24. BinaryData binary_data;
  25. std::u16string text_data;
  26. YAML::Node options;
  27. DatFile *a;
  28. try {
  29. a = new DatFile((path + filename).c_str(), 0);
  30. std::cout << "Starting magic...\n";
  31. std::cout << "Files number: " << a->files_number() << std::endl;
  32. a->WriteUnorderedDictionary("");
  33. while (db.GetNextFile(binary_data, text_data, options)) {
  34. //binary_data.ReadFromFile("1090552107.jpg");
  35. //options["fid"] = "1090552107";
  36. //options["ext"] = ".jpg";
  37. a->PatchFile(binary_data, text_data, options);
  38. //delete a;
  39. }
  40. } catch (std::exception &e) {
  41. fprintf(stderr, "Caught %s exception.", e.what());
  42. printf("Caught %s exception.", e.what());
  43. fflush(stdout);
  44. printf("Some critical errors occured. Need to stop execution. See information in errors.log file");
  45. fprintf(stderr, "Some critical errors occured. Need to stop execution now...");
  46. }
  47. delete a;
  48. fprintf(stdout, "Spent %f seconds on performing magic! Thank you for your patience!\n",
  49. float(clock() - begin_time) / CLOCKS_PER_SEC);
  50. system("pause");
  51. return 0;
  52. }