]> git.pond.sub.org Git - empserver/blob - src/lib/commands/sate.c
152be2fe3bbd49de4a59935adbb8da3b07c6b54b
[empserver] / src / lib / commands / sate.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, 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  *  sate.c: Do satellite maps/reports.
28  *
29  *  Known contributors to this file:
30  *     Edward M. Rynes Esq, 1988
31  *     Ken Stevens, 1995
32  *     Steve McClure, 1998-2000
33  */
34
35 #include <config.h>
36
37 #include <ctype.h>
38 #include "commands.h"
39 #include "optlist.h"
40 #include "plane.h"
41
42 int
43 sate(void)
44 {
45     static int sct_shp_or_lnd[] = { EF_SECTOR, EF_SHIP, EF_LAND, EF_BAD };
46     double tech;
47     int pln_uid;
48     struct plnstr plane;
49     int type = EF_BAD;
50
51     if (!player->argp[1] ||
52         !*player->argp[1] ||
53         !isdigit(*player->argp[1]) ||
54         (pln_uid = atoi(player->argp[1])) < 0)
55         return RET_SYN;
56
57     if (!getplane(pln_uid, &plane)) {
58         pr("No such plane\n");
59         return RET_FAIL;
60     }
61
62     if (plane.pln_own != player->cnum && !player->god) {
63         pr("You don't own plane #%d\n", pln_uid);
64         return RET_FAIL;
65     }
66
67     if (!pln_is_in_orbit(&plane)) {
68         pr("%s isn't in orbit\n", prplane(&plane));
69         return RET_FAIL;
70     }
71     if (plane.pln_mobil < plane_mob_max) {
72         pr("%s doesn't have enough mobility (needs %d)\n",
73            prplane(&plane), plane_mob_max);
74         return RET_FAIL;
75     }
76     if (player->argp[2]) {
77         type = ef_byname_from(player->argp[2], sct_shp_or_lnd);
78         if (type < 0) {
79             return RET_SYN;
80         }
81     }
82
83     if (plchr[(int)plane.pln_type].pl_flags & P_S)
84         pr("Satellite Spy Report:\n");
85     else
86         pr("Satellite Map Report:\n");
87     pr("%s at ", prplane(&plane));
88     tech = techfact(plane.pln_tech, 20.0);
89     return satmap(plane.pln_x, plane.pln_y, plane.pln_effic,
90                   (int)tech, plchr[(int)plane.pln_type].pl_flags, type);
91 }