]> git.pond.sub.org Git - empserver/blob - src/lib/commands/prod.c
9f7cc8b8d34e6a292dc92078c2cd73d62a3ab224
[empserver] / src / lib / commands / prod.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2013, 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  *  prod.c: Calculate production levels
28  *
29  *  Known contributors to this file:
30  *     David Muir Sharnoff, 1987
31  *     Steve McClure, 1997-2000
32  *     Markus Armbruster, 2004-2013
33  */
34
35 #include <config.h>
36
37 #include "commands.h"
38 #include "item.h"
39 #include "optlist.h"
40 #include "product.h"
41
42 static void prprod(coord, coord, int, double, double, int, char,
43                    double, double, double, char[], int[], int[], int);
44
45 int
46 count_pop(int n)
47 {
48     int i;
49     int pop = 0;
50     struct sctstr *sp;
51
52     for (i = 0; NULL != (sp = getsectid(i)); i++) {
53         if (sp->sct_own != n)
54             continue;
55         if (sp->sct_oldown != n)
56             continue;
57         pop += sp->sct_item[I_CIVIL];
58     }
59     return pop;
60 }
61
62 int
63 prod(void)
64 {
65     struct natstr *natp;
66     struct sctstr sect;
67     struct nstr_sect nstr;
68     struct pchrstr *pp;
69     double p_e;
70     double maxr;                /* floating version of max */
71     double prodeff;
72     double real;                /* floating pt version of act */
73     int work;
74     int totpop;
75     int act;                    /* actual production */
76     double cost;
77     int i;
78     int max;                    /* production w/infinite materials */
79     int nsect;
80     double take;
81     double mtake;
82     int there;
83     int unit_work;              /* sum of component amounts */
84     int used;                   /* production w/infinite workforce */
85     int res_limit;
86     i_type it;
87     i_type vtype;
88     unsigned char *resource;
89     char cmnem[MAXPRCON];
90     int cuse[MAXPRCON], cmax[MAXPRCON];
91     int lcms, hcms;
92     int civs;
93     int uws;
94     int bwork;
95     int twork;
96     int type;
97     int eff;
98     int maxpop;
99     int otype;
100     char mnem;
101
102     if (!snxtsct(&nstr, player->argp[1]))
103         return RET_SYN;
104     player->simulation = 1;
105     prdate();
106     nsect = 0;
107     while (nxtsct(&nstr, &sect)) {
108         if (!player->owner)
109             continue;
110
111         civs = (1.0 + obrate * etu_per_update) * sect.sct_item[I_CIVIL];
112         uws = (1.0 + uwbrate * etu_per_update) * sect.sct_item[I_UW];
113         natp = getnatp(sect.sct_own);
114         maxpop = max_pop(natp->nat_level[NAT_RLEV], &sect);
115
116         work = new_work(&sect,
117                         total_work(sect.sct_work, etu_per_update,
118                                    civs, sect.sct_item[I_MILIT], uws,
119                                    maxpop));
120         bwork = work / 2;
121
122         if (sect.sct_off)
123             continue;
124         type = sect.sct_type;
125         eff = sect.sct_effic;
126         if (sect.sct_newtype != type) {
127             twork = (eff + 3) / 4;
128             if (twork > bwork) {
129                 twork = bwork;
130             }
131             bwork -= twork;
132             eff -= twork * 4;
133             otype = type;
134             if (eff <= 0) {
135                 type = sect.sct_newtype;
136                 eff = 0;
137             }
138             if (!eff && IS_BIG_CITY(otype) && !IS_BIG_CITY(type)) {
139                 maxpop = max_population(natp->nat_level[NAT_RLEV],
140                                         type, eff);
141                 work = new_work(&sect,
142                                 total_work(sect.sct_work, etu_per_update,
143                                            civs, sect.sct_item[I_MILIT],
144                                            uws, maxpop));
145                 bwork = MIN(work / 2, bwork);
146             }
147             twork = 100 - eff;
148             if (twork > bwork) {
149                 twork = bwork;
150             }
151             if (dchr[type].d_lcms > 0) {
152                 lcms = sect.sct_item[I_LCM];
153                 lcms /= dchr[type].d_lcms;
154                 if (twork > lcms)
155                     twork = lcms;
156             }
157             if (dchr[type].d_hcms > 0) {
158                 hcms = sect.sct_item[I_HCM];
159                 hcms /= dchr[type].d_hcms;
160                 if (twork > hcms)
161                     twork = hcms;
162             }
163             bwork -= twork;
164             eff += twork;
165         } else if (eff < 100) {
166             twork = 100 - eff;
167             if (twork > bwork) {
168                 twork = bwork;
169             }
170             bwork -= twork;
171             eff += twork;
172         }
173         work = (work + 1) / 2 + bwork;
174         if (eff < 60)
175             continue;
176
177         p_e = eff / 100.0;
178         if (p_e > 1.0)
179             p_e = 1.0;
180
181         if (type == SCT_ENLIST) {
182             int maxmil;
183             int enlisted;
184
185             if (sect.sct_own != sect.sct_oldown)
186                 continue;
187             enlisted = 0;
188             maxmil = MIN(civs, maxpop) / 2 - sect.sct_item[I_MILIT];
189             if (maxmil > 0) {
190                 enlisted = (etu_per_update
191                             * (10 + sect.sct_item[I_MILIT])
192                             * 0.05);
193                 if (enlisted > maxmil)
194                     enlisted = maxmil;
195             }
196             if (enlisted < 0)
197                 enlisted = 0;
198             prprod(sect.sct_x, sect.sct_y, type, p_e, 1.0, work,
199                    ichr[I_MILIT].i_mnem, enlisted, maxmil, enlisted * 3,
200                    "c\0\0", &enlisted, &enlisted, nsect++);
201             continue;
202         }
203
204         if (dchr[type].d_prd < 0)
205             continue;
206         pp = &pchr[dchr[type].d_prd];
207         vtype = pp->p_type;
208         if (pp->p_nrndx)
209             resource = (unsigned char *)&sect + pp->p_nrndx;
210         else
211             resource = NULL;
212         used = prod_materials_cost(pp, sect.sct_item, &unit_work);
213         /*
214          * sect p_e  (inc improvements)
215          */
216         if (resource) {
217             unit_work++;
218             p_e *= *resource / 100.0;
219         }
220         if (unit_work == 0)
221             unit_work = 1;
222         /*
223          * production effic.
224          */
225         prodeff = prod_eff(type, natp->nat_level[pp->p_nlndx]);
226         /*
227          * is production limited by resources or
228          * workforce?
229          */
230         max = (int)(work * p_e / (double)unit_work + 0.5);
231         res_limit = prod_resource_limit(pp, resource);
232         if (max > res_limit)
233             max = res_limit;
234         act = MIN(used, max);
235
236         real = (double)act * prodeff;
237         maxr = (double)max * prodeff;
238
239         if (vtype != I_NONE) {
240             real = MIN(999.0, real);
241             maxr = MIN(999.0, maxr);
242             if (real < 0.0)
243                 real = 0.0;
244             /* production backlog? */
245             there = MIN(ITEM_MAX, sect.sct_item[vtype]);
246             real = MIN(real, ITEM_MAX - there);
247         }
248
249         if (prodeff != 0) {
250             take = real / prodeff;
251             mtake = maxr / prodeff;
252         } else
253             mtake = take = 0.0;
254
255         cost = take * pp->p_cost;
256         if (opt_TECH_POP) {
257             if (pp->p_level == NAT_TLEV) {
258                 totpop = count_pop(sect.sct_own);
259                 if (totpop > 50000)
260                     cost *= totpop / 50000.0;
261             }
262         }
263
264         for (i = 0; i < MAXPRCON; ++i) {
265             cmnem[i] = cuse[i] = cmax[i] = 0;
266             if (!pp->p_camt[i])
267                 continue;
268             it = pp->p_ctype[i];
269             if (CANT_HAPPEN(it <= I_NONE || I_MAX < it))
270                 continue;
271             cmnem[i] = ichr[it].i_mnem;
272             cuse[i] = (int)(take * pp->p_camt[i] + 0.5);
273             cmax[i] = (int)(mtake * pp->p_camt[i] + 0.5);
274         }
275
276         if (pp->p_type != I_NONE)
277             mnem = ichr[vtype].i_mnem;
278         else if (pp->p_level == NAT_TLEV || pp->p_level == NAT_RLEV)
279             mnem = '.';
280         else
281             mnem = 0;
282         prprod(sect.sct_x, sect.sct_y, type, p_e, prodeff, work,
283                mnem, real, maxr, cost,
284                cmnem, cuse, cmax, nsect++);
285     }
286     player->simulation = 0;
287     if (nsect == 0) {
288         if (player->argp[1])
289             pr("%s: No sector(s)\n", player->argp[1]);
290         else
291             pr("%s: No sector(s)\n", "");
292         return RET_FAIL;
293     } else
294         pr("%d sector%s\n", nsect, splur(nsect));
295     return RET_OK;
296 }
297
298 static void
299 prprod(coord x, coord y, int type, double p_e, double prodeff, int work,
300        char mnem, double make, double max, double cost,
301        char cmnem[], int cuse[], int cmax[], int nsect)
302 {
303     int i;
304
305     if (nsect == 0) {
306         pr("PRODUCTION SIMULATION\n");
307         pr("   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max\n");
308     }
309
310     prxy("%4d,%-4d", x, y);
311     pr(" %c %3.0f%% %5d", dchr[type].d_mnem, p_e * 100.0, work);
312     if (mnem == '.')
313         pr(" %5.2f", make);
314     else
315         pr(" %4.0f%c", make, mnem ? mnem : ' ');
316     pr(" %.2f $%-5.0f", prodeff, cost);
317     for (i = 0; i < 3; i++) {
318         if (i < MAXPRCON && cmnem[i])
319             pr("%4d%c", cuse[i], cmnem[i]);
320         else
321             pr("     ");
322     }
323     pr(" ");
324     for (i = 0; i < 3; i++) {
325         if (i < MAXPRCON && cmnem[i])
326             pr("%4d%c", cmax[i], cmnem[i]);
327         else
328             pr("     ");
329     }
330     if (mnem == '.')
331         pr(" %5.2f\n", max);
332     else
333         pr(" %5.0f\n", max);
334 }