Source:NetHack 3.2.0/epri.h

From NetHackWiki
(Redirected from NetHack 3.2.0/epri.h)
Jump to navigation Jump to search

Below is the full text to epri.h from the source code of NetHack 3.2.0. To link to a particular line, write [[NetHack 3.2.0/epri.h#line123]], for example.

Warning! This is the source code from an old release. For the latest release, see Source code

The NetHack General Public License applies to screenshots, source code and other content from NetHack.

This content was modified from the original NetHack source code distribution (by splitting up NetHack content between wiki pages, and possibly further editing). See the page history for a list of who changed it, and on what dates.

1.    /*	SCCS Id: @(#)epri.h	3.2	90/02/22	*/
2.    /* Copyright (c) Izchak Miller, 1989.				  */
3.    /* NetHack may be freely redistributed.  See license for details. */
4.    
5.    #ifndef EPRI_H
6.    #define EPRI_H
7.    
8.    #ifndef DUNGEON_H
9.    #include "dungeon.h"	/* nested #include "align.h" */
10.   #endif
11.   
12.   struct epri {
13.   	aligntyp shralign;	/* alignment of priest's shrine */
14.   				/* leave as first field to match emin */
15.   	schar shroom;		/* index in rooms */
16.   	coord shrpos;		/* position of shrine */
17.   	d_level shrlevel;	/* level (& dungeon) of shrine */
18.   };
19.   
20.   #define EPRI(mon)	((struct epri *)&(mon)->mextra[0])
21.   
22.   /* A priest without ispriest is a roaming priest without a shrine, so
23.    * the fields (except shralign, which becomes only the priest alignment)
24.    * are available for reuse.
25.    */
26.   #define renegade shroom
27.   
28.   #endif /* EPRI_H */