Removed old Menu::check_menu() and replaced it with Menu::menu_action()
[supertux.git] / src / gui / menu_manager.hpp
1 //  SuperTux
2 //  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmail.com>
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 #include "SDL.h"
25
26 class DrawingContext;
27 class Menu;
28 class MenuTransition;
29
30 class MenuManager
31 {
32 private:
33   static MenuManager* s_instance;
34 public:
35   static MenuManager& instance();
36
37 public:
38   std::vector<std::unique_ptr<Menu> > m_menu_stack;
39   std::unique_ptr<MenuTransition> m_transition;
40
41   friend class Menu;
42
43 public:
44   MenuManager();
45   ~MenuManager();
46
47   void event(const SDL_Event& event);
48   void process_input();
49   void refresh();
50
51   void draw(DrawingContext& context);
52
53   void set_menu(int id);
54   void set_menu(std::unique_ptr<Menu> menu);
55   void push_menu(int id);
56   void push_menu(std::unique_ptr<Menu> menu);
57   void pop_menu();
58   void clear_menu_stack();
59
60   void on_window_resize();
61   bool is_active() const
62   {
63     return !m_menu_stack.empty();
64   }
65
66 private:
67   Menu* current() const;
68   void transition(Menu* from, Menu* to);
69
70 private:
71   MenuManager(const MenuManager&);
72   MenuManager& operator=(const MenuManager&);
73 };
74
75 #endif
76
77 /* EOF */