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