patchinstaller.cpp 17 KB

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