test.cpp 7.4 KB

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