]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/hack.unix.c
1 /* $NetBSD: hack.unix.c,v 1.8 2001/03/25 20:44:03 jsm Exp $ */
4 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
9 __RCSID("$NetBSD: hack.unix.c,v 1.8 2001/03/25 20:44:03 jsm 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 */
45 (void) srandom((int) time((time_t *) 0));
54 return (localtime(&date
));
60 return (1900 + getlt()->tm_year
);
66 static char datestr
[7];
67 struct tm
*lt
= getlt();
69 (void) sprintf(datestr
, "%02d%02d%02d",
70 lt
->tm_year
% 100, lt
->tm_mon
+ 1, lt
->tm_mday
);
76 { /* 0-7, with 0: new, 4: full *//* moon
77 * period: 29.5306 days */
78 /* year: 365.2422 days */
79 struct tm
*lt
= getlt();
80 int epact
, diy
, golden
;
83 golden
= (lt
->tm_year
% 19) + 1;
84 epact
= (11 * golden
+ 18) % 30;
85 if ((epact
== 25 && golden
> 11) || epact
== 24)
88 return ((((((diy
+ epact
) * 6) + 11) % 177) / 22) & 7);
94 int hour
= getlt()->tm_hour
;
96 return (hour
< 6 || hour
> 21);
102 return (getlt()->tm_hour
== 0);
105 struct stat buf
, hbuf
;
112 /* old version - for people short of space */
116 if(stat(name
, &hbuf
))
117 error("Cannot get status of %s.",
118 (np
= strrchr(name
, '/')) ? np
+1 : name
);
120 /* version using PATH from: seismo!gregc@ucsf-cgl.ARPA (Greg Couch) */
124 * The problem with #include <sys/param.h> is that this include file
125 * does not exist on all systems, and moreover, that it sometimes includes
126 * <sys/types.h> again, so that the compiler sees these typedefs twice.
128 #define MAXPATHLEN 1024
130 const char *np
, *path
;
131 char filename
[MAXPATHLEN
+ 1];
132 if (strchr(name
, '/') != NULL
|| (path
= getenv("PATH")) == NULL
)
136 if ((np
= strchr(path
, ':')) == NULL
)
137 np
= path
+ strlen(path
); /* point to end str */
138 if (np
- path
<= 1) /* %% */
139 (void) strcpy(filename
, name
);
141 (void) strncpy(filename
, path
, np
- path
);
142 filename
[np
- path
] = '/';
143 (void) strcpy(filename
+ (np
- path
) + 1, name
);
145 if (stat(filename
, &hbuf
) == 0)
151 error("Cannot get status of %s.",
152 (np
= strrchr(name
, '/')) ? np
+ 1 : name
);
159 if (fstat(fd
, &buf
)) {
160 pline("Cannot get status of saved level? ");
163 if (buf
.st_mtime
< hbuf
.st_mtime
) {
164 pline("Saved level is out of date. ");
170 /* see whether we should throw away this xlock file */
179 return (0); /* cannot get status */
180 if (buf
.st_size
!= sizeof(int))
181 return (0); /* not an xlock file */
183 if (date
- buf
.st_mtime
< 3L * 24L * 60L * 60L) { /* recent */
184 int lockedpid
; /* should be the same size as
187 if (read(fd
, (char *) &lockedpid
, sizeof(lockedpid
)) !=
193 * From: Rick Adams <seismo!rick> This will work on
194 * 4.1cbsd, 4.2bsd and system 3? & 5. It will do nothing
197 if (!(kill(lockedpid
, 0) == -1 && errno
== ESRCH
))
201 for (i
= 1; i
<= MAXLEVEL
; i
++) { /* try to remove all */
207 return (0); /* cannot remove it */
208 return (1); /* success! */
216 (void) fflush(stdout
);
218 /* we ignore QUIT and INT at this point */
219 if (link(HLOCK
, LLOCK
) == -1) {
223 printf("Cannot link %s to %s\n", LLOCK
, HLOCK
);
226 printf("Perhaps there is no (empty) file %s ?\n", HLOCK
);
229 printf("It seems you don't have write permission here.\n");
232 printf("(Try again or rm %s.)\n", LLOCK
);
235 printf("I don't know what is wrong.");
250 if ((fd
= open(lock
, O_RDONLY
)) == -1) {
252 goto gotlock
; /* no such file */
254 (void) unlink(LLOCK
);
255 error("Cannot open %s", lock
);
257 if (veryold(fd
))/* if true, this closes fd and unlinks lock */
260 } while (i
< locknum
);
262 (void) unlink(LLOCK
);
263 error(locknum
? "Too many hacks running now."
264 : "There is a game in progress under your name.");
266 fd
= creat(lock
, FMASK
);
267 if (unlink(LLOCK
) == -1)
268 error("Cannot unlink %s.", LLOCK
);
270 error("cannot creat lock file.");
272 if (write(fd
, (char *) &hackpid
, sizeof(hackpid
))
273 != sizeof(hackpid
)) {
274 error("cannot write lock");
276 if (close(fd
) == -1) {
277 error("cannot close lock");
285 * Notify user when new mail has arrived. [Idea from Merlyn Leroy, but
286 * I don't know the details of his implementation.]
287 * { Later note: he disliked my calling a general mailreader and felt that
288 * hack should do the paging itself. But when I get mail, I want to put it
289 * in some folder, reply, etc. - it would be unreasonable to put all these
290 * functions in hack. }
291 * The mail daemon '2' is at present not a real monster, but only a visual
292 * effect. Thus, makemon() is superfluous. This might become otherwise,
293 * however. The motion of '2' is less restrained than usual: diagonal moves
294 * from a DOOR are possible. He might also use SDOOR's. Also, '2' is visible
295 * in a ROOM, even when you are Blind.
296 * Its path should be longer when you are Telepat-hic and Blind.
298 * Interesting side effects:
299 * - You can get rich by sending yourself a lot of mail and selling
300 * it to the shopkeeper. Unfortunately mail isn't very valuable.
301 * - You might die in case '2' comes along at a critical moment during
302 * a fight and delivers a scroll the weight of which causes you to
305 * Possible extensions:
306 * - Open the file MAIL and do fstat instead of stat for efficiency.
307 * (But sh uses stat, so this cannot be too bad.)
308 * - Examine the mail and produce a scroll of mail called "From somebody".
309 * - Invoke MAILREADER in such a way that only this single letter is read.
311 * - Make him lose his mail when a Nymph steals the letter.
312 * - Do something to the text when the scroll is enchanted or cancelled.
314 #include "def.mkroom.h"
315 static struct stat omstat
, nmstat
;
316 static char *mailbox
;
317 static long laststattime
;
322 if (!(mailbox
= getenv("MAIL")))
324 if (stat(mailbox
, &omstat
)) {
325 #ifdef PERMANENT_MAILBOX
326 pline("Cannot get status of MAIL=%s .", mailbox
);
330 #endif /* PERMANENT_MAILBOX */
339 || moves
< laststattime
+ MAILCKFREQ
340 #endif /* MAILCKFREQ */
343 laststattime
= moves
;
344 if (stat(mailbox
, &nmstat
)) {
345 #ifdef PERMANENT_MAILBOX
346 pline("Cannot get status of MAIL=%s anymore.", mailbox
);
350 #endif /* PERMANENT_MAILBOX */
351 } else if (nmstat
.st_mtime
> omstat
.st_mtime
) {
354 getmailstatus();/* might be too late ... */
361 /* produce a scroll of mail */
365 obj
= mksobj(SCR_MAIL
);
366 if (md
= makemon(&pm_mail_daemon
, u
.ux
, u
.uy
)) /* always succeeds */
369 pline("\"Hello, %s! I have some mail for you.\"", plname
);
371 if (dist(md
->mx
, md
->my
) > 2)
375 /* let him disappear again */
380 (void) identify(obj
); /* set known and do prinv() */
383 /* make md run through the cave */
389 int uroom
= inroom(u
.ux
, u
.uy
);
391 int tmp
= rooms
[uroom
].fdoor
;
392 int cnt
= rooms
[uroom
].doorct
;
393 int fx
= u
.ux
, fy
= u
.uy
;
395 if (dist(fx
, fy
) < dist(doors
[tmp
].x
, doors
[tmp
].y
)) {
401 tmp_at(-1, md
->data
->mlet
); /* open call */
402 if (away
) { /* interchange origin and destination */
411 while (fx
!= md
->mx
|| fy
!= md
->my
) {
412 int dx
, dy
, nfx
= fx
, nfy
= fy
, d1
,
416 d1
= DIST(fx
, fy
, md
->mx
, md
->my
);
417 for (dx
= -1; dx
<= 1; dx
++)
418 for (dy
= -1; dy
<= 1; dy
++)
420 d2
= DIST(fx
+ dx
, fy
+ dy
, md
->mx
, md
->my
);
427 if (nfx
!= fx
|| nfy
!= fy
) {
438 tmp_at(-1, -1); /* close call */
447 #ifdef DEF_MAILREADER /* This implies that UNIX is defined */
450 if (!(mr
= getenv("MAILREADER")))
453 execl(mr
, mr
, (char *) 0);
456 #else /* DEF_MAILREADER */
457 (void) page_file(mailbox
, FALSE
);
458 #endif /* DEF_MAILREADER */
460 * get new stat; not entirely correct: there is a small time window
461 * where we do not see new mail
468 regularize(s
) /* normalize file name - we don't like ..'s
474 while ((lp
= strchr(s
, '.')) || (lp
= strchr(s
, '/')))