]> git.pond.sub.org Git - empserver/blob - src/lib/update/finish.c
Update copyright notice
[empserver] / src / lib / update / finish.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2014, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  finish.c: Finish the update
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Thomas Ruschak, 1993
32  *     Steve McClure, 1998
33  *     Markus Armbruster, 2004-2011
34  */
35
36 #include <config.h>
37
38 #include <stdlib.h>
39 #include <sys/resource.h>
40 #include "distribute.h"
41 #include "path.h"
42 #include "update.h"
43
44 static void assemble_dist_paths(double *);
45
46 void
47 finish_sects(int etu)
48 {
49     static double *import_cost;
50     struct sctstr *sp;
51     struct natstr *np;
52     int n;
53     struct rusage rus1, rus2;
54
55     if (import_cost == NULL) {
56         logerror("First update since reboot, allocating buffer\n");
57         import_cost = malloc(WORLD_SZ() * sizeof(*import_cost));
58         if (import_cost == NULL) {
59             logerror("malloc failed in finish_sects.\n");
60             return;
61         }
62     }
63
64     logerror("delivering...\n");
65     /* Do deliveries */
66     for (n = 0; NULL != (sp = getsectid(n)); n++) {
67         if (sp->sct_type == SCT_WATER)
68             continue;
69         if (sp->sct_own == 0)
70             continue;
71         np = getnatp(sp->sct_own);
72         if (np->nat_money < 0)
73             continue;
74         dodeliver(sp);
75     }
76     logerror("done delivering\n");
77
78     logerror("assembling paths...\n");
79     getrusage(RUSAGE_SELF, &rus1);
80     assemble_dist_paths(import_cost);
81     getrusage(RUSAGE_SELF, &rus2);
82     logerror("done assembling paths %g user %g system",
83              rus2.ru_utime.tv_sec + rus2.ru_utime.tv_usec / 1e6
84              - (rus1.ru_utime.tv_sec + rus1.ru_utime.tv_usec / 1e6),
85              rus2.ru_stime.tv_sec + rus2.ru_stime.tv_usec / 1e6
86              - (rus1.ru_stime.tv_sec + rus1.ru_stime.tv_usec / 1e6));
87
88     logerror("exporting...");
89     for (n = 0; NULL != (sp = getsectid(n)); n++) {
90         if (!sp->sct_own)
91             continue;
92         np = getnatp(sp->sct_own);
93         if (np->nat_money < 0)
94             continue;
95         dodistribute(sp, EXPORT, import_cost[n]);
96     }
97     logerror("done exporting\n");
98
99     logerror("importing...");
100     for (n = 0; NULL != (sp = getsectid(n)); n++) {
101         sp->sct_off = 0;
102         if (!sp->sct_own)
103             continue;
104         np = getnatp(sp->sct_own);
105         if (np->nat_money < 0)
106             continue;
107         dodistribute(sp, IMPORT, import_cost[n]);
108     }
109     logerror("done importing\n");
110
111 }
112
113 static int
114 distcmp(const void *p, const void *q)
115 {
116     int a = *(int *)p;
117     int b = *(int *)q;
118     struct sctstr *sp = (void *)empfile[EF_SECTOR].cache;
119     int d;
120
121     d = sp[b].sct_dist_y - sp[a].sct_dist_y;
122     if (d)
123         return d;
124     d = sp[b].sct_dist_x - sp[a].sct_dist_x;
125     if (d)
126         return d;
127     return b - a;
128 }
129
130 static void
131 assemble_dist_paths(double *import_cost)
132 {
133     struct sctstr *sp;
134     struct sctstr *dist;
135     int n;
136     static int *job;
137     int uid, i;
138     coord dx = 1, dy = 0;       /* invalid */
139
140     if (!job)
141         job = malloc(WORLD_SZ() * sizeof(*job));
142
143     n = 0;
144     for (uid = 0; NULL != (sp = getsectid(uid)); uid++) {
145         import_cost[uid] = -1;
146         if (sp->sct_dist_x == sp->sct_x && sp->sct_dist_y == sp->sct_y)
147             continue;
148         job[n++] = uid;
149     }
150
151 #ifdef PATH_FIND_STATS
152     printf("dist path reuse %zu bytes, %d/%d used\n",
153            WORLD_SZ() * sizeof(*job), n, WORLD_SZ());
154 #endif
155
156     qsort(job, n, sizeof(*job), distcmp);
157
158     for (i = 0; i < n; i++) {
159         uid = job[i];
160         sp = getsectid(uid);
161         dist = getsectp(sp->sct_dist_x, sp->sct_dist_y);
162         if (CANT_HAPPEN(!dist))
163             continue;
164         if (sp->sct_own != dist->sct_own)
165             continue;
166         if (sp->sct_dist_x != dx || sp->sct_dist_y != dy) {
167             dx = sp->sct_dist_x;
168             dy = sp->sct_dist_y;
169             path_find_from(dx, dy, dist->sct_own, MOB_MOVE);
170         }
171         import_cost[uid] = path_find_to(sp->sct_x, sp->sct_y);
172     }
173     path_find_print_stats();
174 }