2013-09-09 08:59:03 +00:00
|
|
|
/* main.c */
|
|
|
|
#include <locale.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2014-12-18 07:47:55 +00:00
|
|
|
#include "dive.h"
|
2013-09-09 08:59:03 +00:00
|
|
|
#include "qt-gui.h"
|
|
|
|
#include "subsurfacestartup.h"
|
2015-09-03 17:20:19 +00:00
|
|
|
#include "subsurface-core/color.h"
|
2015-06-14 15:32:47 +00:00
|
|
|
#include "qthelper.h"
|
2016-01-06 07:43:05 +00:00
|
|
|
#include "helpers.h"
|
2013-09-09 08:59:03 +00:00
|
|
|
|
|
|
|
#include <QStringList>
|
2015-06-16 13:52:06 +00:00
|
|
|
#include <QApplication>
|
2015-07-06 14:11:02 +00:00
|
|
|
#include <QLoggingCategory>
|
2014-03-31 20:37:41 +00:00
|
|
|
#include <git2.h>
|
2013-09-09 08:59:03 +00:00
|
|
|
|
2013-10-09 05:25:02 +00:00
|
|
|
QTranslator *qtTranslator, *ssrfTranslator;
|
|
|
|
|
2013-09-09 08:59:03 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
2013-09-22 15:30:25 +00:00
|
|
|
bool no_filenames = true;
|
2015-07-06 14:11:02 +00:00
|
|
|
QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
|
2015-06-16 13:52:06 +00:00
|
|
|
QApplication *application = new QApplication(argc, argv);
|
2015-11-18 21:46:59 +00:00
|
|
|
(void)application;
|
2013-09-09 08:59:03 +00:00
|
|
|
QStringList files;
|
|
|
|
QStringList importedFiles;
|
2013-10-08 09:48:46 +00:00
|
|
|
QStringList arguments = QCoreApplication::arguments();
|
2014-03-25 14:55:56 +00:00
|
|
|
|
|
|
|
bool dedicated_console = arguments.length() > 1 &&
|
2014-05-22 18:40:22 +00:00
|
|
|
(arguments.at(1) == QString("--win32console"));
|
2014-03-25 14:55:56 +00:00
|
|
|
subsurface_console_init(dedicated_console);
|
|
|
|
|
2013-10-08 09:48:46 +00:00
|
|
|
for (i = 1; i < arguments.length(); i++) {
|
|
|
|
QString a = arguments.at(i);
|
|
|
|
if (a.at(0) == '-') {
|
|
|
|
parse_argument(a.toLocal8Bit().data());
|
2013-09-09 08:59:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
2013-09-22 15:30:25 +00:00
|
|
|
if (imported) {
|
2013-10-08 09:48:46 +00:00
|
|
|
importedFiles.push_back(a);
|
2013-09-22 15:30:25 +00:00
|
|
|
} else {
|
|
|
|
no_filenames = false;
|
2013-10-08 09:48:46 +00:00
|
|
|
files.push_back(a);
|
2013-09-22 15:30:25 +00:00
|
|
|
}
|
2013-09-09 08:59:03 +00:00
|
|
|
}
|
2014-12-07 19:14:58 +00:00
|
|
|
#if !LIBGIT2_VER_MAJOR && LIBGIT2_VER_MINOR < 22
|
2014-03-31 20:37:41 +00:00
|
|
|
git_threads_init();
|
2014-12-06 13:49:57 +00:00
|
|
|
#else
|
|
|
|
git_libgit2_init();
|
|
|
|
#endif
|
2014-03-19 16:23:43 +00:00
|
|
|
setup_system_prefs();
|
2016-01-06 07:43:05 +00:00
|
|
|
if (uiLanguage(0).contains("-US"))
|
|
|
|
default_prefs.units = IMPERIAL_units;
|
2015-09-03 17:49:59 +00:00
|
|
|
prefs = default_prefs;
|
2014-03-19 16:23:43 +00:00
|
|
|
fill_profile_color();
|
|
|
|
parse_xml_init();
|
|
|
|
taglist_init_global();
|
|
|
|
init_ui();
|
2015-11-07 19:25:12 +00:00
|
|
|
loadPreferences();
|
2015-12-01 23:22:38 +00:00
|
|
|
prefs.animation_speed = 0;
|
2016-02-06 07:36:42 +00:00
|
|
|
|
|
|
|
/* always show the divecomputer reported ceiling in red */
|
|
|
|
prefs.dcceiling = 1;
|
|
|
|
prefs.redceiling = 1;
|
|
|
|
|
2015-11-14 17:38:18 +00:00
|
|
|
init_proxy();
|
2014-03-20 12:56:04 +00:00
|
|
|
if (no_filenames) {
|
2015-06-14 15:32:47 +00:00
|
|
|
if (prefs.default_file_behavior == LOCAL_DEFAULT_FILE) {
|
|
|
|
QString defaultFile(prefs.default_filename);
|
|
|
|
if (!defaultFile.isEmpty())
|
|
|
|
files.push_back(QString(prefs.default_filename));
|
|
|
|
} else if (prefs.default_file_behavior == CLOUD_DEFAULT_FILE) {
|
|
|
|
QString cloudURL;
|
|
|
|
if (getCloudURL(cloudURL) == 0)
|
|
|
|
files.push_back(cloudURL);
|
|
|
|
}
|
2014-03-20 12:56:04 +00:00
|
|
|
}
|
2015-10-05 22:52:39 +00:00
|
|
|
|
2013-11-02 19:00:16 +00:00
|
|
|
if (!quit)
|
|
|
|
run_ui();
|
2013-09-09 08:59:03 +00:00
|
|
|
exit_ui();
|
2014-12-18 07:47:55 +00:00
|
|
|
taglist_free(g_tag_list);
|
2014-03-19 16:23:43 +00:00
|
|
|
parse_xml_exit();
|
2014-03-25 14:55:56 +00:00
|
|
|
subsurface_console_exit();
|
2014-12-18 07:47:42 +00:00
|
|
|
free_prefs();
|
2013-09-09 08:59:03 +00:00
|
|
|
return 0;
|
|
|
|
}
|