Initial import from FreeBSD RELENG_4:
[dragonfly.git] / games / trek / srscan.c
1 /*
2  * Copyright (c) 1980, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 #if 0
36 static char sccsid[] = "@(#)srscan.c    8.1 (Berkeley) 5/31/93";
37 #endif
38 static const char rcsid[] =
39  "$FreeBSD: src/games/trek/srscan.c,v 1.4 1999/11/30 03:49:55 billf Exp $";
40 #endif /* not lint */
41
42 # include       "trek.h"
43 # include       "getpar.h"
44
45 /*
46 **  SHORT RANGE SENSOR SCAN
47 **
48 **      A short range scan is taken of the current quadrant.  If the
49 **      flag 'f' is one, it is an "auto srscan", which is not done
50 **      unless in 'fast' mode.  It does a status report and a srscan.
51 **      If 'f' is -1, you get a status report only.  If it is zero,
52 **      you get a srscan and an optional status report.  The status
53 **      report is taken if you enter "srscan yes"; for all srscans
54 **      thereafter you get a status report with your srscan until
55 **      you type "srscan no".  It defaults to on.
56 **
57 **      The current quadrant is filled in on the computer chart.
58 */
59
60 char    *Color[4] =
61 {
62         "GREEN",
63         "DOCKED",
64         "YELLOW",
65         "RED"
66 };
67
68 srscan(f)
69 int     f;
70 {
71         int             i, j;
72         int             statinfo;
73         char                    *s;
74         int                     percent;
75         struct quad             *q;
76         extern struct cvntab    Skitab[];
77         extern struct cvntab    Lentab[];
78         struct cvntab           *p;
79
80         if (f >= 0 && check_out(SRSCAN))
81         {
82                 return;
83         }
84         if (f)
85                 statinfo = 1;
86         else
87         {
88                 if (!testnl())
89                         Etc.statreport = getynpar("status report");
90                 statinfo = Etc.statreport;
91         }
92         if (f > 0)
93         {
94                 Etc.statreport = 1;
95                 if (!Etc.fast)
96                         return;
97         }
98         if (f >= 0)
99         {
100                 printf("\nShort range sensor scan\n");
101                 q = &Quad[Ship.quadx][Ship.quady];
102                 q->scanned = q->klings * 100 + q->bases * 10 + q->stars;
103                 printf("  ");
104                 for (i = 0; i < NSECTS; i++)
105                 {
106                         printf("%d ", i);
107                 }
108                 printf("\n");
109         }
110
111         for (i = 0; i < NSECTS; i++)
112         {
113                 if (f >= 0)
114                 {
115                         printf("%d ", i);
116                         for (j = 0; j < NSECTS; j++)
117                                 printf("%c ", Sect[i][j]);
118                         printf("%d", i);
119                         if (statinfo)
120                                 printf("   ");
121                 }
122                 if (statinfo)
123                         switch (i)
124                         {
125                           case 0:
126                                 printf("stardate      %.2f", Now.date);
127                                 break;
128                           case 1:
129                                 printf("condition     %s", Color[Ship.cond]);
130                                 if (Ship.cloaked)
131                                         printf(", CLOAKED");
132                                 break;
133                           case 2:
134                                 printf("position      %d,%d/%d,%d",Ship.quadx, Ship.quady, Ship.sectx, Ship.secty);
135                                 break;
136                           case 3:
137                                 printf("warp factor   %.1f", Ship.warp);
138                                 break;
139                           case 4:
140                                 printf("total energy  %d", Ship.energy);
141                                 break;
142                           case 5:
143                                 printf("torpedoes     %d", Ship.torped);
144                                 break;
145                           case 6:
146                                 s = "down";
147                                 if (Ship.shldup)
148                                         s = "up";
149                                 if (damaged(SHIELD))
150                                         s = "damaged";
151                                 percent = 100.0 * Ship.shield / Param.shield;
152                                 printf("shields       %s, %d%%", s, percent);
153                                 break;
154                           case 7:
155                                 printf("Klingons left %d", Now.klings);
156                                 break;
157                           case 8:
158                                 printf("time left     %.2f", Now.time);
159                                 break;
160                           case 9:
161                                 printf("life support  ");
162                                 if (damaged(LIFESUP))
163                                 {
164                                         printf("damaged, reserves = %.2f", Ship.reserves);
165                                         break;
166                                 }
167                                 printf("active");
168                                 break;
169                         }
170                 printf("\n");
171         }
172         if (f < 0)
173         {
174                 printf("current crew  %d\n", Ship.crew);
175                 printf("brig space    %d\n", Ship.brigfree);
176                 printf("Klingon power %d\n", Param.klingpwr);
177                 p = &Lentab[Game.length - 1];
178                 if (Game.length > 2)
179                         p--;
180                 printf("Length, Skill %s%s, ", p->abrev, p->full);
181                 p = &Skitab[Game.skill - 1];
182                 printf("%s%s\n", p->abrev, p->full);
183                 return;
184         }
185         printf("  ");
186         for (i = 0; i < NSECTS; i++)
187                 printf("%d ", i);
188         printf("\n");
189
190         if (q->qsystemname & Q_DISTRESSED)
191                 printf("Distressed ");
192         if (q->qsystemname)
193                 printf("Starsystem %s\n", systemname(q));
194 }