summaryrefslogtreecommitdiff
path: root/appl/examples/minitel/screen.b
blob: 4313d48d477a376de1bc4b71eeed031a71a2a6c6 (plain)
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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
#
# Occasional references are made to sections and tables in the
# France Telecom Minitel specification
#
# Copyright © 1998 Vita Nuova Limited.  All rights reserved.
#

include "mdisplay.m";

disp: MDisplay;

Rect, Point		: import Draw;

# display character sets
videotex, semigraphic, french, american	:import MDisplay;

# display foreground colour attributes
fgBlack, fgBlue, fgRed, fgMagenta,
fgGreen, fgCyan, fgYellow, fgWhite		:import MDisplay;

# display background colour attributes
bgBlack, bgBlue, bgRed, bgMagenta,
bgGreen, bgCyan, bgYellow, bgWhite	:import MDisplay;

fgMask, bgMask : import MDisplay;

# display formatting attributes
attrB, attrW, attrH, attrP, attrF, attrC, attrL, attrD	:import MDisplay;

# Initial attributes - white on black
ATTR0:	con fgWhite|bgBlack&~(attrB|attrW|attrH|attrP|attrF|attrC|attrL|attrD);

# special features
Cursor, Scroll, Insert
	: con (1 << iota);

# Screen states
Sstart, Sss2, Sesc, Srepeat, Saccent, Scsi0, Scsi1, Sus0, Sus1, Sskip,
Siso2022, Siso6429, Stransparent, Sdrcs, Sconceal, Swaitfor
		: con iota;

# Filter states
FSstart, FSesc, FSsep, FS6429, FS2022: con iota;

Screen: adt {
	m:		ref Module;			# common attributes
	ctxt:		ref Draw->Context;
	in:		chan of ref Event;		# from the terminal

	image:	ref Draw->Image;		# Mdisplay image
	dispr40, dispr80: Rect;			# 40 and 80 column display region
	oldtmode:	int;					# old terminal mode
	rows:	int;					# number of screen rows (25 for minitel)
	cols:		int;					# number of screen cols (40 or 80)
	cset:		int;					# current display charset

	pos:		Point;				# current writing position (x:1, y:0)
	attr:		int;					# display attribute set
	spec:	int;					# special features
	savepos:	Point;				# `pos' before moving to row zero
	saveattr:	int;					# `attr' before moving to row zero
	savech:	int;					# last character `Put'
	delimit:	int;					# attr changed, make next space a delimiter
	cursor:	int;					# update cursor soon

	state:	int;					# recogniser state
	a0:		int;					# recogniser arg 0
	a1:		int;					# recogniser arg 1

	fstate: int;						# filter state
	fsaved: array of byte;			# filter `chars so far'
	badp: int;						# filter because of bad parameter

	ignoredata: int;					# ignore data from

	init:		fn(s: self ref Screen, ctxt: ref Draw->Context, r40, r80: Rect);
	reset:	fn(s: self ref Screen);
	run:		fn(s: self ref Screen);
	quit:		fn(s: self ref Screen);
	setmode:	fn(s: self ref Screen, tmode: int);
	runstate:	fn(s: self ref Screen, data: array of byte);
	put:		fn(s: self ref Screen, str: string);
	msg:		fn(s: self ref Screen, str: string);
};

Screen.init(s: self ref Screen, ctxt: ref Draw->Context, r40, r80: Rect)
{
	disp =  load MDisplay MDisplay->PATH;
	if(disp == nil)
		fatal("can't load the display module: "+MDisplay->PATH);

	s.m = ref Module(0, 0);
	s.ctxt = ctxt;
	s.dispr40 = r40;
	s.dispr80 = r80;
	s.oldtmode = -1;
	s.in = chan of ref Event;
	disp->Init(s.ctxt);
	s.reset();
	s.pos = Point(1, 1);
	s.savech = 0;
	s.cursor = 1;
	s.ignoredata = 0;
	s.fstate = FSstart;
}

Screen.reset(s: self ref Screen)
{
	s.setmode(T.mode);
	indicators(s);
	s.state = Sstart;
}

Screen.run(s: self ref Screen)
{
Runloop:
	for(;;) alt {
	ev := <- s.in =>
		pick e := ev {
		Equit =>
			break Runloop;
		Eproto =>
			case e.cmd {
			Creset =>
				s.reset();
			Cproto =>
				case e.a0 {
				START =>
					case e.a1 {
					SCROLLING =>
						s.spec |= Scroll;
					}
				STOP =>
					case e.a1 {
					SCROLLING =>
						s.spec &= ~Scroll;
					}
				MIXED =>
					case e.a1 {
					MIXED1 =>		# videotex -> mixed
						if(T.mode != Mixed)
							s.setmode(Mixed);
						T.mode = Mixed;
					MIXED2 =>		# mixed -> videotex
						if(T.mode != Videotex)
							s.setmode(Videotex);
						T.mode = Videotex;
					}
				}
			Ccursor =>			# update the cursor soon
				s.cursor = 1;
			Cindicators =>
				indicators(s);
			Cscreenoff =>
				s.ignoredata = 1;
				s.state = Sstart;
			Cscreenon =>
				s.ignoredata = 0;
			* => break;
			}
		Edata =>
			if(s.ignoredata)
				continue;
			oldpos := s.pos;
			oldspec := s.spec;
			da := filter(s, e.data);
			while(len da > 0) {
				s.runstate(da[0]); 
				da = da[1:];
			}

			if(s.pos.x != oldpos.x || s.pos.y != oldpos.y || (s.spec&Cursor)^(oldspec&Cursor))
				s.cursor = 1;		
			if(s.cursor) {
				if(s.spec & Cursor)
					disp->Cursor(s.pos);
				else
					disp->Cursor(Point(-1,-1));
				s.cursor = 0;
				refresh();
			} else if(e.from == Mkeyb)
				refresh();
		}
	}
	send(nil);	
}

# row0 indicators	(1.2.2)
indicators(s: ref Screen)
{
	col: int;
	ch: string;

	attr := fgWhite|bgBlack;
	case T.state {
	Local =>
		ch = "F";
	Connecting =>
		ch = "C";
		attr |= attrF;
	Online =>
		ch = "C";
	}
	if(s.cols == 40) {
		col = 39;
		attr |= attrP;
	} else
		col = 77;
	disp->Put(ch, Point(col, 0), videotex, attr, 0);
}

Screen.setmode(s: self ref Screen, tmode: int)
{
	dispr: Rect;
	delims: int;
	ulheight: int;
	s.rows = 25;
	s.spec = 0;
	s.attr = s.saveattr = ATTR0;
	s.delimit = 0;
	s.pos = s.savepos = Point(-1, -1);
	s.cursor = 1;
	case tmode {
	Videotex =>
		s.cset = videotex;
		s.cols = 40;
		dispr = s.dispr40;
		delims = 1;
		ulheight = 2;
		s.pos = Point(1,1);
		s.spec &= ~Cursor;
	Mixed =>
#		s.cset  = french;
		s.cset  = videotex;
		s.cols = 80;
		dispr = s.dispr80;
		delims = 0;
		ulheight = 1;
		s.spec |= Scroll;
		s.pos = Point(1, 1);
	Ascii =>
		s.cset = french;
		s.cols = 80;
		dispr = s.dispr80;
		delims = 0;
		ulheight = 1;
	};
	if(tmode != s.oldtmode) {
		(nil, s.image) = disp->Mode(((0,0),(0,0)), 0, 0, 0, 0, nil);
		T.layout(s.cols);
		fontpath := sprint("/fonts/minitel/f%dx%d", s.cols, s.rows);
		(nil, s.image) = disp->Mode(dispr, s.cols, s.rows, ulheight, delims, fontpath);
		T.setkbmode(tmode);
	}
	disp->Reveal(0);	# concealing enabled (1.2.2)
	disp->Cursor(Point(-1,-1));
	s.oldtmode = tmode;
}

Screen.quit(nil: self ref Screen)
{
	disp->Quit();
}

Screen.runstate(s: self ref Screen, data: array of byte)
{
	while(len data > 0)
		case T.mode {
		Videotex =>
			data = vstate(s, data);
		Mixed =>
			data = mstate(s, data);
		Ascii =>
			data = astate(s, data);
		};
}

# process a byte from set C0
vc0(s: ref Screen, ch: int)
{
	case ch {
#	SOH =>							# not in spec, wait for 16r04
#		s.a0 = 16r04;
#		s.state = Swaitfor;
	SS2 =>
		s.state = Sss2;
	SYN =>
		s.state = Sss2;					# not in the spec, but acts like SS2
	ESC =>
		s.state = Sesc;
	SO =>
		s.cset = semigraphic;
		s.attr &= ~(attrH|attrW|attrP);	# 1.2.4.2
		s.attr &= ~attrL;				# 1.2.4.3
	SI =>
		s.cset = videotex;
		s.attr &= ~attrL;				# 1.2.4.3
		s.attr &= ~(attrH|attrW|attrP);			# some servers seem to assume this too
	SEP or SS3 =>					# 1.2.7
		s.state = Sskip;
	BS =>
		if(s.pos.x == 1) {
			if(s.pos.y == 0)
				break;
			if(s.pos.y == 1)
				s.pos.y = s.rows - 1;
			else
				s.pos.y -= 1;
			s.pos.x = s.cols;
		} else
			s.pos.x -= 1;
	HT =>
		if(s.pos.x == s.cols) {
			if(s.pos.y == 0)
				break;
			if(s.pos.y == s.rows - 1)
				s.pos.y = 1;
			else
				s.pos.y += 1;
			s.pos.x = 1;
		} else
			s.pos.x += 1;
	LF =>
		if(s.pos.y == s.rows - 1)
			if(s.spec&Scroll)
				scroll(1, 1);
			else
				s.pos.y = 1;
		else if(s.pos.y == 0) {		# restore attributes on leaving row zero
			s.pos = s.savepos;
			s.attr = s.saveattr;
		} else
			s.pos.y += 1;
	VT =>
		if(s.pos.y == 1)
			if(s.spec&Scroll)
				scroll(1, -1);
			else
				s.pos.y = s.rows - 1;
		else if(s.pos.y == 0)
			break;
		else
			s.pos.y -= 1;
	CR =>
		s.pos.x = 1;
	CAN =>
		cols := s.cols - s.pos.x + 1;
		disp->Put(dup(' ', cols), Point(s.pos.x,s.pos.y), s.cset, s.attr, 0);
	US =>
		# expect US row, col
		s.state = Sus0;
	FF =>
		s.cset = videotex;
		s.attr = ATTR0;
		s.pos = Point(1,1);
		s.spec &= ~Cursor;
		s.cursor = 1;
		clear(s);
	RS =>
		s.cset = videotex;
		s.attr = ATTR0;
		s.pos = Point(1,1);
		s.spec &= ~Cursor;
		s.cursor = 1;
	CON =>
		s.spec |= Cursor;
		s.cursor = 1;
	COFF =>
		s.spec &= ~Cursor;
		s.cursor = 1;
	REP =>
		# repeat
		s.state = Srepeat;
	NUL =>
		# padding character - ignore, but may appear anywhere
		;
	BEL =>
		# ah ...
		;
	}
}

# process a byte from the set c1 - introduced by the ESC character
vc1(s: ref Screen, ch: int)
{
	if(ISC0(ch)) {
		s.state = Sstart;
		vc0(s, ch);
		return;
	}
	if(ch >= 16r20 && ch <= 16r2f) {
		if(ch == 16r25)
			s.state = Stransparent;
		else if(ch == 16r23)
			s.state = Sconceal;
		else
			s.state = Siso2022;
		s.a0 = s.a1 = 0;
		return;
	}

	fg := bg := -1;
	case ch {
	16r35 or
	16r36 or
	16r37 =>
		s.state = Sskip;				# skip next char unless C0
		return;
		
	16r5b =>						# CSI sequence
		s.a0 = s.a1 = 0;
		if(s.pos.y > 0)				# 1.2.5.2
			s.state = Scsi0;
		return;

	# foreground colour	
	16r40 =>	fg = fgBlack;
	16r41 =>	fg = fgRed;
	16r42 =>	fg = fgGreen;
	16r43 =>	fg = fgYellow;
	16r44 =>	fg = fgBlue;
	16r45 =>	fg = fgMagenta;
	16r46 =>	fg = fgCyan;
	16r47 =>	fg = fgWhite;

	# background colour
	16r50 =>	bg = bgBlack;
	16r51 =>	bg = bgRed;
	16r52 =>	bg = bgGreen;
	16r53 =>	bg = bgYellow;
	16r54 =>	bg = bgBlue;
	16r55 =>	bg = bgMagenta;
	16r56 =>	bg = bgCyan;
	16r57 =>	bg = bgWhite;

	# flashing
	16r48 =>	s.attr |= attrF;
	16r49 =>	s.attr &= ~attrF;

	# conceal (serial attribute)
	16r58 =>	s.attr |= attrC;
			s.delimit = 1;
	16r5f =>	s.attr &= ~attrC;
			s.delimit = 1;

	# start lining (+separated graphics) (serial attribute)
	16r5a =>	s.attr |= attrL;
			s.delimit = 1;
	16r59 =>	s.attr &= ~attrL;
			s.delimit = 1;

	# reverse polarity
	16r5d =>	s.attr |= attrP;
	16r5c =>	s.attr &= ~attrP;

	# normal size
	16r4c =>
		s.attr &= ~(attrW|attrH);

	# double height
	16r4d =>
		if(s.pos.y < 2)
			break;
		s.attr &= ~(attrW|attrH);
		s.attr |= attrH;

	# double width
	16r4e =>
		if(s.pos.y < 1)
			break;
		s.attr &= ~(attrW|attrH);
		s.attr |= attrW;

	# double size
	16r4f =>
		if(s.pos.y < 2)
			break;
		s.attr |= (attrW|attrH);
	}
	if(fg >= 0) {
		s.attr &= ~fgMask;
		s.attr |= fg;
	}
	if(bg >= 0) {
		s.attr &= ~bgMask;
		s.attr |= bg;
		s.delimit = 1;
	}
	s.state = Sstart;
}


# process a SS2 character
vss2(s: ref Screen, ch: int)
{
	if(ISC0(ch)) {
		s.state = Sstart;
		vc0(s, ch);
		return;
	}
	case ch {
	16r41 or	# grave				# 5.1.2 
	16r42 or	# acute
	16r43 or	# circumflex
	16r48 or	# umlaut
	16r4b =>	# cedilla
		s.a0 = ch;
		s.state = Saccent;
		return;
	16r23 =>	ch = '£';				# Figure 2.8
	16r24 =>	ch = '$';
	16r26 =>	ch = '#';
	16r27 =>	ch = '§';
	16r2c =>	ch = 16rc3;	# '←';
	16r2d =>	ch = 16rc0;	# '↑';
	16r2e =>	ch = 16rc4;	# '→';
	16r2f =>	ch = 16rc5;	# '↓';
	16r30 =>	ch = '°';
	16r31 =>	ch = '±';
	16r38 =>	ch = '÷';
	16r3c =>	ch = '¼';
	16r3d =>	ch = '½';
	16r3e =>	ch = '¾';
	16r7a =>	ch = 'œ';
	16r6a =>	ch = 'Œ';
	16r7b =>	ch = 'ß';
	}
	s.put(tostr(ch));
	s.savech = ch;
	s.state = Sstart;
}

# process CSI functions
vcsi(s: ref Screen, ch: int)
{
	case s.state {
	Scsi0 =>
		case ch {
		# move cursor up n rows, stop at top of screen
		'A' =>
			s.pos.y -= s.a0;
			if(s.pos.y < 1)
				s.pos.y = 1;

		# move cursor down n rows, stop at bottom of screen
		'B' =>
			s.pos.y += s.a0;
			if(s.pos.y >= s.rows)
				s.pos.y = s.rows - 1;

		# move cursor n columns right, stop at edge of screen
		'C' =>
			s.pos.x += s.a0;
			if(s.pos.x > s.cols)
				s.pos.x = s.cols;

		# move cursor n columns left, stop at edge of screen
		'D' =>
			s.pos.x -= s.a0;
			if(s.pos.x < 1)
				s.pos.x = 1;

		# direct cursor addressing
		';' =>	
			s.state = Scsi1;
			return;

		'J' =>
			case s.a0 {
			# clears from the cursor to the end of the screen inclusive
			0 =>
				rowclear(s.pos.y, s.pos.x, s.cols);
				for(r:=s.pos.y+1; r<s.rows; r++)
					rowclear(r, 1, s.cols);
			# clears from the beginning of the screen to the cursor inclusive
			1 =>
				for(r:=1; r<s.pos.y; r++)
					rowclear(r, 1, s.cols);
				rowclear(s.pos.y, 1, s.pos.x);
			# clears the entire screen
			2 =>
				clear(s);
			}

		'K' => 
			case s.a0 {
			# clears from the cursor to the end of the row
			0 =>	rowclear(s.pos.y, s.pos.x, s.cols);

			# clears from the start of the row to the cursor
			1 => rowclear(s.pos.y, 1, s.pos.x);

			# clears the entire row in which the cursor is positioned
			2 => rowclear(s.pos.y, 1, s.cols);
			}

		# deletes n characters from cursor position
		'P' =>
			rowclear(s.pos.y, s.pos.x, s.pos.x+s.a0-1);

		# inserts n characters from cursor position
		'@' =>
			disp->Put(dup(' ', s.a0), Point(s.pos.x,s.pos.y), s.cset, s.attr, 1);

		# starts cursor insert mode
		'h' =>
			if(s.a0 == 4)
				s.spec |= Insert;

		'l' =>		# ends cursor insert mode
			if(s.a0 == 4)
				s.spec &= ~Insert;

		# deletes n rows from cursor row
		'M' =>
			scroll(s.pos.y, s.a0);

	 	# inserts n rows from cursor row
		'L' =>
			scroll(s.pos.y, -1*s.a0);
		}
		s.state = Sstart;
	Scsi1 =>
		case ch {
		# direct cursor addressing
		'H' =>
			if(s.a0 > 0 && s.a0 < s.rows && s.a1 > 0 && s.a1 <= s.cols)
				s.pos = Point(s.a1, s.a0);
		}
		s.state = Sstart;
	}
}

# Screen state - Videotex mode
vstate(s: ref Screen, data: array of byte): array of byte
{
	i: int;
	for(i = 0; i < len data; i++) {
		ch := int data[i];
		
		if(debug['s']) {
			cs:="";
			if(s.cset==videotex) cs = "v"; else cs="s";
			fprint(stderr, "vstate %d, %ux (%c) %.4ux %.4ux %s (%d,%d)\n", s.state, ch, ch, s.attr, s.spec, cs, s.pos.y, s.pos.x);
		}
		case s.state {
		Sstart =>
			if(ISG0(ch) || ch == SP) {
				n := 0;
				str := "";
				while(i < len data) {
					ch = int data[i];
					if(ISG0(ch) || ch == SP)
						str[n++] = int data[i++];
					else {
						i--;
						break;
					}
				}
				if(n > 0) {
					if(debug['s'])
						fprint(stderr, "vstate puts(%s)\n", str);
					s.put(str);
					s.savech = str[n-1];
				}
			} else if(ISC0(ch))
				vc0(s, ch);
			else if(ch == DEL) {
				if(s.cset == semigraphic)
					ch = 16r5f;
				s.put(tostr(ch));
				s.savech = ch;
			}
		Sss2 =>
			if(ch == NUL)			# 1.2.6.1
				continue;
			if(s.cset == semigraphic)	# 1.2.3.4
				continue;
			vss2(s, ch);
		Sesc =>
			if(ch == NUL)
				continue;
			vc1(s, ch);
		Srepeat =>
			# byte from `columns' 4 to 7 gives repeat count on 6 bits
			# of the last `Put' character
			if(ch == NUL)
				continue;
			if(ISC0(ch)) {
				s.state = Sstart;
				vc0(s, ch);
				break;
			}
			if(ch >= 16r40 && ch <= 16r7f)
				s.put(dup(s.savech, (ch-16r40))); 
			s.state = Sstart;
		Saccent =>
			case s.a0 {
			16r41 =>	# grave
				case ch {
				'a' =>	ch = 'à';
				'e' =>	ch = 'è';
				'u' =>	ch = 'ù';
				}
			16r42 =>	# acute
				case ch {
				'e' =>	ch = 'é';
				}
			16r43 =>	# circumflex
				case ch {
				'a' =>	ch = 'â';
				'e' =>	ch = 'ê';
				'i' =>		ch = 'î';
				'o' =>	ch = 'ô';
				'u' =>	ch = 'û';
				}
			16r48 =>	# umlaut
				case ch {
				'a' =>	ch = 'ä';
				'e' =>	ch = 'ë';
				'i' =>		ch = 'ï';
				'o' =>	ch = 'ö';
				'u' =>	ch = 'ü';
				}
			16r4b =>	# cedilla
				case ch {
				'c' =>	ch = 'ç';
				}
			}
			s.put(tostr(ch));
			s.savech = ch;
			s.state = Sstart;
		Scsi0 =>
			if(ch >= 16r30 && ch <= 16r39) {
				s.a0 *= 10;
				s.a0 += (ch - 16r30);
			} else if((ch >= 16r20 && ch <= 16r29) || (ch >= 16r3a && ch <= 16r3f)) {	# 1.2.7
				s.a0 = 0;
				s.state = Siso6429;
			} else
				vcsi(s, ch);
		Scsi1 =>
			if(ch >= 16r30 && ch <= 16r39) {
				s.a1 *= 10;
				s.a1 += (ch - 16r30);
			} else
				vcsi(s, ch);
		Sus0 =>
			if(ch == 16r23) {		# start DRCS definition
				s.state = Sdrcs;
				s.a0 = 0;
				break;
			}
			if(ch >= 16r40 && ch < 16r80)
				s.a0 = (ch - 16r40);
			else if(ch >= 16r30 && ch <= 16r32)
				s.a0 = (ch - 16r30);
			else
				s.a0 = -1;
			s.state = Sus1;
		Sus1 =>
			if(ch >= 16r40 && ch < 16r80)
				s.a1 = (ch - 16r40);
			else if(ch >= 16r30 && ch <= 16r39) {
				s.a1 = (ch - 16r30);
				s.a0 = s.a0*10 + s.a1;	# shouldn't be used any more
				s.a1 = 1;
			} else
				s.a1 = -1;
			# US row, col : this is how you get to row zero
			if(s.a0 >= 0 && s.a0 < s.rows && s.a1 > 0 && s.a1 <= s.cols) {
				if(s.a0 == 0 && s.pos.y > 0) {
					s.savepos = s.pos;
					s.saveattr = s.attr;
				}
				s.pos = Point(s.a1, s.a0);
				s.delimit = 0;		# 1.2.5.3, don't reset serial attributes
				s.attr = ATTR0;
				s.cset = videotex;
			}
			s.state = Sstart;
		Sskip =>
			# swallow the next character unless from C0
			s.state = Sstart;
			if(ISC0(ch))
				vc0(s, ch);
		Swaitfor =>
			# ignore characters until the character in a0 inclusive
			if(ch == s.a0)
				s.state = Sstart;
		Siso2022 =>
			# 1.2.7
			# swallow (upto) 3 characters from column 2,
			# then 1 character from columns 3 to 7
			if(ch == NUL)
				continue;
			if(ISC0(ch)) {
				s.state = Sstart;
				vc0(s, ch);
				break;
			}
			s.a0++;
			if(s.a0 <= 3) {
				if(ch >= 16r20 && ch <= 16r2f)
					break;
			}
			if (s.a0 <= 4 && ch >= 16r30 && ch <= 16r7f) {
					s.state = Sstart;
					break;
			}
			s.state = Sstart;
			s.put(tostr(DEL));
		Siso6429 =>
			# 1.2.7
			# swallow characters from column 3,
			# or column 2, then 1 from column 4 to 7
			if(ISC0(ch)) {
				s.state = Sstart;
				vc0(s, ch);
				break;
			}
			if(ch >= 16r20 && ch <= 16r3f)
					break;
			if(ch >= 16r40 && ch <= 16r7f) {
				s.state = Sstart;
				break;
			}
			s.state = Sstart;	
			s.put(tostr(DEL));
		Stransparent =>
			# 1.2.7
			# ignore all codes until ESC, 25, 40 or ESC, 2F, 3F
			# progress in s.a0 and s.a1
			match := array [] of {
					array [] of { ESC,	16r25,	16r40 },
					array [] of { ESC,	16r2f,	16r3f },
			};
			if(ch == ESC) {
				s.a0 = s.a1 = 1;
				break;
			}
			if(ch == match[0][s.a0])
				s.a0++;
			else
				s.a0 = 0;
			if(ch == match[1][s.a1])
				s.a1++;
			else
				s.a1 = 0;
			if(s.a0 == 3 || s.a1 == 3)
				s.state = Sstart;
		Sdrcs =>
			if(s.a0 > 0) {			# fixed number of bytes to skip in a0
				s.a0--;
				if(s.a0 == 0) {
					s.state = Sstart;
					break;
				}
			} else if(ch == US)		# US XX YY - end of DRCS
				s.state = Sus0;
			else if(ch == 16r20)	# US 23 20 20 20 4[23] 49
				s.a0 = 4;
		Sconceal =>
			# 1.2.4.4
			# ESC 23 20 58 - Conceal fields
			# ESC 23 20 5F - Reveal fields
			# ESC 23 21 XX - Filter
			# progress in s.a0
			case s.a0 {
			0 =>
				if(ch == 16r20 || ch == 16r21)
					s.a0 = ch;
			16r20 =>
				case ch {
				16r58 =>
					disp->Reveal(0);
					disp->Refresh();
				16r5f =>
					disp->Reveal(1);
					disp->Refresh();
				}
				s.state = Sstart;
			16r21 =>
				s.state = Sstart;
			}
		}
	}
	if (i < len data)
		return data[i:];
	else
		return nil;
}

# Screen state - Mixed mode
mstate(s: ref Screen, data: array of byte): array of byte
{
	i: int;
Stateloop:
	for(i = 0; i < len data; i++) {
		ch := int data[i];
		
		if(debug['s']) {
			cs:="";
			if(s.cset==videotex) cs = "v"; else cs="s";
			fprint(stderr, "mstate %d, %ux (%c) %.4ux %.4ux %s (%d,%d)\n", s.state, ch, ch, s.attr, s.fstate, cs, s.pos.y, s.pos.x);
		}
		case s.state {
		Sstart =>
			if(ISG0(ch) || ch == SP) {
				n := 0;
				str := "";
				while(i < len data) {
					ch = int data[i];
					if(ISG0(ch) || ch == SP)
						str[n++] = int data[i++];
					else {
						i--;
						break;
					}
				}
				if(n > 0) {
					if(debug['s'])
						fprint(stderr, "mstate puts(%s)\n", str);
					s.put(str);
					s.savech = str[n-1];
				}
			} else if(ISC0(ch))
				mc0(s, ch);
			else if(ch == DEL) {
				if(s.cset == semigraphic)
					ch = 16r5f;
				s.put(tostr(ch));
				s.savech = ch;
			}
		Sesc =>
			if(ch == NUL)
				continue;
			mc1(s, ch);
		Scsi0 =>
			if(ch >= 16r30 && ch <= 16r39) {
				s.a0 *= 10;
				s.a0 += (ch - 16r30);
			} else if(ch == '?') {
				s.a0 = '?';
			} else 
				mcsi(s, ch);
			if(T.mode != Mixed)	# CSI ? { changes to Videotex mode
				break Stateloop;
		Scsi1 =>
			if(ch >= 16r30 && ch <= 16r39) {
				s.a1 *= 10;
				s.a1 += (ch - 16r30);
			} else
				mcsi(s, ch);
		Sus0 =>
			if(ch >= 16r40 && ch < 16r80)
				s.a0 = (ch - 16r40);
			else if(ch >= 16r30 && ch <= 16r32)
				s.a0 = (ch - 16r30);
			else
				s.a0 = -1;
			s.state = Sus1;
		Sus1 =>
			if(ch >= 16r40 && ch < 16r80)
				s.a1 = (ch - 16r40);
			else if(ch >= 16r30 && ch <= 16r39) {
				s.a1 = (ch - 16r30);
				s.a0 = s.a0*10 + s.a1;	# shouldn't be used any more
				s.a1 = 1;
			} else
				s.a1 = -1;
			# US row, col : this is how you get to row zero
			if(s.a0 >= 0 && s.a0 < s.rows && s.a1 > 0 && s.a1 <= s.cols) {
				if(s.a0 == 0 && s.pos.y > 0) {
					s.savepos = s.pos;
					s.saveattr = s.attr;
				}
				s.pos = Point(s.a1, s.a0);
				s.delimit = 0;		# 1.2.5.3, don't reset serial attributes
				s.attr = ATTR0;
				s.cset = videotex;
			}
			s.state = Sstart;
		Siso6429 =>
			# 1.2.7
			# swallow characters from column 3,
			# or column 2, then 1 from column 4 to 7
			if(ISC0(ch)) {
				s.state = Sstart;
				mc0(s, ch);
				break;
			}
			if(ch >= 16r20 && ch <= 16r3f)
					break;
			if(ch >= 16r40 && ch <= 16r7f) {
				s.state = Sstart;
				break;
			}
			s.state = Sstart;	
			s.put(tostr(DEL));
		}
	}
	if (i < len data)
		return data[i:];
	else
		return nil;
	return nil;
}

# process a byte from set C0 - Mixed mode
mc0(s: ref Screen, ch: int)
{
	case ch {
	ESC =>
		s.state = Sesc;
	SO =>
#		s.cset = french;
		;
	SI =>
#		s.cset = american;
		;
	BS =>
		if(s.pos.x > 1)
			s.pos.x -= 1;
	HT =>
		s.pos.x += 8;
		if(s.pos.x > s.cols)
			s.pos.x = s.cols;
	LF or VT or FF =>
		if(s.pos.y == s.rows - 1)
			if(s.spec&Scroll)
				scroll(1, 1);
			else
				s.pos.y = 1;
		else if(s.pos.y == 0) {		# restore attributes on leaving row zero
			if(ch == LF) {		# 4.5
				s.pos = s.savepos;
				s.attr = s.saveattr;
			}
		} else
			s.pos.y += 1;
	CR =>
		s.pos.x = 1;
	CAN or SUB =>	# displays the error symbol - filled in rectangle
		disp->Put(dup(16r5f, 1), Point(s.pos.x,s.pos.y), s.cset, s.attr, 0);
	NUL =>
		# padding character - ignore, but may appear anywhere
		;
	BEL =>
		# ah ...
		;
	XON =>	# screen copying
		;
	XOFF =>	# screen copying
		;
	US =>
		# expect US row, col
		s.state = Sus0;
	}
}

# process a byte from the set c1 - introduced by the ESC character - Mixed mode
mc1(s: ref Screen, ch: int)
{
	if(ISC0(ch)) {
		s.state = Sstart;
		mc0(s, ch);
		return;
	}
	case ch {
	16r5b =>						# CSI sequence
		s.a0 = s.a1 = 0;
		if(s.pos.y > 0)				# 1.2.5.2
			s.state = Scsi0;
		return;

	16r44 or						# IND like LF
	16r45 =>						# NEL like CR LF
		if(ch == 16r45)
			s.pos.x = 1;
		if(s.pos.y == s.rows - 1)
			if(s.spec&Scroll)
				scroll(1, 1);
			else
				s.pos.y = 1;
		else if(s.pos.y == 0) {		# restore attributes on leaving row zero
			s.pos = s.savepos;
			s.attr = s.saveattr;
		} else
			s.pos.y += 1;
	16r4d =>						# RI
		if(s.pos.y == 1)
			if(s.spec&Scroll)
				scroll(1, -1);
			else
				s.pos.y = s.rows - 1;
		else if(s.pos.y == 0)
			break;
		else
			s.pos.y -= 1;
	}
	s.state = Sstart;
}


# process CSI functions - Mixed mode
mcsi(s: ref Screen, ch: int)
{
	case s.state {
	Scsi0 =>
		case ch {
		# move cursor up n rows, stop at top of screen
		'A' =>
			if(s.a0 == 0)
				s.a0 = 1;
			s.pos.y -= s.a0;
			if(s.pos.y < 1)
				s.pos.y = 1;

		# move cursor down n rows, stop at bottom of screen
		'B' =>
			if(s.a0 == 0)
				s.a0 = 1;
			s.pos.y += s.a0;
			if(s.pos.y >= s.rows)
				s.pos.y = s.rows - 1;

		# move cursor n columns right, stop at edge of screen
		'C' =>
			if(s.a0 == 0)
				s.a0 = 1;
			s.pos.x += s.a0;
			if(s.pos.x > s.cols)
				s.pos.x = s.cols;

		# move cursor n columns left, stop at edge of screen
		'D' =>
			if(s.a0 == 0)
				s.a0 = 1;
			s.pos.x -= s.a0;
			if(s.pos.x < 1)
				s.pos.x = 1;

		# second parameter
		';' =>	
			s.state = Scsi1;
			return;

		'J' =>
			case s.a0 {
			# clears from the cursor to the end of the screen inclusive
			0 =>
				rowclear(s.pos.y, s.pos.x, s.cols);
				for(r:=s.pos.y+1; r<s.rows; r++)
					rowclear(r, 1, s.cols);
			# clears from the beginning of the screen to the cursor inclusive
			1 =>
				for(r:=1; r<s.pos.y; r++)
					rowclear(r, 1, s.cols);
				rowclear(s.pos.y, 1, s.pos.x);
			# clears the entire screen
			2 =>
				clear(s);
			}

		'K' => 
			case s.a0 {
			# clears from the cursor to the end of the row
			0 =>	rowclear(s.pos.y, s.pos.x, s.cols);

			# clears from the start of the row to the cursor
			1 => rowclear(s.pos.y, 1, s.pos.x);

			# clears the entire row in which the cursor is positioned
			2 => rowclear(s.pos.y, 1, s.cols);
			}

		# inserts n characters from cursor position
		'@' =>
			disp->Put(dup(' ', s.a0), Point(s.pos.x,s.pos.y), s.cset, s.attr, 1);

		# starts cursor insert mode
		'h' =>
			if(s.a0 == 4)
				s.spec |= Insert;

		'l' =>		# ends cursor insert mode
			if(s.a0 == 4)
				s.spec &= ~Insert;

	 	# inserts n rows from cursor row
		'L' =>
			scroll(s.pos.y, -1*s.a0);
			s.pos.x = 1;

		# deletes n rows from cursor row
		'M' =>
			scroll(s.pos.y, s.a0);
			s.pos.x = 1;

		# deletes n characters from cursor position
		'P' =>
			rowclear(s.pos.y, s.pos.x, s.pos.x+s.a0-1);

		# select Videotex mode
		'{' =>
			if(s.a0 == '?') {
				T.mode = Videotex;
				s.setmode(T.mode);
			}

		# display attributes
		'm' =>
			case s.a0 {
			0 =>		s.attr &= ~(attrL|attrF|attrP|attrB);
			1 =>		s.attr |= attrB;
			4 =>		s.attr |= attrL;
			5 =>		s.attr |= attrF;
			7 =>		s.attr |= attrP;
			22 =>	s.attr &= ~attrB;
			24 =>	s.attr &= ~attrL;
			25 =>	s.attr &= ~attrF;
			27 =>	s.attr &= ~attrP;
			}
		# direct cursor addressing
		'H' =>
			if(s.a0 == 0)
				s.a0 = 1;
			if(s.a1 == 0)
				s.a1 = 1;
			if(s.a0 > 0 && s.a0 < s.rows && s.a1 > 0 && s.a1 <= s.cols)
				s.pos = Point(s.a1, s.a0);
		}
		s.state = Sstart;
	Scsi1 =>
		case ch {
		# direct cursor addressing
		'H' =>
			if(s.a0 == 0)
				s.a0 = 1;
			if(s.a1 == 0)
				s.a1 = 1;
			if(s.a0 > 0 && s.a0 < s.rows && s.a1 > 0 && s.a1 <= s.cols)
				s.pos = Point(s.a1, s.a0);
		}
		s.state = Sstart;
	}
}


# Screen state - ASCII mode
astate(nil: ref Screen, nil: array of byte): array of byte
{
	return nil;
}

# Put a string in the current attributes to the current writing position
Screen.put(s: self ref Screen, str: string)
{
	while((l := len str) > 0) {
		n := s.cols - s.pos.x + 1;		# characters that will fit on this row
		if(s.attr & attrW) {
			if(n > 1)				# fit normal width character in last column
				n /= 2;
		}
		if(n > l)
			n = l;
		if(s.delimit) {		# set delimiter bit on 1st space (if any)
			for(i:=0; i<n; i++)
				if(str[i] == ' ')
					break;
			if(i > 0) {
				disp->Put(str[0:i], s.pos, s.cset, s.attr, s.spec&Insert);
				incpos(s, i);
			}
			if(i < n) {
				if(debug['s']) {
					cs:="";
					if(s.cset==videotex) cs = "v"; else cs="s";
					fprint(stderr, "D %ux %s\n", s.attr|attrD, cs);
				}
				disp->Put(tostr(str[i]), s.pos, s.cset, s.attr|attrD, s.spec&Insert);
				incpos(s, 1);
				s.delimit = 0;
				# clear serial attributes once used
				# hang onto background attribute - needed for semigraphics
				case s.cset {
				videotex =>
					s.attr &= ~(attrL|attrC);
				semigraphic =>
					s.attr &= ~(attrC);
				}
			}
			if(i < n-1) {
				disp->Put(str[i+1:n], s.pos, s.cset, s.attr, s.spec&Insert);
				incpos(s, n-(i+1));
			}
		} else {
			disp->Put(str[0:n], s.pos, s.cset, s.attr, s.spec&Insert);
			incpos(s, n);
		}
		if(n < len str)
			str = str[n:];
		else
			str = nil;
	}
#	if(T.state == Local || T.spec&Echo)
#		refresh();
}

# increment the current writing position by `n' cells.
# caller must ensure that `n' characters can fit
incpos(s: ref Screen, n: int)
{
	if(s.attr & attrW)
		s.pos.x += 2*n;
	else
		s.pos.x += n;
	if(s.pos.x > s.cols)
		if(s.pos.y == 0)			# no wraparound from row zero
			s.pos.x = s.cols;
		else {
			s.pos.x = 1;
			if(s.pos.y == s.rows - 1 && s.spec&Scroll) {
				if(s.attr & attrH) {
					scroll(1, 2);
				} else {
					scroll(1, 1);
					rowclear(s.pos.y, 1, s.cols);
				}
			} else {
				if(s.attr & attrH)
					s.pos.y += 2;
				else
					s.pos.y += 1;
				if(s.pos.y >= s.rows)
					s.pos.y -= (s.rows-1);
			}
		}
}

# clear row `r' from `first' to `last' column inclusive
rowclear(r, first, last: int)
{
	# 16r5f is the semi-graphic black rectangle
	disp->Put(dup(16r5f, last-first+1), Point(first,r), semigraphic, fgBlack, 0);
#	disp->Put(dup(' ', last-first+1), Point(first,r), S.cset, fgBlack, 0);
}

clear(s: ref Screen)
{
	for(r:=1; r<s.rows; r++)
		rowclear(r, 1, s.cols);
}

# called to suggest a display update
refresh()
{
	disp->Refresh();
}

# scroll the screen
scroll(topline, nlines: int)
{
	disp->Scroll(topline, nlines);
	disp->Refresh();
}

# filter the specified ISO6429 and ISO2022 codes from the screen input
# TODO: filter some ISO2022 sequences
filter(s: ref Screen, data: array of byte): array of array of byte
{
	case T.mode {
	Videotex =>
		return vfilter(s, data);
	Mixed =>
		return mfilter(s, data);
	Ascii =>
		return afilter(s, data);
	}
	return nil;
}

# filter the specified ISO6429 and ISO2022 codes from the screen input
vfilter(s: ref Screen, data: array of byte): array of array of byte
{
	ba := array [0] of array of byte;
	changed := 0;

	d0 := 0;
	for(i:=0; i<len data; i++) {
		ch := int data[i];
		case s.fstate {
		FSstart =>
			if(ch == ESC) {
				s.fstate = FSesc;
				changed = 1;
				if(i > d0)
					ba = dappend(ba, data[d0:i]);
				d0 = i+1;
			}
		FSesc =>
			d0 = i+1;
			changed = 1;
			if(ch == '[') {
				s.fstate = FS6429;
				s.fsaved = array [0] of byte;
				s.badp = 0;
#			} else if(ch == 16r20) {
#				s.fstate = FS2022;
#				s.fsaved = array [0] of byte;
				s.badp = 0;
			} else if(ch == ESC) {
				ba = dappend(ba, array [] of { byte ESC });
				s.fstate = FSesc;
			} else {
				# false alarm - don't filter
				ba = dappend(ba, array [] of { byte ESC, byte ch });
				s.fstate = FSstart;
			}
		FS6429 =>	# filter out invalid CSI sequences
			d0 = i+1;
			changed = 1;
			if(ch >= 16r20 && ch <= 16r3f) {
				if((ch < 16r30 || ch > 16r39) && ch != ';')
					s.badp = 1;
				a := array [len s.fsaved + 1] of byte;
				a[0:] = s.fsaved[0:];
				a[len a - 1] = byte ch;
				s.fsaved = a;
			} else {
				valid := 1;
				case  ch {
				'A' =>	;
				'B' =>	;
				'C' =>	;
				'D' =>	;
				'H' =>	;	
				'J' =>		;
				'K' =>	; 
				'P' =>	;
				'@' =>	;
				'h' =>	;
				'l' =>		;	
				'M' =>	;
				'L' =>	;
				* =>
					valid = 0;
				}
				if(s.badp)
					valid = 0;
				if(debug['f'])
					fprint(stderr, "vfilter %d: %s%c\n", valid, string s.fsaved, ch);
				if(valid) {		# false alarm - don't filter
					ba = dappend(ba, array [] of { byte ESC, byte '[' });
					ba = dappend(ba, s.fsaved);
					ba = dappend(ba, array [] of { byte ch } );
				}
				s.fstate = FSstart;
			} 
		FS2022 =>	;
		}
	}
	if(changed) {
		if(i > d0)
			ba = dappend(ba, data[d0:i]);
		return ba;
	}
	return array [] of { data };
}

# filter the specified ISO6429 and ISO2022 codes from the screen input - Videotex
mfilter(s: ref Screen, data: array of byte): array of array of byte
{
	ba := array [0] of array of byte;
	changed := 0;

	d0 := 0;
	for(i:=0; i<len data; i++) {
		ch := int data[i];
		case s.fstate {
		FSstart =>
			case ch {
			ESC =>
				s.fstate = FSesc;
				changed = 1;
				if(i > d0)
					ba = dappend(ba, data[d0:i]);
				d0 = i+1;
			SEP =>
				s.fstate = FSsep;
				changed = 1;
				if(i > d0)
					ba = dappend(ba, data[d0:i]);
				d0 = i+1;
			}
		FSesc =>
			d0 = i+1;
			changed = 1;
			if(ch == '[') {
				s.fstate = FS6429;
				s.fsaved = array [0] of byte;
				s.badp = 0;
			} else if(ch == ESC) {
				ba = dappend(ba, array [] of { byte ESC });
				s.fstate = FSesc;
			} else {
				# false alarm - don't filter
				ba = dappend(ba, array [] of { byte ESC, byte ch });
				s.fstate = FSstart;
			}
		FSsep =>
			d0 = i+1;
			changed = 1;
			if(ch == ESC) {
				ba = dappend(ba, array [] of { byte SEP });
				s.fstate = FSesc;
			} else if(ch == SEP) {
				ba = dappend(ba, array [] of { byte SEP });
				s.fstate = FSsep;
			} else {
				if(ch >= 16r00 && ch <= 16r1f)
					ba = dappend(ba, array [] of { byte SEP , byte ch });
				# consume the character
				s.fstate = FSstart;
			}
		FS6429 =>	# filter out invalid CSI sequences
			d0 = i+1;
			changed = 1;
			if(ch >= 16r20 && ch <= 16r3f) {
				if((ch < 16r30 || ch > 16r39) && ch != ';' && ch != '?')
					s.badp = 1;
				a := array [len s.fsaved + 1] of byte;
				a[0:] = s.fsaved[0:];
				a[len a - 1] = byte ch;
				s.fsaved = a;
			} else {
				valid := 1;
				case  ch {
				'm' =>	;
				'A' =>	;
				'B' =>	;
				'C' =>	;
				'D' =>	;
				'H' =>	;
				'J' =>		;
				'K' =>	; 
				'@' =>	;
				'h' =>	;
				'l' =>		;	
				'L' =>	;
				'M' =>	;
				'P' =>	;
				'{' =>	# allow CSI ? {
					n := len s.fsaved;
					if(n == 0 || s.fsaved[n-1] != byte '?')
						s.badp = 1;
				* =>
					valid = 0;
				}
				if(s.badp)	# only decimal params
					valid = 0;
				if(debug['f'])
					fprint(stderr, "mfilter %d: %s%c\n", valid, string s.fsaved, ch);
				if(valid) {		# false alarm - don't filter
					ba = dappend(ba, array [] of { byte ESC, byte '[' });
					ba = dappend(ba, s.fsaved);
					ba = dappend(ba, array [] of { byte ch } );
				}
				s.fstate = FSstart;
			} 
		FS2022 =>	;
		}
	}
	if(changed) {
		if(i > d0)
			ba = dappend(ba, data[d0:i]);
		return ba;
	}
	return array [] of { data };
}

# filter the specified ISO6429 and ISO2022 codes from the screen input - Videotex
afilter(nil: ref Screen, data: array of byte): array of array of byte
{
	return array [] of { data };
}

# append to an array of array of byte
dappend(ba: array of array of byte, b: array of byte): array of array of byte
{
	l := len ba;
	na := array [l+1] of array of byte;
	na[0:] = ba[0:];
	na[l] = b;
	return na;
}

# Put a diagnostic string to row 0
Screen.msg(s: self ref Screen, str: string)
{
	blank := string array [s.cols -4] of {* => byte ' '};
	n := len str;
	if(n > s.cols - 4)
		n = s.cols - 4;
	disp->Put(blank, Point(1, 0), videotex, 0, 0);
	if(str != nil)
		disp->Put(str[0:n], Point(1, 0), videotex, fgWhite|attrB, 0);
	disp->Refresh();
}