summaryrefslogtreecommitdiffstats
path: root/logic/LegacyInstance.cpp
blob: 0672d2c8b7ccfc218673a21f84c50200436c27ce (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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
#include "LegacyInstance.h"
#include "LegacyInstance_p.h"
#include "MinecraftProcess.h"
#include "LegacyUpdate.h"
#include "lists/IconList.h"
#include <setting.h>
#include <pathutils.h>
#include <cmdutils.h>
#include "gui/LegacyModEditDialog.h"
#include <QFileInfo>
#include <QDir>
#include <QImage>
#include <MultiMC.h>

#define LAUNCHER_FILE "MultiMCLauncher.jar"

LegacyInstance::LegacyInstance(const QString& rootDir, SettingsObject* settings, QObject* parent)
	:BaseInstance( new LegacyInstancePrivate(),rootDir, settings, parent)
{
	settings->registerSetting(new Setting("NeedsRebuild", true));
	settings->registerSetting(new Setting("ShouldUpdate", false));
	settings->registerSetting(new Setting("JarVersion", "Unknown"));
	settings->registerSetting(new Setting("LwjglVersion", "2.9.0"));
	settings->registerSetting(new Setting("IntendedJarVersion", ""));
}

BaseUpdate* LegacyInstance::doUpdate()
{
	return new LegacyUpdate(this, this);
}

MinecraftProcess* LegacyInstance::prepareForLaunch(QString user, QString session)
{
	MinecraftProcess * proc = new MinecraftProcess(this);
	
	QIcon icon = MMC->icons()->getIcon(iconKey());
	auto pixmap = icon.pixmap(128,128);
	pixmap.save(PathCombine(minecraftRoot(), "icon.png"),"PNG");
	
	// extract the legacy launcher
	QFile(":/launcher/launcher.jar").copy(PathCombine(minecraftRoot(), LAUNCHER_FILE));
	
	// set the process arguments
	{
		QStringList args;
		
		// window size
		QString windowSize;
		if (settings().get("LaunchMaximized").toBool())
			windowSize = "max";
		else
			windowSize = QString("%1x%2").
					arg(settings().get("MinecraftWinWidth").toInt()).
					arg(settings().get("MinecraftWinHeight").toInt());
		
		// window title
		QString windowTitle;
		windowTitle.append("MultiMC: ").append(name());
		
		// Java arguments
		args.append(Util::Commandline::splitArgs(settings().get("JvmArgs").toString()));
		
#ifdef OSX
		// OSX dock icon and name
		args << "-Xdock:icon=icon.png";
		args << QString("-Xdock:name=\"%1\"").arg(windowTitle);
#endif
		
		QString lwjgl = QDir(MMC->settings()->get("LWJGLDir").toString() + "/" + lwjglVersion()).absolutePath();
		
		// launcher arguments
		args << QString("-Xms%1m").arg(settings().get("MinMemAlloc").toInt());
		args << QString("-Xmx%1m").arg(settings().get("MaxMemAlloc").toInt());
		args << QString("-XX:PermSize=%1m").arg(settings().get("PermGen").toInt());
		args << "-jar" << LAUNCHER_FILE;
		args << user;
		args << session;
		args << windowTitle;
		args << windowSize;
		args << lwjgl;
		proc->setMinecraftArguments(args);
	}
	
	// set the process work path
	proc->setMinecraftWorkdir(minecraftRoot());
	
	return proc;
}

void LegacyInstance::cleanupAfterRun()
{
	//FIXME: delete the launcher and icons and whatnot.
}

QSharedPointer< ModList > LegacyInstance::coreModList()
{
	I_D(LegacyInstance);
	if(!d->core_mod_list)
	{
		d->core_mod_list.reset(new ModList(coreModsDir()));
	}
	else
		d->core_mod_list->update();
	return d->core_mod_list;
}

QSharedPointer< ModList > LegacyInstance::jarModList()
{
	I_D(LegacyInstance);
	if(!d->jar_mod_list)
	{
		auto list = new ModList(jarModsDir(), modListFile());
		connect(list, SIGNAL(changed()), SLOT(jarModsChanged()));
		d->jar_mod_list.reset(list);
	}
	else
		d->jar_mod_list->update();
	return d->jar_mod_list;
}

void LegacyInstance::jarModsChanged()
{
	setShouldRebuild(true);
}


QSharedPointer< ModList > LegacyInstance::loaderModList()
{
	I_D(LegacyInstance);
	if(!d->loader_mod_list)
	{
		d->loader_mod_list.reset(new ModList(loaderModsDir()));
	}
	else
		d->loader_mod_list->update();
	return d->loader_mod_list;
}

QSharedPointer< ModList > LegacyInstance::texturePackList()
{
	I_D(LegacyInstance);
	if(!d->texture_pack_list)
	{
		d->texture_pack_list.reset(new ModList(texturePacksDir()));
	}
	else
		d->texture_pack_list->update();
	return d->texture_pack_list;
}


QDialog * LegacyInstance::createModEditDialog ( QWidget* parent )
{
	return new LegacyModEditDialog(this, parent);
}


QString LegacyInstance::jarModsDir() const
{
	return PathCombine(instanceRoot(), "instMods");
}

QString LegacyInstance::binDir() const
{
	return PathCombine(minecraftRoot(), "bin");
}

QString LegacyInstance::savesDir() const
{
	return PathCombine(minecraftRoot(), "saves");
}

QString LegacyInstance::loaderModsDir() const
{
	return PathCombine(minecraftRoot(), "mods");
}

QString LegacyInstance::coreModsDir() const
{
	return PathCombine(minecraftRoot(), "coremods");
}

QString LegacyInstance::resourceDir() const
{
	return PathCombine(minecraftRoot(), "resources");
}
QString LegacyInstance::texturePacksDir() const
{
	return PathCombine(minecraftRoot(), "texturepacks");
}

QString LegacyInstance::runnableJar() const
{
	return PathCombine(binDir(), "minecraft.jar");
}

QString LegacyInstance::modListFile() const
{
	return PathCombine(instanceRoot(), "modlist");
}

QString LegacyInstance::instanceConfigFolder() const
{
	return PathCombine(minecraftRoot(), "config");
}


/*
bool LegacyInstance::shouldUpdateCurrentVersion() const
{
	QFileInfo jar(runnableJar());
	return jar.lastModified().toUTC().toMSecsSinceEpoch() != lastCurrentVersionUpdate();
}

void LegacyInstance::updateCurrentVersion(bool keepCurrent)
{
	QFileInfo jar(runnableJar());
	
	if(!jar.exists())
	{
		setLastCurrentVersionUpdate(0);
		setCurrentVersionId("Unknown");
		return;
	}
	
	qint64 time = jar.lastModified().toUTC().toMSecsSinceEpoch();
	
	setLastCurrentVersionUpdate(time);
	if (!keepCurrent)
	{
		// TODO: Implement GetMinecraftJarVersion function.
		QString newVersion = "Unknown";//javautils::GetMinecraftJarVersion(jar.absoluteFilePath());
		setCurrentVersionId(newVersion);
	}
}
qint64 LegacyInstance::lastCurrentVersionUpdate() const
{
	I_D(LegacyInstance);
	return d->m_settings->get ( "lastVersionUpdate" ).value<qint64>();
}
void LegacyInstance::setLastCurrentVersionUpdate ( qint64 val )
{
	I_D(LegacyInstance);
	d->m_settings->set ( "lastVersionUpdate", val );
}
*/
bool LegacyInstance::shouldRebuild() const
{
	I_D(LegacyInstance);
	return d->m_settings->get ( "NeedsRebuild" ).toBool();
}
void LegacyInstance::setShouldRebuild ( bool val )
{
	I_D(LegacyInstance);
	d->m_settings->set ( "NeedsRebuild", val );
}
QString LegacyInstance::currentVersionId() const
{
	I_D(LegacyInstance);
	return d->m_settings->get ( "JarVersion" ).toString();
}

void LegacyInstance::setCurrentVersionId ( QString val )
{
	I_D(LegacyInstance);
	d->m_settings->set ( "JarVersion", val );
}

QString LegacyInstance::lwjglVersion() const
{
	I_D(LegacyInstance);
	return d->m_settings->get ( "LwjglVersion" ).toString();
}
void LegacyInstance::setLWJGLVersion ( QString val )
{
	I_D(LegacyInstance);
	d->m_settings->set ( "LwjglVersion", val );
}
QString LegacyInstance::intendedVersionId() const
{
	I_D(LegacyInstance);
	return d->m_settings->get ( "IntendedJarVersion" ).toString();
}
bool LegacyInstance::setIntendedVersionId ( QString version )
{
	settings().set("IntendedJarVersion", version);
	setShouldUpdate(true);
	return true;
}
bool LegacyInstance::shouldUpdate() const
{
	I_D(LegacyInstance);
	QVariant var = settings().get ( "ShouldUpdate" );
	if ( !var.isValid() || var.toBool() == false )
	{
		return intendedVersionId() != currentVersionId();
	}
	return true;
}
void LegacyInstance::setShouldUpdate ( bool val )
{
	settings().set ( "ShouldUpdate", val );
}

QString LegacyInstance::defaultBaseJar() const
{
	return "versions/" + intendedVersionId() + "/" + intendedVersionId() + ".jar";
}

QString LegacyInstance::defaultCustomBaseJar() const
{
	return PathCombine(binDir(), "mcbackup.jar");
}

bool LegacyInstance::menuActionEnabled ( QString action_name ) const
{
	return true;
}

QString LegacyInstance::getStatusbarDescription()
{
	if(shouldUpdate())
		return "Legacy : " + currentVersionId() + " -> " + intendedVersionId();
	else
		return "Legacy : " + currentVersionId();
}