aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/gui_eob.h
blob: 82e9476fe09c31dfbff14d9253efe4022a713bf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* ScummVM - Graphic Adventure Engine
 *
 * ScummVM is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.

 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.

 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#if defined(ENABLE_EOB) || defined(ENABLE_LOL)

#ifndef KYRA_GUI_EOB_H
#define KYRA_GUI_EOB_H

#include "kyra/gui.h"

#ifdef ENABLE_EOB

namespace Kyra {

class DarkMoonEngine;
class Screen_Eob;

class GUI_Eob : public GUI {
	friend class EobCoreEngine;
	friend class CharacterGenerator;
public:
	GUI_Eob(EobCoreEngine *vm);

	void initStaticData() {}

	// button specific
	void processButton(Button *button);
	int processButtonList(Button *buttonList, uint16 inputFlags, int8 mouseWheel);

	int redrawShadedButtonCallback(Button *button) { return 0; }
	int redrawButtonCallback(Button *button) { return 0; }

	void setupMenu(int sd, int maxItem, const char *const *strings, int32 menuItemsMask, int unk, int lineSpacing);
	int handleMenu(int sd, const char *const *strings, void *b, int32 menuItemsMask, int unk);
	int getMenuItem(int index, int32 menuItemsMask, int unk);
	void menuFlashSelection(const char *str, int x, int y, int color1, int color2, int color3);

	int getTextInput(char *dest, int x, int y, int destMaxLen, int textColor1, int textColor2, int cursorColor);

	//int runMenu(Menu &menu);

	// utilities for thumbnail creation
	void createScreenThumbnail(Graphics::Surface &dst) {}

private:
	void initMenuItemsMask(int menuId, int maxItem, int32 menuItemsMask, int unk);

	//void backupPage0();
	//void restorePage0();

	//void setupSavegameNames(Menu &menu, int num);
	//void printMenuText(const char *str, int x, int y, uint8 c0, uint8 c1, uint8 flags);

	//int getMenuCenterStringX(const char *str, int x1, int x2);

	int getInput();

	Button *getButtonListData() { return _menuButtons; }
	Button *getScrollUpButton() { return &_scrollUpButton; }
	Button *getScrollDownButton() { return &_scrollDownButton; }

	Button::Callback getScrollUpButtonHandler() const { return _scrollUpFunctor; }
	Button::Callback getScrollDownButtonHandler() const { return _scrollDownFunctor; }

	uint8 defaultColor1() const { return 0xFE; }
	uint8 defaultColor2() const { return 0x00; }

	const char *getMenuTitle(const Menu &menu) { return 0; }
	const char *getMenuItemTitle(const MenuItem &menuItem) { return 0; }
	const char *getMenuItemLabel(const MenuItem &menuItem) { return 0; }

	Button _menuButtons[10];
	Button _scrollUpButton;
	Button _scrollDownButton;
	//Menu _mainMenu, _gameOptions, _audioOptions, _choiceMenu, _loadMenu, _saveMenu, _deleteMenu, _savenameMenu, _deathMenu;
	//Menu *_currentMenu, *_lastMenu, *_newMenu;
	//int _menuResult;
	//char *_saveDescription;

	EobCoreEngine *_vm;
	Screen_Eob *_screen;

	bool _pressFlag;

	Button *_specialProcessButton;
	Button *_backupButtonList;
	uint16 _flagsMouseLeft;
	uint16 _flagsMouseRight;
	uint16 _flagsModifier;
	uint16 _progress;
	uint16 _prcButtonUnk3; /// ALWAYS 1?? REMOVE ??
	uint16 _cflag;

	Button::Callback _scrollUpFunctor;
	Button::Callback _scrollDownFunctor;

	int _menuLineSpacing;
	int _menuUnk1;
	int _menuLastInFlags;

	int _menuCur;
	int _menuNumItems;
};

}	// End of namespace Kyra

#endif // ENABLE_EOB

#endif

#endif // ENABLE_EOB || ENABLE_LOL