]> git.pond.sub.org Git - empserver/blob - src/lib/commands/flee.c
22f4f4b4e5733d03f39196d167f35af83d3d658a
[empserver] / src / lib / commands / flee.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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  *  flee.c: Add ships to a fleet
29  *
30  *  Known contributors to this file:
31  *
32  */
33
34 #include <config.h>
35
36 #include <ctype.h>
37 #include "commands.h"
38 #include "ship.h"
39
40 int
41 flee(void)
42 {
43     struct shpstr ship;
44     int count;
45     char *cp;
46     char c;
47     struct nstr_item nstr;
48     struct nstr_item ni;
49     struct shpstr ship2;
50     char buf[1024];
51
52     cp = getstarg(player->argp[1], "fleet? ", buf);
53     if (!cp)
54         return RET_SYN;
55     c = *cp;
56     if (!isalpha(c) && c != '~') {
57         pr("Specify fleet, (1 alpha char or '~')\n");
58         return RET_SYN;
59     }
60     if (c == '~')
61         c = 0;
62     if (!snxtitem(&nstr, EF_SHIP, player->argp[2], NULL))
63         return RET_SYN;
64     count = 0;
65     while (nxtitem(&nstr, &ship)) {
66         if (!player->owner)
67             continue;
68         if (ship.shp_fleet == c)
69             continue;
70         ship.shp_rflags &= ~RET_GROUP;
71         snxtitem_group(&ni, EF_SHIP, c);
72         while (nxtitem(&ni, &ship2)) {
73             if ((ship2.shp_rflags & RET_GROUP) == 0)
74                 continue;
75             if (ship2.shp_x == ship.shp_x && ship2.shp_y == ship.shp_y) {
76                 memcpy(ship.shp_rpath, ship2.shp_rpath,
77                        sizeof(ship.shp_rpath));
78                 ship.shp_rflags = ship2.shp_rflags;
79                 break;
80             }
81         }
82         ship.shp_fleet = c;
83         putship(ship.shp_uid, &ship);
84         count++;
85     }
86     pr("%d ship%s added to fleet `%1.1s'\n", count, splur(count), &c);
87     return RET_OK;
88 }