aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/script.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-04-20 15:47:11 +0000
committerJohannes Schickel2008-04-20 15:47:11 +0000
commitf173041811398817ffce870d30ef3b87d1302736 (patch)
tree78e43d204662641a5d687cbc184ac60913ac870d /engines/kyra/script.h
parent38319954d1035a7ec8df335c88d455a4042a94fc (diff)
downloadscummvm-rg350-f173041811398817ffce870d30ef3b87d1302736.tar.gz
scummvm-rg350-f173041811398817ffce870d30ef3b87d1302736.tar.bz2
scummvm-rg350-f173041811398817ffce870d30ef3b87d1302736.zip
- moved kyra functor code to common/func.h
- adapted debugger code to use functor code from common/func.h - adapted kyra engine to use functor code from common/func.h svn-id: r31614
Diffstat (limited to 'engines/kyra/script.h')
-rw-r--r--engines/kyra/script.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/engines/kyra/script.h b/engines/kyra/script.h
index 4ea05ea158..bc92aebc5e 100644
--- a/engines/kyra/script.h
+++ b/engines/kyra/script.h
@@ -26,13 +26,14 @@
#ifndef KYRA_SCRIPT_H
#define KYRA_SCRIPT_H
-#include "kyra/kyra.h"
-#include "kyra/util.h"
-
#include "common/stream.h"
+#include "common/func.h"
namespace Kyra {
+struct ScriptState;
+typedef Common::Functor1<ScriptState*, int> Opcode;
+
struct ScriptData {
byte *text;
uint16 *data;
@@ -61,6 +62,9 @@ struct ScriptState {
#define ORDR_CHUNK 0x5244524F
#define AVTL_CHUNK 0x4C545641
+class Resource;
+class KyraEngine;
+
class ScriptFileParser {
public:
ScriptFileParser() : _stream(0), _startOffset(0), _endOffset(0) {}