]> git.pond.sub.org Git - empserver/blob - src/lib/commands/shoo.c
(do_conv, enli, explore, move, shoo, s_commod): sct_mobil was changed
[empserver] / src / lib / commands / shoo.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  shoo.c: Shoot some conquered populace or pigeons.
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  */
33
34 #include <config.h>
35
36 #include "misc.h"
37 #include "player.h"
38 #include "xy.h"
39 #include "sect.h"
40 #include "news.h"
41 #include "item.h"
42 #include "path.h"
43 #include "nat.h"
44 #include "file.h"
45 #include "nsc.h"
46 #include "land.h"
47 #include "commands.h"
48
49 int
50 shoo(void)
51 {
52     struct sctstr sect;
53     struct nstr_sect nstr;
54     struct nstr_item ni;
55     int nshot;
56     double m;
57     i_type item;
58     struct ichrstr *ip;
59     struct lndstr land;
60     int targets;
61     char *p;
62     int mil, nsec;
63     char prompt[128];
64     char buf[1024];
65
66     ip = whatitem(player->argp[1], "Shoot what <civ or uw> ");
67     if (ip == 0 || (ip->i_uid != I_CIVIL && ip->i_uid != I_UW))
68         return RET_SYN;
69     item = ip->i_uid;
70     if (!snxtsct(&nstr, player->argp[2]))
71         return RET_SYN;
72     sprintf(prompt, "number of %s to shoot? ", ip->i_name);
73     p = getstarg(player->argp[3], prompt, buf);
74     if (p == 0 || (targets = atoi(p)) <= 0)
75         return RET_SYN;
76     while (nxtsct(&nstr, &sect)) {
77         if (!player->owner)
78             continue;
79         mil = sect.sct_item[I_MILIT];
80         nsec = 0;
81         snxtitem_xy(&ni, EF_LAND, sect.sct_x, sect.sct_y);
82         while (nxtitem(&ni, &land)) {
83             mil += total_mil(&land);
84
85             if (lchr[(int)land.lnd_type].l_flags & L_SECURITY) {
86                 mil += total_mil(&land);
87                 nsec++;
88             }
89         }
90
91         if (sect.sct_item[item] == 0 || sect.sct_item[I_CIVIL] > mil * 10)
92             continue;
93         nshot = sect.sct_item[item] > targets ? targets : sect.sct_item[item];
94         if (nshot > sect.sct_mobil * 5)
95             nshot = sect.sct_mobil * 5;
96         m = nshot / 5.0;
97         /*
98          * Each security unit lowers the cost of
99          * shooting a person by 10%. However, you
100          * can't go lower than 50% of normal cost
101          */
102         if (nsec > 5)
103             nsec = 5;
104         m *= 1.0 - nsec * 0.1;
105         if (nshot <= 0)
106             continue;
107         if (m < 0)
108             m = 0;
109         if (m > sect.sct_mobil)
110             m = sect.sct_mobil;
111         sect.sct_mobil -= roundavg(m);
112         sect.sct_item[item] -= nshot;
113         pr("BANG!! (thump) %d %s shot in %s!\n",
114            nshot, ip->i_name, xyas(sect.sct_x, sect.sct_y, player->cnum));
115         if (chance(nshot / 100.0))
116             nreport(player->cnum, N_SHOOT_CIV, sect.sct_oldown, 1);
117         if (sect.sct_item[item] <= 0 && item == I_CIVIL
118             && (sect.sct_own != sect.sct_oldown)) {
119             sect.sct_oldown = sect.sct_own;
120             pr("  %s is now completely yours\n",
121                xyas(sect.sct_x, sect.sct_y, player->cnum));
122         }
123         putsect(&sect);
124     }
125     return RET_OK;
126 }