]> git.pond.sub.org Git - empserver/commitdiff
Clean up path finding in best()
authorMarkus Armbruster <armbru@pond.sub.org>
Sat, 26 Mar 2011 07:10:30 +0000 (08:10 +0100)
committerMarkus Armbruster <armbru@pond.sub.org>
Tue, 12 Apr 2011 19:51:32 +0000 (21:51 +0200)
Handle paths longer than 1023 characters sensibly: show them with
"..." appended.

src/lib/commands/best.c

index 42e41c0c159cc79bb791f0219202859b62c85797..2dffd8f0581edd24e89f4cb6d346ac4fc8488327 100644 (file)
@@ -39,7 +39,6 @@ int
 best(void)
 {
     double cost;
-    char *path;
     struct sctstr s1, s2;
     struct nstr_sect nstr, nstr2;
     char buf[1024];
@@ -58,31 +57,22 @@ best(void)
        while (!player->aborted && nxtsct(&nstr2, &s2)) {
            if (!player->owner)
                continue;
-           buf[0] = 0;
            cost = path_find(s1.sct_x, s1.sct_y, s2.sct_x, s2.sct_y,
-                            s1.sct_own, MOB_MOVE);
-           if (cost < 0) {
-               cost = 0;
-               path = NULL;
-           } else {
-               len = path_find_route(buf, 1024,
-                                     s1.sct_x, s1.sct_y,
-                                     s2.sct_x, s2.sct_y);
-               if (len + 1 >= 1024)
-                   path = NULL;
-               else {
-                   strcpy(buf + len, "h");
-                   path = buf;
-               }
-           }
-           if (path)
-               pr("Best path from %s to %s is %s (cost %1.3f)\n",
-                  xyas(s1.sct_x, s1.sct_y, player->cnum),
-                  xyas(s2.sct_x, s2.sct_y, player->cnum), path, cost);
-           else
+                            player->cnum, MOB_MOVE);
+           if (cost < 0)
                pr("No owned path from %s to %s exists!\n",
                   xyas(s1.sct_x, s1.sct_y, player->cnum),
                   xyas(s2.sct_x, s2.sct_y, player->cnum));
+           else {
+               len = path_find_route(buf, sizeof(buf),
+                                     s1.sct_x, s1.sct_y,
+                                     s2.sct_x, s2.sct_y);
+               pr("Best path from %s to %s is %s%s (cost %1.3f)\n",
+                  xyas(s1.sct_x, s1.sct_y, player->cnum),
+                  xyas(s2.sct_x, s2.sct_y, player->cnum),
+                  buf, len < sizeof(buf) ? "h" : "...",
+                  cost);
+           }
        }
     }
     return 0;