]> git.pond.sub.org Git - empserver/blob - src/lib/commands/surv.c
49ebd97cfeac899113e1532a0bbf15dc83e39487
[empserver] / src / lib / commands / surv.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  surv.c: Show sector survey
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  */
33
34 #include <ctype.h>
35 #include "misc.h"
36 #include "player.h"
37 #include "var.h"
38 #include "sect.h"
39 #include "xy.h"
40 #include "nsc.h"
41 #include "file.h"
42 #include "nat.h"
43 #include "map.h"
44 #include "commands.h"
45 #include "optlist.h"
46
47 static char code_char(struct valstr, struct sctstr *sp);
48
49 /*
50  * survey type <sarg> ?cond
51  *
52  */
53 int
54 surv(void)
55 {
56     int nsect;
57     struct nstr_sect nstr;
58     int y;
59     struct valstr val;
60     struct natstr *np;
61     struct sctstr sect;
62     struct range range;
63     s_char *ptr;
64     struct nscstr cond[NS_NCOND];
65     int ncond;
66     int i;
67     s_char what[64];
68     s_char buf[1024];
69     s_char *str;
70     /* Note this is not re-entrant anyway, so we keep the buffers
71        around */
72     static s_char *mapbuf = (s_char *)0;
73     static s_char **map = (s_char **)0;
74
75     nsect = 0;
76     if ((ptr = getstarg(player->argp[1], "commodity or variable? ", buf)) == 0)
77         return RET_SYN;
78     ptr = nstr_comp_val(ptr, &val, EF_SECTOR);
79     if (!ptr)
80         return RET_SYN;
81     if (val.val_cat != NSC_OFF || nstr_coerce_val(&val, NSC_LONG, NULL) < 0) {
82         pr("Can't survey this\n");
83         return RET_SYN;
84     }
85     for (; isspace(*ptr); ++ptr) ;
86     if (*ptr)
87         return RET_SYN;
88     if (player->argp[2] == (s_char *)0) {
89         if ((str = getstring("(sects)? ", buf)) == 0)
90             return RET_SYN;
91     } else {
92         str = player->argp[2];
93     }
94     if (*str == '*') {
95         sprintf(what, "%d:%d,%d:%d",
96                 -WORLD_X / 2, WORLD_X / 2 - 1,
97                 -WORLD_Y / 2, WORLD_Y / 2 - 1);
98         if (!snxtsct(&nstr, what))
99             return RET_FAIL;
100     } else if (!snxtsct(&nstr, str))
101         return RET_SYN;
102     if (!mapbuf)
103         mapbuf = malloc((WORLD_Y * MAPWIDTH(1)) * sizeof(s_char));
104     if (!map) {
105         map = malloc(WORLD_Y * sizeof(s_char *));
106         if (map && mapbuf) {
107             for (i = 0; i < WORLD_Y; i++)
108                 map[i] = &mapbuf[MAPWIDTH(1) * i];
109         } else if (map) {
110             free((s_char *)map);
111             map = (s_char **)0;
112         }
113     }
114     if (!mapbuf || !map) {
115         pr("Memory error, tell the deity.\n");
116         logerror("malloc failed in sect\n");
117         return RET_FAIL;
118     }
119     ncond = nstr.ncond;
120     memcpy(cond, nstr.cond, sizeof(struct nscstr) * ncond);
121     nstr.ncond = 0;
122     np = getnatp(player->cnum);
123     xyrelrange(np, &nstr.range, &range);
124     border(&range, "     ", "");
125     blankfill((s_char *)mapbuf, &nstr.range, 1);
126     while (nxtsct(&nstr, &sect)) {
127         if (!player->owner)
128             continue;
129         ptr = &map[nstr.dy][nstr.dx];
130         if (nstr_exec(cond, ncond, &sect)) {
131             ++nsect;
132             *ptr = 0x80 | code_char(val, &sect);
133         } else {
134             *ptr = dchr[sect.sct_type].d_mnem;
135         }
136     }
137     for (y = nstr.range.ly, i = 0; i < nstr.range.height; y++, i++) {
138         int yval;
139
140         yval = yrel(np, y);
141         pr("%4d %s %4d\n", yval, map[i], yval);
142         if (y >= WORLD_Y)
143             y -= WORLD_Y;
144     }
145     border(&range, "     ", "");
146     if (nsect > 0)
147         pr("\n%d sector%s.\n", nsect, splur(nsect));
148     return RET_OK;
149 }
150
151 static char
152 code_char(struct valstr val, struct sctstr *sp)
153 {
154     int amt;
155     int n;
156     int large = val.val_type != NSC_CHAR && val.val_type != NSC_UCHAR;
157
158     nstr_exec_val(&val, player->cnum, sp, NSC_LONG);
159     amt = val.val_as.lng;
160     if (amt <= 0)
161         return ' ';
162     n = amt / (large ? 100 : 10);
163     if (n >= 10)
164         return '$';
165     return "0123456789"[n];
166 }