2007-05-30 21:56:52 +00:00
|
|
|
/* 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.
|
2003-07-17 00:17:42 +00:00
|
|
|
*
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-07-17 00:17:42 +00:00
|
|
|
*
|
2006-02-11 10:03:24 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2003-07-17 00:17:42 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-02-20 17:52:55 +00:00
|
|
|
#ifndef SKY_INTRO_H
|
|
|
|
#define SKY_INTRO_H
|
2003-07-17 00:17:42 +00:00
|
|
|
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2003-10-05 20:21:20 +00:00
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "sound/mixer.h"
|
|
|
|
|
2004-01-03 01:58:58 +00:00
|
|
|
namespace Sky {
|
|
|
|
|
2004-01-03 15:57:57 +00:00
|
|
|
class Disk;
|
|
|
|
class Screen;
|
|
|
|
class MusicBase;
|
|
|
|
class Sound;
|
|
|
|
class Text;
|
2003-07-17 00:17:42 +00:00
|
|
|
|
2004-01-03 15:57:57 +00:00
|
|
|
class Intro {
|
2003-07-17 00:17:42 +00:00
|
|
|
public:
|
2005-05-10 23:48:48 +00:00
|
|
|
Intro(Disk *disk, Screen *screen, MusicBase *music, Sound *sound, Text *text, Audio::Mixer *mixer, OSystem *system);
|
2004-01-03 15:57:57 +00:00
|
|
|
~Intro(void);
|
2003-07-17 00:17:42 +00:00
|
|
|
bool doIntro(bool floppyIntro);
|
|
|
|
private:
|
|
|
|
static uint16 _mainIntroSeq[];
|
|
|
|
static uint16 _floppyIntroSeq[];
|
|
|
|
static uint16 _cdIntroSeq[];
|
|
|
|
|
2004-01-03 15:57:57 +00:00
|
|
|
Disk *_skyDisk;
|
|
|
|
Screen *_skyScreen;
|
|
|
|
MusicBase *_skyMusic;
|
|
|
|
Sound *_skySound;
|
|
|
|
Text *_skyText;
|
2003-07-17 00:17:42 +00:00
|
|
|
OSystem *_system;
|
2005-05-10 23:48:48 +00:00
|
|
|
Audio::Mixer *_mixer;
|
2003-07-17 00:17:42 +00:00
|
|
|
|
|
|
|
uint8 *_textBuf, *_saveBuf;
|
|
|
|
uint8 *_bgBuf;
|
|
|
|
uint32 _bgSize;
|
2005-05-11 00:01:44 +00:00
|
|
|
Audio::SoundHandle _voice, _bgSfx;
|
2003-07-17 00:17:42 +00:00
|
|
|
|
2004-10-25 00:27:53 +00:00
|
|
|
int32 _relDelay;
|
|
|
|
|
2003-07-17 00:17:42 +00:00
|
|
|
bool escDelay(uint32 msecs);
|
|
|
|
bool nextPart(uint16 *&data);
|
|
|
|
bool floppyScrollFlirt(void);
|
|
|
|
bool commandFlirt(uint16 *&data);
|
|
|
|
void showTextBuf(void);
|
|
|
|
void restoreScreen(void);
|
|
|
|
};
|
|
|
|
|
2004-01-03 01:58:58 +00:00
|
|
|
} // End of namespace Sky
|
2003-07-17 00:17:42 +00:00
|
|
|
|
2004-01-03 01:58:58 +00:00
|
|
|
#endif // INTRO_H
|