]> git.pond.sub.org Git - empserver/blob - src/lib/commands/newe.c
Clean up dead stores
[empserver] / src / lib / commands / newe.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2010, 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  *  newe.c: Show new sector efficiency (projected)
29  *
30  *  Known contributors to this file:
31  *     Thomas Ruschak, 1993
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37 #include "item.h"
38 #include "optlist.h"
39
40 int
41 newe(void)
42 {
43     struct natstr *natp;
44     struct sctstr sect;
45     struct nstr_sect nstr;
46     double work, lcms, hcms;
47     int nsect;
48     int civs = 0;
49     int uws = 0;
50     int bwork;
51     int twork;
52     int type;
53     int eff;
54     int maxpop;
55
56     if (!snxtsct(&nstr, player->argp[1]))
57         return RET_SYN;
58     player->simulation = 1;
59     prdate();
60     nsect = 0;
61     while (nxtsct(&nstr, &sect)) {
62         if (!player->owner)
63             continue;
64         if (!sect.sct_off) {
65             civs = (1.0 + obrate * etu_per_update) * sect.sct_item[I_CIVIL];
66             uws = (1.0 + uwbrate * etu_per_update) * sect.sct_item[I_UW];
67             natp = getnatp(sect.sct_own);
68             maxpop = max_pop(natp->nat_level[NAT_RLEV], &sect);
69             work = new_work(&sect,
70                             total_work(sect.sct_work, etu_per_update,
71                                        civs, sect.sct_item[I_MILIT], uws,
72                                        maxpop));
73             bwork = work / 2;
74
75             type = sect.sct_type;
76             eff = sect.sct_effic;
77             if (sect.sct_newtype != type) {
78                 twork = (eff + 3) / 4;
79                 if (twork > bwork) {
80                     twork = bwork;
81                 }
82                 bwork -= twork;
83                 eff -= twork * 4;
84                 if (eff <= 0) {
85                     type = sect.sct_newtype;
86                     eff = 0;
87                 }
88
89                 twork = 100 - eff;
90                 if (twork > bwork) {
91                     twork = bwork;
92                 }
93                 if (dchr[type].d_lcms > 0) {
94                     lcms = sect.sct_item[I_LCM];
95                     lcms = (int)(lcms / dchr[type].d_lcms);
96                     if (twork > lcms)
97                         twork = lcms;
98                 }
99                 if (dchr[type].d_hcms > 0) {
100                     hcms = sect.sct_item[I_HCM];
101                     hcms = (int)(hcms / dchr[type].d_hcms);
102                     if (twork > hcms)
103                         twork = hcms;
104                 }
105                 eff += twork;
106             } else if (eff < 100) {
107                 twork = 100 - eff;
108                 if (twork > bwork) {
109                     twork = bwork;
110                 }
111                 if (dchr[type].d_lcms > 0) {
112                     lcms = sect.sct_item[I_LCM];
113                     lcms = (int)(lcms / dchr[type].d_lcms);
114                     if (twork > lcms)
115                         twork = lcms;
116                 }
117                 if (dchr[type].d_hcms > 0) {
118                     hcms = sect.sct_item[I_HCM];
119                     hcms = (int)(hcms / dchr[type].d_hcms);
120                     if (twork > hcms)
121                         twork = hcms;
122                 }
123                 eff += twork;
124             }
125         } else {
126             eff = sect.sct_effic;
127             type = sect.sct_type;
128         }
129         if (nsect++ == 0) {
130             pr("EFFICIENCY SIMULATION\n");
131             pr("   sect  des    projected eff\n");
132         }
133         prxy("%4d,%-4d", nstr.x, nstr.y, player->cnum);
134         pr(" %c", dchr[type].d_mnem);
135         pr("    %3d%%\n", eff);
136     }
137     player->simulation = 0;
138     if (nsect == 0) {
139         if (player->argp[1])
140             pr("%s: No sector(s)\n", player->argp[1]);
141         else
142             pr("%s: No sector(s)\n", "");
143         return RET_FAIL;
144     } else
145         pr("%d sector%s\n", nsect, splur(nsect));
146     return RET_OK;
147 }