]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/torp.c
retreat: Drop unused parameter @code
[empserver] / src / lib / commands / torp.c
index b7f29665c68104289e90540a3f8a56289e516b7d..fc5d3d4a08df1d5bc5db31446564584646ff9a71 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2015, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2021, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                Ken Stevens, Steve McClure, Markus Armbruster
  *
  *  Empire is free software: you can redistribute it and/or modify
@@ -31,7 +31,7 @@
  *     Thomas Ruschak, 1992
  *     Ken Stevens, 1995
  *     Steve McClure, 2000
- *     Markus Armbruster, 2004-2015
+ *     Markus Armbruster, 2004-2021
  */
 
 #include <config.h>
@@ -145,8 +145,10 @@ torp(void)
            continue;
        }
 
-       if (!(sub_mcp->m_flags & M_SUB))
+       if (!(sub_mcp->m_flags & M_SUB)) {
+           pr("Starting our attack run...\n");
            anti_torp(sub.shp_uid, ntorping, vshipown);
+       }
        getship(sub.shp_uid, &sub);
        if (sub.shp_own == 0)
            continue;
@@ -159,26 +161,24 @@ torp(void)
        range = mapdist(sub.shp_x, sub.shp_y, vship.shp_x, vship.shp_y);
        hitchance = shp_torp_hitchance(&sub, range);
        if (range <= erange) {
-           pr("Hitchance = %d%%\n", (int)(hitchance * 100));
+           pr("Hit chance = %.0f%%\n", hitchance * 100);
        }
-       /* Now, can the torpedo even get there? */
-       if (!line_of_sight(NULL, sub.shp_x, sub.shp_y,
-                          vship.shp_x, vship.shp_y)) {
+       if (range > erange)
+           pr("Out of range\n");
+       else if (!line_of_sight(NULL, sub.shp_x, sub.shp_y,
+                               vship.shp_x, vship.shp_y)) {
            pr("BOOM!... Torpedo slams into land before reaching target.\n");
            /* We only tell the victim if we were within range. */
-           if (range <= erange) {
-               if (vshipown != 0)
-                   wu(0, vshipown, "Torpedo sighted @ %s by %s\n",
-                      xyas(sub.shp_x, sub.shp_y, vshipown),
-                      prship(&vship));
-           }
-       } else if (range > erange) {
-           pr("Out of range\n");
+           if (vshipown != 0 && vshipown != player->cnum)
+               wu(0, vshipown, "Torpedo sighted @ %s by %s\n",
+                  xyas(sub.shp_x, sub.shp_y, vshipown),
+                  prship(&vship));
        } else if (chance(hitchance)) {
            pr("BOOM!...\n");
-           if (vshipown != 0)
+           if (vshipown != 0 && vshipown != player->cnum)
                wu(0, vshipown, "%s in %s torpedoed %s for %d damage.\n",
-                  prsub(&sub), xyas(sub.shp_x, sub.shp_y, vshipown),
+                  sub_mcp->m_flags & M_SUB ? "sub" : prship(&sub),
+                  xyas(sub.shp_x, sub.shp_y, vshipown),
                   prship(&vship), dam);
            pr("Torpedo hit %s for %d damage.\n", prsub(&vship), dam);
            if (!(mchr[vship.shp_type].m_flags & M_SUB)) {
@@ -190,12 +190,12 @@ torp(void)
            shipdamage(&vship, dam);
            if (vship.shp_effic < SHIP_MINEFF)
                pr("%s sunk!\n", prsub(&vship));
-           putship(vship.shp_uid, &vship);
            if (vship.shp_rflags & RET_TORPED)
-               retreat_ship(&vship, vshipown, 't');
+               retreat_ship(&vship, vshipown);
+           putship(vship.shp_uid, &vship);
        } else {
            pr("Missed\n");
-           if (vshipown != 0)
+           if (vshipown != 0 && vshipown != player->cnum)
                wu(0, vshipown, "Torpedo sighted @ %s by %s\n",
                   xyas(sub.shp_x, sub.shp_y, vshipown), prship(&vship));
        }
@@ -218,9 +218,6 @@ anti_torp(int f, int ntorping, int vshipown)
     if (sub.shp_own == vshipown)
        return;
 
-    if ((mchr[(int)sub.shp_type].m_flags & M_SUB) == 0)
-       pr("Starting our attack run...\n");
-
     x = 0;
     while (getship(x++, &dd) && sub.shp_effic >= SHIP_MINEFF) {
        if (dd.shp_own == 0)
@@ -338,7 +335,7 @@ char *
 prsub(struct shpstr *sp)
 {
     if (mchr[(int)sp->shp_type].m_flags & M_SUB)
-       return "sub";
+       return prbuf("sub #%d", sp->shp_uid);
     else
        return prship(sp);
 }