DatFile.cpp 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. //
  2. // Created by Иван_Архипов on 31.10.2017.
  3. //
  4. #include "DatFile.h"
  5. #include "BinaryData.h"
  6. #include "DatException.h"
  7. #include "SubDirectory.h"
  8. #include "Subfile.h"
  9. #include <locale>
  10. extern "C++"
  11. {
  12. namespace LOTRO_DAT {
  13. DatFile::DatFile() {
  14. dat_state_ = CLOSED;
  15. }
  16. DatFile::DatFile(const char *filename) {
  17. dat_state_ = CLOSED;
  18. OpenDatFile(filename);
  19. ReadSuperBlock();
  20. MakeDirectories();
  21. try {
  22. MakeDictionary();
  23. } catch (...) {
  24. fprintf(stderr, "Unable to make dictionary!! Unable to init DatFile!!!");
  25. return;
  26. }
  27. if (dat_state_ == SUCCESS_DICTIONARY)
  28. dat_state_ = READY;
  29. else
  30. throw DatException("Bad DatFile initialization! Not all init states were successfully passed!",
  31. INIT_EXCEPTION);
  32. }
  33. DatFile::DatFile(const std::string &filename) {
  34. dat_state_ = CLOSED;
  35. OpenDatFile(filename.c_str());
  36. ReadSuperBlock();
  37. MakeDirectories();
  38. MakeDictionary();
  39. if (dat_state_ == SUCCESS_DICTIONARY)
  40. dat_state_ = READY;
  41. else
  42. throw DatException("Bad DatFile initialization! Not all init states were successfully passed!",
  43. INIT_EXCEPTION);
  44. }
  45. DatFile::~DatFile() {
  46. if (file_handler_ != nullptr)
  47. fclose(file_handler_);
  48. delete file_handler_;
  49. delete root_directory_;
  50. }
  51. void DatFile::OpenDatFile(const char *dat_name) {
  52. if (dat_state_ != CLOSED)
  53. throw DatException("Bad initialisation of DatFile - current DatFile isn't in correct state!",
  54. INIT_EXCEPTION);
  55. fopen_s(&file_handler_, dat_name, "r+b");
  56. if (file_handler_ == nullptr) {
  57. std::string err = "Bad DatFile::OpenDatFile. Unable to open file ";
  58. err += dat_name;
  59. throw DatException(err.c_str(), INIT_EXCEPTION);
  60. }
  61. _fseeki64(file_handler_, 0, SEEK_END);
  62. file_size_ = _ftelli64(file_handler_);
  63. _fseeki64(file_handler_, 0, SEEK_SET);
  64. dat_state_ = SUCCESS_OPENED;
  65. }
  66. void DatFile::ReadSuperBlock() {
  67. if (dat_state_ != SUCCESS_OPENED)
  68. throw DatException("Bad DatFile::ReadSuperBlock() - DatFile isn't in valid state!", INIT_EXCEPTION);
  69. BinaryData data(1024);
  70. ReadData(data, 1024);
  71. constant1_ = data.ToNumber<4>(0x100);
  72. constant2_ = data.ToNumber<4>(0x140);
  73. version1_ = data.ToNumber<4>(0x14C);
  74. version2_ = data.ToNumber<4>(0x150);
  75. root_directory_offset_ = data.ToNumber<4>(0x160);
  76. auto size1 = data.ToNumber<4>(0x148);
  77. if (constant1_ != 0x4C5000)
  78. throw DatException(
  79. "Bad DatFile::ReadSuperBlock - variable at position 0x100 is not equal to .dat file constant!",
  80. INIT_EXCEPTION);
  81. if (constant2_ != 0x5442)
  82. throw DatException(
  83. "Bad DatFile::ReadSuperBlock - variable at position 0x140 is not equal to .dat file constant!",
  84. INIT_EXCEPTION);
  85. if (file_size_ != size1)
  86. throw DatException(
  87. "Bad DatFile::ReadSuperBlock - variable at 0x148 position is not equal to .dat file size!",
  88. INIT_EXCEPTION);
  89. dat_state_ = SUCCESS_SUPERBLOCK;
  90. }
  91. void DatFile::MakeDirectories() {
  92. if (dat_state_ != SUCCESS_SUPERBLOCK)
  93. throw DatException("Bad DatFile::MakeDirectories() - DatFile isn't in valid state!", INIT_EXCEPTION);
  94. root_directory_ = new SubDirectory((unsigned) root_directory_offset_, this);
  95. dat_state_ = SUCCESS_DIRECTORIES;
  96. }
  97. void DatFile::MakeDictionary() {
  98. if (dat_state_ != SUCCESS_DIRECTORIES)
  99. throw DatException("Bad DatFile::MakeDictionary() - DatFile isn't in valid state!", INIT_EXCEPTION);
  100. try {
  101. root_directory_->MakeDictionary(dictionary_);
  102. } catch (...) {
  103. fprintf(stderr, "Bad DatFile::MakeDictionary() - File is corrupted?\n");
  104. return;
  105. }
  106. dat_state_ = SUCCESS_DICTIONARY;
  107. }
  108. void DatFile::ReadData(BinaryData &data, long long size, long long offset, long long data_offset) {
  109. if (dat_state_ == CLOSED)
  110. throw DatException("Bad DatFile::ReadData() - DatFile isn't in valid state!", READ_EXCEPTION);
  111. if (data_offset + size > data.size()) {
  112. std::string err = "Bad DatFile::ReadData - trying to read more than BinaryData size\n";
  113. err += std::string("Reading ") + std::to_string(size) + std::string(" bytes from ")
  114. + std::to_string(offset) + std::string(" position in dat file.");
  115. throw DatException(err.c_str(), READ_EXCEPTION);
  116. }
  117. if (offset + size > file_size()) {
  118. std::string err = "Bad DatFile::ReadData - trying to read more than DatFile size elapsed\n";
  119. err += std::string("Reading ") + std::to_string(size) + std::string(" bytes from ")
  120. + std::to_string(offset) + std::string(" position in dat file.");
  121. throw DatException(err.c_str(), READ_EXCEPTION);
  122. }
  123. _fseeki64(file_handler_, offset, SEEK_SET);
  124. fread(data.data() + data_offset, size, 1, file_handler_);
  125. data.CheckCompression();
  126. }
  127. void DatFile::WriteData(const BinaryData &data, long long size, long long offset, long long data_offset) {
  128. if (dat_state_ != READY)
  129. throw DatException("Bad DatFile::WriteData() - DatFile isn't in valid state!", WRITE_EXCEPTION);
  130. _fseeki64(file_handler_, offset, SEEK_SET);
  131. if (data_offset + size > data.size())
  132. throw DatException("Bad DatFile::WriteData - trying to write more than BinaryData size", WRITE_EXCEPTION);
  133. fwrite(data.data() + data_offset, size, 1, file_handler_);
  134. }
  135. long long DatFile::constant1() const {
  136. return constant1_;
  137. }
  138. long long DatFile::constant2() const {
  139. return constant2_;
  140. }
  141. long long DatFile::file_size() const {
  142. return file_size_;
  143. }
  144. long long DatFile::version1() const {
  145. return version1_;
  146. }
  147. long long DatFile::version2() const {
  148. return version2_;
  149. }
  150. const std::unordered_map<long long, Subfile *> &DatFile::dictionary() {
  151. return dictionary_;
  152. }
  153. }
  154. }