]> git.pond.sub.org Git - empserver/blob - src/lib/commands/repo.c
(coun_list, repo_list, nati): Replace in-flux determination code with influx().
[empserver] / src / lib / commands / repo.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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  *  repo.c: Report on various levels (tech, research) of other nations
29  * 
30  *  Known contributors to this file:
31  *     Keith Muller, 1983
32  *     Dave Pare, 1986 (rewrite)
33  *     Steve McClure, 2000
34  */
35
36 #include "misc.h"
37 #include "player.h"
38 #include "sect.h"
39 #include "nat.h"
40 #include "file.h"
41 #include "xy.h"
42 #include "nsc.h"
43 #include <fcntl.h>
44 #include <ctype.h>
45 #include "commands.h"
46 #include "optlist.h"
47
48 struct stats {
49     double res;
50     double tech;
51     double edu;
52     double hap;
53     int stat;
54 };
55
56 static void printdiff(int mystat, double ours, struct natstr *natp,
57                       int what);
58 static void repo_header(void);
59 static void repo_list(struct stats *stat, natid cn, struct natstr *natp);
60
61 static int check(s_char *buf, double theirs, double min, double max,
62                  int shift, int tolerance);
63
64 int
65 repo(void)
66 {
67     struct natstr *natp;
68     struct stats mystat;
69     struct natstr nat;
70     struct nstr_item ni;
71     int first;
72
73     if (!snxtitem(&ni, EF_NATION, player->argp[1]))
74         return RET_SYN;
75     prdate();
76     natp = getnatp(player->cnum);
77     memset(&mystat, 0, sizeof(struct stats));
78     mystat.stat = natp->nat_stat;
79     if (mystat.stat & STAT_NORM) {
80         mystat.res = natp->nat_level[NAT_RLEV];
81         mystat.tech = natp->nat_level[NAT_TLEV];
82         mystat.edu = natp->nat_level[NAT_ELEV];
83         mystat.hap = natp->nat_level[NAT_HLEV];
84     }
85     if (opt_HIDDEN) {
86         repo_header();
87         first = 0;
88     } else {
89         first = 1;
90     }
91     while (nxtitem(&ni, &nat)) {
92         if (!(nat.nat_stat & STAT_INUSE))
93             continue;
94         if (opt_HIDDEN) {
95             if (!player->god && !getcontact(getnatp(player->cnum), ni.cur))
96                 continue;
97         }
98         if (first) {
99             repo_header();
100             first = 0;
101         }
102         repo_list(&mystat, (natid)ni.cur, &nat);
103     }
104     return RET_OK;
105 }
106
107 static void
108 repo_header(void)
109 {
110     pr(" #    name                tech      research   education   happiness ");
111     if (player->god)
112         pr("capital\n");
113     else {
114         if (opt_HIDDEN)
115             pr("\n");
116         else
117             pr(" status\n");
118     }
119 }
120
121 static void
122 repo_list(struct stats *stat, natid cn, struct natstr *natp)
123 {
124     if (player->god) {
125         pr(" %-3d   %-14.14s ", cn, natp->nat_cnam);
126         pr(" %7.2f    %7.2f      %7.2f     %7.2f",
127            natp->nat_level[NAT_TLEV],
128            natp->nat_level[NAT_RLEV],
129            natp->nat_level[NAT_ELEV], natp->nat_level[NAT_HLEV]);
130         prxy("  %4d,%-4d\n", natp->nat_xcap, natp->nat_ycap, player->cnum);
131         return;
132     }
133     switch (natp->nat_stat & (STAT_NORM | STAT_GOD | STAT_NEW | STAT_SANCT)) {
134     case STAT_NORM:
135         pr(" %-3d   %-14.14s ", cn, natp->nat_cnam);
136         printdiff(stat->stat, stat->tech, natp, NAT_TLEV);
137         printdiff(stat->stat, stat->res, natp, NAT_RLEV);
138         printdiff(stat->stat, stat->edu, natp, NAT_ELEV);
139         printdiff(stat->stat, stat->hap, natp, NAT_HLEV);
140         if (opt_HIDDEN) {
141             pr("\n");
142         } else {
143             if (influx(natp))
144                 pr("In flux\n");
145             else if (natp->nat_money <= 0)
146                 pr("Broke\n");
147             else
148                 pr("Active\n");
149         }
150         break;
151     case STAT_SANCT:
152         break;
153     case STAT_NEW:
154     case 0:
155         break;
156     case STAT_SANCT | STAT_NORM | STAT_GOD:
157     case STAT_NORM | STAT_GOD:
158     case STAT_GOD:
159         break;
160     default:
161         pr("????        ????        ????        ????\n");
162         break;
163     }
164 }
165
166 static void
167 printdiff(int mystat, double ours, struct natstr *natp, int what)
168 {
169     double theirs;
170     int shift;
171     int tolerance;
172     s_char buf[128];
173
174     if (natp->nat_cnum == player->cnum) {
175         pr(" %7.2f    ", ours);
176         return;
177     }
178     if (ours && mystat & STAT_NORM && natp->nat_stat & STAT_NORM) {
179         theirs = natp->nat_level[what];
180         if ((shift = min((int)theirs, (int)ours) - 100) > 0) {
181             ours -= shift;
182             theirs -= shift;
183         } else
184             shift = 0;
185         switch (what) {
186         case NAT_TLEV:
187             tolerance = 20;
188             break;
189         case NAT_RLEV:
190             tolerance = 10;
191             break;
192         default:
193             tolerance = 5;
194         }
195         if (tolerance > 2 * ours)
196             tolerance = (int)(2 * ours);
197         if (check(buf, theirs, 2 * ours, -1.0, shift, tolerance))
198           ;
199         else if (check(buf, theirs, 1.5 * ours, 2.0 * ours, shift, tolerance))
200           ;
201         else if (check(buf, theirs, 1.2 * ours, 1.5 * ours, shift, tolerance))
202           ;
203         else if (check(buf, theirs, 1.1 * ours, 1.2 * ours, shift, tolerance))
204           ;
205         else if (check(buf, theirs, ours / 1.1, 1.1 * ours, shift, tolerance))
206           ;
207         else if (check(buf, theirs, ours / 1.2, ours / 1.1, shift, tolerance))
208           ;
209         else if (check(buf, theirs, ours / 1.5, ours / 1.2, shift, tolerance))
210           ;
211         else if (check(buf, theirs, ours / 2.0, ours / 1.5, shift, tolerance))
212           ;
213         else if (check(buf, theirs, -1.0, ours / 2.0, shift, tolerance)) ;
214         else
215             sprintf(buf, "    n/a");
216     } else
217         sprintf(buf, "    n/a");
218
219     pr("%-11s ", buf);
220 }
221
222 static int
223 check(s_char *buf, double theirs, double min, double max, int shift,
224       int tolerance)
225 {
226     double shove;
227
228     if (min < 0) {
229         if (theirs <= max) {
230             if (max < tolerance)
231                 max = tolerance;
232             sprintf(buf, "   0 - %d", (int)max + shift);
233             return 1;
234         }
235     } else if (max < 0) {
236         if (theirs >= min) {
237             sprintf(buf, "    >= %d", (int)min + shift);
238             return 1;
239         }
240     } else if (theirs >= min && theirs <= max) {
241         if (max - min < tolerance) {
242             shove = (tolerance - (max - min)) / 2;
243             if (min + shift - shove >= 0) {
244                 min -= shove;
245                 max += shove;
246             } else {
247                 min = 0;
248                 max = tolerance;
249             }
250         }
251         sprintf(buf, "%4d - %d", (int)min + shift, (int)max + shift);
252         return 1;
253     }
254
255     return 0;
256 }