Skip to content

Latest commit

 

History

History
467 lines (448 loc) · 13.6 KB

sysop4.pas

File metadata and controls

467 lines (448 loc) · 13.6 KB
 
Nov 18, 2000
Nov 18, 2000
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
(*****************************************************************************)
(*> <*)
(*> SYSOP4 .PAS - Written by Eric Oman <*)
(*> <*)
(*> SysOp functions: Text Editor. <*)
(*> <*)
(*> <*)
(*****************************************************************************)
{$A+,B+,D-,E+,F+,I+,L+,N-,O+,R-,S+,V-}
unit sysop4;
interface
uses
crt, dos,
{rcg11172000 no overlay under Linux.}
{overlay,}
common;
procedure tedit1;
procedure tedit(fspec:astr);
implementation
type strptr=^strrec;
strrec=
record
i:astr;
next,last:strptr;
end;
var topheap:^byte;
lastvar:byte;
procedure tedit1;
var espec,s1,s2,s3:astr;
f:file;
begin
nl;
prt('Filename: ');
if (fso) then begin
nl; mpl(79); input(espec,79);
end else begin
mpl(12); input(espec,12);
fsplit(espec,s1,s2,s3); espec:=s2+s3;
end;
if (pos('.',espec)=0) then espec:=espec+'.MSG';
nofile:=FALSE;
assign(f,systat.afilepath+espec);
{$I-} reset(f); {$I+}
if (ioresult<>0) then begin
if (fso) then begin
assign(f,systat.gfilepath+espec);
{$I-} reset(f); {$I+}
nofile:=(ioresult<>0);
if (not nofile) then espec:=systat.gfilepath+espec;
end;
end
else espec:=systat.afilepath+espec;
if (nofile) then espec:=systat.afilepath+espec;
tedit(espec);
if (filerec(f).mode<>fmclosed) then begin
{$I-} close(f); {$I+}
nofile:=(ioresult<>0);
end;
end;
procedure tedit(fspec:astr);
var fil:text;
cur,nex,las,b4,top,bottom,used:strptr;
i1,i2,ps1,ps2,ps3:astr;
tline,curline,c1,c2:integer;
abort,next,done,allread:boolean;
procedure inli(var i:astr);
var cp,rp:integer; c,c1:char; cv,cc:integer;
procedure bkspc;
begin
if (cp>1) then begin
if (i[cp-2]=#3) and (i[cp-1] in [#0..#9]) then begin
cl(1);
dec(cp);
end else
if i[cp-1]=#8 then begin
prompt(' ');
inc(rp);
end else
if i[cp-1]<>#10 then begin
prompt(#8+' '+#8);
dec(rp);
end;
dec(cp);
end;
end;
begin
rp:=1; cp:=1;
i:='';
if (ll<>'') then begin
prompt(ll);
i:=ll; ll:='';
cp:=length(i)+1;
rp:=cp;
end;
repeat
getkey(c);
case c of
#32..#255:if (cp<strlen) and (rp<thisuser.linelen) then begin
i[cp]:=c; inc(cp); inc(rp);
outkey(c);
inc(pap);
end;
^B:dm(' -'+#14+'/'+#14+'l'+#14+'\'+#14,c);
^H:bkspc;
^I:begin
cv:=5-(cp mod 5);
if (cp+cv<strlen) and (rp+cv<thisuser.linelen) then
for cc:=1 to cv do begin
prompt(' '); i[cp]:=' ';
inc(rp); inc(cp);
end;
end;
^J:if (not (rbackspace in thisuser.ac)) and (cp<strlen) then begin
prompt(c);
i[cp]:=c;
inc(cp);
end;
^N:if (not (rbackspace in thisuser.ac)) and
(rp>1) and (cp<strlen) then begin
prompt(^H);
i[cp]:=#8;
inc(cp); dec(rp);
end;
^P:if okansi and (cp<strlen-1) then begin
getkey(c1);
if c1 in ['0'..'9'] then begin
i[cp]:=#3;
inc(cp);
i[cp]:=chr(ord(c1)-ord('0'));
inc(cp);
cl(ord(i[cp-1]));
end;
end;
^S:dm(' '+date,c);
^W:if cp>1 then
repeat bkspc;
until (cp=1) or (i[cp]=' ') or ((i[cp]=^H) and (i[cp-1]<>#3));
^X:begin
cp:=1;
for cv:=1 to rp-1 do prompt(#8+' '+#8);
cl(1);
rp:=1;
end;
end;
until ((c=^M) or (rp=thisuser.linelen) or (hangup));
i[0]:=chr(cp-1);
if c<>^M then begin
cv:=cp-1;
while (cv>1) and (i[cv]<>' ') and ((i[cv]<>^H) or (i[cv-1]=#3)) do dec(cv);
if (cv>(rp div 2)) and (cv<>cp-1) then begin
ll:=copy(i,cv+1,cp-cv); for cc:=cp-2 downto cv do prompt(^H);
for cc:=cp-2 downto cv do prompt(' ');
i[0]:=chr(cv-1);
end;
end;
nl;
{ if c=^M then i:=i+chr(1);}
end;
function newptr(var x:strptr):boolean;
begin
if (used<>nil) then begin
x:=used;
used:=used^.next;
newptr:=TRUE;
end else begin
if (maxavail<0) or (maxavail>100) then begin
new(x);
newptr:=TRUE;
end
else newptr:=FALSE;
end;
end;
procedure oldptr(var x:strptr);
begin
x^.next:=used;
used:=x;
end;
procedure pline(cl:integer; var cp:strptr; var abort:boolean);
var next:boolean; i:astr;
begin
if (not abort) then begin
if (cp=nil) then i:=' '+#3+#5+'['+#3+#3+'END'+#3+#5+']' else begin
i:=cstr(cl);
while length(i)<4 do i:=' '+i;
i:=i+': '+cp^.i;
end;
printacr(i,abort,next);
end;
end;
procedure pl;
var abort:boolean;
begin
abort:=FALSE;
pline(curline,cur,abort);
end;
begin
topheap:=heapptr;
{ topheap:=ptr(seg(lastvar),ofs(lastvar));}
release(topheap);
used:=nil; top:=nil; bottom:=nil;
allread:=TRUE;
fsplit(fspec,ps1,ps2,ps3);
if (not fso) and (ps3<>'.MSG') and (ps3<>'.ANS') and
(ps3<>'.40C') and (ps3<>'.TXT') then fspec:='';
if (fspec='') then print('Illegal filename.')
else begin
nl;
assign(fil,fspec); abort:=FALSE;
{$I-} reset(fil); {$I+}
tline:=0;
new(cur);
cur^.last:=nil; cur^.i:='';
if (ioresult<>0) then begin
{$I-} rewrite(fil); {$I+}
if (ioresult<>0) then begin
print('Error reading file.');
abort:=TRUE;
end else begin
close(fil); erase(fil);
print('New file.');
tline:=0;
cur:=nil; top:=cur; bottom:=cur;
end;
end else begin
abort:=not newptr(nex);
top:=nex;
print('Loading...');
while ((not eof(fil)) and (not abort)) do begin
inc(tline);
cur^.next:=nex;
nex^.last:=cur;
cur:=nex;
readln(fil,i1);
cur^.i:=i1;
abort:=not newptr(nex);
end;
close(fil);
cur^.next:=nil;
if (tline=0) then begin cur:=nil; top:=nil; end;
bottom:=cur;
if (abort) then begin print('Not all of file read.'); allread:=FALSE; end;
abort:=FALSE;
end;
if (not abort) then begin
print('Total lines: '+cstr(tline));
cur:=top;
if (top<>nil) then top^.last:=nil;
curline:=1;
done:=FALSE;
pl;
repeat
prt(':');
input(i1,10);
if (i1='') then i1:='+';
if (value(i1)>0) then begin
c1:=value(i1);
if ((c1>0) and (c1<=tline)) then begin
while (c1<>curline) do
if (c1<curline) then begin
if (cur=nil) then begin
cur:=bottom;
curline:=tline;
end else begin
dec(curline);
cur:=cur^.last;
end;
end else begin
inc(curline);
cur:=cur^.next;
end;
pl;
end;
end else
case i1[1] of
'?':begin
lcmds(14,3,'+Forward line','-Back line');
lcmds(14,3,'Top','Bottom');
lcmds(14,3,'Print line','List');
lcmds(14,3,'Insert lines','Delete line');
lcmds(14,3,'Replace line','Clear all');
lcmds(14,3,'Quit (abort)','Save');
lcmds(14,3,'*Center line','');
end;
'!':print('Heap space available: '+cstr(memavail));
'*':if (cur<>nil) then cur^.i:=#2+cur^.i;
'+':if (cur<>nil) then begin
c1:=value(copy(i1,2,9));
if (c1=0) then c1:=1;
while (cur<>nil) and (c1>0) do begin
cur:=cur^.next;
inc(curline);
dec(c1);
end;
pl;
end;
'-':begin
c1:=value(copy(i1,2,9));
if (c1=0) then c1:=1;
if (cur=nil) then begin
cur:=bottom;
curline:=tline;
dec(c1);
end;
if (cur<>nil) then
if (cur^.last<>nil) then begin
while ((cur^.last<>nil) and (c1>0)) do begin
cur:=cur^.last;
dec(curline);
dec(c1);
end;
pl;
end;
end;
'B':begin
cur:=nil;
curline:=tline+1;
pl;
end;
'C':if pynq('Clear workspace? ') then begin
tline:=0; curline:=1;
cur:=nil; top:=nil; bottom:=nil;
release(topheap);
end;
'D':begin
c1:=value(copy(i1,2,9));
if (c1=0) then c1:=1;
while (cur<>nil) and (c1>0) do begin
las:=cur^.last;
nex:=cur^.next;
if (las<>nil) then las^.next:=nex;
if (nex<>nil) then nex^.last:=las;
oldptr(cur);
if (bottom=cur) then bottom:=las;
if (top=cur) then top:=nex;
cur:=nex;
dec(tline); dec(c1);
end;
pl;
end;
'I':begin
abort:=FALSE; ll:=''; nl;
print(' Enter "." on a seperate line to exit insert mode.');
print(' [ ^S : Sign date ^B : Spinning cursor ] ');
if okansi then
sprint(#3#2+' ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ');
i1:=''; dec(thisuser.linelen,6);
while (not hangup) and (not abort) and
(i1<>'.') and (i1<>'.'+#1) do begin
i2:=cstr(curline);
while length(i2)<>4 do i2:=' '+i2;
i2:=i2+': '; prompt(i2);
inli(i1);
if (i1<>'.') and (i1<>'.'+#1) then begin
abort:=not newptr(nex);
if not abort then begin
nex^.i:=i1;
if (top=cur) then
if (cur=nil) then begin
nex^.last:=nil;
nex^.next:=nil;
top:=nex;
bottom:=nex;
end else begin
nex^.next:=cur;
cur^.last:=nex;
top:=nex;
end
else begin
if cur=nil then begin
bottom^.next:=nex;
nex^.last:=bottom;
nex^.next:=nil;
bottom:=nex;
end else begin
las:=cur^.last;
nex^.last:=las;
nex^.next:=cur;
cur^.last:=nex;
las^.next:=nex;
end;
end;
inc(curline);
inc(tline);
end else print('Out of space.');
end;
end;
inc(thisuser.linelen,6);
end;
'L':begin
abort:=FALSE;
nex:=cur;
c1:=curline;
while (not abort) and (nex<>nil) do begin
pline(c1,nex,abort);
nex:=nex^.next;
inc(c1);
end;
end;
'P':pl;
'R':if (cur<>nil) then begin
pl;
i2:=cstr(curline);
while length(i2)<>4 do i2:=' '+i2;
i2:=i2+': '; prompt(i2);
inli(i1);
cur^.i:=i1;
end;
'Q':done:=TRUE;
'S':begin
if (not allread) then begin
cl(5); prompt('Not all of file read. ');
allread:=pynq('Save anyway? ');
end;
if allread then begin
done:=TRUE; c1:=0;
writeln('Saving...');
sysoplog('TEDIT: Saved "'+fspec+'"');
rewrite(fil);
cur:=top;
while cur<>nil do begin
writeln(fil,cur^.i);
cur:=cur^.next;
dec(c1);
end;
if (c1=0) then writeln(fil);
close(fil);
end;
end;
'T':begin
cur:=top;
curline:=1;
pl;
end;
end;
until ((done) or (hangup));
prompt('2');
end;
end;
{}{}{}
{ topheap:=ptr(seg(lastvar),ofs(lastvar));}
{}{}{}
sprompt('3');
release(topheap);
sprompt('4');
printingfile:=FALSE; cfilteron:=FALSE;
sprompt('5');
end;
end.