DdsSubfile.h 1.2 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 : public Subfile {
  9. public:
  10. DdsSubfile();
  11. DdsSubfile(DatFile *dat, long long dictionary_offset, long long fragments_count, long long unknown1,
  12. long long file_id, long long file_offset, long long file_size,
  13. long long timestamp,
  14. long long version, long long block_size);
  15. ~DdsSubfile() override {};
  16. FILE_TYPE FileType() const override;
  17. std::string Extension() const override;
  18. bool PrepareForExport(const BinaryData &file_data, long long &export_size, std::vector<BinaryData> &binary_data,
  19. std::vector<std::u16string> &text_data, std::vector<YAML::Node> &options) override;
  20. BinaryData MakeForImport(const BinaryData &old_data, const BinaryData &binary_data,
  21. const std::u16string &text_data, const YAML::Node &options) override;
  22. };
  23. };
  24. #endif //LOTRO_DAT_LIBRARY_DDSSUBFILE_H