diff options
Diffstat (limited to 'engines/xeen/worldofxeen')
-rw-r--r-- | engines/xeen/worldofxeen/clouds_ending.cpp | 36 | ||||
-rw-r--r-- | engines/xeen/worldofxeen/clouds_ending.h | 34 | ||||
-rw-r--r-- | engines/xeen/worldofxeen/clouds_intro.cpp | 36 | ||||
-rw-r--r-- | engines/xeen/worldofxeen/clouds_intro.h | 36 | ||||
-rw-r--r-- | engines/xeen/worldofxeen/darkside_ending.cpp | 32 | ||||
-rw-r--r-- | engines/xeen/worldofxeen/darkside_ending.h | 34 | ||||
-rw-r--r-- | engines/xeen/worldofxeen/darkside_intro.cpp | 2 |
7 files changed, 209 insertions, 1 deletions
diff --git a/engines/xeen/worldofxeen/clouds_ending.cpp b/engines/xeen/worldofxeen/clouds_ending.cpp new file mode 100644 index 0000000000..75c8755bb7 --- /dev/null +++ b/engines/xeen/worldofxeen/clouds_ending.cpp @@ -0,0 +1,36 @@ +/* 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/worldofxeen/clouds_ending.h" +#include "xeen/sound.h" + +namespace Xeen { + +bool showCloudsEnding(XeenEngine &vm) { + EventsManager &events = *vm._events; + Screen &screen = *vm._screen; + SoundManager &sound = *vm._sound; + + return true; +} + +} // End of namespace Xeen diff --git a/engines/xeen/worldofxeen/clouds_ending.h b/engines/xeen/worldofxeen/clouds_ending.h new file mode 100644 index 0000000000..fc7945f2a1 --- /dev/null +++ b/engines/xeen/worldofxeen/clouds_ending.h @@ -0,0 +1,34 @@ +/* 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. + * + */ + +#ifndef XEEN_CLOUDS_ENDING_H +#define XEEN_CLOUDS_ENDING_H + +#include "xeen/xeen.h" + +namespace Xeen { + +bool showCloudsEnding(XeenEngine &vm); + +} // End of namespace Xeen + +#endif /* XEEN_CLOUDS_ENDING_H */ diff --git a/engines/xeen/worldofxeen/clouds_intro.cpp b/engines/xeen/worldofxeen/clouds_intro.cpp new file mode 100644 index 0000000000..1ea6765761 --- /dev/null +++ b/engines/xeen/worldofxeen/clouds_intro.cpp @@ -0,0 +1,36 @@ +/* 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/worldofxeen/clouds_intro.h" +#include "xeen/sound.h" + +namespace Xeen { + +bool showCloudsTitle(XeenEngine &vm) { + return true; +} + +bool showCloudsIntro(XeenEngine &vm) { + return true; +} + +} // End of namespace Xeen diff --git a/engines/xeen/worldofxeen/clouds_intro.h b/engines/xeen/worldofxeen/clouds_intro.h new file mode 100644 index 0000000000..0bd5633315 --- /dev/null +++ b/engines/xeen/worldofxeen/clouds_intro.h @@ -0,0 +1,36 @@ +/* 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. + * + */ + +#ifndef XEEN_CLOUDS_INTRO_H +#define XEEN_CLOUDS_INTRO_H + +#include "xeen/xeen.h" + +namespace Xeen { + +bool showCloudsTitle(XeenEngine &vm); + +bool showCloudsIntro(XeenEngine &vm); + +} // End of namespace Xeen + +#endif /* XEEN_CLOUDS_INTRO_H */ diff --git a/engines/xeen/worldofxeen/darkside_ending.cpp b/engines/xeen/worldofxeen/darkside_ending.cpp new file mode 100644 index 0000000000..0a8211f55c --- /dev/null +++ b/engines/xeen/worldofxeen/darkside_ending.cpp @@ -0,0 +1,32 @@ +/* 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/worldofxeen/darkside_ending.h" +#include "xeen/sound.h" + +namespace Xeen { + +bool showDarkSideEnding(XeenEngine &vm) { + return true; +} + +} // End of namespace Xeen diff --git a/engines/xeen/worldofxeen/darkside_ending.h b/engines/xeen/worldofxeen/darkside_ending.h new file mode 100644 index 0000000000..49dcf2d40b --- /dev/null +++ b/engines/xeen/worldofxeen/darkside_ending.h @@ -0,0 +1,34 @@ +/* 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. + * + */ + +#ifndef XEEN_DARKSIDE_ENDING_H +#define XEEN_DARKSIDE_ENDING_H + +#include "xeen/xeen.h" + +namespace Xeen { + +bool showDarkSideEnding(XeenEngine &vm); + +} // End of namespace Xeen + +#endif /* XEEN_DARKSIDE_ENDING_H */ diff --git a/engines/xeen/worldofxeen/darkside_intro.cpp b/engines/xeen/worldofxeen/darkside_intro.cpp index 8148e249d0..7ea03286d3 100644 --- a/engines/xeen/worldofxeen/darkside_intro.cpp +++ b/engines/xeen/worldofxeen/darkside_intro.cpp @@ -20,7 +20,7 @@ * */ -#include "xeen/worldofxeen/worldofxeen_game.h" +#include "xeen/worldofxeen/darkside_intro.h" #include "xeen/sound.h" namespace Xeen { |