]> git.pond.sub.org Git - empserver/blob - src/lib/commands/drop.c
Don't let fly and drop give away civilians
[empserver] / src / lib / commands / drop.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2012, 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  *  drop.c: Air-drop commodities
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 "item.h"
38 #include "path.h"
39 #include "plane.h"
40
41 int
42 drop(void)
43 {
44     coord tx, ty;
45     coord ax, ay;
46     int ap_to_target;
47     struct ichrstr *ip;
48     char flightpath[MAX_PATH_LEN];
49     struct nstr_item ni_bomb;
50     struct nstr_item ni_esc;
51     struct sctstr target;
52     struct emp_qelem bomb_list;
53     struct emp_qelem esc_list;
54     int wantflags;
55     struct sctstr ap_sect;
56     char buf[1024];
57
58     if (get_planes(&ni_bomb, &ni_esc, player->argp[1], player->argp[2]) < 0)
59         return RET_SYN;
60     if (!get_assembly_point(player->argp[3], &ap_sect, buf))
61         return RET_SYN;
62     ax = ap_sect.sct_x;
63     ay = ap_sect.sct_y;
64     if (!getpath(flightpath, player->argp[4], ax, ay, 0, 0, MOB_FLY)
65         || *flightpath == 0)
66         return RET_SYN;
67     tx = ax;
68     ty = ay;
69     (void)pathtoxy(flightpath, &tx, &ty, fcost);
70     pr("target is %s\n", xyas(tx, ty, player->cnum));
71     if (!(ip = whatitem(player->argp[5], "Drop off what? ")))
72         return RET_SYN;
73     getsect(tx, ty, &target);
74
75     if (relations_with(target.sct_own, player->cnum) == ALLIED) {
76         /* own or allied sector: cargo drop */
77         if (ip->i_uid == I_CIVIL) {
78             if (target.sct_own != player->cnum) {
79                 pr("Your civilians refuse to board a flight abroad!\n");
80                 return RET_FAIL;
81             }
82             if (target.sct_own != target.sct_oldown) {
83                 pr("Can't drop civilians into occupied sectors.\n");
84                 return RET_FAIL;
85             }
86         }
87         wantflags = P_C;
88     } else {
89         /* into the unknown... */
90         if (ip->i_uid != I_SHELL) {
91             pr("You don't own %s!\n", xyas(tx, ty, player->cnum));
92             return RET_FAIL;
93         }
94         /* mine drop */
95         wantflags = P_MINE;
96     }
97
98     ap_to_target = strlen(flightpath);
99     if (flightpath[ap_to_target - 1] == 'h')
100         ap_to_target--;
101     pr("range to target is %d\n", ap_to_target);
102     /*
103      * select planes within range
104      */
105     pln_sel(&ni_bomb, &bomb_list, &ap_sect, ap_to_target, 2,
106             wantflags, P_M | P_O);
107     pln_sel(&ni_esc, &esc_list, &ap_sect, ap_to_target, 2,
108             P_ESC | P_F, P_M | P_O);
109     /*
110      * now arm and equip the bombers, transports, whatever.
111      */
112     pln_arm(&bomb_list, 2 * ap_to_target,
113             wantflags & P_MINE ? 'm' : 'd',
114             ip);
115     if (QEMPTY(&bomb_list)) {
116         pr("No planes could be equipped for the mission.\n");
117         return RET_FAIL;
118     }
119     pln_arm(&esc_list, 2 * ap_to_target, 'e', NULL);
120     ac_encounter(&bomb_list, &esc_list, ax, ay, flightpath, 0);
121     if (QEMPTY(&bomb_list)) {
122         pr("No planes got through fighter defenses\n");
123     } else {
124         if (wantflags & P_MINE)
125             pln_mine(&bomb_list, tx, ty);
126         else
127             pln_dropoff(&bomb_list, ip, tx, ty, -1);
128     }
129     pln_put(&bomb_list);
130     pln_put(&esc_list);
131     return RET_OK;
132 }