test.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. //
  2. // Created by Иван_Архипов on 30.10.2017.
  3. //
  4. #define _CRT_SECURE_NO_WARNINGS
  5. #include <iostream>
  6. #include <windows.h>
  7. #include <ctime>
  8. #include "LotroDatPatcher.h"
  9. using namespace LOTRO_DAT;
  10. int main() {
  11. const clock_t begin_time = clock();
  12. // Change these 2 variables to your path and name of .dat file
  13. std::string path = "E:\\SteamLibrary\\steamapps\\common\\Lord of the Rings Online\\";
  14. std::string filename = "client_local_English.dat";
  15. // There is no need to touch something else
  16. std::string output_dir = std::string("Data (") + filename + std::string(")\\");
  17. std::string txt_dir = "txt\\";
  18. std::string jpg_dir = "jpg\\";
  19. std::string dds_dir = "dds\\";
  20. std::string wav_dir = "wav\\";
  21. std::string ogg_dir = "ogg\\";
  22. std::string font_dir = "font\\";
  23. std::string unk_dir = "unk\\";
  24. int txt_all = 0, txt_suc = 0;
  25. int jpg_all = 0, jpg_suc = 0;
  26. int dds_all = 0, dds_suc = 0;
  27. int wav_all = 0, wav_suc = 0;
  28. int ogg_all = 0, ogg_suc = 0;
  29. int font_all = 0, font_suc = 0;
  30. int unk_all = 0, unk_suc = 0;
  31. CreateDirectory(output_dir.c_str(), nullptr);
  32. CreateDirectory((output_dir + txt_dir).c_str(), nullptr);
  33. CreateDirectory((output_dir + jpg_dir).c_str(), nullptr);
  34. CreateDirectory((output_dir + dds_dir).c_str(), nullptr);
  35. CreateDirectory((output_dir + wav_dir).c_str(), nullptr);
  36. CreateDirectory((output_dir + ogg_dir).c_str(), nullptr);
  37. CreateDirectory((output_dir + font_dir).c_str(), nullptr);
  38. CreateDirectory((output_dir + unk_dir).c_str(), nullptr);
  39. std::cerr << "Starting search...\n";
  40. DatFile a(path + filename);
  41. std::cerr << "Total files found: " << a.dictionary().size() << std::endl;
  42. std::cerr << "Writing unordered dictionary:\n";
  43. FILE *f;
  44. fopen_s(&f, (output_dir + "dict.txt").c_str(), "w");
  45. fprintf(f, "file_id | offset | extension\n");
  46. for (auto i : a.dictionary()) {
  47. std::string extension = "unk";
  48. EXTENSION ext = i.second->ext();
  49. if (ext == TXT) extension = "txt";
  50. if (ext == JPG) extension = "jpg";
  51. if (ext == DDS) extension = "dds";
  52. if (ext == WAV) extension = "wav";
  53. if (ext == OGG) extension = "ogg";
  54. if (ext == FONT) extension = "font";
  55. fprintf(f, "%lld %lld %s\n", i.second->file_id(), i.second->file_offset(), extension.c_str());
  56. }
  57. fclose(f);
  58. std::cerr << "Beginning unpacking...\n";
  59. long long all = a.dictionary().size();
  60. long long counter = 0;
  61. for (auto i : a.dictionary())
  62. {
  63. EXTENSION ext = i.second->ext();
  64. if (ext == TXT) {
  65. txt_all++;
  66. //txt_suc += i.second->ExportFile((output_dir + txt_dir + std::to_string(i.second->file_id())).c_str());
  67. }
  68. if (ext == JPG) {
  69. jpg_all++;
  70. jpg_suc += i.second->ExportFile((output_dir + jpg_dir + std::to_string(i.second->file_id())).c_str());
  71. }
  72. if (ext == DDS) {
  73. dds_all++;
  74. dds_suc += i.second->ExportFile((output_dir + dds_dir + std::to_string(i.second->file_id())).c_str());
  75. }
  76. if (ext == WAV) {
  77. wav_all++;
  78. wav_suc += i.second->ExportFile((output_dir + wav_dir + std::to_string(i.second->file_id())).c_str());
  79. }
  80. if (ext == OGG) {
  81. ogg_all++;
  82. ogg_suc += i.second->ExportFile((output_dir + ogg_dir + std::to_string(i.second->file_id())).c_str());
  83. }
  84. if (ext == FONT) {
  85. font_all++;
  86. //font_suc += i.second->ExportFile((output_dir + font_dir + std::to_string(i.second->file_id())).c_str());
  87. }
  88. if (ext == UNKNOWN)
  89. {
  90. //cout << " - unk\n";
  91. unk_all++;
  92. //unk_suc += i.second->ExportFile((output_dir + unk_dir + std::to_string(i.second->file_id())).c_str());
  93. }
  94. counter++;
  95. if ((counter - 1) * 100ll / all != counter * 100ll / all) {
  96. fprintf(stderr, "Done: %lld%%\n", counter * 100ll / all);
  97. }
  98. }
  99. std::cerr << "Total found:" << std::endl;
  100. std::cerr << "Txt: " << txt_all << std::endl
  101. << "JPG: " << jpg_all << std::endl
  102. << "DDS: " << dds_all << std::endl
  103. << "WAV: " << wav_all << std::endl
  104. << "OGG: " << ogg_all << std::endl
  105. << "Fonts " << font_all << std::endl
  106. << "Unknown: " << unk_all << std::endl;
  107. std::cerr << "Total exported:" << std::endl;
  108. std::cerr << "Txt: " << txt_suc << std::endl
  109. << "JPG: " << jpg_suc << std::endl
  110. << "DDS: " << dds_suc << std::endl
  111. << "WAV: " << wav_suc << std::endl
  112. << "OGG: " << ogg_suc << std::endl
  113. << "Fonts " << font_suc << std::endl
  114. << "Unknown: " << unk_suc << std::endl;
  115. fprintf(stderr, "Spent %f seconds on running unpacker! Thank you for your attention!\n", float(clock() - begin_time) / CLOCKS_PER_SEC);
  116. std::cerr << "Success. Press enter to close\n";
  117. system("pause");
  118. return 0;
  119. }