aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/gui_br.cpp
blob: 555110869307b294e2bc80b4c078c1aae6e6ea22 (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/* 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.
 *
 * $URL$
 * $Id$
 *
 */

#include "common/system.h"


#include "parallaction/input.h"
#include "parallaction/parallaction.h"

namespace Parallaction {

enum MenuOptions {
	kMenuPart0 = 0,
	kMenuPart1 = 1,
	kMenuPart2 = 2,
	kMenuPart3 = 3,
	kMenuPart4 = 4,
	kMenuLoadGame = 5,
	kMenuQuit = 6
};


void Parallaction_br::guiStart() {

	// TODO: load progress value from special save game
	_progress = 3;

	int option = guiShowMenu();
	switch (option) {
	case kMenuQuit:
		_engineFlags |= kEngineQuit;
		break;

	case kMenuLoadGame:
		warning("loadgame not yet implemented");
		break;

	default:
		_part = option;
		_disk->selectArchive(_partNames[_part]);
		startPart();
	}
}

void Parallaction_br::guiSplash(const char *name) {

	_gfx->clearScreen();
	_gfx->setBackground(kBackgroundSlide, name, 0, 0);
	_gfx->_backgroundInfo.x = (_screenWidth - _gfx->_backgroundInfo.width) >> 1;
	_gfx->_backgroundInfo.y = (_screenHeight - _gfx->_backgroundInfo.height) >> 1;
	_gfx->updateScreen();
	_system->delayMillis(600);

	Palette blackPal;
	Palette pal(_gfx->_backgroundInfo.palette);
	for (uint i = 0; i < 64; i++) {
		pal.fadeTo(blackPal, 1);
		_gfx->setPalette(pal);
		_gfx->updateScreen();
		_system->delayMillis(20);
	}

}

#define MENUITEMS_X			250
#define MENUITEMS_Y			200

#define MENUITEM_WIDTH		190
#define MENUITEM_HEIGHT		18

Frames* Parallaction_br::guiRenderMenuItem(const char *text) {
	// this builds a surface containing two copies of the text.
	// one is in normal color, the other is inverted.
	// the two 'frames' are used to display selected/unselected menu items

	Graphics::Surface *surf = new Graphics::Surface;
	surf->create(MENUITEM_WIDTH, MENUITEM_HEIGHT*2, 1);

	// build first frame to be displayed when item is not selected
	if (getPlatform() == Common::kPlatformPC) {
		_menuFont->setColor(0);
	} else {
		_menuFont->setColor(7);
	}
	_menuFont->drawString((byte*)surf->getBasePtr(5, 2), MENUITEM_WIDTH, text);

	// build second frame to be displayed when item is selected
	_menuFont->drawString((byte*)surf->getBasePtr(5, 2 + MENUITEM_HEIGHT), MENUITEM_WIDTH, text);
	byte *s = (byte*)surf->getBasePtr(0, MENUITEM_HEIGHT);
	for (int i = 0; i < surf->w * MENUITEM_HEIGHT; i++) {
		*s++ ^= 0xD;
	}

	// wrap the surface into the suitable Frames adapter
	return new SurfaceToMultiFrames(2, MENUITEM_WIDTH, MENUITEM_HEIGHT, surf);
}


int Parallaction_br::guiShowMenu() {
	// TODO: filter menu entries according to progress in game

	#define NUM_MENULINES	7
	GfxObj *_lines[NUM_MENULINES];

	const char *menuStrings[NUM_MENULINES] = {
		"SEE INTRO",
		"NEW GAME",
		"SAVED GAME",
		"EXIT TO DOS",
		"PART 2",
		"PART 3",
		"PART 4"
	};

	MenuOptions options[NUM_MENULINES] = {
		kMenuPart0,
		kMenuPart1,
		kMenuLoadGame,
		kMenuQuit,
		kMenuPart2,
		kMenuPart3,
		kMenuPart4
	};

	_gfx->clearScreen();
	_gfx->setBackground(kBackgroundSlide, "tbra", 0, 0);
	if (getPlatform() == Common::kPlatformPC) {
		_gfx->_backgroundInfo.x = 20;
		_gfx->_backgroundInfo.y = 50;
	}

	int availItems = 4 + _progress;

	// TODO: keep track of and destroy menu item frames/surfaces

	int i;
	for (i = 0; i < availItems; i++) {
		_lines[i] = new GfxObj(0, guiRenderMenuItem(menuStrings[i]), "MenuItem");
		uint id = _gfx->setItem(_lines[i], MENUITEMS_X, MENUITEMS_Y + MENUITEM_HEIGHT * i, 0xFF);
		_gfx->setItemFrame(id, 0);
	}

	int selectedItem = -1;

	setMousePointer(0);

	uint32 event;
	Common::Point p;
	while (true) {

		_input->readInput();

		event = _input->getLastButtonEvent();
		if ((event == kMouseLeftUp) && selectedItem >= 0)
			break;

		_input->getCursorPos(p);

		if ((p.x > MENUITEMS_X) && (p.x < (MENUITEMS_X+MENUITEM_WIDTH)) && (p.y > MENUITEMS_Y)) {
			selectedItem = (p.y - MENUITEMS_Y) / MENUITEM_HEIGHT;

			if (!(selectedItem < availItems))
				selectedItem = -1;
		} else
			selectedItem = -1;

		for (i = 0; i < availItems; i++) {
			_gfx->setItemFrame(i, selectedItem == i ? 1 : 0);
		}

		_gfx->updateScreen();
		_system->delayMillis(20);
	}

	_system->showMouse(false);
	_gfx->hideDialogueStuff();

	for (i = 0; i < availItems; i++) {
		delete _lines[i];
	}

	return options[selectedItem];
}

} // namespace Parallaction