]> git.pond.sub.org Git - empserver/blob - src/lib/update/finish.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / update / finish.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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  *  finish.c: Finish the update
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Thomas Ruschak, 1993
33  *     Steve McClure, 1998
34  */
35
36 #include <math.h>
37 #include "misc.h"
38 #include "var.h"
39 #include "sect.h"
40 #include "nat.h"
41 #include "item.h"
42 #include "news.h"
43 #include "file.h"
44 #include "xy.h"
45 #include "path.h"
46 #include "distribute.h"
47 #include "update.h"
48 #include "common.h"
49 #include "optlist.h"
50
51 /* Used for building up distribution info */
52 struct distinfo {
53     s_char *path;               /* path to take */
54     double imcost;              /* import cost */
55     double excost;              /* export cost */
56 };
57
58 /* This is our global buffer of distribution pointers.  Note that
59  * We only malloc this once, and never again (until reboot time
60  * of course :) ) We do clear it each and every time. */
61 struct distinfo *g_distptrs = (struct distinfo *)0;
62
63 /* Note that even though we malloc and save the path, it is never
64  * used.  Thus, this option.  If you want to malloc and save every
65  * path and then free when done, just enable this.  Or, if the
66  * dodistribute ever uses the path for something other than checking
67  * to see that a path exists, enable this */
68 /* #define SAVE_FINISH_PATHS */
69
70 #ifndef SAVE_FINISH_PATHS
71 static s_char *finish_path = "h";       /* Placeholder indicating path exists */
72 #endif /* SAVE_FINISH_PATHS */
73
74 static void assemble_dist_paths(struct distinfo *distptrs);
75 s_char *BestDistPath();
76 s_char *ReversePath(s_char *path);
77 double pathcost();
78
79 void
80 finish_sects(int etu)
81 {
82     register struct sctstr *sp;
83     struct natstr *np;
84     int n;
85     int vec[I_MAX + 1];
86     int changed;
87     struct distinfo *infptr;
88
89     if (g_distptrs == (struct distinfo *)0) {
90         logerror("First update since reboot, allocating buffer\n");
91         /* Allocate the information buffer */
92         g_distptrs = (struct distinfo *)(malloc((WORLD_X * WORLD_Y) *
93                                                 sizeof(struct distinfo)));
94         if (g_distptrs == (struct distinfo *)0) {
95             logerror("malloc failed in finish_sects.\n");
96             return;
97         }
98
99         logerror("Allocated '%d' bytes '%d' indices\n",
100                  ((WORLD_X * WORLD_Y) * sizeof(struct distinfo)),
101                  (WORLD_X * WORLD_Y));
102
103     }
104
105     /* Wipe it clean */
106     bzero((s_char *)g_distptrs, ((WORLD_X * WORLD_Y) *
107                                  sizeof(struct distinfo)));
108
109     logerror("delivering...\n");
110     /* Do deliveries */
111     for (n = 0; NULL != (sp = getsectid(n)); n++) {
112         if (sp->sct_type == SCT_WATER)
113             continue;
114         if (sp->sct_own == 0)
115             continue;
116         np = getnatp(sp->sct_own);
117         if (np->nat_money < 0)
118             continue;
119         changed = 0;
120         if (getvec(VT_ITEM, vec, (s_char *)sp, EF_SECTOR) > 0)
121             changed += dodeliver(sp, vec);
122         if (changed)
123             putvec(VT_ITEM, vec, (s_char *)sp, EF_SECTOR);
124     }
125     logerror("done delivering\n");
126
127     logerror("assembling paths...\n");
128
129     /* First, enable the best_path cacheing */
130     bp_enable_cachepath();
131
132     /* Now assemble the paths */
133     assemble_dist_paths(g_distptrs);
134
135     /* Now disable the best_path cacheing */
136     bp_disable_cachepath();
137
138     /* Now, clear the best_path cache that may have been created */
139     bp_clear_cachepath();
140
141     logerror("done assembling paths\n");
142
143     logerror("exporting...");
144     for (n = 0; NULL != (sp = getsectid(n)); n++) {
145         if (sp->sct_type == SCT_WATER || sp->sct_own == 0)
146             continue;
147         np = getnatp(sp->sct_own);
148         if (np->nat_money < 0)
149             continue;
150         /* Get the pointer */
151         infptr = &g_distptrs[XYOFFSET(sp->sct_x, sp->sct_y)];
152         dodistribute(sp, EXPORT,
153                      infptr->path, infptr->imcost, infptr->excost);
154     }
155     logerror("done exporting\n");
156
157     /* Note that we free the paths (if allocated) as we loop here */
158     logerror("importing...");
159     for (n = 0; NULL != (sp = getsectid(n)); n++) {
160         /* Get the pointer (we do it first so we can free if needed) */
161         infptr = &g_distptrs[XYOFFSET(sp->sct_x, sp->sct_y)];
162         if (sp->sct_type == SCT_WATER || sp->sct_own == 0) {
163 #ifdef SAVE_FINISH_PATHS
164             if (infptr->path)
165                 free((s_char *)infptr->path);
166 #endif /* SAVE_FINISH_PATHS */
167             continue;
168         }
169         np = getnatp(sp->sct_own);
170         if (np->nat_money < 0) {
171 #ifdef SAVE_FINISH_PATHS
172             if (infptr->path)
173                 free((s_char *)infptr->path);
174 #endif /* SAVE_FINISH_PATHS */
175             continue;
176         }
177         dodistribute(sp, IMPORT,
178                      infptr->path, infptr->imcost, infptr->excost);
179 #ifdef SAVE_FINISH_PATHS
180         if (infptr->path)
181             free((s_char *)infptr->path);
182 #endif /* SAVE_FINISH_PATHS */
183     }
184     logerror("done importing\n");
185
186 }
187
188 static void
189 assemble_dist_paths(struct distinfo *distptrs)
190 {
191     s_char *path, *p;
192     double d;
193     struct sctstr *sp;
194     struct sctstr *dist;
195     struct distinfo *infptr;
196     int n;
197     s_char buf[512];
198
199     for (n = 0; NULL != (sp = getsectid(n)); n++) {
200         if ((sp->sct_dist_x == sp->sct_x) && (sp->sct_dist_y == sp->sct_y))
201             continue;
202         /* Set the pointer */
203         infptr = &distptrs[XYOFFSET(sp->sct_x, sp->sct_y)];
204         /* now, get the dist sector */
205         dist = getsectp(sp->sct_dist_x, sp->sct_dist_y);
206         if (dist == (struct sctstr *)0) {
207             logerror("Bad dist sect %d,%d for %d,%d !\n", sp->sct_dist_x,
208                      sp->sct_dist_y, sp->sct_x, sp->sct_y);
209             continue;
210         }
211         /* Now, get the best distribution path over roads */
212         /* Note we go from the dist center to the sector.  This gives
213            us the import path for that sector. */
214         path = BestDistPath(buf, dist, sp, &d, MOB_ROAD);
215
216         /* Now, we have a path */
217         if (path != (s_char *)0) {
218 #ifdef SAVE_FINISH_PATHS
219             int len;
220             /* Here we malloc a buffer and save it */
221             len = strlen(path);
222             infptr->path = (s_char *)malloc(len);
223             if (infptr->path == (s_char *)0) {
224                 logerror("malloc failed in assemble_dist_path!\n");
225                 return;
226             }
227 #endif /* SAVE_FINISH_PATHS */
228             /* Save the import cost */
229             infptr->imcost = d;
230             /* Now, reverse the path */
231             p = ReversePath(path);
232             /* And walk the path back to the dist center to get the export
233                cost */
234             infptr->excost = pathcost(sp, p, MOB_ROAD);
235 #ifdef SAVE_FINISH_PATHS
236             bcopy(p, infptr->path, len);
237 #else
238             infptr->path = finish_path;
239 #endif /* SAVE_FINISH_PATHS */
240         }
241     }
242 }
243
244 s_char
245 *
246 ReversePath(s_char *path)
247 {
248     s_char *patharray = "aucdefjhigklmyopqrstbvwxnz";
249     static s_char new_path[512];
250     int ind;
251
252     if (path == (s_char *)0)
253         return (s_char *)0;
254
255     ind = strlen(path);
256     if (ind == 0)
257         return (s_char *)0;
258
259     if (path[ind - 1] == 'h')
260         ind--;
261
262     new_path[ind--] = '\0';
263     new_path[ind] = '\0';
264
265     while (ind >= 0) {
266         new_path[ind--] = patharray[*(path++) - 'a'];
267     }
268
269     return new_path;
270 }