]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/grin.c
Update copyright notice
[empserver] / src / lib / commands / grin.c
index a69ba22c90e450f181098e3bf3f9a3d3fb899fe7..2f311d212b5a39a80dde986bc0dcd4554c0ddee8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *
  *  ---
  *
- *  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.
  *
  *  ---
  *
  *  grin.c: Grind gold bars into dust
- * 
+ *
  *  Known contributors to this file:
- *     
+ *     Markus Armbruster, 2004-2006
  */
 
-#include "misc.h"
-#include "player.h"
-#include "xy.h"
-#include "sect.h"
-#include "nat.h"
-#include "nsc.h"
-#include "file.h"
-#include "product.h"
+#include <config.h>
+
 #include "commands.h"
+#include "product.h"
 
 int
 grin(void)
 {
     struct nstr_sect nstr;
     struct sctstr sect;
-    s_char *p;
-    int i, n, qty;
-    int avail;
-    s_char buf[1024];
+    char *p;
+    int prd, i, n, qty;
+    char buf[1024];
     double grind_eff = 0.8;
+    struct pchrstr *pp;
+    i_type ctype;
+    unsigned camt;
+
+    prd = dchr[SCT_BANK].d_prd;
+    if (prd < 0 || pchr[prd].p_type < 0) {
+       pr("Grinding is disabled.\n");
+       return RET_FAIL;
+    }
+    pp = &pchr[prd];
 
     if ((p = getstarg(player->argp[1], "Sectors? ", buf)) == 0)
        return RET_SYN;
@@ -61,28 +65,28 @@ grin(void)
     qty = atoi(p);
     if (qty < 0)
        return RET_SYN;
+
     while (nxtsct(&nstr, &sect)) {
        if (!player->owner)
            continue;
        if (sect.sct_effic < 60 || sect.sct_own != player->cnum)
            continue;
-       n = sect.sct_item[I_BAR] >= qty ? qty : sect.sct_item[I_BAR];
+
+       /* materials limit */
+       n = MIN(qty, sect.sct_item[pp->p_type]);
        /* work limit */
-       avail = n * 5;
-       if (avail > sect.sct_avail) {
-           n = sect.sct_avail / 5;
-           avail = sect.sct_avail;
-       }
+       n = MIN(n, sect.sct_avail / 5);
        /* space limit */
        for (i = 0; i < MAXPRCON; i++) {
-           if (!pchr[P_BAR].p_camt[i])
+           ctype = pp->p_ctype[i];
+           camt = pp->p_camt[i];
+           if (!camt)
                continue;
-           if (CANT_HAPPEN(pchr[P_BAR].p_ctype[i] <= I_NONE ||
-                           pchr[P_BAR].p_ctype[i] > I_MAX))
+           if (CANT_HAPPEN(ctype <= I_NONE || ctype > I_MAX))
                continue;
-           n = min(n,
-                   (double)(ITEM_MAX - sect.sct_item[pchr[P_BAR].p_ctype[i]])
-                   / (pchr[P_BAR].p_camt[i] * grind_eff));
+           n = MIN(n,
+                   (double)(ITEM_MAX - sect.sct_item[ctype])
+                   / (camt * grind_eff));
        }
 
        if (n > 0) {
@@ -90,15 +94,15 @@ grin(void)
               xyas(sect.sct_x, sect.sct_y, player->cnum));
            sect.sct_item[I_BAR] -= n;
            for (i = 0; i < MAXPRCON; i++) {
-               if (!pchr[P_BAR].p_camt[i])
+               ctype = pp->p_ctype[i];
+               camt = pp->p_camt[i];
+               if (!camt)
                    continue;
-               if (CANT_HAPPEN(pchr[P_BAR].p_ctype[i] <= I_NONE ||
-                               pchr[P_BAR].p_ctype[i] > I_MAX))
+               if (CANT_HAPPEN(ctype <= I_NONE || ctype > I_MAX))
                    continue;
-               sect.sct_item[pchr[P_BAR].p_ctype[i]]
-                   += n * pchr[P_BAR].p_camt[i] * grind_eff;
+               sect.sct_item[ctype] += n * camt * grind_eff;
            }
-           sect.sct_avail -= avail;
+           sect.sct_avail -= n * 5;
            putsect(&sect);
        }
     }