/* 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$ * */ #ifndef SCI_INCLUDE_ENGINE_H #define SCI_INCLUDE_ENGINE_H #include "common/scummsys.h" #include "common/array.h" #include "common/serializer.h" #include "common/str-array.h" namespace Common { class SeekableReadStream; class WriteStream; } #include "sci/sci.h" #include "sci/engine/seg_manager.h" #include "sci/parser/vocabulary.h" #include "sci/sound/soundcmd.h" namespace Sci { class EventManager; class MessageState; class SoundCommandParser; enum AbortGameState { kAbortNone = 0, kAbortLoadGame = 1, kAbortRestartGame = 2, kAbortQuitGame = 3 }; class DirSeeker { protected: reg_t _outbuffer; Common::StringArray _savefiles; Common::StringArray::const_iterator _iter; public: DirSeeker() { _outbuffer = NULL_REG; _iter = _savefiles.begin(); } reg_t firstFile(const Common::String &mask, reg_t buffer, SegManager *segMan); reg_t nextFile(SegManager *segMan); }; enum { MAX_SAVE_DIR_SIZE = MAXPATHLEN }; enum { MAX_SAVEGAME_NR = 20 /**< Maximum number of savegames */ }; // We assume that scripts give us savegameId 0->999 for creating a new save slot // and savegameId 1000->1999 for existing save slots ffs. kfile.cpp enum { SAVEGAMEID_OFFICIALRANGE_START = 1000, SAVEGAMEID_OFFICIALRANGE_END = 1999 }; class FileHandle { public: Common::String _name; Common::SeekableReadStream *_in; Common::WriteStream *_out; public: FileHandle(); ~FileHandle(); void close(); bool isOpen() const; }; struct EngineState : public Common::Serializable { public: EngineState(SegManager *segMan); virtual ~EngineState(); virtual void saveLoadWithSerializer(Common::Serializer &ser); public: SegManager *_segMan; /**< The segment manager */ /* Non-VM information */ uint32 gameStartTime; /**< The time at which the interpreter was started */ uint32 lastWaitTime; /**< The last time the game invoked Wait() */ uint32 _screenUpdateTime; /**< The last time the game updated the screen */ void speedThrottler(uint32 neededSleep); void wait(int16 ticks); uint32 _throttleCounter; /**< total times kAnimate was invoked */ uint32 _throttleLastTime; /**< last time kAnimate was invoked */ bool _throttleTrigger; /* Kernel File IO stuff */ Common::Array _fileHandles; /**< Array of file handles. Dynamically increased if required. */ DirSeeker _dirseeker; uint _lastSaveVirtualId; // last virtual id fed to kSaveGame, if no kGetSaveFiles was called inbetween uint _lastSaveNewId; // last newly created filename-id by kSaveGame public: /* VM Information */ Common::List _executionStack; /**< The execution stack */ /** * When called from kernel functions, the vm is re-started recursively on * the same stack. This variable contains the stack base for the current vm. */ int executionStackBase; bool _executionStackPosChanged; /**< Set to true if the execution stack position should be re-evaluated by the vm */ reg_t r_acc; /**< Accumulator */ int16 restAdjust; /**< current &rest register */ reg_t r_prev; /**< previous comparison result */ StackPtr stack_base; /**< Pointer to the least stack element */ StackPtr stack_top; /**< First invalid stack element */ // Script state ExecStack *xs; reg_t *variables[4]; ///< global, local, temp, param, as immediate pointers reg_t *variablesBase[4]; ///< Used for referencing VM ops SegmentId variablesSegment[4]; ///< Same as above, contains segment IDs int variablesMax[4]; ///< Max. values for all variables AbortGameState abortScriptProcessing; bool gameWasRestarted; int scriptStepCounter; // Counts the number of steps executed int scriptGCInterval; // Number of steps in between gcs uint16 currentRoomNumber() const; void setRoomNumber(uint16 roomNumber); /** * Sets global variables from script 0 */ void initGlobals(); /** * Shrink execution stack to size. * Contains an assert if it is not already smaller. */ void shrinkStackToBase(); int gcCountDown; /**< Number of kernel calls until next gc */ public: MessageState *_msgState; // MemorySegment provides access to a 256-byte block of memory that remains // intact across restarts and restores enum { kMemorySegmentMax = 256 }; uint _memorySegmentSize; byte _memorySegment[kMemorySegmentMax]; /** * Resets the engine state. */ void reset(bool isRestoring); }; } // End of namespace Sci #endif // SCI_INCLUDE_ENGINE_H