]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/hack.unix.c
1 /* $NetBSD: hack.unix.c,v 1.6 1999/04/25 19:08:34 kristerw Exp $ */
4 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
9 __RCSID("$NetBSD: hack.unix.c,v 1.6 1999/04/25 19:08:34 kristerw Exp $");
12 /* This file collects some Unix dependencies; hack.pager.c contains some more */
15 * The time is used for:
17 * - year on tombstone and yymmdd in record file
18 * - phase of the moon (various monsters react to NEW_MOON or FULL_MOON)
19 * - night and midnight (the undead are dangerous at midnight)
20 * - determination of what files are "very old"
24 #include <sys/types.h> /* for time_t and stat */
36 #include "hack.h" /* mainly for strchr() which depends on BSD */
43 (void) srandom((int) time((time_t *) 0));
52 return (localtime(&date
));
58 return (1900 + getlt()->tm_year
);
64 static char datestr
[7];
65 struct tm
*lt
= getlt();
67 (void) sprintf(datestr
, "%02d%02d%02d",
68 lt
->tm_year
% 100, lt
->tm_mon
+ 1, lt
->tm_mday
);
74 { /* 0-7, with 0: new, 4: full *//* moon
75 * period: 29.5306 days */
76 /* year: 365.2422 days */
77 struct tm
*lt
= getlt();
78 int epact
, diy
, golden
;
81 golden
= (lt
->tm_year
% 19) + 1;
82 epact
= (11 * golden
+ 18) % 30;
83 if ((epact
== 25 && golden
> 11) || epact
== 24)
86 return ((((((diy
+ epact
) * 6) + 11) % 177) / 22) & 7);
92 int hour
= getlt()->tm_hour
;
94 return (hour
< 6 || hour
> 21);
100 return (getlt()->tm_hour
== 0);
103 struct stat buf
, hbuf
;
110 /* old version - for people short of space */
114 if(stat(name
, &hbuf
))
115 error("Cannot get status of %s.",
116 (np
= strrchr(name
, '/')) ? np
+1 : name
);
118 /* version using PATH from: seismo!gregc@ucsf-cgl.ARPA (Greg Couch) */
122 * The problem with #include <sys/param.h> is that this include file
123 * does not exist on all systems, and moreover, that it sometimes includes
124 * <sys/types.h> again, so that the compiler sees these typedefs twice.
126 #define MAXPATHLEN 1024
129 char filename
[MAXPATHLEN
+ 1];
130 if (strchr(name
, '/') != NULL
|| (path
= getenv("PATH")) == NULL
)
134 if ((np
= strchr(path
, ':')) == NULL
)
135 np
= path
+ strlen(path
); /* point to end str */
136 if (np
- path
<= 1) /* %% */
137 (void) strcpy(filename
, name
);
139 (void) strncpy(filename
, path
, np
- path
);
140 filename
[np
- path
] = '/';
141 (void) strcpy(filename
+ (np
- path
) + 1, name
);
143 if (stat(filename
, &hbuf
) == 0)
149 error("Cannot get status of %s.",
150 (np
= strrchr(name
, '/')) ? np
+ 1 : name
);
157 if (fstat(fd
, &buf
)) {
158 pline("Cannot get status of saved level? ");
161 if (buf
.st_mtime
< hbuf
.st_mtime
) {
162 pline("Saved level is out of date. ");
168 /* see whether we should throw away this xlock file */
177 return (0); /* cannot get status */
178 if (buf
.st_size
!= sizeof(int))
179 return (0); /* not an xlock file */
181 if (date
- buf
.st_mtime
< 3L * 24L * 60L * 60L) { /* recent */
182 int lockedpid
; /* should be the same size as
185 if (read(fd
, (char *) &lockedpid
, sizeof(lockedpid
)) !=
191 * From: Rick Adams <seismo!rick> This will work on
192 * 4.1cbsd, 4.2bsd and system 3? & 5. It will do nothing
195 if (!(kill(lockedpid
, 0) == -1 && errno
== ESRCH
))
199 for (i
= 1; i
<= MAXLEVEL
; i
++) { /* try to remove all */
205 return (0); /* cannot remove it */
206 return (1); /* success! */
212 extern int hackpid
, locknum
;
215 (void) fflush(stdout
);
217 /* we ignore QUIT and INT at this point */
218 if (link(HLOCK
, LLOCK
) == -1) {
222 printf("Cannot link %s to %s\n", LLOCK
, HLOCK
);
225 printf("Perhaps there is no (empty) file %s ?\n", HLOCK
);
228 printf("It seems you don't have write permission here.\n");
231 printf("(Try again or rm %s.)\n", LLOCK
);
234 printf("I don't know what is wrong.");
249 if ((fd
= open(lock
, 0)) == -1) {
251 goto gotlock
; /* no such file */
253 (void) unlink(LLOCK
);
254 error("Cannot open %s", lock
);
256 if (veryold(fd
))/* if true, this closes fd and unlinks lock */
259 } while (i
< locknum
);
261 (void) unlink(LLOCK
);
262 error(locknum
? "Too many hacks running now."
263 : "There is a game in progress under your name.");
265 fd
= creat(lock
, FMASK
);
266 if (unlink(LLOCK
) == -1)
267 error("Cannot unlink %s.", LLOCK
);
269 error("cannot creat lock file.");
271 if (write(fd
, (char *) &hackpid
, sizeof(hackpid
))
272 != sizeof(hackpid
)) {
273 error("cannot write lock");
275 if (close(fd
) == -1) {
276 error("cannot close lock");
284 * Notify user when new mail has arrived. [Idea from Merlyn Leroy, but
285 * I don't know the details of his implementation.]
286 * { Later note: he disliked my calling a general mailreader and felt that
287 * hack should do the paging itself. But when I get mail, I want to put it
288 * in some folder, reply, etc. - it would be unreasonable to put all these
289 * functions in hack. }
290 * The mail daemon '2' is at present not a real monster, but only a visual
291 * effect. Thus, makemon() is superfluous. This might become otherwise,
292 * however. The motion of '2' is less restrained than usual: diagonal moves
293 * from a DOOR are possible. He might also use SDOOR's. Also, '2' is visible
294 * in a ROOM, even when you are Blind.
295 * Its path should be longer when you are Telepat-hic and Blind.
297 * Interesting side effects:
298 * - You can get rich by sending yourself a lot of mail and selling
299 * it to the shopkeeper. Unfortunately mail isn't very valuable.
300 * - You might die in case '2' comes along at a critical moment during
301 * a fight and delivers a scroll the weight of which causes you to
304 * Possible extensions:
305 * - Open the file MAIL and do fstat instead of stat for efficiency.
306 * (But sh uses stat, so this cannot be too bad.)
307 * - Examine the mail and produce a scroll of mail called "From somebody".
308 * - Invoke MAILREADER in such a way that only this single letter is read.
310 * - Make him lose his mail when a Nymph steals the letter.
311 * - Do something to the text when the scroll is enchanted or cancelled.
313 #include "def.mkroom.h"
314 static struct stat omstat
, nmstat
;
315 static char *mailbox
;
316 static long laststattime
;
321 if (!(mailbox
= getenv("MAIL")))
323 if (stat(mailbox
, &omstat
)) {
324 #ifdef PERMANENT_MAILBOX
325 pline("Cannot get status of MAIL=%s .", mailbox
);
329 #endif /* PERMANENT_MAILBOX */
338 || moves
< laststattime
+ MAILCKFREQ
339 #endif /* MAILCKFREQ */
342 laststattime
= moves
;
343 if (stat(mailbox
, &nmstat
)) {
344 #ifdef PERMANENT_MAILBOX
345 pline("Cannot get status of MAIL=%s anymore.", mailbox
);
349 #endif /* PERMANENT_MAILBOX */
350 } else if (nmstat
.st_mtime
> omstat
.st_mtime
) {
353 getmailstatus();/* might be too late ... */
360 /* produce a scroll of mail */
364 obj
= mksobj(SCR_MAIL
);
365 if (md
= makemon(&pm_mail_daemon
, u
.ux
, u
.uy
)) /* always succeeds */
368 pline("\"Hello, %s! I have some mail for you.\"", plname
);
370 if (dist(md
->mx
, md
->my
) > 2)
374 /* let him disappear again */
379 (void) identify(obj
); /* set known and do prinv() */
382 /* make md run through the cave */
388 int uroom
= inroom(u
.ux
, u
.uy
);
390 int tmp
= rooms
[uroom
].fdoor
;
391 int cnt
= rooms
[uroom
].doorct
;
392 int fx
= u
.ux
, fy
= u
.uy
;
394 if (dist(fx
, fy
) < dist(doors
[tmp
].x
, doors
[tmp
].y
)) {
400 tmp_at(-1, md
->data
->mlet
); /* open call */
401 if (away
) { /* interchange origin and destination */
410 while (fx
!= md
->mx
|| fy
!= md
->my
) {
411 int dx
, dy
, nfx
= fx
, nfy
= fy
, d1
,
415 d1
= DIST(fx
, fy
, md
->mx
, md
->my
);
416 for (dx
= -1; dx
<= 1; dx
++)
417 for (dy
= -1; dy
<= 1; dy
++)
419 d2
= DIST(fx
+ dx
, fy
+ dy
, md
->mx
, md
->my
);
426 if (nfx
!= fx
|| nfy
!= fy
) {
437 tmp_at(-1, -1); /* close call */
446 #ifdef DEF_MAILREADER /* This implies that UNIX is defined */
449 if (!(mr
= getenv("MAILREADER")))
452 execl(mr
, mr
, (char *) 0);
455 #else /* DEF_MAILREADER */
456 (void) page_file(mailbox
, FALSE
);
457 #endif /* DEF_MAILREADER */
459 * get new stat; not entirely correct: there is a small time window
460 * where we do not see new mail
467 regularize(s
) /* normalize file name - we don't like ..'s
473 while ((lp
= strchr(s
, '.')) || (lp
= strchr(s
, '/')))