12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #ifndef LOTRO_DAT_LIBRARY_DATSTATUS_H
- #define LOTRO_DAT_LIBRARY_DATSTATUS_H
- #include <string>
- #include <functional>
- #include <set>
- namespace LOTRO_DAT {
- class DatFile;
-
- class DatStatus {
- public:
- enum DAT_STATUS: int {
- E_INITIALISING,
- E_EXTRACTING,
- E_PATCHING,
- E_COMMITING,
- E_BACKUP_CREATING,
- E_BACKUP_RESTORING,
- E_BACKUP_REMOVING,
- E_GATHERING_INFO,
- E_FREE
- };
- using Callback = std::function<void(DAT_STATUS, double, unsigned long long, unsigned long long, std::string)>;
-
-
- DatStatus() = delete;
- DatStatus(const DatStatus &other) = delete;
- DatStatus &operator=(const DatStatus &other) = delete;
- ~DatStatus() = default;
- explicit DatStatus(DatFile *datFilePtr);
- void SetStatus(DAT_STATUS status);
- void SetFinishedParts(unsigned long long finished_parts);
- void SetTotalParts(unsigned long long total_parts);
- void SetDebugMessage(const std::string &message);
- DAT_STATUS GetStatus();
- double GetPercentage();
- unsigned long long GetFinishedParts();
- unsigned long long GetTotalParts();
- std::string GetDebugMessage();
- void SetDefaultStatus();
- bool CheckIfNotPatched();
-
- void AddStatusChangedCallbackFunction(Callback* func);
- void RemoveStatusChangedCallbackFunction(Callback* func);
- bool IsFunctionRegisteredAsCallback(Callback* func);
- void EraseAllCallbackFunctions();
- private:
- DatFile *dat = nullptr;
- DAT_STATUS status_ = DAT_STATUS::E_FREE;
- unsigned long long finished_parts_ = 0;
- unsigned long long total_parts_ = 0;
- double percentage_ = 0;
- std::string debug_message_ = "";
- std::set<Callback*> callback_functions_;
- };
- }
- #endif
|