]> git.pond.sub.org Git - empserver/blob - include/path.h
Update copyright notice
[empserver] / include / path.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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.h: Definitions for directions, paths, etc.
29  * 
30  *  Known contributors to this file:
31  *  
32  */
33
34 #ifndef PATH_H
35 #define PATH_H
36
37 #include "types.h"
38
39         /* direction indices */
40 #define DIR_STOP        0
41 #define DIR_UR          1
42 #define DIR_R           2
43 #define DIR_DR          3
44 #define DIR_DL          4
45 #define DIR_L           5
46 #define DIR_UL          6
47 #define DIR_VIEW        7
48 #define DIR_MAP         8
49 #define DIR_FIRST       1
50 #define DIR_LAST        6
51
52 enum p_mode {                   /* How to find path to destination */
53     P_NONE,                     /* don't */
54     P_FLYING,                   /* use BestAirPath() */
55     P_SAILING                   /* use BestShipPath() */
56 };
57
58 extern signed char dirindex['z'-'a'+1];
59 extern int diroff[DIR_MAP+1][2];
60 extern char dirch[DIR_MAP+2];
61 extern char *routech[DIR_LAST+1][2];
62
63 /* src/lib/subs/paths.c */
64 extern char *getpath(char *, char *, coord, coord, int, int, enum p_mode);
65 extern double fcost(struct sctstr *, natid);
66 extern double ncost(struct sctstr *, natid);
67 extern double pathtoxy(char *, coord *, coord *,
68                        double (*)(struct sctstr *, natid));
69 extern int chkdir(char, int, int);
70 extern int diridx(char);
71 extern void direrr(char *, char *, char *);
72 extern void pathrange(coord, coord, char *, int, struct range *);
73
74 extern double sector_mcost(struct sctstr *, int);
75 extern double speed_factor(double, int);
76
77 #define MAX_PATH_LEN 1024
78
79 #endif