]> git.pond.sub.org Git - empserver/blob - src/lib/commands/work.c
Update copyright notice
[empserver] / src / lib / commands / work.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  work.c: Implementation of the work command
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2009-2010
31  */
32
33 #include <config.h>
34
35 #include "chance.h"
36 #include "commands.h"
37 #include "land.h"
38 #include "optlist.h"
39
40 static int buildeff(struct sctstr *, int, double *);
41
42 int
43 work(void)
44 {
45     int nunits;
46     struct nstr_item ni;
47     struct sctstr sect;
48     struct lndstr land;
49     int work_amt, eff_amt, w;
50     char *p;
51     char buf[1024];
52     double cost;
53     struct natstr *natp = getnatp(player->cnum);
54
55     if (!snxtitem(&ni, EF_LAND, player->argp[1], NULL))
56         return RET_SYN;
57     p = getstarg(player->argp[2], "Amount: ", buf);
58     if (!p || !*p)
59         return RET_SYN;
60     work_amt = atoi(p);
61     if ((work_amt < 0) || (work_amt > land_mob_max)) {
62         pr("Mobility used must be from 0 to %d\n", land_mob_max);
63         return RET_FAIL;
64     }
65     nunits = 0;
66     while (nxtitem(&ni, &land)) {
67         if (!player->owner || land.lnd_own == 0)
68             continue;
69         if (!(lchr[(int)land.lnd_type].l_flags & L_ENGINEER))
70             continue;
71         if (land.lnd_mobil <= 0) {
72             pr("%s has no mobility!\n", prland(&land));
73             continue;
74         }
75         getsect(land.lnd_x, land.lnd_y, &sect);
76         if (sect.sct_effic >= 100 && sect.sct_type == sect.sct_newtype) {
77             pr("Nothing to do for %s in %s\n",
78                prland(&land), xyas(sect.sct_x, sect.sct_y, player->cnum));
79             continue;
80         }
81         eff_amt = MIN(land.lnd_mobil, work_amt);
82         w = (eff_amt * land.lnd_effic) / 600;
83         if (w < 1) {
84             pr("%s doesn't work enough to change efficiency (try increasing amount)\n",
85                prland(&land));
86             continue;
87         }
88         cost = 0.0;
89         w = buildeff(&sect, w, &cost);
90         if (w == 0) {
91             pr("%s can't change efficiency in %s\n",
92                prland(&land), xyas(land.lnd_x, land.lnd_y, player->cnum));
93             continue;
94         }
95         if (player->dolcost + cost > natp->nat_money) {
96             pr("You can't afford to work that much in %s!\n",
97                xyas(land.lnd_x, land.lnd_y, player->cnum));
98             break;
99         }
100         player->dolcost += cost;
101         land.lnd_mission = 0;
102         land.lnd_mobil -= roundavg(w * 600.0 / land.lnd_effic);
103         nunits++;
104         pr("%s %s efficiency at %s to %d\n",
105            prland(&land),
106            sect.sct_type == sect.sct_newtype ? "raised" : "lowered",
107            xyas(land.lnd_x, land.lnd_y, player->cnum),
108            sect.sct_effic);
109         putland(land.lnd_uid, &land);
110         putsect(&sect);
111     }
112     if (nunits == 0) {
113         if (player->argp[1])
114             pr("%s: No unit(s)\n", player->argp[1]);
115         else
116             pr("%s: No unit(s)\n", "");
117         return RET_FAIL;
118     } else
119         pr("%d unit%s\n", nunits, splur(nunits));
120     return RET_OK;
121 }
122
123 static int
124 buildeff(struct sctstr *sp, int work, double *money)
125 {
126     int work_cost;
127     int n, hcms, lcms;
128     int effdone = 0;
129
130     if (sp->sct_type != sp->sct_newtype) {
131         /*
132          * Tear down existing sector.
133          * Easier to destroy than to build.
134          */
135         work_cost = (sp->sct_effic + 3) / 4;
136         if (work_cost > work)
137             work_cost = work;
138         n = sp->sct_effic - work_cost * 4;
139         if (n <= 0) {
140             n = 0;
141             sp->sct_type = sp->sct_newtype;
142         }
143         sp->sct_effic = n;
144         work -= work_cost;
145         *money += work_cost;
146         effdone += work_cost;
147     }
148     if (sp->sct_type == sp->sct_newtype) {
149         work_cost = 100 - sp->sct_effic;
150         if (work_cost > work)
151             work_cost = work;
152
153         if (dchr[sp->sct_type].d_lcms > 0) {
154             lcms = sp->sct_item[I_LCM];
155             lcms /= dchr[sp->sct_type].d_lcms;
156             if (work_cost > lcms)
157                 work_cost = lcms;
158         }
159         if (dchr[sp->sct_type].d_hcms > 0) {
160             hcms = sp->sct_item[I_HCM];
161             hcms /= dchr[sp->sct_type].d_hcms;
162             if (work_cost > hcms)
163                 work_cost = hcms;
164         }
165
166         sp->sct_effic += work_cost;
167         *money += work_cost * dchr[sp->sct_type].d_build;
168
169         if ((dchr[sp->sct_type].d_lcms > 0) ||
170             (dchr[sp->sct_type].d_hcms > 0)) {
171             sp->sct_item[I_LCM] -= work_cost * dchr[sp->sct_type].d_lcms;
172             sp->sct_item[I_HCM] -= work_cost * dchr[sp->sct_type].d_hcms;
173         }
174         effdone += work_cost;
175     }
176     return effdone;
177 }