22 #if defined(ENABLE_EOB) || defined(ENABLE_LOL) 24 #ifndef KYRA_GUI_EOB_H 25 #define KYRA_GUI_EOB_H 27 #include "kyra/gui/gui.h" 43 class GUI_EoB :
public GUI {
44 friend class EoBCoreEngine;
45 friend class CharacterGenerator;
47 GUI_EoB(EoBCoreEngine *vm);
50 void initStaticData() {}
53 void processButton(
Button *button)
override;
54 int processButtonList(
Button *buttonList, uint16 inputFlags, int8 mouseWheel)
override;
57 void simpleMenu_setup(
int sd,
int maxItem,
const char *
const *strings, int32 menuItemsMask,
int itemOffset,
int lineSpacing,
int textColor,
int highlightColor,
int shadowColor);
58 int simpleMenu_process(
int sd,
const char *
const *strings,
void *b, int32 menuItemsMask,
int itemOffset);
59 void simpleMenu_unselect(
int sd,
const char *
const *strings,
void *b, int32 menuItemsMask,
int itemOffset);
62 virtual void runCampMenu();
63 virtual bool runLoadMenu(
int x,
int y,
bool fromMainMenu =
false);
65 bool confirmDialogue2(
int dim,
int id,
int deflt);
66 void messageDialog(
int dim,
int id,
int buttonTextCol);
67 void messageDialog2(
int dim,
int id,
int buttonTextCol);
69 void updateBoxFrameHighLight(
int box);
71 int getTextInput(
char *dest,
int x,
int y,
int destMaxLen,
int textColor1,
int textColor2,
int cursorColor);
74 void transferWaitBox();
82 const char *getMenuString(
int id);
84 void releaseButtons(
Button *list);
87 int8 *_numAssignedSpellsOfType;
88 char** _saveSlotStringsTemp;
93 int _clickableCharactersPage;
99 int simpleMenu_getMenuItem(
int index, int32 menuItemsMask,
int itemOffset);
100 void simpleMenu_flashSelection(
const char *str,
int x,
int y,
int color1,
int color2,
int color3);
101 void simpleMenu_initMenuItemsMask(
int menuId,
int maxItem, int32 menuItemsMask,
int unk);
102 void simpleMenu_printButton(
int sd,
int num,
const char *title,
bool isHighlight,
bool isInitial);
103 Common::Point simpleMenu_getTextPoint(
int num,
int *col =
nullptr);
104 int simpleMenu_getMouseItem(
int sd);
106 bool runSaveMenu(
int x,
int y);
107 int selectSaveSlotDialog(
int x,
int y,
int id);
108 virtual void drawSaveSlotDialog(
int x,
int y,
int id);
109 void runMemorizePrayMenu(
int charIndex,
int spellType);
110 void scribeScrollDialogue();
113 virtual void drawCampMenu() {}
114 virtual void initMemorizePrayMenu(
int) {}
115 virtual void initScribeScrollMenu() {}
116 virtual void printScribeScrollSpellString(
const int16 *menuItems,
int id,
bool highlight);
117 virtual bool confirmDialogue(
int id);
118 int selectCharacterDialogue(
int id);
119 virtual void displayTextBox(
int id,
int textColor = 0xFF,
bool wait =
true);
121 virtual void drawMenuButton(
Button *b,
bool clicked,
bool highlight,
bool noFill);
122 void drawMenuButtonBox(
int x,
int y,
int w,
int h,
bool clicked,
bool noFill);
123 void drawTextBox(
int dim,
int id);
124 virtual void drawSaveSlotButton(
int slot,
int redrawBox,
bool highlight);
125 virtual void memorizePrayMenuPrintString(
int spellId,
int bookPageIndex,
int spellType,
bool noFill,
bool highLight);
126 virtual void updateOptionsStrings();
130 void setupSaveMenuSlots();
131 virtual int getHighlightSlot();
132 void sortSaveSlots()
override;
134 virtual void restParty_updateRestTime(
int hours,
bool init);
136 char **_menuStringsPrefsTemp;
137 int16 *_saveSlotIdTemp;
139 const int _numSlotsVisible;
143 Button *_specialProcessButton;
144 Button *_backupButtonList;
145 uint16 _flagsMouseLeft;
146 uint16 _flagsMouseRight;
147 uint16 _flagsModifier;
149 uint16 _prcButtonUnk3;
152 int _menuLineSpacing;
153 int _menuLastInFlags;
155 int _menuHighlightColor;
156 int _menuShadowColor;
158 int _menuColumnWidth[2];
159 int _menuColumnOffset[2];
160 bool _menuOverflow[20];
166 uint32 _clericSpellAvltyFlags;
167 uint32 _paladinSpellAvltyFlags;
171 bool _charSelectRedraw;
174 int _updateBoxColorIndex;
175 const uint8 *_highLightColorTable;
176 uint32 _highLightBoxTimer;
178 const bool _textInputForceUppercase;
179 const int _textInputHeight;
180 const int _textInputShadowOffset;
182 const Screen::FontId _menuFont;
183 const Screen::FontId _menuFont2;
184 const int _dlgButtonHeight1;
185 const int _dlgButtonHeight2;
186 const int _dlgButtonLabelYOffs;
188 const EoBRect16 *_highlightFrames;
189 static const EoBRect16 _highlightFramesDefault[20];
190 static const EoBRect16 _highlightFramesTransferZH[6];
191 static const uint8 _highlightColorTableVGA[];
192 static const uint8 _highlightColorTableEGA[];
193 static const uint8 _highlightColorTableAmiga[];
194 static const uint8 _highlightColorTablePC98[];
195 static const uint8 _highlightColorTableSegaCD[];
198 virtual uint16 checkClickableCharactersSelection();
199 virtual void printClickableCharacters(
int page);
208 #endif // ENABLE_EOB || ENABLE_LOL
Definition: detection.h:27