]> git.pond.sub.org Git - empserver/blob - src/lib/update/deliver.c
(deliver): Do not deliver friendly civilians into occupied sectors.
[empserver] / src / lib / update / deliver.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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 "plague.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(struct sctstr *from, struct ichrstr *ip, int dir,
49         int thresh, int amt_src, int plague, i_packing packing)
50 {
51     struct sctstr *to;
52     i_type 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) {
84         if (from->sct_own != from->sct_oldown) {
85             wu(0, from->sct_own,
86                "The conquered populace in %s refuses to relocate!\n",
87                ownxy(from));
88             return 0;
89         }
90         if (to->sct_own != to->sct_oldown) {
91             wu(0, from->sct_own,
92                "Citizens in %s refuse to relocate!\n", ownxy(from));
93             return 0;
94         }
95     }
96     /*
97      * disallow delivery into prohibited sectors.
98      * calculate unit movement cost; decrease amount if
99      * there isn't enough mobility.
100      */
101     mcost = sector_mcost(to, MOB_ROAD) * ip->i_lbs / ip->i_pkg[packing];
102     mcost /= DELIVER_BONUS;
103
104     if (mobility < mcost * amt_moved) {
105         /* XXX can mcost be == 0? */
106         amt_moved = (int)(mobility / mcost);
107         if (amt_moved <= 0)
108             return 0;
109     }
110     amt_dst = to->sct_item[vtype];
111     if (amt_moved > ITEM_MAX - amt_dst) {
112         /* delivery backlog */
113         amt_moved = ITEM_MAX - amt_dst;
114     }
115     to->sct_item[vtype] = amt_moved + amt_dst;
116     /* deliver the plague too! */
117     if (plague == PLG_INFECT && to->sct_pstage == PLG_HEALTHY)
118         to->sct_pstage = PLG_EXPOSED;
119     n = from->sct_mobil - (int)(mcost * amt_moved);
120     if (n < 0)
121         n = 0;
122     from->sct_mobil = n;
123     return amt_moved;
124 }
125
126 void
127 dodeliver(struct sctstr *sp)
128 {
129     i_type i;
130     int thresh;
131     int dir;
132     int plague;
133     i_packing packing;
134     int n;
135
136     if (sp->sct_mobil <= 0)
137         return;
138     plague = sp->sct_pstage;
139     packing = sp->sct_effic >= 60 ? dchr[sp->sct_type].d_pkg : IPKG;
140     for (i = I_NONE + 1; i <= I_MAX; i++) {
141         if (sp->sct_del[i] == 0)
142             continue;
143         thresh = sp->sct_del[i] & ~0x7;
144         dir = sp->sct_del[i] & 0x7;
145         n = deliver(sp, &ichr[i], dir, thresh, sp->sct_item[i],
146                     plague, packing);
147         if (n > 0) {
148             sp->sct_item[i] -= n;
149             if (sp->sct_mobil <= 0)
150                 break;
151         }
152     }
153 }