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