]> git.pond.sub.org Git - empserver/blob - src/lib/commands/thre.c
102ac3e4b7a8814dfadf898a221b01eeeaede765
[empserver] / src / lib / commands / thre.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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     if (player->argp[3] && *player->argp[3] &&
62         (*player->argp[3] < '0' || *player->argp[3] > '9')) {
63         pr("Threshold must be a number\n");
64         return RET_SYN;
65     }
66     while (!player->aborted && nxtsct(&nstr, &sect)) {
67         if (!player->owner)
68             continue;
69         val = sect.sct_dist[type];
70         if (val > 0)
71             sprintf(prompt, "%s %s  old threshold %d new? ",
72                     xyas(nstr.x, nstr.y, player->cnum),
73                     dchr[sect.sct_type].d_name, val);
74         else
75             sprintf(prompt, "%s %s  threshold? ",
76                     xyas(nstr.x, nstr.y, player->cnum),
77                     dchr[sect.sct_type].d_name);
78         if ((p = getstarg(player->argp[3], prompt, buf)) == 0)
79             return RET_FAIL;
80         if (!check_sect_ok(&sect))
81             return RET_FAIL;
82         if (*p == '\0' || *p == '-')
83             continue;
84         thresh = atoi(p);
85         if (thresh > ITEM_MAX)
86             thresh = ITEM_MAX;
87         if ((val > 0) && (val == thresh)) {
88             pr("%s threshold unchanged (left at %d)\n",
89                xyas(nstr.x, nstr.y, player->cnum), val);
90             continue;
91         }
92         if (val > 0 && (player->argp[3] != 0 && *player->argp[3] != 0))
93             pr("%s old threshold %d\n",
94                xyas(nstr.x, nstr.y, player->cnum), val);
95         sect.sct_dist[type] = thresh;
96         putsect(&sect);
97     }
98     return RET_OK;
99 }