]> git.mxchange.org Git - flightgear.git/blob - utils/fgadmin/src/main.cxx
fgadmin: add C string header
[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 <cstring>
25 #include <FL/Fl.H>
26 #include <FL/filename.H>
27 #include "fgadmin.h"
28
29 std::string def_install_source;
30 std::string def_scenery_dest;
31 bool silent = false;
32
33 /**
34  * --silent
35  * --install-source=<DIR>
36  * --scenery-dest=<DIR>
37  */
38 static int
39 parse_args( int, char** argv, int& i )
40 {
41     if (strcmp( argv[i], "--silent" ) == 0)
42     {
43         silent = true;
44         ++i;
45         return 1;
46     }
47     else if (strncmp( argv[i], "--install-source=", 17 ) == 0)
48     {
49         def_install_source.assign( &argv[i][17] );
50         ++i;
51         return 1;
52     }
53     else if (strncmp( argv[i], "--scenery-dest=", 15 ) == 0)
54     {
55         def_scenery_dest.assign( &argv[i][15] );
56         ++i;
57         return 1;
58     }
59
60     return 0;
61 }
62
63 int
64 main( int argc, char* argv[] )
65 {
66     int i = 0;
67     if (Fl::args( argc, argv, i, parse_args ) < argc)
68     {
69         Fl::fatal("Options are:\n --silent\n --install-source=<DIR>\n --scenery-dest=<DIR>\n%s", Fl::help );
70     }
71
72     if ( silent )
73     {
74         Fl_Preferences prefs( Fl_Preferences::USER, "flightgear.org", "fgadmin" );
75         char abs_name[ FL_PATH_MAX ];
76
77         fl_filename_absolute( abs_name, def_install_source.c_str() );
78         prefs.set( "install-source", abs_name );
79
80         fl_filename_absolute( abs_name, def_scenery_dest.c_str() );
81         prefs.set( "scenery-dest", abs_name );
82
83         return 0;
84     }
85
86     FGAdminUI ui;
87     ui.init();
88     ui.show();
89
90     return Fl::run();
91 }