DdsSubfile.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // Created by Иван_Архипов on 24.11.2017.
  3. //
  4. #ifndef LOTRO_DAT_LIBRARY_DDSSUBFILE_H
  5. #define LOTRO_DAT_LIBRARY_DDSSUBFILE_H
  6. #include "../Subfile.h"
  7. namespace LOTRO_DAT {
  8. class DdsSubfile : Subfile {
  9. public:
  10. DdsSubfile();
  11. DdsSubfile(DatFile *dat, long long fragments_count, long long unknown1, long long file_id, long long file_offset,
  12. long long file_size, long long timestamp, long long version, long long block_size);
  13. FILE_TYPE FileType() const override;
  14. std::string Extension() const override;
  15. bool PrepareForExport(const BinaryData &file_data, long long &export_size, std::vector<BinaryData> &binary_data,
  16. std::vector<std::u16string> &text_data, std::vector<YAML::Node> &options) override;
  17. BinaryData MakeForImport(const BinaryData &old_data, const BinaryData &binary_data,
  18. const std::u16string &text_data, const YAML::Node &options) override;
  19. private:
  20. bool compressed_;
  21. };
  22. };
  23. #endif //LOTRO_DAT_LIBRARY_DDSSUBFILE_H