1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
// SPDX-License-Identifier: GPL-3.0-only
// SPDX-FileCopyrightText: 2026 Project Tick
// SPDX-FileContributor: Project Tick Team
/*
* ProjT Launcher - Minecraft Launcher
* Copyright (C) 2026 Project Tick
*
* 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, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "CefRuntime.h"
#if defined(PROJT_USE_CEF) && defined(Q_OS_LINUX)
#include <QCoreApplication>
#include <QDir>
#include <QFileInfo>
#include <QProcessEnvironment>
#include <QStandardPaths>
#include <QTimer>
#include "include/cef_app.h"
#include "include/wrapper/cef_helpers.h"
namespace
{
class LauncherCefApp final : public CefApp
{
public:
void OnBeforeCommandLineProcessing(const CefString&, CefRefPtr<CefCommandLine> command_line) override
{
command_line->AppendSwitch("disable-pinch");
command_line->AppendSwitch("disable-smooth-scrolling");
command_line->AppendSwitch("disable-background-networking");
command_line->AppendSwitch("disable-background-mode");
command_line->AppendSwitch("disable-component-update");
command_line->AppendSwitch("disable-sync");
command_line->AppendSwitch("disable-notifications");
command_line->AppendSwitch("no-first-run");
QString disabledFeatures = QStringLiteral("PlatformNotifications,PushMessaging,NotificationTriggers");
const bool enableGpu = qEnvironmentVariableIntValue("PROJT_CEF_ENABLE_GPU") == 1
|| qEnvironmentVariableIntValue("LAUNCHER_CEF_ENABLE_GPU") == 1;
if (!enableGpu)
{
command_line->AppendSwitch("disable-gpu");
command_line->AppendSwitch("disable-gpu-compositing");
command_line->AppendSwitch("disable-gpu-vsync");
disabledFeatures += QStringLiteral(",VaapiVideoDecoder,Vulkan");
}
command_line->AppendSwitchWithValue("disable-features", disabledFeatures.toStdString());
}
IMPLEMENT_REFCOUNTING(LauncherCefApp);
};
}
#endif
namespace projt::cef
{
Runtime::Runtime(QObject* parent) : QObject(parent)
{}
Runtime& Runtime::instance()
{
static Runtime runtime;
return runtime;
}
int Runtime::executeSecondaryProcess(int argc, char* argv[])
{
#if defined(PROJT_USE_CEF) && defined(Q_OS_LINUX)
CefMainArgs mainArgs(argc, argv);
return CefExecuteProcess(mainArgs, new LauncherCefApp(), nullptr);
#else
Q_UNUSED(argc);
Q_UNUSED(argv);
return -1;
#endif
}
bool Runtime::initializeBrowserProcess(int argc, char* argv[])
{
#if defined(PROJT_USE_CEF) && defined(Q_OS_LINUX)
if (m_initialized)
{
return true;
}
CefMainArgs mainArgs(argc, argv);
CefSettings settings;
settings.no_sandbox = true;
settings.multi_threaded_message_loop = false;
settings.external_message_pump = false;
settings.windowless_rendering_enabled = true;
const QString executablePath = QCoreApplication::applicationFilePath();
const QString executableDir = QFileInfo(executablePath).absolutePath();
const QString dataRoot =
QDir::cleanPath(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + "/cef");
QDir().mkpath(dataRoot);
CefString(&settings.browser_subprocess_path) = executablePath.toStdString();
CefString(&settings.resources_dir_path) = executableDir.toStdString();
CefString(&settings.locales_dir_path) = QDir(executableDir).filePath("locales").toStdString();
CefString(&settings.root_cache_path) = dataRoot.toStdString();
CefString(&settings.cache_path) = QDir(dataRoot).filePath("cache").toStdString();
CefString(&settings.user_agent_product) = "ProjTLauncher";
const bool ok = CefInitialize(mainArgs, settings, new LauncherCefApp(), nullptr);
m_exitCode = ok ? 0 : CefGetExitCode();
if (!ok)
{
if (m_exitCode == 0)
{
m_exitCode = 1;
}
return false;
}
auto* timer = new QTimer(this);
timer->setInterval(10);
timer->setTimerType(Qt::PreciseTimer);
connect(timer, &QTimer::timeout, this, []() { CefDoMessageLoopWork(); });
timer->start();
m_initialized = true;
return true;
#else
Q_UNUSED(argc);
Q_UNUSED(argv);
return false;
#endif
}
void Runtime::shutdown()
{
#if defined(PROJT_USE_CEF) && defined(Q_OS_LINUX)
if (!m_initialized)
{
return;
}
for (auto* timer : findChildren<QTimer*>())
{
timer->stop();
timer->deleteLater();
}
CefShutdown();
m_initialized = false;
#endif
}
bool Runtime::isInitialized() const
{
return m_initialized;
}
int Runtime::exitCode() const
{
return m_exitCode;
}
}
|