2009-10-13 13:33:34 +00:00
|
|
|
/*
|
|
|
|
|
* machine dependicies
|
|
|
|
|
*
|
|
|
|
|
* %G% (Berkeley) %W%
|
|
|
|
|
*
|
|
|
|
|
* Rogue: Exploring the Dungeons of Doom
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Variables for checking to make sure the system isn't too loaded
|
|
|
|
|
* for people to play
|
|
|
|
|
*/
|
2009-12-29 12:45:38 +00:00
|
|
|
/* Comment out MAXLOAD or MAXUSERS to disable a check */
|
2009-10-13 13:33:34 +00:00
|
|
|
|
|
|
|
|
#define AUTHORUID 0
|
|
|
|
|
#define MAXUSERS 25 /* max number of users for this game */
|
|
|
|
|
#define MAXLOAD 40 /* 10 * max 15 minute load average */
|
|
|
|
|
#define CHECKTIME 15 /* number of minutes between load checks */
|
2009-11-11 12:28:25 +00:00
|
|
|
|
|
|
|
|
/* Locations of various files. Comment out to disable. */
|
|
|
|
|
/* The list of top ten scores. */
|
2012-01-24 18:25:21 +00:00
|
|
|
#define SCOREFILE "/var/local/games/roguelike/rogue3.scr"
|
2009-11-11 12:28:25 +00:00
|
|
|
/* A text file with a record of every game. */
|
2012-01-24 18:25:21 +00:00
|
|
|
#define LOGFILE "/var/local/games/roguelike/rogue3.log"
|
2009-11-11 12:28:25 +00:00
|
|
|
/* A standard location for saved games. */
|
2012-01-24 18:25:21 +00:00
|
|
|
#define SAVEDIR "/var/local/games/roguelike/rogue3save/"
|