]> git.pond.sub.org Git - empserver/blob - src/lib/commands/foll.c
Update copyright notice.
[empserver] / src / lib / commands / foll.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  *  foll.c: Set leader of a set of ships
29  * 
30  *  Known contributors to this file:
31  *     Robert Forsman
32  */
33
34 #include <ctype.h>
35 #include "misc.h"
36 #include "player.h"
37 #include "ship.h"
38 #include "xy.h"
39 #include "nsc.h"
40 #include "file.h"
41 #include "nat.h"
42 #include "commands.h"
43 #include "optlist.h"
44
45 int
46 foll(void)
47 {
48     struct shpstr ship;
49     s_char *cp;
50     int good, leader, count = 0;
51     coord x, y;
52     struct nstr_item nstr;
53     s_char buf[1024];
54
55     if (!opt_SAIL) {
56         pr("The SAIL option is not enabled, so this command is not valid.\n");
57         return RET_FAIL;
58     }
59     if (!snxtitem(&nstr, EF_SHIP, player->argp[1]))
60         return RET_SYN;
61     cp = getstarg(player->argp[2], "leader?", buf);
62     if (cp == 0)
63         cp = "";
64     good = sscanf(cp, "%d", &leader);
65     if (!good)
66         return RET_SYN;
67     getship(leader, &ship);
68     if (ship.shp_own != player->cnum &&
69         getrel(getnatp(ship.shp_own), player->cnum) < FRIENDLY) {
70         pr("That ship won't let you follow.\n");
71         return RET_FAIL;
72     }
73     x = ship.shp_x;
74     y = ship.shp_y;
75     while (nxtitem(&nstr, (s_char *)&ship)) {
76         if (!player->owner)
77             continue;
78         if (ship.shp_x != x || ship.shp_y != y) {
79             pr("Ship #%d not in same sector as #%d\n", ship.shp_uid,
80                leader);
81             continue;
82         }
83         if (ship.shp_uid == leader) {
84             pr("Ship #%d can't follow itself!\n", leader);
85             continue;
86         }
87         if ((ship.shp_autonav & AN_AUTONAV)
88             && !(ship.shp_autonav & AN_STANDBY)) {
89             pr("Ship #%d has other orders!\n", ship.shp_uid);
90             continue;
91         }
92         count++;
93         ship.shp_mission = 0;
94         *ship.shp_path = 'f';
95         ship.shp_path[1] = 0;
96 /*              sprintf(ship.shp_path,"f%d",leader);*/
97         ship.shp_follow = leader;
98         pr("Ship #%d follows #%d.\n", ship.shp_uid, leader);
99         putship(ship.shp_uid, &ship);
100     }
101     if (count == 0) {
102         if (player->argp[1])
103             pr("%s: No ship(s)\n", player->argp[1]);
104         else
105             pr("%s: No ship(s)\n", "");
106         return RET_FAIL;
107     } else
108         pr("%d ship%s\n", count, splur(count));
109     return RET_OK;
110 }