|
@@ -12,14 +12,12 @@
|
|
|
#include <iostream>
|
|
|
#include <fstream>
|
|
|
|
|
|
-Q_DECLARE_METATYPE(LOTRO_DAT::FILE_TYPE)
|
|
|
-Q_DECLARE_METATYPE(LOTRO_DAT::SubfileData)
|
|
|
+Q_DECLARE_METATYPE(LOTRO_DAT::DatLocaleManager::LOCALE)
|
|
|
|
|
|
LotroDatManager::LotroDatManager(QSettings* settings, PatchDownloader* downloader, QObject *parent) :
|
|
|
QObject(parent), app_settings(settings), patch_downloader(downloader) {
|
|
|
|
|
|
- qRegisterMetaType<LOTRO_DAT::FILE_TYPE>();
|
|
|
- qRegisterMetaType<LOTRO_DAT::SubfileData>();
|
|
|
+ qRegisterMetaType<LOTRO_DAT::DatLocaleManager::LOCALE>();
|
|
|
}
|
|
|
|
|
|
bool LotroDatManager::Initialised()
|
|
@@ -34,12 +32,15 @@ bool LotroDatManager::NotPatched()
|
|
|
|
|
|
void LotroDatManager::InitialiseManager()
|
|
|
{
|
|
|
+ qDebug() << "Initialising .dat manager";
|
|
|
emit processStarted();
|
|
|
QString game_folder = app_settings->value("General/game_folder_path", QString()).toString();
|
|
|
QString locale_prefix = app_settings->value("General/original_locale", "English").toString();
|
|
|
if (game_folder.isEmpty() || !FileSystem::fileExists(game_folder + "client_local_" + locale_prefix + ".dat")
|
|
|
|| !FileSystem::fileExists(game_folder + "client_general.dat")) {
|
|
|
|
|
|
+ qDebug() << "Finished initialisation .dat manager - error: required files not found!";
|
|
|
+
|
|
|
emit caughtError(QString("InitialiseManager"), {"FileNotFound"});
|
|
|
emit processFinished();
|
|
|
return;
|
|
@@ -53,6 +54,8 @@ void LotroDatManager::InitialiseManager()
|
|
|
client_local_file.Deinitialize();
|
|
|
client_general_file.Deinitialize();
|
|
|
|
|
|
+ qDebug() << "Finished initialisation .dat manager - error: DatFile initialisation error!";
|
|
|
+
|
|
|
emit caughtError(QString("InitialiseManager"), {"InitialisationError"});
|
|
|
emit processFinished();
|
|
|
return;
|
|
@@ -64,38 +67,65 @@ void LotroDatManager::InitialiseManager()
|
|
|
void LotroDatManager::DeinitialiseManager()
|
|
|
{
|
|
|
emit processStarted();
|
|
|
+ qDebug() << "Started DEinitialisation .dat manager.";
|
|
|
client_local_file.Deinitialize();
|
|
|
client_general_file.Deinitialize();
|
|
|
+ qDebug() << "Finished DEinitialisation .dat manager.";
|
|
|
emit processFinished();
|
|
|
}
|
|
|
|
|
|
void LotroDatManager::StartGame(LOTRO_DAT::DatLocaleManager::LOCALE locale)
|
|
|
{
|
|
|
emit processStarted();
|
|
|
+ qDebug() << "Starting game!";
|
|
|
|
|
|
client_general_file.GetLocaleManager().SetLocale(locale);
|
|
|
client_local_file.GetLocaleManager().SetLocale(locale);
|
|
|
|
|
|
QString game_folder = app_settings->value("General/game_folder_path", QString()).toString();
|
|
|
|
|
|
- if (!FileSystem::fileExists(QApplication::applicationDirPath() + "/GameLauncher.exe")) {
|
|
|
+ if (!FileSystem::fileExists(QApplication::applicationDirPath() + "/Launcher.exe")) {
|
|
|
emit caughtError("StartGame", {"NoGameLauncherInLegacyDir"});
|
|
|
+ qDebug() << "Starting game FAILED - no game launcher in legacy directory found!";
|
|
|
emit processFinished();
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!QFile::remove(game_folder + "/LotroLauncher.exe")) {
|
|
|
- emit caughtError("StartGame", {"NoAccessToLotroLauncher"});
|
|
|
- emit processFinished();
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (locale == LOTRO_DAT::DatLocaleManager::PATCHED) {
|
|
|
+ QFile::remove(game_folder + "/lotro_ru.exe");
|
|
|
+ if (!QFile::copy(QApplication::applicationDirPath() + "/LotroLauncher.exe", game_folder + "/lotro_ru.exe")) {
|
|
|
+ emit caughtError("StartGame", {"NoAccessToGameLauncher"});
|
|
|
+ qDebug() << "Starting game FAILED - cannot copy LotroLauncher to LotroLauncher_fwd!!";
|
|
|
+ emit processFinished();
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- if (!QFile::copy(QApplication::applicationDirPath() + "/GameLauncher.exe", game_folder + "/LotroLauncher.exe")) {
|
|
|
- emit caughtError("StartGame", {"NoAccessToGameLauncher"});
|
|
|
- emit processFinished();
|
|
|
- return;
|
|
|
+ QFile::remove(game_folder + "/LotroLauncher.exe");
|
|
|
+ if (!QFile::copy(QApplication::applicationDirPath() + "/Launcher.exe", game_folder + "/LotroLauncher.exe")) {
|
|
|
+ emit caughtError("StartGame", {"NoAccessToGameLauncher"});
|
|
|
+ qDebug() << "Starting game FAILED - cannot copy GameLauncher to LotroLauncher!!";
|
|
|
+ emit processFinished();
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ QFile file(game_folder + "/legacy_path.txt");
|
|
|
+ file.open(QIODevice::WriteOnly);
|
|
|
+ QTextStream out(&file);
|
|
|
+ out << QApplication::applicationDirPath() + "/LegacyLauncher.exe";
|
|
|
+ file.close();
|
|
|
+ } else {
|
|
|
+ QFile::remove(game_folder + "/LotroLauncher.exe");
|
|
|
+ if (!QFile::copy(QApplication::applicationDirPath() + "/LotroLauncher.exe", game_folder + "/LotroLauncher.exe")) {
|
|
|
+ qDebug() << QApplication::applicationDirPath() + "/LotroLauncher.exe";
|
|
|
+ qDebug() << game_folder + "/LotroLauncher.exe";
|
|
|
+ emit caughtError("StartGame", {"NoAccessToGameLauncher"});
|
|
|
+ qDebug() << "Starting game FAILED - cannot copy LotroLauncher from working dir to LotroLauncher in lotro dir!!";
|
|
|
+ emit processFinished();
|
|
|
+ return;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+ qDebug() << "Starting game finished!!";
|
|
|
startLotroLauncherWithParameters(locale);
|
|
|
emit processFinished();
|
|
|
}
|
|
@@ -108,8 +138,8 @@ void LotroDatManager::ChangeTranslationLanguage()
|
|
|
|
|
|
void LotroDatManager::InstallActivePatches()
|
|
|
{
|
|
|
- InstallPatches();
|
|
|
- ApplyTexts();
|
|
|
+ InstallPatches();
|
|
|
+ ApplyTexts();
|
|
|
ApplyImages();
|
|
|
ApplySounds();
|
|
|
InstallLoadscreens();
|
|
@@ -230,8 +260,13 @@ void LotroDatManager::InstallVideos()
|
|
|
if (!QDir(target_folder).exists())
|
|
|
QDir(target_folder).mkpath(target_folder);
|
|
|
|
|
|
- if (FileSystem::fileExists(target_folder + filename))
|
|
|
- QFile::remove(target_folder + filename);
|
|
|
+ if (FileSystem::fileExists(target_folder + filename)) {
|
|
|
+ if (FileSystem::fileHash(target_folder + filename) == hash) {
|
|
|
+ continue;
|
|
|
+ } else {
|
|
|
+ QFile::remove(target_folder + filename);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
Downloader video_downloader;
|
|
|
video_downloader.setUrl(url);
|
|
@@ -341,7 +376,7 @@ bool LotroDatManager::startLotroLauncherWithParameters(LOTRO_DAT::DatLocaleManag
|
|
|
QStringList args;
|
|
|
args << "-skiprawdownload";
|
|
|
if (locale == LOTRO_DAT::DatLocaleManager::PATCHED)
|
|
|
- args << "-disablePatch";
|
|
|
+ args << "gamelaunch" << "-disablePatch";
|
|
|
|
|
|
client_general_file.Deinitialize();
|
|
|
client_local_file.Deinitialize();
|