]> git.pond.sub.org Git - empserver/blob - src/lib/commands/fly.c
6930845fbc675d405da0b149eadd972dc1e0e968
[empserver] / src / lib / commands / fly.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  *  fly.c: fly a plane
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Steve McClure, 2000
33  */
34
35 #include "misc.h"
36 #include "player.h"
37 #include "sect.h"
38 #include "ship.h"
39 #include "item.h"
40 #include "plane.h"
41 #include "xy.h"
42 #include "nsc.h"
43 #include "file.h"
44 #include "nat.h"
45 #include "path.h"
46 #include "commands.h"
47
48 int
49 fly(void)
50 {
51     s_char *p;
52     int mission_flags;
53     coord tx, ty;
54     coord ax, ay;
55     int ap_to_target;
56     struct ichrstr *ip;
57     s_char flightpath[MAX_PATH_LEN];
58     struct shpstr ship;
59     int cno;
60     struct nstr_item ni_bomb;
61     struct nstr_item ni_esc;
62     coord x, y;
63     struct sctstr target;
64     struct emp_qelem bomb_list;
65     struct emp_qelem esc_list;
66     int wantflags;
67     struct sctstr ap_sect;
68     int dst_type;
69     s_char *dst_ptr;
70     s_char buf[1024];
71
72     wantflags = 0;
73     if (!snxtitem(&ni_bomb, EF_PLANE, player->argp[1]))
74         return RET_SYN;
75     if (!snxtitem(&ni_esc, EF_PLANE,
76                   getstarg(player->argp[2], "escort(s)? ", buf)))
77         pr("No escorts...\n");
78     if ((p = getstarg(player->argp[3], "assembly point? ", buf)) == 0
79         || *p == 0)
80         return RET_SYN;
81     if (!sarg_xy(p, &x, &y) || !getsect(x, y, &ap_sect))
82         return RET_SYN;
83     if (ap_sect.sct_own && ap_sect.sct_own != player->cnum &&
84         getrel(getnatp(ap_sect.sct_own), player->cnum) != ALLIED) {
85         pr("Assembly point not owned by you or an ally!\n");
86         return RET_SYN;
87     }
88     ax = x;
89     ay = y;
90     if (getpath(flightpath, player->argp[4], ax, ay, 0, 0, 0, P_FLYING) == 0
91         || *flightpath == 0)
92         return RET_SYN;
93     tx = ax;
94     ty = ay;
95     (void)pathtoxy(flightpath, &tx, &ty, fcost);
96     pr("Ending sector is %s\n", xyas(tx, ty, player->cnum));
97     ip = whatitem(player->argp[5], "transport what? ");
98     getsect(tx, ty, &target);
99
100     cno = -1;
101     if (pln_onewaymission(&target, &cno, &wantflags) < 0)
102         return RET_SYN;
103     if (cno < 0) {
104         dst_ptr = (s_char *)&target;
105         dst_type = EF_SECTOR;
106     } else {
107         getship(cno, &ship);
108         dst_ptr = (s_char *)&ship;
109         dst_type = EF_SHIP;
110     }
111
112     if (ip && ip->i_vtype == I_CIVIL && target.sct_own != target.sct_oldown) {
113         pr("Can't fly civilians into occupied sectors.\n");
114         return RET_FAIL;
115     }
116
117     ap_to_target = strlen(flightpath);
118     if (*(flightpath + strlen(flightpath) - 1) == 'h')
119         ap_to_target--;
120     pr("range to target is %d\n", ap_to_target);
121     /*
122      * select planes within range
123      */
124     mission_flags = 0;
125     pln_sel(&ni_bomb, &bomb_list, &ap_sect, ap_to_target,
126             1, wantflags, P_M | P_O);
127     if (QEMPTY(&bomb_list)) {
128         pr("No planes could be equipped for the mission.\n");
129         return RET_FAIL;
130     }
131     wantflags |= P_F;
132     wantflags |= P_ESC;
133     pln_sel(&ni_esc, &esc_list, &ap_sect, ap_to_target,
134             1, wantflags, P_M | P_O);
135     if (cno >= 0 && !pln_oneway_to_carrier_ok(&bomb_list, &esc_list, cno)) {
136         pr("Not enough room on ship #%d!\n", cno);
137         return RET_FAIL;
138     }
139     /*
140      * now arm and equip the bombers, transports, whatever.
141      */
142     mission_flags |= P_X;       /* stealth (shhh) */
143     mission_flags |= P_H;       /* gets turned off if not all choppers */
144     mission_flags = pln_arm(&bomb_list, ap_to_target, 't',
145                             ip, 0, mission_flags);
146     if (QEMPTY(&bomb_list)) {
147         pr("No planes could be equipped for the mission.\n");
148         return RET_FAIL;
149     }
150     mission_flags = pln_arm(&esc_list, ap_to_target, 't',
151                             ip, P_ESC | P_F, mission_flags);
152     ac_encounter(&bomb_list, &esc_list, ax, ay, flightpath, mission_flags,
153                  0, 0, 0);
154     if (QEMPTY(&bomb_list)) {
155         pr("No planes got through fighter defenses\n");
156     } else {
157         getsect(tx, ty, &target);
158         pln_dropoff(&bomb_list, ip, tx, ty, dst_ptr, dst_type);
159         pln_newlanding(&bomb_list, tx, ty, cno);
160         pln_newlanding(&esc_list, tx, ty, cno);
161     }
162     pln_put(&bomb_list);
163     pln_put(&esc_list);
164     return RET_OK;
165 }