lotrodatmanager.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. #include "lotrodatmanager.h"
  2. #include "models/filesystem.h"
  3. #include "models/settings.h"
  4. #include "models/lotrodatmanagerobserver.h"
  5. #include <QDebug>
  6. #include <QProcess>
  7. Q_DECLARE_METATYPE(LOTRO_DAT::DatLocaleManager::LOCALE)
  8. Q_DECLARE_METATYPE(LotroDatManager::Category)
  9. LotroDatManager::LotroDatManager(QObject *parent) :
  10. QObject(parent) {
  11. qRegisterMetaType<LOTRO_DAT::DatLocaleManager::LOCALE>();
  12. observer_ = new LotroDatManagerObserver(this);
  13. }
  14. LotroDatManager::~LotroDatManager()
  15. {
  16. deinitializeManager();
  17. delete observer_;
  18. }
  19. bool LotroDatManager::Initialised()
  20. {
  21. return client_general_file_.Initialized() && client_local_file_.Initialized();
  22. }
  23. bool LotroDatManager::NotPatched()
  24. {
  25. return !client_local_file_.GetStatusModule().CheckIfNotPatched() && !client_local_file_.GetStatusModule().CheckIfNotPatched();
  26. }
  27. LotroDatManager::Status LotroDatManager::getStatus()
  28. {
  29. Status result;
  30. result.status = client_local_file_.GetStatusModule().GetStatus();
  31. result.percent = client_local_file_.GetStatusModule().GetPercentage();
  32. result.dbg_message = QString::fromStdString(client_local_file_.GetStatusModule().GetDebugMessage());
  33. // client_local_file_.GetStatusModule().GetStatus(),
  34. // double(client_local_file_.GetStatusModule().GetPercentage()),
  35. // QString::fromStdString(client_local_file_.GetStatusModule().GetDebugMessage())
  36. // };
  37. return result;
  38. }
  39. LotroDatManagerObserver *LotroDatManager::getObserver()
  40. {
  41. return observer_;
  42. }
  43. void LotroDatManager::initializeManager()
  44. {
  45. emit operationStarted("initializeManager");
  46. qDebug() << __FUNCTION__ << "Starting initialisation of LotroDatManager";
  47. QString game_folder = Settings::getValue("Lotro/game_path").toString();
  48. QString locale_prefix = Settings::getValue("Lotro/original_locale").toString();
  49. QString client_local_filepath = game_folder + "/client_local_" + locale_prefix + ".dat";
  50. QString client_general_filepath = game_folder + "/client_general.dat";
  51. if (game_folder == "none") {
  52. qDebug() << __FUNCTION__ << "Finished initialisation LotroDatManager - error: .dat files not found!";
  53. emit errorOccured("initializeManager", {}, "FolderNotDefined");
  54. emit operationFinished("initializeManager", {}, false);
  55. return;
  56. }
  57. if (!FileSystem::fileExists(client_local_filepath) || !FileSystem::fileExists(client_general_filepath)) {
  58. emit errorOccured("initializeManager", {}, "DatFilesNotFound");
  59. emit operationFinished("initializeManager", {}, false);
  60. return;
  61. }
  62. // Updating file permissions to be sure, that they're not in read-only mode
  63. if (!QFile::setPermissions(client_local_filepath, QFileDevice::Permission(0x6666))) {
  64. qDebug() << __FUNCTION__ << "Unable to update permissions on client_local_* file!";
  65. }
  66. if (!QFile::setPermissions(client_general_filepath, QFileDevice::Permission(0x6666))) {
  67. qDebug() << __FUNCTION__ << "Unable to update permissions on client_general* file!";
  68. }
  69. // Initialising client_local_*.dat file and client_general.dat
  70. auto client_local_init_res = client_local_file_.Initialise(client_local_filepath.toStdString(), 0);
  71. auto client_general_init_res = client_general_file_.Initialise(client_general_filepath.toStdString(), 1);
  72. if (client_local_init_res.result != LOTRO_DAT::SUCCESS
  73. || client_general_init_res.result != LOTRO_DAT::SUCCESS)
  74. {
  75. client_local_file_.Deinitialize();
  76. client_general_file_.Deinitialize();
  77. qDebug() << __FUNCTION__ << "Finished LotroDatManager initialisation - error: DatFile initialisation error!";
  78. emit errorOccured("initializeManager", {}, "DatInitError");
  79. emit operationFinished("initializeManager", {}, false);
  80. return;
  81. }
  82. emit operationFinished("initializeManager", {}, true);
  83. }
  84. void LotroDatManager::deinitializeManager()
  85. {
  86. emit operationStarted("deinitializeManager");
  87. client_local_file_.Deinitialize();
  88. client_general_file_.Deinitialize();
  89. emit operationFinished("deinitializeManager");
  90. }
  91. void LotroDatManager::startGame(LOTRO_DAT::DatLocaleManager::LOCALE locale)
  92. {
  93. emit operationStarted("startGame", {locale});
  94. client_general_file_.GetLocaleManager().SetLocale(locale);
  95. client_local_file_.GetLocaleManager().SetLocale(locale);
  96. QString game_folder = Settings::getValue("Lotro/game_path").toString();
  97. if (game_folder == "none") {
  98. qDebug() << __FUNCTION__ << "Starting game FAILED - game folder wasnt set!";
  99. emit errorOccured("startGame", {locale}, "GameFolderNotSet");
  100. emit operationFinished("startGame", {locale}, false);
  101. return;
  102. }
  103. if (!FileSystem::fileExists(QApplication::applicationDirPath() + "/Launcher.exe")) {
  104. qDebug() << __FUNCTION__ << "Starting game FAILED - no game launcher in legacy directory found!";
  105. emit errorOccured("startGame", {locale}, "NoGameLauncherInLegacyDir");
  106. emit operationFinished("startGame", {locale}, false);
  107. return;
  108. }
  109. if (locale == LOTRO_DAT::DatLocaleManager::PATCHED) {
  110. QFile::remove(game_folder + "/lotro_ru.exe");
  111. if (!QFile::copy(QApplication::applicationDirPath() + "/LotroLauncher.exe", game_folder + "/lotro_ru.exe")) {
  112. qDebug() << __FUNCTION__ << "Starting game FAILED - cannot copy LotroLauncher to lotro_ru.exe!!";
  113. emit errorOccured("startGame", {locale}, "LauncherCopyFailed");
  114. emit operationFinished("startGame", {locale}, false);
  115. return;
  116. }
  117. QFile::remove(game_folder + "/LotroLauncher.exe");
  118. if (!QFile::copy(QApplication::applicationDirPath() + "/Launcher.exe", game_folder + "/LotroLauncher.exe")) {
  119. qDebug() << __FUNCTION__ << "Starting game FAILED - cannot copy GameLauncher to LotroLauncher!!";
  120. emit errorOccured("startGame", {locale}, "NoAccessToGameLauncher");
  121. emit operationFinished("startGame", {locale}, false);
  122. return;
  123. }
  124. QFile file(game_folder + "/legacy_path.txt");
  125. file.open(QIODevice::WriteOnly);
  126. QTextStream out(&file);
  127. out << QApplication::applicationDirPath() + "/LegacyLauncher.exe";
  128. file.close();
  129. } else {
  130. QFile::remove(game_folder + "/LotroLauncher.exe");
  131. if (!QFile::copy(QApplication::applicationDirPath() + "/LotroLauncher.exe", game_folder + "/LotroLauncher.exe")) {
  132. qDebug() << __FUNCTION__ << "Starting game FAILED - cannot copy LotroLauncher from working dir to LotroLauncher in lotro dir!!";
  133. emit errorOccured("startGame", {locale}, "NoAccessToGameLauncher");
  134. emit operationFinished("startGame", {locale}, false);
  135. return;
  136. }
  137. }
  138. if (!startLotroLauncherWithParameters(locale)) {
  139. emit errorOccured("startGame", {locale}, "StartLotroLauncherWithParametersFailed");
  140. emit operationFinished("startGame", {locale}, false);
  141. return;
  142. }
  143. emit operationFinished("startGame", {locale}, true);
  144. }
  145. void LotroDatManager::installPatch(QString patch_name, QString database_path)
  146. {
  147. emit operationStarted("installPatch", {patch_name, database_path});
  148. LOTRO_DAT::Database db;
  149. if (!db.InitDatabase(database_path.toStdString())) {
  150. emit errorOccured("installPatch", {patch_name, database_path}, "ErrorInitDatabase");
  151. emit operationFinished("installPatch", {patch_name, database_path}, false);
  152. return;
  153. }
  154. if (client_local_file_.GetPatcher().PatchAllDatabase(&db).result != LOTRO_DAT::SUCCESS) {
  155. db.CloseDatabase();
  156. emit errorOccured("installPatch", {patch_name, database_path}, "ErrorPatchClientLocal");
  157. emit operationFinished("installPatch", {patch_name, database_path}, false);
  158. return;
  159. }
  160. if (client_general_file_.GetPatcher().PatchAllDatabase(&db).result != LOTRO_DAT::SUCCESS) {
  161. db.CloseDatabase();
  162. emit errorOccured("installPatch", {patch_name, database_path});
  163. emit operationFinished("installPatch", {patch_name, database_path}, false);
  164. return;
  165. }
  166. db.CloseDatabase();
  167. emit operationFinished("installPatch", {patch_name, database_path}, true);
  168. }
  169. void LotroDatManager::enableCategory(QString patch_name, LotroDatManager::Category category)
  170. {
  171. emit operationStarted("enableCategory", {patch_name, category});
  172. if (client_local_file_.GetLocaleManager().EnableCategory(category).result != LOTRO_DAT::SUCCESS) {
  173. emit errorOccured("enableCategory", {patch_name, category}, "ErrorEnableCategoryClientLocal");
  174. emit operationFinished("enableCategory", {patch_name, category}, false);
  175. return;
  176. }
  177. if (client_general_file_.GetLocaleManager().EnableCategory(category).result != LOTRO_DAT::SUCCESS) {
  178. emit errorOccured("enableCategory", {patch_name, category}, "ErrorEnableCategoryClientGeneral");
  179. emit operationFinished("enableCategory", {patch_name, category}, false);
  180. return;
  181. }
  182. emit operationFinished("enableCategory", {patch_name, category});
  183. }
  184. void LotroDatManager::disableCategory(QString patch_name, LotroDatManager::Category category)
  185. {
  186. emit operationStarted("disableCategory", {patch_name, category});
  187. if (client_local_file_.GetLocaleManager().DisableCategory(category).result != LOTRO_DAT::SUCCESS) {
  188. emit errorOccured("disableCategory", {patch_name, category}, "ErrorDisableCategoryClientLocal");
  189. emit operationFinished("disableCategory", {patch_name, category}, false);
  190. return;
  191. }
  192. if (client_general_file_.GetLocaleManager().DisableCategory(category).result != LOTRO_DAT::SUCCESS) {
  193. emit errorOccured("disableCategory", {patch_name, category}, "ErrorDisableCategoryClientGeneral");
  194. emit operationFinished("disableCategory", {patch_name, category}, false);
  195. return;
  196. }
  197. emit operationFinished("disableCategory", {patch_name, category}, true);
  198. }
  199. void LotroDatManager::createBackup()
  200. {
  201. // TODO: Error handling
  202. emit operationStarted("createBackup");
  203. QString locale_prefix = Settings::getValue("Lotro/original_locale").toString();
  204. client_local_file_.GetBackupManager().CreateBackup((QApplication::applicationDirPath() + "/backup/client_local_" + locale_prefix + ".dat").toStdString());
  205. client_general_file_.GetBackupManager().CreateBackup((QApplication::applicationDirPath() + "/backup/client_general.dat").toStdString());
  206. emit operationFinished("createBackup");
  207. }
  208. void LotroDatManager::restoreFromBackup()
  209. {
  210. // TODO: Error handling
  211. emit operationStarted("restoreFromBackup");
  212. QString locale_prefix = Settings::getValue("Lotro/original_locale").toString();
  213. client_local_file_.GetBackupManager().RestoreFromBackup((QApplication::applicationDirPath() + "/backup/client_local_" + locale_prefix + ".dat").toStdString());
  214. client_general_file_.GetBackupManager().RestoreFromBackup((QApplication::applicationDirPath() + "/backup/client_general.dat").toStdString());
  215. emit operationFinished("restoreFromBackup");
  216. }
  217. void LotroDatManager::removeBackup()
  218. {
  219. // TODO: Error handling
  220. emit operationStarted("removeBackup");
  221. QString locale_prefix = Settings::getValue("Lotro/original_locale").toString();
  222. client_local_file_.GetBackupManager().RemoveBackup((QApplication::applicationDirPath() + "/backup/client_local_" + locale_prefix + ".dat").toStdString());
  223. client_general_file_.GetBackupManager().RemoveBackup((QApplication::applicationDirPath() + "/backup/client_general.dat").toStdString());
  224. emit operationFinished("removeBackup");
  225. }
  226. bool LotroDatManager::startLotroLauncherWithParameters(LOTRO_DAT::DatLocaleManager::LOCALE locale)
  227. {
  228. QStringList args;
  229. if (Settings::getValue("Lotro/skip_raw_download").toString() == "True") {
  230. args << "-skiprawdownload";
  231. }
  232. if (Settings::getValue("Lotro/no_splash_screen").toString() == "True") {
  233. args << "-nosplashscreen";
  234. }
  235. if (locale == LOTRO_DAT::DatLocaleManager::PATCHED) {
  236. args << "gamelaunch" << "-disablePatch";
  237. }
  238. client_general_file_.Deinitialize();
  239. client_local_file_.Deinitialize();
  240. QString username = Settings::getValue("Account/username").toString();
  241. QString password = Settings::getValue("Account/password").toString();
  242. if (!username.isEmpty() && !password.isEmpty()) {
  243. args << "-username" << username << "-password" << password;
  244. }
  245. qDebug() << __FUNCTION__ << "Starting game with arguments: " << args;
  246. QFile f(Settings::getValue("Lotro/game_path").toString() + "/LotroLauncher.exe");
  247. QProcess process;
  248. if (FileSystem::fileExists(f.fileName())) {
  249. if (f.fileName().contains(" ")) {
  250. f.setFileName("\"" + f.fileName() + "\"");
  251. }
  252. process.startDetached(f.fileName(), args);
  253. process.waitForFinished(-1);
  254. QApplication::quit();
  255. return true;
  256. } else {
  257. return false;
  258. }
  259. }