4 // Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
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.
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.
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.
20 #ifndef SUPERTUX_MENU_H
21 #define SUPERTUX_MENU_H
28 #include "mousecursor.h"
54 enum WorldMapMenuIDs {
59 enum LevelEditorMainMenuIDs {
60 MNID_RETURNLEVELEDITOR,
65 enum LevelEditorSubsetSettingsIDs {
67 MNID_SUBSETDESCRIPTION,
68 MNID_SUBSETSAVECHANGES
71 enum LevelEditorSubsetNewIDs {
76 enum LevelEditorSettingsMenuIDs {
96 bool confirm_dialog(std::string text);
98 /* Kinds of menu items */
111 MN_HL, /* horizontal line */
123 int *int_p; // used for setting keys (can be used for more stuff...)
125 string_list_type* list;
128 void change_text (const char *text);
129 void change_input(const char *text);
131 static MenuItem* create(MenuItemKind kind, const char *text, int init_toggle, Menu* target_menu, int id, int* int_p);
133 std::string get_input_with_symbol(bool active_item); // returns the text with an input symbol
135 bool input_flickering;
136 Timer input_flickering_timer;
142 static std::vector<Menu*> last_menus;
143 static Menu* current_;
145 static void push_current(Menu* pmenu);
146 static void pop_current();
149 /** Set the current menu, if pmenu is NULL, hide the current menu */
150 static void set_current(Menu* pmenu);
152 /** Return the current active menu or NULL if none is active */
153 static Menu* current() { return current_; }
156 /* Action done on the menu */
158 MENU_ACTION_NONE = -1,
168 /** Number of the item that got 'hit' (ie. pressed) in the last
169 event()/action() call, -1 if none */
172 // position of the menu (ie. center of the menu, not top/left)
176 /** input event for the menu (up, down, left, right, etc.) */
177 MenuAction menuaction;
179 /* input implementation variables */
180 int delete_character;
188 std::vector<MenuItem> item;
193 void additem(MenuItem* pmenu_item);
194 void additem(MenuItemKind kind, const std::string& text, int init_toggle, Menu* target_menu, int id = -1, int *int_p = NULL);
198 /** Remove all entries from the menu */
201 /** Return the index of the menu item that was 'hit' (ie. the user
202 clicked on it) in the last event() call */
205 MenuItem& get_item(int index) { return item[index]; }
206 MenuItem& get_item_by_id(int id);
208 int get_active_item_id();
210 bool isToggled(int id);
212 void Menu::get_controlfield_key_into_input(MenuItem *item);
213 void Menu::get_controlfield_js_into_input(MenuItem *item);
216 void draw_item(int index, int menu_width, int menu_height);
217 void set_pos(int x, int y, float rw = 0, float rh = 0);
219 /** translate a SDL_Event into a menu_action */
220 void event(SDL_Event& event);
222 int get_width() const;
223 int get_height() const;
225 bool is_toggled(int id) const;
228 extern Surface* checkbox;
229 extern Surface* checkbox_checked;
230 extern Surface* back;
231 extern Surface* arrow_left;
232 extern Surface* arrow_right;
234 extern Menu* contrib_menu;
235 extern Menu* contrib_subset_menu;
236 extern Menu* main_menu;
237 extern Menu* game_menu;
238 extern Menu* worldmap_menu;
239 extern Menu* options_menu;
240 extern Menu* options_keys_menu;
241 extern Menu* options_joystick_menu;
242 extern Menu* highscore_menu;
243 extern Menu* load_game_menu;
244 extern Menu* save_game_menu;
246 #endif /*SUPERTUX_MENU_H*/
248 /* Local Variables: */