]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - larn/tok.c
2 static char rcsid
[] = "$Id: tok.c,v 1.2 1993/08/02 17:20:22 mycroft Exp $";
5 /* tok.c Larn is copyrighted 1986 by Noah Morgan. */
11 #include <sys/ioctl.h>
16 int yrepcount
=0,dayplay
=0;
20 static int flushno
=FLUSHNO
; /* input queue flushing threshold */
21 #define MAXUM 52 /* maximum number of user re-named monsters */
22 #define MAXMNAME 40 /* max length of a monster re-name */
23 static char usermonster
[MAXUM
][MAXMNAME
]; /* the user named monster name goes here */
24 static char usermpoint
=0; /* the user monster pointer */
27 lexical analyzer for larn
33 if (hit2flag
) { hit2flag
=0; yrepcount
=0; return(' '); }
34 if (yrepcount
>0) { --yrepcount
; return(lastok
); } else yrepcount
=0;
35 if (yrepcount
==0) { bottomdo(); showplayer(); } /* show where the player is */
41 if ((c
[BYTESIN
] % 400) == 0) /* check for periodic checkpointing */
46 wait(0); /* wait for other forks to finish */
47 if (fork() == 0) { savegame(ckpfile
); exit(); }
56 lprcat("\nSorry, but it is now time for work. Your game has been saved.\n"); beep();
57 lflush(); savegame(savefilename
); wizard
=nomove
=1; sleep(4);
64 do /* if keyboard input buffer is too big, flush some of it */
66 ioctl(0,FIONREAD
,&ic
);
67 if (ic
>flushno
) read(0,&cc
,1);
71 if (read(0,&cc
,1) != 1) return(lastok
= -1);
73 if (cc
== 'Y'-64) /* control Y -- shell escape */
75 resetscroll(); clear(); /* scrolling region, home, clear, no attributes */
76 if ((ic
=fork())==0) /* child */
78 execl("/bin/csh",0); exit();
83 write(2,"Can't fork off a shell!\n",25); sleep(2);
87 return(lastok
= 'L'-64); /* redisplay screen */
90 if ((cc
<= '9') && (cc
>= '0'))
91 { yrepcount
= yrepcount
*10 + cc
- '0'; }
92 else { if (yrepcount
>0) --yrepcount
; return(lastok
= cc
); }
97 * flushall() Function to flush all type-ahead in the input buffer
103 for (;;) /* if keyboard input buffer is too big, flush some of it */
105 ioctl(0,FIONREAD
,&ic
);
107 while (ic
>0) { read(0,&cc
,1); --ic
; } /* gobble up the byte */
112 function to set the desired hardness
113 enter with hard= -1 for default hardness, else any desired hardness
119 j
=c
[HARDGAME
]; hashewon();
120 if (restorflag
==0) /* don't set c[HARDGAME] if restoring game */
122 if (hard
>= 0) c
[HARDGAME
]= hard
;
124 else c
[HARDGAME
]=j
; /* set c[HARDGAME] to proper value if restoring game */
127 for (j
=0; j
<=MAXMONST
+8; j
++)
129 i
= ((6+k
)*monster
[j
].hitpoints
+1)/6;
130 monster
[j
].hitpoints
= (i
<0) ? 32767 : i
;
131 i
= ((6+k
)*monster
[j
].damage
+1)/5;
132 monster
[j
].damage
= (i
>127) ? 127 : i
;
133 i
= (10*monster
[j
].gold
)/(10+k
);
134 monster
[j
].gold
= (i
>32767) ? 32767 : i
;
135 i
= monster
[j
].armorclass
- k
;
136 monster
[j
].armorclass
= (i
< -127) ? -127 : i
;
137 i
= (7*monster
[j
].experience
)/(7+k
) + 1;
138 monster
[j
].experience
= (i
<=0) ? 1 : i
;
143 function to read and process the larn options file
150 flag
=1; /* set to 0 if he specifies a name for his character */
151 if (lopen(optsfile
) < 0)
153 strcpy(logname
,loginname
); return; /* user name if no character name */
158 if ((i
=(char *)lgetw()) == 0) break; /* check for EOF */
159 while ((*i
==' ') || (*i
=='\t')) i
++; /* eat leading whitespace */
162 case 'b': if (strcmp(i
,"bold-objects") == 0) boldon
=1;
165 case 'e': if (strcmp(i
,"enable-checkpointing") == 0) ckpflag
=1;
168 case 'i': if (strcmp(i
,"inverse-objects") == 0) boldon
=0;
171 case 'f': if (strcmp(i
,"female") == 0) sex
=0; /* male or female */
174 case 'm': if (strcmp(i
,"monster:")== 0) /* name favorite monster */
176 if ((i
=lgetw())==0) break;
177 if (strlen(i
)>=MAXMNAME
) i
[MAXMNAME
-1]=0;
178 strcpy(usermonster
[usermpoint
],i
);
179 if (usermpoint
>= MAXUM
) break; /* defined all of em */
180 if (isalpha(j
=usermonster
[usermpoint
][0]))
182 for (k
=1; k
<MAXMONST
+8; k
++) /* find monster */
183 if (monstnamelist
[k
] == j
)
185 monster
[k
].name
= &usermonster
[usermpoint
++][0];
190 else if (strcmp(i
,"male") == 0) sex
=1;
193 case 'n': if (strcmp(i
,"name:") == 0) /* defining players name */
195 if ((i
=lgetw())==0) break;
196 if (strlen(i
)>=LOGNAMESIZE
) i
[LOGNAMESIZE
-1]=0;
197 strcpy(logname
,i
); flag
=0;
199 else if (strcmp(i
,"no-introduction") == 0) nowelcome
=1;
200 else if (strcmp(i
,"no-beep") == 0) nobeep
=1;
203 case 'p': if (strcmp(i
,"process-name:")== 0)
205 if ((i
=lgetw())==0) break;
206 if (strlen(i
)>=PSNAMESIZE
) i
[PSNAMESIZE
-1]=0;
209 else if (strcmp(i
,"play-day-play") == 0) dayplay
=1;
212 case 's': if (strcmp(i
,"savefile:") == 0) /* defining savefilename */
214 if ((i
=lgetw())==0) break;
215 strcpy(savefilename
,i
); flag
=0;
220 if (flag
) strcpy(logname
,loginname
);