aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/game.h
diff options
context:
space:
mode:
authorSven Hesse2008-12-12 00:10:39 +0000
committerSven Hesse2008-12-12 00:10:39 +0000
commit19146fe03206a2039c0dd568af1a81a8e5411556 (patch)
tree4c65e1b8eeb0b10a0abf7b9a879d3d20e42248bc /engines/gob/game.h
parentc65886a3ea3a4fb30d34d9cc3136dd34db044d9f (diff)
downloadscummvm-rg350-19146fe03206a2039c0dd568af1a81a8e5411556.tar.gz
scummvm-rg350-19146fe03206a2039c0dd568af1a81a8e5411556.tar.bz2
scummvm-rg350-19146fe03206a2039c0dd568af1a81a8e5411556.zip
Working cursor in Urban Runner
svn-id: r35309
Diffstat (limited to 'engines/gob/game.h')
-rw-r--r--engines/gob/game.h72
1 files changed, 38 insertions, 34 deletions
diff --git a/engines/gob/game.h b/engines/gob/game.h
index b60ef970bf..1f19a64f7a 100644
--- a/engines/gob/game.h
+++ b/engines/gob/game.h
@@ -48,38 +48,6 @@ public:
uint16 funcSub;
} PACKED_STRUCT;
-#define szGame_TotResItem (4 + 2 + 2 + 2)
- struct TotResItem {
- int32 offset; // if > 0, then offset from end of resource table.
- // If < 0, then -offset-1 is index in .IM file table
- int16 size;
- int16 width;
- int16 height;
- } PACKED_STRUCT;
-
-#define szGame_TotResTable (2 + 1)
- struct TotResTable {
- int16 itemsCount;
- byte unknown;
- TotResItem *items;
- byte *dataPtr;
- } PACKED_STRUCT;
-
-#define szGame_ExtItem (4 + 2 + 2 + 2)
- struct ExtItem {
- int32 offset; // offset from the table end
- uint16 size;
- int16 width; // width & 0x7FFF: width, width & 0x8000: pack flag
- int16 height; // not zero
- } PACKED_STRUCT;
-
-#define szGame_ExtTable (2 + 1)
- struct ExtTable {
- int16 itemsCount;
- byte unknown;
- ExtItem *items;
- } PACKED_STRUCT;
-
#define szGame_TotTextItem (2 + 2)
struct TotTextItem {
int16 offset;
@@ -102,7 +70,6 @@ public:
#include "common/pack-end.h" // END STRUCT PACKING
- TotResTable *_totResourceTable;
Collision *_collisionAreas;
Collision *_collStack[5];
@@ -131,7 +98,7 @@ public:
virtual ~Game();
byte *loadExtData(int16 dataId, int16 *pResWidth, int16 *pResHeight, uint32 *dataSize = 0);
- byte *loadTotResource(int16 id, int16 *dataSize = 0);
+ byte *loadTotResource(int16 id, int16 *dataSize = 0, int16 *width = 0, int16 *height = 0);
void capturePush(int16 left, int16 top, int16 width, int16 height);
void capturePop(char doDraw);
@@ -166,6 +133,42 @@ public:
virtual void prepareStart(void) = 0;
protected:
+#include "common/pack-start.h" // START STRUCT PACKING
+
+#define szGame_TotResItem (4 + 2 + 2 + 2)
+ struct TotResItem {
+ int32 offset; // if > 0, then offset from end of resource table.
+ // If < 0, then -offset-1 is index in .IM file table
+ int16 size;
+ int16 width;
+ int16 height;
+ } PACKED_STRUCT;
+
+#define szGame_TotResTable (2 + 1)
+ struct TotResTable {
+ int16 itemsCount;
+ byte unknown;
+ TotResItem *items;
+ byte *dataPtr;
+ } PACKED_STRUCT;
+
+#define szGame_ExtItem (4 + 2 + 2 + 2)
+ struct ExtItem {
+ int32 offset; // offset from the table end
+ uint16 size;
+ int16 width; // width & 0x7FFF: width, width & 0x8000: pack flag
+ int16 height; // not zero
+ } PACKED_STRUCT;
+
+#define szGame_ExtTable (2 + 1)
+ struct ExtTable {
+ int16 itemsCount;
+ byte unknown;
+ ExtItem *items;
+ } PACKED_STRUCT;
+
+#include "common/pack-end.h" // END STRUCT PACKING
+
int16 _lastCollKey;
int16 _lastCollAreaIndex;
int16 _lastCollId;
@@ -178,6 +181,7 @@ protected:
char _tempStr[256];
+ TotResTable *_totResourceTable;
ExtTable *_extTable;
char _curImaFile[18];