]> git.pond.sub.org Git - empserver/blob - src/lib/commands/cede.c
Update copyright notice.
[empserver] / src / lib / commands / cede.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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  *  cede.c: Give a sector to a neighbor
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare
32  *     Thomas Ruschak
33  */
34
35 #include "misc.h"
36 #include "player.h"
37 #include "var.h"
38 #include "xy.h"
39 #include "sect.h"
40 #include "nsc.h"
41 #include "nat.h"
42 #include "path.h"
43 #include "file.h"
44 #include "plane.h"
45 #include "land.h"
46 #include "ship.h"
47 #include "nuke.h"
48 #include "item.h"
49 #include "commands.h"
50
51 static void cede_hdr(void);
52 static int cede_sect(struct nstr_sect *, natid);
53 static int cede_ship(struct nstr_item *, natid);
54 static void grab_sect(register struct sctstr *, natid);
55 static void grab_ship(register struct shpstr *, natid);
56
57 int
58 cede(void)
59 {
60     natid to;
61     int n;
62     int is_sector = 0, is_ship = 0;
63     s_char *p;
64     struct nstr_sect ns;
65     struct nstr_item ni;
66     struct natstr *natp;
67     s_char buf[1024];
68
69     if ((p = getstarg(player->argp[1], "Cede what? ", buf)) == 0)
70         return RET_SYN;
71     if (snxtsct(&ns, p))
72         is_sector = 1;
73     if (snxtitem(&ni, EF_SHIP, p))
74         is_ship = 1;
75     if (!is_sector && !is_ship)
76         return RET_SYN;
77     if ((n = natarg(player->argp[2], "to which country? ")) < 0)
78         return RET_SYN;
79     if (is_sector && is_ship) {
80         int type;
81
82         if ((p =
83              getstarg(player->argp[3], "Cede sectors or ships (se, sh)? ",
84                       buf)) == 0)
85             return RET_FAIL;
86         if (strlen(p) > 4)
87             p[2] = 0;
88         type = ef_byname(p);
89
90         if (type == EF_SECTOR)
91             is_ship = 0;
92         else if (type == EF_SHIP)
93             is_sector = 0;
94         else {
95             pr("Please type 'se' or 'sh'!\n");
96             return RET_FAIL;
97         }
98     }
99
100
101     if (n == player->cnum) {
102         pr("Giving something to yourself?\n");
103         return RET_FAIL;
104     }
105     natp = getnatp(n);
106     if (natp->nat_stat & STAT_GOD) {
107         pr("You can only give to normal countries...\n");
108         return RET_FAIL;
109     }
110     if (getrel(natp, player->cnum) < FRIENDLY) {
111         pr("You can only cede to a country that is friendly towards you...\n");
112         return RET_FAIL;
113     }
114     to = n;
115
116     if (is_sector)
117         return cede_sect(&ns, to);
118     else
119         return cede_ship(&ni, to);
120 }
121
122 static int
123 cede_sect(struct nstr_sect *ns, natid to)
124 {
125     struct sctstr sect, osect;
126     int nsect;
127     int n, bad;
128     s_char dirstr[20];
129     int off_x, off_y;
130     struct nstr_item ni;
131     struct shpstr ship;
132
133     prdate();
134     for (n = 1; n <= 6; n++)
135         dirstr[n] = dirch[n];
136     dirstr[0] = '.';
137     dirstr[7] = '$';
138     dirstr[8] = '\0';
139     nsect = 0;
140     while (nxtsct(ns, &sect)) {
141         if (!player->owner)
142             continue;
143         if (sect.sct_mobil == 0) {
144             pr("%s has no mobility and cannot be ceded\n",
145                xyas(sect.sct_x, sect.sct_y, player->cnum));
146             continue;
147         }
148
149         bad = 1;
150         for (n = 1; n <= 6; n++) {      /* Directions */
151             off_x = sect.sct_x + diroff[n][0];
152             off_y = sect.sct_y + diroff[n][1];
153
154             if (!getsect(off_x, off_y, &osect))
155                 continue;
156             if ((osect.sct_own == to) && (osect.sct_mobil))
157                 bad = 0;
158             if ((osect.sct_own == to) &&
159                 has_units_with_mob(osect.sct_x, osect.sct_y, to))
160                 bad = 0;
161         }
162         snxtitem_all(&ni, EF_SHIP);
163         while (nxtitem(&ni, (s_char *)&ship)) {
164             if ((ship.shp_own == to) &&
165                 ((ship.shp_x == sect.sct_x) && (ship.shp_y == sect.sct_y)))
166                 bad = 0;
167         }
168         if (bad) {
169             pr("%s has no sector with mobility adjacent to or ship in %s!\n", cname(to), xyas(sect.sct_x, sect.sct_y, player->cnum));
170             continue;
171         }
172
173         if (nsect++ == 0)
174             cede_hdr();
175
176         grab_sect(&sect, to);
177         putsect(&sect);
178         pr("  %s %d%% ceded\n", xyas(sect.sct_x, sect.sct_y, player->cnum),
179            (int)sect.sct_effic);
180         wu(0, (natid)to, "%s ceded to you by %s\n",
181            xyas(sect.sct_x, sect.sct_y, to), cname(player->cnum));
182     }
183     pr("%d sector%s\n", nsect, splur(nsect));
184     return RET_OK;
185 }
186
187 static void
188 cede_hdr(void)
189 {
190     if (player->god)
191         pr("own ");
192     pr("  sect eff\n");
193 }
194
195
196
197 static void
198 grab_sect(register struct sctstr *sp, natid to)
199 {
200     struct plnstr *pp;
201     struct lndstr *lp;
202     struct nukstr *np;
203     struct nstr_item ni;
204     struct plnstr p;
205     struct lndstr l;
206     struct nukstr nuk;
207
208     /* Wipe all the distribution info */
209     memset(sp->sct_dist, 0, sizeof(sp->sct_dist));
210     memset(sp->sct_del, 0, sizeof(sp->sct_del));
211     sp->sct_dist_x = sp->sct_x;
212     sp->sct_dist_y = sp->sct_y;
213
214     pp = &p;
215     snxtitem_xy(&ni, EF_PLANE, sp->sct_x, sp->sct_y);
216     while (nxtitem(&ni, pp)) {
217         if (pp->pln_own == 0)
218             continue;
219         if (pp->pln_ship >= 0)
220             continue;
221         if (pp->pln_own != player->cnum)
222             continue;
223         if (pp->pln_flags & PLN_LAUNCHED)
224             continue;
225
226         wu(0, to, "\t%s ceded to you by %s\n",
227            prplane(pp), cname(player->cnum));
228         makelost(EF_PLANE, pp->pln_own, pp->pln_uid, pp->pln_x, pp->pln_y);
229         pp->pln_own = to;
230         makenotlost(EF_PLANE, pp->pln_own, pp->pln_uid, pp->pln_x,
231                     pp->pln_y);
232         pp->pln_mobil = 0;
233         pp->pln_mission = 0;
234         putplane(pp->pln_uid, pp);
235     }
236
237     np = &nuk;
238     snxtitem_xy(&ni, EF_NUKE, sp->sct_x, sp->sct_y);
239     while (nxtitem(&ni, np)) {
240         if (np->nuk_own == 0)
241             continue;
242
243         wu(0, to, "\tnuclear stockpile #%d ceded to you by %s\n",
244            np->nuk_uid, cname(player->cnum));
245         makelost(EF_NUKE, np->nuk_own, np->nuk_uid, np->nuk_x, np->nuk_y);
246         np->nuk_own = to;
247         makenotlost(EF_NUKE, np->nuk_own, np->nuk_uid, np->nuk_x,
248                     np->nuk_y);
249         putnuke(ni.cur, np);
250     }
251
252     lp = &l;
253     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
254     while (nxtitem(&ni, lp)) {
255         if (lp->lnd_own == 0)
256             continue;
257         if (lp->lnd_ship == 0)
258             continue;
259         if (lp->lnd_own != player->cnum)
260             continue;
261
262         wu(0, to, "\t%s ceded to you by %s\n", prland(lp),
263            cname(player->cnum));
264         makelost(EF_LAND, lp->lnd_own, lp->lnd_uid, lp->lnd_x, lp->lnd_y);
265         makenotlost(EF_LAND, to, lp->lnd_uid, lp->lnd_x, lp->lnd_y);
266         lp->lnd_own = to;
267         lp->lnd_mobil = 0;
268         lp->lnd_mission = 0;
269         putland(ni.cur, lp);
270     }
271
272     sp->sct_avail = 0;
273
274     if (sp->sct_oldown == to) {
275         sp->sct_che = 0;        /* FIXME where do these guys go? */
276         sp->sct_che_target = 0;
277         sp->sct_loyal = 0;
278     }
279
280     if (sp->sct_oldown == to)
281         sp->sct_loyal = 0;
282     else                        /* people don't like being given away */
283         sp->sct_loyal = 50;
284
285     sp->sct_dist_x = sp->sct_x;
286     sp->sct_dist_y = sp->sct_y;
287     makelost(EF_SECTOR, sp->sct_own, 0, sp->sct_x, sp->sct_y);
288     makenotlost(EF_SECTOR, to, 0, sp->sct_x, sp->sct_y);
289     if (sp->sct_oldown == sp->sct_own)
290         sp->sct_oldown = to;
291     sp->sct_own = to;
292     sp->sct_mobil = 0;
293 }
294
295 static int
296 cede_ship(struct nstr_item *ni, natid to)
297 {
298     struct shpstr ship;
299     struct shpstr tship;
300     struct sctstr sect;
301     struct nstr_item tni;
302     int nships = 0;
303     int bad = 0;
304
305     while (nxtitem(ni, (s_char *)&ship)) {
306
307         if (!player->owner || ship.shp_own == 0)
308             continue;
309
310         bad = 1;
311         snxtitem_xy(&tni, EF_SHIP, ship.shp_x, ship.shp_y);
312         while (nxtitem(&tni, (s_char *)&tship) && bad)
313             if (tship.shp_own == to)
314                 bad = 0;
315
316         getsect(ship.shp_x, ship.shp_y, &sect);
317         if (bad && (sect.sct_own != to)) {
318             pr("%s isn't in a %s sector, and is not with a %s ship!\n",
319                prship(&ship), cname(to), cname(to));
320             continue;
321         }
322         grab_ship(&ship, to);
323         putship(ship.shp_uid, &ship);
324         nships++;
325         wu(0, to, "%s ceded to you by %s\n",
326            prship(&ship), cname(player->cnum));
327         pr("%s ceded to %s\n", prship(&ship), cname(to));
328     }
329     pr("    %d ship%s\n", nships, splur(nships));
330
331     return RET_OK;
332 }
333
334 static void
335 grab_ship(register struct shpstr *sp, natid to)
336 {
337     register struct plnstr *pp;
338     register struct lndstr *lp;
339     struct nstr_item ni;
340     struct plnstr p;
341     struct lndstr l;
342
343     pp = &p;
344     snxtitem_xy(&ni, EF_PLANE, sp->shp_x, sp->shp_y);
345     while (nxtitem(&ni, pp)) {
346         if (pp->pln_own == 0)
347             continue;
348         if (pp->pln_flags & PLN_LAUNCHED)
349             continue;
350         if (pp->pln_ship != sp->shp_uid)
351             continue;
352         if (pp->pln_own != player->cnum)
353             continue;
354
355         wu(0, to, "\t%s ceded to you by %s\n",
356            prplane(pp), cname(player->cnum));
357         makelost(EF_PLANE, pp->pln_own, pp->pln_uid, pp->pln_x, pp->pln_y);
358         pp->pln_own = to;
359         makenotlost(EF_PLANE, pp->pln_own, pp->pln_uid, pp->pln_x,
360                     pp->pln_y);
361         pp->pln_mobil = 0;
362         pp->pln_mission = 0;
363         putplane(pp->pln_uid, pp);
364     }
365
366     lp = &l;
367     snxtitem_xy(&ni, EF_LAND, sp->shp_x, sp->shp_y);
368     while (nxtitem(&ni, lp)) {
369         if (lp->lnd_own == 0)
370             continue;
371         if (lp->lnd_ship != sp->shp_uid)
372             continue;
373         if (lp->lnd_own != player->cnum)
374             continue;
375
376         wu(0, to, "\t%s ceded to you by %s\n",
377            prland(lp), cname(player->cnum));
378         makelost(EF_LAND, lp->lnd_own, lp->lnd_uid, lp->lnd_x, lp->lnd_y);
379         makenotlost(EF_LAND, to, lp->lnd_uid, lp->lnd_x, lp->lnd_y);
380         lp->lnd_own = to;
381         lp->lnd_mobil = 0;
382         lp->lnd_mission = 0;
383         putland(ni.cur, lp);
384     }
385
386     makelost(EF_SHIP, sp->shp_own, sp->shp_uid, sp->shp_x, sp->shp_y);
387     sp->shp_own = to;
388     makenotlost(EF_SHIP, sp->shp_own, sp->shp_uid, sp->shp_x, sp->shp_y);
389 }