]> git.pond.sub.org Git - empserver/blob - src/lib/subs/trdsub.c
Fix trailing whitespace
[empserver] / src / lib / subs / trdsub.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  *  trdsub.c: Trade helper functions
29  *
30  *  Known contributors to this file:
31  *     St Phil, 1989
32  *     Pat Loney, 1992
33  *     Steve McClure, 1996
34  */
35
36 #include <config.h>
37
38 #include "empobj.h"
39 #include "file.h"
40 #include "item.h"
41 #include "land.h"
42 #include "loan.h"
43 #include "misc.h"
44 #include "nat.h"
45 #include "nsc.h"
46 #include "nuke.h"
47 #include "optlist.h"
48 #include "plane.h"
49 #include "player.h"
50 #include "prototypes.h"
51 #include "sect.h"
52 #include "ship.h"
53 #include "trade.h"
54 #include "xy.h"
55
56 int
57 trade_check_ok(struct trdstr *tp, union empobj_storage *tgp)
58 {
59     return check_trade_ok(tp) && trade_check_item_ok(tgp);
60 }
61
62 int
63 trade_check_item_ok(union empobj_storage *tgp)
64 {
65     if (tgp->gen.ef_type == EF_LAND)
66         return check_land_ok(&tgp->land);
67     if (tgp->gen.ef_type == EF_PLANE)
68         return check_plane_ok(&tgp->plane);
69     if (tgp->gen.ef_type == EF_SHIP)
70         return check_ship_ok(&tgp->ship);
71     if (tgp->gen.ef_type == EF_NUKE)
72         return check_nuke_ok(&tgp->nuke);
73     CANT_REACH();
74     pr("Trade lot went bad!\n");
75     return 0;
76 }
77
78 char *
79 trade_nameof(struct trdstr *tp, union empobj_storage *tgp)
80 {
81     switch (tp->trd_type) {
82     case EF_NUKE:
83         return nchr[(int)tgp->nuke.nuk_type].n_name;
84     case EF_PLANE:
85         return plchr[(int)tgp->plane.pln_type].pl_name;
86     case EF_SHIP:
87         return mchr[(int)tgp->ship.shp_type].m_name;
88     case EF_LAND:
89         return lchr[(int)tgp->land.lnd_type].l_name;
90     }
91     return "Bad trade type, get help";
92 }
93
94 /*
95  * Describe an item up for sale.  "tgp" is a union containing
96  * the details of the generic item.
97  * Return 1 on success, 0 on error
98  */
99 int
100 trade_desc(struct trdstr *tp, union empobj_storage *tgp)
101 {
102     i_type it;
103     struct sctstr sect;
104     struct nukstr *np;
105     struct shpstr *sp;
106     struct plnstr *pp;
107     struct lndstr *lp;
108     struct nstr_item ni;
109     struct plnstr plane;
110     struct lndstr land;
111     struct nukstr nuke;
112
113     switch (tp->trd_type) {
114     case EF_NUKE:
115         np = &tgp->nuke;
116         tp->trd_owner = np->nuk_own;
117         pr("(%3d)  tech %d %d%% %s #%d",
118            tp->trd_owner, np->nuk_tech, np->nuk_effic,
119            nchr[(int)np->nuk_type].n_name, tp->trd_unitid);
120         break;
121     case EF_SHIP:
122         sp = &tgp->ship;
123         tp->trd_owner = sp->shp_own;
124         pr("(%3d)  tech %d %d%% %s [",
125            tp->trd_owner, sp->shp_tech, sp->shp_effic, prship(sp));
126
127         for (it = I_NONE + 1; it <= I_MAX; ++it) {
128             if (sp->shp_item[it])
129                 pr("%c:%d ", ichr[it].i_mnem, sp->shp_item[it]);
130         }
131         pr("] #%d", tp->trd_unitid);
132         snxtitem_cargo(&ni, EF_PLANE, EF_SHIP, sp->shp_uid);
133         while (nxtitem(&ni, &plane)) {
134             pr("\n\t\t\t\t    tech %3d %3d%% %s #%d",
135                plane.pln_tech,
136                plane.pln_effic,
137                plchr[(int)plane.pln_type].pl_name, plane.pln_uid);
138             if (getnuke(nuk_on_plane(&plane), &nuke))
139                 pr("(%s)", nchr[nuke.nuk_type].n_name);
140         }
141         snxtitem_cargo(&ni, EF_LAND, EF_SHIP, sp->shp_uid);
142         while (nxtitem(&ni, &land)) {
143             pr("\n\t\t\t\t    tech %3d %3d%% %s #%d",
144                land.lnd_tech,
145                land.lnd_effic,
146                lchr[(int)land.lnd_type].l_name, land.lnd_uid);
147             if (pln_first_on_land(&land) >= 0) {
148                 snxtitem_cargo(&ni, EF_PLANE, EF_LAND, land.lnd_uid);
149                 while (nxtitem(&ni, &plane)) {
150                     pr("\n\t\t\t\t    tech %3d %3d%% %s #%d",
151                        plane.pln_tech,
152                        plane.pln_effic,
153                        plchr[(int)plane.pln_type].pl_name,
154                        plane.pln_uid);
155                     if (getnuke(nuk_on_plane(&plane), &nuke))
156                         pr("(%s)", nchr[nuke.nuk_type].n_name);
157                 }
158             }
159         }
160         getsect(sp->shp_x, sp->shp_y, &sect);
161         if (sect.sct_type != SCT_WATER)
162             pr(" in a %s %s",
163                cname(sect.sct_own), dchr[sect.sct_type].d_name);
164         else
165             pr(" at sea");
166         break;
167     case EF_LAND:
168         lp = &tgp->land;
169         tp->trd_owner = lp->lnd_own;
170         pr("(%3d)  tech %d %d%% %s [",
171            tp->trd_owner,
172            lp->lnd_tech, lp->lnd_effic, lchr[(int)lp->lnd_type].l_name);
173         for (it = I_NONE + 1; it <= I_MAX; ++it) {
174             if (lp->lnd_item[it])
175                 pr("%c:%d ", ichr[it].i_mnem, lp->lnd_item[it]);
176         }
177         pr("] #%d", tp->trd_unitid);
178         break;
179     case EF_PLANE:
180         pp = &tgp->plane;
181         tp->trd_owner = pp->pln_own;
182         pr("(%3d)  tech %d %d%% %s #%d",
183            tp->trd_owner,
184            pp->pln_tech,
185            pp->pln_effic,
186            plchr[(int)pp->pln_type].pl_name, tp->trd_unitid);
187         if (getnuke(nuk_on_plane(pp), &nuke))
188             pr("(%s)", nchr[nuke.nuk_type].n_name);
189         break;
190     default:
191         pr("flaky unit type %d", tp->trd_type);
192         break;
193     }
194     return 1;
195 }
196
197 int
198 trade_getitem(struct trdstr *tp, union empobj_storage *tgp)
199 {
200     if (!ef_read(tp->trd_type, tp->trd_unitid, tgp))
201         return 0;
202     return 1;
203 }
204
205 /*
206  * Return amount due for LOAN at time PAYTIME.
207  */
208 double
209 loan_owed(struct lonstr *loan, time_t paytime)
210 {
211     time_t rtime;               /* regular interest time */
212     time_t xtime;               /* double interest time */
213     double rate;
214     int dur;
215
216     /*
217      * Split interval paytime - l_lastpay into regular (up to
218      * l_duedate) and extended (beyond l_duedate) time.
219      */
220     rtime = loan->l_duedate - loan->l_lastpay;
221     xtime = paytime - loan->l_duedate;
222     if (rtime < 0) {
223         xtime += rtime;
224         rtime = 0;
225     }
226     if (xtime < 0) {
227         rtime += xtime;
228         xtime = 0;
229     }
230     if (CANT_HAPPEN(rtime < 0))
231         rtime = 0;
232
233     dur = loan->l_ldur;
234     if (CANT_HAPPEN(dur <= 0))
235         dur = 1;
236     rate = loan->l_irate / 100.0 / (dur * SECS_PER_DAY);
237
238     return loan->l_amtdue * (1.0 + (rtime + xtime * 2) * rate);
239 }