]> git.pond.sub.org Git - empserver/blob - src/lib/commands/thre.c
Fix trailing whitespace
[empserver] / src / lib / commands / thre.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  *  thre.c: Describe/set threshold for given commodity
29  *
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Steve McClure, 1998
33  */
34
35 #include <config.h>
36
37 #include "commands.h"
38 #include "item.h"
39
40 /*
41  * threshold <COMM> <SECTS> <THRESH>
42  */
43 int
44 thre(void)
45 {
46     struct sctstr sect;
47     struct nstr_sect nstr;
48     int val;
49     struct ichrstr *ip;
50     char *p;
51     int thresh;
52     i_type type;
53     char prompt[128];
54     char buf[128];
55
56     if ((ip = whatitem(player->argp[1], "What commodity? ")) == 0)
57         return RET_SYN;
58     if (!snxtsct(&nstr, player->argp[2]))
59         return RET_SYN;
60     type = ip->i_uid;
61     while (nxtsct(&nstr, &sect)) {
62         if (!player->owner)
63             continue;
64         val = sect.sct_dist[type];
65         if (val > 0)
66             sprintf(prompt, "%s %s  old threshold %d new? ",
67                     xyas(nstr.x, nstr.y, player->cnum),
68                     dchr[sect.sct_type].d_name, val);
69         else
70             sprintf(prompt, "%s %s  threshold? ",
71                     xyas(nstr.x, nstr.y, player->cnum),
72                     dchr[sect.sct_type].d_name);
73         if ((p = getstarg(player->argp[3], prompt, buf)) == 0)
74             return RET_FAIL;
75         if (!*p)
76             continue;
77         if (!check_sect_ok(&sect))
78             return RET_FAIL;
79         thresh = atoi(p);
80         if (thresh < 0)
81             return RET_FAIL;
82         if (thresh > ITEM_MAX)
83             thresh = ITEM_MAX;
84         if ((val > 0) && (val == thresh)) {
85             pr("%s threshold unchanged (left at %d)\n",
86                xyas(nstr.x, nstr.y, player->cnum), val);
87             continue;
88         }
89         if (val > 0 && (player->argp[3] != 0 && *player->argp[3] != 0))
90             pr("%s old threshold %d\n",
91                xyas(nstr.x, nstr.y, player->cnum), val);
92         sect.sct_dist[type] = thresh;
93         putsect(&sect);
94     }
95     return RET_OK;
96 }