]> git.pond.sub.org Git - empserver/blob - src/lib/update/deliver.c
Update copyright notice.
[empserver] / src / lib / update / deliver.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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  *  deliver.c: Deliver commodities to neighboring sector
29  * 
30  *  Known contributors to this file:
31  *  
32  */
33
34 #include "misc.h"
35 #include "var.h"
36 #include "sect.h"
37 #include "item.h"
38 #include "path.h"
39 #include "file.h"
40 #include "xy.h"
41 #include "update.h"
42 #include "subs.h"
43 #include "common.h"
44
45 #define DELIVER_BONUS 4.0
46
47 static int
48 deliver(register struct sctstr *from, struct ichrstr *ip, int dir,
49         int thresh, int amt_src, int plague, i_packing packing)
50 {
51     register struct sctstr *to;
52     int vtype;                  /* item vartype */
53     int amt_moved;
54     int amt_dst;
55     int mobility;
56     float mcost;
57     struct dchrstr *dp;
58     int n;
59
60     if (dir <= 0 || dir > DIR_UL)
61         return 0;
62     if (amt_src <= 0)
63         return 0;
64     if ((amt_moved = amt_src - thresh) <= 0)
65         return 0;
66     /*
67      * make sure delivery looks ok.  Check where its going,
68      * where its coming from, and see if there is more than
69      * the threshold amount
70      */
71     if (!military_control(from))
72         return 0;
73     to = getsectp(from->sct_x + diroff[dir][0],
74                   from->sct_y + diroff[dir][1]);
75     if (to->sct_own != from->sct_own) {
76         wu(0, from->sct_own, "%s delivery walkout at %s\n",
77            ip->i_name, ownxy(from));
78         return 0;
79     }
80     dp = &dchr[from->sct_type];
81     vtype = ip->i_vtype;
82     mobility = from->sct_mobil / 2;
83     if (vtype == I_CIVIL && from->sct_own != from->sct_oldown) {
84         wu(0, from->sct_own,
85            "The conquered populace in %s refuses to relocate!\n",
86            ownxy(from));
87         return 0;
88     }
89     /*
90      * disallow delivery into prohibited sectors.
91      * calculate unit movement cost; decrease amount if
92      * there isn't enough mobility.
93      */
94     mcost = sector_mcost(to, MOB_ROAD) * ip->i_lbs / ip->i_pkg[packing];
95     mcost /= DELIVER_BONUS;
96
97     if (mobility < mcost * amt_moved) {
98         /* XXX can mcost be == 0? */
99         amt_moved = (int)(mobility / mcost);
100         if (amt_moved <= 0)
101             return 0;
102     }
103     amt_dst = to->sct_item[vtype];
104     if (amt_moved > ITEM_MAX - amt_dst) {
105         /* delivery backlog */
106         amt_moved = ITEM_MAX - amt_dst;
107     }
108     to->sct_item[vtype] = amt_moved + amt_dst;
109     /* deliver the plague too! */
110     if (plague == PLG_INFECT && to->sct_pstage == PLG_HEALTHY)
111         to->sct_pstage = PLG_EXPOSED;
112     n = from->sct_mobil - (int)(mcost * amt_moved);
113     if (n < 0)
114         n = 0;
115     from->sct_mobil = n;
116     return amt_moved;
117 }
118
119 void
120 dodeliver(struct sctstr *sp)
121 {
122     register int i;
123     int thresh;
124     int dir;
125     int plague;
126     i_packing packing;
127     int n;
128
129     if (sp->sct_mobil <= 0)
130         return;
131     plague = sp->sct_pstage;
132     packing = sp->sct_effic >= 60 ? dchr[sp->sct_type].d_pkg : IPKG;
133     for (i = 1; i <= I_MAX; i++) {
134         if (sp->sct_del[i] == 0)
135             continue;
136         thresh = sp->sct_del[i] & ~0x7;
137         dir = sp->sct_del[i] & 0x7;
138         n = deliver(sp, &ichr[i], dir, thresh, sp->sct_item[i],
139                     plague, packing);
140         if (n > 0) {
141             sp->sct_item[i] -= n;
142             if (sp->sct_mobil <= 0)
143                 break;
144         }
145     }
146 }