summaryrefslogtreecommitdiff
path: root/archived/projt-launcher/launcher/ui/dialogs/CreateShortcutDialog.cpp
blob: 61e991ec9d1908e9f5f4f78fa600a6e8c51db9d1 (plain)
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
// 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.
 *
 * === Upstream License Block (Do Not Modify) ==============================
 *
 *
 *
 *  Prism Launcher - Minecraft Launcher
 *  Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
 *  Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me>
 *  Copyright (C) 2025 Yihe Li <winmikedows@hotmail.com>
 *
 *  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.
 *
 * 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.
 *
 * ======================================================================== */

#include <QLayout>
#include <QPushButton>

#include "BuildConfig.h"
#include "CreateShortcutDialog.h"
#include "ui_CreateShortcutDialog.h"

#include "ui/dialogs/IconPickerDialog.h"

#include "BaseInstance.h"
#include "DesktopServices.h"
#include "FileSystem.h"
#include "InstanceList.h"
#include "icons/IconList.hpp"

#include "minecraft/MinecraftInstance.h"
#include "minecraft/ShortcutUtils.h"
#include "minecraft/WorldList.h"
#include "minecraft/auth/AccountList.hpp"

CreateShortcutDialog::CreateShortcutDialog(InstancePtr instance, QWidget* parent)
	: QDialog(parent),
	  ui(new Ui::CreateShortcutDialog),
	  m_instance(instance)
{
	ui->setupUi(this);

	InstIconKey = instance->iconKey();
	ui->iconButton->setIcon(APPLICATION->icons()->getIcon(InstIconKey));
	ui->instNameTextBox->setPlaceholderText(instance->name());

	auto mInst			 = std::dynamic_pointer_cast<MinecraftInstance>(instance);
	m_QuickJoinSupported = mInst && mInst->traits().contains("feature:is_quick_play_singleplayer");
	auto worldList		 = mInst->worldList();
	worldList->update();
	if (!m_QuickJoinSupported || worldList->empty())
	{
		ui->worldTarget->hide();
		ui->worldSelectionBox->hide();
		ui->serverTarget->setChecked(true);
		ui->serverTarget->hide();
		ui->serverLabel->show();
	}

	// Populate save targets
	if (!DesktopServices::isFlatpak())
	{
		QString desktopDir	   = FS::getDesktopDir();
		QString applicationDir = FS::getApplicationsDir();

		if (!desktopDir.isEmpty())
			ui->saveTargetSelectionBox->addItem(tr("Desktop"), QVariant::fromValue(ShortcutTarget::Desktop));

		if (!applicationDir.isEmpty())
			ui->saveTargetSelectionBox->addItem(tr("Applications"), QVariant::fromValue(ShortcutTarget::Applications));
	}
	ui->saveTargetSelectionBox->addItem(tr("Other..."), QVariant::fromValue(ShortcutTarget::Other));

	// Populate worlds
	if (m_QuickJoinSupported)
	{
		for (const auto& world : worldList->allWorlds())
		{
			// Entry name: World Name [Game Mode] - Last Played: DateTime
			QString entry_name =
				tr("%1 [%2] - Last Played: %3")
					.arg(world.name(), world.gameType().toTranslatedString(), world.lastPlayed().toString(Qt::ISODate));
			ui->worldSelectionBox->addItem(entry_name, world.name());
		}
	}

	// Populate accounts
	auto accounts					   = APPLICATION->accounts();
	MinecraftAccountPtr defaultAccount = accounts->defaultAccount();
	if (accounts->count() <= 0)
	{
		ui->overrideAccountCheckbox->setEnabled(false);
	}
	else
	{
		for (int i = 0; i < accounts->count(); i++)
		{
			MinecraftAccountPtr account = accounts->at(i);
			auto profileLabel			= account->profileName();
			if (account->isInUse())
				profileLabel = tr("%1 (in use)").arg(profileLabel);
			auto face  = account->getFace();
			QIcon icon = face.isNull() ? QIcon::fromTheme("noaccount") : face;
			ui->accountSelectionBox->addItem(profileLabel, account->profileName());
			ui->accountSelectionBox->setItemIcon(i, icon);
			if (defaultAccount == account)
				ui->accountSelectionBox->setCurrentIndex(i);
		}
	}
}

CreateShortcutDialog::~CreateShortcutDialog()
{
	delete ui;
}

void CreateShortcutDialog::on_iconButton_clicked()
{
	IconPickerDialog dlg(this);
	dlg.execWithSelection(InstIconKey);

	if (dlg.result() == QDialog::Accepted)
	{
		InstIconKey = dlg.selectedIconKey;
		ui->iconButton->setIcon(APPLICATION->icons()->getIcon(InstIconKey));
	}
}

void CreateShortcutDialog::on_overrideAccountCheckbox_stateChanged(int state)
{
	ui->accountOptionsGroup->setEnabled(state == Qt::Checked);
}

void CreateShortcutDialog::on_targetCheckbox_stateChanged(int state)
{
	ui->targetOptionsGroup->setEnabled(state == Qt::Checked);
	ui->worldSelectionBox->setEnabled(ui->worldTarget->isChecked());
	ui->serverAddressBox->setEnabled(ui->serverTarget->isChecked());
	stateChanged();
}

void CreateShortcutDialog::on_worldTarget_toggled(bool checked)
{
	ui->worldSelectionBox->setEnabled(checked);
	stateChanged();
}

void CreateShortcutDialog::on_serverTarget_toggled(bool checked)
{
	ui->serverAddressBox->setEnabled(checked);
	stateChanged();
}

void CreateShortcutDialog::on_worldSelectionBox_currentIndexChanged(int index)
{
	stateChanged();
}

void CreateShortcutDialog::on_serverAddressBox_textChanged(const QString& text)
{
	stateChanged();
}

void CreateShortcutDialog::stateChanged()
{
	QString result = m_instance->name();
	if (ui->targetCheckbox->isChecked())
	{
		if (ui->worldTarget->isChecked())
			result = tr("%1 - %2").arg(result, ui->worldSelectionBox->currentData().toString());
		else if (ui->serverTarget->isChecked())
			result = tr("%1 - Server %2").arg(result, ui->serverAddressBox->text());
	}
	ui->instNameTextBox->setPlaceholderText(result);
	if (!ui->targetCheckbox->isChecked())
		ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
	else
	{
		ui->buttonBox->button(QDialogButtonBox::Ok)
			->setEnabled((ui->worldTarget->isChecked() && ui->worldSelectionBox->currentIndex() != -1)
						 || (ui->serverTarget->isChecked() && !ui->serverAddressBox->text().isEmpty()));
	}
}

// Real work
void CreateShortcutDialog::createShortcut()
{
	QString targetString = tr("instance");
	QStringList extraArgs;
	if (ui->targetCheckbox->isChecked())
	{
		if (ui->worldTarget->isChecked())
		{
			targetString = tr("world");
			extraArgs	 = { "--world", ui->worldSelectionBox->currentData().toString() };
		}
		else if (ui->serverTarget->isChecked())
		{
			targetString = tr("server");
			extraArgs	 = { "--server", ui->serverAddressBox->text() };
		}
	}

	auto target = ui->saveTargetSelectionBox->currentData().value<ShortcutTarget>();
	auto name	= ui->instNameTextBox->text();
	if (name.isEmpty())
		name = ui->instNameTextBox->placeholderText();
	if (ui->overrideAccountCheckbox->isChecked())
		extraArgs.append({ "--profile", ui->accountSelectionBox->currentData().toString() });

	ShortcutUtils::Shortcut args{ m_instance.get(), name, targetString, this, extraArgs, InstIconKey, target };
	if (target == ShortcutTarget::Desktop)
		ShortcutUtils::createInstanceShortcutOnDesktop(args);
	else if (target == ShortcutTarget::Applications)
		ShortcutUtils::createInstanceShortcutInApplications(args);
	else
		ShortcutUtils::createInstanceShortcutInOther(args);
}