BinaryData.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // Created by Иван_Архипов on 31.10.2017.
  3. //
  4. #ifndef LOTRO_DAT_PATCHER_BINARYDATA_H
  5. #define LOTRO_DAT_PATCHER_BINARYDATA_H
  6. #include <cstdio>
  7. #include <string>
  8. extern "C++"
  9. {
  10. namespace LOTRO_DAT
  11. {
  12. class Database;
  13. class BinaryData
  14. {
  15. public:
  16. BinaryData();
  17. BinaryData(const BinaryData &d);
  18. explicit BinaryData(unsigned int size);
  19. ~BinaryData();
  20. unsigned char& operator[] (const unsigned int &pos);
  21. template <int T>
  22. long long ToNumber(const long long &pos) const;
  23. template <int T>
  24. long long ToNumberRAW(const long long &pos) const;
  25. template <int T>
  26. void FromNumber(const long long &number);
  27. template <int T>
  28. void FromNumberRAW(const long long &number);
  29. size_t size() const;
  30. unsigned char* data() const;
  31. BinaryData& operator=(const BinaryData& data);
  32. bool WriteToFile(const char *filename) const;
  33. bool WriteToFile(const std::string &filename) const;
  34. bool CheckCompression() const;
  35. void DecompressData(unsigned int offset = 0);
  36. private:
  37. unsigned char *data_;
  38. size_t size_;
  39. };
  40. }
  41. }
  42. #endif //LOTRO_DAT_PATCHER_BINARYDATA_H