SubDirectory.cpp 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. //
  2. // Created by Иван_Архипов on 07.11.2017.
  3. //
  4. #include "SubDirectory.h"
  5. #include "DatFile.h"
  6. #include "Common/DatException.h"
  7. #include "Subfile.h"
  8. #include "BinaryData.h"
  9. #include "Subfiles/TextSubfile.h"
  10. #include "Subfiles/DdsSubfile.h"
  11. #include "Subfiles/FontSubFile.h"
  12. #include "Subfiles/JpgSubfile.h"
  13. #include "Subfiles/OggSubfile.h"
  14. #include "Subfiles/WavSubfile.h"
  15. #include "Subfiles/UnknownSubfile.h"
  16. namespace LOTRO_DAT {
  17. SubDirectory::SubDirectory() {
  18. offset_ = 0;
  19. }
  20. SubDirectory::SubDirectory(long long offset, DatFile *dat, long long max_subdirs) :
  21. dat_(dat), offset_(offset), max_subdirs_(max_subdirs) {
  22. try {
  23. MakeSubDirectories();
  24. } catch (std::exception &e) {
  25. fprintf(stderr, "Caught %s exception.", e.what());
  26. fprintf(stderr, "Unable to initialize directory at offset %lld. Initializing it as empty directory...\n",
  27. offset);
  28. subdirs_.clear();
  29. subfiles_.clear();
  30. return;
  31. }
  32. try {
  33. MakeSubFiles();
  34. } catch (std::exception &e) {
  35. fprintf(stderr, "Caught %s exception.", e.what());
  36. fprintf(stderr, "Unable to initialize directory at offset %lld. Initializing it as empty directory...\n",
  37. offset);
  38. subdirs_.clear();
  39. subfiles_.clear();
  40. return;
  41. }
  42. }
  43. void SubDirectory::MakeSubDirectories() {
  44. BinaryData data(1024);
  45. dat_->ReadData(data, 63 * 8, offset_);
  46. if (data.ToNumber<4>(0) != 0 || data.ToNumber<4>(4) != 0) {
  47. std::string err =
  48. std::string("Bad SubDirectory::MakeSubDirectories - first 8 bytes are not equal to 0 at offset ")
  49. + std::to_string(offset_);
  50. throw DatException(err.c_str(), SUBDIR_EXCEPTION);
  51. }
  52. for (unsigned int i = 8; i < 63 * 8; i += 8) {
  53. if (data.ToNumber<4>(i) == 0 || data.ToNumber<4>(i + 4) == 0)
  54. break;
  55. try {
  56. subdirs_.emplace_back(
  57. SubDirectory(
  58. data.ToNumber<4>(i + 4),
  59. dat_
  60. )
  61. );
  62. } catch (std::exception &e) {
  63. fprintf(stderr, "Caught %s exception.", e.what());
  64. fprintf(stderr, "Making SubDirectory at offset %lld failed, continuing\n", data.ToNumber<4>(i + 4));
  65. }
  66. }
  67. }
  68. void SubDirectory::MakeSubFiles() {
  69. BinaryData data(64 * 32);
  70. dat_->ReadData(data, 64 * 32, offset_ + 63 * 8);
  71. for (unsigned int i = 0; i < 61 * 32; i += 32) {
  72. if (data.ToNumber<4>(i + 8) < 0x32 || data.ToNumber<4>(i + 12) < 0x32)
  73. continue;
  74. subfiles_.push_back(
  75. MakeSubfile(
  76. data.ToNumber<4>(i), // fragments_count
  77. data.ToNumber<4>(i + 4), // unknown1
  78. data.ToNumber<4>(i + 8), // file_id
  79. data.ToNumber<4>(i + 12), // file_offset
  80. data.ToNumber<4>(i + 16), // block_size
  81. data.ToNumber<4>(i + 20), // timestamp
  82. data.ToNumber<4>(i + 24), // version
  83. data.ToNumber<4>(i + 28) // block_size
  84. )
  85. );
  86. }
  87. }
  88. void SubDirectory::MakeDictionary(std::unordered_map<long long, Subfile *> &dict) {
  89. for (Subfile *i : subfiles_) {
  90. if (dict.count(i->file_id()) == 0 || dict[i->file_id()]->timestamp() < i->timestamp())
  91. dict[i->file_id()] = i;
  92. }
  93. for (SubDirectory &i : subdirs_)
  94. i.MakeDictionary(dict);
  95. }
  96. void SubDirectory::UpdateDirectories(std::unordered_map<long long, BinaryData *> &patched_files) {
  97. for (unsigned i = 0; i < subfiles_.size(); i++) {
  98. if (patched_files.count(subfiles_[i]->file_id()) != 0) {
  99. dat_->WriteData(*patched_files[subfiles_[i]->file_id()], 32, offset_ + 63ll * 8ll + i * 32);
  100. }
  101. }
  102. for (SubDirectory &i : subdirs_)
  103. i.UpdateDirectories(patched_files);
  104. }
  105. Subfile *SubDirectory::MakeSubfile(long long fragments_count, long long unknown1, long long file_id,
  106. long long file_offset, long long file_size, long long timestamp,
  107. long long version, long long block_size) {
  108. FILE_TYPE type = GetSubfileType(file_id, file_offset);
  109. switch (type) {
  110. case TEXT:
  111. return dynamic_cast<Subfile *>(new TextSubfile(dat_, fragments_count, unknown1, file_id, file_offset, file_size, timestamp, version, block_size));
  112. case JPG:
  113. return dynamic_cast<Subfile *>(new JpgSubfile(dat_, fragments_count, unknown1, file_id, file_offset, file_size, timestamp, version, block_size));
  114. case DDS:
  115. return dynamic_cast<Subfile *>(new DdsSubfile(dat_, fragments_count, unknown1, file_id, file_offset, file_size, timestamp, version, block_size));
  116. case WAV:
  117. return dynamic_cast<Subfile *>(new WavSubfile(dat_, fragments_count, unknown1, file_id, file_offset, file_size, timestamp, version, block_size));
  118. case OGG:
  119. return dynamic_cast<Subfile *>(new OggSubfile(dat_, fragments_count, unknown1, file_id, file_offset, file_size, timestamp, version, block_size));
  120. case FONT:
  121. return dynamic_cast<Subfile *>(new FontSubfile(dat_, fragments_count, unknown1, file_id, file_offset, file_size, timestamp, version, block_size));
  122. case UNKNOWN:
  123. return dynamic_cast<Subfile *>(new UnknownSubfile(dat_, fragments_count, unknown1, file_id, file_offset, file_size, timestamp, version, block_size));
  124. }
  125. throw DatException("Bad SubDirectory::MakeSubfile() - unable to recognize file_type!", SUBFILE_EXCEPTION);
  126. }
  127. FILE_TYPE SubDirectory::GetSubfileType(long long file_id, long long file_offset) const {
  128. // Text check based on file_id
  129. if ((file_id >> 24ll) == 0x25ll)
  130. return TEXT;
  131. // Font check based on file_id
  132. if ((file_id >> 24ll) == 0x42ll)
  133. return FONT;
  134. BinaryData header(64);
  135. try {
  136. dat_->ReadData(header, 64, (unsigned) file_offset + 8);
  137. }catch (DatException &e) {
  138. if (e.type() == READ_EXCEPTION) {
  139. std::string err =
  140. "Bad Subfile::getExtension() - unable to read header of file with id = " +
  141. std::to_string(file_id) +
  142. " and offset = " + std::to_string(file_offset);
  143. throw DatException(err.c_str(), SUBFILE_EXCEPTION);
  144. } else
  145. throw e;
  146. }
  147. // jpeg / dds check
  148. if ((file_id >> 24ll) == 0x41ll) {
  149. long long soi = header.ToNumber<2>(24);
  150. long long marker = header.ToNumber<2>(26);
  151. //auto markerSize = header.ToNumber<short>(28);
  152. //auto four = header.ToNumber<int>(30);
  153. if ((soi == 0xD8FFll && marker == 0xE0FFll) || marker == 0xE1FFll)
  154. return JPG;
  155. return DDS;
  156. }
  157. // Ogg and Wav check
  158. if (header[8] == 0x4F && header[9] == 0x67 && header[10] == 0x67 && header[11] == 0x53)
  159. return OGG;
  160. if (header[8] == 0x52 && header[9] == 0x49 && header[10] == 0x46 && header[11] == 0x46)
  161. return WAV;
  162. return UNKNOWN;
  163. }
  164. };