]> git.pond.sub.org Git - empserver/blob - src/lib/commands/swap.c
commands: Rename the command functions
[empserver] / src / lib / commands / swap.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2021, 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  *  swap.c: Swap two sectors on the map
28  *
29  *  Known contributors to this file:
30  *     Ken Stevens, 1995
31  *     Markus Armbruster, 2006-2013
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37
38 static void print_res(struct sctstr *);
39
40 /*
41  * Syntax: swap <SECT> <SECT>
42  */
43 int
44 c_swapsector(void)
45 {
46     struct sctstr secta, sectb, tmp;
47     char buf[1024];
48     char *p;
49     int i;
50     natid to;
51
52     if (!(p = getstarg(player->argp[1], "First sector : ", buf)) ||
53         !sarg_xy(p, &secta.sct_x, &secta.sct_y) ||
54         !getsect(secta.sct_x, secta.sct_y, &secta))
55         return RET_SYN;
56     print_res(&secta);
57     if (!(p = getstarg(player->argp[2], "Second sector : ", buf)) ||
58         !sarg_xy(p, &sectb.sct_x, &sectb.sct_y) ||
59         !getsect(sectb.sct_x, sectb.sct_y, &sectb))
60         return RET_SYN;
61     print_res(&sectb);
62     if (!confirm("Are you sure these are the two sectors you wish to swap? "))
63         return RET_FAIL;
64     if (!check_sect_ok(&secta) || !check_sect_ok(&sectb))
65         return RET_FAIL;
66     for (i = 0; i <= (secta.sct_own != sectb.sct_own); i++) {
67         to = i == 0 ? secta.sct_own : sectb.sct_own;
68         if (to && to != player->cnum)
69             wu(0, to,
70                "Sector %s swapped with %s by an act of %s!\n",
71                xyas(secta.sct_x, secta.sct_y, to),
72                xyas(sectb.sct_x, sectb.sct_y, to),
73                cname(player->cnum));
74     }
75     tmp = secta;
76     /* change the location of secta to that of sectb */
77     secta.sct_x = sectb.sct_x;
78     secta.sct_y = sectb.sct_y;
79     ef_set_uid(EF_SECTOR, &secta, sectb.sct_uid);
80     secta.sct_dist_x = sectb.sct_x;
81     secta.sct_dist_y = sectb.sct_y;
82     secta.sct_coastal = sectb.sct_coastal;
83     /* change the location of sectb to where secta was */
84     sectb.sct_x = tmp.sct_x;
85     sectb.sct_y = tmp.sct_y;
86     ef_set_uid(EF_SECTOR, &sectb, tmp.sct_uid);
87     sectb.sct_dist_x = tmp.sct_x;
88     sectb.sct_dist_y = tmp.sct_y;
89     sectb.sct_coastal = tmp.sct_coastal;
90     /* update coastal flag & put sectors */
91     putsect(&sectb);
92     set_coastal(&secta, sectb.sct_type, secta.sct_type);
93     putsect(&secta);
94     getsect(sectb.sct_x, sectb.sct_y, &sectb);
95     set_coastal(&sectb, secta.sct_type, sectb.sct_type);
96     putsect(&sectb);
97     pr("done\n");
98     return RET_OK;
99 }
100
101 static void
102 print_res(struct sctstr *sp)
103 {
104     pr("own   sect        eff  min gold fert oil uran\n");
105
106     pr("%3d ", sp->sct_own);
107
108     prxy("%4d,%-4d", sp->sct_x, sp->sct_y);
109     pr(" %c", dchr[sp->sct_type].d_mnem);
110     if (sp->sct_newtype != sp->sct_type)
111         pr("%c", dchr[sp->sct_newtype].d_mnem);
112     else
113         pr(" ");
114     pr("%4d%%", sp->sct_effic);
115     pr(" %4d", sp->sct_min);
116     pr("%5d", sp->sct_gmin);
117     pr("%5d", sp->sct_fertil);
118     pr("%4d", sp->sct_oil);
119     pr("%5d", sp->sct_uran);
120     pr("\n");
121 }