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>
|
|
|
|
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "core/dive.h"
|
|
|
|
#include "core/qt-gui.h"
|
|
|
|
#include "core/subsurfacestartup.h"
|
|
|
|
#include "core/color.h"
|
|
|
|
#include "core/qthelper.h"
|
|
|
|
#include "core/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
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
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-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"));
|
2017-02-04 00:11:46 +00:00
|
|
|
subsurface_console_init(dedicated_console, false);
|
2014-03-25 14:55:56 +00:00
|
|
|
|
2013-10-08 09:48:46 +00:00
|
|
|
for (i = 1; i < arguments.length(); i++) {
|
|
|
|
QString a = arguments.at(i);
|
2016-06-17 11:10:34 +00:00
|
|
|
if (!a.isEmpty() && a.at(0) == '-') {
|
2013-10-08 09:48:46 +00:00
|
|
|
parse_argument(a.toLocal8Bit().data());
|
2013-09-09 08:59:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2014-12-06 13:49:57 +00:00
|
|
|
git_libgit2_init();
|
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();
|
2016-04-22 13:57:08 +00:00
|
|
|
if (prefs.default_file_behavior == LOCAL_DEFAULT_FILE)
|
|
|
|
set_filename(prefs.default_filename, true);
|
2016-04-27 13:01:07 +00:00
|
|
|
else
|
|
|
|
set_filename(NULL, true);
|
2016-04-22 13:57:08 +00:00
|
|
|
|
2016-03-28 00:18:48 +00:00
|
|
|
// some hard coded settings
|
2016-03-30 02:19:12 +00:00
|
|
|
prefs.animation_speed = 0; // we render the profile to pixmap, no animations
|
2016-02-06 07:36:42 +00:00
|
|
|
|
2016-03-28 00:18:48 +00:00
|
|
|
// always show the divecomputer reported ceiling in red
|
2016-02-06 07:36:42 +00:00
|
|
|
prefs.redceiling = 1;
|
|
|
|
|
2015-11-14 17:38:18 +00:00
|
|
|
init_proxy();
|
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;
|
|
|
|
}
|