Home » CEEFAX disks » telesoftware14.adl » 24-02-89/ArcDisp
24-02-89/ArcDisp
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 » telesoftware14.adl |
Filename: | 24-02-89/ArcDisp |
Read OK: | ✔ |
File size: | 0AE0 bytes |
Load address: | FFFFFB41 |
Exec address: | 2B816C |
File contents
10REM > ArcDisplay Weather Satellite image display program for Archimedes 20REM (C) BBC tv and Peter Vince 22/2/89 30 40REM Ensure there is room on disc for final image 50*CREATE"a" A0B8 60*DELETE"a" 70 80ON ERROR ON ERROR OFF:PRINTTAB(0,28);:REPORT:GOTO670 90DIM Z% 360 100 110MODE 14 120*CAT 130INPUT'"Enter name of file to be drawn ";infyl$ 140S%=OPENINinfyl$ 150IF S%=0 THEN PRINT"Data file """;infyl$;""" not found.";CHR$7:END 160 170PTR#S%=2 180IF BGET#S%<3 OR BGET#S%-&84 OR BGET#S%-16 THEN format=FALSE ELSE format=TRUE 190width=BGET#S% + BGET#S%*256 200height=BGET#S% + BGET#S%*256 210IF (width=276 AND height=200) OR (width=320 AND height=256) OR (width=360 AND height=288) THEN size=TRUE ELSE size=FALSE 220PTR#S%=17 230IF format=FALSE OR size=FALSE OR (BGET#S%AND7)-3 THEN PRINT'"Data using incompatible format -"'"cannot decode."';CHR$7:CLOSE#S%:END 240 250message%=BGET#S% 260IF message% AND 1 THEN ident$=FNgetstring ELSE GOTO290 270IF message% AND 16 THEN PRINT'new$ 280 290creditflag%=BGET#S% 300IF creditflag% AND 1 THEN credit$=FNgetstring ELSE credit$="" : GOTO330 310IF creditflag% AND 16 THEN PRINT'new$ 320 330IF ((message% OR creditflag%) AND 16) = 0 THEN 370 340PRINT'"Press the Space-Bar to continue..."; 350REPEAT UNTIL GET=32 360 370MODE9 380VDU23,1,0;0;0;0; 390 400REM Define colours for 'grey scale' 410FOR I%=0 TO 15 420C%=I%*16 430COLOUR I%,C%,C%,C% 440NEXT 450COLOUR 12 460 470COLOUR 132:CLS 480IF (width=276 AND height=200) THEN window=TRUE ELSE window=FALSE : GOTO510 490VDU 24,72;96;1207;927; :GCOL0,134:CLG 500VDU 24,88;112;1191;911;:GCOL0,132:CLG:VDU26 510PROCcaptions 520PTR#S%=0 : PTR#S% = BGET#S% + BGET#S%*256 530 540FOR V% = (0-window*112) TO (1020+window*112) STEP 4 550MOVE (1280+window*88),V% 560PROCfill 570FOR I%=P% TO (360+window*80):Z%?I%=C%:NEXT 580FOR P%=0 TO (319+window*44) 590GCOL0,Z%?P% 600PLOT65,-4,0 610NEXT 620NEXT 630 640OSCLI("SCREENSAVE "+outfyl$) 650PRINTTAB(1,30)" Saved as ";outfyl$;" " 660IF window THEN PRINTTAB(39); 670VDU23,1,1;0;0;0; 31,0,31 680CLOSE#0 690END 700 710DEFPROCfill 720B%=&FF:P%=0 730REPEAT 740O%=B% 750B%=BGET#S% 760C%=B%AND15 770W%=B%DIV16 780IF C%=O% THEN UNTIL TRUE : ENDPROC 790IF W%=15 THEN W%=BGET#S%+15 : IF W%=270 THEN W%=BGET#S%+270 800FOR P%=P% TO P%+W% : Z%?P%=C% : NEXT 810UNTIL FALSE 820 830DEFPROCcaptions 840GCOL0,12:GCOL0,132 850source$=FNgetstring 860rad%=BGET#S% 870date$=FNgetstring 880time$=FNgetstring 890 900IF (message%AND12)=0 THEN 1000 910IF (message%AND3)<>3 THEN title$=source$ ELSE title$=ident$ 920IF message%AND2 THEN 970 930 940IF rad%>0 AND rad%<5 THEN title$=title$+" "+MID$(" IRVZWVRD",rad%*2,2) 950IF date$<>"" THEN title$=title$+" "+LEFT$(date$,2)+"/"+MID$(date$,3,2)+"/"+MID$(date$,5) 960IF time$<>"" THEN title$=title$+" "+LEFT$(time$,2)+":"+MID$(time$,3) 970MOVE 640-LEN(title$)*16,924+window*864 980VDU 5 : PRINT title$ 990 1000IF credit$="" OR (creditflag%AND7)<>7 THEN 1040 1010MOVE 640-LEN(credit$)*16,988 1020VDU 5 : PRINT credit$ 1030 1040jd$=FNgetstring 1050IF jd$="" THEN outfyl$="NODATE" : GOTO1080 1060outfyl$=LEFT$(jd$,7)+MID$(jd$,9,2) 1070 1080area=BGET#S% AND &7F 1090IF area>0 AND area<5 THEN prefix$=MID$("waeb",area,1) ELSE prefix$="?" 1100outfyl$=prefix$+outfyl$ 1110 1120VDU 4, 23,1,0;0;0;0; 1130ENDPROC 1140 1150DEFFNgetstring 1160new$="" 1170REPEAT 1180C%=BGET#S% 1190IF C% THEN new$=new$+CHR$C% 1200UNTIL C%=0 1210=new$
K� > ArcDisplay Weather Satellite image display program for Archimedes +� (C) BBC tv and Peter Vince 22/2/89 (2� Ensure there is room on disc for final image 2*CREATE"a" A0B8 <*DELETE"a" F P� � � � �:�0,28);:�:�t^B Z� Z% 360 d n� 14 x*CAT �.�'"Enter name of file to be drawn ";infyl$ �S%=�infyl$ �8� S%=0 � �"Data file """;infyl$;""" not found.";�7:� � � �#S%=2 �7� �#S%<3 � �#S%-&84 � �#S%-16 � format=� � format=� �width=�#S% + �#S%*256 �height=�#S% + �#S%*256 �f� (width=276 � height=200) � (width=320 � height=256) � (width=360 � height=288) � size=� � size=� ��#S%=17 �g� format=� � size=� � (�#S%�7)-3 � �'"Data using incompatible format -"'"cannot decode."';�7:�#S%:� � �message%=�#S% /� message% � 1 � ident$=�getstring � �TbA � message% � 16 � �'new$ "creditflag%=�#S% ,@� creditflag% � 1 � credit$=�getstring � credit$="" : �DJA 6� creditflag% � 16 � �'new$ @ J0� ((message% � creditflag%) � 16) = 0 � �DrA T+�'"Press the Space-Bar to continue..."; ^� � �=32 h r�9 |�23,1,0;0;0;0; � �%� Define colours for 'grey scale' �� I%=0 � 15 �C%=I%*16 �� I%,C%,C%,C% �� �� 12 � �� 132:� �<� (width=276 � height=200) � window=� � window=� : �d~A �"� 24,72;96;1207;927; :�0,134:� �&� 24,88;112;1191;911;:�0,132:�:�26 � �captions #�#S%=0 : �#S% = �#S% + �#S%*256 1� V% = (0-window*112) � (1020+window*112) � 4 &� (1280+window*88),V% 0 �fill :(� I%=P% � (360+window*80):Z%?I%=C%:� D� P%=0 � (319+window*44) N�0,Z%?P% X�65,-4,0 b� l� v ��("SCREENSAVE "+outfyl$) �#�1,30)" Saved as ";outfyl$;" " �� window � �39); ��23,1,1;0;0;0; 31,0,31 ��#0 �� � � ��fill �B%=&FF:P%=0 �� � O%=B% �B%=�#S% �C%=B%�15 W%=B%�16 � C%=O% � � � : � 1� W%=15 � W%=�#S%+15 : � W%=270 � W%=�#S%+270 "� P%=P% � P%+W% : Z%?P%=C% : � *� � 4 >��captions H�0,12:�0,132 Rsource$=�getstring \ rad%=�#S% fdate$=�getstring ptime$=�getstring z �� (message%�12)=0 � �dhC �6� (message%�3)<>3 � title$=source$ � title$=ident$ �� message%�2 � �dJC � �@� rad%>0 � rad%<5 � title$=title$+" "+�" IRVZWVRD",rad%*2,2) �L� date$<>"" � title$=title$+" "+�date$,2)+"/"+�date$,3,2)+"/"+�date$,5) �;� time$<>"" � title$=title$+" "+�time$,2)+":"+�time$,3) �%� 640-�(title$)*16,924+window*864 �� 5 : � title$ � �,� credit$="" � (creditflag%�7)<>7 � �TPD �� 640-�(credit$)*16,988 �� 5 : � credit$ jd$=�getstring '� jd$="" � outfyl$="NODATE" : �TxD $outfyl$=�jd$,7)+�jd$,9,2) . 8area=�#S% � &7F B=� area>0 � area<5 � prefix$=�"waeb",area,1) � prefix$="?" Loutfyl$=prefix$+outfyl$ V `� 4, 23,1,0;0;0;0; j� t ~ݤgetstring �new$="" �� �C%=�#S% �� C% � new$=new$+�C% � � C%=0 � =new$ �
00000000 0d 00 0a 4b f4 20 3e 20 41 72 63 44 69 73 70 6c |...K. > ArcDispl| 00000010 61 79 20 20 20 57 65 61 74 68 65 72 20 53 61 74 |ay Weather Sat| 00000020 65 6c 6c 69 74 65 20 69 6d 61 67 65 20 64 69 73 |ellite image dis| 00000030 70 6c 61 79 20 70 72 6f 67 72 61 6d 20 66 6f 72 |play program for| 00000040 20 41 72 63 68 69 6d 65 64 65 73 0d 00 14 2b f4 | Archimedes...+.| 00000050 20 28 43 29 20 42 42 43 20 74 76 20 20 61 6e 64 | (C) BBC tv and| 00000060 20 20 50 65 74 65 72 20 56 69 6e 63 65 20 20 32 | Peter Vince 2| 00000070 32 2f 32 2f 38 39 0d 00 1e 05 20 0d 00 28 32 f4 |2/2/89.... ..(2.| 00000080 20 45 6e 73 75 72 65 20 74 68 65 72 65 20 69 73 | Ensure there is| 00000090 20 72 6f 6f 6d 20 6f 6e 20 64 69 73 63 20 66 6f | room on disc fo| 000000a0 72 20 66 69 6e 61 6c 20 69 6d 61 67 65 0d 00 32 |r final image..2| 000000b0 13 2a 43 52 45 41 54 45 22 61 22 20 41 30 42 38 |.*CREATE"a" A0B8| 000000c0 0d 00 3c 0e 2a 44 45 4c 45 54 45 22 61 22 0d 00 |..<.*DELETE"a"..| 000000d0 46 05 20 0d 00 50 1e ee 20 85 20 ee 20 85 20 87 |F. ..P.. . . . .| 000000e0 3a f1 8a 30 2c 32 38 29 3b 3a f6 3a e5 8d 74 5e |:..0,28);:.:..t^| 000000f0 42 0d 00 5a 0c de 20 5a 25 20 33 36 30 0d 00 64 |B..Z.. Z% 360..d| 00000100 05 20 0d 00 6e 08 eb 20 31 34 0d 00 78 08 2a 43 |. ..n.. 14..x.*C| 00000110 41 54 0d 00 82 2e e8 27 22 45 6e 74 65 72 20 6e |AT.....'"Enter n| 00000120 61 6d 65 20 6f 66 20 66 69 6c 65 20 74 6f 20 62 |ame of file to b| 00000130 65 20 64 72 61 77 6e 20 22 3b 69 6e 66 79 6c 24 |e drawn ";infyl$| 00000140 0d 00 8c 0e 53 25 3d 8e 69 6e 66 79 6c 24 0d 00 |....S%=.infyl$..| 00000150 96 38 e7 20 53 25 3d 30 20 8c 20 f1 22 44 61 74 |.8. S%=0 . ."Dat| 00000160 61 20 66 69 6c 65 20 22 22 22 3b 69 6e 66 79 6c |a file """;infyl| 00000170 24 3b 22 22 22 20 6e 6f 74 20 66 6f 75 6e 64 2e |$;""" not found.| 00000180 22 3b bd 37 3a e0 0d 00 a0 05 20 0d 00 aa 0a cf |";.7:..... .....| 00000190 23 53 25 3d 32 0d 00 b4 37 e7 20 9a 23 53 25 3c |#S%=2...7. .#S%<| 000001a0 33 20 84 20 9a 23 53 25 2d 26 38 34 20 84 20 9a |3 . .#S%-&84 . .| 000001b0 23 53 25 2d 31 36 20 8c 20 66 6f 72 6d 61 74 3d |#S%-16 . format=| 000001c0 a3 20 8b 20 66 6f 72 6d 61 74 3d b9 0d 00 be 19 |. . format=.....| 000001d0 77 69 64 74 68 3d 9a 23 53 25 20 2b 20 9a 23 53 |width=.#S% + .#S| 000001e0 25 2a 32 35 36 0d 00 c8 1a 68 65 69 67 68 74 3d |%*256....height=| 000001f0 9a 23 53 25 20 2b 20 9a 23 53 25 2a 32 35 36 0d |.#S% + .#S%*256.| 00000200 00 d2 66 e7 20 28 77 69 64 74 68 3d 32 37 36 20 |..f. (width=276 | 00000210 80 20 68 65 69 67 68 74 3d 32 30 30 29 20 84 20 |. height=200) . | 00000220 28 77 69 64 74 68 3d 33 32 30 20 80 20 68 65 69 |(width=320 . hei| 00000230 67 68 74 3d 32 35 36 29 20 84 20 28 77 69 64 74 |ght=256) . (widt| 00000240 68 3d 33 36 30 20 80 20 68 65 69 67 68 74 3d 32 |h=360 . height=2| 00000250 38 38 29 20 8c 20 73 69 7a 65 3d b9 20 8b 20 73 |88) . size=. . s| 00000260 69 7a 65 3d a3 0d 00 dc 0b cf 23 53 25 3d 31 37 |ize=......#S%=17| 00000270 0d 00 e6 67 e7 20 66 6f 72 6d 61 74 3d a3 20 84 |...g. format=. .| 00000280 20 73 69 7a 65 3d a3 20 84 20 28 9a 23 53 25 80 | size=. . (.#S%.| 00000290 37 29 2d 33 20 8c 20 f1 27 22 44 61 74 61 20 75 |7)-3 . .'"Data u| 000002a0 73 69 6e 67 20 69 6e 63 6f 6d 70 61 74 69 62 6c |sing incompatibl| 000002b0 65 20 66 6f 72 6d 61 74 20 2d 22 27 22 63 61 6e |e format -"'"can| 000002c0 6e 6f 74 20 64 65 63 6f 64 65 2e 22 27 3b bd 37 |not decode."';.7| 000002d0 3a d9 23 53 25 3a e0 0d 00 f0 05 20 0d 00 fa 11 |:.#S%:..... ....| 000002e0 6d 65 73 73 61 67 65 25 3d 9a 23 53 25 0d 01 04 |message%=.#S%...| 000002f0 2f e7 20 6d 65 73 73 61 67 65 25 20 80 20 31 20 |/. message% . 1 | 00000300 8c 20 69 64 65 6e 74 24 3d a4 67 65 74 73 74 72 |. ident$=.getstr| 00000310 69 6e 67 20 20 8b 20 e5 8d 54 62 41 0d 01 0e 1c |ing . ..TbA....| 00000320 e7 20 6d 65 73 73 61 67 65 25 20 80 20 31 36 20 |. message% . 16 | 00000330 8c 20 f1 27 6e 65 77 24 0d 01 18 05 20 0d 01 22 |. .'new$.... .."| 00000340 14 63 72 65 64 69 74 66 6c 61 67 25 3d 9a 23 53 |.creditflag%=.#S| 00000350 25 0d 01 2c 40 e7 20 63 72 65 64 69 74 66 6c 61 |%..,@. creditfla| 00000360 67 25 20 80 20 31 20 8c 20 63 72 65 64 69 74 24 |g% . 1 . credit$| 00000370 3d a4 67 65 74 73 74 72 69 6e 67 20 20 8b 20 63 |=.getstring . c| 00000380 72 65 64 69 74 24 3d 22 22 20 3a 20 e5 8d 44 4a |redit$="" : ..DJ| 00000390 41 0d 01 36 1f e7 20 63 72 65 64 69 74 66 6c 61 |A..6.. creditfla| 000003a0 67 25 20 80 20 31 36 20 8c 20 f1 27 6e 65 77 24 |g% . 16 . .'new$| 000003b0 0d 01 40 05 20 0d 01 4a 30 e7 20 28 28 6d 65 73 |..@. ..J0. ((mes| 000003c0 73 61 67 65 25 20 84 20 63 72 65 64 69 74 66 6c |sage% . creditfl| 000003d0 61 67 25 29 20 80 20 31 36 29 20 3d 20 30 20 8c |ag%) . 16) = 0 .| 000003e0 20 8d 44 72 41 0d 01 54 2b f1 27 22 50 72 65 73 | .DrA..T+.'"Pres| 000003f0 73 20 74 68 65 20 53 70 61 63 65 2d 42 61 72 20 |s the Space-Bar | 00000400 74 6f 20 63 6f 6e 74 69 6e 75 65 2e 2e 2e 22 3b |to continue...";| 00000410 0d 01 5e 0c f5 20 fd 20 a5 3d 33 32 0d 01 68 05 |..^.. . .=32..h.| 00000420 20 0d 01 72 06 eb 39 0d 01 7c 12 ef 32 33 2c 31 | ..r..9..|..23,1| 00000430 2c 30 3b 30 3b 30 3b 30 3b 0d 01 86 05 20 0d 01 |,0;0;0;0;.... ..| 00000440 90 25 f4 20 44 65 66 69 6e 65 20 63 6f 6c 6f 75 |.%. Define colou| 00000450 72 73 20 66 6f 72 20 27 67 72 65 79 20 73 63 61 |rs for 'grey sca| 00000460 6c 65 27 0d 01 9a 0f e3 20 49 25 3d 30 20 b8 20 |le'..... I%=0 . | 00000470 31 35 0d 01 a4 0c 43 25 3d 49 25 2a 31 36 0d 01 |15....C%=I%*16..| 00000480 ae 11 fb 20 49 25 2c 43 25 2c 43 25 2c 43 25 0d |... I%,C%,C%,C%.| 00000490 01 b8 05 ed 0d 01 c2 08 fb 20 31 32 0d 01 cc 05 |......... 12....| 000004a0 20 0d 01 d6 0b fb 20 31 33 32 3a db 0d 01 e0 3c | ..... 132:....<| 000004b0 e7 20 28 77 69 64 74 68 3d 32 37 36 20 80 20 68 |. (width=276 . h| 000004c0 65 69 67 68 74 3d 32 30 30 29 20 8c 20 77 69 6e |eight=200) . win| 000004d0 64 6f 77 3d b9 20 8b 20 77 69 6e 64 6f 77 3d a3 |dow=. . window=.| 000004e0 20 3a 20 e5 8d 64 7e 41 0d 01 ea 22 ef 20 32 34 | : ..d~A...". 24| 000004f0 2c 37 32 3b 39 36 3b 31 32 30 37 3b 39 32 37 3b |,72;96;1207;927;| 00000500 20 3a e6 30 2c 31 33 34 3a da 0d 01 f4 26 ef 20 | :.0,134:....&. | 00000510 32 34 2c 38 38 3b 31 31 32 3b 31 31 39 31 3b 39 |24,88;112;1191;9| 00000520 31 31 3b 3a e6 30 2c 31 33 32 3a da 3a ef 32 36 |11;:.0,132:.:.26| 00000530 0d 01 fe 0d f2 63 61 70 74 69 6f 6e 73 0d 02 08 |.....captions...| 00000540 23 cf 23 53 25 3d 30 20 3a 20 cf 23 53 25 20 3d |#.#S%=0 : .#S% =| 00000550 20 9a 23 53 25 20 2b 20 9a 23 53 25 2a 32 35 36 | .#S% + .#S%*256| 00000560 0d 02 12 05 20 0d 02 1c 31 e3 20 56 25 20 3d 20 |.... ...1. V% = | 00000570 28 30 2d 77 69 6e 64 6f 77 2a 31 31 32 29 20 b8 |(0-window*112) .| 00000580 20 28 31 30 32 30 2b 77 69 6e 64 6f 77 2a 31 31 | (1020+window*11| 00000590 32 29 20 88 20 34 0d 02 26 19 ec 20 28 31 32 38 |2) . 4..&.. (128| 000005a0 30 2b 77 69 6e 64 6f 77 2a 38 38 29 2c 56 25 0d |0+window*88),V%.| 000005b0 02 30 09 f2 66 69 6c 6c 0d 02 3a 28 e3 20 49 25 |.0..fill..:(. I%| 000005c0 3d 50 25 20 b8 20 28 33 36 30 2b 77 69 6e 64 6f |=P% . (360+windo| 000005d0 77 2a 38 30 29 3a 5a 25 3f 49 25 3d 43 25 3a ed |w*80):Z%?I%=C%:.| 000005e0 0d 02 44 1c e3 20 50 25 3d 30 20 b8 20 28 33 31 |..D.. P%=0 . (31| 000005f0 39 2b 77 69 6e 64 6f 77 2a 34 34 29 0d 02 4e 0c |9+window*44)..N.| 00000600 e6 30 2c 5a 25 3f 50 25 0d 02 58 0c f0 36 35 2c |.0,Z%?P%..X..65,| 00000610 2d 34 2c 30 0d 02 62 05 ed 0d 02 6c 05 ed 0d 02 |-4,0..b....l....| 00000620 76 05 20 0d 02 80 1c ff 28 22 53 43 52 45 45 4e |v. .....("SCREEN| 00000630 53 41 56 45 20 22 2b 6f 75 74 66 79 6c 24 29 0d |SAVE "+outfyl$).| 00000640 02 8a 23 f1 8a 31 2c 33 30 29 22 20 53 61 76 65 |..#..1,30)" Save| 00000650 64 20 61 73 20 22 3b 6f 75 74 66 79 6c 24 3b 22 |d as ";outfyl$;"| 00000660 20 22 0d 02 94 15 e7 20 77 69 6e 64 6f 77 20 8c | "..... window .| 00000670 20 f1 8a 33 39 29 3b 0d 02 9e 1a ef 32 33 2c 31 | ..39);.....23,1| 00000680 2c 31 3b 30 3b 30 3b 30 3b 20 33 31 2c 30 2c 33 |,1;0;0;0; 31,0,3| 00000690 31 0d 02 a8 07 d9 23 30 0d 02 b2 05 e0 0d 02 bc |1.....#0........| 000006a0 05 20 0d 02 c6 0a dd f2 66 69 6c 6c 0d 02 d0 0f |. ......fill....| 000006b0 42 25 3d 26 46 46 3a 50 25 3d 30 0d 02 da 05 f5 |B%=&FF:P%=0.....| 000006c0 0d 02 e4 09 4f 25 3d 42 25 0d 02 ee 0b 42 25 3d |....O%=B%....B%=| 000006d0 9a 23 53 25 0d 02 f8 0c 43 25 3d 42 25 80 31 35 |.#S%....C%=B%.15| 000006e0 0d 03 02 0c 57 25 3d 42 25 81 31 36 0d 03 0c 15 |....W%=B%.16....| 000006f0 e7 20 43 25 3d 4f 25 20 8c 20 fd 20 b9 20 3a 20 |. C%=O% . . . : | 00000700 e1 0d 03 16 31 e7 20 57 25 3d 31 35 20 8c 20 57 |....1. W%=15 . W| 00000710 25 3d 9a 23 53 25 2b 31 35 20 3a 20 e7 20 57 25 |%=.#S%+15 : . W%| 00000720 3d 32 37 30 20 8c 20 57 25 3d 9a 23 53 25 2b 32 |=270 . W%=.#S%+2| 00000730 37 30 0d 03 20 22 e3 20 50 25 3d 50 25 20 b8 20 |70.. ". P%=P% . | 00000740 50 25 2b 57 25 20 3a 20 5a 25 3f 50 25 3d 43 25 |P%+W% : Z%?P%=C%| 00000750 20 3a 20 ed 0d 03 2a 07 fd 20 a3 0d 03 34 05 20 | : ...*.. ...4. | 00000760 0d 03 3e 0e dd f2 63 61 70 74 69 6f 6e 73 0d 03 |..>...captions..| 00000770 48 10 e6 30 2c 31 32 3a e6 30 2c 31 33 32 0d 03 |H..0,12:.0,132..| 00000780 52 16 73 6f 75 72 63 65 24 3d a4 67 65 74 73 74 |R.source$=.getst| 00000790 72 69 6e 67 0d 03 5c 0d 72 61 64 25 3d 9a 23 53 |ring..\.rad%=.#S| 000007a0 25 0d 03 66 14 64 61 74 65 24 3d a4 67 65 74 73 |%..f.date$=.gets| 000007b0 74 72 69 6e 67 0d 03 70 14 74 69 6d 65 24 3d a4 |tring..p.time$=.| 000007c0 67 65 74 73 74 72 69 6e 67 0d 03 7a 05 20 0d 03 |getstring..z. ..| 000007d0 84 1c e7 20 28 6d 65 73 73 61 67 65 25 80 31 32 |... (message%.12| 000007e0 29 3d 30 20 8c 20 8d 64 68 43 0d 03 8e 36 e7 20 |)=0 . .dhC...6. | 000007f0 28 6d 65 73 73 61 67 65 25 80 33 29 3c 3e 33 20 |(message%.3)<>3 | 00000800 8c 20 74 69 74 6c 65 24 3d 73 6f 75 72 63 65 24 |. title$=source$| 00000810 20 8b 20 74 69 74 6c 65 24 3d 69 64 65 6e 74 24 | . title$=ident$| 00000820 0d 03 98 17 e7 20 6d 65 73 73 61 67 65 25 80 32 |..... message%.2| 00000830 20 8c 20 8d 64 4a 43 0d 03 a2 05 20 0d 03 ac 40 | . .dJC.... ...@| 00000840 e7 20 72 61 64 25 3e 30 20 80 20 72 61 64 25 3c |. rad%>0 . rad%<| 00000850 35 20 8c 20 74 69 74 6c 65 24 3d 74 69 74 6c 65 |5 . title$=title| 00000860 24 2b 22 20 22 2b c1 22 20 49 52 56 5a 57 56 52 |$+" "+." IRVZWVR| 00000870 44 22 2c 72 61 64 25 2a 32 2c 32 29 0d 03 b6 4c |D",rad%*2,2)...L| 00000880 e7 20 64 61 74 65 24 3c 3e 22 22 20 8c 20 74 69 |. date$<>"" . ti| 00000890 74 6c 65 24 3d 74 69 74 6c 65 24 2b 22 20 20 22 |tle$=title$+" "| 000008a0 2b c0 64 61 74 65 24 2c 32 29 2b 22 2f 22 2b c1 |+.date$,2)+"/"+.| 000008b0 64 61 74 65 24 2c 33 2c 32 29 2b 22 2f 22 2b c1 |date$,3,2)+"/"+.| 000008c0 64 61 74 65 24 2c 35 29 0d 03 c0 3b e7 20 74 69 |date$,5)...;. ti| 000008d0 6d 65 24 3c 3e 22 22 20 8c 20 74 69 74 6c 65 24 |me$<>"" . title$| 000008e0 3d 74 69 74 6c 65 24 2b 22 20 22 2b c0 74 69 6d |=title$+" "+.tim| 000008f0 65 24 2c 32 29 2b 22 3a 22 2b c1 74 69 6d 65 24 |e$,2)+":"+.time$| 00000900 2c 33 29 0d 03 ca 25 ec 20 36 34 30 2d a9 28 74 |,3)...%. 640-.(t| 00000910 69 74 6c 65 24 29 2a 31 36 2c 39 32 34 2b 77 69 |itle$)*16,924+wi| 00000920 6e 64 6f 77 2a 38 36 34 0d 03 d4 12 ef 20 35 20 |ndow*864..... 5 | 00000930 3a 20 f1 20 74 69 74 6c 65 24 0d 03 de 05 20 0d |: . title$.... .| 00000940 03 e8 2c e7 20 63 72 65 64 69 74 24 3d 22 22 20 |..,. credit$="" | 00000950 84 20 28 63 72 65 64 69 74 66 6c 61 67 25 80 37 |. (creditflag%.7| 00000960 29 3c 3e 37 20 8c 20 8d 54 50 44 0d 03 f2 1b ec |)<>7 . .TPD.....| 00000970 20 36 34 30 2d a9 28 63 72 65 64 69 74 24 29 2a | 640-.(credit$)*| 00000980 31 36 2c 39 38 38 0d 03 fc 13 ef 20 35 20 3a 20 |16,988..... 5 : | 00000990 f1 20 63 72 65 64 69 74 24 0d 04 06 05 20 0d 04 |. credit$.... ..| 000009a0 10 12 6a 64 24 3d a4 67 65 74 73 74 72 69 6e 67 |..jd$=.getstring| 000009b0 0d 04 1a 27 e7 20 6a 64 24 3d 22 22 20 8c 20 6f |...'. jd$="" . o| 000009c0 75 74 66 79 6c 24 3d 22 4e 4f 44 41 54 45 22 20 |utfyl$="NODATE" | 000009d0 3a 20 e5 8d 54 78 44 0d 04 24 1d 6f 75 74 66 79 |: ..TxD..$.outfy| 000009e0 6c 24 3d c0 6a 64 24 2c 37 29 2b c1 6a 64 24 2c |l$=.jd$,7)+.jd$,| 000009f0 39 2c 32 29 0d 04 2e 05 20 0d 04 38 13 61 72 65 |9,2).... ..8.are| 00000a00 61 3d 9a 23 53 25 20 80 20 26 37 46 0d 04 42 3d |a=.#S% . &7F..B=| 00000a10 e7 20 61 72 65 61 3e 30 20 80 20 61 72 65 61 3c |. area>0 . area<| 00000a20 35 20 8c 20 70 72 65 66 69 78 24 3d c1 22 77 61 |5 . prefix$=."wa| 00000a30 65 62 22 2c 61 72 65 61 2c 31 29 20 8b 20 70 72 |eb",area,1) . pr| 00000a40 65 66 69 78 24 3d 22 3f 22 0d 04 4c 1b 6f 75 74 |efix$="?"..L.out| 00000a50 66 79 6c 24 3d 70 72 65 66 69 78 24 2b 6f 75 74 |fyl$=prefix$+out| 00000a60 66 79 6c 24 0d 04 56 05 20 0d 04 60 16 ef 20 34 |fyl$..V. ..`.. 4| 00000a70 2c 20 32 33 2c 31 2c 30 3b 30 3b 30 3b 30 3b 0d |, 23,1,0;0;0;0;.| 00000a80 04 6a 05 e1 0d 04 74 05 20 0d 04 7e 0f dd a4 67 |.j....t. ..~...g| 00000a90 65 74 73 74 72 69 6e 67 0d 04 88 0b 6e 65 77 24 |etstring....new$| 00000aa0 3d 22 22 0d 04 92 05 f5 0d 04 9c 0b 43 25 3d 9a |="".........C%=.| 00000ab0 23 53 25 0d 04 a6 18 e7 20 43 25 20 8c 20 6e 65 |#S%..... C% . ne| 00000ac0 77 24 3d 6e 65 77 24 2b bd 43 25 0d 04 b0 0a fd |w$=new$+.C%.....| 00000ad0 20 43 25 3d 30 0d 04 ba 09 3d 6e 65 77 24 0d ff | C%=0....=new$..| 00000ae0