]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/deli.c
Update copyright notice
[empserver] / src / lib / commands / deli.c
index 0cb55b9885f71eb4ed8f1fa9f691c2390252bdc4..412ca02bbebafa638c93c1093be18482eca61b4e 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2018, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *                Ken Stevens, Steve McClure, Markus Armbruster
  *
- *  This program is free software; you can redistribute it and/or modify
+ *  Empire is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *  deli.c: Set deliveries from a sector
- * 
+ *
  *  Known contributors to this file:
- *     
+ *
  */
 
-#include "misc.h"
-#include "player.h"
-#include "xy.h"
-#include "var.h"
-#include "sect.h"
+#include <config.h>
+
+#include "commands.h"
 #include "item.h"
-#include "file.h"
 #include "path.h"
-#include "nsc.h"
-#include "nat.h"
-#include "commands.h"
 
 int
 deli(void)
 {
     struct sctstr sect;
-    register int dir, del;
-    register struct ichrstr *ich;
-    register int thresh = -1;
-    int        i_del;
-    int        sx, sy;
-    int     status;
+    int dir, del;
+    struct ichrstr *ich;
+    int thresh;
+    int sx, sy;
     struct nstr_sect nstr;
-    s_char  buf[1024];
-    s_char  prompt[128];
-    s_char *p;
-    
-    if ((ich = whatitem(player->argp[1], "deliver what? ")) == 0)
+    char buf[1024];
+    char prompt[128];
+    char *p;
+
+    if (!(ich = whatitem(player->argp[1], "deliver what? ")))
        return RET_SYN;
-    /*
-       if (ich->i_vtype == V_CIVIL || ich->i_vtype == V_MILIT) {
-       pr("You cannot deliver people!\n");
-       return RET_FAIL;
-       }
-       */
     if (!snxtsct(&nstr, player->argp[2]))
        return RET_SYN;
-    i_del = V_DEL(ich-ichr);
-    
+
     while (nxtsct(&nstr, &sect) > 0) {
        if (!player->owner)
            continue;
-       sprintf(prompt, "%s %s 'query' or %s threshold? ",
+
+       del = sect.sct_del[ich->i_uid];
+       thresh = del & ~0x7;
+       dir = del & 0x7;
+
+       sprintf(prompt, "%s %s %s threshold or direction or 'query'? ",
                xyas(nstr.x, nstr.y, player->cnum),
-               dchr[sect.sct_type].d_name,
-               ich->i_name);
-       if (!(p = getstarg(player->argp[3], prompt, buf)) || !*p)
-           return RET_SYN;             
-       del = getvar(i_del, (s_char *)&sect, EF_SECTOR);
-       if (((*p >= '0') && (*p <= '9')) || *p == '+') {
-           thresh = atoi(p) & ~0x7;
-           if (*p == '+' || !(p = getstarg(player->argp[4], "Direction? ", buf)) || !*p)
-               dir = del & 0x7;
-           else if ((dir = chkdir(*p, DIR_STOP, DIR_LAST)) < 0)
-               return RET_SYN;
-       } else if (*p != 'q')
+               dchr[sect.sct_type].d_name, ich->i_name);
+       p = getstarg(player->argp[3], prompt, buf);
+       if (!p || !*p)
            return RET_SYN;
-       
-       if (!check_sect_ok(&sect))
-           continue;
+       if (*p != 'q') {
+           if (((*p >= '0') && (*p <= '9')) || *p == '+') {
+               thresh = atoi(p) & ~0x7;
+               if (*p == '+')
+                   p = NULL;
+               else {
+                   sprintf(prompt, "%s %s %s direction? ",
+                           xyas(nstr.x, nstr.y, player->cnum),
+                           dchr[sect.sct_type].d_name, ich->i_name);
+                   p = getstarg(player->argp[4], prompt, buf);
+                   if (!p)
+                       return RET_FAIL;
+               }
+           }
+           if (p && *p) {
+               dir = chkdir(*p, DIR_STOP, DIR_LAST);
+               if (dir < 0) {
+                   pr("'%c' is not a valid direction...\n", *p);
+                   direrr(NULL, NULL, NULL);
+                   return RET_SYN;
+               }
+           }
 
-       if (thresh >= 0) {
-           del = thresh + dir;
-           status = putvar(i_del, del,(s_char *)&sect,EF_SECTOR);
-           if (status < 0) {
-               pr("No room for delivery path in %s\n",
-                  xyas(sect.sct_x, sect.sct_y, player->cnum));
+           if (!check_sect_ok(&sect))
                continue;
-           } else if (!status) {
-               /* Either nothing to set, or bogus amount. */
-               continue;
-           } else
-               putsect(&sect);
+
+           thresh = MIN(thresh, ITEM_MAX) & ~7;
+           del = thresh | dir;
+           sect.sct_del[ich->i_uid] = del;
+           putsect(&sect);
        }
+
        if (!del)
            continue;
-       dir = del & 0x7;
+
        sx = diroff[dir][0] + sect.sct_x;
        sy = diroff[dir][1] + sect.sct_y;
        pr("Deliver %s from %s @ %s to %s",
@@ -118,7 +113,8 @@ deli(void)
        if (!(del & ~0x7))
            pr("\n");
        else
-           pr(" (cutoff %d)\n", del & ~0x7);
+           pr(" (cutoff %d)\n", thresh);
     }
+
     return RET_OK;
 }