aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/darkside/darkside_game.cpp
blob: 60cb69362af4b8e656bd64020a88cf9c19793b85 (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
/* 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.
 *
 */

#include "xeen/darkside/darkside_game.h"
#include "xeen/resources.h"
#include "xeen/screen.h"

namespace Xeen {

DarkSideEngine::DarkSideEngine(OSystem *syst, const XeenGameDescription *gameDesc)
		: XeenEngine(syst, gameDesc) {
}

void DarkSideEngine::playGame() {
	// TODO
}

bool DarkSideEngine::pause(uint amount) {
	while (!shouldQuit() && _events->timeElapsed() < amount) {
		_events->pollEventsAndWait();
		if (_events->isKeyMousePressed())
			return true;
	}

	return shouldQuit();
}

void DarkSideEngine::darkSideIntro() {
	/*
	showTitle1();
	if (shouldQuit())
		return;

	showTitle2();
	if (shouldQuit())
		return;
		*/
	// TODO: Only show startup if not seen before
	showStartSequence();
}

void DarkSideEngine::showTitle1() {
	// TODO: Starting method, and sound
	//sub_28F40
	_screen->loadPalette("dark.pal");
	SpriteResource nwc[4] = {
		SpriteResource("nwc1.int"), SpriteResource("nwc2.int"),
		SpriteResource("nwc3.int"), SpriteResource("nwc4.int")
	};
	File voc[3] = {
		File("dragon1.voc"), File("dragon2.voc"), File("dragon3.voc")
	};

	// Load backgrounds
	_screen->loadBackground("nwc1.raw");
	_screen->loadPage(0);
	_screen->loadBackground("nwc2.raw");
	_screen->loadPage(1);

	// Draw the screen and fade it in
	_screen->horizMerge(0);
	_screen->draw();
	_screen->fadeIn(4);

	// Initial loop for dragon roaring
	int nwcIndex = 0, nwcFrame = 0;
	for (int idx = 0; idx < 55 && !shouldQuit(); ++idx) {
		// Render the next frame
		_events->updateGameCounter();
		_screen->vertMerge(0);
		nwc[nwcIndex].draw(*_screen, nwcFrame);
		_screen->draw();

		switch (idx) {
		case 17:
			_sound->proc2(voc[0]);
			break;
		case 34:
		case 44:
			++nwcIndex;
			nwcFrame = 0;
			break;
		case 35:
			_sound->proc2(voc[1]);
			break;
		default:
			++nwcFrame;
		}

		if (pause(2))
			return;
	}

	// Loop for dragon using flyspray
	for (int idx = 0; idx < 42 && !shouldQuit(); ++idx) {
		_events->updateGameCounter();
		_screen->vertMerge(SCREEN_HEIGHT);
		nwc[3].draw(*_screen, idx);
		_screen->draw();

		switch (idx) {
		case 3:
			_sound->startMusic(40);
			break;
		case 11:
			_sound->startMusic(0);
		case 27:
		case 30:
			_sound->startMusic(3);
			break;
		case 31:
			_sound->proc2(voc[2]);
			break;
		case 33:
			_sound->startMusic(2);
			break;
		default:
			break;
		}

		if (pause(2))
			return;
	}

	// Pause for a bit
	pause(10);
}

void DarkSideEngine::showTitle2() {
	_screen->fadeOut(8);
	//TODO: Stuff

	_screen->loadBackground("jvc.raw");
	_screen->draw();
	_screen->fadeIn(4);
	
	_events->updateGameCounter();
	pause(60);
}
	
void DarkSideEngine::showStartSequence() {
	_screen->fadeOut(8);
	_screen->loadBackground("pyramid2.raw");
	_screen->loadPage(0);
	_screen->loadPage(1);
	_screen->loadBackground("pyramid3.raw");
	_screen->saveBackground(1);

	SpriteResource sprites[3] = {
		SpriteResource("title.int"), SpriteResource("pyratop.int"), SpriteResource("pyramid.int")
	};
	File voc[2] = {
		File("pharoh1a.voc"), File("pharoh1b.voc")
	};

	_screen->vertMerge(SCREEN_HEIGHT);
	_screen->loadPage(0);
	_screen->loadPage(1);

	int yp = 0;
	int frame = 0;
	int idx1 = 0;
	bool skipElapsed = false;
	uint32 timeExpired = 0;
//	bool fadeFlag = true;

	for (int idx = 200; idx > 0; ) {
		_events->updateGameCounter();
		_screen->vertMerge(yp);

		sprites[0].draw(*_screen, 0);
		if (frame)
			sprites[0].draw(*_screen, frame);

		idx1 = (idx1 + 1) % 4;
		if (!idx1)
			frame = (frame + 1) % 10;

		_screen->draw();
		if (!skipElapsed) {
			timeExpired = MAX(_events->timeElapsed(), (uint32)1);
			skipElapsed = true;
		}

		idx -= timeExpired;
		frame = MIN(frame + timeExpired, (uint)200);

		while (_events->timeElapsed() < 1) {
			_events->pollEventsAndWait();
			if (_events->isKeyMousePressed())
				return;
		}
	}

	_screen->vertMerge(SCREEN_HEIGHT);
	_screen->saveBackground(1);
	_screen->draw();
	_screen->freePages();

	_events->updateGameCounter();
	pause(30);

	// TODO: More
	_sound->playSong(voc[0]);
	_sound->playSong(voc[1]);
}

} // End of namespace Xeen