]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - larn/tok.c
Move the playerids file to /var/games, as suggest by Rafal Boni.
[bsdgames-darwin.git] / larn / tok.c
1 #ifndef lint
2 static char rcsid[] = "$Id: tok.c,v 1.2 1993/08/02 17:20:22 mycroft Exp $";
3 #endif /* not lint */
4
5 /* tok.c Larn is copyrighted 1986 by Noah Morgan. */
6 #include <sys/types.h>
7 #ifdef SYSV
8 #include <fcntl.h>
9 #include <termio.h>
10 #else SYSV
11 #include <sys/ioctl.h>
12 #endif SYSV
13 #include "header.h"
14
15 static char lastok=0;
16 int yrepcount=0,dayplay=0;
17 #ifndef FLUSHNO
18 #define FLUSHNO 5
19 #endif FLUSHNO
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 */
25
26 /*
27 lexical analyzer for larn
28 */
29 yylex()
30 {
31 char cc;
32 int ic;
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 */
36 lflush();
37 while (1)
38 {
39 c[BYTESIN]++;
40 if (ckpflag)
41 if ((c[BYTESIN] % 400) == 0) /* check for periodic checkpointing */
42 {
43 #ifndef DOCHECKPOINTS
44 savegame(ckpfile);
45 #else
46 wait(0); /* wait for other forks to finish */
47 if (fork() == 0) { savegame(ckpfile); exit(); }
48 #endif
49
50
51 #ifdef TIMECHECK
52 if (dayplay==0)
53 if (playable())
54 {
55 cursor(1,19);
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);
58 died(-257);
59 }
60 #endif TIMECHECK
61
62 }
63
64 do /* if keyboard input buffer is too big, flush some of it */
65 {
66 ioctl(0,FIONREAD,&ic);
67 if (ic>flushno) read(0,&cc,1);
68 }
69 while (ic>flushno);
70
71 if (read(0,&cc,1) != 1) return(lastok = -1);
72
73 if (cc == 'Y'-64) /* control Y -- shell escape */
74 {
75 resetscroll(); clear(); /* scrolling region, home, clear, no attributes */
76 if ((ic=fork())==0) /* child */
77 {
78 execl("/bin/csh",0); exit();
79 }
80 wait(0);
81 if (ic<0) /* error */
82 {
83 write(2,"Can't fork off a shell!\n",25); sleep(2);
84 }
85
86 setscroll();
87 return(lastok = 'L'-64); /* redisplay screen */
88 }
89
90 if ((cc <= '9') && (cc >= '0'))
91 { yrepcount = yrepcount*10 + cc - '0'; }
92 else { if (yrepcount>0) --yrepcount; return(lastok = cc); }
93 }
94 }
95
96 /*
97 * flushall() Function to flush all type-ahead in the input buffer
98 */
99 flushall()
100 {
101 char cc;
102 int ic;
103 for (;;) /* if keyboard input buffer is too big, flush some of it */
104 {
105 ioctl(0,FIONREAD,&ic);
106 if (ic<=0) return;
107 while (ic>0) { read(0,&cc,1); --ic; } /* gobble up the byte */
108 }
109 }
110
111 /*
112 function to set the desired hardness
113 enter with hard= -1 for default hardness, else any desired hardness
114 */
115 sethard(hard)
116 int hard;
117 {
118 register int j,k,i;
119 j=c[HARDGAME]; hashewon();
120 if (restorflag==0) /* don't set c[HARDGAME] if restoring game */
121 {
122 if (hard >= 0) c[HARDGAME]= hard;
123 }
124 else c[HARDGAME]=j; /* set c[HARDGAME] to proper value if restoring game */
125
126 if (k=c[HARDGAME])
127 for (j=0; j<=MAXMONST+8; j++)
128 {
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;
139 }
140 }
141
142 /*
143 function to read and process the larn options file
144 */
145 readopts()
146 {
147 register char *i;
148 register int j,k;
149 int flag;
150 flag=1; /* set to 0 if he specifies a name for his character */
151 if (lopen(optsfile) < 0)
152 {
153 strcpy(logname,loginname); return; /* user name if no character name */
154 }
155 i = " ";
156 while (*i)
157 {
158 if ((i=(char *)lgetw()) == 0) break; /* check for EOF */
159 while ((*i==' ') || (*i=='\t')) i++; /* eat leading whitespace */
160 switch(*i)
161 {
162 case 'b': if (strcmp(i,"bold-objects") == 0) boldon=1;
163 break;
164
165 case 'e': if (strcmp(i,"enable-checkpointing") == 0) ckpflag=1;
166 break;
167
168 case 'i': if (strcmp(i,"inverse-objects") == 0) boldon=0;
169 break;
170
171 case 'f': if (strcmp(i,"female") == 0) sex=0; /* male or female */
172 break;
173
174 case 'm': if (strcmp(i,"monster:")== 0) /* name favorite monster */
175 {
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]))
181 {
182 for (k=1; k<MAXMONST+8; k++) /* find monster */
183 if (monstnamelist[k] == j)
184 {
185 monster[k].name = &usermonster[usermpoint++][0];
186 break;
187 }
188 }
189 }
190 else if (strcmp(i,"male") == 0) sex=1;
191 break;
192
193 case 'n': if (strcmp(i,"name:") == 0) /* defining players name */
194 {
195 if ((i=lgetw())==0) break;
196 if (strlen(i)>=LOGNAMESIZE) i[LOGNAMESIZE-1]=0;
197 strcpy(logname,i); flag=0;
198 }
199 else if (strcmp(i,"no-introduction") == 0) nowelcome=1;
200 else if (strcmp(i,"no-beep") == 0) nobeep=1;
201 break;
202
203 case 'p': if (strcmp(i,"process-name:")== 0)
204 {
205 if ((i=lgetw())==0) break;
206 if (strlen(i)>=PSNAMESIZE) i[PSNAMESIZE-1]=0;
207 strcpy(psname,i);
208 }
209 else if (strcmp(i,"play-day-play") == 0) dayplay=1;
210 break;
211
212 case 's': if (strcmp(i,"savefile:") == 0) /* defining savefilename */
213 {
214 if ((i=lgetw())==0) break;
215 strcpy(savefilename,i); flag=0;
216 }
217 break;
218 };
219 }
220 if (flag) strcpy(logname,loginname);
221 }
222