]> git.pond.sub.org Git - empserver/blob - include/path.h
License upgrade to GPL version 3 or later
[empserver] / include / path.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  path.h: Definitions for directions, paths, etc.
28  *
29  *  Known contributors to this file:
30  *
31  */
32
33 #ifndef PATH_H
34 #define PATH_H
35
36 #include "types.h"
37
38         /* direction indices */
39 #define DIR_STOP        0
40 #define DIR_UR          1
41 #define DIR_R           2
42 #define DIR_DR          3
43 #define DIR_DL          4
44 #define DIR_L           5
45 #define DIR_UL          6
46 #define DIR_VIEW        7
47 #define DIR_MAP         8
48 #define DIR_FIRST       1
49 #define DIR_LAST        6
50
51 #define MOB_MOVE        0
52 #define MOB_MARCH       1
53 #define MOB_RAIL        2
54
55 enum p_mode {                   /* How to find path to destination */
56     P_NONE,                     /* don't */
57     P_FLYING,                   /* use BestAirPath() */
58     P_SAILING                   /* use BestShipPath() */
59 };
60
61 /* src/lib/global/dir.c */
62 extern signed char dirindex['z'-'a'+1];
63 extern int diroff[DIR_MAP+1][2];
64 extern char dirch[DIR_MAP+2];
65 extern char *routech[DIR_LAST+1];
66
67 /* src/lib/common/bestpath.c */
68 extern char *bestownedpath(char *, char *, int, int, int, int, int);
69
70 /* src/lib/common/path.c */
71 extern void bp_enable_cachepath(void);
72 extern void bp_disable_cachepath(void);
73 extern void bp_clear_cachepath(void);
74 extern char *BestDistPath(char *, struct sctstr *, struct sctstr *,
75                           double *);
76 extern char *BestLandPath(char *, struct sctstr *, struct sctstr *,
77                           double *, int);
78 extern char *BestShipPath(char *, int, int, int, int, int);
79 extern char *BestAirPath(char *, int, int, int, int);
80 extern double pathcost(struct sctstr *, char *, int);
81
82 /* src/lib/subs/paths.c */
83 extern char *getpath(char *, char *, coord, coord, int, int, enum p_mode);
84 extern double fcost(struct sctstr *, natid);
85 extern double ncost(struct sctstr *, natid);
86 extern double pathtoxy(char *, coord *, coord *,
87                        double (*)(struct sctstr *, natid));
88 extern int chkdir(char, int, int);
89 extern int diridx(char);
90 extern void direrr(char *, char *, char *);
91 extern void pathrange(coord, coord, char *, int, struct range *);
92
93 extern double sector_mcost(struct sctstr *, int);
94 extern double speed_factor(double, int);
95
96 #define MAX_PATH_LEN 1024
97
98 #endif