2022-03-19 11:46:56 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QApplication>
|
2013-10-06 00:13:40 +01:00
|
|
|
#include <memory>
|
2015-02-02 01:14:14 +00:00
|
|
|
#include <QDebug>
|
2014-01-05 12:17:42 +00:00
|
|
|
#include <QFlag>
|
2015-03-01 21:20:57 +00:00
|
|
|
#include <QIcon>
|
2015-02-02 01:14:14 +00:00
|
|
|
#include <QDateTime>
|
2020-02-04 23:29:23 +00:00
|
|
|
#include <QUrl>
|
2015-06-08 01:43:16 +01:00
|
|
|
#include <updater/GoUpdate.h>
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
#include <BaseInstance.h>
|
|
|
|
|
2021-05-22 17:07:08 +01:00
|
|
|
#include "minecraft/launch/MinecraftServerTarget.h"
|
|
|
|
|
2016-10-30 01:37:38 +00:00
|
|
|
class LaunchController;
|
|
|
|
class LocalPeer;
|
|
|
|
class InstanceWindow;
|
|
|
|
class MainWindow;
|
2016-12-01 01:17:27 +00:00
|
|
|
class SetupWizard;
|
2015-07-05 01:29:41 +01:00
|
|
|
class GenericPageProvider;
|
2015-02-02 01:14:14 +00:00
|
|
|
class QFile;
|
2013-09-08 01:15:20 +01:00
|
|
|
class HttpMetaCache;
|
2013-09-07 03:00:58 +01:00
|
|
|
class SettingsObject;
|
|
|
|
class InstanceList;
|
2021-07-26 20:44:11 +01:00
|
|
|
class AccountList;
|
2013-09-07 03:00:58 +01:00
|
|
|
class IconList;
|
|
|
|
class QNetworkAccessManager;
|
2016-01-01 23:35:54 +00:00
|
|
|
class JavaInstallList;
|
2013-12-04 18:34:12 +00:00
|
|
|
class UpdateChecker;
|
2014-02-15 13:19:35 +00:00
|
|
|
class BaseProfilerFactory;
|
2014-02-16 09:46:14 +00:00
|
|
|
class BaseDetachedToolFactory;
|
2016-12-05 01:29:08 +00:00
|
|
|
class TranslationsModel;
|
2016-10-21 08:07:26 +01:00
|
|
|
class ITheme;
|
2016-11-02 01:33:55 +00:00
|
|
|
class MCEditTool;
|
2013-09-07 03:00:58 +01:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
namespace Meta {
|
|
|
|
class Index;
|
|
|
|
}
|
|
|
|
|
2021-11-20 15:22:22 +00:00
|
|
|
#if defined(APPLICATION)
|
|
|
|
#undef APPLICATION
|
2013-09-07 03:00:58 +01:00
|
|
|
#endif
|
2021-11-20 15:22:22 +00:00
|
|
|
#define APPLICATION (static_cast<Application *>(QCoreApplication::instance()))
|
2013-09-07 03:00:58 +01:00
|
|
|
|
2021-11-20 15:22:22 +00:00
|
|
|
class Application : public QApplication
|
2013-09-07 03:00:58 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
// friends for the purpose of limiting access to deprecated stuff
|
|
|
|
Q_OBJECT
|
2013-09-07 03:00:58 +01:00
|
|
|
public:
|
2021-11-21 22:21:12 +00:00
|
|
|
enum Status {
|
2018-07-15 13:51:05 +01:00
|
|
|
StartingUp,
|
|
|
|
Failed,
|
|
|
|
Succeeded,
|
|
|
|
Initialized
|
|
|
|
};
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2022-05-29 20:18:34 +01:00
|
|
|
enum Capability {
|
|
|
|
None = 0,
|
|
|
|
|
|
|
|
SupportsMSA = 1 << 0,
|
|
|
|
SupportsFlame = 1 << 1,
|
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(Capabilities, Capability)
|
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
public:
|
2021-11-20 15:22:22 +00:00
|
|
|
Application(int &argc, char **argv);
|
|
|
|
virtual ~Application();
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2022-05-24 06:35:01 +01:00
|
|
|
bool event(QEvent* event) override;
|
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
std::shared_ptr<SettingsObject> settings() const {
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_settings;
|
|
|
|
}
|
2015-02-02 00:09:28 +00:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
qint64 timeSinceStart() const {
|
2018-07-15 13:51:05 +01:00
|
|
|
return startTime.msecsTo(QDateTime::currentDateTime());
|
|
|
|
}
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
QIcon getThemedIcon(const QString& name);
|
2015-03-01 21:20:57 +00:00
|
|
|
|
2022-03-28 19:55:03 +01:00
|
|
|
bool isFlatpak();
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
void setIconTheme(const QString& name);
|
2015-03-01 21:20:57 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
std::vector<ITheme *> getValidApplicationThemes();
|
2016-10-30 01:37:38 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
void setApplicationTheme(const QString& name, bool initial);
|
2016-10-21 08:07:26 +01:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
shared_qobject_ptr<UpdateChecker> updateChecker() {
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_updateChecker;
|
|
|
|
}
|
2013-12-01 23:55:24 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
std::shared_ptr<TranslationsModel> translations();
|
2017-07-05 17:02:49 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
std::shared_ptr<JavaInstallList> javalist();
|
2013-10-14 02:59:21 +01:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
std::shared_ptr<InstanceList> instances() const {
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_instances;
|
|
|
|
}
|
2015-01-31 15:59:03 +00:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
std::shared_ptr<IconList> icons() const {
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_icons;
|
|
|
|
}
|
2016-04-10 03:29:29 +01:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
MCEditTool *mcedit() const {
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_mcedit.get();
|
|
|
|
}
|
2016-11-02 01:33:55 +00:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
shared_qobject_ptr<AccountList> accounts() const {
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_accounts;
|
|
|
|
}
|
2015-01-31 15:59:03 +00:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
Status status() const {
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_status;
|
|
|
|
}
|
2015-01-31 15:59:03 +00:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
const QMap<QString, std::shared_ptr<BaseProfilerFactory>> &profilers() const {
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_profilers;
|
|
|
|
}
|
2015-01-31 15:59:03 +00:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
void updateProxySettings(QString proxyTypeStr, QString addr, int port, QString user, QString password);
|
|
|
|
|
|
|
|
shared_qobject_ptr<QNetworkAccessManager> network();
|
|
|
|
|
|
|
|
shared_qobject_ptr<HttpMetaCache> metacache();
|
|
|
|
|
|
|
|
shared_qobject_ptr<Meta::Index> metadataIndex();
|
|
|
|
|
2022-05-29 20:18:34 +01:00
|
|
|
Capabilities currentCapabilities();
|
|
|
|
|
2022-06-14 21:00:24 +01:00
|
|
|
/*!
|
|
|
|
* Finds and returns the full path to a jar file.
|
|
|
|
* Returns a null-string if it could not be found.
|
|
|
|
*/
|
|
|
|
QString getJarPath(QString jarFile);
|
2021-11-21 22:21:12 +00:00
|
|
|
|
2022-02-12 19:20:51 +00:00
|
|
|
QString getMSAClientID();
|
2022-05-29 20:29:07 +01:00
|
|
|
QString getFlameAPIKey();
|
2022-06-04 08:33:17 +01:00
|
|
|
QString getUserAgent();
|
|
|
|
QString getUserAgentUncached();
|
2022-02-12 19:20:51 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
/// this is the root of the 'installation'. Used for automatic updates
|
2021-11-21 22:21:12 +00:00
|
|
|
const QString &root() {
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_rootPath;
|
|
|
|
}
|
2016-10-30 01:37:38 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
/*!
|
|
|
|
* Opens a json file using either a system default editor, or, if not empty, the editor
|
|
|
|
* specified in the settings
|
|
|
|
*/
|
|
|
|
bool openJsonEditor(const QString &filename);
|
2013-12-29 16:51:16 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
InstanceWindow *showInstanceWindow(InstancePtr instance, QString page = QString());
|
|
|
|
MainWindow *showMainWindow(bool minimized = false);
|
2016-11-06 20:58:54 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
void updateIsRunning(bool running);
|
|
|
|
bool updatesAreAllowed();
|
2017-05-02 00:43:18 +01:00
|
|
|
|
2019-06-01 11:28:53 +01:00
|
|
|
void ShowGlobalSettings(class QWidget * parent, QString open_page = QString());
|
|
|
|
|
2017-05-02 00:43:18 +01:00
|
|
|
signals:
|
2018-07-15 13:51:05 +01:00
|
|
|
void updateAllowedChanged(bool status);
|
2019-06-01 11:28:53 +01:00
|
|
|
void globalSettingsAboutToOpen();
|
|
|
|
void globalSettingsClosed();
|
2017-05-02 00:43:18 +01:00
|
|
|
|
2022-05-24 09:18:02 +01:00
|
|
|
#ifdef Q_OS_MACOS
|
2022-05-24 06:35:01 +01:00
|
|
|
void clickedOnDock();
|
2022-05-24 09:18:02 +01:00
|
|
|
#endif
|
2017-05-02 00:43:18 +01:00
|
|
|
|
2016-11-06 20:58:54 +00:00
|
|
|
public slots:
|
2021-05-22 17:07:08 +01:00
|
|
|
bool launch(
|
2021-11-21 22:21:12 +00:00
|
|
|
InstancePtr instance,
|
|
|
|
bool online = true,
|
|
|
|
BaseProfilerFactory *profiler = nullptr,
|
|
|
|
MinecraftServerTargetPtr serverToJoin = nullptr,
|
|
|
|
MinecraftAccountPtr accountToUse = nullptr
|
2021-05-22 17:07:08 +01:00
|
|
|
);
|
2018-07-15 13:51:05 +01:00
|
|
|
bool kill(InstancePtr instance);
|
2022-04-16 07:07:29 +01:00
|
|
|
void closeCurrentWindow();
|
2014-01-03 01:29:05 +00:00
|
|
|
|
2014-01-05 12:17:42 +00:00
|
|
|
private slots:
|
2018-07-15 13:51:05 +01:00
|
|
|
void on_windowClose();
|
2021-10-31 20:42:06 +00:00
|
|
|
void messageReceived(const QByteArray & message);
|
2018-07-15 13:51:05 +01:00
|
|
|
void controllerSucceeded();
|
|
|
|
void controllerFailed(const QString & error);
|
|
|
|
void setupWizardFinished(int status);
|
2016-11-01 00:25:04 +00:00
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
private:
|
2018-07-15 13:51:05 +01:00
|
|
|
bool createSetupWizard();
|
|
|
|
void performMainStartupAction();
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// sets the fatal error message and m_status to Failed.
|
|
|
|
void showFatalErrorMessage(const QString & title, const QString & content);
|
2017-01-14 14:47:58 +00:00
|
|
|
|
2017-05-02 00:43:18 +01:00
|
|
|
private:
|
2018-07-15 13:51:05 +01:00
|
|
|
void addRunningInstance();
|
|
|
|
void subRunningInstance();
|
|
|
|
bool shouldExitNow() const;
|
2017-05-02 00:43:18 +01:00
|
|
|
|
2013-09-07 03:00:58 +01:00
|
|
|
private:
|
2018-07-15 13:51:05 +01:00
|
|
|
QDateTime startTime;
|
2015-02-02 01:14:14 +00:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
shared_qobject_ptr<QNetworkAccessManager> m_network;
|
|
|
|
|
|
|
|
shared_qobject_ptr<UpdateChecker> m_updateChecker;
|
|
|
|
shared_qobject_ptr<AccountList> m_accounts;
|
|
|
|
|
|
|
|
shared_qobject_ptr<HttpMetaCache> m_metacache;
|
|
|
|
shared_qobject_ptr<Meta::Index> m_metadataIndex;
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
std::shared_ptr<SettingsObject> m_settings;
|
|
|
|
std::shared_ptr<InstanceList> m_instances;
|
|
|
|
std::shared_ptr<IconList> m_icons;
|
|
|
|
std::shared_ptr<JavaInstallList> m_javalist;
|
|
|
|
std::shared_ptr<TranslationsModel> m_translations;
|
|
|
|
std::shared_ptr<GenericPageProvider> m_globalSettingsProvider;
|
|
|
|
std::map<QString, std::unique_ptr<ITheme>> m_themes;
|
|
|
|
std::unique_ptr<MCEditTool> m_mcedit;
|
2021-11-21 22:21:12 +00:00
|
|
|
QSet<QString> m_features;
|
2014-05-04 23:10:59 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
QMap<QString, std::shared_ptr<BaseProfilerFactory>> m_profilers;
|
2014-05-04 23:10:59 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
QString m_rootPath;
|
2021-11-20 15:22:22 +00:00
|
|
|
Status m_status = Application::StartingUp;
|
2016-06-09 00:58:50 +01:00
|
|
|
|
2022-05-24 06:35:01 +01:00
|
|
|
#ifdef Q_OS_MACOS
|
|
|
|
Qt::ApplicationState m_prevAppState = Qt::ApplicationInactive;
|
|
|
|
#endif
|
|
|
|
|
2017-07-05 17:02:49 +01:00
|
|
|
#if defined Q_OS_WIN32
|
2018-07-15 13:51:05 +01:00
|
|
|
// used on Windows to attach the standard IO streams
|
|
|
|
bool consoleAttached = false;
|
2017-07-05 17:02:49 +01:00
|
|
|
#endif
|
2016-10-30 01:37:38 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// FIXME: attach to instances instead.
|
2021-11-21 22:21:12 +00:00
|
|
|
struct InstanceXtras {
|
2018-07-15 13:51:05 +01:00
|
|
|
InstanceWindow * window = nullptr;
|
|
|
|
shared_qobject_ptr<LaunchController> controller;
|
|
|
|
};
|
|
|
|
std::map<QString, InstanceXtras> m_instanceExtras;
|
2017-05-02 22:29:47 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// main state variables
|
|
|
|
size_t m_openWindows = 0;
|
|
|
|
size_t m_runningInstances = 0;
|
|
|
|
bool m_updateRunning = false;
|
2016-11-01 00:25:04 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// main window, if any
|
|
|
|
MainWindow * m_mainWindow = nullptr;
|
2016-11-01 00:25:04 +00:00
|
|
|
|
2021-10-17 23:47:02 +01:00
|
|
|
// peer launcher instance connector - used to implement single instance launcher and signalling
|
2018-07-15 13:51:05 +01:00
|
|
|
LocalPeer * m_peerInstance = nullptr;
|
2016-11-20 19:40:59 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
SetupWizard * m_setupWizard = nullptr;
|
2015-02-02 01:14:14 +00:00
|
|
|
public:
|
2018-07-15 13:51:05 +01:00
|
|
|
QString m_instanceIdToLaunch;
|
2021-05-23 13:42:20 +01:00
|
|
|
QString m_serverToJoin;
|
2021-10-31 20:42:06 +00:00
|
|
|
QString m_profileToUse;
|
2018-07-15 13:51:05 +01:00
|
|
|
bool m_liveCheck = false;
|
2020-02-04 23:29:23 +00:00
|
|
|
QUrl m_zipToImport;
|
2018-07-15 13:51:05 +01:00
|
|
|
std::unique_ptr<QFile> logFile;
|
2013-10-06 00:13:40 +01:00
|
|
|
};
|
2021-12-29 15:37:09 +00:00
|
|
|
|