initial commit, lordsawar source, slightly modified
[lordsawar] / src / gui / main.h
1 //  Copyright (C) 2007 Ole Laursen
2 //  Copyright (C) 2007, 2008 Ben Asselstine
3 //
4 //  This program is free software; you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation; either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU Library General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program; if not, write to the Free Software
16 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 
17 //  02110-1301, USA.
18
19 #ifndef GUI_MAIN_H
20 #define GUI_MAIN_H
21
22 #include <sigc++/trackable.h>
23 #include <boost/noncopyable.hpp>
24
25 // initialize the GUI and run the main loop; only one instance is ever
26 // constructed so Main::instance is a convenience for retrieving it
27 class Main: public sigc::trackable, public boost::noncopyable
28 {
29  public:
30     Main(int &argc, char **&argv);
31     ~Main();
32
33     // singleton interface
34     static Main &instance();
35     
36     void start_main_loop();
37     void stop_main_loop();
38     bool iterate_main_loop();
39
40     bool start_stress_test;
41     int start_robots;
42     bool start_test_scenario;
43     std::string load_filename;
44     std::string turn_filename;
45     
46  private:
47     struct Impl;
48     Impl *impl;
49 };
50
51
52 #endif