]> git.pond.sub.org Git - empserver/blob - src/lib/common/move.c
Update copyright notice
[empserver] / src / lib / common / move.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2015, 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  *  move.c: Misc. move routines
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2006-2008
31  */
32
33 #include <config.h>
34
35 #include "file.h"
36 #include "misc.h"
37 #include "nat.h"
38 #include "optlist.h"
39 #include "path.h"
40 #include "sect.h"
41 #include "xy.h"
42
43 double
44 sector_mcost(struct sctstr *sp, int mobtype)
45 {
46     double base, cost;
47
48     base = dchr[sp->sct_type].d_mob0;
49     if (base < 0)
50         return -1.0;
51
52     if (mobtype == MOB_RAIL && opt_RAILWAYS) {
53         if (!SCT_HAS_RAIL(sp))
54             return -1;
55         mobtype = MOB_MARCH;
56     }
57
58     /* linear function in eff, d_mob0 at 0%, d_mob1 at 100% */
59     base += (dchr[sp->sct_type].d_mob1 - base) * sp->sct_effic / 100;
60     if (CANT_HAPPEN(base < 0))
61         base = 0;
62
63     if (mobtype == MOB_MOVE || mobtype == MOB_MARCH) {
64         /* linear function in road, base at 0%, base/10 at 100% */
65         cost = base;
66         if (intrchr[INT_ROAD].in_enable)
67             cost -= base * 0.009 * sp->sct_road;
68     } else if (mobtype == MOB_RAIL) {
69         if (!intrchr[INT_RAIL].in_enable || sp->sct_rail <= 0)
70             return -1.0;
71         /* linear function in rail, base at 0%, base/100 at 100% */
72         cost = base - base * 0.0099 * sp->sct_rail;
73     } else {
74         CANT_REACH();
75         cost = base;
76     }
77     if (CANT_HAPPEN(cost < 0))
78         cost = 0;
79
80     if (mobtype == MOB_MOVE)
81         return MAX(cost, 0.001);
82     if (sp->sct_own != sp->sct_oldown && sp->sct_mobil <= 0)
83         /* slow down land units in newly taken sectors */
84         return cost + 0.2;
85     return MAX(cost, 0.02);
86 }
87
88 double
89 speed_factor(double effspd, int tech)
90 {
91     return 480.0 / (effspd + techfact(tech, effspd));
92 }
93
94 /* Minimal efficiency for railway and railway extension (opt_RAILWAYS) */
95 #define SCT_RAIL_EFF 5
96 #define SCT_RAIL_EXT_EFF 60
97
98 /* Is sector SP a railway? */
99 #define SCT_IS_RAILWAY(sp) \
100     (dchr[(sp)->sct_type].d_mob1 == 0 && (sp)->sct_effic >= SCT_RAIL_EFF)
101 /* May sector SP have a railway extension? */
102 #define SCT_MAY_HAVE_RAIL_EXT(sp) \
103     ((sp)->sct_effic >= SCT_RAIL_EXT_EFF)
104 /* Does railway sector SP extend railway track into sector TOSP? */
105 #define SCT_EXTENDS_RAIL(sp, tosp) \
106     ((sp)->sct_own == (tosp)->sct_own && SCT_MAY_HAVE_RAIL_EXT(tosp))
107
108 int
109 sct_rail_track(struct sctstr *sp)
110 {
111     int i, res;
112     struct sctstr *nsp;
113
114     res = !!SCT_IS_RAILWAY(sp);
115     for (i = DIR_FIRST; i <= DIR_LAST; i++) {
116         nsp = getsectp(sp->sct_x + diroff[i][0],
117                        sp->sct_y + diroff[i][1]);
118         if (SCT_IS_RAILWAY(nsp) && SCT_EXTENDS_RAIL(nsp, sp))
119             res++;
120     }
121     return res;
122 }