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