[go: up one dir, main page]

File: transport.c

package info (click to toggle)
lincity 1.13.1-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,732 kB
  • ctags: 4,794
  • sloc: ansic: 32,736; sh: 8,578; makefile: 628; perl: 445; yacc: 316; sed: 16
file content (235 lines) | stat: -rw-r--r-- 6,662 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/* ---------------------------------------------------------------------- *
 * transport.c
 * This file is part of lincity.
 * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001.
 * ---------------------------------------------------------------------- */
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include "common.h"
#include "lctypes.h"
#include "lin-city.h"
#include "transport.h"
#include "power.h"
#include "stats.h" /* for transport_cost */

/* ---------------------------------------------------------------------
   For track, road and rail:
  
   int_1 contains the amount of food
   int_2 contains the amount of jobs
   int_3 contains the amount of coal
   int_4 contains the amount of goods
   int_5 contains the amount of ore
   int_6 contains the amount of steel
   int_7 contains the amount of waste
  --------------------------------------------------------------------- */

void
general_transport (Map_Point_Info *minfo, int *pol,
		   int max_waste, int *waste_count)
{
    int tot, av, *base, xm1, xp1, ym1, yp1;

    /* 30. Oct 1996:
     * we'll use a loop with pointers here instead of doin' each
     * operation by hand.  this reduces code complexity and should
     * lead to a higher cache hit ratio - theoretically
     * (ThMO)
     *
     * 12. Dec 1996:
     * as this is a heavy used routine, another speedup improvement is
     * needed.  we'll now use 1 pointer, which will be incremented and
     * 1 .. 4 constant indices, which replaces the old pointer-pure
     * version.
     * advantages:  elimination of unnecessary pointer increments.
     * Note:  this *only* works, if the related addresses use one and the
     *        same address space - which is naturally for 2-dimensional
     *        arrays.
     * (ThMO)
     */

    base = &minfo->int_1;
    switch (minfo->flags & 0x0F)
    {
    case 0:
	return;

    case 1:			/* inlined t_av_l() -- (ThMO) */
	xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base;
	do {
	    tot = *base + base[xm1];
	    av = tot / 2;
	    base[xm1] = av;
	    *base++ = av + tot % 2;
	} while (base <= &minfo->int_7);
	break;

    case 2:			/* inlined t_av_u() -- (ThMO) */
	ym1 = &minfo[-1].int_1 - base;
	do {
	    tot = *base + base[ym1];
	    av = tot / 2;
	    base[ym1] = av;
	    *base++ = av + tot % 2;
	} while (base <= &minfo->int_7);
	break;

    case 3:			/* inlined t_av_lu() -- (ThMO) */
	xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base;
	ym1 = &minfo[-1].int_1 - base;
	do {
	    tot = *base + base[xm1] + base[ym1];
	    av = tot / 3;
	    base[xm1] = base[ym1] = av;
	    *base++ = av + tot % 3;
	} while (base <= &minfo->int_7);
	break;

    case 4:			/* inlined t_av_r() -- (ThMO) */
	xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base;
	do {
	    tot = *base + base[xp1];
	    av = tot / 2;
	    base[xp1] = av;
	    *base++ = av + tot % 2;
	} while (base <= &minfo->int_7);
	break;

    case 5:			/* inlined t_av_lr() -- (ThMO) */
	xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base;
	xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base;
	do {
	    tot = *base + base[xm1] + base[xp1];
	    av = tot / 3;
	    base[xm1] = base[xp1] = av;
	    *base++ = av + tot % 3;
	} while (base <= &minfo->int_7);
	break;

    case 6:			/* inline t_av_ur() -- (ThMO) */
	ym1 = &minfo[-1].int_1 - base;
	xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base;
	do {
	    tot = *base + base[ym1] + base[xp1];
	    av = tot / 3;
	    base[ym1] = base[xp1] = av;
	    *base++ = av + tot % 3;
	} while (base <= &minfo->int_7);
	break;

    case 7:			/* inlined t_av_lur() -- (ThMO) */
	xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base;
	ym1 = &minfo[-1].int_1 - base;
	xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base;
	do {
	    tot = *base + base[xm1] + base[ym1] + base[xp1];
	    av = tot / 4;
	    base[xm1] = base[ym1] = base[xp1] = av;
	    *base++ = av + tot % 4;
	} while (base <= &minfo->int_7);
	break;

    case 8:			/* inlined t_av_d() -- (ThMO) */
	yp1 = &minfo[1].int_1 - base;
	do {
	    tot = *base + base[yp1];
	    av = tot / 2;
	    base[yp1] = av;
	    *base++ = av + tot % 2;
	} while (base <= &minfo->int_7);
	break;

    case 9:			/* inlined t_av_ld() -- (ThMO) */
	xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base;
	yp1 = &minfo[1].int_1 - base;
	do {
	    tot = *base + base[xm1] + base[yp1];
	    av = tot / 3;
	    base[xm1] = base[yp1] = av;
	    *base++ = av + tot % 3;
	} while (base <= &minfo->int_7);
	break;

    case 10:			/* inlined t_av_ud() -- (ThMO) */
	ym1 = &minfo[-1].int_1 - base;
	yp1 = &minfo[1].int_1 - base;
	do {
	    tot = *base + base[ym1] + base[yp1];
	    av = tot / 3;
	    base[ym1] = base[yp1] = av;
	    *base++ = av + tot % 3;
	} while (base <= &minfo->int_7);
	break;

    case 11:			/* inlined t_av_lud() -- (ThMO) */
	xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base;
	ym1 = &minfo[-1].int_1 - base;
	yp1 = &minfo[1].int_1 - base;
	do {
	    tot = *base + base[xm1] + base[ym1] + base[yp1];
	    av = tot / 4;
	    base[xm1] = base[ym1] = base[yp1] = av;
	    *base++ = av + tot % 4;
	} while (base <= &minfo->int_7);
	break;

    case 12:			/* inlined t_av_rd() -- (ThMO) */
	xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base;
	yp1 = &minfo[1].int_1 - base;
	do {
	    tot = *base + base[xp1] + base[yp1];
	    av = tot / 3;
	    base[xp1] = base[yp1] = av;
	    *base++ = av + tot % 3;
	} while (base <= &minfo->int_7);
	break;

    case 13:			/* inlined t_av_lrd() -- (ThMO) */
	xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base;
	xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base;
	yp1 = &minfo[1].int_1 - base;
	do {
	    tot = *base + base[xm1] + base[xp1] + base[yp1];
	    av = tot / 4;
	    base[xm1] = base[xp1] = base[yp1] = av;
	    *base++ = av + tot % 4;
	} while (base <= &minfo->int_7);
	break;

    case 14:			/* inlined t_av_urd() -- (ThMO) */
	ym1 = &minfo[-1].int_1 - base;
	xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base;
	yp1 = &minfo[1].int_1 - base;
	do {
	    tot = *base + base[ym1] + base[xp1] + base[yp1];
	    av = tot / 4;
	    base[ym1] = base[xp1] = base[yp1] = av;
	    *base++ = av + tot % 4;
	} while (base <= &minfo->int_7);
	break;

    case 15:			/* inlined t_av_lurd() -- (ThMO) */
	xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base;
	ym1 = &minfo[-1].int_1 - base;
	xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base;
	yp1 = &minfo[1].int_1 - base;
	do {
	    tot = *base + base[xm1] + base[ym1] + base[xp1] + base[yp1];
	    av = tot / 5;
	    base[xm1] = base[ym1] = base[xp1] = base[yp1] = av;
	    *base++ = av + tot % 5;
	} while (base <= &minfo->int_7);
	break;
    }
    if (*--base >= max_waste) {
	*base -= WASTE_BURN_ON_TRANSPORT;
	++*pol;
	if (*waste_count > TRANSPORT_BURN_WASTE_COUNT) {
	    *waste_count = 0;
	} else {
	    ++ * waste_count;
	}
    }
}