]> git.pond.sub.org Git - empserver/blob - src/lib/commands/rout.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / commands / rout.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  rout.c: Show empire deliver routes
29  * 
30  *  Known contributors to this file:
31  *     
32  */
33
34 #include <config.h>
35
36 #include "misc.h"
37 #include "player.h"
38 #include "xy.h"
39 #include "nat.h"
40 #include "nsc.h"
41 #include "sect.h"
42 #include "item.h"
43 #include "path.h"
44 #include "file.h"
45 #include "map.h"
46 #include "commands.h"
47 #include "optlist.h"
48
49 int
50 rout(void)
51 {
52     struct ichrstr *ip;
53     struct nstr_sect ns;
54     struct natstr *natp;
55     struct sctstr sect;
56     struct nscstr cond[NS_NCOND];
57     int ncond;
58     struct range relrange;
59     int row;
60     int y;
61     int ry;
62     i_type i_del;
63     int dir;
64     s_char *p;
65     s_char what[64];
66     s_char *str;
67     s_char buf1[1024];
68     /* Note this is not re-entrant anyway, so we keep the buffers
69        around */
70     static s_char *mapbuf = (s_char *)0;
71     static s_char **map = (s_char **)0;
72     static s_char *buf = (s_char *)0;
73     int i;
74
75     if ((ip = whatitem(player->argp[1], "What item? ")) == 0)
76         return RET_SYN;
77     i_del = ip->i_vtype;;
78     if (player->argp[2] == NULL) {
79         if ((str = getstring("(sects)? ", buf1)) == 0)
80             return RET_SYN;
81     } else {
82         str = player->argp[2];
83     }
84     if (*str == '*') {
85         sprintf(what, "%d:%d,%d:%d",
86                 -WORLD_X / 2, WORLD_X / 2 - 1,
87                 -WORLD_Y / 2, WORLD_Y / 2 - 1);
88         if (!snxtsct(&ns, what))
89             return RET_FAIL;
90     } else if (!snxtsct(&ns, str))
91         return RET_FAIL;
92     if (!mapbuf)
93         mapbuf = malloc((WORLD_Y * MAPWIDTH(3)) * sizeof(s_char));
94     if (!map) {
95         map = malloc(WORLD_Y * sizeof(s_char *));
96         if (map && mapbuf) {
97             for (i = 0; i < WORLD_Y; i++)
98                 map[i] = &mapbuf[MAPWIDTH(3) * i];
99         } else if (map) {
100             free(map);
101             map = (s_char **)0;
102         }
103     }
104     if (!buf)
105         buf = malloc((MAPWIDTH(3) + 12) * sizeof(s_char));
106     if (!mapbuf || !map || !buf) {
107         pr("Memory error, tell the deity.\n");
108         logerror("malloc failed in rout\n");
109         return RET_FAIL;
110     }
111     ncond = ns.ncond;
112     memcpy(cond, ns.cond, sizeof(struct nscstr) * ncond);
113     ns.ncond = 0;
114
115     natp = getnatp(player->cnum);
116     xyrelrange(natp, &ns.range, &relrange);
117     memset(mapbuf, 0, ((WORLD_Y * MAPWIDTH(3))));
118     blankfill((s_char *)mapbuf, &ns.range, 3);
119     border(&relrange, "     ", " ");
120
121     while (nxtsct(&ns, &sect)) {
122         if (!player->owner)
123             continue;
124         p = &map[ns.dy][ns.dx * 2];
125         if ((dir = sect.sct_del[i_del] & 0x7) &&
126             nstr_exec(cond, ncond, &sect))
127             memcpy(p, routech[dir][0], 3);
128         p[1] = dchr[sect.sct_type].d_mnem;
129     }
130     for (row = 0, y = ns.range.ly; row < ns.range.height; y++, row++) {
131         ry = yrel(natp, y);
132         memset(buf, 0, (MAPWIDTH(3) + 10));
133         sprintf(buf, "%4d ", ry);
134         memcpy(buf + 5, map[row], ns.range.width * 2 + 1);
135         sprintf(buf + 5 + ns.range.width * 2 + 1, " %-4d\n", ry);
136         pr("%s", buf);
137         if (y >= WORLD_Y)
138             y -= WORLD_Y;
139     }
140     border(&relrange, "     ", " ");
141     return RET_OK;
142 }