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-02-15 06:10:59 +00:00
|
|
|
|
2009-02-20 23:41:15 +00:00
|
|
|
namespace Common {
|
|
|
|
class SeekableReadStream;
|
|
|
|
class WriteStream;
|
|
|
|
}
|
|
|
|
|
2009-02-27 02:23:00 +00:00
|
|
|
#include "sci/scicore/vocabulary.h"
|
|
|
|
#include "sci/scicore/resource.h"
|
|
|
|
#include "sci/engine/script.h"
|
2009-02-24 06:00:10 +00:00
|
|
|
#include "sci/scicore/sciconsole.h"
|
2009-02-27 02:23:00 +00:00
|
|
|
#include "sci/scicore/versions.h"
|
2009-02-21 19:54:15 +00:00
|
|
|
#include "sci/engine/seg_manager.h"
|
2009-03-07 19:23:47 +00:00
|
|
|
#include "sci/gfx/gfx_system.h"
|
2009-03-01 06:02:17 +00:00
|
|
|
#include "sci/sfx/core.h"
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-21 10:23:36 +00:00
|
|
|
namespace Sci {
|
|
|
|
|
2009-02-21 22:50:35 +00:00
|
|
|
struct menubar_t;
|
2009-02-24 05:51:55 +00:00
|
|
|
struct kfunct_sig_pair_t; // from kernel.h
|
2009-02-21 22:50:35 +00:00
|
|
|
|
2009-03-07 19:23:47 +00:00
|
|
|
struct gfx_state_t;
|
|
|
|
struct gfxw_port_t;
|
|
|
|
struct gfxw_visual_t;
|
|
|
|
struct gfxw_container_t;
|
|
|
|
typedef gfxw_container_t gfxw_list_t;
|
|
|
|
|
|
|
|
|
2009-02-27 01:17:24 +00:00
|
|
|
class DirSeeker {
|
|
|
|
protected:
|
|
|
|
EngineState *_vm;
|
|
|
|
reg_t _outbuffer;
|
|
|
|
Common::StringList _savefiles;
|
|
|
|
Common::StringList::const_iterator _iter;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DirSeeker(EngineState *s) : _vm(s) {
|
|
|
|
_outbuffer = NULL_REG;
|
|
|
|
_iter = _savefiles.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
void firstFile(const char *mask, reg_t buffer);
|
|
|
|
void nextFile();
|
|
|
|
};
|
2009-02-22 20:48:42 +00:00
|
|
|
|
2009-02-20 23:41:15 +00:00
|
|
|
#define FREESCI_CURRENT_SAVEGAME_VERSION 8
|
|
|
|
#define FREESCI_MINIMUM_SAVEGAME_VERSION 8
|
2009-02-15 06:10:59 +00:00
|
|
|
|
|
|
|
#define MAX_GAMEDIR_SIZE 32 /* Used for subdirectory inside of "~/.freesci/" */
|
|
|
|
#define MAX_SAVEGAME_NR 20 /* Maximum number of savegames */
|
|
|
|
|
2009-02-21 22:59:50 +00:00
|
|
|
#define MAX_SAVE_DIR_SIZE MAXPATHLEN
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-21 10:47:56 +00:00
|
|
|
/* values for EngineState.restarting_flag */
|
2009-02-15 06:10:59 +00:00
|
|
|
#define SCI_GAME_IS_NOT_RESTARTING 0
|
|
|
|
#define SCI_GAME_WAS_RESTARTED 1
|
|
|
|
#define SCI_GAME_IS_RESTARTING_NOW 2
|
|
|
|
#define SCI_GAME_WAS_RESTARTED_AT_LEAST_ONCE 4
|
|
|
|
|
2009-02-21 22:06:42 +00:00
|
|
|
struct drawn_pic_t {
|
2009-02-15 06:10:59 +00:00
|
|
|
int nr;
|
|
|
|
int palette;
|
2009-02-21 22:06:42 +00:00
|
|
|
};
|
2009-02-15 06:10:59 +00:00
|
|
|
|
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-02-22 21:38:46 +00:00
|
|
|
|
2009-02-27 01:17:24 +00:00
|
|
|
public:
|
|
|
|
FileHandle();
|
|
|
|
~FileHandle();
|
2009-02-22 21:38:46 +00:00
|
|
|
|
2009-02-27 01:17:24 +00:00
|
|
|
void close();
|
|
|
|
bool isOpen() const;
|
2009-02-22 21:38:46 +00:00
|
|
|
};
|
|
|
|
|
2009-02-21 10:47:56 +00:00
|
|
|
struct EngineState {
|
2009-02-22 21:38:46 +00:00
|
|
|
EngineState();
|
|
|
|
|
2009-02-15 06:10:59 +00:00
|
|
|
int savegame_version;
|
|
|
|
|
|
|
|
int widget_serial_counter; /* Used for savegames */
|
|
|
|
|
2009-02-20 15:24:22 +00:00
|
|
|
ResourceManager *resmgr; /* The resource manager */
|
2009-02-15 06:10:59 +00:00
|
|
|
|
|
|
|
char *game_name; /* Designation of the primary object (which inherits from Game) */
|
|
|
|
char *game_version;
|
|
|
|
|
|
|
|
/* Non-VM information */
|
|
|
|
|
|
|
|
gfx_state_t *gfx_state; /* Graphics state and driver */
|
|
|
|
gfx_pixmap_t *old_screen; /* Old screen content: Stored during kDrawPic() for kAnimate() */
|
|
|
|
|
|
|
|
sfx_state_t sound; /* sound subsystem */
|
|
|
|
int sfx_init_flags; /* flags the sfx subsystem was initialised with */
|
|
|
|
unsigned int sound_volume; /* 0x0 -> 0xf Current volume of sound system */
|
|
|
|
unsigned int sound_mute; /* 0 = not, else == saved value */
|
|
|
|
|
|
|
|
byte restarting_flags; /* Flags used for restarting */
|
|
|
|
byte have_mouse_flag; /* Do we have a hardware pointing device? */
|
|
|
|
|
|
|
|
byte pic_not_valid; /* Is 0 if the background picture is "valid" */
|
|
|
|
byte pic_is_new; /* New pic was loaded or port was opened */
|
|
|
|
byte onscreen_console; /* Use the onscreen console for debugging */
|
|
|
|
byte *osc_backup; /* Backup of the pre-onscreen console screen data */
|
|
|
|
|
|
|
|
int *pic_priority_table; /* 16 entries with priorities or NULL if not present */
|
|
|
|
|
|
|
|
char *status_bar_text; /* Text on the status bar, or NULL if the title bar is blank */
|
|
|
|
|
|
|
|
int status_bar_foreground, status_bar_background;
|
|
|
|
|
|
|
|
long game_time; /* Counted at 60 ticks per second, reset during start time */
|
|
|
|
|
|
|
|
reg_t save_dir_copy; /* Last copy of the save dir */
|
|
|
|
int save_dir_edit_offset; /* For kEdit(): Display offset for editing the savedir */
|
|
|
|
char *save_dir_copy_buf; /* Temp savedir buffer for kEdit() */
|
|
|
|
|
|
|
|
int mouse_pointer_view; /* Mouse pointer resource, or -1 if disabled */
|
|
|
|
int mouse_pointer_loop; /* Mouse pointer resource, or -1 if disabled */
|
|
|
|
int mouse_pointer_cel; /* Mouse pointer resource, or -1 if disabled */
|
|
|
|
int save_mouse_pointer_view; /* Temporary storage for mouse pointer resource, when the pointer is hidden */
|
|
|
|
int save_mouse_pointer_loop; /* Temporary storage for mouse pointer resource, when the pointer is hidden */
|
|
|
|
int save_mouse_pointer_cel; /* Temporary storage for mouse pointer resource, when the pointer is hidden */
|
|
|
|
|
|
|
|
int port_serial; /* Port serial number, for save/restore */
|
|
|
|
gfxw_port_t *port; /* The currently active port */
|
|
|
|
|
|
|
|
gfx_color_t ega_colors[16]; /* The 16 EGA colors- for SCI0(1) */
|
|
|
|
|
|
|
|
gfxw_visual_t *visual; /* A visual widget, containing all ports */
|
|
|
|
|
|
|
|
gfxw_port_t *titlebar_port; /* Title bar viewport (0,0,9,319) */
|
|
|
|
gfxw_port_t *wm_port; /* window manager viewport and designated &heap[0] view (10,0,199,319) */
|
|
|
|
gfxw_port_t *picture_port; /* The background picture viewport (10,0,199,319) */
|
|
|
|
gfxw_port_t *iconbar_port; /* Full-screen port used for non-clipped icon bar draw in SCI1 */
|
|
|
|
|
|
|
|
gfx_map_mask_t pic_visible_map; /* The number of the map to display in update commands */
|
|
|
|
int pic_animate; /* The animation used by Animate() to display the picture */
|
|
|
|
|
|
|
|
int dyn_views_list_serial; /* Used for save/restore */
|
|
|
|
gfxw_list_t *dyn_views; /* Pointers to pic and dynamic view lists */
|
|
|
|
|
|
|
|
int drop_views_list_serial; /* Used for save/restore */
|
|
|
|
gfxw_list_t *drop_views; /* A list Animate() can dump dropped dynviews into */
|
|
|
|
|
|
|
|
long animation_delay; /* A delay factor for pic opening animations. Defaults to 500. */
|
|
|
|
int animation_granularity; /* Number of animation steps to perform betwen updates for transition animations */
|
|
|
|
|
|
|
|
menubar_t *menubar; /* The menu bar */
|
|
|
|
|
|
|
|
int priority_first; /* The line where priority zone 0 ends */
|
|
|
|
int priority_last; /* The line where the highest priority zone starts */
|
|
|
|
|
|
|
|
int pics_drawn_nr;
|
|
|
|
int pics_nr;
|
|
|
|
drawn_pic_t *pics;
|
|
|
|
|
2009-02-25 21:43:57 +00:00
|
|
|
uint32 game_start_time; /* The time at which the interpreter was started */
|
2009-02-21 16:04:16 +00:00
|
|
|
uint32 last_wait_time; /* The last time the game invoked Wait() */
|
2009-02-15 06:10:59 +00:00
|
|
|
|
|
|
|
byte version_lock_flag; /* Set to 1 to disable any autodetection mechanisms */
|
|
|
|
sci_version_t version; /* The approximated patchlevel of the version to emulate */
|
|
|
|
sci_version_t max_version, min_version; /* Used for autodetect sanity checks */
|
|
|
|
|
|
|
|
unsigned int kernel_opt_flags; /* Kernel optimization flags- used for performance tweaking */
|
|
|
|
|
|
|
|
/* Kernel File IO stuff */
|
|
|
|
|
2009-02-22 21:38:46 +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
|
|
|
|
|
|
|
/* VM Information */
|
|
|
|
|
2009-02-28 11:12:59 +00:00
|
|
|
ExecStack *execution_stack; /* The execution stack */
|
2009-02-15 06:10:59 +00:00
|
|
|
int execution_stack_size; /* Number of stack frames allocated */
|
|
|
|
int execution_stack_pos; /* Position on the execution stack */
|
|
|
|
int execution_stack_base; /* 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_pos_changed; /* Set to 1 if the execution stack position
|
|
|
|
** should be re-evaluated by the vm
|
|
|
|
*/
|
|
|
|
|
|
|
|
reg_t r_acc; /* Accumulator */
|
|
|
|
unsigned int r_amp_rest; /* &rest register (only used for save games) */
|
|
|
|
reg_t r_prev; /* previous comparison result */
|
|
|
|
|
2009-02-28 11:12:59 +00:00
|
|
|
SegmentId stack_segment; /* Heap area for the stack to use */
|
|
|
|
StackPtr stack_base; /* Pointer to the least stack element */
|
|
|
|
StackPtr stack_top; /* First invalid stack element */
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-28 11:12:59 +00:00
|
|
|
SegmentId parser_segment; /* A heap area used by the parser for error reporting */
|
2009-02-15 06:10:59 +00:00
|
|
|
reg_t parser_base; /* Base address for the parser error reporting mechanism */
|
|
|
|
reg_t parser_event; /* The event passed to Parse() and later used by Said() */
|
2009-02-28 11:12:59 +00:00
|
|
|
SegmentId script_000_segment;
|
|
|
|
Script *script_000; /* script 000, e.g. for globals */
|
2009-02-15 06:10:59 +00:00
|
|
|
|
|
|
|
int parser_lastmatch_word; /* Position of the input word the parser last matched on, or SAID_NO_MATCH */
|
|
|
|
|
|
|
|
/* Debugger data: */
|
2009-02-28 11:12:59 +00:00
|
|
|
Breakpoint *bp_list; /* List of breakpoints */
|
2009-02-15 06:10:59 +00:00
|
|
|
int have_bp; /* Bit mask specifying which types of breakpoints are used in bp_list */
|
|
|
|
unsigned int debug_mode; /* Contains flags for the various debug modes */
|
|
|
|
|
|
|
|
/* System strings */
|
2009-02-28 11:12:59 +00:00
|
|
|
SegmentId sys_strings_segment;
|
2009-02-26 23:03:35 +00:00
|
|
|
SystemStrings *sys_strings;
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-03-10 14:52:02 +00:00
|
|
|
SegmentId string_frag_segment;
|
|
|
|
|
2009-02-15 06:10:59 +00:00
|
|
|
/* Parser data: */
|
|
|
|
word_t **parser_words;
|
|
|
|
int parser_words_nr;
|
2009-03-08 08:17:43 +00:00
|
|
|
SuffixList _parserSuffixes;
|
2009-02-15 06:10:59 +00:00
|
|
|
parse_tree_branch_t *parser_branches;
|
|
|
|
parse_rule_list_t *parser_rules; /* GNF rules used in the parser algorithm */
|
|
|
|
int parser_branches_nr;
|
|
|
|
parse_tree_node_t parser_nodes[VOCAB_TREE_NODES]; /* The parse tree */
|
|
|
|
|
|
|
|
int parser_valid; /* If something has been correctly parsed */
|
|
|
|
|
|
|
|
synonym_t *synonyms; /* The list of synonyms */
|
|
|
|
int synonyms_nr;
|
|
|
|
|
|
|
|
reg_t game_obj; /* Pointer to the game object */
|
|
|
|
|
|
|
|
int classtable_size; /* Number of classes in the table- for debugging */
|
2009-02-28 11:12:59 +00:00
|
|
|
Class *classtable; /* Table of all classes */
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-21 23:27:24 +00:00
|
|
|
SegManager *seg_manager;
|
2009-02-15 06:10:59 +00:00
|
|
|
int gc_countdown; /* Number of kernel calls until next gc */
|
|
|
|
|
2009-02-23 03:04:52 +00:00
|
|
|
Common::StringList _selectorNames;
|
2009-02-15 06:10:59 +00:00
|
|
|
int kernel_names_nr; /* Number of kernel function names */
|
|
|
|
char **kernel_names; /* List of kernel names */
|
|
|
|
|
|
|
|
kfunct_sig_pair_t *kfunct_table; /* Table of kernel functions */
|
|
|
|
int kfunct_nr; /* Number of mapped kernel functions; may be more than
|
|
|
|
** kernel_names_nr */
|
|
|
|
|
|
|
|
opcode *opcodes;
|
|
|
|
|
|
|
|
selector_map_t selector_map; /* Shortcut list for important selectors */
|
|
|
|
|
2009-02-21 10:47:56 +00:00
|
|
|
EngineState *successor; /* Successor of this state: Used for restoring */
|
|
|
|
};
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-03-08 20:17:01 +00:00
|
|
|
PaletteEntry get_pic_color(EngineState *s, int color);
|
2009-02-15 06:10:59 +00:00
|
|
|
/* Retrieves the gfx_pixmap_color_t associated with a game color index
|
2009-02-21 10:47:56 +00:00
|
|
|
** Parameters: (EngineState *) s: The game state
|
2009-02-15 06:10:59 +00:00
|
|
|
** (int) color: The color to look up
|
|
|
|
** Returns : (gfx_pixmap_color_t *) The requested color.
|
|
|
|
*/
|
|
|
|
|
2009-02-21 10:47:56 +00:00
|
|
|
static inline reg_t not_register(EngineState *s, reg_t r) {
|
2009-02-15 06:10:59 +00:00
|
|
|
if (s->version >= SCI_VERSION_FTU_INVERSE_CANBEHERE)
|
2009-02-15 22:32:57 +00:00
|
|
|
return make_reg(0, !r.offset);
|
|
|
|
else
|
2009-02-15 06:10:59 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
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
|