8fb656c39129845f5c21047db28191c33a633e58
[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 private:
38   std::vector<std::unique_ptr<Menu> > m_menu_stack;
39   std::unique_ptr<MenuTransition> m_transition;
40
41 public:
42   MenuManager();
43   ~MenuManager();
44
45   void event(const SDL_Event& event);
46   void process_input();
47   void refresh();
48
49   void draw(DrawingContext& context);
50
51   void set_menu(int id);
52   void set_menu(std::unique_ptr<Menu> menu);
53   void push_menu(int id);
54   void push_menu(std::unique_ptr<Menu> menu);
55   void pop_menu();
56   void clear_menu_stack();
57
58   void on_window_resize();
59   bool is_active() const
60   {
61     return !m_menu_stack.empty();
62   }
63
64 private:
65   Menu* current() const;
66   void transition(Menu* from, Menu* to);
67
68 private:
69   MenuManager(const MenuManager&);
70   MenuManager& operator=(const MenuManager&);
71 };
72
73 #endif
74
75 /* EOF */