forked from pedrolcl/dmidiplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
playermain.cpp
130 lines (116 loc) · 4.96 KB
/
playermain.cpp
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
/*
Drumstick MIDI File Player Multiplatform Program
Copyright (C) 2006-2022, Pedro Lopez-Cabanillas <plcl@users.sf.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; either version 3 of the License, or
(at your option) any later version.
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 <http://www.gnu.org/licenses/>.
*/
#include <QApplication>
#include <QMessageBox>
#include <QCommandLineParser>
#include <QFileInfo>
#include <QSplashScreen>
#include <QDebug>
#include "guiplayer.h"
#include "settings.h"
int main(int argc, char *argv[])
{
const char* PGM_DESCRIPTION = QT_TRANSLATE_NOOP("QCoreApplication",
"Copyright (C) 2006-2022 Pedro Lopez-Cabanillas\n"
"This program comes with ABSOLUTELY NO WARRANTY;\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; see the LICENSE for details.");
const char* errorstr = QT_TRANSLATE_NOOP("QCoreApplication",
"Fatal error from the Operating System. "
"This usually happens when the OS doesn't have MIDI support, "
"or the MIDI support is not enabled. "
"Please check your OS/MIDI configuration.");
const char* strVersion = QT_STRINGIFY(VERSION);
#if (QT_VERSION < QT_VERSION_CHECK(6,0,0))
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
#endif
QApplication app(argc, argv);
QCoreApplication::setOrganizationName(QSTR_DOMAIN);
QCoreApplication::setOrganizationDomain(QSTR_DOMAIN);
QCoreApplication::setApplicationName(QSTR_APPNAME);
QCoreApplication::setApplicationVersion(strVersion);
#if defined(Q_OS_WINDOWS)
QApplication::setStyle("fusion");
#endif
QGuiApplication::setDesktopFileName("net.sourceforge.dmidiplayer");
QApplication::setWindowIcon(QIcon(":/dmidiplayer.png"));
Settings::instance()->loadTranslations();
QCommandLineParser parser;
parser.setApplicationDescription(QString("%1 v%2\n\n%3").arg(
QCoreApplication::applicationName(),
QCoreApplication::applicationVersion(),
QCoreApplication::tr(PGM_DESCRIPTION)));
auto helpOption = parser.addHelpOption();
auto versionOption = parser.addVersionOption();
QCommandLineOption portableOption({"p", "portable"}, QCoreApplication::tr("Portable settings mode."));
QCommandLineOption portableFileName({"f", "file"}, QCoreApplication::tr("Portable settings file name."), "portableFile");
parser.addOption(portableOption);
parser.addOption(portableFileName);
QCommandLineOption driverOption({"d", "driver"}, QCoreApplication::tr("MIDI Out Driver."), "driver");
parser.addOption(driverOption);
QCommandLineOption portOption({"c", "connection"}, QCoreApplication::tr("MIDI Out Connection."), "connection");
parser.addOption(portOption);
parser.addPositionalArgument("file", QCoreApplication::tr("Input SMF/KAR/WRK file name."), "[file]");
parser.process(app);
QPixmap px(":/splash.png");
QSplashScreen splash(px);
QFont sf = QApplication::font();
#if defined(Q_OS_WINDOWS)
sf.setPointSize(14);
#else
sf.setPointSize(20);
#endif
splash.setFont(sf);
splash.show();
app.processEvents();
splash.showMessage(QSTR_APPNAME + " v" + strVersion,
Qt::AlignBottom | Qt::AlignHCenter, Qt::white);
app.processEvents();
if (parser.isSet(portableOption) || parser.isSet(portableFileName)) {
QString portableFile;
if (parser.isSet(portableFileName)) {
portableFile = parser.value(portableFileName);
}
Settings::setPortableConfig(portableFile);
} else {
QSettings::setDefaultFormat(QSettings::NativeFormat);
}
QStringList fileNames, positionalArgs = parser.positionalArguments();
foreach(const QString& a, positionalArgs) {
QFileInfo f(a);
if (f.exists())
fileNames += f.canonicalFilePath();
else
qWarning() << QCoreApplication::tr("File not found:") << a;
}
try {
GUIPlayer w;
splash.finish(&w);
w.setAttribute(Qt::WA_QuitOnClose);
if(parser.isSet(portOption) && parser.isSet(driverOption)) {
w.connectOutput(parser.value(driverOption), parser.value(portOption));
}
if (!fileNames.isEmpty()) {
w.openFileList(fileNames);
}
w.show();
return app.exec();
} catch (...) {
QMessageBox::critical(0, "Error", QCoreApplication::tr(errorstr) );
qWarning() << QCoreApplication::tr(errorstr);
}
return 0;
}