2008-12-21 23:43:12 +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.
|
|
|
|
*
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-01-02 16:52:38 +00:00
|
|
|
#ifdef ENABLE_SAGA2
|
|
|
|
|
2008-12-21 23:43:12 +00:00
|
|
|
// "Faery Tale Adventure II: Halls of the Dead" Intro sequence scene procedures
|
|
|
|
|
|
|
|
#include "saga/saga.h"
|
|
|
|
#include "saga/scene.h"
|
2008-12-22 11:26:29 +00:00
|
|
|
#include "saga/gfx.h"
|
2008-12-21 23:43:12 +00:00
|
|
|
|
|
|
|
#include "sound/mixer.h"
|
2008-12-22 11:26:29 +00:00
|
|
|
#include "graphics/surface.h"
|
2008-12-21 23:43:12 +00:00
|
|
|
#include "graphics/video/smk_player.h"
|
|
|
|
|
2008-12-22 11:26:29 +00:00
|
|
|
#include "common/events.h"
|
|
|
|
#include "common/system.h"
|
2009-01-07 21:19:00 +00:00
|
|
|
#include "common/list.h"
|
2008-12-22 11:26:29 +00:00
|
|
|
|
2008-12-21 23:43:12 +00:00
|
|
|
namespace Saga {
|
|
|
|
|
2009-01-07 21:19:00 +00:00
|
|
|
Common::List<Common::Event> stopEvents;
|
2008-12-21 23:43:12 +00:00
|
|
|
|
|
|
|
int Scene::FTA2StartProc() {
|
2008-12-22 11:26:29 +00:00
|
|
|
_vm->_gfx->showCursor(false);
|
|
|
|
|
2009-01-07 21:19:00 +00:00
|
|
|
Common::Event stopEvent;
|
|
|
|
stopEvents.clear();
|
|
|
|
stopEvent.type = Common::EVENT_KEYDOWN;
|
|
|
|
stopEvent.kbd = Common::KEYCODE_ESCAPE;
|
|
|
|
stopEvents.push_back(stopEvent);
|
|
|
|
|
|
|
|
Graphics::SMKPlayer *smkPlayer = new Graphics::SMKPlayer(_vm->_mixer);
|
|
|
|
smkPlayer->playVideo("trimark.smk", &stopEvents); // Show Ignite logo
|
|
|
|
smkPlayer->playVideo("intro.smk", &stopEvents); // Play introduction
|
2008-12-21 23:43:12 +00:00
|
|
|
delete smkPlayer;
|
|
|
|
|
2008-12-22 11:26:29 +00:00
|
|
|
// HACK: Forcibly quit here
|
2008-12-21 23:43:12 +00:00
|
|
|
_vm->quitGame();
|
|
|
|
|
2008-12-22 11:26:29 +00:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Scene::FTA2EndProc(FTA2Endings whichEnding) {
|
|
|
|
char videoName[20];
|
|
|
|
|
|
|
|
switch (whichEnding) {
|
2009-01-06 15:47:58 +00:00
|
|
|
case kFta2BadEndingLaw:
|
|
|
|
strcpy(videoName, "end_1.smk");
|
|
|
|
break;
|
|
|
|
case kFta2BadEndingChaos:
|
|
|
|
strcpy(videoName, "end_2.smk");
|
|
|
|
break;
|
|
|
|
case kFta2GoodEnding1:
|
|
|
|
strcpy(videoName, "end_3a.smk");
|
|
|
|
break;
|
|
|
|
case kFta2GoodEnding2:
|
|
|
|
strcpy(videoName, "end_3b.smk");
|
|
|
|
break;
|
|
|
|
case kFta2BadEndingDeath:
|
|
|
|
strcpy(videoName, "end_4.smk");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("Unknown FTA2 ending");
|
2008-12-22 11:26:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_vm->_gfx->showCursor(false);
|
|
|
|
|
2009-01-07 21:19:00 +00:00
|
|
|
|
|
|
|
Common::Event stopEvent;
|
|
|
|
stopEvents.clear();
|
|
|
|
stopEvent.type = Common::EVENT_KEYDOWN;
|
|
|
|
stopEvent.kbd = Common::KEYCODE_ESCAPE;
|
|
|
|
stopEvents.push_back(stopEvent);
|
|
|
|
|
2008-12-22 11:49:49 +00:00
|
|
|
// Play ending
|
2009-01-07 21:19:00 +00:00
|
|
|
Graphics::SMKPlayer *smkPlayer = new Graphics::SMKPlayer(_vm->_mixer);
|
|
|
|
smkPlayer->playVideo(videoName, &stopEvents);
|
2008-12-22 11:26:29 +00:00
|
|
|
delete smkPlayer;
|
|
|
|
|
|
|
|
return SUCCESS;
|
2008-12-21 23:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Saga
|
2009-01-02 16:52:38 +00:00
|
|
|
|
|
|
|
#endif
|