patchinstaller.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. #include "patchinstaller.h"
  2. #include "models/filesystem.h"
  3. #include "models/settings.h"
  4. #include <QDebug>
  5. #include <QProcess>
  6. #include <QApplication>
  7. #include <QSqlQuery>
  8. QString getComponentNameFromId(int id) {
  9. switch (id) {
  10. case 100: return "texts_main";
  11. case 101: return "texts_items";
  12. case 102: return "texts_emotes";
  13. case 200: return "maps";
  14. case 201: return "loadscreens";
  15. case 202: return "textures";
  16. case 300: return "sounds";
  17. case 301: return "videos";
  18. }
  19. return "none";
  20. }
  21. PatchInstaller::PatchInstaller(QObject *parent)
  22. : QObject(parent)
  23. , orig_files_db(QSqlDatabase::addDatabase("QSQLITE")) {
  24. }
  25. bool PatchInstaller::initialised() {
  26. return client_general_file_ && client_local_file_
  27. && client_general_file_->Initialized() && client_local_file_->Initialized();
  28. }
  29. PatchInstaller::~PatchInstaller() {
  30. deinit();
  31. }
  32. // ############## PRIVATE ############## //
  33. bool PatchInstaller::datPathIsRelevant() {
  34. QString game_folder = Settings::getValue("Lotro/game_path").toString();
  35. QString locale_prefix = Settings::getValue("Lotro/original_locale").toString();
  36. QString client_local_filepath = game_folder + "/client_local_" + locale_prefix + ".dat";
  37. QString client_general_filepath = game_folder + "/client_general.dat";
  38. QString client_local_current_path = QString::fromStdString(client_local_file_->GetFilename());
  39. QString client_general_current_path = QString::fromStdString(client_general_file_->GetFilename());
  40. return QFileInfo(client_local_filepath) != QFileInfo(client_local_current_path)
  41. || QFileInfo(client_general_filepath) != QFileInfo(client_general_current_path);
  42. }
  43. void PatchInstaller::deinit() {
  44. orig_files_db.close();
  45. if (client_local_file_)
  46. client_local_file_->Deinit();
  47. if (client_general_file_)
  48. client_general_file_->Deinit();
  49. emit deinitialized();
  50. }
  51. void PatchInstaller::installPatch(QString patch_name, LOTRO_DAT::Database* database) {
  52. if (!Settings::getValue("DatabaseNeedInstall/" + patch_name).toBool()) {
  53. return;
  54. }
  55. if (patch_name == "loadscreen") {
  56. installLoadscreens(database);
  57. return;
  58. }
  59. if (patch_name == "video") {
  60. installVideos(database);
  61. return;
  62. }
  63. if (patch_name == "micro" && !Settings::getValue("Components/micropatch").toBool()) {
  64. Settings::setValue("DatabaseNeedInstall/micropatch", false);
  65. return;
  66. }
  67. LOTRO_DAT::SubfileData file;
  68. qDebug() << "Total files in database " << database->CountRows();
  69. qDebug() << "Patching all files from database..." << database;
  70. while (!(file = database->GetNextFile()).Empty()) {
  71. current_status.finished_parts++;
  72. if (current_status.finished_parts * 100 / current_status.total_parts !=
  73. (current_status.finished_parts - 1) * 100 * 10 / current_status.total_parts) {
  74. // emitting if changed at least on 0.1%
  75. emit progressChanged(current_status);
  76. }
  77. if (!file.options["fid"]) {
  78. continue;
  79. }
  80. const int category = file.options["cat"] ? file.options["cat"].as<int>() : -1;
  81. QString component_name = getComponentNameFromId(category);
  82. if (category != -1 && !Settings::getValue("Components/" + component_name).toBool()) {
  83. continue;
  84. }
  85. const int dat_id = file.options["did"] ? file.options["did"].as<int>() : 0;
  86. const int file_id = file.options["fid"].as<int>();
  87. int file_version = -1;
  88. if (dat_id == E_CLIENT_LOCAL) {
  89. client_local_file_->PatchFile(file);
  90. file_version = client_local_file_->GetFileVersion(file_id);
  91. } else if (dat_id == E_CLIENT_GENERAL) {
  92. client_general_file_->PatchFile(file);
  93. file_version = client_local_file_->GetFileVersion(file_id);
  94. } else {
  95. qWarning() << "Unknown dat id parameter for file " << file.options["fid"].as<long long>() << " (dat id value = " << dat_id << "), SKIPPING!";
  96. }
  97. if (file_version != 721359) {
  98. const QString query = "INSERT INTO `patch_data` (`file_id`, `options`) VALUES ('"
  99. + QString::number(file_id) + "', '" + QString::number(file_version)
  100. + "') ON CONFLICT(`file_id`) DO UPDATE SET `options`='" + QString::number(file_version) + "';";
  101. qDebug() << "EXECUTING: " << query;
  102. orig_files_db.exec(query);
  103. }
  104. }
  105. Settings::setValue("DatabaseNeedInstall/" + patch_name, false);
  106. return;
  107. }
  108. void PatchInstaller::installLoadscreens(LOTRO_DAT::Database* database) {
  109. if (!Settings::getValue("Components/loadscreens").toBool()) {
  110. current_status.finished_parts += database->CountRows();
  111. emit progressChanged(current_status);
  112. Settings::setValue("DatabaseNeedInstall/loadscreen", false);
  113. return;
  114. }
  115. QString locale_prefix = Settings::getValue("Lotro/original_locale").toString();
  116. const QStringList loadscreens_filenames = {
  117. locale_prefix == "English" ? "lotro_ad_pregame.jpg" : "lotro_ad_pregame_" + locale_prefix + ".jpg",
  118. "lotro_generic_teleport_screen_01.jpg",
  119. "lotro_generic_teleport_screen_02.jpg",
  120. "lotro_generic_teleport_screen_03.jpg",
  121. "lotro_generic_teleport_screen_04.jpg",
  122. "lotro_generic_teleport_screen_05.jpg",
  123. "lotro_generic_teleport_screen_06.jpg",
  124. "lotro_generic_teleport_screen_07.jpg",
  125. "lotro_generic_teleport_screen_08.jpg",
  126. "lotro_generic_teleport_screen_09.jpg",
  127. "lotro_generic_teleport_screen_10.jpg"
  128. };
  129. LOTRO_DAT::SubfileData data;
  130. QString logo_path = Settings::getValue("Lotro/game_path").toString() + "/raw/" + (locale_prefix == "English" ? "en" : locale_prefix) + "/logo/";
  131. for (size_t i = 0; i < qMin(size_t(loadscreens_filenames.size()), database->CountRows()); ++i) {
  132. data = database->GetNextFile();
  133. QFile::remove(logo_path + loadscreens_filenames[i]);
  134. if (!data.binary_data.WriteToFile((logo_path + loadscreens_filenames[i]).toLocal8Bit())) {
  135. qWarning() << "InstallLoadscreens: Cannot write to file " << logo_path + loadscreens_filenames[i];
  136. }
  137. current_status.finished_parts++;
  138. if (current_status.finished_parts * 100 / current_status.total_parts !=
  139. (current_status.finished_parts - 1) * 100 * 10 / current_status.total_parts) {
  140. // emitting if changed at least on 0.1%
  141. emit progressChanged(current_status);
  142. }
  143. }
  144. Settings::setValue("DatabaseNeedInstall/loadscreen", false);
  145. }
  146. void PatchInstaller::installVideos(LOTRO_DAT::Database* database) {
  147. current_status.finished_parts += database->CountRows();
  148. emit progressChanged(current_status);
  149. download_video_total_videos = database->CountRows();
  150. download_video_finished_videos = 0;
  151. if (!Settings::getValue("Components/videos").toBool()) {
  152. Settings::setValue("DatabaseNeedInstall/video", false);
  153. return;
  154. }
  155. LOTRO_DAT::SubfileData file;
  156. while (!(file = database->GetNextFile()).Empty()) {
  157. if (!file.options["name"] || !file.options["url"] || !file.options["hash"] || !file.options["folder"]) {
  158. download_video_finished_videos++;
  159. continue;
  160. }
  161. const QString filename = QString::fromStdString(file.options["name"].as<std::string>());
  162. const QString url = QString::fromStdString(file.options["url"].as<std::string>());
  163. const QString hash = QString::fromStdString(file.options["hash"].as<std::string>());
  164. const QString folder = QString::fromStdString(file.options["folder"].as<std::string>());
  165. const QString full_filename = Settings::getValue("Lotro/game_path").toString() + "/" + folder + "/" + filename;
  166. FileSystem::createFilePath(full_filename);
  167. if (FileSystem::fileExists(full_filename) && FileSystem::fileHash(full_filename) == hash) {
  168. download_video_finished_videos++;
  169. continue;
  170. }
  171. QFile* target_file = new QFile(full_filename);
  172. target_file->open(QIODevice::WriteOnly);
  173. Downloader* video_downloader = new Downloader(this);
  174. connect(video_downloader, &Downloader::progressChanged, this, &PatchInstaller::onDownloaderProgressChanged);
  175. video_downloader->setUrl(url);
  176. video_downloader->targetFile = target_file;
  177. video_downloader->start();
  178. video_downloader->waitForDownloaded();
  179. video_downloader->targetFile->close();
  180. video_downloader->targetFile->deleteLater();
  181. video_downloader->targetFile = nullptr;
  182. video_downloader->deleteLater();
  183. download_video_finished_videos++;
  184. }
  185. Settings::setValue("DatabaseNeedInstall/video", false);
  186. }
  187. // ############## PUBLIC SLOTS ############## //
  188. void PatchInstaller::init()
  189. {
  190. qDebug() << __FUNCTION__ << "Starting initialisation of LotroDatManager";
  191. qRegisterMetaType<PatchInstaller::Status>();
  192. QString game_folder = Settings::getValue("Lotro/game_path").toString();
  193. QString locale_prefix = Settings::getValue("Lotro/original_locale").toString();
  194. QString client_local_filepath = game_folder + "/client_local_" + locale_prefix + ".dat";
  195. QString client_general_filepath = game_folder + "/client_general.dat";
  196. if (!FileSystem::fileExists(client_local_filepath) || !FileSystem::fileExists(client_general_filepath)) {
  197. qCritical() << __FUNCTION__ << "DatFiles do not exist!" << client_local_filepath << " " << client_general_filepath;
  198. return;
  199. }
  200. // Updating file permissions to be sure, that they're not in read-only mode
  201. if (!QFile::setPermissions(client_local_filepath, QFileDevice::Permission(0x6666))) {
  202. qDebug() << __FUNCTION__ << "Unable to update permissions on client_local_* file!";
  203. }
  204. if (!QFile::setPermissions(client_general_filepath, QFileDevice::Permission(0x6666))) {
  205. qDebug() << __FUNCTION__ << "Unable to update permissions on client_general* file!";
  206. }
  207. // Initialising client_local_*.dat file and client_general.dat
  208. client_local_file_ = new LOTRO_DAT::DatFile(1);
  209. client_general_file_ = new LOTRO_DAT::DatFile(2);
  210. auto client_local_init_res = client_local_file_->Init(client_local_filepath.toStdString());
  211. auto client_general_init_res = client_general_file_->Init(client_general_filepath.toStdString());
  212. if (!client_local_init_res || !client_general_init_res) {
  213. client_local_file_->Deinit();
  214. client_general_file_->Deinit();
  215. qCritical() << __FUNCTION__ << "Finished LotroDatManager initialisation - error: DatFile initialisation error!";
  216. return;
  217. }
  218. // Initializing db for original files backup
  219. QString database_path = game_folder + "/LotroLegacy/orig_files.db";
  220. if (!FileSystem::fileExists(database_path)) {
  221. FileSystem::createFilePath(database_path);
  222. }
  223. orig_files_db.setDatabaseName(database_path);
  224. if (!orig_files_db.open()) {
  225. qCritical() << "Initializing PatchInstaller - Cannot open backup database!!!!!!! " << database_path;
  226. }
  227. orig_files_db.exec(create_table_query);
  228. orig_files_db.exec("PRAGMA synchronous = OFF");
  229. orig_files_db.exec("PRAGMA count_changes = OFF");
  230. orig_files_db.exec("PRAGMA journal_mode = MEMORY");
  231. orig_files_db.exec("PRAGMA temp_store = MEMORY");
  232. orig_files_db.exec("PRAGMA encoding = \"UTF-8\";");
  233. qDebug() << "LotroDatManager initialisation successfull! Dat files: "
  234. << QString::fromStdString(client_general_file_->GetFilename())
  235. << QString::fromStdString(client_local_file_->GetFilename());
  236. emit successfullyInitialized();
  237. }
  238. void PatchInstaller::startGame(bool freeze_updates) {
  239. // if freeze_updates is set to True, original game
  240. // launcher will be replaced with special program,
  241. // which controls lotro startup and prevents from updates
  242. QString game_folder = Settings::getValue("Lotro/game_path").toString();
  243. if (game_folder == "none") {
  244. qCritical() << __FUNCTION__ << "Starting game FAILED - game folder wasnt set!";
  245. return;
  246. }
  247. if (!FileSystem::fileExists(QApplication::applicationDirPath() + "/Launcher.exe")) {
  248. qCritical() << __FUNCTION__ << "Starting game FAILED - no game launcher in legacy directory found!";
  249. return;
  250. }
  251. if (freeze_updates) {
  252. QFile::remove(game_folder + "/lotro_ru.exe");
  253. if (!QFile::copy(QApplication::applicationDirPath() + "/LotroLauncher.exe", game_folder + "/lotro_ru.exe")) {
  254. qCritical() << __FUNCTION__ << "Starting game FAILED - cannot copy LotroLauncher to lotro_ru.exe!!";
  255. return;
  256. }
  257. QFile::remove(game_folder + "/LotroLauncher.exe");
  258. if (!QFile::copy(QApplication::applicationDirPath() + "/Launcher.exe", game_folder + "/LotroLauncher.exe")) {
  259. qCritical() << __FUNCTION__ << "Starting game FAILED - cannot copy GameLauncher to LotroLauncher!!";
  260. return;
  261. }
  262. QFile file(game_folder + "/legacy_path.txt");
  263. file.open(QIODevice::WriteOnly);
  264. QTextStream out(&file);
  265. out << QApplication::applicationDirPath() + "/LegacyLauncher.exe";
  266. file.close();
  267. } else {
  268. QFile::remove(game_folder + "/LotroLauncher.exe");
  269. if (!QFile::copy(QApplication::applicationDirPath() + "/LotroLauncher.exe", game_folder + "/LotroLauncher.exe")) {
  270. qCritical() << __FUNCTION__ << "Starting game FAILED - cannot copy LotroLauncher from working dir to LotroLauncher in lotro dir!!";
  271. return;
  272. }
  273. }
  274. QStringList args;
  275. if (freeze_updates) {
  276. args << "gamelaunch" << "-disablePatch";
  277. }
  278. if (Settings::getValue("Lotro/skip_raw_download").toBool()) {
  279. args << "-skiprawdownload";
  280. }
  281. if (Settings::getValue("Lotro/no_splash_screen").toBool()) {
  282. args << "-nosplashscreen";
  283. }
  284. client_general_file_->Deinit();
  285. client_local_file_->Deinit();
  286. QString username = Settings::getValue("Account/username").toString();
  287. QString password = Settings::getValue("Account/password").toString();
  288. if (!username.isEmpty() && !password.isEmpty()) {
  289. args << "-username" << username << "-password" << password;
  290. }
  291. qDebug() << __FUNCTION__ << "Starting game with arguments: " << args;
  292. QFile f(Settings::getValue("Lotro/game_path").toString() + "/LotroLauncher.exe");
  293. QProcess process;
  294. if (FileSystem::fileExists(f.fileName())) {
  295. if (f.fileName().contains(" ")) {
  296. f.setFileName("\"" + f.fileName() + "\"");
  297. }
  298. process.startDetached(f.fileName(), args);
  299. process.waitForFinished(-1);
  300. QApplication::quit();
  301. }
  302. }
  303. void PatchInstaller::startPatchInstallationChain() {
  304. emit started();
  305. qInfo() << "PatchInstaller: Starting installation chain...";
  306. const QVector<QString> patches = {"text", "font", "image", "loadscreen", "texture", "sound", "video", "micro"};
  307. QMap<QString, LOTRO_DAT::Database*> patch_databases;
  308. current_status.total_parts = 0;
  309. current_status.finished_parts = 0;
  310. for (const QString& patch: patches) {
  311. if (!Settings::getValue("DatabaseNeedInstall/" + patch).toBool()) {
  312. continue;
  313. }
  314. const QString patch_hashsum = Settings::getValue("PatchDatabases/" + patch + "/hashsum").toString();
  315. const QString patch_filename = Settings::getValue("PatchDatabases/" + patch + "/path").toString();
  316. const QString real_file_hashsum = FileSystem::fileHash(patch_filename);
  317. if (!FileSystem::fileExists(patch_filename) || real_file_hashsum != patch_hashsum) {
  318. qCritical() << "PatchInstallation: Incorrect patch file: " << patch_filename << ", hashsum: " << real_file_hashsum << ", expected: " << patch_hashsum;
  319. continue;
  320. }
  321. LOTRO_DAT::Database* db = new LOTRO_DAT::Database();
  322. if (!db->InitDatabase(patch_filename.toStdString())) {
  323. qCritical() << "PatchInstallation: failed to initialize db " << patch_filename;
  324. continue;
  325. }
  326. patch_databases[patch] = db;
  327. current_status.total_parts += db->CountRows();
  328. }
  329. emit progressChanged(current_status);
  330. for (const QString patch_name: patch_databases.keys()) {
  331. qInfo() << "PatchInstaller: Installing patch " << patch_name;
  332. installPatch(patch_name, patch_databases[patch_name]);
  333. patch_databases[patch_name]->CloseDatabase();
  334. delete patch_databases[patch_name];
  335. }
  336. qInfo() << "PatchInstaller: Finished installation chain...";
  337. emit finished();
  338. }
  339. // ############## PRIVATE SLOTS ############## //
  340. void PatchInstaller::onDownloaderProgressChanged(Downloader*, Downloader::Status progress) {
  341. emit videosDownloadProgressChanged(download_video_finished_videos, download_video_total_videos, progress);
  342. }