-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolvation.pas
403 lines (349 loc) · 8.79 KB
/
Solvation.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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
unit Solvation;
interface
type
TSolveLogProc = procedure (Equation: String) of object;
var
SolveLog: TSolveLogProc;
function Solve(Equation: String): Double;
type
TPresolvedVarData = record
Nom: String;
Value: Double;
end;
var
VarList: array of TPresolvedVarData;
implementation
uses
Math, Randomity, SysUtils, Classes;
function Roll(Dice: LongWord = 1; DieSize: Integer = 6): LongWord;
var
I: Integer;
begin
Result := Dice;
for I := Dice-1 downto 0 do
Inc(Result, RandN(DieSize))
;
end;
procedure TVarRec; begin end;
const
NOpLevel = 5;
type
TToken = record
case IsOp: Boolean of
True: (
Op: Char;
);
False: (
Value: Double;
);
end;
TAT = array of TToken;
function Op2OpLevel(Op: Char): Integer;
begin
case Op of
'+', '-': Result := 0;
'*', '/': Result := 1;
'^': Result := 2;
'''': Result := 3;
'#': Result := 4;
else Result := NOpLevel;
end;
end;
function NewAT(Value: Double): TToken;
begin
Result.IsOp := False;
Result.Value := Value;
end;
{
function GetValue(X: TToken): Double;
begin
if X.IsOp then
raise EParserError.Create('Attempt to take value of operator "' + X.Op + '"')
;
Result := X.Value;
end;
}
function PosNChar(SearchFor: array of Char; SearchIn: String): Integer;
var
I: Integer;
begin
for Result := 1 to Length(SearchIn) do
for I := 0 to High(SearchFor) do
if SearchIn[Result] = SearchFor[I] then
Exit
;
Result := 0;
end;
function RPosNChar(SearchFor: array of Char; SearchIn: String): Integer;
var
I: Integer;
begin
for Result := Length(SearchIn) downto 1 do
for I := 0 to High(SearchFor) do
if SearchIn[Result] = SearchFor[I] then
Exit
;
Result := 0;
end;
function ATCopy(A: TAT; Index, Len: Integer): TAT;
var
I: Integer;
begin
if LongWord(Index) + LongWord(Len) > LongWord(Length(A)) then
Len := Length(A) - Index
;
SetLength(Result, Len);
for I := 0 to Len - 1 do
Result[I] := A[Index + I]
;
end;
function StripChar(S: String; C: Char): String;
var
I, J: Integer;
begin
SetLength(Result, Length(S));
J := 1;
for I := 1 to Length(S) do
if S[I] <> C then begin
Result[J] := S[I];
Inc(J);
end
;
SetLength(Result, J - 1);
end;
function BuildArray(LA: TAT; X: Double; RA: TAT): TAT;
var
I: Integer;
begin
SetLength(Result, Length(LA) + 1 + Length(RA));
for I := 0 to High(LA) do
Result[I] := LA[I]
;
Result[Length(LA)] := NewAT(X);
for I := 0 to High(RA) do
Result[I + Length(LA) + 1] := RA[I]
;
end;
function EquationToStr(X: TAT): String;
function TermToStr(XI: TToken): String;
begin
if XI.IsOp then
Result := XI.Op
else try
Result := FloatToStr(XI.Value);
except
Result := '#?#';
end;
end;
var
I: Integer;
begin
if High(X) < 0 then begin
Result := '';
Exit;
end;
Result := TermToStr(X[0]);
for I := 1 to High(X) do
Result := Result + ' ' + TermToStr(X[I])
;
end;
procedure HandleUnarySign(var Equation: TAT);
var
I, J: Integer;
begin
for I := High(Equation) - 1 downto 0 do
if (Equation[I].IsOp)
and (Equation[I].Op in ['+', '-'])
and (
(I = 0)
or ((Equation[I - 1].IsOp) and (Equation[I - 1].Op <> ')'))
) then begin
if Equation[I].Op = '-' then
Equation[I] := NewAT(-Equation[I + 1].Value)
else
Equation[I] := Equation[I + 1]
;
for J := I + 1 to High(Equation) - 1 do
Equation[J] := Equation[J + 1]
;
Equation := ATCopy(Equation, 0, High(Equation));
end
;
end;
function SolveAT(Equation: TAT): Double;
var
I, J, ThisOpLevel, OpLevel: Integer;
A, B: Double;
begin
if Assigned(SolveLog) then SolveLog(':' + EquationToStr(Equation));
if High(Equation) = -1 then raise EParserError.Create('"" is not a valid floating point value');
if High(Equation) = 0 then begin
if Equation[0].IsOp then raise EParserError.Create('Equation "' + EquationToStr(Equation) + '" contained subequation with no terms');
Result := Equation[0].Value;
Exit;
end;
J := -1;
for I := 0 to High(Equation) do
if Equation[I].IsOp then begin
if Equation[I].Op = '(' then
J := I
else if Equation[I].Op = ')' then begin
if J = -1 then raise EParserError.Create('Unmatched close-parenthesis in "' + EquationToStr(Equation) + '"');
Result := SolveAT(BuildArray(
ATCopy(Equation, 0, J),
SolveAT(ATCopy(Equation, J + 1, I - J - 1)),
ATCopy(Equation, I + 1, MAXINT)
));
Exit;
end;
end
;
if J <> -1 then raise EParserError.Create('Unmatched open-parenthesis in "' + EquationToStr(Equation) + '"');
HandleUnarySign(Equation); //This little inanity prevents an internal compiler error
OpLevel := NOpLevel;
for I := High(Equation) downto 0 do
if Equation[I].IsOp then begin
ThisOpLevel := Op2OpLevel(Equation[I].Op);
if ThisOpLevel < OpLevel then begin
J := I;
OpLevel := ThisOpLevel;
if OpLevel = 0 then Break;
end;
end
;
if OpLevel = NOpLevel then begin
//raise EParserError.Create('"' + EquationToStr(Equation) + '"contained multiple terms and no operators');
if Equation[0].IsOp then raise EParserError.Create('Attempt to take value of operator "' + Equation[0].Op + '"');
Result := Equation[0].Value;
for I := 1 to High(Equation) do
if Equation[I].IsOp then
raise EParserError.Create('Attempt to take value of operator "' + Equation[0].Op + '"')
else
Result := Result * Equation[I].Value
;
Exit;
end;
A := SolveAT(ATCopy(Equation, 0, J));
B := SolveAT(ATCopy(Equation, J + 1, MAXINT));
case Equation[J].Op of
'+': Result := A + B;
'-': Result := A - B;
'*': Result := A * B;
'/': Result := A / B;
'^': Result := Power(A, B);
'''': Result := Roll(Round(A), Round(B));
'#': Result := A * Power(10, B);
else raise EParserError.Create('operator "' + Equation[J].Op + '" encountered');
end;
end;
//TokToFloat is similar to StrToFloat, but it (sort of) handles extra radix formats, and it resolves var names.
function TokToFloat(Tok: String): Real;
var
L, Radix, I, J: Integer;
AntiRadix, Fractional: Real;
begin
L := Length(Tok);
case Tok[1] of
'A'..'Z', 'a'..'z': begin
Tok := UpperCase(Tok);
for I := 0 to High(VarList) do
if VarList[I].Nom = Tok then begin
Result := VarList[I].Value;
Exit;
end;
raise EParserError.Create('Var ' + Tok + ' not found.');
end;
'$': begin
Radix := 16;
AntiRadix := 1/16;
I := 2;
end;
else case Tok[L] of
'h', 'H': begin //Not particularly usable
Radix := 16;
AntiRadix := 1/16;
I := 1;
Dec(L);
SetLength(Tok, L);
end;
'b', 'B': begin //Not particularly usable
Radix := 2;
AntiRadix := 1/2;
I := 1;
Dec(L);
SetLength(Tok, L);
end;
else begin
Radix := 10;
AntiRadix := 1/10;
I := 1;
end;
end;
end;
Result := 0;
repeat
case Tok[I] of
'0'..'9': Result := Result * Radix + (Byte(Tok[I]) and $F);
'A'..'F',
'a'..'f': Result := Result * Radix + (Byte(Tok[I]) and $7 + 9);
//A = 41h, 41h and 7h = 1h, 1h + 9 = 10
'.': Break;
else raise EConvertError.Create('"' + Tok + '" contains invalid character "' + Tok[I] + '".');
end;
Inc(I);
if I > L then Exit;
until False;
//Scan right-to-left for the fractional portion
Fractional := 0;
J := L;
repeat
case Tok[J] of
'0'..'9': Fractional := (Fractional + (Byte(Tok[J]) and $F)) * AntiRadix;
'A'..'F',
'a'..'f': Fractional := (Fractional + (Byte(Tok[J]) and $7 + 9)) * AntiRadix;
//A = 41h, 41h and 7h = 1h, 1h + 9 = 10
'.': Break;
else raise EConvertError.Create('"' + Tok + '" contains invalid character "' + Tok[I] + '".');
end;
Dec(J);
until J < I;
Result := Result + Fractional;
end;
function Tokenize(S: String): TAT;
var
I, L: Integer;
Buf: String;
begin
SetLength(Result, 0);
L := 0;
if S = '' then Exit;
while Length(S) <> 0 do begin
I := PosNChar(['+', '-', '*', '/', '^', '''', '#', '(', ')'], S);
if I = 0 then begin
SetLength(Result, L + 1);
Result[L] := NewAT(TokToFloat(S));
//Inc(L);
Break;
end
else begin
Buf := Copy(S, 1, I - 1);
if Buf <> '' then begin
SetLength(Result, L + 2);
Result[L] := NewAT(TokToFloat(Buf));
Inc(L);
end
else
SetLength(Result, L + 1)
;
Result[L].IsOp := True;
Result[L].Op := S[I];
Inc(L);
S := Copy(S, I + 1, MAXINT);
end;
end;
end;
function Solve(Equation: String): Double;
begin
Result := SolveAT(Tokenize(StripChar(Equation, ' ')));
end;
end.