Home » CEEFAX disks » telesoftware16.adl » 18-06-89/TL\PAS

18-06-89/TL\PAS

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » CEEFAX disks » telesoftware16.adl
Filename: 18-06-89/TL\PAS
Read OK:
File size: 1337 bytes
Load address: 0000
Exec address: FFFFFFFF
File contents
const
  lines=300;     {This is number of lines per page.}
  initstring=#27'3'#15#27'S0'#15;   {This is the printer init string.  It
                                     sets Superscript, 15/216 inch line
                                     spacing, and compressed print.  Change
                                     this string for non Epson compatible
                                     printers.}



type
  chararray=array[1..2000] of char;
  linetype=string[66];
  pagetype=array[1..lines] of linetype;

var
  page:pagetype;
  block:chararray;
  fil:text;
  reform,new:boolean;
  stop,maxlines:integer;
  inname:linetype;

procedure readabunch;
  var
    i:integer;
  begin
    i:=1;
    if not new then
      for i:=1 to 100 do
        block[i]:=block[1900+i];
    repeat
      read(fil,block[i]);
      if block[i]<>#10 then
        i:=succ(i);
    until (i=2000) or eof(fil);
    stop:=1900;
    if i<1900 then
      stop:=i;
    if eof(fil) then block[i]:=#26;
  end;

function countleft(s:integer):integer;
  var
    i:integer;
  begin
    i:=0;
    while block[i+s]=' ' do
      i:=succ(i);
    countleft:=i;
  end;

function pad(s:linetype):linetype;
  var
    s1:linetype;
  begin
    s1:=s;
    while length(s1)<66 do
      s1:=s1+' ';
    pad:=s1;
  end;

procedure printpage;
  var
    i:integer;
  begin
    i:=1;
    while (i<=maxlines) and (i<=(lines div 2)) do
      begin
        write(lst,pad(page[i]));
        if i+(lines div 2)<=maxlines then
          write(lst,pad(page[i+(lines div 2)]));
        i:=succ(i);
        writeln(lst);
      end;
    writeln(lst,#12#10#10#10);
  end;

procedure scrollline;
  begin
    if maxlines=lines then
      begin
        printpage;
        maxlines:=1;
      end
    else
      begin
        maxlines:=succ(maxlines);
        page[maxlines]:='';
      end;
  end;

procedure displaybunch;
  var
    i,j:integer;
  const
    lefmar:integer=0;
  begin
    for i:=1 to stop do
      begin
        if block[i]=#26 then
          begin
            printpage;
            halt;
          end;
        if block[i]>#128 then
          begin
            textcolor(12);
            writeln('|':66-wherex);
            textcolor(14);
            if lefmar>0 then
              write(' ':lefmar);
            scrollline;
            if lefmar>0 then
              for j:=1 to lefmar do
                page[maxlines]:=page[maxlines]+' ';
            if block[i]<>#160 then
              block[i]:=chr(ord(block[i])-128);
          end;
        if block[i]=#13 then
          begin
            writeln('�');
            lefmar:=countleft(succ(i));
            scrollline;
          end;
        if block[i] in [' '..'~'] then
          begin
            write(block[i]);
            page[maxlines]:=page[maxlines]+block[i];
          end;
      end;
  end;

procedure openfile;
  var
    c:char;
  begin
    write('Enter input file name: ');
    readln(inname);
    assign(fil,inname);
    reset(fil);
    writeln;
    write('Reform paragraphs? ');
    readln(c);
    reform:=upcase(c)='Y';
    writeln;
  end;

procedure removecrs;
  var
    i,j,lm,lefmar:integer;
  begin
    i:=1;
    if new then
      lefmar:=countleft(i);
    repeat
      while block[i]<>#13 do
        i:=succ(i);
      lm:=countleft(succ(i));
      if block[succ(i)]='' then
        begin
          reform:=not reform;
          block[succ(i)]:=#0;
          lm:=countleft(i+2);
        end;
      if (lm<=lefmar) and (block[succ(i)]<>#13) and (block[pred(i)]<>#13)
                      and reform then
        begin
          block[i]:=' ';
          if lm<>0 then
            for j:=succ(i) to i+lm do
              block[j]:=#0;
        end;
      lefmar:=lm;
      i:=succ(i);
    until (i>=stop);
  end;

procedure insertlfs;
  var
    i,j,count,lefmar:integer;
  const
    leftovers:integer=1;
  begin
    i:=leftovers;
    if new then
      lefmar:=countleft(i);
    new:=false;
    repeat
      count:=0;
      if block[i]<>#13 then
        count:=count+lefmar;
      repeat
        if block[i]<>#0 then count:=succ(count);
        i:=succ(i);
      until (count>63) or (block[i] in [#13,#26]);
      case block[i] of
        #13:lefmar:=countleft(succ(i));
        #26:;
        else
          begin
            while not (block[i] in [' ',#13,#128..#255]) do
              i:=pred(i);
            block[i]:=chr(ord(block[i])+128)
          end
      end;
    until (i>stop) and (block[i] in [#13,#128..#255]);
    leftovers:=i-stop;
  end;

begin
  writeln(lst,initstring);
  new:=true;
  clrscr;
  openfile;
  maxlines:=0;
  scrollline;
  repeat
    readabunch;
    removecrs;
    insertlfs;
    displaybunch;
  until eof(fil);
  close(fil);
end.



00000000  63 6f 6e 73 74 0d 0a 20  20 6c 69 6e 65 73 3d 33  |const..  lines=3|
00000010  30 30 3b 20 20 20 20 20  7b 54 68 69 73 20 69 73  |00;     {This is|
00000020  20 6e 75 6d 62 65 72 20  6f 66 20 6c 69 6e 65 73  | number of lines|
00000030  20 70 65 72 20 70 61 67  65 2e 7d 0d 0a 20 20 69  | per page.}..  i|
00000040  6e 69 74 73 74 72 69 6e  67 3d 23 32 37 27 33 27  |nitstring=#27'3'|
00000050  23 31 35 23 32 37 27 53  30 27 23 31 35 3b 20 20  |#15#27'S0'#15;  |
00000060  20 7b 54 68 69 73 20 69  73 20 74 68 65 20 70 72  | {This is the pr|
00000070  69 6e 74 65 72 20 69 6e  69 74 20 73 74 72 69 6e  |inter init strin|
00000080  67 2e 20 20 49 74 0d 0a  20 20 20 20 20 20 20 20  |g.  It..        |
00000090  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000000a0  20 20 20 20 20 20 20 20  20 20 20 20 20 73 65 74  |             set|
000000b0  73 20 53 75 70 65 72 73  63 72 69 70 74 2c 20 31  |s Superscript, 1|
000000c0  35 2f 32 31 36 20 69 6e  63 68 20 6c 69 6e 65 0d  |5/216 inch line.|
000000d0  0a 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |.               |
000000e0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000000f0  20 20 20 20 20 20 73 70  61 63 69 6e 67 2c 20 61  |      spacing, a|
00000100  6e 64 20 63 6f 6d 70 72  65 73 73 65 64 20 70 72  |nd compressed pr|
00000110  69 6e 74 2e 20 20 43 68  61 6e 67 65 0d 0a 20 20  |int.  Change..  |
00000120  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000140  20 20 20 74 68 69 73 20  73 74 72 69 6e 67 20 66  |   this string f|
00000150  6f 72 20 6e 6f 6e 20 45  70 73 6f 6e 20 63 6f 6d  |or non Epson com|
00000160  70 61 74 69 62 6c 65 0d  0a 20 20 20 20 20 20 20  |patible..       |
00000170  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000180  20 20 20 20 20 20 20 20  20 20 20 20 20 20 70 72  |              pr|
00000190  69 6e 74 65 72 73 2e 7d  0d 0a 0d 0a 0d 0a 0d 0a  |inters.}........|
000001a0  74 79 70 65 0d 0a 20 20  63 68 61 72 61 72 72 61  |type..  chararra|
000001b0  79 3d 61 72 72 61 79 5b  31 2e 2e 32 30 30 30 5d  |y=array[1..2000]|
000001c0  20 6f 66 20 63 68 61 72  3b 0d 0a 20 20 6c 69 6e  | of char;..  lin|
000001d0  65 74 79 70 65 3d 73 74  72 69 6e 67 5b 36 36 5d  |etype=string[66]|
000001e0  3b 0d 0a 20 20 70 61 67  65 74 79 70 65 3d 61 72  |;..  pagetype=ar|
000001f0  72 61 79 5b 31 2e 2e 6c  69 6e 65 73 5d 20 6f 66  |ray[1..lines] of|
00000200  20 6c 69 6e 65 74 79 70  65 3b 0d 0a 0d 0a 76 61  | linetype;....va|
00000210  72 0d 0a 20 20 70 61 67  65 3a 70 61 67 65 74 79  |r..  page:pagety|
00000220  70 65 3b 0d 0a 20 20 62  6c 6f 63 6b 3a 63 68 61  |pe;..  block:cha|
00000230  72 61 72 72 61 79 3b 0d  0a 20 20 66 69 6c 3a 74  |rarray;..  fil:t|
00000240  65 78 74 3b 0d 0a 20 20  72 65 66 6f 72 6d 2c 6e  |ext;..  reform,n|
00000250  65 77 3a 62 6f 6f 6c 65  61 6e 3b 0d 0a 20 20 73  |ew:boolean;..  s|
00000260  74 6f 70 2c 6d 61 78 6c  69 6e 65 73 3a 69 6e 74  |top,maxlines:int|
00000270  65 67 65 72 3b 0d 0a 20  20 69 6e 6e 61 6d 65 3a  |eger;..  inname:|
00000280  6c 69 6e 65 74 79 70 65  3b 0d 0a 0d 0a 70 72 6f  |linetype;....pro|
00000290  63 65 64 75 72 65 20 72  65 61 64 61 62 75 6e 63  |cedure readabunc|
000002a0  68 3b 0d 0a 20 20 76 61  72 0d 0a 20 20 20 20 69  |h;..  var..    i|
000002b0  3a 69 6e 74 65 67 65 72  3b 0d 0a 20 20 62 65 67  |:integer;..  beg|
000002c0  69 6e 0d 0a 20 20 20 20  69 3a 3d 31 3b 0d 0a 20  |in..    i:=1;.. |
000002d0  20 20 20 69 66 20 6e 6f  74 20 6e 65 77 20 74 68  |   if not new th|
000002e0  65 6e 0d 0a 20 20 20 20  20 20 66 6f 72 20 69 3a  |en..      for i:|
000002f0  3d 31 20 74 6f 20 31 30  30 20 64 6f 0d 0a 20 20  |=1 to 100 do..  |
00000300  20 20 20 20 20 20 62 6c  6f 63 6b 5b 69 5d 3a 3d  |      block[i]:=|
00000310  62 6c 6f 63 6b 5b 31 39  30 30 2b 69 5d 3b 0d 0a  |block[1900+i];..|
00000320  20 20 20 20 72 65 70 65  61 74 0d 0a 20 20 20 20  |    repeat..    |
00000330  20 20 72 65 61 64 28 66  69 6c 2c 62 6c 6f 63 6b  |  read(fil,block|
00000340  5b 69 5d 29 3b 0d 0a 20  20 20 20 20 20 69 66 20  |[i]);..      if |
00000350  62 6c 6f 63 6b 5b 69 5d  3c 3e 23 31 30 20 74 68  |block[i]<>#10 th|
00000360  65 6e 0d 0a 20 20 20 20  20 20 20 20 69 3a 3d 73  |en..        i:=s|
00000370  75 63 63 28 69 29 3b 0d  0a 20 20 20 20 75 6e 74  |ucc(i);..    unt|
00000380  69 6c 20 28 69 3d 32 30  30 30 29 20 6f 72 20 65  |il (i=2000) or e|
00000390  6f 66 28 66 69 6c 29 3b  0d 0a 20 20 20 20 73 74  |of(fil);..    st|
000003a0  6f 70 3a 3d 31 39 30 30  3b 0d 0a 20 20 20 20 69  |op:=1900;..    i|
000003b0  66 20 69 3c 31 39 30 30  20 74 68 65 6e 0d 0a 20  |f i<1900 then.. |
000003c0  20 20 20 20 20 73 74 6f  70 3a 3d 69 3b 0d 0a 20  |     stop:=i;.. |
000003d0  20 20 20 69 66 20 65 6f  66 28 66 69 6c 29 20 74  |   if eof(fil) t|
000003e0  68 65 6e 20 62 6c 6f 63  6b 5b 69 5d 3a 3d 23 32  |hen block[i]:=#2|
000003f0  36 3b 0d 0a 20 20 65 6e  64 3b 0d 0a 0d 0a 66 75  |6;..  end;....fu|
00000400  6e 63 74 69 6f 6e 20 63  6f 75 6e 74 6c 65 66 74  |nction countleft|
00000410  28 73 3a 69 6e 74 65 67  65 72 29 3a 69 6e 74 65  |(s:integer):inte|
00000420  67 65 72 3b 0d 0a 20 20  76 61 72 0d 0a 20 20 20  |ger;..  var..   |
00000430  20 69 3a 69 6e 74 65 67  65 72 3b 0d 0a 20 20 62  | i:integer;..  b|
00000440  65 67 69 6e 0d 0a 20 20  20 20 69 3a 3d 30 3b 0d  |egin..    i:=0;.|
00000450  0a 20 20 20 20 77 68 69  6c 65 20 62 6c 6f 63 6b  |.    while block|
00000460  5b 69 2b 73 5d 3d 27 20  27 20 64 6f 0d 0a 20 20  |[i+s]=' ' do..  |
00000470  20 20 20 20 69 3a 3d 73  75 63 63 28 69 29 3b 0d  |    i:=succ(i);.|
00000480  0a 20 20 20 20 63 6f 75  6e 74 6c 65 66 74 3a 3d  |.    countleft:=|
00000490  69 3b 0d 0a 20 20 65 6e  64 3b 0d 0a 0d 0a 66 75  |i;..  end;....fu|
000004a0  6e 63 74 69 6f 6e 20 70  61 64 28 73 3a 6c 69 6e  |nction pad(s:lin|
000004b0  65 74 79 70 65 29 3a 6c  69 6e 65 74 79 70 65 3b  |etype):linetype;|
000004c0  0d 0a 20 20 76 61 72 0d  0a 20 20 20 20 73 31 3a  |..  var..    s1:|
000004d0  6c 69 6e 65 74 79 70 65  3b 0d 0a 20 20 62 65 67  |linetype;..  beg|
000004e0  69 6e 0d 0a 20 20 20 20  73 31 3a 3d 73 3b 0d 0a  |in..    s1:=s;..|
000004f0  20 20 20 20 77 68 69 6c  65 20 6c 65 6e 67 74 68  |    while length|
00000500  28 73 31 29 3c 36 36 20  64 6f 0d 0a 20 20 20 20  |(s1)<66 do..    |
00000510  20 20 73 31 3a 3d 73 31  2b 27 20 27 3b 0d 0a 20  |  s1:=s1+' ';.. |
00000520  20 20 20 70 61 64 3a 3d  73 31 3b 0d 0a 20 20 65  |   pad:=s1;..  e|
00000530  6e 64 3b 0d 0a 0d 0a 70  72 6f 63 65 64 75 72 65  |nd;....procedure|
00000540  20 70 72 69 6e 74 70 61  67 65 3b 0d 0a 20 20 76  | printpage;..  v|
00000550  61 72 0d 0a 20 20 20 20  69 3a 69 6e 74 65 67 65  |ar..    i:intege|
00000560  72 3b 0d 0a 20 20 62 65  67 69 6e 0d 0a 20 20 20  |r;..  begin..   |
00000570  20 69 3a 3d 31 3b 0d 0a  20 20 20 20 77 68 69 6c  | i:=1;..    whil|
00000580  65 20 28 69 3c 3d 6d 61  78 6c 69 6e 65 73 29 20  |e (i<=maxlines) |
00000590  61 6e 64 20 28 69 3c 3d  28 6c 69 6e 65 73 20 64  |and (i<=(lines d|
000005a0  69 76 20 32 29 29 20 64  6f 0d 0a 20 20 20 20 20  |iv 2)) do..     |
000005b0  20 62 65 67 69 6e 0d 0a  20 20 20 20 20 20 20 20  | begin..        |
000005c0  77 72 69 74 65 28 6c 73  74 2c 70 61 64 28 70 61  |write(lst,pad(pa|
000005d0  67 65 5b 69 5d 29 29 3b  0d 0a 20 20 20 20 20 20  |ge[i]));..      |
000005e0  20 20 69 66 20 69 2b 28  6c 69 6e 65 73 20 64 69  |  if i+(lines di|
000005f0  76 20 32 29 3c 3d 6d 61  78 6c 69 6e 65 73 20 74  |v 2)<=maxlines t|
00000600  68 65 6e 0d 0a 20 20 20  20 20 20 20 20 20 20 77  |hen..          w|
00000610  72 69 74 65 28 6c 73 74  2c 70 61 64 28 70 61 67  |rite(lst,pad(pag|
00000620  65 5b 69 2b 28 6c 69 6e  65 73 20 64 69 76 20 32  |e[i+(lines div 2|
00000630  29 5d 29 29 3b 0d 0a 20  20 20 20 20 20 20 20 69  |)]));..        i|
00000640  3a 3d 73 75 63 63 28 69  29 3b 0d 0a 20 20 20 20  |:=succ(i);..    |
00000650  20 20 20 20 77 72 69 74  65 6c 6e 28 6c 73 74 29  |    writeln(lst)|
00000660  3b 0d 0a 20 20 20 20 20  20 65 6e 64 3b 0d 0a 20  |;..      end;.. |
00000670  20 20 20 77 72 69 74 65  6c 6e 28 6c 73 74 2c 23  |   writeln(lst,#|
00000680  31 32 23 31 30 23 31 30  23 31 30 29 3b 0d 0a 20  |12#10#10#10);.. |
00000690  20 65 6e 64 3b 0d 0a 0d  0a 70 72 6f 63 65 64 75  | end;....procedu|
000006a0  72 65 20 73 63 72 6f 6c  6c 6c 69 6e 65 3b 0d 0a  |re scrollline;..|
000006b0  20 20 62 65 67 69 6e 0d  0a 20 20 20 20 69 66 20  |  begin..    if |
000006c0  6d 61 78 6c 69 6e 65 73  3d 6c 69 6e 65 73 20 74  |maxlines=lines t|
000006d0  68 65 6e 0d 0a 20 20 20  20 20 20 62 65 67 69 6e  |hen..      begin|
000006e0  0d 0a 20 20 20 20 20 20  20 20 70 72 69 6e 74 70  |..        printp|
000006f0  61 67 65 3b 0d 0a 20 20  20 20 20 20 20 20 6d 61  |age;..        ma|
00000700  78 6c 69 6e 65 73 3a 3d  31 3b 0d 0a 20 20 20 20  |xlines:=1;..    |
00000710  20 20 65 6e 64 0d 0a 20  20 20 20 65 6c 73 65 0d  |  end..    else.|
00000720  0a 20 20 20 20 20 20 62  65 67 69 6e 0d 0a 20 20  |.      begin..  |
00000730  20 20 20 20 20 20 6d 61  78 6c 69 6e 65 73 3a 3d  |      maxlines:=|
00000740  73 75 63 63 28 6d 61 78  6c 69 6e 65 73 29 3b 0d  |succ(maxlines);.|
00000750  0a 20 20 20 20 20 20 20  20 70 61 67 65 5b 6d 61  |.        page[ma|
00000760  78 6c 69 6e 65 73 5d 3a  3d 27 27 3b 0d 0a 20 20  |xlines]:='';..  |
00000770  20 20 20 20 65 6e 64 3b  0d 0a 20 20 65 6e 64 3b  |    end;..  end;|
00000780  0d 0a 0d 0a 70 72 6f 63  65 64 75 72 65 20 64 69  |....procedure di|
00000790  73 70 6c 61 79 62 75 6e  63 68 3b 0d 0a 20 20 76  |splaybunch;..  v|
000007a0  61 72 0d 0a 20 20 20 20  69 2c 6a 3a 69 6e 74 65  |ar..    i,j:inte|
000007b0  67 65 72 3b 0d 0a 20 20  63 6f 6e 73 74 0d 0a 20  |ger;..  const.. |
000007c0  20 20 20 6c 65 66 6d 61  72 3a 69 6e 74 65 67 65  |   lefmar:intege|
000007d0  72 3d 30 3b 0d 0a 20 20  62 65 67 69 6e 0d 0a 20  |r=0;..  begin.. |
000007e0  20 20 20 66 6f 72 20 69  3a 3d 31 20 74 6f 20 73  |   for i:=1 to s|
000007f0  74 6f 70 20 64 6f 0d 0a  20 20 20 20 20 20 62 65  |top do..      be|
00000800  67 69 6e 0d 0a 20 20 20  20 20 20 20 20 69 66 20  |gin..        if |
00000810  62 6c 6f 63 6b 5b 69 5d  3d 23 32 36 20 74 68 65  |block[i]=#26 the|
00000820  6e 0d 0a 20 20 20 20 20  20 20 20 20 20 62 65 67  |n..          beg|
00000830  69 6e 0d 0a 20 20 20 20  20 20 20 20 20 20 20 20  |in..            |
00000840  70 72 69 6e 74 70 61 67  65 3b 0d 0a 20 20 20 20  |printpage;..    |
00000850  20 20 20 20 20 20 20 20  68 61 6c 74 3b 0d 0a 20  |        halt;.. |
00000860  20 20 20 20 20 20 20 20  20 65 6e 64 3b 0d 0a 20  |         end;.. |
00000870  20 20 20 20 20 20 20 69  66 20 62 6c 6f 63 6b 5b  |       if block[|
00000880  69 5d 3e 23 31 32 38 20  74 68 65 6e 0d 0a 20 20  |i]>#128 then..  |
00000890  20 20 20 20 20 20 20 20  62 65 67 69 6e 0d 0a 20  |        begin.. |
000008a0  20 20 20 20 20 20 20 20  20 20 20 74 65 78 74 63  |           textc|
000008b0  6f 6c 6f 72 28 31 32 29  3b 0d 0a 20 20 20 20 20  |olor(12);..     |
000008c0  20 20 20 20 20 20 20 77  72 69 74 65 6c 6e 28 27  |       writeln('|
000008d0  7c 27 3a 36 36 2d 77 68  65 72 65 78 29 3b 0d 0a  ||':66-wherex);..|
000008e0  20 20 20 20 20 20 20 20  20 20 20 20 74 65 78 74  |            text|
000008f0  63 6f 6c 6f 72 28 31 34  29 3b 0d 0a 20 20 20 20  |color(14);..    |
00000900  20 20 20 20 20 20 20 20  69 66 20 6c 65 66 6d 61  |        if lefma|
00000910  72 3e 30 20 74 68 65 6e  0d 0a 20 20 20 20 20 20  |r>0 then..      |
00000920  20 20 20 20 20 20 20 20  77 72 69 74 65 28 27 20  |        write(' |
00000930  27 3a 6c 65 66 6d 61 72  29 3b 0d 0a 20 20 20 20  |':lefmar);..    |
00000940  20 20 20 20 20 20 20 20  73 63 72 6f 6c 6c 6c 69  |        scrollli|
00000950  6e 65 3b 0d 0a 20 20 20  20 20 20 20 20 20 20 20  |ne;..           |
00000960  20 69 66 20 6c 65 66 6d  61 72 3e 30 20 74 68 65  | if lefmar>0 the|
00000970  6e 0d 0a 20 20 20 20 20  20 20 20 20 20 20 20 20  |n..             |
00000980  20 66 6f 72 20 6a 3a 3d  31 20 74 6f 20 6c 65 66  | for j:=1 to lef|
00000990  6d 61 72 20 64 6f 0d 0a  20 20 20 20 20 20 20 20  |mar do..        |
000009a0  20 20 20 20 20 20 20 20  70 61 67 65 5b 6d 61 78  |        page[max|
000009b0  6c 69 6e 65 73 5d 3a 3d  70 61 67 65 5b 6d 61 78  |lines]:=page[max|
000009c0  6c 69 6e 65 73 5d 2b 27  20 27 3b 0d 0a 20 20 20  |lines]+' ';..   |
000009d0  20 20 20 20 20 20 20 20  20 69 66 20 62 6c 6f 63  |         if bloc|
000009e0  6b 5b 69 5d 3c 3e 23 31  36 30 20 74 68 65 6e 0d  |k[i]<>#160 then.|
000009f0  0a 20 20 20 20 20 20 20  20 20 20 20 20 20 20 62  |.              b|
00000a00  6c 6f 63 6b 5b 69 5d 3a  3d 63 68 72 28 6f 72 64  |lock[i]:=chr(ord|
00000a10  28 62 6c 6f 63 6b 5b 69  5d 29 2d 31 32 38 29 3b  |(block[i])-128);|
00000a20  0d 0a 20 20 20 20 20 20  20 20 20 20 65 6e 64 3b  |..          end;|
00000a30  0d 0a 20 20 20 20 20 20  20 20 69 66 20 62 6c 6f  |..        if blo|
00000a40  63 6b 5b 69 5d 3d 23 31  33 20 74 68 65 6e 0d 0a  |ck[i]=#13 then..|
00000a50  20 20 20 20 20 20 20 20  20 20 62 65 67 69 6e 0d  |          begin.|
00000a60  0a 20 20 20 20 20 20 20  20 20 20 20 20 77 72 69  |.            wri|
00000a70  74 65 6c 6e 28 27 ae 27  29 3b 0d 0a 20 20 20 20  |teln('.');..    |
00000a80  20 20 20 20 20 20 20 20  6c 65 66 6d 61 72 3a 3d  |        lefmar:=|
00000a90  63 6f 75 6e 74 6c 65 66  74 28 73 75 63 63 28 69  |countleft(succ(i|
00000aa0  29 29 3b 0d 0a 20 20 20  20 20 20 20 20 20 20 20  |));..           |
00000ab0  20 73 63 72 6f 6c 6c 6c  69 6e 65 3b 0d 0a 20 20  | scrollline;..  |
00000ac0  20 20 20 20 20 20 20 20  65 6e 64 3b 0d 0a 20 20  |        end;..  |
00000ad0  20 20 20 20 20 20 69 66  20 62 6c 6f 63 6b 5b 69  |      if block[i|
00000ae0  5d 20 69 6e 20 5b 27 20  27 2e 2e 27 7e 27 5d 20  |] in [' '..'~'] |
00000af0  74 68 65 6e 0d 0a 20 20  20 20 20 20 20 20 20 20  |then..          |
00000b00  62 65 67 69 6e 0d 0a 20  20 20 20 20 20 20 20 20  |begin..         |
00000b10  20 20 20 77 72 69 74 65  28 62 6c 6f 63 6b 5b 69  |   write(block[i|
00000b20  5d 29 3b 0d 0a 20 20 20  20 20 20 20 20 20 20 20  |]);..           |
00000b30  20 70 61 67 65 5b 6d 61  78 6c 69 6e 65 73 5d 3a  | page[maxlines]:|
00000b40  3d 70 61 67 65 5b 6d 61  78 6c 69 6e 65 73 5d 2b  |=page[maxlines]+|
00000b50  62 6c 6f 63 6b 5b 69 5d  3b 0d 0a 20 20 20 20 20  |block[i];..     |
00000b60  20 20 20 20 20 65 6e 64  3b 0d 0a 20 20 20 20 20  |     end;..     |
00000b70  20 65 6e 64 3b 0d 0a 20  20 65 6e 64 3b 0d 0a 0d  | end;..  end;...|
00000b80  0a 70 72 6f 63 65 64 75  72 65 20 6f 70 65 6e 66  |.procedure openf|
00000b90  69 6c 65 3b 0d 0a 20 20  76 61 72 0d 0a 20 20 20  |ile;..  var..   |
00000ba0  20 63 3a 63 68 61 72 3b  0d 0a 20 20 62 65 67 69  | c:char;..  begi|
00000bb0  6e 0d 0a 20 20 20 20 77  72 69 74 65 28 27 45 6e  |n..    write('En|
00000bc0  74 65 72 20 69 6e 70 75  74 20 66 69 6c 65 20 6e  |ter input file n|
00000bd0  61 6d 65 3a 20 27 29 3b  0d 0a 20 20 20 20 72 65  |ame: ');..    re|
00000be0  61 64 6c 6e 28 69 6e 6e  61 6d 65 29 3b 0d 0a 20  |adln(inname);.. |
00000bf0  20 20 20 61 73 73 69 67  6e 28 66 69 6c 2c 69 6e  |   assign(fil,in|
00000c00  6e 61 6d 65 29 3b 0d 0a  20 20 20 20 72 65 73 65  |name);..    rese|
00000c10  74 28 66 69 6c 29 3b 0d  0a 20 20 20 20 77 72 69  |t(fil);..    wri|
00000c20  74 65 6c 6e 3b 0d 0a 20  20 20 20 77 72 69 74 65  |teln;..    write|
00000c30  28 27 52 65 66 6f 72 6d  20 70 61 72 61 67 72 61  |('Reform paragra|
00000c40  70 68 73 3f 20 27 29 3b  0d 0a 20 20 20 20 72 65  |phs? ');..    re|
00000c50  61 64 6c 6e 28 63 29 3b  0d 0a 20 20 20 20 72 65  |adln(c);..    re|
00000c60  66 6f 72 6d 3a 3d 75 70  63 61 73 65 28 63 29 3d  |form:=upcase(c)=|
00000c70  27 59 27 3b 0d 0a 20 20  20 20 77 72 69 74 65 6c  |'Y';..    writel|
00000c80  6e 3b 0d 0a 20 20 65 6e  64 3b 0d 0a 0d 0a 70 72  |n;..  end;....pr|
00000c90  6f 63 65 64 75 72 65 20  72 65 6d 6f 76 65 63 72  |ocedure removecr|
00000ca0  73 3b 0d 0a 20 20 76 61  72 0d 0a 20 20 20 20 69  |s;..  var..    i|
00000cb0  2c 6a 2c 6c 6d 2c 6c 65  66 6d 61 72 3a 69 6e 74  |,j,lm,lefmar:int|
00000cc0  65 67 65 72 3b 0d 0a 20  20 62 65 67 69 6e 0d 0a  |eger;..  begin..|
00000cd0  20 20 20 20 69 3a 3d 31  3b 0d 0a 20 20 20 20 69  |    i:=1;..    i|
00000ce0  66 20 6e 65 77 20 74 68  65 6e 0d 0a 20 20 20 20  |f new then..    |
00000cf0  20 20 6c 65 66 6d 61 72  3a 3d 63 6f 75 6e 74 6c  |  lefmar:=countl|
00000d00  65 66 74 28 69 29 3b 0d  0a 20 20 20 20 72 65 70  |eft(i);..    rep|
00000d10  65 61 74 0d 0a 20 20 20  20 20 20 77 68 69 6c 65  |eat..      while|
00000d20  20 62 6c 6f 63 6b 5b 69  5d 3c 3e 23 31 33 20 64  | block[i]<>#13 d|
00000d30  6f 0d 0a 20 20 20 20 20  20 20 20 69 3a 3d 73 75  |o..        i:=su|
00000d40  63 63 28 69 29 3b 0d 0a  20 20 20 20 20 20 6c 6d  |cc(i);..      lm|
00000d50  3a 3d 63 6f 75 6e 74 6c  65 66 74 28 73 75 63 63  |:=countleft(succ|
00000d60  28 69 29 29 3b 0d 0a 20  20 20 20 20 20 69 66 20  |(i));..      if |
00000d70  62 6c 6f 63 6b 5b 73 75  63 63 28 69 29 5d 3d 27  |block[succ(i)]='|
00000d80  11 27 20 74 68 65 6e 0d  0a 20 20 20 20 20 20 20  |.' then..       |
00000d90  20 62 65 67 69 6e 0d 0a  20 20 20 20 20 20 20 20  | begin..        |
00000da0  20 20 72 65 66 6f 72 6d  3a 3d 6e 6f 74 20 72 65  |  reform:=not re|
00000db0  66 6f 72 6d 3b 0d 0a 20  20 20 20 20 20 20 20 20  |form;..         |
00000dc0  20 62 6c 6f 63 6b 5b 73  75 63 63 28 69 29 5d 3a  | block[succ(i)]:|
00000dd0  3d 23 30 3b 0d 0a 20 20  20 20 20 20 20 20 20 20  |=#0;..          |
00000de0  6c 6d 3a 3d 63 6f 75 6e  74 6c 65 66 74 28 69 2b  |lm:=countleft(i+|
00000df0  32 29 3b 0d 0a 20 20 20  20 20 20 20 20 65 6e 64  |2);..        end|
00000e00  3b 0d 0a 20 20 20 20 20  20 69 66 20 28 6c 6d 3c  |;..      if (lm<|
00000e10  3d 6c 65 66 6d 61 72 29  20 61 6e 64 20 28 62 6c  |=lefmar) and (bl|
00000e20  6f 63 6b 5b 73 75 63 63  28 69 29 5d 3c 3e 23 31  |ock[succ(i)]<>#1|
00000e30  33 29 20 61 6e 64 20 28  62 6c 6f 63 6b 5b 70 72  |3) and (block[pr|
00000e40  65 64 28 69 29 5d 3c 3e  23 31 33 29 0d 0a 20 20  |ed(i)]<>#13)..  |
00000e50  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000e60  20 20 20 20 61 6e 64 20  72 65 66 6f 72 6d 20 74  |    and reform t|
00000e70  68 65 6e 0d 0a 20 20 20  20 20 20 20 20 62 65 67  |hen..        beg|
00000e80  69 6e 0d 0a 20 20 20 20  20 20 20 20 20 20 62 6c  |in..          bl|
00000e90  6f 63 6b 5b 69 5d 3a 3d  27 20 27 3b 0d 0a 20 20  |ock[i]:=' ';..  |
00000ea0  20 20 20 20 20 20 20 20  69 66 20 6c 6d 3c 3e 30  |        if lm<>0|
00000eb0  20 74 68 65 6e 0d 0a 20  20 20 20 20 20 20 20 20  | then..         |
00000ec0  20 20 20 66 6f 72 20 6a  3a 3d 73 75 63 63 28 69  |   for j:=succ(i|
00000ed0  29 20 74 6f 20 69 2b 6c  6d 20 64 6f 0d 0a 20 20  |) to i+lm do..  |
00000ee0  20 20 20 20 20 20 20 20  20 20 20 20 62 6c 6f 63  |            bloc|
00000ef0  6b 5b 6a 5d 3a 3d 23 30  3b 0d 0a 20 20 20 20 20  |k[j]:=#0;..     |
00000f00  20 20 20 65 6e 64 3b 0d  0a 20 20 20 20 20 20 6c  |   end;..      l|
00000f10  65 66 6d 61 72 3a 3d 6c  6d 3b 0d 0a 20 20 20 20  |efmar:=lm;..    |
00000f20  20 20 69 3a 3d 73 75 63  63 28 69 29 3b 0d 0a 20  |  i:=succ(i);.. |
00000f30  20 20 20 75 6e 74 69 6c  20 28 69 3e 3d 73 74 6f  |   until (i>=sto|
00000f40  70 29 3b 0d 0a 20 20 65  6e 64 3b 0d 0a 0d 0a 70  |p);..  end;....p|
00000f50  72 6f 63 65 64 75 72 65  20 69 6e 73 65 72 74 6c  |rocedure insertl|
00000f60  66 73 3b 0d 0a 20 20 76  61 72 0d 0a 20 20 20 20  |fs;..  var..    |
00000f70  69 2c 6a 2c 63 6f 75 6e  74 2c 6c 65 66 6d 61 72  |i,j,count,lefmar|
00000f80  3a 69 6e 74 65 67 65 72  3b 0d 0a 20 20 63 6f 6e  |:integer;..  con|
00000f90  73 74 0d 0a 20 20 20 20  6c 65 66 74 6f 76 65 72  |st..    leftover|
00000fa0  73 3a 69 6e 74 65 67 65  72 3d 31 3b 0d 0a 20 20  |s:integer=1;..  |
00000fb0  62 65 67 69 6e 0d 0a 20  20 20 20 69 3a 3d 6c 65  |begin..    i:=le|
00000fc0  66 74 6f 76 65 72 73 3b  0d 0a 20 20 20 20 69 66  |ftovers;..    if|
00000fd0  20 6e 65 77 20 74 68 65  6e 0d 0a 20 20 20 20 20  | new then..     |
00000fe0  20 6c 65 66 6d 61 72 3a  3d 63 6f 75 6e 74 6c 65  | lefmar:=countle|
00000ff0  66 74 28 69 29 3b 0d 0a  20 20 20 20 6e 65 77 3a  |ft(i);..    new:|
00001000  3d 66 61 6c 73 65 3b 0d  0a 20 20 20 20 72 65 70  |=false;..    rep|
00001010  65 61 74 0d 0a 20 20 20  20 20 20 63 6f 75 6e 74  |eat..      count|
00001020  3a 3d 30 3b 0d 0a 20 20  20 20 20 20 69 66 20 62  |:=0;..      if b|
00001030  6c 6f 63 6b 5b 69 5d 3c  3e 23 31 33 20 74 68 65  |lock[i]<>#13 the|
00001040  6e 0d 0a 20 20 20 20 20  20 20 20 63 6f 75 6e 74  |n..        count|
00001050  3a 3d 63 6f 75 6e 74 2b  6c 65 66 6d 61 72 3b 0d  |:=count+lefmar;.|
00001060  0a 20 20 20 20 20 20 72  65 70 65 61 74 0d 0a 20  |.      repeat.. |
00001070  20 20 20 20 20 20 20 69  66 20 62 6c 6f 63 6b 5b  |       if block[|
00001080  69 5d 3c 3e 23 30 20 74  68 65 6e 20 63 6f 75 6e  |i]<>#0 then coun|
00001090  74 3a 3d 73 75 63 63 28  63 6f 75 6e 74 29 3b 0d  |t:=succ(count);.|
000010a0  0a 20 20 20 20 20 20 20  20 69 3a 3d 73 75 63 63  |.        i:=succ|
000010b0  28 69 29 3b 0d 0a 20 20  20 20 20 20 75 6e 74 69  |(i);..      unti|
000010c0  6c 20 28 63 6f 75 6e 74  3e 36 33 29 20 6f 72 20  |l (count>63) or |
000010d0  28 62 6c 6f 63 6b 5b 69  5d 20 69 6e 20 5b 23 31  |(block[i] in [#1|
000010e0  33 2c 23 32 36 5d 29 3b  0d 0a 20 20 20 20 20 20  |3,#26]);..      |
000010f0  63 61 73 65 20 62 6c 6f  63 6b 5b 69 5d 20 6f 66  |case block[i] of|
00001100  0d 0a 20 20 20 20 20 20  20 20 23 31 33 3a 6c 65  |..        #13:le|
00001110  66 6d 61 72 3a 3d 63 6f  75 6e 74 6c 65 66 74 28  |fmar:=countleft(|
00001120  73 75 63 63 28 69 29 29  3b 0d 0a 20 20 20 20 20  |succ(i));..     |
00001130  20 20 20 23 32 36 3a 3b  0d 0a 20 20 20 20 20 20  |   #26:;..      |
00001140  20 20 65 6c 73 65 0d 0a  20 20 20 20 20 20 20 20  |  else..        |
00001150  20 20 62 65 67 69 6e 0d  0a 20 20 20 20 20 20 20  |  begin..       |
00001160  20 20 20 20 20 77 68 69  6c 65 20 6e 6f 74 20 28  |     while not (|
00001170  62 6c 6f 63 6b 5b 69 5d  20 69 6e 20 5b 27 20 27  |block[i] in [' '|
00001180  2c 23 31 33 2c 23 31 32  38 2e 2e 23 32 35 35 5d  |,#13,#128..#255]|
00001190  29 20 64 6f 0d 0a 20 20  20 20 20 20 20 20 20 20  |) do..          |
000011a0  20 20 20 20 69 3a 3d 70  72 65 64 28 69 29 3b 0d  |    i:=pred(i);.|
000011b0  0a 20 20 20 20 20 20 20  20 20 20 20 20 62 6c 6f  |.            blo|
000011c0  63 6b 5b 69 5d 3a 3d 63  68 72 28 6f 72 64 28 62  |ck[i]:=chr(ord(b|
000011d0  6c 6f 63 6b 5b 69 5d 29  2b 31 32 38 29 0d 0a 20  |lock[i])+128).. |
000011e0  20 20 20 20 20 20 20 20  20 65 6e 64 0d 0a 20 20  |         end..  |
000011f0  20 20 20 20 65 6e 64 3b  0d 0a 20 20 20 20 75 6e  |    end;..    un|
00001200  74 69 6c 20 28 69 3e 73  74 6f 70 29 20 61 6e 64  |til (i>stop) and|
00001210  20 28 62 6c 6f 63 6b 5b  69 5d 20 69 6e 20 5b 23  | (block[i] in [#|
00001220  31 33 2c 23 31 32 38 2e  2e 23 32 35 35 5d 29 3b  |13,#128..#255]);|
00001230  0d 0a 20 20 20 20 6c 65  66 74 6f 76 65 72 73 3a  |..    leftovers:|
00001240  3d 69 2d 73 74 6f 70 3b  0d 0a 20 20 65 6e 64 3b  |=i-stop;..  end;|
00001250  0d 0a 0d 0a 62 65 67 69  6e 0d 0a 20 20 77 72 69  |....begin..  wri|
00001260  74 65 6c 6e 28 6c 73 74  2c 69 6e 69 74 73 74 72  |teln(lst,initstr|
00001270  69 6e 67 29 3b 0d 0a 20  20 6e 65 77 3a 3d 74 72  |ing);..  new:=tr|
00001280  75 65 3b 0d 0a 20 20 63  6c 72 73 63 72 3b 0d 0a  |ue;..  clrscr;..|
00001290  20 20 6f 70 65 6e 66 69  6c 65 3b 0d 0a 20 20 6d  |  openfile;..  m|
000012a0  61 78 6c 69 6e 65 73 3a  3d 30 3b 0d 0a 20 20 73  |axlines:=0;..  s|
000012b0  63 72 6f 6c 6c 6c 69 6e  65 3b 0d 0a 20 20 72 65  |crollline;..  re|
000012c0  70 65 61 74 0d 0a 20 20  20 20 72 65 61 64 61 62  |peat..    readab|
000012d0  75 6e 63 68 3b 0d 0a 20  20 20 20 72 65 6d 6f 76  |unch;..    remov|
000012e0  65 63 72 73 3b 0d 0a 20  20 20 20 69 6e 73 65 72  |ecrs;..    inser|
000012f0  74 6c 66 73 3b 0d 0a 20  20 20 20 64 69 73 70 6c  |tlfs;..    displ|
00001300  61 79 62 75 6e 63 68 3b  0d 0a 20 20 75 6e 74 69  |aybunch;..  unti|
00001310  6c 20 65 6f 66 28 66 69  6c 29 3b 0d 0a 20 20 63  |l eof(fil);..  c|
00001320  6c 6f 73 65 28 66 69 6c  29 3b 0d 0a 65 6e 64 2e  |lose(fil);..end.|
00001330  0d 0a 0d 0a 0d 0a 1a                              |.......|
00001337
18-06-89/TL\PAS.m0
18-06-89/TL\PAS.m1
18-06-89/TL\PAS.m2
18-06-89/TL\PAS.m4
18-06-89/TL\PAS.m5