]> git.pond.sub.org Git - empserver/blob - src/lib/commands/lten.c
Fix trailing whitespace
[empserver] / src / lib / commands / lten.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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  *  lten.c: Transfer commodity from a ship to a land unit the ship is
29  *          carrying
30  *
31  *  Known contributors to this file:
32  *     Dave Pare, 1986
33  *     Thomas Ruschak
34  *     Ken Stevens, 1995
35  *     Steve McClure, 1998
36  */
37
38 #include <config.h>
39
40 #include "commands.h"
41 #include "item.h"
42 #include "land.h"
43 #include "plague.h"
44 #include "plane.h"
45 #include "ship.h"
46
47 static void expose_land(struct shpstr *s1, struct lndstr *l1);
48
49 int
50 ltend(void)
51 {
52     struct nstr_item targets;
53     struct nstr_item tenders;
54     struct shpstr tender;
55     struct lndstr target;
56     struct ichrstr *ip;
57     struct mchrstr *vbase;
58     struct lchrstr *lbase;
59     int amt;
60     int ontender;
61     int ontarget;
62     int maxtender;
63     int maxtarget;
64     int transfer;
65     int total;
66     char *p;
67     char buf[1024];
68
69     if (!(ip = whatitem(player->argp[1], "Transfer what commodity? ")))
70         return RET_SYN;
71
72     if (!snxtitem(&tenders, EF_SHIP, player->argp[2], "Tender(s)? "))
73         return RET_SYN;
74     while (nxtitem(&tenders, &tender)) {
75         if (!player->owner)
76             continue;
77         if ((p =
78              getstarg(player->argp[3], "Amount to transfer? ", buf)) == 0)
79             return RET_FAIL;
80         if (!check_ship_ok(&tender))
81             return RET_FAIL;
82         if ((amt = atoi(p)) == 0)
83             break;
84         ontender = tender.shp_item[ip->i_uid];
85         if (ontender == 0 && amt > 0) {
86             pr("No %s on %s\n", ip->i_name, prship(&tender));
87             return RET_FAIL;
88         }
89         vbase = &mchr[(int)tender.shp_type];
90         maxtender = vbase->m_item[ip->i_uid];
91         if (maxtender == 0) {
92             pr("A %s cannot hold any %s\n",
93                mchr[(int)tender.shp_type].m_name, ip->i_name);
94             return RET_FAIL;
95         }
96         if (!snxtitem(&targets, EF_LAND,
97                       player->argp[4], "Units to be tended? "))
98             return RET_FAIL;
99         if (!check_ship_ok(&tender))
100             return RET_FAIL;
101         total = 0;
102         while (nxtitem(&targets, &target)) {
103             if (!player->owner)
104                 continue;
105
106             if (target.lnd_ship != tender.shp_uid)
107                 continue;
108             ontarget = target.lnd_item[ip->i_uid];
109             if (ontarget == 0 && amt < 0) {
110                 pr("No %s on %s\n",
111                    ip->i_name, prland(&target));
112                 continue;
113             }
114             lbase = &lchr[(int)target.lnd_type];
115             maxtarget = lbase->l_item[ip->i_uid];
116             if (amt < 0) {
117                 if (!player->owner)
118                     amt = 0;
119
120                 /* take from target and give to tender */
121                 transfer = MIN(ontarget, -amt);
122                 transfer = MIN(maxtender - ontender, transfer);
123                 if (transfer == 0)
124                     continue;
125                 target.lnd_item[ip->i_uid] = ontarget - transfer;
126                 ontender += transfer;
127                 total += transfer;
128             } else {
129                 /* give to target from tender */
130                 transfer = MIN(ontender, amt);
131                 transfer = MIN(transfer, maxtarget - ontarget);
132                 if (transfer == 0)
133                     continue;
134                 target.lnd_item[ip->i_uid] = ontarget + transfer;
135                 ontender -= transfer;
136                 total += transfer;
137             }
138             expose_land(&tender, &target);
139             putland(target.lnd_uid, &target);
140             if (amt > 0 && ontender == 0) {
141                 pr("%s out of %s\n", prship(&tender), ip->i_name);
142                 break;
143             }
144         }
145         pr("%d total %s transferred %s %s\n",
146            total, ip->i_name, (amt > 0) ? "off of" : "to",
147            prship(&tender));
148         tender.shp_item[ip->i_uid] = ontender;
149         tender.shp_mission = 0;
150         putship(tender.shp_uid, &tender);
151     }
152     return RET_OK;
153 }
154
155 static void
156 expose_land(struct shpstr *s1, struct lndstr *l1)
157 {
158     if (s1->shp_pstage == PLG_INFECT && l1->lnd_pstage == PLG_HEALTHY)
159         l1->lnd_pstage = PLG_EXPOSED;
160     if (l1->lnd_pstage == PLG_INFECT && s1->shp_pstage == PLG_HEALTHY)
161         s1->shp_pstage = PLG_EXPOSED;
162 }