]> git.pond.sub.org Git - empserver/blob - src/lib/subs/paths.c
(getpath): Remove unused local variables.
[empserver] / src / lib / subs / paths.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  *  path.c: Routines associated with paths, directions, etc.
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 "path.h"
40 #include "nat.h"
41 #include "sect.h"
42 #include "file.h"
43 #include "prototypes.h"
44
45 int
46 chkdir(char dir_char, int min_dir, int max_dir)
47 {
48     int i;
49
50     for (i = min_dir; i <= max_dir; i++)
51         if (dir_char == dirch[i])
52             return i;
53     return -1;
54 }
55
56 void
57 direrr(char *stop_msg, char *view_msg, char *map_msg)
58 {
59     pr("Legal directions are:\n");
60     pr(" %c %c\n", dirch[DIR_UL], dirch[DIR_UR]);
61     pr("%c   %c\n", dirch[DIR_L], dirch[DIR_R]);
62     pr(" %c %c\n", dirch[DIR_DL], dirch[DIR_DR]);
63     if (stop_msg != 0)
64         pr(stop_msg, dirch[DIR_STOP]);
65     if (view_msg != 0)
66         pr(view_msg, dirch[DIR_VIEW]);
67     if (map_msg != 0)
68         pr(map_msg, dirch[DIR_MAP]);
69 }
70
71 /*
72  * Map direction DIR to a direction index DIR_STOP..DIR_LAST.
73  * DIR must be a valid direction.
74  */
75 int
76 diridx(char dir)
77 {
78     unsigned i = dir - 'a';
79
80     if (CANT_HAPPEN(i >= sizeof(dirindex) / sizeof(*dirindex)
81                     || dirindex[i] < 0))
82         return DIR_STOP;
83     return dirindex[i];
84 }
85
86 /*
87  * return pointer to path; prompt user until a stop char
88  * or a bomb char have been entered.  A "bomb" char in
89  * this context is actually "execute" for the partial
90  * move commands, and isn't valid for those commands
91  * which do not accept partial moves.
92  */
93 char *
94 getpath(char *buf, char *arg, coord x, coord y, int onlyown,
95         int showdes, enum p_mode destinations)
96 {
97     char buf2[1024];
98     char *p = buf;
99     char *bp;
100     char prompt[128];
101     coord dx, dy;
102     struct sctstr sect;
103     coord nx, ny;
104     int dir;
105
106     if (arg) {
107         strncpy(buf, arg, MAX_PATH_LEN - 1);
108         buf[MAX_PATH_LEN - 1] = 0;
109     } else {
110         *p = 0;
111     }
112
113     getsect(x, y, &sect);
114     nx = x;
115     ny = y;
116
117   more:
118     while (*p) {
119         if (sarg_xy(p, &dx, &dy)) {
120             bp = NULL;
121             switch (destinations) {
122             case P_NONE:
123                 pr("Destination sectors not allowed here!\n");
124                 break;
125             case P_FLYING:
126                 bp = BestAirPath(buf2, nx, ny, dx, dy);
127                 break;
128             case P_SAILING:
129                 bp = BestShipPath(buf2, nx, ny, dx, dy, player->cnum);
130                 break;
131             }
132             if (bp && p + strlen(bp) + 1 < buf + MAX_PATH_LEN) {
133                 strcpy(p, bp);
134                 pr("Using best path  '%s'\n", p);
135                 pr("Using total path '%s'\n", buf);
136                 return buf;
137             } else {
138                 pr("Can't get to %s from here!\n",
139                    xyas(dx, dy, player->cnum));
140             }
141             break;
142         }
143         dir = chkdir(*p, DIR_STOP, DIR_LAST);
144         if (dir < 0) {
145             pr("\"%c\" is not legal...", *p);
146             direrr("'%c' to stop\n", NULL, NULL);
147             break;
148         }
149         nx = x + diroff[dir][0];
150         ny = y + diroff[dir][1];
151         getsect(nx, ny, &sect);
152         if (onlyown && sect.sct_own != player->cnum) {
153             pr("You don't own %s; you can't go there!\n",
154                xyas(nx, ny, player->cnum));
155             break;
156         }
157         if (dir == DIR_STOP || dir == DIR_MAP) {
158             p[1] = 0;
159             return buf;
160         }
161         ++p;
162         x = nx;
163         y = ny;
164     }
165     fly_map(x, y);
166     if (showdes) {
167         getsect(x, y, &sect);
168         sprintf(prompt, "<%c: %s> ", dchr[sect.sct_type].d_mnem,
169                 xyas(x, y, player->cnum));
170     } else {
171         sprintf(prompt, "<%d: %s> ", (int)(p - buf),
172                 xyas(x, y, player->cnum));
173     }
174     bp = getstring(prompt, buf2);
175     if (bp && p + strlen(bp) + 1 >= buf + MAX_PATH_LEN) {
176         pr("Path length may not exceed %d.\n", MAX_PATH_LEN);
177         pr("Aborting...\n");
178         bp = NULL;
179     }
180     if (!bp)
181         return NULL;
182     strcpy(p, bp);
183     if (*bp)
184         goto more;
185     return buf;
186 }
187
188 /*
189  * fly move cost
190  */
191 /* ARGSUSED */
192 double
193 fcost(struct sctstr *sp, natid own)
194 {
195     return 1.0;
196 }
197
198 /*
199  * nav move cost
200  */
201 /* ARGSUSED */
202 double
203 ncost(struct sctstr *sp, natid own)
204 {
205     return 1.0;
206 }
207
208 /*
209  * return end x,y of path, and the base
210  * movement cost it takes to get there.
211  */
212 double
213 pathtoxy(char *path, coord *xp, coord *yp,
214          double (*cost)(struct sctstr *, natid))
215 {
216     struct sctstr s;
217     char *pp;
218     coord x;
219     coord y;
220     int val;
221     double m;
222
223     x = *xp;
224     y = *yp;
225     m = 0.0;
226     for (pp = path; *pp; pp++) {
227         if ((val = diridx(*pp)) == DIR_STOP)
228             break;
229         x += diroff[val][0];
230         y += diroff[val][1];
231         if (!getsect(x, y, &s))
232             return -1.0;
233         m += cost(&s, s.sct_own);
234     }
235     *xp = xnorm(x);
236     *yp = ynorm(y);
237     return m;
238 }
239
240 void
241 pathrange(coord cx, coord cy, char *pp, int border, struct range *range)
242 {
243     int dir;
244
245     range->lx = cx;
246     range->hx = cx;
247     range->ly = cy;
248     range->hy = cy;
249     range->width = 0;
250     range->height = 0;
251     for (; *pp; pp++) {
252         dir = diridx(*pp);
253         if (dir == DIR_STOP)
254             break;
255         cx += diroff[dir][0];
256         cy += diroff[dir][1];
257         if (cx < range->lx)
258             range->lx = cx;
259         if (cx > range->hx)
260             range->hx = cx;
261         if (cy < range->ly)
262             range->ly = cy;
263         if (cy > range->hy)
264             range->hy = cy;
265     }
266     range->lx = xnorm(range->lx - border * 2);
267     range->ly = ynorm(range->ly - border);
268     range->hx = xnorm(range->hx + border * 2 + 1);
269     range->hy = ynorm(range->hy + border + 1);
270     xysize_range(range);
271 }