]> git.pond.sub.org Git - empserver/blob - src/lib/commands/deli.c
Indentation fixes; suspect indent-emp is to blame.
[empserver] / src / lib / commands / deli.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 "var.h"
38 #include "sect.h"
39 #include "item.h"
40 #include "file.h"
41 #include "path.h"
42 #include "nsc.h"
43 #include "nat.h"
44 #include "commands.h"
45
46 int
47 deli(void)
48 {
49     struct sctstr sect;
50     register int dir, del;
51     register struct ichrstr *ich;
52     register int thresh;
53     int i_del;
54     int sx, sy;
55     int status;
56     struct nstr_sect nstr;
57     s_char buf[1024];
58     s_char prompt[128];
59     s_char *p;
60
61     if ((ich = whatitem(player->argp[1], "deliver what? ")) == 0)
62         return RET_SYN;
63     /*
64        if (ich->i_vtype == V_CIVIL || ich->i_vtype == V_MILIT) {
65        pr("You cannot deliver people!\n");
66        return RET_FAIL;
67        }
68      */
69     if (!snxtsct(&nstr, player->argp[2]))
70         return RET_SYN;
71     i_del = V_DEL(ich - ichr);
72
73     while (nxtsct(&nstr, &sect) > 0) {
74         if (!player->owner)
75             continue;
76
77         del = getvar(i_del, (s_char *)&sect, EF_SECTOR);
78         thresh = del & ~0x7;
79         dir = del & 0x7;
80
81         sprintf(prompt, "%s %s %s threshold or direction or 'query'? ",
82                 xyas(nstr.x, nstr.y, player->cnum),
83                 dchr[sect.sct_type].d_name, ich->i_name);
84         if (!(p = getstarg(player->argp[3], prompt, buf)) || !*p)
85             return RET_SYN;
86         if (*p != 'q') {
87             sprintf(prompt, "%s %s %s direction? ",
88                     xyas(nstr.x, nstr.y, player->cnum),
89                     dchr[sect.sct_type].d_name, ich->i_name);
90             if (((*p >= '0') && (*p <= '9')) || *p == '+') {
91                 thresh = atoi(p) & ~0x7;
92                 if (*p == '+')
93                     p = NULL;
94                 else {
95                     p = getstarg(player->argp[4], prompt, buf);
96                 }
97             }
98             if (p && *p) {
99                 dir = chkdir(*p, DIR_STOP, DIR_LAST);
100                 if (dir < 0)
101                     return RET_SYN;
102             }
103
104             if (!check_sect_ok(&sect))
105                 continue;
106
107             del = thresh + dir;
108             status = putvar(i_del, del, (s_char *)&sect, EF_SECTOR);
109             if (status < 0) {
110                 pr("No room for delivery path in %s\n",
111                    xyas(sect.sct_x, sect.sct_y, player->cnum));
112                 continue;
113             } else if (!status) {
114                 /* Either nothing to set, or bogus amount. */
115                 continue;
116             } else
117                 putsect(&sect);
118         }
119
120         if (!del)
121             continue;
122
123         sx = diroff[dir][0] + sect.sct_x;
124         sy = diroff[dir][1] + sect.sct_y;
125         pr("Deliver %s from %s @ %s to %s",
126            ich->i_name,
127            dchr[sect.sct_type].d_name,
128            xyas(sect.sct_x, sect.sct_y, player->cnum),
129            xyas(sx, sy, player->cnum));
130         if (!(del & ~0x7))
131             pr("\n");
132         else
133             pr(" (cutoff %d)\n", thresh);
134     }
135
136     return RET_OK;
137 }