2009-02-17 15:05:16 +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-02-15 06:10:59 +00:00
|
|
|
|
2009-02-24 15:33:40 +00:00
|
|
|
#ifndef SCI_INCLUDE_ENGINE_H
|
|
|
|
#define SCI_INCLUDE_ENGINE_H
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-15 23:39:31 +00:00
|
|
|
#include "common/scummsys.h"
|
2009-02-22 21:38:46 +00:00
|
|
|
#include "common/array.h"
|
2009-03-15 20:31:29 +00:00
|
|
|
#include "common/serializer.h"
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-20 23:41:15 +00:00
|
|
|
namespace Common {
|
|
|
|
class SeekableReadStream;
|
|
|
|
class WriteStream;
|
|
|
|
}
|
|
|
|
|
2009-05-14 12:38:50 +00:00
|
|
|
#include "sci/sci.h"
|
2009-02-21 19:54:15 +00:00
|
|
|
#include "sci/engine/seg_manager.h"
|
2010-01-23 17:55:54 +00:00
|
|
|
|
|
|
|
#include "sci/parser/vocabulary.h"
|
|
|
|
|
2010-01-05 01:22:16 +00:00
|
|
|
#include "sci/sound/audio.h"
|
2009-12-19 16:19:53 +00:00
|
|
|
#ifdef USE_OLD_MUSIC_FUNCTIONS
|
2010-01-05 01:22:16 +00:00
|
|
|
#include "sci/sound/iterator/core.h"
|
2009-12-19 16:19:53 +00:00
|
|
|
#endif
|
2010-01-05 01:22:16 +00:00
|
|
|
#include "sci/sound/soundcmd.h"
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-21 10:23:36 +00:00
|
|
|
namespace Sci {
|
|
|
|
|
2009-12-04 17:38:24 +00:00
|
|
|
class SciEvent;
|
2009-10-10 02:16:23 +00:00
|
|
|
class MessageState;
|
2009-11-12 15:24:11 +00:00
|
|
|
class SoundCommandParser;
|
2009-02-21 22:50:35 +00:00
|
|
|
|
2009-02-27 01:17:24 +00:00
|
|
|
class DirSeeker {
|
|
|
|
protected:
|
|
|
|
reg_t _outbuffer;
|
|
|
|
Common::StringList _savefiles;
|
|
|
|
Common::StringList::const_iterator _iter;
|
|
|
|
|
|
|
|
public:
|
2010-01-10 21:13:38 +00:00
|
|
|
DirSeeker() {
|
2009-02-27 01:17:24 +00:00
|
|
|
_outbuffer = NULL_REG;
|
|
|
|
_iter = _savefiles.begin();
|
|
|
|
}
|
2009-05-20 17:53:31 +00:00
|
|
|
|
2010-01-10 21:13:38 +00:00
|
|
|
reg_t firstFile(const Common::String &mask, reg_t buffer, SegManager *segMan);
|
|
|
|
reg_t nextFile(SegManager *segMan);
|
2009-02-27 01:17:24 +00:00
|
|
|
};
|
2009-02-22 20:48:42 +00:00
|
|
|
|
2009-05-11 13:32:00 +00:00
|
|
|
enum {
|
|
|
|
MAX_SAVE_DIR_SIZE = MAXPATHLEN
|
|
|
|
};
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-04-27 12:29:51 +00:00
|
|
|
/** values for EngineState.restarting_flag */
|
|
|
|
enum {
|
|
|
|
SCI_GAME_IS_NOT_RESTARTING = 0,
|
|
|
|
SCI_GAME_WAS_RESTARTED = 1,
|
|
|
|
SCI_GAME_IS_RESTARTING_NOW = 2,
|
|
|
|
SCI_GAME_WAS_RESTARTED_AT_LEAST_ONCE = 4
|
|
|
|
};
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-06-24 19:12:45 +00:00
|
|
|
/** Supported languages */
|
|
|
|
enum kLanguage {
|
|
|
|
K_LANG_NONE = 0,
|
|
|
|
K_LANG_ENGLISH = 1,
|
|
|
|
K_LANG_FRENCH = 33,
|
|
|
|
K_LANG_SPANISH = 34,
|
|
|
|
K_LANG_ITALIAN = 39,
|
|
|
|
K_LANG_GERMAN = 49,
|
|
|
|
K_LANG_JAPANESE = 81,
|
|
|
|
K_LANG_PORTUGUESE = 351
|
|
|
|
};
|
|
|
|
|
2009-02-22 21:38:46 +00:00
|
|
|
class FileHandle {
|
|
|
|
public:
|
2009-02-27 01:17:24 +00:00
|
|
|
Common::String _name;
|
|
|
|
Common::SeekableReadStream *_in;
|
|
|
|
Common::WriteStream *_out;
|
2009-05-20 17:53:31 +00:00
|
|
|
|
2009-02-27 01:17:24 +00:00
|
|
|
public:
|
|
|
|
FileHandle();
|
|
|
|
~FileHandle();
|
2009-05-20 17:53:31 +00:00
|
|
|
|
2009-02-27 01:17:24 +00:00
|
|
|
void close();
|
|
|
|
bool isOpen() const;
|
2009-02-22 21:38:46 +00:00
|
|
|
};
|
|
|
|
|
2009-03-15 20:31:29 +00:00
|
|
|
struct EngineState : public Common::Serializable {
|
|
|
|
public:
|
2010-02-13 17:45:40 +00:00
|
|
|
EngineState(Vocabulary *voc, SegManager *segMan, AudioPlayer *audio);
|
2009-03-15 20:31:29 +00:00
|
|
|
virtual ~EngineState();
|
2009-08-17 15:49:22 +00:00
|
|
|
|
2009-03-15 20:31:29 +00:00
|
|
|
virtual void saveLoadWithSerializer(Common::Serializer &ser);
|
2009-02-22 21:38:46 +00:00
|
|
|
|
2009-03-15 20:31:29 +00:00
|
|
|
public:
|
2010-02-03 01:32:27 +00:00
|
|
|
SegManager *_segMan; /**< The segment manager */
|
2009-09-30 12:17:38 +00:00
|
|
|
Vocabulary *_voc;
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-12-27 12:54:03 +00:00
|
|
|
Common::String _gameId; /**< Designation of the primary object (which inherits from Game) */
|
2009-02-15 06:10:59 +00:00
|
|
|
|
|
|
|
/* Non-VM information */
|
|
|
|
|
2009-12-04 17:38:24 +00:00
|
|
|
SciEvent *_event; // Event handling
|
|
|
|
|
2009-11-04 09:36:18 +00:00
|
|
|
AudioPlayer *_audio;
|
2009-12-19 16:19:53 +00:00
|
|
|
#ifdef USE_OLD_MUSIC_FUNCTIONS
|
2009-05-28 10:54:30 +00:00
|
|
|
SfxState _sound; /**< sound subsystem */
|
2010-01-23 12:10:31 +00:00
|
|
|
int sfx_init_flags; /**< flags the sfx subsystem was initialised with */
|
2009-12-19 16:19:53 +00:00
|
|
|
#endif
|
2009-11-12 15:24:11 +00:00
|
|
|
SoundCommandParser *_soundCmd;
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-04-27 12:29:51 +00:00
|
|
|
byte restarting_flags; /**< Flags used for restarting */
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-04-27 12:29:51 +00:00
|
|
|
uint32 game_start_time; /**< The time at which the interpreter was started */
|
|
|
|
uint32 last_wait_time; /**< The last time the game invoked Wait() */
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2010-01-17 18:41:28 +00:00
|
|
|
uint32 _throttleCounter; /**< total times kAnimate was invoked */
|
|
|
|
uint32 _throttleLastTime; /**< last time kAnimate was invoked */
|
|
|
|
bool _throttleTrigger;
|
2009-10-14 21:45:16 +00:00
|
|
|
|
2009-02-15 06:10:59 +00:00
|
|
|
/* Kernel File IO stuff */
|
|
|
|
|
2009-04-27 12:29:51 +00:00
|
|
|
Common::Array<FileHandle> _fileHandles; /**< Array of file handles. Dynamically increased if required. */
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-27 01:17:24 +00:00
|
|
|
DirSeeker _dirseeker;
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2010-02-03 01:32:27 +00:00
|
|
|
public:
|
2009-02-15 06:10:59 +00:00
|
|
|
/* VM Information */
|
|
|
|
|
2009-05-28 22:42:18 +00:00
|
|
|
Common::List<ExecStack> _executionStack; /**< The execution stack */
|
2009-04-27 12:29:51 +00:00
|
|
|
/**
|
|
|
|
* 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 execution_stack_base;
|
2009-04-28 15:58:19 +00:00
|
|
|
bool _executionStackPosChanged; /**< Set to true if the execution stack position should be re-evaluated by the vm */
|
2009-04-27 12:29:51 +00:00
|
|
|
|
|
|
|
reg_t r_acc; /**< Accumulator */
|
2009-07-09 15:46:26 +00:00
|
|
|
int16 restAdjust; /**< &rest register (only used for save games) */
|
2009-04-27 12:29:51 +00:00
|
|
|
reg_t r_prev; /**< previous comparison result */
|
|
|
|
|
|
|
|
StackPtr stack_base; /**< Pointer to the least stack element */
|
|
|
|
StackPtr stack_top; /**< First invalid stack element */
|
|
|
|
|
|
|
|
Script *script_000; /**< script 000, e.g. for globals */
|
2009-05-20 17:53:31 +00:00
|
|
|
|
2009-06-04 20:50:51 +00:00
|
|
|
uint16 currentRoomNumber() const;
|
2010-01-03 15:08:26 +00:00
|
|
|
void setRoomNumber(uint16 roomNumber);
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2010-02-03 01:32:27 +00:00
|
|
|
/* Debugger data: */
|
|
|
|
Common::List<Breakpoint> _breakpoints; /**< List of breakpoints */
|
|
|
|
int _activeBreakpointTypes; /**< Bit mask specifying which types of breakpoints are active */
|
|
|
|
|
|
|
|
/* System strings */
|
|
|
|
SegmentId sys_strings_segment;
|
|
|
|
SystemStrings *sys_strings;
|
|
|
|
|
|
|
|
reg_t _gameObj; /**< Pointer to the game object */
|
|
|
|
|
|
|
|
int gc_countdown; /**< 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];
|
|
|
|
|
|
|
|
EngineState *successor; /**< Successor of this state: Used for restoring */
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2009-06-24 19:12:45 +00:00
|
|
|
/**
|
|
|
|
* Processes a multilanguage string based on the current language settings and
|
|
|
|
* returns a string that is ready to be displayed.
|
|
|
|
* @param str the multilanguage string
|
|
|
|
* @param sep optional seperator between main language and subtitle language,
|
|
|
|
* if NULL is passed no subtitle will be added to the returned string
|
|
|
|
* @return processed string
|
|
|
|
*/
|
|
|
|
Common::String strSplit(const char *str, const char *sep = "\r----------\r");
|
|
|
|
|
2010-02-03 01:32:27 +00:00
|
|
|
kLanguage getLanguage();
|
|
|
|
|
|
|
|
Common::String getLanguageString(const char *str, kLanguage lang) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
kLanguage charToLanguage(const char c) const;
|
2009-02-21 10:47:56 +00:00
|
|
|
};
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-21 10:23:36 +00:00
|
|
|
} // End of namespace Sci
|
|
|
|
|
2009-02-24 15:33:40 +00:00
|
|
|
#endif // SCI_INCLUDE_ENGINE_H
|