]> git.pond.sub.org Git - empserver/blob - src/lib/commands/shoo.c
Update copyright notice
[empserver] / src / lib / commands / shoo.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2017, 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  *  shoo.c: Shoot some conquered populace or pigeons.
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Markus Armbruster, 2004-2016
32  */
33
34 #include <config.h>
35
36 #include "chance.h"
37 #include "commands.h"
38 #include "item.h"
39 #include "land.h"
40 #include "news.h"
41
42 int
43 shoo(void)
44 {
45     struct sctstr sect;
46     struct nstr_sect nstr;
47     int seceff, nshot;
48     double secstr, m;
49     i_type item;
50     struct ichrstr *ip;
51     int targets;
52     char *p;
53     char prompt[128];
54     char buf[1024];
55
56     ip = whatitem(player->argp[1], "Shoot what <civ or uw> ");
57     if (!ip || (ip->i_uid != I_CIVIL && ip->i_uid != I_UW))
58         return RET_SYN;
59     item = ip->i_uid;
60     if (!snxtsct(&nstr, player->argp[2]))
61         return RET_SYN;
62     sprintf(prompt, "number of %s to shoot? ", ip->i_name);
63     p = getstarg(player->argp[3], prompt, buf);
64     if (!p || (targets = atoi(p)) <= 0)
65         return RET_SYN;
66     while (nxtsct(&nstr, &sect)) {
67         if (!player->owner)
68             continue;
69         secstr = security_strength(&sect, &seceff);
70         if (sect.sct_item[item] == 0 || sect.sct_item[I_CIVIL] > secstr * 10)
71             continue;
72         nshot = sect.sct_item[item] > targets ? targets : sect.sct_item[item];
73         if (nshot > sect.sct_mobil * 5)
74             nshot = sect.sct_mobil * 5;
75         m = nshot / 5.0;
76         /*
77          * Security units reduce mobility cost of shooting people by
78          * 10% per 100% unit efficiency, up to a 50% reduction.
79          */
80         if (seceff > 500)
81             seceff = 500;
82         m *= 1.0 - seceff / 1000.0;
83         if (nshot <= 0)
84             continue;
85         if (m < 0)
86             m = 0;
87         if (m > sect.sct_mobil)
88             m = sect.sct_mobil;
89         sect.sct_mobil -= roundavg(m);
90         sect.sct_item[item] -= nshot;
91         pr("BANG!! (thump) %d %s shot in %s!\n",
92            nshot, ip->i_name, xyas(sect.sct_x, sect.sct_y, player->cnum));
93         if (chance(nshot / 100.0))
94             nreport(player->cnum, N_SHOOT_CIV, sect.sct_oldown, 1);
95         if (sect.sct_item[item] <= 0 && item == I_CIVIL
96             && (sect.sct_own != sect.sct_oldown)) {
97             sect.sct_oldown = sect.sct_own;
98             pr("  %s is now completely yours\n",
99                xyas(sect.sct_x, sect.sct_y, player->cnum));
100         }
101         putsect(&sect);
102     }
103     return RET_OK;
104 }