now load waypoints from memory as well
changed versioning scheme updated linux makefiles
This commit is contained in:
parent
730ce7a1d4
commit
a61cd3b021
9 changed files with 20 additions and 44 deletions
|
|
@ -469,7 +469,7 @@ enum WaypointFlag
|
|||
// defines for waypoint connection flags field (16 bits are available)
|
||||
enum PathFlag
|
||||
{
|
||||
PATHFLAG_JUMP = (1 << 0), // must jump for this connection
|
||||
PATHFLAG_JUMP = (1 << 0) // must jump for this connection
|
||||
};
|
||||
|
||||
// enum pathfind search type
|
||||
|
|
|
|||
|
|
@ -69,20 +69,15 @@ typedef enum
|
|||
{
|
||||
print_console,
|
||||
print_center,
|
||||
print_chat,
|
||||
print_chat
|
||||
} PRINT_TYPE;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
print_withtag = print_console | 0x3ff,
|
||||
} PRINT_TYPE_EX; // (dz): added for bots needs
|
||||
|
||||
// For integrity checking of content on clients
|
||||
typedef enum
|
||||
{
|
||||
force_exactfile, // File on client must exactly match server's file
|
||||
force_model_samebounds, // For model files only, the geometry must fit in the same bbox
|
||||
force_model_specifybounds, // For model files only, the geometry must fit in the specified bbox
|
||||
force_model_specifybounds // For model files only, the geometry must fit in the specified bbox
|
||||
} FORCE_TYPE;
|
||||
|
||||
// Returned by TraceLine
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ typedef enum
|
|||
PT_STARTUP,
|
||||
PT_CHANGELEVEL,
|
||||
PT_ANYTIME,
|
||||
PT_ANYPAUSE,
|
||||
PT_ANYPAUSE
|
||||
} PLUG_LOADTIME;
|
||||
|
||||
|
||||
|
|
@ -64,7 +64,7 @@ typedef enum
|
|||
PNL_DELAYED,
|
||||
PNL_PLUGIN,
|
||||
PNL_PLG_FORCED,
|
||||
PNL_RELOAD,
|
||||
PNL_RELOAD
|
||||
} PL_UNLOAD_REASON;
|
||||
|
||||
typedef enum
|
||||
|
|
@ -73,7 +73,7 @@ typedef enum
|
|||
MRES_IGNORED,
|
||||
MRES_HANDLED,
|
||||
MRES_OVERRIDE,
|
||||
MRES_SUPERCEDE,
|
||||
MRES_SUPERCEDE
|
||||
} META_RES;
|
||||
|
||||
typedef struct meta_globals_s
|
||||
|
|
@ -121,7 +121,7 @@ typedef enum
|
|||
GINFO_GAMEDIR,
|
||||
GINFO_DLL_FULLPATH,
|
||||
GINFO_DLL_FILENAME,
|
||||
GINFO_REALDLL_FULLPATH,
|
||||
GINFO_REALDLL_FULLPATH
|
||||
} ginfo_t;
|
||||
|
||||
// Meta Utility Function table type.
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
// general product information
|
||||
#define PRODUCT_NAME "Yet Another POD-Bot"
|
||||
#define PRODUCT_VERSION "2.7.3"
|
||||
#define PRODUCT_VERSION "2.73"
|
||||
#define PRODUCT_AUTHOR "YaPB Dev Team"
|
||||
#define PRODUCT_URL "https://yapb.jeefo.net"
|
||||
#define PRODUCT_EMAIL "dmitry@jeefo.net"
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
#define PRODUCT_LEGAL "Half-Life, Counter-Strike, Counter-Strike: Condition Zero, Steam, Valve is a trademark of Valve Corporation"
|
||||
#define PRODUCT_ORIGINAL_NAME "yapb.dll"
|
||||
#define PRODUCT_INTERNAL_NAME "skybot"
|
||||
#define PRODUCT_VERSION_DWORD_INTERNAL 2,7,3
|
||||
#define PRODUCT_VERSION_DWORD_INTERNAL 2,73
|
||||
#define PRODUCT_VERSION_DWORD PRODUCT_VERSION_DWORD_INTERNAL,0
|
||||
#define PRODUCT_SUPPORT_VERSION "1.0 - CZ"
|
||||
#define PRODUCT_COMMENTS "http://github.com/jeefo/yapb/"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue