-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSAVELOAD.PAS
executable file
·582 lines (552 loc) · 16.8 KB
/
SAVELOAD.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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
procedure SaveFile(Name : PathStr);
{ save a file }
var
SaveOK : boolean;
OutFile : text;
i : integer;
begin
assign(OutFile,Name); { open file if exist or make one }
rewrite(OutFile);
if IOResult = 0 then { if no error }
SaveOK := True { continue }
else
SaveOK := False; { if error, then abort }
if SaveOK then begin
write(Outfile,MaxPage,' '); { write amount of pages }
if FirstVar^.Next <> nil then
FirstVar^.Next^.SaveAll(OutFile);
writeln(OutFile);
for i := 1 to MaxPage do begin
FirstNode[i]^.SaveAll(OutFile); { save nodes }
writeln(OutFile);
end;
end;
if IOResult <> 0 then SaveOK := False; { if error abort }
close(OutFile); { close file }
if not(SaveOK) then SaveError; { display error if any }
end;
procedure FVariable.SaveAll(var OutFile : text);
{ Save entire list of variables }
begin
Save(OutFile); { Save one variable }
writeln(OutFile);
if Next <> nil then Next^.SaveAll(OutFile); { Save remainder of list }
end; { of procedure FVariable.SaveAll }
procedure FVariable.Save(var OutFile : text);
{ Save one variable; each variable type redefines this procedure }
var
i : integer;
S : string;
begin
write(OutFile,VarType,' ');
S := leftjust(Name,12);
write(OutFile,S);
end; { of procedure FVariable.Save }
procedure FNumVar.Save(var OutFile : text);
{ Save one variable; each variable type redefines this procedure }
begin
FVariable.Save(OutFile);
write(OutFile,Value);
end; { of procedure FNumVar.Save }
procedure FStringVar.Save(var OutFile : text);
{ Save one variable; each variable type redefines this procedure }
begin
FVariable.Save(OutFile);
write(OutFile,Value);
end; { of procedure FStringVar.Save }
procedure FTabVar.Save(var OutFile : text);
{ Save one variable; each variable type redefines this procedure }
begin
FVariable.Save(OutFile);
write(OutFile,TabWidth);
end; { of procedure FTabVar.Save }
procedure FTerm.Save(var OutFile : text);
begin
if Term^.Name <> #0 then begin { if variable, write -1 and name }
write(OutFile,-1,' ');
write(OutFile,LeftJust(Term^.Name,12));
end
else begin { otherwise save entire variable }
Term^.Save(OutFile);
writeln(OutFile);
end;
if Next <> nil then begin { write operator }
write(OutFile,Operator);
Next^.Save(OutFile);
end
else
writeln(OutFile,#0); { or end of list character }
end;
procedure FNode.SaveAll(var OutFile : text);
{ save entire list of nodes }
begin
Save(OutFile);
writeln(OutFile);
if Next <> nil then Next^.SaveAll(OutFile);
end;
procedure FNode.Save(var OutFile : text);
{ save one node; each descendant will redefine }
var
S : string;
begin
write(OutFile,NodeType,' ');
write(OutFile,XPos,' ');
write(OutFile,YPos,' ');
S := leftjust(Comment,52);
write(OutFile,S);
if CNext = nil then begin
write(Outfile,0,' ');
write(Outfile,0,' ');
write(Outfile,0,' ');
end
else begin
write(OutFile,CNext^.XPos,' ');
write(OutFile,CNext^.YPos,' ');
write(OutFile,CNext^.NodePage,' ');
end;
end;
procedure FEquationNode.Save(var OutFile : text);
{ save one node; each descendant will redefine }
begin
FNode.Save(OutFile); { save ancestor's data }
if Variable <> nil then
write(OutFile,LeftJust(Variable^.Name,12))
else
write(OutFile,LeftJust(#0,12));
if Value <> nil then begin
write(OutFile,' ');
Value^.Save(OutFile);
end
else
write(OutFile,#0);
write(OutFile,LeftJust(Symbol,2));
end;
procedure FDecisionNode.Save(var OutFile : text);
{ save one node; each descendant will redefine }
begin
FEquationNode.Save(OutFile); { save ancestor's data }
if FNext = nil then begin
write(OutFile,0,' ');
write(OutFile,0,' ');
write(OutFile,0,' ');
end
else begin
write(OutFile,FNext^.XPos,' ');
write(OutFile,FNext^.YPos,' ');
write(OutFile,FNext^.NodePage,' ');
end;
end;
procedure FInputNode.Save(var OutFile : text);
{ save one node; each descendant will redefine }
begin
FNode.Save(OutFile); { save ancestor's data }
if Variable <> nil then
write(OutFile,Variable^.Name)
else
write(OutFile,#0);
end;
procedure FOutputNode.Save(var OutFile : text);
{ save one node; each descendant will redefine }
begin
FEquationNode.Save(OutFile); { save ancestor's data }
write(OutFile,XCursor,' ');
write(OutFile,YCursor,' ');
write(OutFile,BackColour,' ');
write(OutFile,ForeColour,' ');
end;
procedure FControlNode.Save(var Outfile : Text);
{ save one node; each descendant will redefine }
begin
FNode.Save(OutFile); { save ancestor's data }
if OutNode = nil then begin
write(OutFile,0,' ');
write(OutFile,0,' ');
write(OutFile,0,' ');
end
else begin
write(OutFile,OutNode^.XPos,' ');
write(OutFile,OutNode^.YPos,' ');
write(OutFile,OutNode^.NodePage,' ');
end;
write(OutFile,Identifier);
end;
function LoadVariables(var InFile : text) : boolean;
{ load the variables from a file }
var
N : integer;
C : char;
NVar,
OVar : PVariable;
LoadOK : boolean;
begin
LoadVariables := False; { set variables }
OVar := FirstVar;
NVar := nil;
read(InFile,C);
if C <> ' ' then exit;
while not(Eoln(InFile)) do begin
read(InFile,N); { read type of variable }
if IOResult <> 0 then exit; { if error, abort }
case N of { assign proper type of variable }
0 : NVar := new(PVariable,Init); { NL, tab, etc }
1 : NVar := new(PStringVar,Init); { string }
2 : NVar := new(PNumVar,Init); { numeric }
else exit;
end;
LoadOK := NVar^.Load(InFile); { set the specifications for the variable }
if not(LoadOK) then exit; { check error }
OVar^.Next := NVar; {set last and next pointers }
NVar^.Last := OVar;
OVar := NVar;
end;
LoadVariables := True; { return no errors }
end;
function LoadNodes(var InFile : text) : boolean;
{ load the nodes }
var
N : integer;
ONode,
NNode : PNode;
LoadOK : boolean;
begin
LoadNodes := False; { set variables }
if not(Eoln(InFile)) then exit;
dispose(FirstNode[1],Done);
for i := 1 to MaxPage do begin
ONode := nil;
NNode := nil;
readln(InFile);
while not(Eoln(InFile)) do begin
read(InFile,N); { read in type }
if IOResult <> 0 then exit; { error, then abort }
case N of { deternime what type of node }
Start : NNode := new(PStartNode,Init);
Stop : NNode := new(PStopNode,Init);
Input : NNode := new(PInputNode,Init);
Output : NNode := new(POutputNode,Init);
Assignment : NNode := new(PAssignmentNode,Init);
Decision : NNode := new(PDecisionNode,Init);
Control : NNode := new(PControlNode,Init);
ControlOut : NNode := new(PControlOutNode,Init);
else exit;
end;
LoadOK := NNode^.Load(InFile); { set specifications for node }
if not(LoadOK) then exit; { if error then abort }
if ONode = nil then begin { if this is first node on page ... }
FirstNode[i] := NNode; { set pointer }
ONode := FirstNode[i];
end
else begin { otherwise }
ONode^.Next := NNode; { set next }
ONode := NNode;
end;
end;
end;
LoadNodes := True; { no error }
end;
procedure LoadFile;
{ load a file }
var
Name : PathStr;
InFile : text;
N : integer;
OVar,
NVar : PVariable;
ONode,
NNode : PNode;
Cancel,
LoadOK : boolean;
begin
Name := MGetFile('*.FLO','File to Open...',Cancel); { get filename }
if not(Cancel) then begin { if not canceled }
{$I-} { turn I/O checking off }
NewFile; { reset programme nodes, variables, etc. }
ProgramName := Name; { set variables }
LoadOK := True;
assign(InFile,Name); { open name }
reset(InFile);
if IOResult <> 0 then LoadOK := False; { if no error ... }
if LoadOK then begin
read(InFile,MaxPage); { read number of pages }
if IOResult <> 0 then LoadOK := False; { if error, abort }
end;
if LoadOK then LoadOK := LoadVariables(InFile); { load variables }
if LoadOK then LoadOK := LoadNodes(InFile); { load nodes }
if LoadOK then begin
readln(InFile);
if not(Eof(InFile)) then LoadOK := False;{ if not at end of file abort }
end;
close(InFile); { close file }
{$I-} { turn I/O checking off }
for i := 1 to MaxPage do
if LoadOK then LoadOK := FirstNode[i]^.ConnectAll; { connect nodes }
if not(LoadOK) then
LoadError { if error occured then display it }
else begin
PageCheck; { otherwise, redraw screen }
end;
end;
end;
function FVariable.LoadBase(var InFile : text) : boolean;
{ Load portion of variable which never changes }
var
C : char;
Nm : string[12];
begin
LoadBase := False;
if Eoln(InFile) then exit; { Error occurred }
read(InFile,C);
if (C <> ' ') or Eoln(InFile) then exit; { Error occured }
read(InFile,Nm);
Name := NoRSpace(Nm);
LoadBase := True;
end; { of function FVariable.LoadBase }
function FVariable.Load(var InFile : text) : boolean;
{ Load one variable; each descendant will redefine }
var
LoadOK : boolean;
begin
Load := False;
LoadOK := LoadBase(InFile);
if not(LoadOK) or not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end; { of function FVariable.Load }
function FNumVar.Load(var InFile : text) : boolean;
{ Load one variable; each descendant will redefine }
var
LoadOK : boolean;
begin
Load := False;
LoadOK := LoadBase(InFile);
if not(LoadOK) or Eoln(InFile) then exit; { Error occurred }
read(InFile,Value);
if (IOResult <> 0) or not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end; { of function FNumVar.Load }
function FStringVar.Load(var InFile : text) : boolean;
{ Load one variable; each descendant will redefine }
var
LoadOK : boolean;
begin
Load := False;
LoadOK := LoadBase(InFile);
if not(LoadOK) or Eoln(InFile) then exit; { Error occurred }
read(InFile,Value);
if not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end; { of function FStringVar.Load }
function FTabVar.Load(var InFile : text) : boolean;
{ Load one variable; each descendant will redefine }
var
LoadOK : boolean;
begin
Load := False;
LoadOk := LoadBase(InFile);
if not(LoadOK) or Eoln(InFile) then exit; { Error occurred }
read(InFile,TabWidth);
if (IOResult <> 0) or not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end; { of function FTabVar.Load }
function FTerm.Load(var InFile : text) : boolean;
var
LoadOk : boolean;
N : integer;
Nm : string[12];
S : string;
C : char;
begin
LoadOK := False;
if Eoln(InFile) then exit; { Error occurred }
read(InFile,N);
if (IOResult <> 0) or Eoln(InFile) then exit; { Error occurred }
if N = -1 then begin { if -1, get pointer to variable in list }
read(InFile,C);
if (C <> ' ') or Eoln(InFile) then exit; { Error occurred }
read(InFile,Nm);
S := NoRSpace(Nm);
Term := FirstVar^.Find(S,0);
if (Term = nil) or not(Eoln(InFile)) then exit; { Error occurred }
end
else begin { otherwise create constant }
case N of
0 : Term := new(PVariable,Init);
StrVar : Term := new(PStringVar,Init);
NumVar : Term := new(PNumVar,Init);
TabVar : Term := new(PTabVar,Init);
NLVar : Term := new(PNLVar,Init);
else exit; { Error occurred }
end;
LoadOK := Term^.Load(InFile);
if not(LoadOK) or Eoln(InFile) then exit; { Error occurred }
end;
read(InFile,C);
Operator := C;
if C <> #0 then begin
Next := new(PTerm,init);
Next^.Last := @Self;
LoadOK := Next^.Load(InFile);
if not(LoadOK) then exit; { Error occurred }
end
else begin
if not(Eoln(Infile)) then exit; { Error occurred }
readln(InFile);
end;
Load := True;
end;
function FNode.LoadBase(var InFile : text) : boolean;
var
S : String[52];
C : char;
begin
LoadBase := False;
if Eoln(InFile) then exit; { Error occurred }
read(InFile,XPos);
if (IOResult <> 0) or (Eoln(InFile)) then exit; { Error occurred }
read(InFile,YPos);
if (IOResult <> 0) or (Eoln(InFile)) then exit; { Error occurred }
read(InFile,C);
if (C <> ' ') or (Eoln(InFile)) then exit; { Error occurred }
read(InFile,S);
Comment := NoRSpace(S);
if Eoln(InFile) then exit; { Error occurred }
read(InFile,CNextX);
if (IOResult <> 0) or (Eoln(InFile)) then exit; { Error occurred }
read(InFile,CNextY);
if (IOResult <> 0) or (Eoln(InFile)) then exit; { Error occurred }
read(InFile,CNextPage);
if (IOResult <> 0) or (Eoln(InFile)) then exit; { Error occurred }
read(InFile,C);
if C <> ' ' then exit; { Error occurred }
LoadBase := True;
end;
function FNode.Load(var InFile : text) : boolean;
var
LoadOk : boolean;
begin
Load := False;
LoadOK := LoadBase(InFile);
if (LoadOK = False) or not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end;
function FEquationNode.LoadBase(var InFile : text) : boolean;
var
LoadOK : boolean;
Nm : string[12];
S : string;
C : char;
Symb : string[2];
begin
LoadBase := False;
LoadOK := FNode.LoadBase(InFile);
if (not(LoadOk)) or Eoln(InFile) then exit; { Error occurred }
read(InFile,Nm);
S := NoRSpace(Nm);
if S <> #0 then begin
Variable := FirstVar^.Find(S,0);
if (Variable = nil) or Eoln(InFile) then exit; { Error occurred }
end;
read(InFile,C);
if C <> #0 then begin
Value := new(PTerm,Init);
LoadOk := Value^.Load(InFile);
if not(LoadOK) then exit; { Error occurred }
end;
if Eoln(InFile) then exit; { Error occurred }
read(InFile,Symb);
Symbol := NoRSpace(Symb);
if not((Symbol[1] in ['=','<','>']) and
((Length(Symbol) = 1) or (Symbol[2] in ['=','>']))) then exit; { Error occurred }
LoadBase := True;
end;
function FEquationNode.Load(var InFile : text) : boolean;
var
LoadOK : boolean;
begin
Load := False;
LoadOK := LoadBase(InFile);
if not(LoadOK) or not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end;
function FDecisionNode.Load(var InFile : text) : boolean;
var
LoadOK : boolean;
Nm : string[12];
S : string;
C : char;
begin
Load := True;
LoadOK := LoadBase(InFile);
if not(LoadOK) or Eoln(InFile) then exit; { Error occurred }
read(InFile,FNextX);
if (IOResult <> 0) or Eoln(InFile) then exit; { Error occurred }
read(InFile,FNextY);
if (IOResult <> 0) or Eoln(InFile) then exit; { Error occurred }
read(InFile,FNextPage);
if (IOResult <> 0) or Eoln(InFile) then exit; { Error occurred }
read(InFile,C);
if (C <> ' ') or not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end;
function FInputNode.Load(var InFile : text) : boolean;
var
LoadOK : boolean;
Nm : string[12];
S : string;
begin
Load := False;
LoadOK := LoadBase(InFile);
if not(LoadOK) then exit; { Error occurred }
read(InFile,Nm);
S := NoRSpace(Nm);
Variable := FirstVar^.Find(S,0);
if (Variable = nil) or not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end;
function FOutputNode.Load(var InFile : text) : boolean;
var
LoadOk : boolean;
N : integer;
C : char;
begin
Load := False;
LoadOk := LoadBase(InFile);
if not(LoadOK) or Eoln(InFile) then exit; { Error occurred }
read(InFile,XCursor);
if (IOResult <> 0) or Eoln(InFile) then exit; { Error occurred }
read(InFile,YCursor);
if (IOResult <> 0) or Eoln(InFile) then exit; { Error occurred }
read(InFile,BackColour);
if (IOResult <> 0) or Eoln(InFile) then exit; { Error occurred }
read(InFile,ForeColour);
if (IOResult <> 0) or Eoln(InFile) then exit; { Error occurred }
read(InFile,C);
if (C <> ' ') or not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end;
function FControlNode.Load(var InFile : Text) : boolean;
var
LoadOK : boolean;
begin
Load := False;
LoadOK := LoadBase(InFile);
if not(LoadOK) then exit; { Error occurred }
read(InFile,OutNodeX);
if (IOResult <> 0) and Eoln(InFile) then exit; { Error occurred }
read(InFile,OutNodeY);
if (IOResult <> 0) and Eoln(InFile) then exit; { Error occurred }
read(InFile,OutNodePage);
if (IOResult <> 0) and Eoln(InFile) then exit; { Error occurred }
read(InFile,Identifier);
if (IOResult <> 0) or not(Eoln(InFile)) then exit; { Error occurred }
readln(InFile);
Load := True;
end;