]> git.pond.sub.org Git - empserver/blob - src/lib/commands/fort.c
07bb252e2249d3889facc29d0b6365c69a0faccf
[empserver] / src / lib / commands / fort.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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  *  fort.c: Increase the fortification value of land units
29  * 
30  *  Known contributors to this file:
31  *    Steve McClure, 1999
32  *     
33  */
34
35 #include "misc.h"
36 #include "player.h"
37 #include "var.h"
38 #include "xy.h"
39 #include "sect.h"
40 #include "land.h"
41 #include "nat.h"
42 #include "nsc.h"
43 #include "deity.h"
44 #include "file.h"
45 #include "commands.h"
46
47 int
48 fort(void)
49 {
50     int nunits;
51     struct nstr_item ni;
52     struct lndstr land;
53     int fort_amt, hard_amt;
54     s_char *p;
55     extern int land_mob_max;
56     s_char buf[1024];
57
58     if (!snxtitem(&ni, EF_LAND, player->argp[1]))
59         return RET_SYN;
60     p = getstarg(player->argp[2], "Amount: ", buf);
61     if (p == 0 || *p == 0)
62         return RET_SYN;
63     fort_amt = atoi(p);
64     if (fort_amt > land_mob_max)
65         fort_amt = land_mob_max;
66     nunits = 0;
67     while (nxtitem(&ni, (s_char *)&land)) {
68         if (!player->owner || land.lnd_own == 0)
69             continue;
70         if (land.lnd_type < 0 || land.lnd_type > lnd_maxno) {
71             pr("bad unit type %d (#%d)\n", land.lnd_type, ni.cur);
72             continue;
73         }
74
75         getland(land.lnd_uid, &land);
76         if (land.lnd_mobil < 0)
77             continue;
78         if (land.lnd_ship >= 0) {
79             pr("%s is on a ship and can't be fortified\n", prland(&land));
80             continue;
81         }
82         if (land.lnd_land >= 0) {
83             pr("%s is on a land unit and can't be fortified\n", prland(&land));
84             continue;
85         }
86
87         hard_amt = fort_amt;
88
89         /* This is use for things like "fort * -67" which will
90            use all mobility down to leaving 67 left. */
91         if (hard_amt < 0) {
92             hard_amt = land.lnd_mobil + hard_amt;
93             if (hard_amt < 0)
94                 continue;
95         }
96
97         if (lnd_fortify (&land, hard_amt) <= 0) {
98             pr("%s can't be fortified%s\n", prland(&land),
99                land.lnd_harden >= land_mob_max ? " any further" : "");
100             continue;
101         }
102
103         nunits++;
104         pr("%s hardened to %d\n", prland(&land), land.lnd_harden);
105
106         putland(land.lnd_uid, &land);
107     }
108     if (nunits == 0) {
109         if (player->argp[1])
110             pr("%s: No unit(s)\n", player->argp[1]);
111         else
112             pr("%s: No unit(s)\n", "");
113         return RET_FAIL;
114     } else
115         pr("%d unit%s\n", nunits, splur(nunits));
116     return RET_OK;
117 }