]> git.pond.sub.org Git - empserver/blob - src/lib/commands/give.c
License upgrade to GPL version 3 or later
[empserver] / src / lib / commands / give.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, 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  *  give.c: give stuff to countries (deity)
28  *
29  *  Known contributors to this file:
30  *     David Muir Sharnoff
31  *     Steve McClure, 1997
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37 #include "item.h"
38 #include "news.h"
39 #include "optlist.h"
40
41 /*
42  * format: give <commod> <sect> <amt>
43  */
44 int
45 give(void)
46 {
47     struct sctstr sect;
48     int amt;
49     struct ichrstr *ip;
50     int m, n;
51     char *p;
52     struct nstr_sect nstr;
53     char buf[1024];
54
55     if (!(ip = whatitem(player->argp[1], "which commodity? ")))
56         return RET_SYN;
57     if (!snxtsct(&nstr, player->argp[2]))
58         return RET_SYN;
59     while (nxtsct(&nstr, &sect) > 0) {
60         p = getstarg(player->argp[3], "how much : ", buf);
61         if (!p || !*p)
62             return RET_SYN;
63         if ((amt = atoi(p)) == 0)
64             return RET_SYN;
65         n = sect.sct_item[ip->i_uid];
66         if (amt < 0 && -amt > n) {
67             m = 0;
68         } else if (amt > 0 && amt + n > ITEM_MAX) {
69             m = ITEM_MAX;
70         } else
71             m = n + amt;
72         sect.sct_item[ip->i_uid] = m;
73         putsect(&sect);
74         if (sect.sct_own != 0 && m != n) {
75             if (m > n) {
76                 if (opt_GODNEWS)
77                     nreport(player->cnum, N_GIFT, sect.sct_own, 1);
78                 wu(player->cnum, sect.sct_own, "%s gave you %d %s in %s\n",
79                    cname(player->cnum), m - n, ip->i_name,
80                    xyas(sect.sct_x, sect.sct_y, sect.sct_own));
81             } else {
82                 if (opt_GODNEWS)
83                     nreport(sect.sct_own, N_TAKE, player->cnum, 1);
84                 wu(player->cnum, sect.sct_own, "%s stole %d %s from %s\n",
85                    cname(player->cnum), n - m, ip->i_name,
86                    xyas(sect.sct_x, sect.sct_y, sect.sct_own));
87             }
88         }
89         pr("%d %s in %s\n", m, ip->i_name,
90            xyas(sect.sct_x, sect.sct_y, player->cnum));
91     }
92     return RET_OK;
93 }