3da7a974032be1046df49182c5b8c106c9fced69
[supertux.git] / src / menu.h
1 /*
2   menu.h
3   
4   Super Tux - Menu
5   
6   by Tobias Glaesser
7   tobi.web@gmx.de
8   http://www.newbreedsoftware.com/supertux/
9   
10   December 20, 2003
11 */
12
13 #ifndef SUPERTUX_MENU_H
14 #define SUPERTUX_MENU_H
15
16 #include <SDL.h>
17 #include "texture.h"
18 #include "timer.h"
19 #include "type.h"
20 #include "mousecursor.h"
21
22 /* Kinds of menu items */
23 enum MenuItemKind {
24   MN_ACTION,
25   MN_GOTO,
26   MN_TOGGLE,
27   MN_BACK,
28   MN_DEACTIVE,
29   MN_TEXTFIELD,
30   MN_NUMFIELD,
31   MN_CONTROLFIELD,
32   MN_STRINGSELECT,
33   MN_LABEL,
34   MN_HL, /* horizontal line */
35 };
36
37 class Menu;
38
39 struct menu_item_type
40   {
41     MenuItemKind kind;
42     int toggled;
43     char *text;
44     char *input;
45     string_list_type* list;
46     Menu* target_menu;
47 };
48
49 menu_item_type* menu_item_create(MenuItemKind kind, char *text, int init_toggle, Menu* target_menu);
50 void menu_item_change_text (menu_item_type* pmenu_item, const char *text);
51 void menu_item_change_input(menu_item_type* pmenu_item, const char *text);
52
53 class Menu
54 {
55 friend void menu_event(SDL_Event& event);
56
57 private:
58   // position of the menu (ie. center of the menu, not top/left)
59   int pos_x;
60   int pos_y;
61   
62   int num_items;
63   Menu* last_menu;
64   int width();
65   int height();
66
67 public:
68   timer_type effect;
69   int arrange_left;
70   int active_item;
71   menu_item_type *item;
72
73   static void set_current(Menu* pmenu);
74
75   Menu();
76   ~Menu();
77
78   void additem(menu_item_type* pmenu_item);
79   void additem(MenuItemKind kind, char *text, int init_toggle, Menu* target_menu);
80   void action ();
81   int  check  ();
82   void draw   ();
83   void draw_item(int index, int menu_width, int menu_height);
84 };
85
86
87 /* Action done on the menu */
88 enum MenuAction {
89   MENU_ACTION_NONE = -1,
90   MENU_ACTION_UP,
91   MENU_ACTION_DOWN,
92   MENU_ACTION_LEFT,
93   MENU_ACTION_RIGHT,
94   MENU_ACTION_HIT,
95   MENU_ACTION_INPUT,
96   MENU_ACTION_REMOVE
97 };
98
99 /* (global) menu variables */
100 extern MenuAction menuaction;
101 extern bool show_menu;
102 extern bool menu_change;
103 extern texture_type checkbox, checkbox_checked, back, arrow_left, arrow_right;
104
105 extern Menu* main_menu;
106 extern Menu* game_menu;
107 extern Menu* options_menu;
108 extern Menu* options_controls_menu;
109 extern Menu* highscore_menu;
110 extern Menu* load_game_menu;
111 extern Menu* save_game_menu;
112 extern Menu* current_menu;
113
114 /* input implementation variables */
115 extern int delete_character;
116 extern char mn_input_char;
117
118 /* Reset the global menu variables */
119 void menu_reset(void);
120
121 /* "Calculate" and draw the menu */
122 void menu_process_current(void);
123
124 /* Check for a menu event */
125 void menu_event(SDL_Event& event);
126
127 #endif /*SUPERTUX_MENU_H*/
128
129 /* Local Variables: */
130 /* mode:c++ */
131 /* End */