]> 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-2005, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  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 "misc.h"
35 #include "player.h"
36 #include "xy.h"
37 #include "sect.h"
38 #include "item.h"
39 #include "file.h"
40 #include "path.h"
41 #include "nsc.h"
42 #include "nat.h"
43 #include "commands.h"
44
45 int
46 deli(void)
47 {
48     struct sctstr sect;
49     int dir, del;
50     struct ichrstr *ich;
51     int thresh;
52     int sx, sy;
53     struct nstr_sect nstr;
54     s_char buf[1024];
55     s_char prompt[128];
56     s_char *p;
57
58     if ((ich = whatitem(player->argp[1], "deliver what? ")) == 0)
59         return RET_SYN;
60     /*
61        if (ich->i_vtype == I_CIVIL || ich->i_vtype == I_MILIT) {
62        pr("You cannot deliver people!\n");
63        return RET_FAIL;
64        }
65      */
66     if (!snxtsct(&nstr, player->argp[2]))
67         return RET_SYN;
68
69     while (nxtsct(&nstr, &sect) > 0) {
70         if (!player->owner)
71             continue;
72
73         del = sect.sct_del[ich->i_vtype];
74         thresh = del & ~0x7;
75         dir = del & 0x7;
76
77         sprintf(prompt, "%s %s %s threshold or direction or 'query'? ",
78                 xyas(nstr.x, nstr.y, player->cnum),
79                 dchr[sect.sct_type].d_name, ich->i_name);
80         if (!(p = getstarg(player->argp[3], prompt, buf)) || !*p)
81             return RET_SYN;
82         if (*p != 'q') {
83             sprintf(prompt, "%s %s %s direction? ",
84                     xyas(nstr.x, nstr.y, player->cnum),
85                     dchr[sect.sct_type].d_name, ich->i_name);
86             if (((*p >= '0') && (*p <= '9')) || *p == '+') {
87                 thresh = atoi(p) & ~0x7;
88                 if (*p == '+')
89                     p = NULL;
90                 else {
91                     p = getstarg(player->argp[4], prompt, buf);
92                 }
93             }
94             if (p && *p) {
95                 dir = chkdir(*p, DIR_STOP, DIR_LAST);
96                 if (dir < 0)
97                     return RET_SYN;
98             }
99
100             if (!check_sect_ok(&sect))
101                 continue;
102
103             thresh = min(thresh, ITEM_MAX) & ~7;
104             del = thresh | dir;
105             sect.sct_del[ich->i_vtype] = del;
106             putsect(&sect);
107         }
108
109         if (!del)
110             continue;
111
112         sx = diroff[dir][0] + sect.sct_x;
113         sy = diroff[dir][1] + sect.sct_y;
114         pr("Deliver %s from %s @ %s to %s",
115            ich->i_name,
116            dchr[sect.sct_type].d_name,
117            xyas(sect.sct_x, sect.sct_y, player->cnum),
118            xyas(sx, sy, player->cnum));
119         if (!(del & ~0x7))
120             pr("\n");
121         else
122             pr(" (cutoff %d)\n", thresh);
123     }
124
125     return RET_OK;
126 }