/* config.h */
#ifndef CONFIG_H
#define CONFIG_H
#include "copyright.h"
/* TEST_MALLOC: Defining this makes a malloc that keeps track of the number
* of blocks allocated. Good for testing for Memory leaks.
* MSTATS: Defining the following allows you to get stats and usage info
* if you use the gnu-malloc package. It can be used in
* conjuction with the above, but why?
* ATR_NAME: Define if you want name to be stored as an attribute on the
* object rather than in the object structure.
* USE_GDBM: Define if you plan on using the disk based database scheme.
* The code will not work if this is not #defined.
* rcheck: Define if you are a) using the gnu_malloc package, and b)
* want to enable it's memory range checking features. Useful for
* helping to track memory leaks.
*/
/* Compile time options */
#define CONF_FILE "netmush.conf" /* Default config file */
#define FILEDIR "files/" /* Source for @cat */
/* #define TEST_MALLOC */ /* Keep track of block allocs */
/* #define MSTATS */ /* Gnu-malloc stats */
#define ATR_NAME /* Store names as attributes */
#define USE_GDBM /* Store text in disk-based db */
/* #define rcheck */ /* Gnu memory range checking */
#define PLAYER_NAME_LIMIT 16 /* Max length for player names */
#define NUM_ENV_VARS 10 /* Number of env vars (%0 et al) */
#define MAX_ARG 100 /* max # args from command processor */
/* ---------------------------------------------------------------------------
* Database R/W flags.
*/
#define MANDFLAGS V_LINK|V_PARENT /* Everyone has these */
#define OFLAGS1 V_GDBM|V_ATRKEY /* GDBM has these */
#ifdef ATR_NAME /* These are optional (?) */
#define OFLAGS2 V_ATRNAME
#else
#define OFLAGS2 0
#endif
#define OUTPUT_VERSION 5 /* Version 5 */
#define OUTPUT_FLAGS MANDFLAGS|OFLAGS1|OFLAGS2
/* format for dumps */
#define UNLOAD_VERSION 5 /* verison for export */
#define UNLOAD_OUTFLAGS MANDFLAGS /* format for export */
/* magic lock cookies */
#define NOT_TOKEN '!'
#define AND_TOKEN '&'
#define OR_TOKEN '|'
#define LOOKUP_TOKEN '*'
#define NUMBER_TOKEN '#'
#define INDIR_TOKEN '@' /* One of these two should go. */
#define CARRY_TOKEN '+' /* One of these two should go. */
#define IS_TOKEN '='
#define OWNER_TOKEN '$'
/* matching attribute tokens */
#define AMATCH_CMD '$'
#define AMATCH_LISTEN '^'
/* delimiters for various things */
#define EXIT_DELIMITER ';'
#define ARG_DELIMITER '='
#define ARG_LIST_DELIM ','
/* These chars get replaced by the current item from a list in commands and
* functions that do iterative replacement, such as @apply_marked, dolist,
* the eval= operator for @search, and iter().
*/
#define BOUND_VAR "##"
/* amount of object endowment, based on cost */
#define OBJECT_ENDOWMENT(cost) (((cost)/mudconf.sacfactor) +mudconf.sacadjust)
/* !!! added for recycling, return value of object */
#define OBJECT_DEPOSIT(pennies) \
(((pennies)-mudconf.sacadjust)*mudconf.sacfactor)
/* If this is a xenix system redefine srandom and random */
#ifdef XENIX
#define random rand
#define srandom srand
#endif
#ifdef VMS
#define random rand
#define srandom srand
#define index strchr
#define unlink delete
#define gmtime localtime
#define DEV_NULL "NL:"
#else
#define DEV_NULL "/dev/null"
#endif
#ifdef BRAIN_DAMAGE /* a kludge to get it to work on a mutant
* DENIX system */
#undef toupper
#endif
#ifdef TEST_MALLOC
extern int malloc_count;
#define XMALLOC(x,y) (fprintf(stderr,"Malloc: %s\n", (y)), malloc_count++, \
(char *)malloc((x)))
#define XFREE(x,y) (fprintf(stderr, "Free: %s\n", (y)), \
((x) ? malloc_count--, free((x)), (x)=NULL : (x)))
#else
#define XMALLOC(x,y) (char *)malloc((x))
#define XFREE(x,y) (free((x)), (x) = NULL)
#endif /* TEST_MALLOC */
#ifdef MSTATS
struct mstats_value
{
int blocksize;
int nfree;
int nused;
};
#endif /* MSTATS */
#define LBUF_SIZE 4000
#define MBUF_SIZE 200
#define SBUF_SIZE 32
#define MA_CACHE_WIDTH 4 /* Number of leaves in a MA cache entry */
#endif /* CONFIG_H */