diff options
author | Paul Gilbert | 2014-08-05 23:23:49 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-08-05 23:23:49 -0400 |
commit | 8e43a6c5280e2b695753d4a0b6810811f1bd393f (patch) | |
tree | d4cd7a9228e65fb53f9d3ca4d5393ebefcb22cfa /engines/access/amazon | |
parent | 7d605ce57316c86a247cf978e6b123b23045659c (diff) | |
download | scummvm-rg350-8e43a6c5280e2b695753d4a0b6810811f1bd393f.tar.gz scummvm-rg350-8e43a6c5280e2b695753d4a0b6810811f1bd393f.tar.bz2 scummvm-rg350-8e43a6c5280e2b695753d4a0b6810811f1bd393f.zip |
ACCESS: Add scripts classes and Amazon room setup
Diffstat (limited to 'engines/access/amazon')
-rw-r--r-- | engines/access/amazon/amazon_game.cpp | 9 | ||||
-rw-r--r-- | engines/access/amazon/amazon_room.cpp | 121 | ||||
-rw-r--r-- | engines/access/amazon/amazon_room.h | 54 | ||||
-rw-r--r-- | engines/access/amazon/amazon_scripts.cpp | 36 | ||||
-rw-r--r-- | engines/access/amazon/amazon_scripts.h | 42 |
5 files changed, 261 insertions, 1 deletions
diff --git a/engines/access/amazon/amazon_game.cpp b/engines/access/amazon/amazon_game.cpp index 8cbd0767b2..ffe4cb56f1 100644 --- a/engines/access/amazon/amazon_game.cpp +++ b/engines/access/amazon/amazon_game.cpp @@ -20,8 +20,10 @@ * */ -#include "access/amazon/amazon_game.h" #include "access/resources.h" +#include "access/amazon/amazon_game.h" +#include "access/amazon/amazon_room.h" +#include "access/amazon/amazon_scripts.h" namespace Access { @@ -50,6 +52,7 @@ AmazonEngine::~AmazonEngine() { } void AmazonEngine::playGame() { + // Do introduction doIntroduction(); if (shouldQuit()) return; @@ -62,6 +65,10 @@ void AmazonEngine::playGame() { _screen->forceFadeOut(); _events->showCursor(); + + // Setup and execute the room + _room = new AmazonRoom(this); + _scripts = new AmazonScripts(this); _room->doRoom(); } diff --git a/engines/access/amazon/amazon_room.cpp b/engines/access/amazon/amazon_room.cpp new file mode 100644 index 0000000000..ce0683f124 --- /dev/null +++ b/engines/access/amazon/amazon_room.cpp @@ -0,0 +1,121 @@ +/* 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 "common/scummsys.h" +#include "access/access.h" +#include "access/amazon/amazon_room.h" + +namespace Access { + +namespace Amazon { + +AmazonRoom::AmazonRoom(AccessEngine *vm): Room(vm) { + _antOutFlag = false; +} + +void AmazonRoom::reloadRoom() { + loadRoom(_vm->_roomNumber); + + if (_roomFlag != 1) { + _vm->_currentMan = _roomFlag; + _vm->_currentManOld = _roomFlag; + _vm->_manScaleOff = 0; + + switch (_vm->_currentMan) { + case 0: + _vm->_man1 = _vm->_files->loadFile("MAN.LZ"); + break; + + case 2: + _vm->_man1 = _vm->_files->loadFile("JMAN.LZ"); + break; + + case 3: + _vm->_man1 = _vm->_files->loadFile("OVERHEAD.LZ"); + _vm->_manScaleOff = 1; + break; + + default: + break; + } + } + + reloadRoom1(); +} + +void AmazonRoom::reloadRoom1() { + if (_vm->_roomNumber == 22 || _vm->_roomNumber == 31 + || _vm->_roomNumber == 42 || _vm->_roomNumber == 44) { + _vm->_inactive = _vm->_files->loadFile("MAYA.LZ"); + _vm->_currentCharFlag = false; + } + + _vm->_selectCommand = -1; + _vm->_normalMouse = 1; + _vm->_mouseMode = 0; + _vm->_boxSelect = true; + _vm->_player->_playerOff = 0; + + _vm->_screen->fadeOut(); + _vm->_screen->clearScreen(); + roomSet(); + + if (!_roomFlag && (_vm->_roomNumber != 61 || !_antOutFlag)) { + _vm->_player->load(); + _vm->_player->calcManScale(); + } + + if (_vm->_roomNumber != 20 && _vm->_roomNumber != 24 + && _vm->_roomNumber != 33 && _vm->_roomNumber != 45) { + roomMenu(); + } + + _vm->_screen->setBufferScan(); + setupRoom(); + setWallCodes(); + buildScreen(); + + if (_vm->_roomNumber != 20 && _vm->_roomNumber != 24 + && _vm->_roomNumber != 33) { + _vm->_screen->setPalette(); + _vm->_screen->copyBF2Vid(); + } + + _vm->_player->_frame = 0; + _vm->_oldRect.clear(); + _vm->_newRect.clear(); +} + +void AmazonRoom::roomSet() { + _vm->_numAnimTimers = 0; + _vm->_scripts->_sequence = 1000; + _vm->_scripts->searchForSeq(); + _vm->_scripts->executeCommand(); +} + +void AmazonRoom::roomMenu() { + // TODO +} + +} // End of namespace Amazon + +} // End of namespace Access diff --git a/engines/access/amazon/amazon_room.h b/engines/access/amazon/amazon_room.h new file mode 100644 index 0000000000..6d13a4e52c --- /dev/null +++ b/engines/access/amazon/amazon_room.h @@ -0,0 +1,54 @@ +/* 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 ACCESS_AMAZON_ROOM_H +#define ACCESS_AMAZON_ROOM_H + +#include "common/scummsys.h" +#include "access/room.h" + +namespace Access { + +class AccessEngine; + +namespace Amazon { + +class AmazonRoom : public Room { +private: + bool _antOutFlag; + + void roomSet(); + + void roomMenu(); +protected: + virtual void reloadRoom(); + + virtual void reloadRoom1(); +public: + AmazonRoom(AccessEngine *vm); +}; + +} // End of namespace Amazon + +} // End of namespace Access + +#endif /* ACCESS_AMAZON_ROOM_H */ diff --git a/engines/access/amazon/amazon_scripts.cpp b/engines/access/amazon/amazon_scripts.cpp new file mode 100644 index 0000000000..1d3e7b4b76 --- /dev/null +++ b/engines/access/amazon/amazon_scripts.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 "common/scummsys.h" +#include "access/access.h" +#include "access/amazon/amazon_scripts.h" + +namespace Access { + +namespace Amazon { + +AmazonScripts::AmazonScripts(AccessEngine *vm) : Scripts(vm) { +} + +} // End of namespace Amazon + +} // End of namespace Access diff --git a/engines/access/amazon/amazon_scripts.h b/engines/access/amazon/amazon_scripts.h new file mode 100644 index 0000000000..08fbc3a0f2 --- /dev/null +++ b/engines/access/amazon/amazon_scripts.h @@ -0,0 +1,42 @@ +/* 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 ACCESS_AMAZON_SCRIPTS_H +#define ACCESS_AMAZON_SCRIPTS_H + +#include "common/scummsys.h" +#include "access/scripts.h" + +namespace Access { + +namespace Amazon { + +class AmazonScripts: public Scripts { +public: + AmazonScripts(AccessEngine *vm); +}; + +} // End of namespace Amazon + +} // End of namespace Access + +#endif /* ACCESS_AMAZON_SCRIPTS_H */ |