]> git.pond.sub.org Git - empserver/blob - src/lib/commands/grin.c
Update copyright notice
[empserver] / src / lib / commands / grin.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  grin.c: Grind gold bars into dust
29  *
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2004-2006
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37 #include "product.h"
38
39 int
40 grin(void)
41 {
42     struct nstr_sect nstr;
43     struct sctstr sect;
44     char *p;
45     int prd, i, n, qty;
46     char buf[1024];
47     double grind_eff = 0.8;
48     struct pchrstr *pp;
49     i_type ctype;
50     unsigned camt;
51
52     prd = dchr[SCT_BANK].d_prd;
53     if (prd < 0 || pchr[prd].p_type < 0) {
54         pr("Grinding is disabled.\n");
55         return RET_FAIL;
56     }
57     pp = &pchr[prd];
58
59     if ((p = getstarg(player->argp[1], "Sectors? ", buf)) == 0)
60         return RET_SYN;
61     if (!snxtsct(&nstr, p))
62         return RET_SYN;
63     if ((p = getstarg(player->argp[2], "amount :  ", buf)) == 0 || *p == 0)
64         return RET_SYN;
65     qty = atoi(p);
66     if (qty < 0)
67         return RET_SYN;
68
69     while (nxtsct(&nstr, &sect)) {
70         if (!player->owner)
71             continue;
72         if (sect.sct_effic < 60 || sect.sct_own != player->cnum)
73             continue;
74
75         /* materials limit */
76         n = MIN(qty, sect.sct_item[pp->p_type]);
77         /* work limit */
78         n = MIN(n, sect.sct_avail / 5);
79         /* space limit */
80         for (i = 0; i < MAXPRCON; i++) {
81             ctype = pp->p_ctype[i];
82             camt = pp->p_camt[i];
83             if (!camt)
84                 continue;
85             if (CANT_HAPPEN(ctype <= I_NONE || ctype > I_MAX))
86                 continue;
87             n = MIN(n,
88                     (double)(ITEM_MAX - sect.sct_item[ctype])
89                     / (camt * grind_eff));
90         }
91
92         if (n > 0) {
93             pr("%d bars ground up in %s\n", n,
94                xyas(sect.sct_x, sect.sct_y, player->cnum));
95             sect.sct_item[I_BAR] -= n;
96             for (i = 0; i < MAXPRCON; i++) {
97                 ctype = pp->p_ctype[i];
98                 camt = pp->p_camt[i];
99                 if (!camt)
100                     continue;
101                 if (CANT_HAPPEN(ctype <= I_NONE || ctype > I_MAX))
102                     continue;
103                 sect.sct_item[ctype] += n * camt * grind_eff;
104             }
105             sect.sct_avail -= n * 5;
106             putsect(&sect);
107         }
108     }
109     return RET_OK;
110 }