]> git.pond.sub.org Git - empserver/blob - src/lib/commands/boar.c
Update copyright notice
[empserver] / src / lib / commands / boar.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  *  boar.c: Board an enemy ship
28  *
29  *  Known contributors to this file:
30  *     Ken Stevens, 1995
31  *     Markus Armbruster, 2011-2015
32  */
33
34 #include <config.h>
35
36 #include "combat.h"
37 #include "commands.h"
38 #include "land.h"
39 #include "retreat.h"
40 #include "ship.h"
41
42 int
43 boar(void)
44 {
45     struct combat off[1];       /* boarding ship or sector */
46     struct combat def[1];       /* defending ship */
47     struct emp_qelem olist;     /* boarding units */
48     struct emp_qelem dlist;     /* defending units */
49     int ototal;                 /* total boarding strength */
50     int a_engineer = 0;         /* boarder engineers are present */
51     int a_spy = 0;              /* the best boarder scout */
52     struct shpstr ship;         /* for retreating */
53     struct sctstr sect;
54     struct lndstr land;
55     struct nstr_item ni;
56     int foundland, def_uid;
57     natid def_own;
58     char *p;
59     char buf[1024];
60
61     att_combat_init(def, EF_SHIP);
62     /*
63      * Collect input from the boarder
64      */
65
66     /* What are we boarding? */
67     p = getstarg(player->argp[1], "Victim ship #?  ", buf);
68     if (!p || (def->shp_uid = atoi(p)) < 0)
69         return RET_SYN;
70
71     /*
72      * Ask the boarder what he wants to board with
73      */
74
75     if (!(p = getstarg(player->argp[2], "Boarding party from? ", buf)))
76         return RET_SYN;
77     if (issector(p)) {
78         att_combat_init(off, EF_SECTOR);
79         if (!sarg_xy(p, &off->x, &off->y))
80             return RET_SYN;
81         getsect(off->x, off->y, &sect);
82         if (sect.sct_own != player->cnum) {
83             pr("You don't own %s!\n", xyas(off->x, off->y, player->cnum));
84             return RET_SYN;
85         }
86         if (sect.sct_mobil <= 0) {
87             /* Look for land units with mobility */
88             snxtitem_xy(&ni, EF_LAND, off->x, off->y);
89             foundland = 0;
90             while (nxtitem(&ni, &land)) {
91                 if (land.lnd_own != player->cnum)
92                     continue;
93                 if (land.lnd_ship >= 0 || land.lnd_land >= 0)
94                     continue;
95                 if (land.lnd_mobil <= 0)
96                     continue;
97                 /* Only land units with assault can board */
98                 if (!(lchr[(int)land.lnd_type].l_flags & L_ASSAULT))
99                     continue;
100                 foundland = 1;
101             }
102             if (!foundland) {
103                 pr("You don't have any mobility (sector or land units) in %s!\n",
104                    xyas(off->x, off->y, player->cnum));
105                 return RET_SYN;
106             }
107         }
108     } else {
109         att_combat_init(off, EF_SHIP);
110         if ((off->shp_uid = atoi(p)) < 0)
111             return RET_SYN;
112     }
113     if (att_abort(A_BOARD, off, def)) {
114         pr("Board aborted\n");
115         return RET_OK;
116     }
117
118     /* Fire at the attacking ship */
119
120     att_approach(off, def);
121     if (att_abort(A_BOARD, off, def)) {
122         pr("Board aborted\n");
123         att_empty_attack(A_BOARD, 0, def);
124         return RET_OK;
125     }
126
127     /* Show what we're boarding */
128     att_show(def);
129
130     /* Ask the player what he wants to board with */
131
132     att_ask_offense(A_BOARD, off, def, &olist, &a_spy, &a_engineer);
133     if (att_abort(A_BOARD, off, def)) {
134         pr("Board aborted\n");
135         att_empty_attack(A_BOARD, 0, def);
136         return att_free_lists(&olist, NULL);
137     }
138
139     ototal = att_get_offense(A_BOARD, off, &olist, def);
140     if (att_abort(A_BOARD, off, def)) {
141         pr("Board aborted\n");
142         att_empty_attack(A_BOARD, 0, def);
143         return att_free_lists(&olist, NULL);
144     }
145
146     /*
147      * We have now got all the answers from the boarder.  From this point
148      * forward, we can assume that this battle is the _only_ thing
149      * happening in the game.
150      */
151
152     /* Get the real defense */
153
154     att_get_defense(&olist, def, &dlist, a_spy, ototal);
155
156     /*
157      * Death, carnage, and destruction.
158      */
159
160     /*
161      * Careful: when the fight sinks the ship, put_combat() clobbers
162      * *def (see FIXME there).
163      */
164     def_uid = def->shp_uid;
165     def_own = def->own;
166     if (!(att_fight(A_BOARD, off, &olist, 1.0, def, &dlist, 1.0))) {
167         getship(def_uid, &ship);
168         if (ship.shp_rflags & RET_BOARDED) {
169             retreat_ship(&ship, def_own, 'u');
170             putship(def_uid, &ship);
171         }
172     }
173
174     return RET_OK;
175 }