X-Git-Url: https://git.yukkurigames.com/?p=rogue-pphs.git;a=blobdiff_plain;f=rogue.h;h=e3b2c849baff4fca2bb41e7bedbf7604551bf3e2;hp=b433321f791ca88af43f84abd23c9987a07c0b37;hb=HEAD;hpb=e72b287ac5cdb287c541bdc052d13823afe4930d diff --git a/rogue.h b/rogue.h index b433321..e3b2c84 100644 --- a/rogue.h +++ b/rogue.h @@ -3,13 +3,23 @@ * * @(#)rogue.h 3.38 (Berkeley) 6/15/81 * - * Rogue: Exploring the Dungeons of Doom + * Rogue: Exploring the Cavern of Cuties * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman * All rights reserved. * * See the file LICENSE.TXT for full copyright and licensing information. */ +#ifndef NULL +#define NULL ((void *)0) +#endif +#ifndef TRUE +#define TRUE 1 +#endif +#ifndef FALSE +#define FALSE 0 +#endif + /* * Maximum number of different things */ @@ -340,7 +350,8 @@ extern struct trap traps[MAXTRAPS]; #define NUM_FEATURES 6 #define MAYBE_INTERESTED 1 -#define INTERESTED 20 +#define INTERESTED 40 +#define READY 100 /* * Structure describing a fighting being @@ -443,7 +454,7 @@ extern int lastscore; /* Score before this turn */ extern int no_food; /* Number of levels without food */ extern int seed; /* Random number seed */ extern int count; /* Number of times to repeat command */ -extern int dnum; /* Dungeon number */ +extern int dnum; /* Cavern number */ extern int fung_hit; /* Number of time fungi has hit */ extern int quiet; /* Number of quiet turns */ extern int max_level; /* Deepest player has gone */