test.cpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 <clocale>
  9. using namespace std;
  10. #include "LotroDatPatcher.h"
  11. using namespace LOTRO_DAT;
  12. #include <string>
  13. #include <locale>
  14. #include <codecvt>
  15. int main() {
  16. const clock_t begin_time = clock();
  17. // Change these 2 variables to your path and name of .dat file
  18. std::string path = "E:\\SteamLibrary\\steamapps\\common\\";//Lord Of The Rings Online\\";
  19. std::string filename = "client_local_English.dat";
  20. bool exportTextsToFiles = false;
  21. bool exportImagesToFiles = false;
  22. bool exportFontsToFiles = true;
  23. bool exportSoundsToFiles = false;
  24. bool exportTexturesToFiles = false;
  25. bool exportUnknownToFiles = true;
  26. bool exportTextsToDb = false;
  27. bool exportImagesToDb = false;
  28. bool exportFontsToDb = true;
  29. bool exportSoundsToDb = false;
  30. bool exportTexturesToDb = false;
  31. bool exportUnknownToDb = false;
  32. // There is no need to touch something else
  33. std::string output_dir = std::string("Data (") + filename + std::string(")\\");
  34. //freopen((output_dir + std::string("errors.log")).c_str(), "w", stderr);
  35. std::string txt_dir = "txt\\";
  36. std::string jpg_dir = "jpg\\";
  37. std::string dds_dir = "dds\\";
  38. std::string wav_dir = "wav\\";
  39. std::string ogg_dir = "ogg\\";
  40. std::string font_dir = "font\\";
  41. std::string unk_dir = "unk\\";
  42. int txt_all = 0, txt_suc = 0;
  43. int jpg_all = 0, jpg_suc = 0;
  44. int dds_all = 0, dds_suc = 0;
  45. int wav_all = 0, wav_suc = 0;
  46. int ogg_all = 0, ogg_suc = 0;
  47. int font_all = 0, font_suc = 0;
  48. int unk_all = 0, unk_suc = 0;
  49. CreateDirectory(output_dir.c_str(), nullptr);
  50. CreateDirectory((output_dir + txt_dir).c_str(), nullptr);
  51. CreateDirectory((output_dir + jpg_dir).c_str(), nullptr);
  52. CreateDirectory((output_dir + dds_dir).c_str(), nullptr);
  53. CreateDirectory((output_dir + wav_dir).c_str(), nullptr);
  54. CreateDirectory((output_dir + ogg_dir).c_str(), nullptr);
  55. CreateDirectory((output_dir + font_dir).c_str(), nullptr);
  56. CreateDirectory((output_dir + unk_dir).c_str(), nullptr);
  57. Database *images = nullptr;
  58. Database *sounds = nullptr;
  59. Database *texts = nullptr;
  60. Database *fonts = nullptr;
  61. Database *textures = nullptr;
  62. Database *unknown = nullptr;
  63. if (exportImagesToDb) images = new Database(output_dir + std::string("Images.db"));
  64. if (exportSoundsToDb) sounds = new Database(output_dir + std::string("Sounds.db"));
  65. if (exportTextsToDb) texts = new Database(output_dir + std::string("Texts.db"));
  66. if (exportFontsToDb) fonts = new Database(output_dir + std::string("Fonts.db"));
  67. if (exportTexturesToDb) textures = new Database(output_dir + std::string("Textures.db"));
  68. if (exportUnknownToDb) unknown = new Database(output_dir + std::string("Unknown.db"));
  69. std::cout << "Starting search...\n";
  70. DatFile a(path + filename);
  71. std::cout << "Total files found: " << a.dictionary().size() << std::endl;
  72. std::cout << "Writing unordered dictionary:\n";
  73. FILE *f;
  74. fopen_s(&f, (output_dir + "dict.txt").c_str(), "w");
  75. fprintf(f, "file_id offset size size2 extension\n");
  76. for (auto i : a.dictionary()) {
  77. std::string extension = "unk";
  78. EXTENSION ext = i.second->ext();
  79. if (ext == TXT) extension = "txt";
  80. if (ext == JPG) extension = "jpg";
  81. if (ext == DDS) extension = "dds";
  82. if (ext == WAV) extension = "wav";
  83. if (ext == OGG) extension = "ogg";
  84. if (ext == FONT) extension = "font";
  85. fprintf(f, "%lld %lld %lld %lld %s\n", i.second->file_id(), i.second->file_offset()
  86. , i.second->file_size(), i.second->block_size(), extension.c_str());
  87. }
  88. fclose(f);
  89. std::cout << "Beginning unpacking...\n";
  90. long long all = a.dictionary().size();
  91. long long counter = 0;
  92. for (auto i : a.dictionary())
  93. {
  94. EXTENSION ext = i.second->ext();
  95. if (ext == TXT) {
  96. txt_all++;
  97. if (exportTextsToDb) txt_suc += i.second->ExportFile((output_dir + txt_dir + std::to_string(i.second->file_id())).c_str(), texts);
  98. if (exportTextsToFiles) txt_suc += i.second->ExportFile((output_dir + txt_dir + std::to_string(i.second->file_id())).c_str());
  99. }
  100. if (ext == JPG) {
  101. jpg_all++;
  102. if (exportImagesToDb) jpg_suc += i.second->ExportFile((output_dir + jpg_dir + std::to_string(i.second->file_id())).c_str(), images);
  103. if (exportImagesToFiles) jpg_suc += i.second->ExportFile((output_dir + jpg_dir + std::to_string(i.second->file_id())).c_str());
  104. }
  105. if (ext == DDS) {
  106. dds_all++;
  107. if (exportTexturesToDb) dds_suc += i.second->ExportFile((output_dir + dds_dir + std::to_string(i.second->file_id())).c_str(), textures);
  108. if (exportTexturesToFiles) dds_suc += i.second->ExportFile((output_dir + dds_dir + std::to_string(i.second->file_id())).c_str());
  109. }
  110. if (ext == WAV) {
  111. wav_all++;
  112. if (exportSoundsToDb) wav_suc += i.second->ExportFile((output_dir + wav_dir + std::to_string(i.second->file_id())).c_str(), sounds);
  113. if (exportSoundsToFiles) wav_suc += i.second->ExportFile((output_dir + wav_dir + std::to_string(i.second->file_id())).c_str());
  114. }
  115. if (ext == OGG) {
  116. ogg_all++;
  117. if (exportSoundsToDb) ogg_suc += i.second->ExportFile((output_dir + ogg_dir + std::to_string(i.second->file_id())).c_str(), sounds);
  118. if (exportSoundsToFiles) ogg_suc += i.second->ExportFile((output_dir + ogg_dir + std::to_string(i.second->file_id())).c_str());
  119. }
  120. if (ext == FONT) {
  121. font_all++;
  122. if (exportFontsToDb) font_suc += i.second->ExportFile((output_dir + font_dir + std::to_string(i.second->file_id())).c_str(), fonts);
  123. if (exportFontsToFiles) font_suc += i.second->ExportFile((output_dir + font_dir + std::to_string(i.second->file_id())).c_str());
  124. }
  125. if (ext == UNKNOWN)
  126. {
  127. unk_all++;
  128. if (exportUnknownToDb) unk_suc += i.second->ExportFile((output_dir + unk_dir + std::to_string(i.second->file_id())).c_str(), unknown);
  129. if (exportUnknownToFiles) unk_suc += i.second->ExportFile((output_dir + unk_dir + std::to_string(i.second->file_id())).c_str());
  130. }
  131. counter++;
  132. if ((counter - 1) * 100ll / all != counter * 100ll / all) {
  133. fprintf(stdout, "Done: %lld%%\n", counter * 100ll / all);
  134. }
  135. }
  136. delete images;
  137. delete sounds;
  138. delete texts;
  139. delete fonts;
  140. delete textures;
  141. delete unknown;
  142. std::cout << "Total found:" << std::endl;
  143. std::cout << "Txt: " << txt_all << std::endl
  144. << "JPG: " << jpg_all << std::endl
  145. << "DDS: " << dds_all << std::endl
  146. << "WAV: " << wav_all << std::endl
  147. << "OGG: " << ogg_all << std::endl
  148. << "Fonts " << font_all << std::endl
  149. << "Unknown: " << unk_all << std::endl;
  150. std::cout << "Total exported (counted both to files and databases):" << std::endl;
  151. std::cout << "Txt: " << txt_suc << std::endl
  152. << "JPG: " << jpg_suc << std::endl
  153. << "DDS: " << dds_suc << std::endl
  154. << "WAV: " << wav_suc << std::endl
  155. << "OGG: " << ogg_suc << std::endl
  156. << "Fonts " << font_suc << std::endl
  157. << "Unknown: " << unk_suc << std::endl;
  158. fprintf(stdout, "Spent %f seconds on running unpacker! Thank you for your patience!\n", float(clock() - begin_time) / CLOCKS_PER_SEC);
  159. system("pause");
  160. return 0;
  161. }