]> git.pond.sub.org Git - empserver/blob - src/lib/subs/control.c
subs/control: Fix to ignore embarked land units
[empserver] / src / lib / subs / control.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, 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  *  control.c: Military control functions
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Markus Armbruster, 2014-2016
32  */
33
34 #include <config.h>
35
36 #include "land.h"
37 #include "nsc.h"
38 #include "player.h"
39 #include "prototypes.h"
40 #include "sect.h"
41 #include "unit.h"
42
43 /*
44  * Return strength of security detail in @sp.
45  * Store sum of efficiency of land units with security capability in
46  * @seceffp.
47  */
48 double
49 security_strength(struct sctstr *sp, int *seceffp)
50 {
51     double strength;
52     int seceff;
53     struct nstr_item ni;
54     struct lndstr land;
55
56     strength = sp->sct_item[I_MILIT];
57     seceff = 0;
58     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
59     while (nxtitem(&ni, &land)) {
60         if (land.lnd_own != sp->sct_own)
61             continue;
62         if (land.lnd_ship >= 0 || land.lnd_land >= 0)
63             continue;
64         strength += land.lnd_item[I_MILIT];
65         if (lchr[land.lnd_type].l_flags & L_SECURITY) {
66             strength += land.lnd_item[I_MILIT] * land.lnd_effic / 100.0;
67             seceff += land.lnd_effic;
68         }
69     }
70
71     *seceffp = seceff;
72     return strength;
73 }
74
75 /*
76  * Does the player->owner have military control of this sector?
77  */
78 int
79 military_control(struct sctstr *sp)
80 {
81     int tot_mil = 0;
82     struct nstr_item ni;
83     struct lndstr land;
84
85     if (sp->sct_oldown != sp->sct_own) {
86         snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
87         while (nxtitem(&ni, &land)) {
88             if (land.lnd_ship >= 0 || land.lnd_land >= 0)
89                 continue;
90             if (land.lnd_own == sp->sct_own)
91                 tot_mil += land.lnd_item[I_MILIT];
92         }
93         if ((sp->sct_item[I_MILIT] + tot_mil) * 10 < sp->sct_item[I_CIVIL])
94             return 0;
95     }
96
97     return 1;
98 }
99
100 /*
101  * Ask user to confirm abandonment of sector @sp, if any.
102  * If removing @amnt commodities of type @vtype and the land units in
103  * @list would abandon the sector, ask the user to confirm.
104  * All land units in @land_list must be in this sector, owned by the
105  * player, and not loaded onto anything.  @land_list may be null.
106  * Return zero when abandonment was declined, else non-zero.
107  */
108 int
109 abandon_askyn(struct sctstr *sp, i_type vtype, int amnt,
110               struct ulist *land_list)
111 {
112     char prompt[80];
113
114     /*
115      * First, would we be abandoning it?  If not, just return that
116      * it's ok to move out.
117      */
118     if (!would_abandon(sp, vtype, amnt, land_list))
119         return 1;
120
121     sprintf(prompt, "Do you really want to abandon %s [yn]? ",
122             xyas(sp->sct_x, sp->sct_y, player->cnum));
123
124     return askyn(prompt);
125 }
126
127 /*
128  * Would removing this stuff from @sp abandon it?
129  * Consider removal of @amnt commodities of type @vtype and the land
130  * units in @land_list.
131  * All land units in @land_list must be in this sector, owned by the
132  * player, and not loaded onto anything.  @land_list may be null.
133  */
134 int
135 would_abandon(struct sctstr *sp, i_type vtype, int amnt,
136               struct ulist *land_list)
137 {
138     int mil, civs, nland;
139     struct nstr_item ni;
140     struct lndstr land;
141
142     /*
143      * sct_prewrite() abandons when there are no civilians, military
144      * and own units left.
145      */
146
147     if (vtype != I_CIVIL && vtype != I_MILIT)
148         return 0;
149
150     mil = sp->sct_item[I_MILIT];
151     civs = sp->sct_item[I_CIVIL];
152
153     if (vtype == I_MILIT)
154         mil -= amnt;
155     if (vtype == I_CIVIL)
156         civs -= amnt;
157
158     if (!sp->sct_own || civs > 0 || mil > 0)
159         return 0;
160
161     /*
162      * Okay, no civilians and no military would be left.  Any own land
163      * units left?  Land units on ships stay, so count them.  Land
164      * units not on anything stay unless in @land_list, so count them,
165      * then subtract length of @land_list.  Land units on land units
166      * stay if their carrier stays, and therefore won't change the
167      * outcome; don't count them.
168      */
169
170     nland = 0;
171     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
172     while (nxtitem(&ni, &land)) {
173         if (land.lnd_own == player->cnum && land.lnd_land < 0)
174             ++nland;
175     }
176
177     if (land_list)
178         nland -= emp_quelen(&land_list->queue);
179     return nland <= 0;
180 }