summaryrefslogtreecommitdiffstats
path: root/main.cpp
blob: f22173316cc96a562bae62acef1d724ba60cd17a (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
/* Copyright 2013 MultiMC Contributors
 *
 * Authors: Andrew Okin
 *          Orochimarufan <orochimarufan.x3@gmail.com>
 *
 * 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 <iostream>

#include <QApplication>
#include <QDir>

#include "gui/mainwindow.h"
#include "gui/logindialog.h"
#include "gui/taskdialog.h"
#include "gui/consolewindow.h"

#include "AppSettings.h"
#include "lists/InstanceList.h"
#include "tasks/LoginResponse.h"
#include "tasks/LoginTask.h"
#include "MinecraftProcess.h"

#include "pathutils.h"
#include "cmdutils.h"

#include "config.h"

using namespace Util::Commandline;

// Commandline instance launcher
class InstanceLauncher : public QObject
{
	Q_OBJECT
private:
	InstanceList instances;
	QString instId;
	InstancePtr instance;
	MinecraftProcess *proc;
	ConsoleWindow *console;
public:
	InstanceLauncher(QString instId) : QObject(), instances(globalSettings->get("InstanceDir").toString())
	{
		this->instId = instId;
	}
	
private slots:
	void onTerminated()
	{
		std::cout << "Minecraft exited" << std::endl;
		QApplication::instance()->quit();
	}
	
	void onLoginComplete(QString instId, LoginResponse response)
	{
		// TODO: console
		console = new ConsoleWindow();
		proc = new MinecraftProcess(instance.data(), response.username(), response.sessionID());
		//if (instance->getShowConsole())
		console->show();
		connect(proc, SIGNAL(ended()), SLOT(onTerminated()));
		connect(proc, SIGNAL(log(QString,MessageLevel::Enum)), console, SLOT(write(QString,MessageLevel::Enum)));
		proc->launch();
	}
	
	void doLogin(QString instId, const QString &errorMsg)
	{
		LoginDialog* loginDlg = new LoginDialog(nullptr, errorMsg);
		if (loginDlg->exec())
		{
			UserInfo uInfo(loginDlg->getUsername(), loginDlg->getPassword());
			
			TaskDialog* tDialog = new TaskDialog(nullptr);
			LoginTask* loginTask = new LoginTask(uInfo, tDialog);
			connect(loginTask, SIGNAL(loginComplete(QString, LoginResponse)),
					SLOT(onLoginComplete(QString, LoginResponse)), Qt::QueuedConnection);
			connect(loginTask, SIGNAL(loginFailed(QString, QString)),
					SLOT(doLogin(QString, QString)), Qt::QueuedConnection);
			tDialog->exec(loginTask);
		}
		//onLoginComplete(LoginResponse("Offline","Offline", 1));
	}
	
public:
	int launch()
	{
		std::cout << "Loading Instances..." << std::endl;
		instances.loadList();
		
		std::cout << "Launching Instance '" << qPrintable(instId) << "'" << std::endl;
		instance = instances.getInstanceById(instId);
		if (instance.isNull())
		{
			std::cout << "Could not find instance requested. note that you have to specify the ID, not the NAME" << std::endl;
			return 1;
		}
		
		std::cout << "Logging in..." << std::endl;
		doLogin(instance->id(),"");
		
		return QApplication::instance()->exec();
	}
};

int main(int argc, char *argv[])
{
	// initialize Qt
	QApplication app(argc, argv);
	app.setOrganizationName("Forkk");
	app.setApplicationName("MultiMC 5");
	
	// Print app header
	std::cout << "MultiMC 5" << std::endl;
	std::cout << "(c) 2013 MultiMC Contributors" << std::endl << std::endl;
	
	// Commandline parsing
	Parser parser(FlagStyle::GNU, ArgumentStyle::SpaceAndEquals);
	
	// --help
	parser.addSwitch("help");
	parser.addShortOpt("help", 'h');
	parser.addDocumentation("help", "display this help and exit.");
	// --version
	parser.addSwitch("version");
	parser.addShortOpt("version", 'V');
	parser.addDocumentation("version", "display program version and exit.");
	// --dir
	parser.addOption("dir", app.applicationDirPath());
	parser.addShortOpt("dir", 'd');
	parser.addDocumentation("dir", "use the supplied directory as MultiMC root instead of the binary location (use '.' for current)");
	// --update
	parser.addOption("update");
	parser.addShortOpt("update", 'u');
	parser.addDocumentation("update", "replaces the given file with the running executable", "<path>");
	// --quietupdate
	parser.addSwitch("quietupdate");
	parser.addShortOpt("quietupdate", 'U');
	parser.addDocumentation("quietupdate", "doesn't restart MultiMC after installing updates");
	// --launch
	parser.addOption("launch");
	parser.addShortOpt("launch", 'l');
	parser.addDocumentation("launch", "tries to launch the given instance", "<inst>");
	
	// parse the arguments
	QHash<QString, QVariant> args;
	try
	{
		args = parser.parse(app.arguments());
	}
	catch(ParsingError e)
	{
		std::cerr << "CommandLineError: " << e.what() << std::endl;
		std::cerr << "Try '%1 -h' to get help on MultiMC's command line parameters." << std::endl;
		return 1;
	}
	
	// display help and exit
	if (args["help"].toBool())
	{
		std::cout << qPrintable(parser.compileHelp(app.arguments()[0]));
		return 0;
	}
	
	// display version and exit
	if (args["version"].toBool())
	{
		std::cout << "Version " << VERSION_STR << std::endl;
		std::cout << "Git " << GIT_COMMIT << std::endl;
		std::cout << "Tag: " << JENKINS_BUILD_TAG << " " << (ARCH==x64?"x86_64":"x86") << std::endl;
		return 0;
	}
	
	// update
	// Note: cwd is always the current executable path!
	if (!args["update"].isNull())
	{
		std::cout << "Performing MultiMC update: " << qPrintable(args["update"].toString()) << std::endl;
		QString cwd = QDir::currentPath();
		QDir::setCurrent(app.applicationDirPath());
		QFile file(app.applicationFilePath());
		file.copy(args["update"].toString());
		if(args["quietupdate"].toBool())
			return 0;
		QDir::setCurrent(cwd);
	}
	
	// change directory
	QDir::setCurrent(args["dir"].toString());
	
	// load settings
	globalSettings = new AppSettings(&app);
	
	// Register meta types.
	qRegisterMetaType<LoginResponse>("LoginResponse");
	
	// launch instance.
	if (!args["launch"].isNull())
		return InstanceLauncher(args["launch"].toString()).launch();
	
	// show main window
	MainWindow mainWin;
	mainWin.show();
	
	// loop
	return app.exec();
}

#include "main.moc"