]> git.pond.sub.org Git - empserver/blob - src/lib/update/distribute.c
41418599076eae7f71ea730005dc12489c84e752
[empserver] / src / lib / update / distribute.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2010, 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  *  distribute.c: Do distribution to sectors
29  *
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Steve McClure, 1998
33  */
34
35 #include <config.h>
36
37 #include "distribute.h"
38 #include "item.h"
39 #include "path.h"
40 #include "plague.h"
41 #include "prototypes.h"
42 #include "update.h"
43
44 #ifdef DISTRIBUTE_DEBUG
45 #define DPRINTF(fmt, ...) ((void)printf(fmt , ## __VA_ARGS__))
46 #else
47 #define DPRINTF(fmt, ...) ((void)0)
48 #endif
49
50 #define EXPORT_BONUS 10.0
51 #define IMPORT_BONUS 10.0
52
53 int
54 dodistribute(struct sctstr *sp, int imex, char *path, double dist_i_cost,
55              double dist_e_cost)
56           /* import or export? */
57 {
58     struct ichrstr *ip;
59     struct sctstr *dist;
60     int amt;
61     int thresh;
62     int amt_dist;
63     int amt_sect;
64     enum i_packing sect_packing, dist_packing;
65     int pack;
66     double mcost;
67     int diff;
68     i_type item;
69     int changed;
70     int rplague;
71     int lplague;
72
73     if ((sp->sct_dist_x == sp->sct_x) && (sp->sct_dist_y == sp->sct_y))
74         return 0;
75
76     if (!path) {
77         if (sp->sct_own != 0) {
78             if (imex == EXPORT) /* only want this once */
79                 wu(0, sp->sct_own, "No path to dist sector for %s\n",
80                    ownxy(sp));
81         }
82         return 0;
83     }
84
85     dist = getsectp(sp->sct_dist_x, sp->sct_dist_y);
86     dist_packing = dist->sct_effic >= 60 ? dchr[dist->sct_type].d_pkg : IPKG;
87     sect_packing = sp->sct_effic   >= 60 ? dchr[sp->sct_type].d_pkg : IPKG;
88
89     DPRINTF("distribute: %d,%d to %d,%d pathcost %g\n",
90             sp->sct_x, sp->sct_y, sp->sct_dist_x, sp->sct_dist_y,
91             imex == IMPORT ? dist_i_cost : dist_e_cost);
92
93     lplague = rplague = changed = 0;
94     for (item = I_NONE + 1; item <= I_MAX; item++) {
95         if (sp->sct_dist[item] == 0)
96             continue;
97         ip = &ichr[item];
98         thresh = sp->sct_dist[item];
99         /*
100          * calculate costs for importing and exporting.
101          * the mob bonus is because delivering straight through
102          * to the dist sect is cheaper than stopping at each
103          * sector along the way (processor-timewise)
104          */
105         amt_sect = sp->sct_item[item];
106         amt_dist = dist->sct_item[item];
107         diff = amt_sect - thresh;
108         if (item == I_CIVIL)
109             if (sp->sct_own != sp->sct_oldown)
110                 continue;
111         if (item == I_CIVIL)
112             if (dist->sct_own != dist->sct_oldown)
113                 continue;
114         if (diff < 0) {
115             if (imex != IMPORT)
116                 continue;
117
118             if (!military_control(dist))
119                 continue;
120
121             diff = -diff;
122             /*
123              * import.
124              * don't import if no mobility.
125              * check to make sure have enough mobility in the
126              * dist sector to import what we need.
127              */
128             if (dist->sct_mobil <= 0)
129                 continue;
130             amt = diff;
131             /* make sure not to abandon the sector */
132             if (item == I_CIVIL ||
133                 (item == I_MILIT && dist->sct_item[I_CIVIL] == 0))
134                 amt_dist--;
135
136             if (amt_dist < amt) {
137                 amt = amt_dist;
138                 if (amt_dist <= 0)
139                     continue;
140             }
141             pack = ip->i_pkg[dist_packing];
142             mcost = dist_i_cost / pack * ip->i_lbs / IMPORT_BONUS;
143             if (dist->sct_mobil < mcost * amt)
144                 amt = dist->sct_mobil / mcost;
145
146             lplague++;
147             dist->sct_item[item] -= amt;
148             changed++;
149             dist->sct_mobil -= (int)(mcost * amt);
150             sp->sct_item[item] += amt;
151         } else {
152             if (imex != EXPORT)
153                 continue;
154             if (!military_control(sp))
155                 continue;
156             if ((item == I_CIVIL) && (sp->sct_work < 100))
157                 continue;
158             if ((item == I_CIVIL) && (sp->sct_own != sp->sct_oldown))
159                 continue;
160             /*
161              * export.
162              * don't export if no mobility. check to make sure we
163              * have mobility enough to do the right thing.
164              * also make sure that there's enough space in the
165              * target sector to hold the required amt.
166              */
167             if (sp->sct_mobil <= 0)
168                 continue;
169             amt = diff;
170             if (amt > amt_sect)
171                 amt = amt_sect;
172             pack = MAX(ip->i_pkg[sect_packing], ip->i_pkg[dist_packing]);
173             mcost = dist_e_cost / pack * ip->i_lbs / EXPORT_BONUS;
174             if (sp->sct_mobil < mcost * amt)
175                 amt = sp->sct_mobil / mcost;
176             if (amt > ITEM_MAX - amt_dist)
177                 amt = ITEM_MAX - amt_dist;
178             if (amt == 0)
179                 continue;
180
181             rplague++;
182             sp->sct_item[item] -= amt;
183             changed++;
184             sp->sct_mobil -= (int)(mcost * amt);
185             dist->sct_item[item] += amt;
186         }
187     }
188
189     if (lplague) {
190         lplague = dist->sct_pstage;
191         if (lplague == PLG_INFECT && sp->sct_pstage == PLG_HEALTHY)
192             sp->sct_pstage = PLG_EXPOSED;
193     }
194
195     if (rplague) {
196         rplague = sp->sct_pstage;
197         if (rplague == PLG_INFECT && dist->sct_pstage == PLG_HEALTHY)
198             dist->sct_pstage = PLG_EXPOSED;
199     }
200
201     return changed;
202 }