diff options
author | Paul Gilbert | 2006-04-11 10:46:36 +0000 |
---|---|---|
committer | Paul Gilbert | 2006-04-11 10:46:36 +0000 |
commit | 7b32b7ef9ca38061cc6405a1718c0129dfef9bdc (patch) | |
tree | 288b47dc411a551de5bac546b2510eeb90a93f9d /engines | |
parent | 9b87224036004668aa74f764553cc05381c79f97 (diff) | |
download | scummvm-rg350-7b32b7ef9ca38061cc6405a1718c0129dfef9bdc.tar.gz scummvm-rg350-7b32b7ef9ca38061cc6405a1718c0129dfef9bdc.tar.bz2 scummvm-rg350-7b32b7ef9ca38061cc6405a1718c0129dfef9bdc.zip |
Added new resources for pathfinding and new resources
svn-id: r21781
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lure/luredefs.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/engines/lure/luredefs.h b/engines/lure/luredefs.h index 242299bea9..caa0ba3edb 100644 --- a/engines/lure/luredefs.h +++ b/engines/lure/luredefs.h @@ -80,7 +80,7 @@ enum Action { #define SUPPORT_FILENAME "lure.dat" #define LURE_DAT_MAJOR 1 -#define LURE_DAT_MINOR 3 +#define LURE_DAT_MINOR 4 // Some resources include multiple packed palettes of 64 entries each #define SUB_PALETTE_SIZE 64 @@ -109,6 +109,7 @@ enum Action { #define CURSOR_TIME_START 2 #define CURSOR_TIME_END 9 #define CURSOR_CROSS 10 +#define CURSOR_CAMERA 15 #define CURSOR_TALK 16 #define CURSOR_MENUBAR 17 @@ -171,6 +172,9 @@ enum Action { #define ACTION_LIST_RESOURCE_ID 0x3f0f #define TALK_HEADER_RESOURCE_ID 0x3f10 #define TALK_DATA_RESOURCE_ID 0x3f11 +#define ROOM_PATHS_RESOURCE_ID 0x3f12 +#define HOTSPOT_PROXIMITY_RESOURCE_ID 0x3f13 +#define EXIT_COORDINATES_RESOURCE_ID 0x3f14 // Script constants #define STARTUP_SCRIPT 0x23FC @@ -202,6 +206,11 @@ enum Action { // Misc constants #define VOICE_ANIM_ID 0x5810 +// Countdown for # operations in path finder before breaking until next +// tick - set it to 0 if you'd like all pathfinding to be done at once +//#define PATHFIND_COUNTDOWN 4000 +#define PATHFIND_COUNTDOWN 0 + // Pixel record flags #define PIXELFLAG_HAS_TABLE 4 |