]> git.pond.sub.org Git - empserver/blob - src/lib/common/path.c
d2ad3f4b790144c23bf73fa6f7e2cf5b7ed97189
[empserver] / src / lib / common / path.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: Empire/A* Interface code.
29  *          Define AS_STATS for A* statistics.
30  * 
31  *  Known contributors to this file:
32  *     Phil Lapsley, 1991
33  *     Dave Pare, 1991
34  *     Thomas Ruschak, 1993
35  *     Steve McClure, 1997
36  */
37
38 #include <config.h>
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include "../as/as.h"
43 #include "misc.h"
44 #include "path.h"
45 #include "xy.h"
46 #include "sect.h"
47 #include "file.h"
48 #include "common.h"
49 #include "gen.h"
50 #include "optlist.h"
51
52 #define BP_ASHASHSIZE   128     /* A* queue hash table size */
53 #define BP_NEIGHBORS    6       /* max number of neighbors */
54
55 struct bestp {
56     int sctcache_hits;
57     int sctcache_misses;
58     int bp_mobtype;
59     struct as_data *adp;
60 };
61
62 static int bp_path(struct as_path *pp, s_char *buf);
63 static int bp_neighbors(struct as_coord c, struct as_coord *cp, void *);
64 static double bp_lbcost(struct as_coord from, struct as_coord to, void *);
65 static double bp_realcost(struct as_coord from, struct as_coord to, void *);
66 static double bp_seccost(struct as_coord from, struct as_coord to, void *);
67 static int bp_coord_hash(struct as_coord c);
68
69 /* We use this for caching neighbors.  It never changes except
70  * at reboot time (maybe) so we never need to free it */
71 static struct sctstr **neighsects;
72
73 static struct bestp *
74 bp_init(void)
75 {
76     struct bestp *bp;
77
78     bp = malloc(sizeof(*bp));
79     memset(bp, 0, sizeof(*bp));
80     bp->adp = as_init(BP_NEIGHBORS, BP_ASHASHSIZE, bp_coord_hash,
81                       bp_neighbors, bp_lbcost, bp_realcost,
82                       bp_seccost, bp);
83
84     if (bp->adp == NULL)
85         return NULL;
86
87     if (neighsects == NULL)
88         neighsects = calloc(((WORLD_X * WORLD_Y) / 2) * 6,
89                             sizeof(struct sctstr *));
90
91     return bp;
92 }
93
94 /*
95  * Find the best path from sector to to sector, and put the Empire movement
96  * string in path.  Return 0 on success, -1 on error.
97  */
98 static int
99 best_path(struct sctstr *from, struct sctstr *to, s_char *path,
100           int mob_type)
101 {
102     static struct bestp *mybestpath;
103     struct as_data *adp;
104     struct as_path *ap;
105
106     if (mybestpath == 0)
107         mybestpath = bp_init();
108     adp = mybestpath->adp;
109     ap = as_find_cachepath(from->sct_x, from->sct_y, to->sct_x, to->sct_y);
110     if (ap == NULL) {
111         adp->from.x = from->sct_x;
112         adp->from.y = from->sct_y;
113         adp->to.x = to->sct_x;
114         adp->to.y = to->sct_y;
115         mybestpath->bp_mobtype = mob_type;
116
117         if (as_search(adp) < 0)
118             return -1;
119         ap = adp->path;
120     }
121
122     if (bp_path(ap, path) < 0)
123         return -1;
124
125 #ifdef AS_STATS
126     as_stats(adp, stderr);
127 #endif /* AS_STATS */
128 #ifdef BP_STATS
129     fprintf(stderr, "best path %s\n", path);
130     fprintf(stderr, "cache hits/misses: %d/%d\n",
131             bp->sctcache_hits, bp->sctcache_misses);
132 #endif /* BP_STATS */
133     return 0;
134 }
135
136 /*
137  * Translate an A* path into an empire movement string.  Return 0 on
138  * success, -1 on failure.
139  */
140 static int
141 bp_path(struct as_path *pp, s_char *buf)
142 {
143     struct as_path *np;
144     s_char *cp = buf;
145     int dx, dy;
146     int n;
147
148     np = pp->next;
149     while (np) {
150         dx = np->c.x - pp->c.x;
151         /* deal with wraparound from non-neg coords */
152         if (dx < -2)
153             dx += WORLD_X;
154         else if (dx > 2)
155             dx -= WORLD_X;
156         dy = np->c.y - pp->c.y;
157         if (dy < -1)
158             dy += WORLD_Y;
159         else if (dy > 1)
160             dy -= WORLD_Y;
161         for (n = 1; n <= 6; n++)
162             if (dx == diroff[n][0] && dy == diroff[n][1])
163                 break;
164         if (n > 6)
165             return -1;
166
167         *cp++ = dirch[n];
168         pp = np;
169         np = np->next;
170     }
171     *cp = '\0';
172     return 0;
173 }
174
175 /*
176  * Find coords neighboring this sector; return number of such
177  * coords, and coordinartes themselves in an array pointed
178  * to by *cpp.
179  * XXX need to check ownership, sector types, etc.
180  */
181 static int
182 bp_neighbors(struct as_coord c, struct as_coord *cp, void *pp)
183 {
184     struct sctstr *sectp = (void *)empfile[EF_SECTOR].cache;
185     coord x, y;
186     coord nx, ny;
187     int n = 0, q;
188     struct sctstr *sp, *from, **ssp;
189     /* Six pointers, just in case our cache isn't there */
190     struct sctstr *tsp[] = { 0, 0, 0, 0, 0, 0 };
191     int sx, sy, offset;
192
193     x = c.x;
194     y = c.y;
195     sx = XNORM(x);
196     sy = YNORM(y);
197     offset = (sy * WORLD_X + sx) / 2;
198     from = &sectp[offset];
199
200     if (neighsects == NULL)
201         ssp = (struct sctstr **)&tsp[0];
202     else
203         ssp = (struct sctstr **)&neighsects[offset * 6];
204     for (q = 1; q <= 6; q++, ssp++) {
205         if (*ssp == NULL) {
206             /* We haven't cached this neighbor yet */
207             nx = x + diroff[q][0];
208             ny = y + diroff[q][1];
209             sx = XNORM(nx);
210             sy = YNORM(ny);
211             offset = (sy * WORLD_X + sx) / 2;
212             sp = &sectp[offset];
213             *ssp = sp;
214         } else {
215             sp = *ssp;
216             sx = XNORM(sp->sct_x);
217             sy = YNORM(sp->sct_y);
218         }
219         /* No need to calculate cost each time, just make sure we can
220            move through it.  We calculate it later. */
221         if (dchr[sp->sct_type].d_mcst == 0)
222             continue;
223         if (sp->sct_own != from->sct_own)
224             continue;
225         cp[n].x = sx;
226         cp[n].y = sy;
227         n++;
228     }
229     return n;
230 }
231
232 /*
233  * Compute a lower-bound on the cost from "from" to "to".
234  */
235 /*ARGSUSED*/
236 static double
237 bp_lbcost(struct as_coord from, struct as_coord to, void *pp)
238 {
239     struct sctstr *sectp = (void *)empfile[EF_SECTOR].cache;
240     struct bestp *bp = (struct bestp *)pp;
241     struct sctstr *ts;
242     float cost;
243     int x, y, sx, sy, offset;
244
245     x = to.x;
246     y = to.y;
247     sx = XNORM(x);
248     sy = YNORM(y);
249     offset = (sy * WORLD_X + sx) / 2;
250     ts = &sectp[offset];
251     cost = sector_mcost(ts, bp->bp_mobtype);
252     return cost;
253 }
254
255 /*
256  * Compute the real cost to move from "from" to "to".
257  */
258 static double
259 bp_realcost(struct as_coord from, struct as_coord to, void *pp)
260 {
261     return bp_lbcost(from, to, pp);
262 }
263
264 /*
265  * Tie breaker secondary metric (only used when lower bound costs
266  * are equal).
267  */
268 /*ARGSUSED*/
269 static double
270 bp_seccost(struct as_coord from, struct as_coord to, void *pp)
271 {
272     return (double)mapdist((coord)from.x, (coord)from.y,
273                            (coord)to.x, (coord)to.y);
274 }
275
276 /*
277  * Hash a coordinate into an integer.
278  */
279 static int
280 bp_coord_hash(struct as_coord c)
281 {
282     return ((abs(c.x) + 1) << 3) ^ abs(c.y);
283 }
284
285 void
286 bp_enable_cachepath(void)
287 {
288     as_enable_cachepath();
289 }
290
291 void
292 bp_disable_cachepath(void)
293 {
294     as_disable_cachepath();
295 }
296
297 void
298 bp_clear_cachepath(void)
299 {
300     as_clear_cachepath();
301 }
302
303 double
304 pathcost(struct sctstr *start, s_char *path, int mob_type)
305 {
306     struct sctstr *sectp = (void *)empfile[EF_SECTOR].cache;
307     unsigned i;
308     int o;
309     int cx, cy;
310     double cost = 0.0;
311     struct sctstr *sp;
312     int sx, sy, offset;
313
314     cx = start->sct_x;
315     cy = start->sct_y;
316
317     while (*path) {
318         if (*path == 'h') {
319             path++;
320             continue;
321         }
322         i = *path - 'a';
323         if (CANT_HAPPEN(i >= sizeof(dirindex) / sizeof(*dirindex)))
324             break;
325         o = dirindex[i];
326         if (CANT_HAPPEN(o < 0))
327             break;
328         cx += diroff[o][0];
329         cy += diroff[o][1];
330         sx = XNORM(cx);
331         sy = YNORM(cy);
332         offset = (sy * WORLD_X + sx) / 2;
333         sp = &sectp[offset];
334         cost += sector_mcost(sp, mob_type);
335         path++;
336     }
337
338     return cost;
339 }
340
341 s_char *
342 BestDistPath(s_char *path,
343              struct sctstr *from,
344              struct sctstr *to, double *cost, int mob_type)
345 {
346     return BestLandPath(path, from, to, cost, mob_type);
347 }
348
349 s_char *
350 BestLandPath(s_char *path,
351              struct sctstr *from,
352              struct sctstr *to, double *cost, int mob_type)
353 {
354     int length;
355
356     *path = 0;
357     *cost = 0.0;
358     if (best_path(from, to, path, mob_type) < 0)
359         return NULL;
360     *cost = pathcost(from, path, mob_type);
361     length = strlen(path);
362     path[length] = 'h';
363     path[length + 1] = '\0';
364     return path;
365 }
366
367 s_char *
368 BestShipPath(s_char *path, int fx, int fy, int tx, int ty, int owner)
369 {
370     s_char *map;
371
372     /* need to make sector database available to bestpath */
373     map = ef_ptr(EF_BMAP, owner);
374
375     return bestownedpath(path, map, fx, fy, tx, ty, ".=h", owner);
376 }
377
378 s_char *
379 BestAirPath(s_char *path, int fx, int fy, int tx, int ty)
380 {
381     return bestownedpath(path, 0, fx, fy, tx, ty, "", -1);
382     /*    return (bestpath(path, fx, fy, tx, ty, "")); */
383 }