BinaryData.cpp 8.7 KB

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