lotrodatmanager.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #ifndef LEGACYAPP_H
  2. #define LEGACYAPP_H
  3. #include <QObject>
  4. #include <QSettings>
  5. #include <QApplication>
  6. #include <QVector>
  7. #include <QVariant>
  8. #include <LotroDat/LotroDat.h>
  9. class PatchDownloader;
  10. class LotroDatManager : public QObject
  11. {
  12. Q_OBJECT
  13. public:
  14. explicit LotroDatManager(QObject *parent = nullptr);
  15. bool Initialised();
  16. bool NotPatched();
  17. // TODO:
  18. // bool IsRusificationActive();
  19. unsigned getPercent();
  20. QString getCurrentInstallingPatchName();
  21. public slots:
  22. void InitialiseManager();
  23. void DeinitialiseManager();
  24. void StartGame(LOTRO_DAT::DatLocaleManager::LOCALE locale);
  25. void ChangeTranslationLanguage();
  26. void InstallActivePatches();
  27. void SetupAllPatches();
  28. void InstallUpdates();
  29. void InstallMicroPatch();
  30. void CreateBackup();
  31. void RestoreFromBackup();
  32. void RemoveBackup();
  33. private:
  34. bool startLotroLauncherWithParameters(LOTRO_DAT::DatLocaleManager::LOCALE locale);
  35. void ApplyTexts();
  36. void ApplyImages();
  37. void ApplySounds();
  38. void InstallLoadscreens();
  39. void InstallVideos();
  40. signals:
  41. // general signals. First argument is process_name, second - processed values
  42. void processStarted(QString, QVector<QVariant> parameters = QVector<QVariant>());
  43. void processFinished(QString, QVector<QVariant> parameters = QVector<QVariant>());
  44. void progressChanged();
  45. void caughtError(QString, QVector<QVariant>);
  46. private:
  47. const QStringList all_patch_names = {"sound", "text", "image", "loadscreen", "texture", "font", "video"};
  48. QString current_installing_patch_name;
  49. int video_percent;
  50. int loadscreens_percent;
  51. LOTRO_DAT::DatFile client_local_file;
  52. LOTRO_DAT::DatFile client_general_file;
  53. };
  54. #endif // LEGACYAPP_H