[go: up one dir, main page]

Menu

[1f9cef]: / src / main.c  Maximize  Restore  History

Download this file

313 lines (266 with data), 9.9 kB

  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
/*
* viking -- GPS Data and Topo Analyzer, Explorer, and Manager
*
* Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include <gmodule.h>
#ifdef HAVE_CONFIG
#include "config.h"
#endif /* HAVE_CONFIG */
#include "viking.h"
#include "icons/icons.h"
#include "mapcache.h"
#include "background.h"
#include "dems.h"
#include "babel.h"
#include "curl_download.h"
#include "logging.h"
#include "vikdemlayer.h"
#include "vikmapslayer.h"
#include "vikgeoreflayer.h"
#include "viktrwlayer_propwin.h"
#include "vikrouting.h"
#include "toolbar.h"
#include "thumbnails.h"
#include "viktrwlayer_export.h"
#include "modules.h"
/* FIXME LOCALEDIR must be configured by ./configure --localedir */
/* But something does not work actually. */
/* So, we need to redefine this variable on windows. */
#ifdef WINDOWS
#undef LOCALEDIR
#define LOCALEDIR "locale"
#endif
// Default values that won't actually get applied unless changed by command line parameter values
static gdouble latitude = NAN;
static gdouble longitude = NAN;
static gint zoom_level_osm = -1;
static gint map_id = -1;
static gboolean external = FALSE;
/* Options */
static GOptionEntry entries[] =
{
{ "debug", 'd', 0, G_OPTION_ARG_NONE, &vik_debug, N_("Enable debug output"), NULL },
{ "verbose", 'V', 0, G_OPTION_ARG_NONE, &vik_verbose, N_("Enable verbose output"), NULL },
{ "version", 'v', 0, G_OPTION_ARG_NONE, &vik_version, N_("Show version"), NULL },
{ "latitude", 0, 0, G_OPTION_ARG_DOUBLE, &latitude, N_("Latitude in decimal degrees"), NULL },
{ "longitude", 0, 0, G_OPTION_ARG_DOUBLE, &longitude, N_("Longitude in decimal degrees"), NULL },
{ "zoom", 'z', 0, G_OPTION_ARG_INT, &zoom_level_osm, N_("Zoom Level (OSM). Value can be 0 - 22"), NULL },
{ "map", 'm', 0, G_OPTION_ARG_INT, &map_id, N_("Add a map layer by id value. Use 0 for the default map."), NULL },
{ "external", 'e', 0, G_OPTION_ARG_NONE, &external, N_("Load all GPX files in external mode."), NULL },
{ NULL }
};
/**
* Basic 'geo:' URI RFC5870
* https://datatracker.ietf.org/doc/html/rfc5870
* https://en.wikipedia.org/wiki/Geo_URI_scheme
* ATM ignore any CRS parameters - assume always on earth in WGS-84
* Support optional zoom level parameter ('?z=n')
*/
gboolean check_for_geo_uri ( char *argv )
{
GError *error = NULL;
GRegex *regex = g_regex_new ( "^geo:[\\-\\.0-9]*,[\\.\\-0-9]*", G_REGEX_CASELESS, 0, &error );
if ( error ) {
g_critical ("%s: %s", __FUNCTION__, error->message );
return FALSE;
}
if ( g_regex_match(regex, argv, 0, NULL) ) {
g_debug ( "%s: Geo URI detected in %s", __FUNCTION__, argv );
// Drop the 'geo:' bit
gchar *geostr = g_strdup ( argv+4 );
// Modify latitude, longitude & potentially zoom value
gchar **tokens = g_strsplit ( geostr, ",", 2 );
if ( tokens[0] && tokens[1] ) {
latitude = g_ascii_strtod ( tokens[0], NULL );
longitude = g_ascii_strtod ( tokens[1], NULL );
// May be a better way of extracting the z value, but this should suffice
gchar **exts = g_strsplit ( tokens[1], "?", 0 );
if ( exts[0] && exts[1] ) {
g_debug ( "%s: extensions %s", __FUNCTION__, exts[1] );
gchar **zs = g_strsplit ( exts[1], "z=", 0 );
if ( zs[0] && zs[1] ) {
g_debug ( "%s: z %s", __FUNCTION__, zs[1] );
zoom_level_osm = atoi ( zs[1] );
}
}
} else
g_warning ( "%s: no coordinates found in %s", __FUNCTION__, geostr );
g_free ( geostr );
g_strfreev ( tokens );
return TRUE;
}
g_regex_unref ( regex );
return FALSE;
}
int main( int argc, char *argv[] )
{
VikWindow *first_window;
gboolean dashdash_already = FALSE;
int i = 0;
GError *error = NULL;
gboolean gui_initialized;
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
gui_initialized = gtk_init_with_args (&argc, &argv, "files+", entries, NULL, &error);
if (!gui_initialized)
{
/* check if we have an error message */
if (error == NULL)
{
/* no error message, the GUI initialization failed */
const gchar *display_name = gdk_get_display_arg_name ();
(void)g_fprintf (stderr, "Failed to open display: %s\n", (display_name != NULL) ? display_name : " ");
}
else
{
/* yep, there's an error, so print it */
(void)g_fprintf (stderr, "Parsing command line options failed: %s\n", error->message);
g_error_free (error);
(void)g_fprintf (stderr, "Run \"%s --help\" to see the list of recognized options.\n",argv[0]);
}
return EXIT_FAILURE;
}
if (vik_version)
{
(void)g_printf (_("%s %s\nCopyright (c) 2003-2008 Evan Battaglia\nCopyright (c) 2008-%s Viking's contributors\n"), PACKAGE_NAME, PACKAGE_VERSION, THEYEAR);
return EXIT_SUCCESS;
}
// Normally on Windows the command line arguments are passed in in the system codepage encoding.
// This converts it to the GLib filename encoding (which is UTF-8 on Windows).
// Doing this here also helps when the filename is used for the displayed main window title
// and saving into the recently used documents list
#ifdef G_OS_WIN32
argv = g_win32_get_command_line ();
#endif
// Ensure correct capitalization of the program name
g_set_application_name ("Viking");
a_logging_init ();
// Discover if this is the very first run
a_vik_very_first_run ();
vik_icons_register_resource ();
ui_load_icons();
a_settings_init ();
a_preferences_init ();
a_thumbnails_init ();
/*
* First stage initialization
*
* Should not use a_preferences_get() yet
*
* Since the first time a_preferences_get() is called it loads any preferences values from disk,
* but of course for preferences not registered yet it can't actually understand them
* so subsequent initial attempts to get those preferences return the default value, until the values have changed
*/
a_vik_preferences_init ();
a_layer_defaults_init ();
a_download_init();
curl_download_init();
a_babel_init ();
/* Init modules/plugins */
modules_init();
vik_georef_layer_init ();
maps_layer_init ();
vik_dem_layer_init ();
a_mapcache_init ();
a_background_init ();
a_toolbar_init();
vik_routing_prefs_init();
vik_trw_layer_export_init();
vik_trw_layer_propwin_init();
// Registration of preferences has now been done
a_preferences_finished_registering();
/*
* Second stage initialization
*
* Can now use a_preferences_get()
*/
a_background_post_init ();
a_babel_post_init ();
modules_post_init ();
// May need to initialize the Positonal TimeZone lookup
if ( a_vik_get_time_ref_frame() == VIK_TIME_REF_WORLD )
vu_setup_lat_lon_tz_lookup();
/* Set the icon */
GdkPixbuf *main_icon = ui_get_icon ( "viking", 48 );
if ( main_icon )
gtk_window_set_default_icon(main_icon);
// Ask for confirmation of default settings on first run
vu_set_auto_features_on_first_run ();
/* Create the first window */
first_window = vik_window_new_window();
a_logging_update();
vu_check_latest_version ( GTK_WINDOW(first_window) );
// Load startup file first so that subsequent files are loaded on top
// Especially so that new tracks+waypoints will be above any maps in a startup file
if ( a_vik_get_startup_method () == VIK_STARTUP_METHOD_SPECIFIED_FILE ) {
gboolean load_startup_file = TRUE;
// When a viking file is to be loaded via the command line
// then we'll skip loading any startup file
int jj = 0;
while ( ++jj < argc ) {
if ( check_file_magic_vik(argv[jj]) )
load_startup_file = FALSE;
}
if ( load_startup_file )
vik_window_open_file ( first_window, a_vik_get_startup_file(), TRUE, TRUE, TRUE, TRUE, FALSE );
}
while ( ++i < argc ) {
if ( strcmp(argv[i],"--") == 0 && !dashdash_already )
dashdash_already = TRUE; /* hack to open '-' */
else {
VikWindow *newvw = first_window;
gboolean change_filename = (i == 1);
// Open any subsequent .vik files in their own window
if ( i > 1 && check_file_magic_vik ( argv[i] ) ) {
newvw = vik_window_new_window ();
change_filename = TRUE;
}
// Check if the file parameter is a 'geo:' URI
// if so then then don't try to load this parameter as a file
if ( !check_for_geo_uri(argv[i]) )
vik_window_open_file ( newvw, argv[i], change_filename, (i==1), (i+1 == argc), TRUE, external );
}
}
vik_window_new_window_finish ( first_window );
vu_command_line ( first_window, latitude, longitude, zoom_level_osm, map_id );
gtk_main ();
vik_trwlayer_uninit ();
vik_aggregate_layer_uninit ();
a_babel_uninit ();
a_toolbar_uninit ();
a_background_uninit ();
maps_layer_uninit ();
a_mapcache_uninit ();
a_dems_uninit ();
a_layer_defaults_uninit ();
a_thumbnails_uninit ();
a_preferences_uninit ();
a_settings_uninit ();
modules_uninit();
curl_download_uninit();
vu_finalize_lat_lon_tz_lookup ();
vik_icons_unregister_resource ();
// Clean up any temporary files
util_remove_all_in_deletion_list ();
#ifdef G_OS_WIN32
g_strfreev ( argv );
#endif
return 0;
}