]> git.pond.sub.org Git - empserver/blob - src/lib/commands/deli.c
b2ddd3602787288f3ca52fc9531a9d57b42a200d
[empserver] / src / lib / commands / deli.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2010, 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  *  deli.c: Set deliveries from a sector
29  *
30  *  Known contributors to this file:
31  *
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37 #include "item.h"
38 #include "path.h"
39
40 int
41 deli(void)
42 {
43     struct sctstr sect;
44     int dir, del;
45     struct ichrstr *ich;
46     int thresh;
47     int sx, sy;
48     struct nstr_sect nstr;
49     char buf[1024];
50     char prompt[128];
51     char *p;
52
53     if (!(ich = whatitem(player->argp[1], "deliver what? ")))
54         return RET_SYN;
55     if (!snxtsct(&nstr, player->argp[2]))
56         return RET_SYN;
57
58     while (nxtsct(&nstr, &sect) > 0) {
59         if (!player->owner)
60             continue;
61
62         del = sect.sct_del[ich->i_uid];
63         thresh = del & ~0x7;
64         dir = del & 0x7;
65
66         sprintf(prompt, "%s %s %s threshold or direction or 'query'? ",
67                 xyas(nstr.x, nstr.y, player->cnum),
68                 dchr[sect.sct_type].d_name, ich->i_name);
69         p = getstarg(player->argp[3], prompt, buf);
70         if (!p || !*p)
71             return RET_SYN;
72         if (*p != 'q') {
73             if (((*p >= '0') && (*p <= '9')) || *p == '+') {
74                 thresh = atoi(p) & ~0x7;
75                 if (*p == '+')
76                     p = NULL;
77                 else {
78                     sprintf(prompt, "%s %s %s direction? ",
79                             xyas(nstr.x, nstr.y, player->cnum),
80                             dchr[sect.sct_type].d_name, ich->i_name);
81                     p = getstarg(player->argp[4], prompt, buf);
82                     if (!p)
83                         return RET_FAIL;
84                 }
85             }
86             if (p && *p) {
87                 dir = chkdir(*p, DIR_STOP, DIR_LAST);
88                 if (dir < 0) {
89                     pr("'%c' is not a valid direction...\n", *p);
90                     direrr(NULL, NULL, NULL);
91                     return RET_SYN;
92                 }
93             }
94
95             if (!check_sect_ok(&sect))
96                 continue;
97
98             thresh = MIN(thresh, ITEM_MAX) & ~7;
99             del = thresh | dir;
100             sect.sct_del[ich->i_uid] = del;
101             putsect(&sect);
102         }
103
104         if (!del)
105             continue;
106
107         sx = diroff[dir][0] + sect.sct_x;
108         sy = diroff[dir][1] + sect.sct_y;
109         pr("Deliver %s from %s @ %s to %s",
110            ich->i_name,
111            dchr[sect.sct_type].d_name,
112            xyas(sect.sct_x, sect.sct_y, player->cnum),
113            xyas(sx, sy, player->cnum));
114         if (!(del & ~0x7))
115             pr("\n");
116         else
117             pr(" (cutoff %d)\n", thresh);
118     }
119
120     return RET_OK;
121 }