BinaryData.cpp 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. //
  2. // Created by Иван_Архипов on 31.10.2017.
  3. //
  4. #include "BinaryData.h"
  5. #include "Common/DatException.h"
  6. #include "Common/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. BinaryData BinaryData::operator +(const BinaryData &b) {
  33. BinaryData res(size_ + b.size());
  34. if (size_ > 0)
  35. memcpy(res.data_, data_, size_);
  36. if (b.size() > 0)
  37. memcpy(res.data_ + size_, b.data_, b.size_);
  38. return res;
  39. }
  40. // Translates T bytes from data into number using UTF-16LE encoding of the .dat file
  41. template<int T>
  42. long long BinaryData::ToNumber(const long long &pos) const {
  43. try {
  44. long long ans = 0;
  45. if (pos + T > size_)
  46. throw DatException("Bad BinaryData::ToNumber(). Reached end of BinaryData!", DATA_EXCEPTION);
  47. for (int i = T - 1; i >= 0; i--)
  48. ans = ((ans << 8ll) | data_[pos + i]);
  49. return ans;
  50. } catch (...) {
  51. throw DatException("Bad BinaryData::ToNumber(). Error while using template function", DATA_EXCEPTION);
  52. }
  53. }
  54. // Translates T bytes from data into number in raw format
  55. template<int T>
  56. long long BinaryData::ToNumberRAW(const long long &pos) const {
  57. try {
  58. long long ans = 0;
  59. if (pos + T >= size_)
  60. throw DatException("Bad BinaryData::ToNumber(). Reached end of BinaryData!", DATA_EXCEPTION);
  61. for (int i = 0; i < T; i++)
  62. ans = ((ans << 8ll) | data_[pos + i]);
  63. return ans;
  64. } catch (...) {
  65. throw DatException("Bad BinaryData::ToNumber(). Error while using template function", DATA_EXCEPTION);
  66. }
  67. }
  68. // Makes data from specified T bytes of number in Little Endian encoding
  69. template<int T>
  70. void BinaryData::FromNumber(const long long &number) {
  71. if (T < 0)
  72. throw DatException("Bad BinaryData::FromNumber() - trying to make data from amount of bytes < 0");
  73. try {
  74. delete[] data_;
  75. size_ = size_t(T);
  76. data_ = new unsigned char[size_];
  77. for (size_t i = 0; i < size_; i++)
  78. {
  79. data_[i] = (unsigned char)((number >> (8 * i)) & 0xFF);
  80. }
  81. } catch (...) {
  82. throw DatException("Bad BinaryData::ToNumber(). Error in using template function", DATA_EXCEPTION);
  83. }
  84. }
  85. // Makes data from specified T bytes of number in raw
  86. template<int T>
  87. void BinaryData::FromNumberRAW(const long long &number) {
  88. if (T < 0)
  89. throw DatException("Bad BinaryData::FromNumber() - trying to make data from amount of bytes < 0");
  90. try {
  91. if (size_ != 0 && data_ != nullptr)
  92. delete[] data_;
  93. size_ = size_t(T);
  94. data_ = new unsigned char[size_];
  95. for (size_t i = size_ - 1; i >= 0; i--)
  96. {
  97. data_[i] = (unsigned char)((number >> (8 * i)) & 0xFF);
  98. }
  99. } catch (...) {
  100. throw DatException("Bad BinaryData::ToNumber(). Error in using template function", DATA_EXCEPTION);
  101. }
  102. }
  103. BinaryData &BinaryData::operator=(const BinaryData &data) {
  104. if (&data == this)
  105. return *this;
  106. if (size_ != 0 && data_ != nullptr)
  107. delete[] data_;
  108. size_ = data.size_;
  109. data_ = nullptr;
  110. if (size_ != 0) {
  111. data_ = new unsigned char[size_];
  112. memcpy(data_, data.data_, size_);
  113. }
  114. return *this;
  115. }
  116. size_t BinaryData::size() const {
  117. return size_;
  118. }
  119. unsigned char *BinaryData::data() const {
  120. return data_;
  121. }
  122. bool BinaryData::WriteToFile(const char *filename) const {
  123. FILE *f;
  124. fopen_s(&f, filename, "wb");
  125. if (f == nullptr) {
  126. throw DatException("Bad BinaryData::WriteToFile() - unable to open output file", EXPORT_EXCEPTION);
  127. }
  128. fwrite(data(), size(), 1, f);
  129. fclose(f);
  130. return true;
  131. }
  132. bool BinaryData::WriteToFile(const std::string &filename) const {
  133. return WriteToFile(filename.c_str());
  134. }
  135. void BinaryData::ReadFromFile(const char *filename) {
  136. FILE *f;
  137. fopen_s(&f, filename, "rb");
  138. if (f == nullptr) {
  139. throw DatException("Bad BinaryData::WriteToFile() - unable to open output file", EXPORT_EXCEPTION);
  140. }
  141. _fseeki64(f, 0, SEEK_END);
  142. long long file_size = ftell(f);
  143. _fseeki64(f, 0, SEEK_SET);
  144. BinaryData temp_data = BinaryData(unsigned(file_size));
  145. fread(temp_data.data_, temp_data.size_, 1, f);
  146. *this = temp_data;
  147. fclose(f);
  148. }
  149. void BinaryData::ReadFromFile(const std::string &filename) {
  150. ReadFromFile(filename.c_str());
  151. }
  152. bool BinaryData::CheckCompression() const {
  153. if (size() < 10)
  154. return false;
  155. auto header = ToNumberRAW<2>(4);
  156. return (header == 0x7801 || header == 0x789C || header == 0x78DA);
  157. }
  158. BinaryData BinaryData::DecompressData(unsigned int offset) const {
  159. const unsigned max_unpacked_size = 1024 * 1024 * 40; // Setting 40 MB as a maximum unpacked data;
  160. BinaryData decompressed(max_unpacked_size);
  161. uLongf new_size = max_unpacked_size;
  162. int res = uncompress(decompressed.data_, &new_size, data_ + offset, size_ - offset);
  163. if (res != 0) {
  164. throw DatException("Bad BinaryData::DecompressData() - uncompress() failed!", DATA_EXCEPTION);
  165. }
  166. decompressed.size_ = (unsigned int)new_size;
  167. return decompressed;
  168. }
  169. BinaryData BinaryData::CompressData(unsigned int offset) const {
  170. const unsigned max_file_size = 1024 * 1024 * 40; // Setting 40 MB as a maximum packed data;
  171. BinaryData compressed(max_file_size);
  172. uLongf new_size = max_file_size;
  173. int res = compress2(compressed.data_, &new_size, data_ + offset, size_ - offset, 9);
  174. if (res != 0) {
  175. throw DatException("Bad BinaryData::CompressData() - compress failed!", DATA_EXCEPTION);
  176. }
  177. compressed.size_ = (unsigned int)new_size;
  178. return compressed;
  179. }
  180. BinaryData BinaryData::CutData(long long first, long long last) const {
  181. if (last < 0)
  182. last = size();
  183. if (last > size())
  184. throw DatException("Bad BinaryData::CutData() - parameter 'last' is out of range");
  185. BinaryData newdata(unsigned(last - first));
  186. memcpy(newdata.data(), data() + first, newdata.size());
  187. return newdata;
  188. }
  189. template long long BinaryData::ToNumber<1>(long long const&) const;
  190. template long long BinaryData::ToNumber<2>(long long const&) const;
  191. template long long BinaryData::ToNumber<4>(long long const&) const;
  192. template long long BinaryData::ToNumber<8>(long long const&) const;
  193. template void BinaryData::FromNumber<1>(const long long &);
  194. template void BinaryData::FromNumber<2>(const long long &);
  195. template void BinaryData::FromNumber<4>(const long long &);
  196. template void BinaryData::FromNumber<8>(const long long &);
  197. template long long BinaryData::ToNumberRAW<1>(long long const&) const;
  198. template long long BinaryData::ToNumberRAW<2>(long long const&) const;
  199. template long long BinaryData::ToNumberRAW<4>(long long const&) const;
  200. template long long BinaryData::ToNumberRAW<8>(long long const&) const;
  201. template void BinaryData::FromNumberRAW<1>(const long long &);
  202. template void BinaryData::FromNumberRAW<2>(const long long &);
  203. template void BinaryData::FromNumberRAW<4>(const long long &);
  204. template void BinaryData::FromNumberRAW<8>(const long long &);
  205. }
  206. }