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