]> git.pond.sub.org Git - empserver/blob - src/lib/update/revolt.c
836d260589a63ddae73d8dd9ce685980598f28aa
[empserver] / src / lib / update / revolt.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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  *  revolt.c: Have disloyal populace revolt!
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Steve McClure, 1997-2000
33  */
34
35 #include <config.h>
36
37 #include "land.h"
38 #include "lost.h"
39 #include "news.h"
40 #include "nsc.h"
41 #include "path.h"
42 #include "plane.h"
43 #include "update.h"
44
45 static void take_casualties(struct sctstr *, int);
46
47 void
48 revolt(struct sctstr *sp)
49 {
50     int che_civ;
51     int che_uw;
52     int civ;
53     int uw;
54     int che;
55     int n;
56
57     che = sp->sct_che;
58     if (che != 0 && (sp->sct_che_target != sp->sct_own || che >= CHE_MAX))
59         return;
60     civ = sp->sct_item[I_CIVIL];
61     uw = sp->sct_item[I_UW];
62     if (che > (civ + uw) * 3)
63         return;
64     che_uw = 0;
65     che_civ = 0;
66     /* che due to civilian unrest */
67     n = 10 - (random() % 20);
68     che_civ = 3 + (civ * n / 500);
69     if (che_civ < 0)
70         che_civ = 0;
71     else if (che_civ * 3 > civ)
72         che_civ = civ / 3;
73     if (che + che_civ > CHE_MAX)
74         che_civ = CHE_MAX - che;
75     che += che_civ;
76     if (che < CHE_MAX) {
77         /* che due to uw unrest */
78         n = 10 + (random() % 30);
79         che_uw = 5 + (uw * n / 500);
80         if (che_uw > uw)
81             che_uw = uw;
82         if (che + che_uw > CHE_MAX)
83             che_uw = CHE_MAX - che_uw;
84         che += che_uw;
85     }
86     if (che_civ + che_uw > 0) {
87         civ -= che_civ;
88         uw -= che_uw;
89         sp->sct_che_target = sp->sct_own;
90         sp->sct_che = che;
91         if (che_civ > 0)
92             sp->sct_item[I_CIVIL] = civ;
93         if (che_uw > 0)
94             sp->sct_item[I_UW] = uw;
95 #ifdef DEBUG
96         logerror("(#%d) %d che fired up in %s",
97                  sp->sct_own, che, ownxy(sp));
98 #endif
99     }
100 }
101
102 /*
103  * summary of effects.
104  * if there are no military in the sector, che recruit from
105  *   populace if pop loyalty is > 10.  They spread subversion otherwise,
106  *   trying to lower pop loyalty.
107  * if che outnumber military, they stay and shoot it out, kill the
108  *   military.
109  * if che are outnumbered by less than 5 to 1, they blow up stuff,
110  *   killing innocent civilians (never uw's) and damaging commodities.
111  * if che are outnumbered by more than 5 to 1, they try to leave the
112  *   sector for a nearby sector with fewer military.
113  *
114  * if the military lose any attacks, the pop loyalty in the sector
115  *   gets worse, representing military defeat.
116  * military can "catch" che's after bombing attacks, or after they move.
117  *   If military catch them, then they get to shoot it out with a portion
118  *   of the che's depending on the # of mil in the sector.  Chance to contact
119  *   is around 10% per every equal number of mil:che ratio in the sector.
120  *   "contact" is by 20% of the military in the sector, and odds are equal.
121  *
122  * Without a doubt this routine should be broken up, if only for readabilty.
123  */
124 void
125 guerrilla(struct sctstr *sp)
126 {
127     struct sctstr *nsp;
128     int recruit;
129     int move;
130     int ratio;
131     int che;
132     int mil;
133     int cc, mc;
134     double odds;
135     int civ;
136     int n;
137     int uw;
138     natid target;
139     struct natstr *tnat;
140     int convert;
141     natid actor;
142     natid victim;
143     int tmp;
144     int min_mil;
145     int val;
146     int oldmob;
147     struct lndstr *lp;
148     struct nstr_item ni;
149
150     mc = cc = 0;
151     recruit = 0;
152     convert = 0;
153     move = 0;
154     if (!sp->sct_che)
155         return;
156     civ = sp->sct_item[I_CIVIL];
157     uw = sp->sct_item[I_UW];
158     victim = sp->sct_own;
159     actor = sp->sct_oldown;
160     che = sp->sct_che;
161     mil = sp->sct_item[I_MILIT];
162
163     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
164
165     while (NULL != (lp = nxtitemp(&ni))) {
166         if (lp->lnd_own != sp->sct_own)
167             continue;
168
169         mil += lp->lnd_item[I_MILIT];
170
171         if (sp->sct_che_target != sp->sct_own)
172             continue;
173
174         /* Security troops can now kill up to 1/5 their complement each
175            update, before doing anything else. */
176         if (lchr[(int)lp->lnd_type].l_flags & L_SECURITY) {
177             int che_kill, r;
178
179             mil += lp->lnd_item[I_MILIT];
180             r = (lp->lnd_item[I_MILIT] * lp->lnd_effic) / 500;
181             che_kill = r < 1 ? 0 : roll(r);
182             if (che_kill > che)
183                 che_kill = che;
184             if (che_kill) {
185                 wu(0, sp->sct_own,
186                    "%s kills %d guerrilla%s in raid at %s!\n",
187                    prland(lp), che_kill, splur(che_kill), ownxy(sp));
188                 che -= che_kill;
189             }
190         }
191     }
192
193     /* Security forces killed all the che */
194     if (che <= 0) {
195         sp->sct_che = 0;
196         sp->sct_che_target = 0;
197         return;
198     }
199
200     target = sp->sct_che_target;
201     if (CANT_HAPPEN(target == 0))
202         return;
203     tnat = getnatp(target);
204     if (tnat->nat_stat == STAT_UNUSED) {
205         /* target nation has dissolved: che's retire.  */
206         logerror("%d Che targeted at country %d retiring", che, target);
207         sp->sct_che = 0;
208         sp->sct_che_target = 0;
209         sp->sct_item[I_CIVIL] = MIN(civ + che, ITEM_MAX);
210         return;
211     }
212
213     if (sp->sct_own != target) {
214         /*logerror("own %d != target %d", sp->sct_own, target); */
215         move++;
216         goto domove;
217     }
218
219     ratio = mil / che;
220     odds = (double)che / (mil + che);
221     odds /= hap_fact(tnat, getnatp(sp->sct_oldown));
222     if (mil == 0) {
223         wu(0, sp->sct_own, "Revolutionary subversion reported in %s!\n",
224            ownxy(sp));
225         recruit++;
226         convert++;
227     } else if (che > mil && mil > 0) {
228         /*logerror("guerrilla shootout with military"); */
229         /*
230          * shoot it out with the military, and kill them off.
231          * If loyalty bad enough, then take the sector over,
232          * and enlist 5% of civ as military force.
233          */
234         while (che > 0 && mil > 0) {
235             if (chance(odds)) {
236                 mc++;
237                 mil--;
238             } else {
239                 cc++;
240                 che--;
241             }
242         }
243         if (mil > 0) {
244             /* military won.  */
245             n = sp->sct_loyal - (random() % 15);
246             if (n < 0)
247                 n = 0;
248             sp->sct_loyal = n;
249             /*logerror("(#%d) mil beat che in %s", sp->sct_own, */
250             /*ownxy(sp)); */
251         } else {
252             convert++;
253             recruit++;
254             /*logerror("(#%d) che beat mil in %s", sp->sct_own, */
255             /*ownxy(sp)); */
256         }
257         take_casualties(sp, mc);
258     } else if (ratio < 5) {
259         /*
260          * guerrillas have to resort to blowing things up.
261          * Note this disrupts work in the sector.
262          */
263         n = 0;
264         n = (random() % 10) + (random() % che);
265         if (n > 100)
266             n = 100;
267         tmp = sp->sct_work - n;
268         if (tmp < 0)
269             tmp = 0;
270         sp->sct_work = tmp;
271         wu(0, sp->sct_own,
272            "Production %s disrupted by terrorists in %s\n",
273            effadv(n), ownxy(sp));
274         sect_damage(sp, n / 10, 0);
275         /*logerror("(#%d) che blew up %s for %d", sp->sct_own, */
276         /*ownxy(sp), n); */
277         recruit++;
278     } else {
279         /* ratio >= 5 */
280         /*logerror("(#%d) %d che fleeing %d mil in %s", sp->sct_own, */
281         /*che, mil, ownxy(sp)); */
282         move++;
283     }
284     if (mil > 0 && che > 0) {
285         /*
286          * we only get here if we haven't had combat previously.
287          * Chance to catch them.
288          * 20% of mil involved in attacking the che's.
289          */
290         if (chance(ratio * 0.10)) {
291             n = (mil / 5) + 1;
292             odds = (double)che / (n + che);
293             odds /= hap_fact(tnat, getnatp(sp->sct_oldown));
294             while (che > 0 && n > 0) {
295                 if (chance(odds)) {
296                     mc++;
297                     n--;
298                 } else {
299                     cc++;
300                     che--;
301                 }
302             }
303             take_casualties(sp, mc);
304             recruit = 0;
305             /*logerror("Caught che; mc: %d, cc: %d", cc, mc); */
306         }
307     }
308     if (convert && sp->sct_loyal >= 50) {
309         int n;
310         /* new owner gets to keep the mobility there */
311         oldmob = sp->sct_mobil;
312         /* che won, and sector converts. */
313         if (sp->sct_own == sp->sct_oldown)
314             sp->sct_oldown = 0;
315         else
316             takeover(sp, sp->sct_oldown);
317         sp->sct_mobil = oldmob;
318         civ += uw;
319         uw = 0;
320         n = civ / 20;
321         civ -= n;
322         if (civ > ITEM_MAX) {
323             uw = civ - ITEM_MAX;
324             civ = ITEM_MAX;
325         }
326         sp->sct_item[I_CIVIL] = civ;
327         sp->sct_item[I_UW] = uw;
328         sp->sct_item[I_MILIT] = n;
329         move++;
330         recruit = 0;
331         if (sp->sct_own)
332             wu(0, sp->sct_own, "Sector %s has been retaken!\n",
333                xyas(sp->sct_x, sp->sct_y, sp->sct_own));
334     }
335     if (recruit && che > 0) {
336         /* loyalty drops during recruitment efforts */
337         n = sp->sct_loyal;
338         if (n < 30)
339             n += (random() % 5) + 1;
340         else if (n < 70)
341             n += (random() % 10) + 4;
342         if (n > 127)
343             n = 127;
344         sp->sct_loyal = n;
345         if (sp->sct_oldown != sp->sct_own || n > 100) {
346             n = civ * (random() % 3) / 200;
347             n /= hap_fact(tnat, getnatp(sp->sct_oldown));
348             if (n + che > CHE_MAX)
349                 n = CHE_MAX - che;
350             che += n;
351             civ -= n;
352             sp->sct_item[I_CIVIL] = civ;
353         }
354         n = uw * (random() % 3) / 200;
355         if (n + che > CHE_MAX)
356             n = CHE_MAX - che;
357         che += n;
358         uw -= n;
359         sp->sct_item[I_UW] = uw;
360     }
361   domove:
362     if (move && che > 0) {
363         struct sctstr *nicest_sp = 0;
364         if (convert)
365             min_mil = 999;
366         else
367             min_mil = mil;
368         /* search adjacent sectors for a nice one */
369         for (n = 1; n <= 6; n++) {
370             nsp = getsectp(sp->sct_x + diroff[n][0],
371                            sp->sct_y + diroff[n][1]);
372             if (dchr[nsp->sct_type].d_mob0 < 0)
373                 continue;
374             if (nsp->sct_own != target)
375                 continue;
376             if (nsp->sct_che > 0) {
377                 if (nsp->sct_che_target != target)
378                     continue;
379                 if (nsp->sct_che + che > CHE_MAX)
380                     continue;
381             }
382             val = nsp->sct_item[I_MILIT];
383             /* don't give che more precise info than spy */
384             val = roundintby(val, 10);
385             /* inject a modicum of indeterminism; also
386              * avoids che preferring certain directions */
387             val += random() % 10 - 5;
388             if (val >= min_mil)
389                 continue;
390             nicest_sp = nsp;
391             min_mil = val;
392         }
393         /* if we found a nice sector, go there */
394         if (nicest_sp != 0) {
395             nicest_sp->sct_che += che;
396             nicest_sp->sct_che_target = target;
397             che = 0;
398         }
399     }
400     if (che > 0) {
401         sp->sct_che = che;
402         sp->sct_che_target = target;
403     } else {
404         sp->sct_che = 0;
405         sp->sct_che_target = 0;
406     }
407     if (mc > 0 || cc > 0) {
408         wu(0, target,
409            "Guerrilla warfare in %s\n",
410            xyas(sp->sct_x, sp->sct_y, target));
411         if (sp->sct_own == target)
412             wu(0, target, "  body count: troops: %d, rebels: %d\n", mc, cc);
413         else
414             wu(0, target,
415                "  rebels murder %d military\n", mc);
416         nreport(actor, N_FREEDOM_FIGHT, victim, 1);
417     }
418     if (sp->sct_own != victim)
419         wu(0, victim, "Partisans take over %s!\n",
420            xyas(sp->sct_x, sp->sct_y, victim));
421 }
422
423 static void
424 take_casualties(struct sctstr *sp, int mc)
425 {
426     int orig_mil;
427     int cantake;
428     int nunits = 0, each, deq;
429     struct lndstr *lp;
430     struct nstr_item ni;
431
432     /* casualties come out of mil first */
433     orig_mil = sp->sct_item[I_MILIT];
434
435     if (mc <= orig_mil) {
436         sp->sct_item[I_MILIT] = orig_mil - mc;
437         return;
438     }
439     sp->sct_item[I_MILIT] = 0;
440
441     /* remaining casualites */
442     mc -= orig_mil;
443
444     /*
445      * Need to take total_casualties and divide
446      * them amongst the land units in the sector
447      * Do security troops first, then others.
448      * Try not to kill any unit.
449      */
450     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
451     while (NULL != (lp = nxtitemp(&ni))) {
452         nunits++;
453         if (lchr[(int)lp->lnd_type].l_flags & L_SECURITY)
454             nunits++;
455     }
456
457     if (nunits == 0)
458         return;
459
460     each = (mc / nunits) + 2;
461
462     /* kill some security troops */
463     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
464     while (NULL != (lp = nxtitemp(&ni))) {
465         if (!(lchr[(int)lp->lnd_type].l_flags & L_SECURITY))
466             continue;
467
468         cantake = ((lp->lnd_effic - 40) / 100.0) * lp->lnd_item[I_MILIT];
469
470         if (cantake >= each) {
471             deq = ((double)each / lp->lnd_item[I_MILIT]) * 100.0;
472             mc -= 2 * each;
473         } else if (cantake > 0) {
474             deq = ((double)cantake / lp->lnd_item[I_MILIT]) * 100.0;
475             mc -= 2 * cantake;
476         } else
477             deq = 0;
478
479         lp->lnd_effic -= deq;
480         lp->lnd_mobil -= deq / 2;
481         deq = lchr[(int)lp->lnd_type].l_mil * (deq / 100.0);
482         lnd_submil(lp, deq);
483         if (mc <= 0)
484             return;
485     }
486
487     /* kill some normal troops */
488     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
489     while (NULL != (lp = nxtitemp(&ni))) {
490         if (lchr[(int)lp->lnd_type].l_flags & L_SECURITY)
491             continue;
492
493         cantake = ((lp->lnd_effic - 40) / 100.0) * lp->lnd_item[I_MILIT];
494
495         if (cantake >= each) {
496             deq = ((double)each / lp->lnd_item[I_MILIT]) * 100.0;
497             mc -= each;
498         } else if (cantake > 0) {
499             deq = ((double)cantake / lp->lnd_item[I_MILIT]) * 100.0;
500             mc -= cantake;
501         } else
502             deq = 0;
503
504         lp->lnd_effic -= deq;
505         lp->lnd_mobil -= deq / 2;
506         deq = lchr[(int)lp->lnd_type].l_mil * (deq / 100.0);
507         lnd_submil(lp, deq);
508         if (mc <= 0)
509             return;
510     }
511
512     /* Hmm.. still some left.. kill off units now */
513     /* kill some normal troops */
514     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
515     while (NULL != (lp = nxtitemp(&ni))) {
516         if (lchr[(int)lp->lnd_type].l_flags & L_SECURITY)
517             continue;
518
519         mc -= (lp->lnd_effic / 100.0) * lp->lnd_item[I_MILIT];
520         lp->lnd_effic = 0;
521         lnd_submil(lp, 1000);   /* Remove 'em all */
522         wu(0, lp->lnd_own, "%s dies fighting guerrillas in %s\n",
523            prland(lp), xyas(lp->lnd_x, lp->lnd_y, lp->lnd_own));
524         makelost(EF_LAND, lp->lnd_own, lp->lnd_uid, lp->lnd_x, lp->lnd_y);
525         lp->lnd_own = 0;
526         if (mc <= 0)
527             return;
528     }
529
530     /* Hmm.. still some left.. kill off units now */
531     /* kill some security troops */
532     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
533     while (NULL != (lp = nxtitemp(&ni))) {
534         if (!(lchr[(int)lp->lnd_type].l_flags & L_SECURITY))
535             continue;
536
537         mc -= (lp->lnd_effic / 100.0) * lp->lnd_item[I_MILIT] * 2.0;
538         lp->lnd_effic = 0;
539         lnd_submil(lp, 1000);   /* Kill 'em all */
540         wu(0, lp->lnd_own, "%s dies fighting guerrillas in %s\n",
541            prland(lp), xyas(lp->lnd_x, lp->lnd_y, lp->lnd_own));
542         makelost(EF_LAND, lp->lnd_own, lp->lnd_uid, lp->lnd_x, lp->lnd_y);
543         lp->lnd_own = 0;
544         if (mc <= 0)
545             return;
546     }
547
548     /* Hmm.. everyone dead.. too bad */
549 }