]> git.mxchange.org Git - flightgear.git/blob - utils/fgadmin/src/main.cxx
07f66036946d82349754976f6d714164c9b8b360
[flightgear.git] / utils / fgadmin / src / main.cxx
1 // main.cxx -- FlightGear Scenery/Aircraft Admin Tool
2 //
3 // Written by Curtis Olson, started February 2004.
4 //
5 // Copyright (c) 2004  Curtis L. Olson - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 #include <string>
24 #include <FL/Fl.H>
25 #include <FL/filename.H>
26 #include "fgadmin.h"
27
28 std::string def_install_source;
29 std::string def_scenery_dest;
30 bool silent = false;
31
32 /**
33  * --silent
34  * --install-source=<DIR>
35  * --scenery-dest=<DIR>
36  */
37 static int
38 parse_args( int, char** argv, int& i )
39 {
40     if (strcmp( argv[i], "--silent" ) == 0)
41     {
42         silent = true;
43         ++i;
44         return 1;
45     }
46     else if (strncmp( argv[i], "--install-source=", 17 ) == 0)
47     {
48         def_install_source.assign( &argv[i][17] );
49         ++i;
50         return 1;
51     }
52     else if (strncmp( argv[i], "--scenery-dest=", 15 ) == 0)
53     {
54         def_scenery_dest.assign( &argv[i][15] );
55         ++i;
56         return 1;
57     }
58
59     return 0;
60 }
61
62 int
63 main( int argc, char* argv[] )
64 {
65     int i = 0;
66     if (Fl::args( argc, argv, i, parse_args ) < argc)
67     {
68         Fl::fatal("Options are:\n --silent\n --install-source=<DIR>\n --scenery-dest=<DIR>\n%s", Fl::help );
69     }
70
71     if ( silent )
72     {
73         Fl_Preferences prefs( Fl_Preferences::USER, "flightgear.org", "fgadmin" );
74         char abs_name[ FL_PATH_MAX ];
75
76         fl_filename_absolute( abs_name, def_install_source.c_str() );
77         prefs.set( "install-source", abs_name );
78
79         fl_filename_absolute( abs_name, def_scenery_dest.c_str() );
80         prefs.set( "scenery-dest", abs_name );
81
82         return 0;
83     }
84
85     FGAdminUI ui;
86     ui.init();
87     ui.show();
88
89     return Fl::run();
90 }