ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
gui_menu_items.h
1 
2 /* ScummVM - Graphic Adventure Engine
3  *
4  * ScummVM is the legal property of its developers, whose names
5  * are too numerous to list here. Please refer to the COPYRIGHT
6  * file distributed with this source distribution.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  *
21  */
22 
23 #ifndef M4_GUI_GUI_MENU_ITEMS_H
24 #define M4_GUI_GUI_MENU_ITEMS_H
25 
26 #include "graphics/surface.h"
27 #include "m4/m4_types.h"
28 #include "m4/graphics/gr_buff.h"
29 #include "m4/gui/gui_univ.h"
30 
31 namespace M4 {
32 
33 namespace Burger {
34 namespace GUI {
35 
36 enum options_menu_sprites {
37  OM_DIALOG_BOX,
38 
39  OM_SLIDER_BTN_NORM,
40  OM_SLIDER_BTN_OVER,
41  OM_SLIDER_BTN_PRESS,
42 
43  OM_SLIDER_BAR,
44 
45  OM_DONE_BTN_GREY,
46  OM_DONE_BTN_NORM,
47  OM_DONE_BTN_OVER,
48  OM_DONE_BTN_PRESS,
49 
50  OM_CANCEL_BTN_NORM,
51  OM_CANCEL_BTN_OVER,
52  OM_CANCEL_BTN_PRESS,
53 
54  OM_TOTAL_SPRITES
55 };
56 
57 } // namespace GUI
58 } // namespace Burger
59 
60 namespace Riddle {
61 namespace GUI {
62 
63 enum options_menu_sprites {
64  OM_DIALOG_BOX,
65 
66  OM_SLIDER_BTN_NORM = 5,
67  OM_SLIDER_BTN_OVER = 6,
68  OM_SLIDER_BTN_PRESS = 7,
69 
70  OM_SCROLLING_ON_BTN_NORM = 8,
71  OM_SCROLLING_ON_BTN_OVER = 9,
72  OM_SCROLLING_ON_BTN_PRESS = 13,
73 
74  OM_SCROLLING_OFF_BTN_NORM = 11,
75  OM_SCROLLING_OFF_BTN_OVER = 12,
76  OM_SCROLLING_OFF_BTN_PRESS = 10,
77 
78  OM_TOTAL_SPRITES = 14
79 };
80 
81 } // namespace GUI
82 } // namespace Riddle
83 
84 namespace GUI {
85 
86 #define _GM(X) ::M4::g_vars->_menu.X
87 #define LockMouseSprite mouse_lock_sprite
88 #define UnlockMouseSprite mouse_unlock_sprite
89 
90 enum save_load_menu_item_tags {
91  SL_TAG_SAVE = 100,
92  SL_TAG_SAVE_LABEL,
93  SL_TAG_LOAD,
94  SL_TAG_LOAD_LABEL,
95  SL_TAG_CANCEL,
96  SL_TAG_SAVE_TITLE_LABEL,
97  SL_TAG_LOAD_TITLE_LABEL,
98  SL_TAG_VSLIDER,
99  SL_TAG_THUMBNAIL
100 };
101 
102 struct menuItem;
103 struct guiMenu;
104 
105 typedef bool (*ItemHandlerFunction)(menuItem *theItem, int32 eventType, int32 event, int32 x, int32 y, void **currItem);
106 typedef void (*DrawFunction)(void *source, guiMenu *dest, int32 x1, int32 y1, int32 x2, int32 y2);
107 typedef void (*DestroyFunction)(menuItem *theItem);
108 typedef M4CALLBACK CALLBACK;
109 
110 typedef M4sprite Sprite;
111 
112 enum game_menu_sprites {
113  GM_DIALOG_BOX,
114 
115  GM_BUTTON_GREY,
116  GM_BUTTON_NORM,
117  GM_BUTTON_OVER,
118  GM_BUTTON_PRESS,
119 
120  GM_TOTAL_SPRITES
121 };
122 
123 struct guiMenu;
124 
125 struct menuItem {
126  enum {
127  TEXT_COLOR_GREY_HILITE = 192,
128  TEXT_COLOR_GREY_FOREGROUND = 210,
129  TEXT_COLOR_GREY_SHADOW = 229,
130 
131  TEXT_COLOR_NORM_HILITE = 3,
132  TEXT_COLOR_NORM_FOREGROUND = 2,
133  TEXT_COLOR_NORM_SHADOW = 1,
134 
135  TEXT_COLOR_OVER_HILITE = 3,
136  TEXT_COLOR_OVER_FOREGROUND = 2,
137  TEXT_COLOR_OVER_SHADOW = 1,
138 
139  TEXT_COLOR_PRESS_HILITE = 3,
140  TEXT_COLOR_PRESS_FOREGROUND = 2,
141  TEXT_COLOR_PRESS_SHADOW = 1,
142  };
143 
144  menuItem *next = nullptr;
145  menuItem *prev = nullptr;
146 
147  guiMenu *myMenu = nullptr;
148  int32 tag = 0;
149 
150  int32 x1 = 0, y1 = 0, x2 = 0, y2 = 0;
151 
152  bool transparent = false;
153  GrBuff *background = nullptr;
154 
155  CALLBACK callback = nullptr;
156  DrawFunction redraw = nullptr;
157  DestroyFunction destroy = nullptr;
158  ItemHandlerFunction itemEventHandler = nullptr;
159 
160  static void destroyItem(menuItem *theItem);
161  static bool cursorInsideItem(menuItem *myItem, int32 cursorX, int32 cursorY);
162 };
163 
164 struct menuItemMsg : public menuItem {
165 private:
166  static void drawMsg(menuItemMsg *myItem, guiMenu *myMenu, int32 x, int32 y, int32, int32);
167 
168 public:
169  int32 itemFlags = 0;
170 
171  static menuItemMsg *msgAdd(guiMenu *myMenu, int32 tag, int32 x, int32 y, int32 w, int32 h, bool transparent = false);
172  static void disableMsg(menuItemMsg *myItem, int32 tag, guiMenu *myMenu);
173  static void enableMsg(menuItemMsg *myItem, int32 tag, guiMenu *myMenu);
174 };
175 
176 struct menuItemButton : public menuItem {
177 private:
178  static void drawButton(menuItemButton *myItem, guiMenu *myMenu,
179  int32 x, int32 y, int32, int32);
180 
181 public:
182  enum button_states {
183  BTN_STATE_NORM = 0,
184  BTN_STATE_OVER = 1,
185  BTN_STATE_PRESS = 2,
186  BTN_STATE_GREY = 3
187  };
188 
189  enum button_types {
190  BTN_TYPE_GM_GENERIC,
191 
192  // Burger
193  BTN_TYPE_SL_SAVE,
194  BTN_TYPE_SL_LOAD,
195  BTN_TYPE_SL_CANCEL,
196  BTN_TYPE_SL_TEXT,
197  BTN_TYPE_OM_DONE,
198  BTN_TYPE_OM_CANCEL,
199 
200  // Riddle
201  BTN_TYPE_OM_SCROLLING_ON,
202  BTN_TYPE_OM_SCROLLING_OFF
203  };
204 
205  int32 itemFlags = 0;
206  int32 buttonType = 0;
207  const char *prompt = nullptr;
208  menuItem *assocItem = nullptr;
209  int32 specialTag = 0;
210 
211  static menuItemButton *add(guiMenu *myMenu, int32 tag, int32 x, int32 y, int32 w, int32 h, CALLBACK callback = nullptr,
212  int32 buttonType = 0, bool ghosted = false, bool transparent = false,
213  const char *prompt = nullptr, ItemHandlerFunction i_handler = (ItemHandlerFunction)handler);
214  static void disableButton(menuItemButton *myItem, int32 tag, guiMenu *myMenu);
215  static void enableButton(menuItemButton *myItem, int32 tag, guiMenu *myMenu);
216  static bool handler(menuItemButton *theItem, int32 eventType, int32 event,
217  int32 x, int32 y, void **currItem);
218 };
219 
220 struct menuItemHSlider : public menuItem {
221 private:
222  static void drawHSlider(menuItemHSlider *myItem, guiMenu *myMenu, int32 x, int32 y, int32, int32);
223  static bool handler(menuItemHSlider *myItem, int32 eventType, int32 event, int32 x, int32 y, void **currItem);
224 
225 public:
226  int32 itemFlags = 0;
227 
228  int32 thumbW = 0, thumbH = 0;
229  int32 thumbX = 0, maxThumbX = 0;
230 
231  int32 percent = 0;
232 
233  enum {
234  H_THUMB_NORM = 0,
235  H_THUMB_OVER = 1,
236  H_THUMB_PRESS = 2
237  };
238 
239  static menuItemHSlider *add(guiMenu *myMenu, int32 tag,
240  int32 x, int32 y, int32 w, int32 h, int32 initPercent = 0,
241  CALLBACK callback = nullptr, bool transparent = false);
242 };
243 
244 struct menuItemVSlider : public menuItem {
245 private:
246  static int32 whereIsCursor(menuItemVSlider *myVSlider, int32 y);
247 
248 public:
249  int32 itemFlags = 0;
250 
251  int32 thumbW = 0, thumbH = 0;
252  int32 thumbY = 0, minThumbY = 0, maxThumbY = 0;
253 
254  int32 percent = 0;
255 
256  enum {
257  VS_NORM = 0x0000,
258  VS_OVER = 0x0001,
259  VS_PRESS = 0x0002,
260  VS_GREY = 0x0003,
261  VS_STATUS = 0x000f,
262  VS_UP = 0x0010,
263  VS_PAGE_UP = 0x0020,
264  VS_THUMB = 0x0030,
265  VS_PAGE_DOWN = 0x0040,
266  VS_DOWN = 0x0050,
267  VS_COMPONENT = 0x00f0
268  };
269 
270  static menuItemVSlider *add(guiMenu *myMenu, int32 tag, int32 x, int32 y, int32 w, int32 h,
271  int32 initPercent = 0, CALLBACK callback = nullptr, bool transparent = false);
272  static void disableVSlider(menuItemVSlider *myItem, int32 tag, guiMenu *myMenu);
273  static void enableVSlider(menuItemVSlider *myItem, int32 tag, guiMenu *myMenu);
274  static void drawVSlider(menuItemVSlider *myItem, guiMenu *myMenu, int32 x, int32 y, int32, int32);
275  static bool handler(menuItemVSlider *myItem, int32 eventType, int32 event, int32 x, int32 y, void **currItem);
276 };
277 
278 struct menuItemTextField : public menuItem {
279  int32 itemFlags = 0;
280 
281  int32 specialTag = 0;
282  int32 pixWidth = 0;
283 
284  char prompt[80] = { 0 };
285  char *promptEnd = nullptr;
286 
287  char *cursor = nullptr;
288 
289  enum {
290  TF_NORM = 0,
291  TF_OVER = 1,
292  TF_GREY = 2
293  };
294 
295  static menuItemTextField *add(guiMenu *myMenu, int32 tag, int32 x, int32 y, int32 w, int32 h, int32 initFlags,
296  const char *prompt = nullptr, int32 specialtag = 0, CALLBACK callback = nullptr, bool transparent = false);
297  static bool handler(menuItemTextField *myItem, int32 eventType, int32 event, int32 x, int32 y, void **currItem);
298  static void drawTextField(menuItemTextField *myItem, guiMenu *myMenu, int32 x, int32 y, int32, int32);
299 };
300 
301 struct guiMenu {
302 private:
303  static void show(void *s, void *r, void *b, int32 destX, int32 destY);
304  static bool eventHandler(guiMenu *theMenu, int32 eventType, int32 parm1, int32 parm2, int32 parm3, bool *currScreen);
305 
306 public:
307  GrBuff *menuBuffer = nullptr;
308  menuItem *itemList = nullptr;
309  CALLBACK cb_return = nullptr;
310  CALLBACK cb_esc = nullptr;
311  EventHandler menuEventHandler = nullptr;
312 
313  static bool initialize(RGB8 *myPalette);
314  static void shutdown(bool fadeToColor);
315  static guiMenu *create(Sprite *backgroundSprite, int32 x1, int32 y1, int32 scrnFlags);
316  static void destroy(guiMenu *myMenu);
317  static void configure(guiMenu *myMenu, CALLBACK cb_return, CALLBACK cb_esc);
318  static GrBuff *copyBackground(guiMenu *myMenu, int32 x, int32 y, int32 w, int32 h);
319  static menuItem *getItem(int32 tag, guiMenu *myMenu);
320  static void itemDelete(menuItem *myItem, int32 tag, guiMenu *myMenu);
321  static void itemRefresh(menuItem *myItem, int32 tag, guiMenu *myMenu);
322 
323  static bool loadSprites(const char *series, int32 numSprites);
324  static void unloadSprites();
325 };
326 
327 struct MenuGlobals {
328  //GLOBAL VARS
329  bool menuSystemInitialized = false;
330  bool buttonClosesDialog = false;
331  bool interfaceWasVisible = false;
332  RGB8 *menuPalette = nullptr;
333  bool dumpedCodes = false;
334  bool dumpedBackground = false;
335 
336  menuItem *menuCurrItem = nullptr;
337 
338  guiMenu *gameMenu = nullptr;
339  guiMenu *opMenu = nullptr;
340  guiMenu *slMenu = nullptr;
341  guiMenu *errMenu = nullptr;
342 
343  //menu sprite series vars
344  char *menuSeriesResource = nullptr;
345  MemHandle menuSeriesHandle = nullptr;
346  int32 menuSeriesOffset = 0;
347  int32 menuSeriesPalOffset = 0;
348 
349  Font *menuFont = nullptr;
350 
351  // menu sprites array (used to hold all the sprites for the current menu, spriteCount is set tot he number of sprites in the series)
352  int32 spriteCount = 0;
353  Sprite **menuSprites = nullptr;
354 
355  // VARS SPECIFIC TO THE GAME MENUS SYSTEM
356  // An array of slot titles used by the save/load menus
357  char **slotTitles = nullptr;
358  bool *slotInUse = nullptr;
359  int32 firstSlotIndex = 0; // Slot at the top of the list on menu
360  int32 slotSelected = -1; // Slot currently selected
361  bool deleteSaveDesc = false;
362 
363  Sprite **thumbNails = nullptr;
364  Sprite *saveLoadThumbNail = nullptr; // Original used for menu display
365  Graphics::Surface _thumbnail; // ScummVM version used for savegame
366  int32 sizeofThumbData = -1;
367  int32 thumbIndex = 0;
368 
369  bool currMenuIsSave = true; // Used to determine load or save menu
370  bool saveLoadFromHotkey = false; // Come from hotkey, not through game menu
371  bool gameMenuFromMain = false; // Come from main menu, not through escape
372 
373  int32 remember_digi_volume = 0; // For cancelling out of the options menu
374  int32 remember_digestability = 0; // For cancelling out of the options menu
375 
376  ~MenuGlobals() {
377  _thumbnail.free();
378  }
379 };
380 
381 extern void gui_DrawSprite(Sprite *mySprite, Buffer *myBuff, int32 x, int32 y);
382 
383 //======================================
384 //
385 // gamemenu module defines
386 //
387 #define MENU_DEPTH 9 // video depth for menu popup boxes
388 #define MAX_SLOTS 99 // number of save games you can have
389 #define MAX_SLOTS_SHOWN 8 // number of slots in the scrolling field
390 
391 } // namespace GUI
392 } // namespace M4
393 
394 #endif
Definition: surface.h:67
Definition: gr_font.h:30
Definition: gui_menu_items.h:125
Definition: gui_menu_items.h:301
Definition: system.h:46
Definition: m4_types.h:88
Definition: gui_menu_items.h:327
Definition: gui_menu_items.h:164
Definition: gui_menu_items.h:220
Definition: m4_types.h:67
Definition: database.h:28
Definition: gr_buff.h:30
Definition: gui_menu_items.h:278
Definition: gui_menu_items.h:244
Definition: gui_menu_items.h:176