]> git.pond.sub.org Git - empserver/blob - src/lib/commands/prod.c
(new_work, do_feed, prod, newe): Factor out calculation of work into
[empserver] / src / lib / commands / prod.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  prod.c: Calculate production levels
29  * 
30  *  Known contributors to this file:
31  *     David Muir Sharnoff, 1987
32  *     Steve McClure, 1997-2000
33  */
34
35 #include "misc.h"
36 #include "player.h"
37 #include "var.h"
38 #include "xy.h"
39 #include "nsc.h"
40 #include "sect.h"
41 #include "product.h"
42 #include "nat.h"
43 #include "item.h"
44 #include "file.h"
45 #include "optlist.h"
46 #include "commands.h"
47
48 int
49 count_pop(register int n)
50 {
51     register int i;
52     register int pop = 0;
53     struct sctstr *sp;
54
55     for (i = 0; NULL != (sp = getsectid(i)); i++) {
56         if (sp->sct_own != n)
57             continue;
58         if (sp->sct_oldown != n)
59             continue;
60         pop += sp->sct_item[I_CIVIL];
61     }
62     return pop;
63 }
64
65 int
66 prod(void)
67 {
68     struct natstr *natp;
69     struct sctstr sect;
70     struct nstr_sect nstr;
71     struct pchrstr *pp;
72     double effic;
73     double maxr;                /* floating version of max */
74     double prodeff;
75     double real;                /* floating pt version of act */
76     double work;
77     int totpop;
78     int act;                    /* actual production */
79     int cost;
80     int i;
81     int max;                    /* production w/infinate materials */
82     double maxtake;
83     int nsect;
84     double take;
85     double mtake;
86     int there;
87     int totcomp;                /* sum of component amounts */
88     int used;                   /* production w/infinite workforce */
89     int wforce;
90     int it;
91     u_short *amount;            /* amount for component pointer */
92     u_char *comp;               /* component pointer */
93     u_char *endcomp;
94     u_char vtype;
95     s_char *resource;
96     int c;
97     s_char maxc[3][10];
98     s_char use[3][10];
99     int lcms, hcms;
100     int civs = 0;
101     int uws = 0;
102     int bwork;
103     int twork;
104     int type;
105     int eff;
106     int maxpop;
107     u_char otype;
108
109     if (!snxtsct(&nstr, player->argp[1]))
110         return RET_SYN;
111     player->simulation = 1;
112     prdate();
113     nsect = 0;
114     while (nxtsct(&nstr, &sect)) {
115         if (!player->owner)
116             continue;
117
118         civs = min(9999, (int)((obrate * etu_per_update + 1.0)
119                                * sect.sct_item[I_CIVIL]));
120         uws = min(9999, (int)((uwbrate * etu_per_update + 1.0)
121                               * sect.sct_item[I_UW]));
122         if (opt_RES_POP) {
123             natp = getnatp(sect.sct_own);
124             maxpop = max_pop((float)natp->nat_level[NAT_RLEV], &sect);
125             civs = min(civs, maxpop);
126             uws = min(uws, maxpop);
127         } else {                /* now RES_POP */
128             civs = min(999, civs);
129             uws = min(999, uws);
130         }                       /* end RES_POP */
131
132         /* This isn't quite right, since research might rise/fall */
133         /* during the update, but it's the best we can really do  */
134         wforce = (int)(((double)civs * sect.sct_work) / 100.0
135                        + uws
136                        + sect.sct_item[I_MILIT] * 2.0 / 5.0);
137         work = new_work(&sect, wforce * etu_per_update / 100);
138         bwork = work / 2;
139
140         if (sect.sct_off)
141             continue;
142         type = sect.sct_type;
143         eff = sect.sct_effic;
144         if (sect.sct_newtype != type) {
145             twork = (eff + 3) / 4;
146             if (twork > bwork) {
147                 twork = bwork;
148             }
149             bwork -= twork;
150             eff -= twork * 4;
151             otype = type;
152             if (eff <= 0) {
153                 type = sect.sct_newtype;
154                 eff = 0;
155             }
156             if (opt_BIG_CITY) {
157                 if (!eff && dchr[otype].d_pkg == UPKG &&
158                     dchr[type].d_pkg != UPKG) {
159                     if (opt_RES_POP) {
160                         natp = getnatp(sect.sct_own);
161                         civs =
162                             min(civs,
163                                 max_pop(natp->nat_level[NAT_RLEV], 0));
164                         uws =
165                             min(uws,
166                                 max_pop(natp->nat_level[NAT_RLEV], 0));
167                     } else {
168                         civs = min(9999, civs);
169                         uws = min(9999, uws);
170                     }
171                     wforce = (int)(((double)civs * sect.sct_work) / 100.0
172                                    + uws
173                                    + sect.sct_item[I_MILIT] * 2 / 5.0);
174                     work = etu_per_update * wforce / 100.0;
175                     bwork = min((int)(work / 2), bwork);
176                 }
177             }
178             twork = 100 - eff;
179             if (twork > bwork) {
180                 twork = bwork;
181             }
182             if (dchr[type].d_lcms > 0) {
183                 lcms = sect.sct_item[I_LCM];
184                 lcms /= dchr[type].d_lcms;
185                 if (twork > lcms)
186                     twork = lcms;
187             }
188             if (dchr[type].d_hcms > 0) {
189                 hcms = sect.sct_item[I_HCM];
190                 hcms /= dchr[type].d_hcms;
191                 if (twork > hcms)
192                     twork = hcms;
193             }
194             bwork -= twork;
195             eff += twork;
196         } else if (eff < 100) {
197             twork = 100 - eff;
198             if (twork > bwork) {
199                 twork = bwork;
200             }
201             bwork -= twork;
202             eff += twork;
203         }
204         work = (work + 1) / 2 + bwork;
205         if (eff < 60 || (type != SCT_ENLIST && eff < 61))
206             continue;
207
208         effic = eff / 100.0;
209         if (effic > 1.0)
210             effic = 1.0;
211
212         if (dchr[type].d_prd == 0 && type != SCT_ENLIST)
213             continue;
214         totcomp = 0;
215         pp = &pchr[dchr[type].d_prd];
216         vtype = pp->p_type;
217         natp = getnatp(sect.sct_own);
218         /*
219          * sect effic  (inc improvements)
220          */
221         if (type == SCT_ENLIST && sect.sct_own != sect.sct_oldown)
222             continue;
223         if (type == SCT_ENLIST)
224             goto is_enlist;
225         if (pp->p_nrndx != 0) {
226             totcomp++;
227             resource = ((s_char *)&sect) + pp->p_nrndx;
228             effic = (*resource * effic) / 100.0;
229             if (pp->p_nrdep > 0) {
230                 maxtake = (*resource * 100.0) / pp->p_nrdep;
231                 if (effic > maxtake)
232                     effic = maxtake;
233             }
234         }
235         /*
236          * production effic.
237          */
238         if (pp->p_nlndx >= 0) {
239             prodeff = natp->nat_level[pp->p_nlndx] - pp->p_nlmin;
240             if (prodeff < 0.0) {
241                 prodeff = 0.0;
242             }
243             prodeff = prodeff / (prodeff + pp->p_nllag);
244         } else {
245             prodeff = 1.0;
246         }
247         used = 999;
248         comp = pp->p_vtype;
249         endcomp = pp->p_vtype + pp->p_nv;
250         amount = pp->p_vamt;
251         while (comp < endcomp) {
252             if (*amount == 0)
253                 totcomp++;
254             else {
255                 used = min(used, sect.sct_item[(int)*comp] / *amount);
256                 totcomp += *amount;
257             }
258             ++comp;
259             ++amount;
260         }
261         if (totcomp == 0)
262             continue;
263         /*
264          * is production limited by resources or
265          * workforce?
266          */
267         max = (int)((work * effic / (double)totcomp) + 0.5);
268         act = min(used, max);
269         /*
270          * some things are easier to make..  food,
271          * pet, etc.
272          */
273         act = (int)(((double)pp->p_effic * 0.01 * (double)act) + 0.5);
274         max = (int)(((double)pp->p_effic * 0.01 * (double)max) + 0.5);
275
276         real = (double)act *(double)prodeff;
277         maxr = (double)max *(double)prodeff;
278
279         if (vtype != 0) {
280             if (real < 0.0)
281                 real = 0.0;
282             /* production backlog? */
283             there = min(ITEM_MAX, sect.sct_item[vtype]);
284             act = min(act, ITEM_MAX - there);
285             max = min(max, ITEM_MAX - there);
286         }
287
288         if (prodeff != 0) {
289             take = real / prodeff;
290             mtake = maxr / prodeff;
291         } else
292             mtake = take = 0.0;
293
294         if (take > 999.0)
295             take = 999.0;
296         if (mtake > 999.0)
297             mtake = 999.0;
298
299         take = (double)take / ((double)pp->p_effic * 0.01);
300         mtake = (double)mtake / ((double)pp->p_effic * 0.01);
301
302         cost = (int)(take * (double)pp->p_cost);
303         if (opt_TECH_POP) {
304             if (pp->p_level == NAT_TLEV) {
305                 totpop = count_pop(sect.sct_own);
306                 if (totpop > 50000)
307                     cost = (int)((double)cost * (double)totpop / 50000.0);
308             }
309         }
310
311         comp = pp->p_vtype;
312         amount = pp->p_vamt;
313         i = 0;
314         while (comp < endcomp) {
315             it = unitem((int)*comp);
316             if (it > 0 && it <= I_MAX && ichr[it].i_name != 0)
317                 c = ichr[it].i_name[0];
318             else
319                 c = ' ';
320             (void)sprintf(use[i], " %3d%c",
321                           (int)((take * (double)(*amount)) + 0.5), c);
322             (void)sprintf(maxc[i], " %3d%c",
323                           (int)((mtake * (double)(*amount)) + 0.5), c);
324             ++comp;
325             ++amount;
326             ++i;
327         }
328         while (i < 3) {
329             strcpy(use[i], "     ");
330             strcpy(maxc[i], "     ");
331             ++i;
332         }
333
334       is_enlist:
335
336         if (nsect++ == 0) {
337             pr("PRODUCTION SIMULATION\n");
338             pr("   sect  des eff wkfc will make- p.e. cost  use1 use2 use3  max1 max2 max3  max\n");
339         }
340
341         prxy("%4d,%-4d", nstr.x, nstr.y, player->cnum);
342         pr(" %c", dchr[type].d_mnem);
343         pr(" %3.0f%%", effic * 100.0);
344
345         pr(" %4d", wforce);
346         if (vtype != 0) {
347             pr(" %4d", (int)(real + 0.5));
348         } else if (type != SCT_ENLIST) {
349             switch (pp->p_level) {
350             case NAT_TLEV:
351             case NAT_RLEV:
352                 pr(" %1.2f", real);
353                 break;
354             case NAT_ELEV:
355             case NAT_HLEV:
356                 pr(" %4.0f", real);
357                 break;
358             default:
359                 pr("ERROR");
360                 break;
361             }
362         } else {
363             int maxmil;
364             int enlisted;
365             int civs;
366
367             civs = min(999, (int)((obrate * etu_per_update + 1.0)
368                                   * sect.sct_item[I_CIVIL]));
369             natp = getnatp(sect.sct_own);
370             maxpop = max_pop((float)natp->nat_level[NAT_RLEV], &sect);
371             civs = min(civs, maxpop);
372             /* This isn't quite right, since research might
373                rise/fall during the update, but it's the best
374                we can really do  */
375             enlisted = 0;
376             maxmil = (civs / 2) - sect.sct_item[I_MILIT];
377             if (maxmil > 0) {
378                 enlisted = (etu_per_update
379                             * (10 + sect.sct_item[I_MILIT])
380                             * 0.05);
381                 if (enlisted > maxmil)
382                     enlisted = maxmil;
383             }
384             if (enlisted < 0)
385                 enlisted = 0;
386             if (natp->nat_priorities[type] == 0) {
387                 maxmil = 0;
388             }
389             pr(" %4d mil   1.00 $%-5d%3dc",
390                enlisted, enlisted * 3, enlisted);
391             pr("            %3dc           %4d\n",
392                enlisted, maxmil);
393             continue;
394         }
395
396         pr(" %-5.5s", pp->p_sname);
397         prodeff = prodeff * (double)pp->p_effic * 0.01;
398         pr(" %.2f", prodeff);
399         pr(" $%-4d", cost);
400         for (i = 0; i < 3; i++) {
401             pr(use[i]);
402         }
403         pr(" ");
404         for (i = 0; i < 3; i++) {
405             pr(maxc[i]);
406         }
407         if (natp->nat_priorities[type] == 0) {
408             max = 0;
409             maxr = 0;
410         }
411         if (vtype != 0 || pp->p_level == NAT_ELEV
412             || pp->p_level == NAT_HLEV)
413             pr(" %4d\n", min(999, (int)(max * prodeff + 0.05)));
414         else
415             pr(" %1.2f\n", maxr);
416     }
417     player->simulation = 0;
418     if (nsect == 0) {
419         if (player->argp[1])
420             pr("%s: No sector(s)\n", player->argp[1]);
421         else
422             pr("%s: No sector(s)\n", "");
423         return RET_FAIL;
424     } else
425         pr("%d sector%s\n", nsect, splur(nsect));
426     return RET_OK;
427 }