DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T f

⟦b8830cd4e⟧ TextFile

    Length: 2142 (0x85e)
    Types: TextFile
    Names: »flag.h«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Nethack/flag.h« 

TextFile

/*	SCCS Id: @(#)flag.h	1.4	87/08/08
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* flag.h - version 1.0.3 */

struct flag {
	unsigned ident;		/* social security number for each monster */
	unsigned debug;		/* in debugging mode */
#define	wizard	flags.debug
	unsigned toplin;	/* a top line (message) has been printed */
				/* 0: top line empty; 2: no --More-- reqd. */
	unsigned cbreak;	/* in cbreak mode, rogue format */
	unsigned standout;	/* use standout for --More-- */
	unsigned nonull;	/* avoid sending nulls to the terminal */
	unsigned time;		/* display elapsed 'time' */
	unsigned nonews;	/* suppress news printing */
	unsigned notombstone;
	unsigned end_top, end_around;	/* describe desired score list */
	unsigned end_own;		/* idem (list all own scores) */
	unsigned no_rest_on_space;	/* spaces are ignored */
	unsigned beginner;
	unsigned female;
	unsigned invlet_constant;	/* let objects keep their
					   inventory symbol */
	unsigned move;
	unsigned mv;
	unsigned run;		/* 0: h (etc), 1: H (etc), 2: fh (etc) */
				/* 3: FH, 4: ff+, 5: ff-, 6: FF+, 7: FF- */
	unsigned nopick;	/* do not pickup objects */
	unsigned echo;		/* 1 to echo characters */
	unsigned botl;		/* partially redo status line */
	unsigned botlx;		/* print an entirely new bottom line */
	unsigned nscrinh;	/* inhibit nscr() in pline(); */
	unsigned made_amulet;
	unsigned no_of_wizards;	/* 0, 1 or 2 (wizard and his shadow) */
				/* reset from 2 to 1, but never to 0 */
	unsigned moonphase;
#define	NEW_MOON	0
#define	FULL_MOON	4

#ifdef SORTING
	unsigned sortpack;	/* sorted inventory */
#endif
#ifdef SAFE_ATTACK
	unsigned confirm;	/* confirm before hitting tame monsters */
#endif
#ifdef DGKMOD
	unsigned silent;	/* whether the bell rings or not */
	unsigned pickup;	/* whether you pickup or move and look */
#endif
#ifdef DGK
	unsigned IBMBIOS;	/* whether we can use a BIOS call for
				 * redrawing the screen and character input */
	unsigned DECRainbow;	/* Used for DEC Rainbow graphics. */
	unsigned rawio;		/* Whether can use rawio (IOCTL call) */
	unsigned extra1;
	unsigned extra2;
#endif
};

extern struct flag flags;