/*
// ColdMUD was created and is copyright 1993, 1994 by Greg Hudson
//
// ColdX is a derivitive work, and is copyright 1995 by the ColdX Project.
// Full copyright information can be found in the file doc/CREDITS
//
// File:        defs.h
// Version:     0.1-5
// Last Edited: 29 Jul 1995
//
// ---
//
// Generic definitions, these usually dont change
*/

/* Number of ticks a method gets before dying with an E_TICKS. */
#define METHOD_TICKS		20000

/* Number of ticks a paused method gets before dying with an E_TICKS */
#define PAUSED_METHOD_TICKS     5000

/* Maximum depth of method calls. */
#define MAX_CALL_DEPTH		128

/* Width and depth of object cache. (7 and 23 are defaults) */
#define CACHE_WIDTH	15
#define CACHE_DEPTH	30

/* Default indent for decompiled code. */
#define DEFAULT_INDENT	4

/* Maximum number of characters of a data value to display using format(). */
#define MAX_DATA_DISPLAY 15

#define INV_OBJNUM	-1
#define SYSTEM_DBREF	0
#define ROOT_DBREF	1

/* sizes */

#define WORD   32
#define LINE   80
#define BUF    256
#define BIGBUF 1024
#define IOBUF  8192