]> git.pond.sub.org Git - empserver/blob - src/lib/common/bestpath.c
Update copyright notice.
[empserver] / src / lib / common / bestpath.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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  *  bestpath.c: Find the best path between sectors
29  * 
30  *  Known contributors to this file:
31  *     Steve McClure, 1998-2000
32  */
33
34 /* 
35  * IMPORTANT: These routines are very selectively used in the server.
36  *
37  * "bestpath" is now obsolete (and removed)
38  * "bestownedpath" is only used to determine paths for ships and planes.
39  * 
40  * Callers should not be calling these directly anymore. They should use
41  * the "BestShipPath", "BestAirPath", "BestLandPath" and "BestDistPath"
42  * functions.  Note that those last two use the A* algorithms to find
43  * information.
44  */
45
46 #include "gamesdef.h"
47 #include "misc.h"
48 #include "xy.h"
49 #include "var.h"
50 #include "sect.h"
51 #include "file.h"
52 #include "nat.h"
53 #include "common.h"
54 #include "optlist.h"
55
56 static int owned_and_navigable(s_char *, int, int, s_char *, int);
57
58 #define MAXROUTE        100     /* return '?' if path longer than this */
59 #define valid(x,y)      (((x^y)&1)==0)
60
61 /* ________________________________________________________________
62 **
63 **  bestpath(x1,y1,x2,y2,(s_char *)terrain);
64 **
65 **  Calculate routing string to get from sector [x1,y1] to sector [x2,y2]
66 **  via a specified type of terrain.
67 **
68 **  Specify:
69 **
70 **      x1,y1        starting coordinates
71 **
72 **      x2,y2        destination coordinates
73 **
74 **      terrain      ptr to string showing the types of sectors that
75 **                   we're allowed to pass through:
76 **
77 **                   A null string enables routing through any kind of
78 **                   sector (useful for airplanes).
79 **
80 **                   A string that begins with an 'R' ensures that
81 **                   the source and destination sectors also match
82 **                   the specified type of terrain.
83 **
84 **                   A string that begins with a '~' (after the 'R',
85 **                   if necessary) specifies that we can pass through
86 **                   any kind of sector EXCEPT those in the remainder
87 **                   of the string.
88 **
89 **                   Examples:
90 **
91 **                      "R~.^"  all sectors along route must be
92 **                              non-ocean, non-mountain
93 **
94 **                      "+"     all sectors between start and end
95 **                              must be highway
96 **
97 **                      "h. "   all sectors along route must be
98 **                              harbor, water, or unmapped
99 **
100 **  'bestpath' returns a pointer to a route string containing either:
101 **
102 **     yugjbn - string of normal routing characters if route possible
103 **     ?      - if route is longer than MAXROUTE characters
104 **     \0     - (null string) if no route possible
105 **     h      - if start and end points are the same sector
106 ** ________________________________________________________________
107 */
108
109 s_char *dirchar = "juygbn";
110 int dx[6] = { 2, 1, -1, -2, -1, 1 };
111 int dy[6] = { 0, -1, -1, 0, 1, 1 };
112
113 /*
114  * Ok, note that here we malloc some buffers.  BUT, we never
115  * free them.  Why, you may ask?  Because we want to allocate
116  * them based on world size which is now (or soon to be) dynamic,
117  * but we don't want to allocate each and every time, since that
118  * would be slow.  And, since world size only changes at init
119  * time, we can do this safely.
120  * We also share these buffers between "bestpath" and "bestownedpath"
121  * since you can never be in both functions at the same time.  If that
122  * did happen, we'd already be so broken that it won't matter.
123  */
124 static unsigned int *mapbuf = (unsigned int *)0;
125 static unsigned int **mapindex = (unsigned int **)0;
126
127 s_char *
128 bestownedpath(s_char *bpath,
129               s_char *bigmap,
130               int x, int y, int ex, int ey, s_char *terrain, int own)
131 {
132     int i, j, tx, ty, markedsectors, restr2;
133     int minx, maxx, miny, maxy, scanx, scany;
134     unsigned int routelen;
135
136     if (!mapbuf)
137         mapbuf = (unsigned int *)malloc((WORLD_X * WORLD_Y) *
138                                         sizeof(unsigned int));
139     if (!mapbuf)
140         return ((s_char *)0);
141     if (!mapindex) {
142         mapindex =
143             (unsigned int **)malloc(WORLD_X * sizeof(unsigned int *));
144         if (mapindex) {
145             /* Setup the map pointers */
146             for (i = 0; i < WORLD_X; i++)
147                 mapindex[i] = &mapbuf[WORLD_Y * i];
148         }
149     }
150     if (!mapindex)
151         return ((s_char *)0);
152
153     bpath[0] = 0;
154     if (0 != (restr2 = (*terrain == 'R')))
155         terrain++;
156
157     x = XNORM(x);
158     y = YNORM(y);
159     ex = XNORM(ex);
160     ey = YNORM(ey);
161
162     if (x == ex && y == ey) {
163         bpath[0] = 'h';
164         bpath[1] = 0;
165         return ((s_char *)bpath);
166     }
167
168     if (!valid(x, y) || !valid(ex, ey))
169         return ((s_char *)0);
170
171     if (restr2 && (!owned_and_navigable(bigmap, x, y, terrain, own) ||
172                    !owned_and_navigable(bigmap, x, y, terrain, own)))
173         return ((s_char *)0);
174
175     for (i = 0; i < WORLD_X; i++)
176         for (j = 0; j < WORLD_Y; j++)
177             mapindex[i][j] = 0xFFFF;    /* clear the workspace  */
178
179     routelen = 0;               /* path length is now 0 */
180     mapindex[x][y] = 0;         /* mark starting spot   */
181     markedsectors = 1;          /* source sector marked */
182     minx = x - 2;               /* set X scan bounds    */
183     maxx = x + 2;
184     miny = y - 1;               /* set Y scan bounds    */
185     maxy = y + 1;
186
187     do {
188         if (++routelen == MAXROUTE) {
189             bpath[0] = '?';
190             bpath[1] = 0;
191             return ((s_char *)bpath);
192         }
193         markedsectors = 0;
194         for (scanx = minx; scanx <= maxx; scanx++) {
195             x = XNORM(scanx);
196             for (scany = miny; scany <= maxy; scany++) {
197                 y = YNORM(scany);
198                 if (valid(x, y)) {
199                     if ((((mapindex[x][y]) & 0x1FFF) == (routelen - 1))) {
200                         for (i = 0; i < 6; i++) {
201                             tx = x + dx[i];
202                             ty = y + dy[i];
203                             tx = XNORM(tx);
204                             ty = YNORM(ty);
205                             if (mapindex[tx][ty] == 0xFFFF) {
206                                 if (owned_and_navigable(bigmap, tx, ty,
207                                                         terrain, own)
208                                     || (tx == ex && ty == ey && !restr2)) {
209                                     mapindex[tx][ty] =
210                                         ((i + 1) << 13) + routelen;
211                                     markedsectors++;
212                                 }
213                             }
214                             if (tx == ex && ty == ey) {
215                                 bpath[routelen] = 0;
216                                 while (routelen--) {
217                                     i = ((mapindex[tx][ty]) >> 13) - 1;
218                                     bpath[routelen] = dirchar[i];
219                                     tx = tx - dx[i];
220                                     ty = ty - dy[i];
221                                     tx = XNORM(tx);
222                                     ty = YNORM(ty);
223                                 }
224                                 return ((s_char *)bpath);
225                             }
226                         }
227                     }
228                 }
229             }
230         }
231         miny--;
232         maxy++;
233         minx -= 2;
234         maxx += 2;
235     } while (markedsectors);
236
237     bpath[0] = 0;
238     return ((s_char *)0);       /* no route possible    */
239 }
240
241 /* return TRUE if sector is passable */
242 static int
243 owned_and_navigable(s_char *map, int x, int y, s_char *terrain, int own)
244 {
245     s_char c;
246     s_char *t;
247     s_char mapspot;             /* What this spot on the bmap is */
248     int negate;
249     struct sctstr *sect;
250     int rel;
251
252     /* No terrain to check?  Everything is navigable! (this
253        probably means we are flying) */
254     if (!(*terrain))
255         return (1);
256
257     /* Are we checking this map? */
258     if (map) {
259         /* Do we know what this sector is?  If not, we assume it's ok,
260            since otherwise we'll never venture anywhere */
261         mapspot = map[sctoff(x, y)];
262         if (mapspot == ' ' || mapspot == 0)
263             return (1);
264
265         /* Now, is it marked with a 'x' or 'X'? If so, avoid it! */
266         if (mapspot == 'x' || mapspot == 'X')
267             return (0);
268     } else {
269         /* We don't know what it is since we have no map, so return ok! */
270         return (1);
271     }
272
273     /* Now, check this bmap entry to see if it is one of the
274        terrain types. */
275     t = terrain;
276     if (*t == '~') {
277         negate = 1;
278         t++;
279     } else
280         negate = 0;
281
282     while (*t) {
283         if (*t == mapspot)
284             break;
285         t++;
286     }
287     if (negate && *t) {
288         /* We found it, so we say it's bad since we are negating */
289         return (0);
290     } else if (!negate && !*t) {
291         /* We didn't find it, so we say it's bad since we aren't negating */
292         return (0);
293     }
294
295     /* According to our bmap, this sector is ok so far. */
296
297     /* Ok, we made it this far.  Now get the sector */
298     sect = getsectp(x, y);
299     c = dchr[sect->sct_type].d_mnem;
300     /* Ok, now, check the owner if needed */
301     if (own >= 0) {
302         if (sect->sct_own != own) {
303             rel = getrel(getnatp(sect->sct_own), own);
304             /* We can't sail through deity sectors, but we can sail
305                through any ocean */
306             if (rel < FRIENDLY && sect->sct_type != SCT_WATER)
307                 return (0);
308         }
309     }
310     /* Ok, now, check these two sector types */
311     /* check for bad harbors. */
312     if (c == 'h' && sect->sct_effic < 2)
313         return (0);
314     /* check for bad bridges  */
315     if (c == '=' && sect->sct_effic < 60)
316         return (0);
317     /* Woo-hoo, it's ok! */
318     return (1);
319 }