extract_test.cpp 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. //
  2. // Created by Иван_Архипов on 30.10.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. // Change these variables to true if you want export catecory to files.
  18. const bool exportImagesToFiles = false;
  19. const bool exportFontsToFiles = true;
  20. const bool exportSoundsToFiles = false;
  21. const bool exportTexturesToFiles = false;
  22. const bool exportUnknownToFiles = true;
  23. // Change these variables to true if you want export catecory to databases.
  24. const bool exportTextsToDb = true;
  25. const bool exportImagesToDb = false;
  26. const bool exportFontsToDb = false;
  27. const bool exportSoundsToDb = false;
  28. const bool exportTexturesToDb = false;
  29. const bool exportUnknownToDb = false;
  30. // There is no need to change anything else
  31. int main() {
  32. const clock_t begin_time = clock();
  33. std::time_t time = std::time(nullptr);
  34. mkdir("Extracted data", 744);
  35. std::time_t result = std::time(nullptr);
  36. char *ttime = std::asctime(std::localtime(&result));
  37. char *out_time = new char[25];
  38. memcpy(out_time, ttime, 24);
  39. out_time[24] = '\0';
  40. std::string output_dir = std::string("Extracted data\\") + filename + " " + std::string(out_time) + "\\";
  41. std::replace(output_dir.begin(), output_dir.end(), ':', '-');
  42. mkdir(output_dir.c_str(), 744);
  43. freopen((output_dir + std::string("errors.log")).c_str(), "w", stderr);
  44. try {
  45. std::string txt_dir = "txt\\";
  46. std::string jpg_dir = "jpg\\";
  47. std::string dds_dir = "dds\\";
  48. std::string wav_dir = "wav\\";
  49. std::string ogg_dir = "ogg\\";
  50. std::string font_dir = "font\\";
  51. std::string unk_dir = "unk\\";
  52. int txt_all = 0, txt_suc = 0;
  53. int jpg_all = 0, jpg_suc = 0;
  54. int dds_all = 0, dds_suc = 0;
  55. int wav_all = 0, wav_suc = 0;
  56. int ogg_all = 0, ogg_suc = 0;
  57. int font_all = 0, font_suc = 0;
  58. int unk_all = 0, unk_suc = 0;
  59. mkdir(output_dir.c_str(), 744);
  60. mkdir((output_dir + txt_dir).c_str(), 744);
  61. mkdir((output_dir + jpg_dir).c_str(), 744);
  62. mkdir((output_dir + dds_dir).c_str(), 744);
  63. mkdir((output_dir + wav_dir).c_str(), 744);
  64. mkdir((output_dir + ogg_dir).c_str(), 744);
  65. mkdir((output_dir + font_dir).c_str(), 744);
  66. mkdir((output_dir + unk_dir).c_str(), 744);
  67. Database *images = nullptr;
  68. Database *sounds = nullptr;
  69. Database *texts = nullptr;
  70. Database *fonts = nullptr;
  71. Database *textures = nullptr;
  72. Database *unknown = nullptr;
  73. if (exportImagesToDb) images = new Database(output_dir + std::string("Images.db"));
  74. if (exportSoundsToDb) sounds = new Database(output_dir + std::string("Sounds.db"));
  75. if (exportTextsToDb) texts = new Database(output_dir + std::string("Texts.db"));
  76. if (exportFontsToDb) fonts = new Database(output_dir + std::string("Fonts.db"));
  77. if (exportTexturesToDb) textures = new Database(output_dir + std::string("Textures.db"));
  78. if (exportUnknownToDb) unknown = new Database(output_dir + std::string("Unknown.db"));
  79. std::cout << "Starting search...\n";
  80. DatFile a(path + filename, 0);
  81. std::cout << "Total files found: " << a.dictionary().size() << std::endl;
  82. std::cout << "Writing unordered dictionary:\n";
  83. FILE *f;
  84. fopen_s(&f, (output_dir + "dict.txt").c_str(), "w");
  85. fprintf(f, "file_id offset size size2 extension\n");
  86. for (auto i : a.dictionary()) {
  87. std::string extension = "unk";
  88. EXTENSION ext = i.second->ext();
  89. if (ext == TXT) extension = "txt";
  90. if (ext == JPG) extension = "jpg";
  91. if (ext == DDS) extension = "dds";
  92. if (ext == WAV) extension = "wav";
  93. if (ext == OGG) extension = "ogg";
  94. if (ext == FONT) extension = "font";
  95. fprintf(f, "%lld %lld %lld %lld %s\n", i.second->file_id(), i.second->file_offset(), i.second->file_size(),
  96. i.second->block_size(), extension.c_str());
  97. }
  98. fclose(f);
  99. std::cout << "Beginning unpacking...\n";
  100. long long all = a.dictionary().size();
  101. long long counter = 0;
  102. for (auto i : a.dictionary()) {
  103. EXTENSION ext = i.second->ext();
  104. if (ext == TXT) {
  105. txt_all++;
  106. if (exportTextsToDb)
  107. txt_suc += i.second->ExportFile(
  108. (output_dir + txt_dir + std::to_string(i.second->file_id())).c_str(), texts);
  109. //if (exportTextsToFiles) txt_suc += i.second->ExportFile((output_dir + txt_dir + std::to_string(i.second->file_id())).c_str());
  110. }
  111. if (ext == JPG) {
  112. jpg_all++;
  113. if (exportImagesToDb)
  114. jpg_suc += i.second->ExportFile(
  115. (output_dir + jpg_dir + std::to_string(i.second->file_id())).c_str(), images);
  116. if (exportImagesToFiles)
  117. jpg_suc += i.second->ExportFile(
  118. (output_dir + jpg_dir + std::to_string(i.second->file_id())).c_str());
  119. }
  120. if (ext == DDS) {
  121. dds_all++;
  122. if (exportTexturesToDb)
  123. dds_suc += i.second->ExportFile(
  124. (output_dir + dds_dir + std::to_string(i.second->file_id())).c_str(), textures);
  125. if (exportTexturesToFiles)
  126. dds_suc += i.second->ExportFile(
  127. (output_dir + dds_dir + std::to_string(i.second->file_id())).c_str());
  128. }
  129. if (ext == WAV) {
  130. wav_all++;
  131. if (exportSoundsToDb)
  132. wav_suc += i.second->ExportFile(
  133. (output_dir + wav_dir + std::to_string(i.second->file_id())).c_str(), sounds);
  134. if (exportSoundsToFiles)
  135. wav_suc += i.second->ExportFile(
  136. (output_dir + wav_dir + std::to_string(i.second->file_id())).c_str());
  137. }
  138. if (ext == OGG) {
  139. ogg_all++;
  140. if (exportSoundsToDb)
  141. ogg_suc += i.second->ExportFile(
  142. (output_dir + ogg_dir + std::to_string(i.second->file_id())).c_str(), sounds);
  143. if (exportSoundsToFiles)
  144. ogg_suc += i.second->ExportFile(
  145. (output_dir + ogg_dir + std::to_string(i.second->file_id())).c_str());
  146. }
  147. if (ext == FONT) {
  148. font_all++;
  149. if (exportFontsToDb)
  150. font_suc += i.second->ExportFile(
  151. (output_dir + font_dir + std::to_string(i.second->file_id())).c_str(), fonts);
  152. if (exportFontsToFiles)
  153. font_suc += i.second->ExportFile(
  154. (output_dir + font_dir + std::to_string(i.second->file_id())).c_str());
  155. }
  156. if (ext == UNKNOWN) {
  157. unk_all++;
  158. if (exportUnknownToDb)
  159. unk_suc += i.second->ExportFile(
  160. (output_dir + unk_dir + std::to_string(i.second->file_id())).c_str(), unknown);
  161. if (exportUnknownToFiles)
  162. unk_suc += i.second->ExportFile(
  163. (output_dir + unk_dir + std::to_string(i.second->file_id())).c_str());
  164. }
  165. counter++;
  166. if ((counter - 1) * 100ll / all != counter * 100ll / all) {
  167. fprintf(stdout, "Done: %lld%%\n", counter * 100ll / all);
  168. }
  169. }
  170. delete images;
  171. delete sounds;
  172. delete texts;
  173. delete fonts;
  174. delete textures;
  175. delete unknown;
  176. std::cout << "Total found:" << std::endl;
  177. std::cout << "Txt: " << txt_all << std::endl
  178. << "JPG: " << jpg_all << std::endl
  179. << "DDS: " << dds_all << std::endl
  180. << "WAV: " << wav_all << std::endl
  181. << "OGG: " << ogg_all << std::endl
  182. << "Fonts " << font_all << std::endl
  183. << "Unknown: " << unk_all << std::endl;
  184. std::cout << "Total exported (counted both to files and databases):" << std::endl;
  185. std::cout << "Txt: " << txt_suc << std::endl
  186. << "JPG: " << jpg_suc << std::endl
  187. << "DDS: " << dds_suc << std::endl
  188. << "WAV: " << wav_suc << std::endl
  189. << "OGG: " << ogg_suc << std::endl
  190. << "Fonts " << font_suc << std::endl
  191. << "Unknown: " << unk_suc << std::endl;
  192. fprintf(stdout, "Spent %f seconds on running unpacker! Thank you for your patience!\n",
  193. float(clock() - begin_time) / CLOCKS_PER_SEC);
  194. system("pause");
  195. } catch (...) {
  196. printf("Some critical errors occured. Need to stop execution. See information in errors.log file");
  197. fprintf(stderr, "Some critical errors occured. Need to stop execution now...");
  198. }
  199. return 0;
  200. }