]> git.pond.sub.org Git - empserver/blob - src/lib/commands/anti.c
Add some missing declarations to headers. Remove some redundant
[empserver] / src / lib / commands / anti.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  *  anti.c: Take action against che
29  * 
30  *  Known contributors to this file:
31  *     Pat Loney, 1992
32  *     Steve McClure, 1997
33  */
34
35
36 #include <stdio.h>
37 #include <ctype.h>
38 #include "misc.h"
39 #include "player.h"
40 #include "var.h"
41 #include "xy.h"
42 #include "sect.h"
43 #include "nat.h"
44 #include "news.h"
45 #include "nsc.h"
46 #include "item.h"
47 #include "file.h"
48 #include "commands.h"
49 #include "optlist.h"
50
51 /*
52  * format: anti <SECT>
53  */
54 int
55 anti(void)
56 {
57     struct sctstr sect;
58     int nsect;
59     struct nstr_sect nstr;
60     int cond[I_MAX + 1];
61     int mil, che, target;
62     int avail_mil;
63     int amil, ache;
64     int milkilled, chekilled;
65     double odds, damil, dache;
66     int mob;
67     int n_cheleft;
68
69     if (!snxtsct(&nstr, player->argp[1]))
70         return RET_SYN;
71     prdate();
72     nsect = 0;
73     while (nxtsct(&nstr, &sect)) {
74         if (!player->owner)
75             continue;
76         if (nsect++ == 0) {
77             pr("  sect    subversion activity report\n");
78             pr("  ----    --------------------------\n");
79         }
80         getvec(VT_COND, cond, (char *)&sect, EF_SECTOR);
81         mil = getvar(V_MILIT, (char *)&sect, EF_SECTOR);
82         che = get_che_value(cond[C_CHE]);
83         target = get_che_cnum(cond[C_CHE]);
84         avail_mil = sect.sct_mobil / 2;
85         if (mil <= avail_mil)
86             avail_mil = mil;
87         prxy("%4d,%-4d ", sect.sct_x, sect.sct_y, player->cnum);
88         if (avail_mil <= 0) {
89             pr("No available mil or mob in sector.\n");
90             continue;
91         }
92         pr("Sector mobility/troop strength will allow %d troops to engage.\n", avail_mil);
93
94         if (target == player->cnum) {
95             amil = mil;
96             ache = che;
97             milkilled = 0;
98             chekilled = 0;
99             mob = sect.sct_mobil;
100             while (amil != 0 && ache != 0 && mob > 1) {
101                 damil = amil;
102                 dache = ache;
103                 odds = (dache * 2.0 / (damil + dache));
104                 odds /= hap_fact(getnatp(sect.sct_own),
105                                  getnatp(sect.sct_oldown));
106                 mob = mob - 2;
107                 if (chance(odds)) {
108                     amil = amil - 1;
109                     milkilled = milkilled + 1;
110                 } else {
111                     ache = ache - 1;
112                     chekilled = chekilled + 1;
113                 }
114             }
115             if (mil - milkilled > 0) {
116                 sect.sct_mobil = sect.sct_mobil - chekilled - milkilled;
117                 putvar(V_MILIT, mil - milkilled, (char *)&sect, EF_SECTOR);
118                 if (ache == 0)
119                     cond[C_CHE] = 0;
120                 set_che_value(cond[C_CHE], ache);
121                 putvar(V_CHE, cond[C_CHE], (char *)&sect, EF_SECTOR);
122                 putsect(&sect);
123                 pr("          Body count:  Military %d - Guerillas %d.\n",
124                    milkilled, chekilled);
125                 if (ache == 0) {
126                     pr("          Partisans cleared out of this sector for now.\n");
127                 } else {
128                     pr("          Partisans still active in this sector.\n");
129                 }
130             } else {
131                 if (opt_MOB_ACCESS) {
132                     sect.sct_mobil =
133                         -(etu_per_update / sect_mob_neg_factor);
134                 } else {
135                     sect.sct_mobil = 0;
136                 }
137                 sect.sct_loyal = sect.sct_loyal * 0.5;
138                 n_cheleft = (random() % 4);
139                 /* 75% chance some che will get left */
140                 if (n_cheleft) {
141                     /* Ok, now leave anywhere from 16% to 25% of the che */
142                     n_cheleft = (ache / (n_cheleft + 3));
143                     ache -= n_cheleft;
144                     set_che_value(cond[C_CHE], n_cheleft);
145                 } else
146                     cond[C_CHE] = 0;
147                 putvar(V_MILIT, ache, (char *)&sect, EF_SECTOR);
148                 putvar(V_CHE, cond[C_CHE], (char *)&sect, EF_SECTOR);
149                 if (sect.sct_own == sect.sct_oldown)
150                     sect.sct_oldown = 0;
151                 makelost(EF_SECTOR, sect.sct_own, 0, sect.sct_x,
152                          sect.sct_y);
153                 makenotlost(EF_SECTOR, sect.sct_oldown, 0, sect.sct_x,
154                             sect.sct_y);
155                 sect.sct_own = sect.sct_oldown;
156                 sect.sct_off = 1;       /* Turn the sector off */
157                 putsect(&sect);
158                 pr("          Partisans take over the sector.  You blew it.\n");
159                 wu(0, sect.sct_oldown,
160                    "Sector %s regained from Partisan activity.\n",
161                    xyas(nstr.x, nstr.y, sect.sct_oldown));
162             }
163         } else {
164             pr("          Body count:  Military 0 - Guerillas 0.\n");
165             pr("          Partisans cleared out of this sector for now.\n");
166         }
167     }
168     pr("%d sector%s\n", nsect, splur(nsect));
169     return RET_OK;
170 }