BinaryData.cpp 6.6 KB

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