]> git.pond.sub.org Git - empserver/blob - src/lib/commands/map.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / commands / map.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  map.c: Display a map of sectors.
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Ken Stevens, 1995
33  */
34
35 #include <config.h>
36
37 #include "misc.h"
38 #include "nat.h"
39 #include "file.h"
40 #include "player.h"
41 #include "map.h"
42 #include "ship.h"
43 #include "land.h"
44 #include "xy.h"
45 #include "nsc.h"
46 #include "commands.h"
47 #include "optlist.h"
48
49 int
50 map(void)
51 {
52     register s_char *b;
53     int unit_type = 0;
54     int bmap = 0;
55     struct natstr *np;
56     s_char *str;
57     struct nstr_sect ns;
58     s_char origin = '\0';
59     int map_flags = 0;
60     int i;
61     s_char what[64];
62     s_char buf[1024];
63
64     if (**player->argp != 'm') {
65         if (**player->argp == 'b')
66             bmap = 'b';
67         else if (**player->argp == 'n')
68             bmap = 'n';
69         else {
70             if (**player->argp == 'l')
71                 unit_type = EF_LAND;
72             else if (**player->argp == 'p')
73                 unit_type = EF_PLANE;
74             else if (**player->argp == 's')
75                 unit_type = EF_SHIP;
76             else {
77                 logerror("map: bad player->argp[0]");
78                 return RET_SYN;
79             }
80             if (player->argp[0][1] == 'b')
81                 bmap = 'b';
82         }
83     }
84
85     if (player->argp[1] == NULL) {
86         if ((str = getstring("(sects)? ", buf)) == 0)
87             return RET_SYN;
88     } else {
89         str = player->argp[1];
90     }
91
92     np = getnatp(player->cnum);
93     if (*str == '*') {
94         sprintf(what, "%d:%d,%d:%d",
95                 -WORLD_X / 2, WORLD_X / 2 - 1,
96                 -WORLD_Y / 2, WORLD_Y / 2 - 1);
97         if (!snxtsct(&ns, what))
98             return RET_FAIL;
99     } else if (!snxtsct(&ns, str)) {
100         i = atoi(str);
101         if (unit_map(unit_type, i, &ns, &origin))
102             return RET_FAIL;
103     }
104     b = player->argp[2];
105     while (b != (s_char *)0 && (*b)) {
106         switch (*b) {
107         case 's':
108         case 'S':
109             map_flags |= MAP_SHIP;
110             break;
111         case 'l':
112         case 'L':
113             map_flags |= MAP_LAND;
114             break;
115         case 'p':
116         case 'P':
117             map_flags |= MAP_PLANE;
118             break;
119         case 'h':
120         case 'H':
121             map_flags |= MAP_HIGH;
122             break;
123         case '*':
124             map_flags |= MAP_ALL;
125             break;
126         case 't':
127             if (bmap != 'b')
128                 goto bad_flag;
129             bmap = 't';
130             *(b + 1) = 0;
131             break;
132         case 'r':
133             if (bmap != 'b')
134                 goto bad_flag;
135             bmap = 'r';
136             *(b + 1) = 0;
137             break;
138         default:
139         bad_flag:
140             pr("Bad flag %c!\n", *b);
141             break;
142         }
143         b++;
144     }
145
146     return draw_map(bmap, origin, map_flags, &ns);
147 }