aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/gui_ns.cpp
blob: 6068a6a0ddd91b4ab3351ecccdc5ee60e79a88b3 (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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
/* 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"
#include "parallaction/sound.h"


namespace Parallaction {

const char *introMsg1[] = {
	"INSERISCI IL CODICE",
	"ENTREZ CODE",
	"ENTER CODE",
	"GIB DEN KODE EIN"
};

const char *introMsg2[] = {
	"CODICE ERRATO",
	"CODE ERRONE",
	"WRONG CODE",
	"GIB DEN KODE EIN"
};

const char *introMsg3[] = {
	"PRESS LEFT MOUSE BUTTON",
	"TO SEE INTRO",
	"PRESS RIGHT MOUSE BUTTON",
	"TO START"
};

const char *newGameMsg[] = {
	"NUOVO GIOCO",
	"NEUF JEU",
	"NEW GAME",
	"NEUES SPIEL"
};

const char *loadGameMsg[] = {
	"GIOCO SALVATO",
	"JEU SAUVE'",
	"SAVED GAME",
	"SPIEL GESPEICHERT"
};


#define BLOCK_WIDTH		16
#define BLOCK_HEIGHT	24

#define BLOCK_X			112
#define BLOCK_Y			130

#define BLOCK_SELECTION_X		  (BLOCK_X-1)
#define BLOCK_SELECTION_Y		  (BLOCK_Y-1)

#define BLOCK_X_OFFSET	(BLOCK_WIDTH+1)
#define BLOCK_Y_OFFSET	9

//	destination slots for code blocks
//
#define SLOT_X			61
#define SLOT_Y			64
#define SLOT_WIDTH		(BLOCK_WIDTH+2)

#define PASSWORD_LEN	6

#define CHAR_DINO	0
#define CHAR_DONNA	1
#define CHAR_DOUGH	2

static const uint16 _amigaKeys[][PASSWORD_LEN] = {
	{ 5, 3, 6, 2, 2, 7 },		// dino
	{ 0, 3, 6, 2, 2, 6 },		// donna
	{ 1, 3 ,7, 2, 4, 6 }		// dough
};

static const uint16 _pcKeys[][PASSWORD_LEN] = {
	{ 5, 3, 6, 1, 4, 7 },		// dino
	{ 0, 2, 8, 5, 5, 1 },		// donna
	{ 1, 7 ,7, 2, 2, 6 }		// dough
};

static const char *_charStartLocation[] = {
	"test.dino",
	"test.donna",
	"test.dough"
};

enum {
	NEW_GAME,
	LOAD_GAME
};

enum {
	START_DEMO,
	START_INTRO,
	GAME_LOADED,
	SELECT_CHARACTER
};

void Parallaction_ns::guiStart() {

	_disk->selectArchive((getFeatures() & GF_DEMO) ? "disk0" : "disk1");

	guiSplash();

	_language = guiChooseLanguage();
	_disk->setLanguage(_language);

	int event;

	if (getFeatures() & GF_DEMO) {
		event = START_DEMO;
	} else {
		if (guiSelectGame() == NEW_GAME) {
			event = guiNewGame();
		} else {
			event = loadGame() ? GAME_LOADED : START_INTRO;
		}
	}

	switch (event) {
	case START_DEMO:
		strcpy(_location._name, "fognedemo.dough");
		break;

	case START_INTRO:
		strcpy(_location._name, "fogne.dough");
		break;

	case GAME_LOADED:
		// nothing to do here
		return;

	case SELECT_CHARACTER:
		selectStartLocation();
		break;

	}

	return;
}

void Parallaction_ns::selectStartLocation() {
	_inTestResult = false;

	int character = guiSelectCharacter();
	if (character == -1)
		error("invalid character selected from menu screen");

	scheduleLocationSwitch(_charStartLocation[character]);
}


void Parallaction_ns::guiSplash() {

	showSlide("intro");
	_gfx->updateScreen();
	g_system->delayMillis(2000);
	freeBackground();

	showSlide("minintro");
	_gfx->updateScreen();
	g_system->delayMillis(2000);
	freeBackground();
}

int Parallaction_ns::guiNewGame() {

	const char **v14 = introMsg3;

	_disk->selectArchive("disk1");

	setBackground("test", NULL, NULL);

	_gfx->updateScreen();

	uint id[4];
	id[0] = _gfx->createLabel(_menuFont, v14[0], 1);
	id[1] = _gfx->createLabel(_menuFont, v14[1], 1);
	id[2] = _gfx->createLabel(_menuFont, v14[2], 1);
	id[3] = _gfx->createLabel(_menuFont, v14[3], 1);
	_gfx->showLabel(id[0], CENTER_LABEL_HORIZONTAL, 50);
	_gfx->showLabel(id[1], CENTER_LABEL_HORIZONTAL, 70);
	_gfx->showLabel(id[2], CENTER_LABEL_HORIZONTAL, 100);
	_gfx->showLabel(id[3], CENTER_LABEL_HORIZONTAL, 120);

	_input->showCursor(false);

	_gfx->updateScreen();

	_input->waitForButtonEvent(kMouseLeftUp | kMouseRightUp);
	uint32 event = _input->getLastButtonEvent();

	_input->showCursor(true);

	_gfx->freeLabels();

	if (event != kMouseRightUp) {
		return START_INTRO;
	}

	return SELECT_CHARACTER;
}

static const Common::Rect _dosLanguageSelectBlocks[4] = {
	Common::Rect(  80, 110, 128, 180 ),	// Italian
	Common::Rect( 129,  85, 177, 155 ),	// French
	Common::Rect( 178,  60, 226, 130 ),	// English
	Common::Rect( 227,  35, 275, 105 )	// German
};

static const Common::Rect _amigaLanguageSelectBlocks[4] = {
	Common::Rect(  -1,  -1,  -1,  -1 ),	// Italian: not supported by Amiga multi-lingual version
	Common::Rect( 129,  85, 177, 155 ),	// French
	Common::Rect( 178,  60, 226, 130 ),	// English
	Common::Rect( 227,  35, 275, 105 )	// German
};


uint16 Parallaction_ns::guiChooseLanguage() {

	const Common::Rect *blocks;

	if (getPlatform() == Common::kPlatformAmiga) {
		if (!(getFeatures() & GF_LANG_MULT)) {
			if (getFeatures() & GF_DEMO) {
				return 1;		// Amiga Demo supports English
			} else {
				return 0;		// The only other non multi-lingual version just supports Italian
			}
		}

		blocks = _amigaLanguageSelectBlocks;
	} else {
		blocks = _dosLanguageSelectBlocks;
	}

	// user can choose language in dos version
	showSlide("lingua");

	uint id = _gfx->createLabel(_introFont, "SELECT LANGUAGE", 1);
	_gfx->showLabel(id, 60, 30);

	setArrowCursor();

	Common::Point p;

	int selection = -1;
	int event;
	while (selection == -1) {
		_input->readInput();
		event = _input->getLastButtonEvent();

		if (event == kMouseLeftUp) {
			_input->getCursorPos(p);
			for (uint16 i = 0; i < 4; i++) {
				if (blocks[i].contains(p)) {
					selection = i;
					break;
				}
			}
		}

		_gfx->updateScreen();
	}

	beep();

	_gfx->freeLabels();

	return selection;
}



uint16 Parallaction_ns::guiSelectGame() {
//	  printf("selectGame()\n");

	showSlide("restore");

	uint16 _si = 0;
	uint16 _di = 3;

	uint id0, id1;
	id0 = _gfx->createLabel(_introFont, loadGameMsg[_language], 1);
	id1 = _gfx->createLabel(_introFont, newGameMsg[_language], 1);

	Common::Point p;

	uint32 event = kMouseNone;
	while (event != kMouseLeftUp) {

		_input->readInput();
		_input->getCursorPos(p);
		event = _input->getLastButtonEvent();

		_si = (p.x > 160) ? 1 : 0;

		if (_si != _di) {
			if (_si != 0) {
				// load a game
				_gfx->hideLabel(id1);
				_gfx->showLabel(id0, 60, 30);
			} else {
				// new game
				_gfx->hideLabel(id0);
				_gfx->showLabel(id1, 60, 30);
			}
			_di = _si;
		}

		_gfx->updateScreen();
		g_system->delayMillis(30);
	}

	_gfx->freeLabels();

	return _si ? LOAD_GAME : NEW_GAME;
}

static const Common::Rect codeSelectBlocks[9] = {
	Common::Rect( 111, 129, 127, 153 ),		// na
	Common::Rect( 128, 120, 144, 144 ),		// wa
	Common::Rect( 145, 111, 161, 135 ),		// ra
	Common::Rect( 162, 102, 178, 126 ),		// ri
	Common::Rect( 179, 93, 195, 117 ),		// i
	Common::Rect( 196, 84, 212, 108 ),		// ne
	Common::Rect( 213, 75, 229, 99 ),		// ho
	Common::Rect( 230, 66, 246, 90 ),		// ki
	Common::Rect( 247, 57, 263, 81 )		// ka
};

static const Common::Rect codeTrueBlocks[9] = {
	Common::Rect( 112, 130, 128, 154 ),
	Common::Rect( 129, 121, 145, 145 ),
	Common::Rect( 146, 112, 162, 136 ),
	Common::Rect( 163, 103, 179, 127 ),
	Common::Rect( 180, 94, 196, 118 ),
	Common::Rect( 197, 85, 213, 109 ),
	Common::Rect( 214, 76, 230, 100 ),
	Common::Rect( 231, 67, 247, 91 ),
	Common::Rect( 248, 58, 264, 82 )
};


int Parallaction_ns::guiGetSelectedBlock(const Common::Point &p) {

	int selection = -1;

	for (uint16 i = 0; i < 9; i++) {
		if (codeSelectBlocks[i].contains(p)) {
			selection = i;
			break;
		}
	}

	if ((selection != -1) && (getPlatform() == Common::kPlatformAmiga)) {
		_gfx->invertBackground(codeTrueBlocks[selection]);
		_gfx->updateScreen();
		beep();
		g_system->delayMillis(100);
		_gfx->invertBackground(codeTrueBlocks[selection]);
		_gfx->updateScreen();
	}

	return selection;
}


//
//	character selection and protection
//
int Parallaction_ns::guiSelectCharacter() {
	debugC(1, kDebugMenu, "Parallaction_ns::guiselectCharacter()");

	setArrowCursor();
	_soundMan->stopMusic();

	_disk->selectArchive((getFeatures() & GF_DEMO) ? "disk0" : "disk1");

	showSlide("password");


	const uint16 (*keys)[PASSWORD_LEN] = (getPlatform() == Common::kPlatformAmiga && (getFeatures() & GF_LANG_MULT)) ? _amigaKeys : _pcKeys;
	uint16 _di = 0;
	byte points[3] = { 0, 0, 0 };

	bool fail;

	uint id[2];
	id[0] = _gfx->createLabel(_introFont, introMsg1[_language], 1);
	id[1] = _gfx->createLabel(_introFont, introMsg2[_language], 1);

	Graphics::Surface v14;
	v14.create(BLOCK_WIDTH * 8, BLOCK_HEIGHT, 1);
	Common::Rect rect(SLOT_X, SLOT_Y, SLOT_X + BLOCK_WIDTH * 8, SLOT_Y + BLOCK_HEIGHT);
	_gfx->grabBackground(rect, v14);

	Graphics::Surface block;
	block.create(BLOCK_WIDTH, BLOCK_HEIGHT, 1);

	Common::Point p;

	while (true) {

		points[0] = 0;
		points[1] = 0;
		points[2] = 0;
		fail = false;

		_gfx->hideLabel(id[1]);
		_gfx->showLabel(id[0], 60, 30);

		_di = 0;
		int event;
		while (_di < PASSWORD_LEN) {
			_input->readInput();
			event = _input->getLastButtonEvent();
			if (event == kMouseLeftUp) {

				_input->getCursorPos(p);

				int _si = guiGetSelectedBlock(p);

				if (_si != -1) {
					_gfx->grabBackground(codeTrueBlocks[_si], block);
					_gfx->patchBackground(block, _di * SLOT_WIDTH + SLOT_X, SLOT_Y, false);

					if (keys[0][_di] == _si) {
						points[0]++;
					} else
					if (keys[1][_di] == _si) {
						points[1]++;
					} else
					if (keys[2][_di] == _si) {
						points[2]++;
					} else {
						fail = true;
					}

					// build user preference
					points[0] += (keys[0][_di] == _si);
					points[1] += (keys[1][_di] == _si);
					points[2] += (keys[2][_di] == _si);

					_di++;
				}
			}
			_gfx->updateScreen();
		}

		if (!fail) {
			break;
		}

		_gfx->patchBackground(v14, SLOT_X, SLOT_Y, false);

		_gfx->hideLabel(id[0]);
		_gfx->showLabel(id[1], 60, 30);

		_gfx->updateScreen();

		g_system->delayMillis(2000);
	}

	_gfx->freeLabels();

	_gfx->setBlackPalette();
	_gfx->updateScreen();

	v14.free();


	// actually select character

	int character = -1;
	if (points[0] >= points[1] && points[0] >= points[2]) {
		character = CHAR_DINO;
	} else
	if (points[1] >= points[0] && points[1] >= points[2]) {
		character = CHAR_DONNA;
	} else
	if (points[2] >= points[0] && points[2] >= points[1]) {
		character = CHAR_DOUGH;
	} else {
		error("If you read this, either your CPU or transivity is broken (we believe the former).");
	}

	return character;
}


} // namespace Parallaction