-
Notifications
You must be signed in to change notification settings - Fork 2
/
thingdim.pas
321 lines (288 loc) · 8.58 KB
/
thingdim.pas
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
{$IFNDEF PART} { -*- delphi -*- }
{$MODE OBJFPC}
{$INCLUDE settings.inc}
unit thingdim;
{ XXX This is way over-complicated. }
{ We should convert all this to using integers. }
{ (It should be possible to do that without having to change any other code.) }
interface
{$DEFINE PART:=INTERFACE}
const
kMassScaleFactor = 5;
type
TThingMass = (tmLight, { < 5kg < } tmHeavy, { < 25kg < } tmPonderous, { < 125kg < } tmLudicrous);
TThingMassManifest = array[TThingMass] of Cardinal;
{$DEFINE DIMENSION:=Mass} {$INCLUDE thingdim.pas} {$UNDEF DIMENSION}
const
kSizeScaleFactor = 10;
type
TThingSize = (tsSmall, { < 0.1m (10cm) < } tsBig, { < 1m < } tsMassive, { < 10m < } tsGigantic, { < 100m < } tsLudicrous);
TThingSizeManifest = array[TThingSize] of Cardinal;
{$DEFINE DIMENSION:=Size} {$INCLUDE thingdim.pas} {$UNDEF DIMENSION}
type
TThingDensity = (tdLow, tdMedium, tdHigh);
const
kDensityMap : array[TThingDensity, TThingSize] of TThingMass =
((tmLight, tmLight, tmLight, tmLight, tmLight),
(tmLight, tmLight, tmHeavy, tmPonderous, tmLudicrous),
(tmHeavy, tmPonderous, tmLudicrous, tmLudicrous, tmLudicrous));
implementation
{$DEFINE PART:=IMPLEMENTATION}
uses
sysutils;
{$DEFINE DIMENSION:=Mass} {$INCLUDE thingdim.pas} {$UNDEF DIMENSION}
{$DEFINE DIMENSION:=Size} {$INCLUDE thingdim.pas} {$UNDEF DIMENSION}
{$UNDEF PART}
end.
{$ELSE}
{$IF DIMENSION=Mass}
{$DEFINE TThingDimensionManifest:=TThingMassManifest}
{$DEFINE TThingDimension:=TThingMass}
{$DEFINE kDimensionScaleFactor:=kMassScaleFactor}
{$ELSEIF DIMENSION=Size}
{$DEFINE TThingDimensionManifest:=TThingSizeManifest}
{$DEFINE TThingDimension:=TThingSize}
{$DEFINE kDimensionScaleFactor:=kSizeScaleFactor}
{$ELSE}
{$FATAL Unknown DIMENSION value.}
{$ENDIF}
{$IF PART=INTERFACE}
procedure Zero(out A: TThingDimensionManifest); inline;
operator := (const A: TThingDimension): TThingDimensionManifest; inline;
{$IFDEF DEBUG}
operator := (const A: TThingDimension): UTF8String;
operator := (const A: TThingDimensionManifest): UTF8String;
{$ENDIF}
operator + (const A, B: TThingDimensionManifest): TThingDimensionManifest; inline;
operator + (const A: TThingDimensionManifest; const B: TThingDimension): TThingDimensionManifest; inline;
operator - (A, B: TThingDimensionManifest): TThingDimensionManifest; inline;
operator = (const A, B: TThingDimensionManifest): Boolean; inline;
operator > (const A, B: TThingDimensionManifest): Boolean; inline;
operator >= (const A, B: TThingDimensionManifest): Boolean; inline;
operator < (const A, B: TThingDimensionManifest): Boolean; inline;
operator <= (const A, B: TThingDimensionManifest): Boolean; inline;
{$ELSEIF PART=IMPLEMENTATION}
{$IFOPT C+}
procedure AssertIsRational(const A: TThingDimensionManifest);
var
Index: TThingDimension;
begin
for Index := Low(TThingDimension) to Pred(High(TThingDimension)) do
Assert(A[Index] < kDimensionScaleFactor);
end;
{$ENDIF}
procedure Zero(out A: TThingDimensionManifest);
var
Index: TThingDimension;
begin
for Index := Low(TThingDimension) to High(TThingDimension) do
A[Index] := 0;
end;
procedure Rationalise(var A: TThingDimensionManifest);
var
Index: TThingDimension;
begin
for Index := Low(TThingDimension) to Pred(High(TThingDimension)) do
begin
Inc(A[Succ(Index)], A[Index] div kDimensionScaleFactor);
A[Index] := A[Index] mod kDimensionScaleFactor; // $R-
end;
end;
operator := (const A: TThingDimension): TThingDimensionManifest;
begin
Zero(Result);
Result[A] := 1;
end;
{$IFDEF DEBUG}
operator := (const A: TThingDimension): UTF8String;
var
Index: TThingDimension;
begin
Result := '(';
for Index := Low(TThingDimension) to High(TThingDimension) do
begin
if (Length(Result) > 1) then
Result := Result + ',';
if (Index = A) then
Result := Result + '1'
else
Result := Result + '0';
end;
Result := Result + ')';
end;
operator := (const A: TThingDimensionManifest): UTF8String;
var
Index: TThingDimension;
begin
Result := '(';
for Index := Low(TThingDimension) to High(TThingDimension) do
begin
if (Length(Result) > 1) then
Result := Result + ',';
Result := Result + IntToStr(A[Index]);
end;
Result := Result + ')';
end;
{$ENDIF}
operator + (const A, B: TThingDimensionManifest): TThingDimensionManifest;
var
Index: TThingDimension;
begin
{$IFOPT C+} AssertIsRational(A); {$ENDIF}
{$IFOPT C+} AssertIsRational(B); {$ENDIF}
for Index := Low(TThingDimension) to High(TThingDimension) do
Result[Index] := A[Index] + B[Index]; // This could overflow if you had a lot of things...
Rationalise(Result);
end;
operator + (const A: TThingDimensionManifest; const B: TThingDimension): TThingDimensionManifest;
begin
{$IFOPT C+} AssertIsRational(A); {$ENDIF}
Result := A;
Inc(Result[B]);
Rationalise(Result);
end;
operator - (A, B: TThingDimensionManifest): TThingDimensionManifest;
var
Index, Subindex, Subsubindex: TThingDimension;
begin
{$IFOPT C+} AssertIsRational(A); {$ENDIF}
{$IFOPT C+} AssertIsRational(B); {$ENDIF}
for Index := Low(TThingDimension) to High(TThingDimension) do
begin
if (A[Index] < B[Index]) then
begin
Assert(Index < High(TThingDimension));
for Subindex := Succ(Index) to High(TThingDimension) do
begin
if (A[Subindex] > 0) then
begin
A[Subindex] := A[SubIndex] - 1; // $R-
if (Pred(Subindex) >= Succ(Index)) then
begin
for Subsubindex := Pred(Subindex) downto Succ(Index) do
begin
Assert(A[Subsubindex] = 0);
A[Subsubindex] := kDimensionScaleFactor - 1;
end;
end;
A[Index] := A[Index] + kDimensionScaleFactor; // at a glance, not sure if this could overflow; needs testing
break;
end;
end;
end;
Assert(A[Index] >= B[Index]);
Result[Index] := A[Index] - B[Index]; // $R-
end;
{$IFOPT C+} AssertIsRational(Result); {$ENDIF}
end;
operator = (const A, B: TThingDimensionManifest): Boolean;
var
Index: TThingDimension;
begin
{$IFOPT C+} AssertIsRational(A); {$ENDIF}
{$IFOPT C+} AssertIsRational(B); {$ENDIF}
for Index := Low(TThingDimension) to High(TThingDimension) do
begin
if (A[Index] <> B[Index]) then
begin
Result := False;
Exit;
end;
end;
Result := True;
end;
operator > (const A, B: TThingDimensionManifest): Boolean;
var
Index: TThingDimension;
begin
{$IFOPT C+} AssertIsRational(A); {$ENDIF}
{$IFOPT C+} AssertIsRational(B); {$ENDIF}
for Index := High(TThingDimension) downto Low(TThingDimension) do
begin
if (A[Index] > B[Index]) then
begin
Result := True;
Exit;
end
else
if (A[Index] < B[Index]) then
begin
Result := False;
Exit;
end;
end;
Result := False;
end;
operator >= (const A, B: TThingDimensionManifest): Boolean;
var
Index: TThingDimension;
begin
{$IFOPT C+} AssertIsRational(A); {$ENDIF}
{$IFOPT C+} AssertIsRational(B); {$ENDIF}
for Index := High(TThingDimension) downto Low(TThingDimension) do
begin
if (A[Index] > B[Index]) then
begin
Result := True;
Exit;
end
else
if (A[Index] < B[Index]) then
begin
Result := False;
Exit;
end;
end;
Result := True;
end;
operator < (const A, B: TThingDimensionManifest): Boolean;
var
Index: TThingDimension;
begin
{$IFOPT C+} AssertIsRational(A); {$ENDIF}
{$IFOPT C+} AssertIsRational(B); {$ENDIF}
for Index := High(TThingDimension) downto Low(TThingDimension) do
begin
if (A[Index] < B[Index]) then
begin
Result := True;
Exit;
end
else
if (A[Index] > B[Index]) then
begin
Result := False;
Exit;
end;
end;
Result := False;
end;
operator <= (const A, B: TThingDimensionManifest): Boolean;
var
Index: TThingDimension;
begin
{$IFOPT C+} AssertIsRational(A); {$ENDIF}
{$IFOPT C+} AssertIsRational(B); {$ENDIF}
for Index := High(TThingDimension) downto Low(TThingDimension) do
begin
if (A[Index] < B[Index]) then
begin
Result := True;
Exit;
end
else
if (A[Index] > B[Index]) then
begin
Result := False;
Exit;
end;
end;
Result := True;
end;
{$ELSE}
{$FATAL Unknown PART value.}
{$ENDIF}
{$UNDEF TThingDimensionManifest}
{$UNDEF TThingDimension}
{$UNDEF kDimensionScaleFactor}
{$ENDIF}