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