|
@@ -43,6 +43,12 @@ Stage 10 - All settings are checked and set. If user is for the first time - sho
|
|
|
|
|
|
class MainWindow;
|
|
class MainWindow;
|
|
|
|
|
|
|
|
+enum class APP_STATE {
|
|
|
|
+ NO_PROCESS,
|
|
|
|
+ SEMI_CRITICAL_PROCESS,
|
|
|
|
+ CRITICAL_PROCESS
|
|
|
|
+};
|
|
|
|
+
|
|
class InternalLogicManager : public QObject
|
|
class InternalLogicManager : public QObject
|
|
{
|
|
{
|
|
Q_OBJECT
|
|
Q_OBJECT
|
|
@@ -51,40 +57,38 @@ public:
|
|
~InternalLogicManager();
|
|
~InternalLogicManager();
|
|
|
|
|
|
signals:
|
|
signals:
|
|
- void initPipelineStarted();
|
|
|
|
- void initPipelineFinished();
|
|
|
|
-
|
|
|
|
- // Semi-critical sections signals. Example: patch files downloading
|
|
|
|
- void semiCriticalSectionEntered();
|
|
|
|
- void semiCriticalSectionLeaved();
|
|
|
|
-
|
|
|
|
- // Critical sections. Example: patch applying, game updating, prelauncher files moving
|
|
|
|
- void criticalSectionEntered();
|
|
|
|
- void criticalSectionLeaved();
|
|
|
|
-
|
|
|
|
-//public slots:
|
|
|
|
-// void startInitPipeline();
|
|
|
|
-
|
|
|
|
-// // Actions from UI -> general window
|
|
|
|
-// void startGame(QString locale = "Original"); // Original/RU
|
|
|
|
-
|
|
|
|
-// // Actions from UI -> settings window
|
|
|
|
-// void lotroSettingsUpdated();
|
|
|
|
-// void createLotroFilesBackup();
|
|
|
|
-// void removeLotroFilesBackup();
|
|
|
|
-// void applySelectedPatches();
|
|
|
|
-// void updateSettingsChanged();
|
|
|
|
-// void terminateThreads();
|
|
|
|
-// void stopThreads();
|
|
|
|
-//private slots:
|
|
|
|
-// void checkFirstTimeOpening();
|
|
|
|
-// void checkGameFolderCorrectness();
|
|
|
|
-// void checkDatFilesExist();
|
|
|
|
-// void processLotroManagerInit();
|
|
|
|
-// void processPatchDownloaderInit(); // There begins also checkForUpdates cycle;
|
|
|
|
-// void checkBackupExist();
|
|
|
|
-// void checkUserHasEnteredPatchOptions();
|
|
|
|
-// void checkDatFileWasPatched();
|
|
|
|
|
|
+ void stateChanged(APP_STATE state);
|
|
|
|
+
|
|
|
|
+public slots:
|
|
|
|
+ void startInitPipeline();
|
|
|
|
+
|
|
|
|
+ // Actions from UI -> general window
|
|
|
|
+ void startGame(QString locale = "Original"); // Original/RU
|
|
|
|
+
|
|
|
|
+ // Actions from UI -> settings window
|
|
|
|
+ void lotroSettingsUpdated();
|
|
|
|
+ void createLotroFilesBackup();
|
|
|
|
+ void removeLotroFilesBackup();
|
|
|
|
+ void applySelectedPatches();
|
|
|
|
+ void updateSettingsChanged();
|
|
|
|
+ void terminateThreads();
|
|
|
|
+ void stopThreads();
|
|
|
|
+
|
|
|
|
+private slots:
|
|
|
|
+ void onLotroManagerStarted(QString, QVector<QVariant>);
|
|
|
|
+ void onLotroManagerFinished(QString, QVector<QVariant>);
|
|
|
|
+ void onLotroManagerErrorOccured(QString, QVector<QVariant>);
|
|
|
|
+ void onLotroManagerProgressChanged();
|
|
|
|
+
|
|
|
|
+private slots:
|
|
|
|
+ void checkFirstTimeOpening();
|
|
|
|
+ void checkGameFolderCorrectness();
|
|
|
|
+ void checkDatFilesExist();
|
|
|
|
+ void processLotroManagerInit();
|
|
|
|
+ void processPatchDownloaderInit(); // There begins also checkForUpdates cycle;
|
|
|
|
+ void checkBackupExist();
|
|
|
|
+ void checkUserHasEnteredPatchOptions();
|
|
|
|
+ void checkDatFileWasPatched();
|
|
|
|
|
|
private:
|
|
private:
|
|
PatchDownloader *patch_downloader;
|
|
PatchDownloader *patch_downloader;
|
|
@@ -95,6 +99,10 @@ private:
|
|
|
|
|
|
QSettings *settings;
|
|
QSettings *settings;
|
|
MainWindow *gui;
|
|
MainWindow *gui;
|
|
|
|
+
|
|
|
|
+ APP_STATE state;
|
|
|
|
+ size_t active_critical_process_count;
|
|
|
|
+ size_t active_non_critical_process_count;
|
|
};
|
|
};
|
|
|
|
|
|
#endif // INTERNALLOGICMANAGER_H
|
|
#endif // INTERNALLOGICMANAGER_H
|