renamed all .h to .hpp
[supertux.git] / src / gui / menu.hpp
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 // 
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 #ifndef SUPERTUX_MENU_H
20 #define SUPERTUX_MENU_H
21
22 #include <vector>
23 #include <set>
24 #include <string>
25 #include <utility>
26 #include <assert.h>
27
28 #include <SDL.h>
29
30 #include "video/surface.hpp"
31 #include "video/font.hpp"
32 #include "mousecursor.hpp"
33
34 bool confirm_dialog(Surface* background, std::string text);
35
36 /* Kinds of menu items */
37 enum MenuItemKind {
38   MN_ACTION,
39   MN_GOTO,
40   MN_TOGGLE,
41   MN_BACK,
42   MN_DEACTIVE,
43   MN_TEXTFIELD,
44   MN_NUMFIELD,
45   MN_CONTROLFIELD,
46   MN_STRINGSELECT,
47   MN_LABEL,
48   MN_HL, /* horizontal line */
49 };
50
51 class Menu;
52
53 class MenuItem
54 {
55 public:
56   MenuItem(MenuItemKind kind, int id = -1);
57   MenuItemKind kind;
58   int id;   // item id      
59   bool toggled;
60   std::string text;
61   std::string input;
62   
63   std::vector<std::string> list; // list of values for a STRINGSELECT item
64   size_t selected; // currently selected item
65   
66   Menu* target_menu;
67   
68   void change_text (const std::string& text);
69   void change_input(const std::string& text);
70   
71   static MenuItem* create(MenuItemKind kind, const std::string& text,
72                           int init_toggle, Menu* target_menu, int id, int key);
73   
74   std::string get_input_with_symbol(bool active_item);   // returns the text with an input symbol
75
76 private:
77   /// copy-construction not allowed
78   MenuItem(const MenuItem& ) { assert(false); }
79   /// assignment not allowed
80   void operator= (const MenuItem& ) { assert(false); }
81
82   /// keyboard key or joystick button
83   bool input_flickering;
84 };
85
86 class Menu
87 {
88 private:
89   static std::vector<Menu*> last_menus;
90   static Menu* current_;
91   
92   static void push_current(Menu* pmenu);
93   static void pop_current();
94   
95 public:
96   /** Set the current menu, if pmenu is NULL, hide the current menu */
97   static void set_current(Menu* pmenu);
98   
99   /** Return the current active menu or NULL if none is active */
100   static Menu* current()
101   {
102     return current_;
103   }
104   
105 private:
106   /* Action done on the menu */
107   enum MenuAction {
108     MENU_ACTION_NONE = -1,
109     MENU_ACTION_UP,
110     MENU_ACTION_DOWN,
111     MENU_ACTION_LEFT,
112     MENU_ACTION_RIGHT,
113     MENU_ACTION_HIT,
114     MENU_ACTION_INPUT,
115     MENU_ACTION_REMOVE,
116     MENU_ACTION_BACK
117   };
118   
119   /** Number of the item that got 'hit' (ie. pressed) in the last
120       event()/update() call, -1 if none */
121   int hit_item;
122   
123   // position of the menu (ie. center of the menu, not top/left)
124   int pos_x;
125   int pos_y;
126   
127   /** input event for the menu (up, down, left, right, etc.) */
128   MenuAction menuaction;
129   
130   /* input implementation variables */
131   int delete_character;
132   char mn_input_char;
133   Uint32 menu_repeat_ticks;
134
135 public:
136   static Font* default_font;
137   static Font* active_font;
138   static Font* deactive_font;
139   static Font* label_font;
140   static Font* field_font;
141
142   std::vector<MenuItem*> items;
143   
144   Menu();
145   virtual ~Menu();
146   
147   void add_hl();
148   void add_label(const std::string& text);
149   void add_entry(int id, const std::string& text);
150   void add_toggle(int id, const std::string& text, bool toggled = false);
151   void add_deactive(int id, const std::string& text);
152   void add_back(const std::string& text);
153   void add_submenu(const std::string& text, Menu* submenu, int id = -1);
154   void add_controlfield(int id, const std::string& text,
155                         const std::string& mapping = "");
156
157   virtual void menu_action(MenuItem* item);
158   
159   void update();
160   
161   /** Remove all entries from the menu */
162   void clear();
163   
164   /** Return the index of the menu item that was 'hit' (ie. the user
165       clicked on it) in the last event() call */
166   int check ();
167   
168   MenuItem& get_item(int index)
169   {
170     return *(items[index]);
171   }
172   MenuItem& get_item_by_id(int id);
173   const MenuItem& get_item_by_id(int id) const;
174   
175   int get_active_item_id();
176   void set_active_item(int id);
177   
178   void draw(DrawingContext& context);  
179   void set_pos(int x, int y, float rw = 0, float rh = 0);
180   
181   void event(const SDL_Event& event);
182
183   bool is_toggled(int id) const;
184
185 protected:
186   void additem(MenuItem* pmenu_item);  
187   int get_width() const;
188   int get_height() const;
189
190 private:
191   void check_controlfield_change_event(const SDL_Event& event);  
192   void draw_item(DrawingContext& context, int index);
193   Uint32 effect_ticks;
194   int arrange_left;
195   int active_item;
196 };
197
198 extern Surface* checkbox;
199 extern Surface* checkbox_checked;
200 extern Surface* back;
201 extern Surface* arrow_left;
202 extern Surface* arrow_right;
203
204 #endif