]> git.pond.sub.org Git - empserver/blob - src/lib/commands/reco.c
Update copyright notice
[empserver] / src / lib / commands / reco.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2017, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  reco.c: Fly a recon mission
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Markus Armbruster, 2004-2012
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37 #include "empobj.h"
38 #include "path.h"
39 #include "plane.h"
40
41 int
42 reco(void)
43 {
44     int mission_flags = player->argp[0][0] == 's' ? PM_R | PM_S : PM_R;
45     coord tx, ty;
46     coord ax, ay;
47     int ap_to_target;
48     char flightpath[MAX_PATH_LEN];
49     int cno;
50     struct nstr_item ni_bomb;
51     struct nstr_item ni_esc;
52     union empobj_storage target;
53     struct emp_qelem bomb_list;
54     struct emp_qelem esc_list;
55     int wantflags;
56     struct sctstr ap_sect;
57     char buf[1024];
58
59     wantflags = 0;
60     if (get_planes(&ni_bomb, &ni_esc, player->argp[1], player->argp[2]) < 0)
61         return RET_SYN;
62     if (!get_assembly_point(player->argp[3], &ap_sect, buf))
63         return RET_SYN;
64     ax = ap_sect.sct_x;
65     ay = ap_sect.sct_y;
66     if (!getpath(flightpath, player->argp[4], ax, ay, 0, 0, MOB_FLY))
67         return RET_SYN;
68     tx = ax;
69     ty = ay;
70     (void)pathtoxy(flightpath, &tx, &ty, fcost);
71     pr("target is %s\n", xyas(tx, ty, player->cnum));
72
73     if (pln_where_to_land(tx, ty, &target, &wantflags) < 0)
74         return RET_SYN;
75     cno = target.gen.ef_type == EF_SHIP ? target.gen.uid : -1;
76
77     ap_to_target = strlen(flightpath);
78     pr("range to target is %d\n", ap_to_target);
79     /*
80      * select planes within range
81      */
82     pln_sel(&ni_bomb, &bomb_list, &ap_sect, ap_to_target, 1,
83             wantflags | (mission_flags & PM_S ? P_SWEEP : 0),
84             P_M | P_O);
85     pln_sel(&ni_esc, &esc_list, &ap_sect, ap_to_target, 1,
86             wantflags | P_ESC | P_F, P_M | P_O);
87     if (cno >= 0
88         && !pln_can_land_on_carrier(&bomb_list, &esc_list, &target.ship)) {
89         pr("Not enough room on ship #%d!\n", cno);
90         return RET_FAIL;
91     }
92     /*
93      * now arm and equip the bombers, transports, whatever.
94      */
95     pln_arm(&bomb_list, ap_to_target, 'r', NULL);
96     if (QEMPTY(&bomb_list)) {
97         pr("No planes could be equipped for the mission.\n");
98         return RET_FAIL;
99     }
100     pln_arm(&esc_list, ap_to_target, 'e', NULL);
101     ac_encounter(&bomb_list, &esc_list, ax, ay, flightpath, mission_flags);
102     if (QEMPTY(&bomb_list)) {
103         pr("No planes got through fighter defenses\n");
104     } else {
105         getsect(tx, ty, &target);
106         pln_newlanding(&bomb_list, tx, ty, cno);
107         pln_newlanding(&esc_list, tx, ty, cno);
108     }
109     pln_put(&bomb_list);
110     pln_put(&esc_list);
111     return RET_OK;
112 }