23 #ifndef M4_GUI_GUI_MENU_ITEMS_H 24 #define M4_GUI_GUI_MENU_ITEMS_H 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" 36 enum options_menu_sprites {
63 enum options_menu_sprites {
66 OM_SLIDER_BTN_NORM = 5,
67 OM_SLIDER_BTN_OVER = 6,
68 OM_SLIDER_BTN_PRESS = 7,
70 OM_SCROLLING_ON_BTN_NORM = 8,
71 OM_SCROLLING_ON_BTN_OVER = 9,
72 OM_SCROLLING_ON_BTN_PRESS = 13,
74 OM_SCROLLING_OFF_BTN_NORM = 11,
75 OM_SCROLLING_OFF_BTN_OVER = 12,
76 OM_SCROLLING_OFF_BTN_PRESS = 10,
86 #define _GM(X) ::M4::g_vars->_menu.X 87 #define LockMouseSprite mouse_lock_sprite 88 #define UnlockMouseSprite mouse_unlock_sprite 90 enum save_load_menu_item_tags {
96 SL_TAG_SAVE_TITLE_LABEL,
97 SL_TAG_LOAD_TITLE_LABEL,
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;
110 typedef M4sprite Sprite;
112 enum game_menu_sprites {
127 TEXT_COLOR_GREY_HILITE = 192,
128 TEXT_COLOR_GREY_FOREGROUND = 210,
129 TEXT_COLOR_GREY_SHADOW = 229,
131 TEXT_COLOR_NORM_HILITE = 3,
132 TEXT_COLOR_NORM_FOREGROUND = 2,
133 TEXT_COLOR_NORM_SHADOW = 1,
135 TEXT_COLOR_OVER_HILITE = 3,
136 TEXT_COLOR_OVER_FOREGROUND = 2,
137 TEXT_COLOR_OVER_SHADOW = 1,
139 TEXT_COLOR_PRESS_HILITE = 3,
140 TEXT_COLOR_PRESS_FOREGROUND = 2,
141 TEXT_COLOR_PRESS_SHADOW = 1,
150 int32 x1 = 0, y1 = 0, x2 = 0, y2 = 0;
152 bool transparent =
false;
153 GrBuff *background =
nullptr;
155 CALLBACK callback =
nullptr;
156 DrawFunction redraw =
nullptr;
157 DestroyFunction destroy =
nullptr;
158 ItemHandlerFunction itemEventHandler =
nullptr;
160 static void destroyItem(
menuItem *theItem);
161 static bool cursorInsideItem(
menuItem *myItem, int32 cursorX, int32 cursorY);
166 static void drawMsg(
menuItemMsg *myItem,
guiMenu *myMenu, int32 x, int32 y, int32, int32);
171 static menuItemMsg *msgAdd(
guiMenu *myMenu, int32 tag, int32 x, int32 y, int32 w, int32 h,
bool transparent =
false);
179 int32 x, int32 y, int32, int32);
201 BTN_TYPE_OM_SCROLLING_ON,
202 BTN_TYPE_OM_SCROLLING_OFF
206 int32 buttonType = 0;
207 const char *prompt =
nullptr;
209 int32 specialTag = 0;
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);
216 static bool handler(
menuItemButton *theItem, int32 eventType, int32 event,
217 int32 x, int32 y,
void **currItem);
223 static bool handler(
menuItemHSlider *myItem, int32 eventType, int32 event, int32 x, int32 y,
void **currItem);
228 int32 thumbW = 0, thumbH = 0;
229 int32 thumbX = 0, maxThumbX = 0;
240 int32 x, int32 y, int32 w, int32 h, int32 initPercent = 0,
241 CALLBACK callback =
nullptr,
bool transparent =
false);
251 int32 thumbW = 0, thumbH = 0;
252 int32 thumbY = 0, minThumbY = 0, maxThumbY = 0;
265 VS_PAGE_DOWN = 0x0040,
267 VS_COMPONENT = 0x00f0
271 int32 initPercent = 0, CALLBACK callback =
nullptr,
bool transparent =
false);
275 static bool handler(
menuItemVSlider *myItem, int32 eventType, int32 event, int32 x, int32 y,
void **currItem);
281 int32 specialTag = 0;
284 char prompt[80] = { 0 };
285 char *promptEnd =
nullptr;
287 char *cursor =
nullptr;
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);
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);
307 GrBuff *menuBuffer =
nullptr;
309 CALLBACK cb_return =
nullptr;
310 CALLBACK cb_esc =
nullptr;
311 EventHandler menuEventHandler =
nullptr;
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);
323 static bool loadSprites(
const char *series, int32 numSprites);
324 static void unloadSprites();
329 bool menuSystemInitialized =
false;
330 bool buttonClosesDialog =
false;
331 bool interfaceWasVisible =
false;
332 RGB8 *menuPalette =
nullptr;
333 bool dumpedCodes =
false;
334 bool dumpedBackground =
false;
344 char *menuSeriesResource =
nullptr;
345 MemHandle menuSeriesHandle =
nullptr;
346 int32 menuSeriesOffset = 0;
347 int32 menuSeriesPalOffset = 0;
349 Font *menuFont =
nullptr;
352 int32 spriteCount = 0;
353 Sprite **menuSprites =
nullptr;
357 char **slotTitles =
nullptr;
358 bool *slotInUse =
nullptr;
359 int32 firstSlotIndex = 0;
360 int32 slotSelected = -1;
361 bool deleteSaveDesc =
false;
363 Sprite **thumbNails =
nullptr;
364 Sprite *saveLoadThumbNail =
nullptr;
366 int32 sizeofThumbData = -1;
367 int32 thumbIndex = 0;
369 bool currMenuIsSave =
true;
370 bool saveLoadFromHotkey =
false;
371 bool gameMenuFromMain =
false;
373 int32 remember_digi_volume = 0;
374 int32 remember_digestability = 0;
381 extern void gui_DrawSprite(Sprite *mySprite,
Buffer *myBuff, int32 x, int32 y);
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
Definition: m4_types.h:88
Definition: m4_types.h:67
Definition: database.h:28