DatFile.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. //
  2. // Created by Иван_Архипов on 31.10.2017.
  3. //
  4. #ifndef LOTRO_DAT_PATCHER_DATFILE_H
  5. #define LOTRO_DAT_PATCHER_DATFILE_H
  6. #ifdef LOTRO_DAT_EXPORTS
  7. #define LOTRO_DAT_API __declspec(dllexport)
  8. #else
  9. #define LOTRO_DAT_API __declspec(dllimport)
  10. #endif
  11. #include <fstream>
  12. #include <map>
  13. #include <unordered_map>
  14. #include <set>
  15. #include <vector>
  16. #include <yaml-cpp/node/node.h>
  17. #include <unordered_set>
  18. #include "Database.h"
  19. // Dat file names definitions
  20. #define CLIENT_LOCAL_ENGLISH 0
  21. #define CLIENT_GENERAL 1
  22. #define CLIENT_SOUND 2
  23. #define CLIENT_SURFACE 3
  24. #define CLIENT_HIGHRES 4
  25. extern "C++"
  26. {
  27. namespace LOTRO_DAT {
  28. class BinaryData;
  29. class DatException;
  30. class SubDirectory;
  31. class Subfile;
  32. class SubfileData;
  33. enum FILE_TYPE : int {
  34. TEXT,
  35. JPG,
  36. DDS,
  37. WAV,
  38. OGG,
  39. FONT,
  40. UNKNOWN
  41. };
  42. enum DAT_RESULT : int {
  43. UNKNOWN_ERROR = 0,
  44. SUCCESS = 1,
  45. NOFILE_ERROR = 2,
  46. };
  47. enum DAT_STATE {
  48. CLOSED = 1,
  49. SUCCESS_OPENED = 2,
  50. SUCCESS_SUPERBLOCK = 3,
  51. SUCCESS_DIRECTORIES = 4,
  52. SUCCESS_DICTIONARY = 5,
  53. READY = 6,
  54. UPDATED = 7
  55. };
  56. enum LOCALE : unsigned {
  57. ORIGINAL = 0,
  58. PATCHED = 1
  59. };
  60. class DatFile {
  61. friend class SubDirectory;
  62. public:
  63. DatFile();
  64. bool InitDatFile(const std::string &filename, int dat_id);
  65. DAT_STATE DatFileState() const;
  66. ~DatFile();
  67. bool ExtractFile(long long file_id, const std::string &path = "");
  68. bool ExtractFile(long long file_id, Database *db);
  69. int ExtractAllFilesByType(FILE_TYPE type, std::string path = "");
  70. int ExtractAllFilesByType(FILE_TYPE type, Database *db);
  71. bool PatchFile(const char *filename, YAML::Node options);
  72. bool PatchFile(const SubfileData &data, bool rewrite_original = false);
  73. bool PatchAllDatabase(Database *db);
  74. void WriteUnorderedDictionary(std::string path) const;
  75. long long files_number() const;
  76. BinaryData GetFileData(const Subfile *file, long long offset = 0);
  77. bool CommitChanges();
  78. bool CloseDatFile();
  79. private:
  80. // INIT SECTION
  81. void OpenDatFile(const char *dat_name);
  82. void ReadSuperBlock();
  83. void MakeDirectories();
  84. void MakeDictionary();
  85. // READ-WRITE SECTION
  86. void ReadData(BinaryData &data, long long size, long long offset = 0, long long data_offset = 0);
  87. void WriteData(const BinaryData &data, long long size, long long offset = 0, long long data_offset = 0);
  88. // PATCH SECTION
  89. void ApplyFilePatch(Subfile *file, const BinaryData &data, bool rewrite_original = false);
  90. std::vector<std::pair<long long, long long> > GetFragmentationJournal();
  91. void UpdateHeader();
  92. void UpdateSubdirectories();
  93. void UpdateFragmentationJournal(const std::vector<std::pair<long long, long long> > &journal);
  94. // LOCALE MANAGING SECTION
  95. private:
  96. void InitLocales();
  97. void CommitLocales();
  98. public:
  99. void SetLocale(LOCALE locale);
  100. bool CheckIfUpdatedByGame();
  101. void RepairPatches(Database *db);
  102. LOCALE current_locale();
  103. void EnableCategory(int category);
  104. void DisableCategory(int category);
  105. const std::unordered_set<long long>& GetInactiveCategoriesList();
  106. public:
  107. bool CheckIfNotPatched();
  108. bool CheckIfPatchedByOldLauncher();
  109. private:
  110. std::unordered_map<long long, Subfile*>* GetLocaleDictReference(LOCALE locale);
  111. private:
  112. LOCALE current_locale_;
  113. std::string filename_;
  114. std::unordered_map<long long, Subfile*> orig_dict_;
  115. std::unordered_map<long long, Subfile*> patch_dict_;
  116. std::unordered_map<long long, Subfile*> pending_patch_;
  117. std::unordered_set<long long> inactive_categories;
  118. private:
  119. FILE *file_handler_;
  120. SubDirectory *root_directory_;
  121. std::unordered_set<long long> patched_list;
  122. std::unordered_map<long long, Subfile *> dictionary_;
  123. long long constant1_;
  124. long long constant2_;
  125. long long file_size_;
  126. long long version1_;
  127. long long version2_;
  128. long long root_directory_offset_;
  129. long long fragmentation_journal_offset_;
  130. DAT_STATE dat_state_;
  131. int dat_id_;
  132. };
  133. }
  134. }
  135. #endif //LOTRO_DAT_PATCHER_DATFILE_H