Mercurial > hg > early-roguelike
annotate rogue3/machdep.h @ 48:ea960351de17
rogue5: DESTDIR is not needed in config.h.
author | elwin |
---|---|
date | Fri, 07 Oct 2011 22:26:51 +0000 |
parents | da77eb183951 |
children | c6d58901ddc0 |
rev | line source |
---|---|
0
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
1 /* |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
2 * machine dependicies |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
3 * |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
4 * %G% (Berkeley) %W% |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
5 * |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
6 * Rogue: Exploring the Dungeons of Doom |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
7 * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
8 * All rights reserved. |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
9 * |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
10 * See the file LICENSE.TXT for full copyright and licensing information. |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
11 */ |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
12 |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
13 /* |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
14 * Variables for checking to make sure the system isn't too loaded |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
15 * for people to play |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
16 */ |
29
da77eb183951
rogue3: allow load and user count checks to be compiled out
edwarj4
parents:
20
diff
changeset
|
17 /* Comment out MAXLOAD or MAXUSERS to disable a check */ |
0
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
18 |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
19 #define AUTHORUID 0 |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
20 #define MAXUSERS 25 /* max number of users for this game */ |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
21 #define MAXLOAD 40 /* 10 * max 15 minute load average */ |
527e2150eaf0
Import Rogue 3.6 from the Roguelike Restoration Project (r1490)
edwarj4
parents:
diff
changeset
|
22 #define CHECKTIME 15 /* number of minutes between load checks */ |
20
bbf072f8bafa
rogue3: move file locations from Makefile to machdep.h
edwarj4
parents:
0
diff
changeset
|
23 |
bbf072f8bafa
rogue3: move file locations from Makefile to machdep.h
edwarj4
parents:
0
diff
changeset
|
24 /* Locations of various files. Comment out to disable. */ |
bbf072f8bafa
rogue3: move file locations from Makefile to machdep.h
edwarj4
parents:
0
diff
changeset
|
25 /* The list of top ten scores. */ |
bbf072f8bafa
rogue3: move file locations from Makefile to machdep.h
edwarj4
parents:
0
diff
changeset
|
26 #define SCOREFILE "/usr/local/games/roguelike/rogue3.scr" |
bbf072f8bafa
rogue3: move file locations from Makefile to machdep.h
edwarj4
parents:
0
diff
changeset
|
27 /* A text file with a record of every game. */ |
bbf072f8bafa
rogue3: move file locations from Makefile to machdep.h
edwarj4
parents:
0
diff
changeset
|
28 #define LOGFILE "/usr/local/games/roguelike/rogue3.log" |
bbf072f8bafa
rogue3: move file locations from Makefile to machdep.h
edwarj4
parents:
0
diff
changeset
|
29 /* A standard location for saved games. */ |
bbf072f8bafa
rogue3: move file locations from Makefile to machdep.h
edwarj4
parents:
0
diff
changeset
|
30 #define SAVEDIR "/usr/local/games/roguelike/rogue3save/" |