Category : Miscellaneous Language Source Code
Archive   : ADATUT12.ZIP
Filename : TXT2DAT.ADA

 
Output of file : TXT2DAT.ADA contained in archive : ADATUT12.ZIP
-- TXT2DAT.ADA Ver. 1.20 21-DEC-1988
-- Copyright 1988 John J. Herro
-- Software Innovations Technology
-- 1083 Mandarin Drive NE, Palm Bay, FL 32905-4706 (407)951-0233
--
-- After running DAT2TXT on a PC and transferring the resulting TUTOR.TXT
-- file to another computer, compile and run this program on the other
-- computer to create ADA-TUTR.DAT on that machine.
--
with DIRECT_IO, TEXT_IO;
procedure TXT2DAT is
subtype BLOCK_SUBTYPE is STRING(1 .. 64);
package RANDOM_IO is new DIRECT_IO(BLOCK_SUBTYPE);
TEXT_FILE : TEXT_IO.FILE_TYPE; -- The input file.
DATA_FILE : RANDOM_IO.FILE_TYPE; -- The output file.
OK : BOOLEAN := TRUE; -- True when both files open successfully.
INPUT : STRING(1 .. 65); -- Line of text read from TUTOR.TXT.
LEN : INTEGER; -- Length of line read from TUTOR.TXT.
LEGAL_NOTE : constant STRING := " Copyright 1988 John J. Herro ";
-- LEGAL_NOTE isn't used by the program, but it causes
-- the compiler to place this string in the .EXE file.
begin
begin
TEXT_IO.OPEN(TEXT_FILE, MODE => TEXT_IO.IN_FILE, NAME => "TUTOR.TXT");
exception
when TEXT_IO.NAME_ERROR =>
TEXT_IO.PUT_LINE(
"I'm sorry. The file TUTOR.TXT seems to be missing.");
OK := FALSE;
end;
begin
RANDOM_IO.CREATE(DATA_FILE, RANDOM_IO.OUT_FILE, NAME => "ADA-TUTR.DAT");
exception
when others =>
TEXT_IO.PUT_LINE("I'm sorry. I can't seem to create ADA-TUTR.DAT.");
TEXT_IO.PUT_LINE("Perhaps that file already exists?");
OK := FALSE;
end;
if OK then
while not TEXT_IO.END_OF_FILE(TEXT_FILE) loop
TEXT_IO.GET_LINE(FILE => TEXT_FILE, ITEM => INPUT, LAST => LEN);
INPUT(LEN + 1 .. 64) := (others => ' ');
-- In case trailing blanks were lost when transferring TUTOR.TXT.
for I in 1 .. LEN loop
if INPUT(I) = '~' then
INPUT(I) := ASCII.CR;
elsif INPUT(I) = '^' then
INPUT(I) := ASCII.LF;
end if;
end loop;
RANDOM_IO.WRITE(DATA_FILE, ITEM => INPUT(1 .. 64));
end loop;
TEXT_IO.CLOSE(TEXT_FILE);
RANDOM_IO.CLOSE(DATA_FILE);
TEXT_IO.PUT_LINE("ADA-TUTR.DAT created.");
end if;
end TXT2DAT;


  3 Responses to “Category : Miscellaneous Language Source Code
Archive   : ADATUT12.ZIP
Filename : TXT2DAT.ADA

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/