]> 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-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  *  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 "misc.h"               /* s_char coord etc. */
38 #include "sect.h"               /* struct sctstr */
39 #include "xy.h"
40
41         /* direction indices */
42 #define DIR_STOP        0
43 #define DIR_UR          1
44 #define DIR_R           2
45 #define DIR_DR          3
46 #define DIR_DL          4
47 #define DIR_L           5
48 #define DIR_UL          6
49 #define DIR_VIEW        7
50 #define DIR_MAP         8
51 #define DIR_FIRST       1
52 #define DIR_LAST        6
53
54 #define SELL_NOT_DELIV  7       /* in "_use" field => contract */
55
56 extern int dirindex[];
57 extern int diroff[][2];
58 extern s_char dirch[];
59
60 /* src/lib/subs/paths.c */
61 extern s_char *getpath(s_char *, s_char *, coord, coord, int, int,
62                        int, int);
63 extern double fcost(struct sctstr *, natid);
64 extern double ncost(struct sctstr *, natid);
65 extern double pathtoxy(s_char *, coord *, coord *,
66                        double (*)(struct sctstr * sp, natid own));
67 extern int chkdir(s_char, int, int);
68 extern int getdir(s_char *, s_char *, s_char *, s_char *);
69 extern void direrr(s_char *, s_char *, s_char *);
70 extern double mcost(struct sctstr *, int);
71 extern int chkpath(natid, s_char *, coord, coord);
72 extern void pathrange(register coord, register coord, register s_char *,
73                       int, struct range *);
74
75 extern double sector_mcost(struct sctstr *sp, int do_bonus);
76
77 #define P_NONE          0       /* NO destinations allowed */
78 #define P_WALKING       1       /* use BestLandPath, only owned */
79 #define P_FLYING        2       /* use bestpath, any */
80 #define P_SAILING       3       /* use bestpath, any */
81 #define P_DISTING       4       /* use BestDistPath, only owned */
82
83 #define MAX_PATH_LEN 1024
84
85 #endif /* _PATH_H_ */