]> git.pond.sub.org Git - empserver/blob - src/lib/commands/orig.c
68ac6e4d4c5c6bf40bf203ae21eb35999f04ac52
[empserver] / src / lib / commands / orig.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 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  *  orig.c: Move your origin
29  * 
30  *  Known contributors to this file:
31  *     Shelley Louie, 1988
32  *     Markus Armbruster, 2006
33  */
34
35 #include <config.h>
36
37 #include "misc.h"
38 #include "player.h"
39 #include "sect.h"
40 #include "xy.h"
41 #include "nat.h"
42 #include "file.h"
43 #include "commands.h"
44
45 int
46 orig(void)
47 {
48     s_char *p;
49     coord x, y;
50     s_char buf[1024];
51     natid cnum;
52     struct natstr *np;
53
54     p = getstarg(player->argp[1], "New origin (sector or country) : ", buf);
55     if (!p)
56         return RET_SYN;
57     if (!isalpha(*p) && strchr(p, ',')) {
58         /* sector */
59         if (!sarg_xy(p, &x, &y)) {
60             pr("Bad sector designation.\n");
61             return RET_SYN;
62         }
63     } else if (*p == '~') {
64         /* reset */
65         if (!player->god) {
66             pr("Only deities can reset their origin.\n");
67             return RET_FAIL;
68         }
69         x = y = 0;
70     } else {
71         /* country */
72         cnum = natarg(p, NULL);
73         if (!(np = getnatp(cnum)))
74             return RET_SYN;
75         if (!player->god && player->cnum != cnum
76             && getrel(np, player->cnum) != ALLIED) {
77             pr("Country %s is not allied with you!\n", np->nat_cnam);
78             return RET_FAIL;
79         }
80         x = np->nat_xorg;
81         y = np->nat_yorg;
82     }
83     pr("Origin at %s (old system) is now at 0,0 (new system).\n",
84        xyas(x, y, player->cnum));
85     np = getnatp(player->cnum);
86     np->nat_xorg = x;
87     np->nat_yorg = y;
88     putnat(np);
89     return RET_OK;
90 }