BinaryData.cpp 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. //
  2. // Created by Иван_Архипов on 31.10.2017.
  3. //
  4. #include "BinaryData.h"
  5. #include "DatException.h"
  6. #include "zlib/zlib.h"
  7. extern "C++"
  8. {
  9. namespace LOTRO_DAT {
  10. BinaryData::BinaryData() {
  11. data_ = nullptr;
  12. size_ = 0;
  13. }
  14. BinaryData::BinaryData(const BinaryData &d) {
  15. size_ = d.size_;
  16. data_ = new unsigned char[size_];
  17. memcpy(data_, d.data_, size_);
  18. }
  19. BinaryData::BinaryData(unsigned int size) {
  20. data_ = new unsigned char[size];
  21. size_ = size;
  22. }
  23. BinaryData::~BinaryData() {
  24. if (size_ != 0 && data_ != nullptr)
  25. delete[] data_;
  26. }
  27. unsigned char& BinaryData::operator[](const unsigned int &pos) {
  28. if (pos >= size_)
  29. throw DatException("Bad BinaryData::operator[]. Position is out of range.");
  30. return data_[pos];
  31. }
  32. // Translates T bytes from data into number using UTF-16LE encoding of the .dat file
  33. template<int T>
  34. long long BinaryData::ToNumber(const long long &pos) const {
  35. try {
  36. long long ans = 0;
  37. if (pos + T >= size_)
  38. throw DatException("Bad BinaryData::ToNumber(). Reached end of BinaryData!", DATA_EXCEPTION);
  39. for (int i = T - 1; i >= 0; i--)
  40. ans = ((ans << 8ll) | data_[pos + i]);
  41. return ans;
  42. } catch (...) {
  43. throw DatException("Bad BinaryData::ToNumber(). Error while using template function", DATA_EXCEPTION);
  44. }
  45. }
  46. // Translates T bytes from data into number in raw format
  47. template<int T>
  48. long long BinaryData::ToNumberRAW(const long long &pos) const {
  49. try {
  50. long long ans = 0;
  51. if (pos + T >= size_)
  52. throw DatException("Bad BinaryData::ToNumber(). Reached end of BinaryData!", DATA_EXCEPTION);
  53. for (int i = 0; i < T; i++)
  54. ans = ((ans << 8ll) | data_[pos + i]);
  55. return ans;
  56. } catch (...) {
  57. throw DatException("Bad BinaryData::ToNumber(). Error while using template function", DATA_EXCEPTION);
  58. }
  59. }
  60. // Makes data from specified T bytes of number in Little Endian encoding
  61. template<int T>
  62. void BinaryData::FromNumber(const long long &number) {
  63. if (T < 0)
  64. throw DatException("Bad BinaryData::FromNumber() - trying to make data from amount of bytes < 0");
  65. try {
  66. if (size_ != 0 && data_ != nullptr)
  67. delete[] data_;
  68. size_ = size_t(T);
  69. data_ = new unsigned char[size_];
  70. for (size_t i = 0; i < size_; i++)
  71. {
  72. data_[i] = (unsigned char)((number >> (8 * i)) & 0xFF);
  73. }
  74. } catch (...) {
  75. throw DatException("Bad BinaryData::ToNumber(). Error in using template function", DATA_EXCEPTION);
  76. }
  77. }
  78. // Makes data from specified T bytes of number in raw
  79. template<int T>
  80. void BinaryData::FromNumberRAW(const long long &number) {
  81. if (T < 0)
  82. throw DatException("Bad BinaryData::FromNumber() - trying to make data from amount of bytes < 0");
  83. try {
  84. if (size_ != 0 && data_ != nullptr)
  85. delete[] data_;
  86. size_ = size_t(T);
  87. data_ = new unsigned char[size_];
  88. for (size_t i = size_ - 1; i >= 0; i--)
  89. {
  90. data_[i] = (unsigned char)((number >> (8 * i)) & 0xFF);
  91. }
  92. } catch (...) {
  93. throw DatException("Bad BinaryData::ToNumber(). Error in using template function", DATA_EXCEPTION);
  94. }
  95. }
  96. BinaryData &BinaryData::operator=(const BinaryData &data) {
  97. if (&data == this)
  98. return *this;
  99. if (size_ != 0 && data_ != nullptr)
  100. delete[] data_;
  101. size_ = data.size_;
  102. data_ = nullptr;
  103. if (size_ != 0) {
  104. data_ = new unsigned char[size_];
  105. memcpy(data_, data.data_, size_);
  106. }
  107. return *this;
  108. }
  109. size_t BinaryData::size() const {
  110. return size_;
  111. }
  112. unsigned char *BinaryData::data() const {
  113. return data_;
  114. }
  115. bool BinaryData::WriteToFile(const char *filename) const {
  116. FILE *f;
  117. fopen_s(&f, filename, "wb");
  118. if (f == nullptr) {
  119. throw DatException("Bad BinaryData::WriteToFile() - unable to open output file", EXPORT_EXCEPTION);
  120. return false;
  121. }
  122. fwrite(data(), size(), 1, f);
  123. fclose(f);
  124. return true;
  125. }
  126. bool BinaryData::WriteToFile(const std::string &filename) const {
  127. return WriteToFile(filename.c_str());
  128. }
  129. bool BinaryData::CheckCompression() const {
  130. if (size() < 10)
  131. return false;
  132. auto header = ToNumberRAW<2>(4);
  133. return (header == 0x7801 || header == 0x789C || header == 0x78DA);
  134. }
  135. void BinaryData::DecompressData(unsigned int offset) {
  136. const unsigned max_unpacked_size = 1024 * 1024 * 40; // Setting 40 MB as a maximum unpacked data;
  137. BinaryData decompressed(max_unpacked_size);
  138. uLongf new_size = max_unpacked_size;
  139. int res = uncompress(decompressed.data_, &new_size, data_ + offset, size_ - offset);
  140. if (res != 0) {
  141. throw DatException("Bad BinaryData::DecompressData() - uncompress() failed!", DATA_EXCEPTION);
  142. }
  143. decompressed.size_ = (unsigned int)new_size;
  144. *this = decompressed;
  145. return;
  146. }
  147. template long long BinaryData::ToNumber<1>(long long const&) const;
  148. template long long BinaryData::ToNumber<2>(long long const&) const;
  149. template long long BinaryData::ToNumber<4>(long long const&) const;
  150. template long long BinaryData::ToNumber<8>(long long const&) const;
  151. template void BinaryData::FromNumber<1>(const long long &);
  152. template void BinaryData::FromNumber<2>(const long long &);
  153. template void BinaryData::FromNumber<4>(const long long &);
  154. template void BinaryData::FromNumber<8>(const long long &);
  155. template long long BinaryData::ToNumberRAW<1>(long long const&) const;
  156. template long long BinaryData::ToNumberRAW<2>(long long const&) const;
  157. template long long BinaryData::ToNumberRAW<4>(long long const&) const;
  158. template long long BinaryData::ToNumberRAW<8>(long long const&) const;
  159. template void BinaryData::FromNumberRAW<1>(const long long &);
  160. template void BinaryData::FromNumberRAW<2>(const long long &);
  161. template void BinaryData::FromNumberRAW<4>(const long long &);
  162. template void BinaryData::FromNumberRAW<8>(const long long &);
  163. }
  164. }