Cleaned up MenuManager some more, some ownership issues remain, so things will crash...
[supertux.git] / src / gui / menu_manager.hpp
1 //  SuperTux
2 //  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmx.de>
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 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, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_GUI_MENU_MANAGER_HPP
18 #define HEADER_SUPERTUX_GUI_MENU_MANAGER_HPP
19
20 #include <vector>
21 #include <list>
22 #include <memory>
23
24 class Menu;
25 class DrawingContext;
26
27 class MenuManager
28 {
29 private:
30   static MenuManager* s_instance;
31 public:
32   static MenuManager& instance();
33
34 public:
35   std::vector<std::unique_ptr<Menu> > m_menu_stack;
36
37   bool close;
38   float effect_progress;
39   float effect_start_time;
40
41   friend class Menu;
42
43 public:
44   MenuManager();
45   ~MenuManager();
46
47   void draw(DrawingContext& context);
48   bool check_menu();
49
50   void set_menu(int id);
51   void clear_menu_stack();
52
53   void push_menu(std::unique_ptr<Menu> menu);
54   void push_menu(int id);
55   void pop_menu();
56
57   void recalc_pos();
58
59   /** Return the current active menu or NULL if none is active */
60   Menu* current() const
61   {
62     if (m_menu_stack.empty())
63     {
64       return nullptr;
65     }
66     else
67     {
68       return m_menu_stack.back().get();
69     }
70   }
71
72   bool is_active() const
73   {
74     return !m_menu_stack.empty();
75   }
76
77 private:
78   /** Set the current menu, if pmenu is NULL, hide the current menu */
79   void set_menu(std::unique_ptr<Menu> menu);
80
81 private:
82   MenuManager(const MenuManager&);
83   MenuManager& operator=(const MenuManager&);
84 };
85
86 #endif
87
88 /* EOF */