-
Notifications
You must be signed in to change notification settings - Fork 12
/
TrmC100.c.save
301 lines (277 loc) · 6.39 KB
/
TrmC100.c.save
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
/* terminal control module for Concept-100's */
/* Copyright (c) 1981,1980 James Gosling */
/* Modified 2-Dec-80 (DJH) to turn off highlighting on insertline */
#include <stdio.h>
#include "display.h"
static
int curX, curY;
static
int WindowSize, DesWindowSize;
static
int ReverseVideo;
static
enum IDmode { m_insert = 1, m_overwrite = 0 }
CurMode, DesMode;
static
enum { C100, C108, perq } RealType;
static
INSmode (new)
enum IDmode new; {
DesMode = new;
};
static curHL;
static
HLmode (on) {
if (curHL == on)
return;
printf (on ? (ReverseVideo ? "\033N\110" : "\033N\170")
: (ReverseVideo ? "\033N\130" : "\033N\110"));
curHL = on;
}
static
setmode () {
if (DesMode == CurMode)
return;
putchar (033);
putchar (DesMode == m_insert ? 16 : 0200);
CurMode = DesMode;
};
static
inslines (n) {
register line = curY;
if (SetWindow (DesWindowSize))
topos (line, 1);
HLmode (0);
if (n > 1 && RealType == perq)
printf ("\033\036%c", n + 32);
else
while (--n >= 0) {
printf ("\033\022");
pad (tt.t_length - curY,.75);
}
};
static
dellines (n) {
register line = curY;
if (SetWindow (DesWindowSize))
topos (line, 1);
if (n > 1 && RealType == perq)
printf ("\033\037%c", n + 32);
else
while (--n >= 0) {
printf ("\033\002");
pad (tt.t_length - curY,.75);
}
};
static
writechars (start, end)
register char *start,
*end; {
register char *p;
register int i;
setmode ();
while (start <= end) {
if (*start == '_' && CurMode != m_insert) {
register runlen = 0;
do runlen++; while(*++start == '_' && start<=end);
printf ("\033r_%c", 32+runlen);
pad (runlen,.10);
curX += runlen;
}
else
if(CurMode==m_insert
|| ((p=start+1),*start!=*p++) || *start!=*p++
|| *start!=*p++ || *start!=*p++ || p>end){
putchar (*start++);
curX++;
} else { /* we have a run of at least 5 characters */
i = 5;
while (*start == *p++ && p<=end) i++;
printf ("\033r%c%c", *start, 32+i);
pad (i,.10);
curX += i;
start = p-1;
}
if (CurMode == m_insert)
pad (tt.t_width - curX,.05);
}
};
static
blanks (n) {
setmode ();
if (CurMode == m_insert || n <= 5)
while (--n >= 0) {
putchar (' ');
curX++;
if (CurMode == m_insert)
pad (tt.t_width - curX,.05);
}
else {
printf ("\033r %c", n + 32);
pad (n,.05);
curX += n;
}
};
static float BaudFactor;
static pad(n,f)
float f; {
register k = n * f * BaudFactor;
while (--k >= 0)
putchar (0);
};
static
topos (row, column) register row, column; {
if(row > WindowSize)
SetWindow(0);
if (curY == row) {
if (curX == column)
return;
if (curX == column + 1) {
putchar (010);
goto done;
}
}
if (curY + 1 == row && (column == 1 || column==curX)) {
if(column!=curX) putchar (015);
putchar (012);
goto done;
}
if (row == 1 && column == 1) {
putchar (033);
putchar ('?');
goto done;
}
putchar (033);
putchar ('a');
putchar (row + 31);
if (column<96) putchar (column + 31);
else { putchar (1); putchar (column-65); }
done:
curX = column;
curY = row;
};
static
init (BaudRate) {
if (RealType == perq || RealType == C108 && BaudRate <= 1200)
BaudFactor = 0;
else
BaudFactor = 1 / (1 - (.45 +.3 * BaudRate / 9600.))
* (BaudRate / 10000.);
tt.t_ILmf = RealType == perq ? 0.0 : BaudFactor * 0.75;
tt.t_ILov = 2;
tt.t_ICmf = RealType == perq ? 0.0 : BaudFactor * (.05 * 60) + 1;
tt.t_ICov = 4;
tt.t_DCmf = BaudFactor * (.05 * 60) + 2;
tt.t_DCov = 0;
};
static
reset () {
curX = -1;
curY = -1;
curHL = -1;
HLmode (0);
printf ("\014\0337\0338\033s\033U\033%c", ReverseVideo ? 'k' : 'K');
pad (tt.t_length, 0.5);
if (tt.t_width > 100) printf("\033\"");
CurMode = m_insert;
DesMode = m_overwrite;
};
static
cleanup () {
HLmode (0);
putchar (033);
putchar (0);
};
static
wipeline () {
putchar (033);
putchar (21);
pad (tt.t_width - curX, .10);
};
static
wipescreen () {
putchar (014);
curX = curY = -1;
};
static
delchars (n) {
while (--n >= 0) {
putchar (033);
putchar (1);
pad (tt.t_width - curX,.10);
}
};
static
window (n) {
DesWindowSize = n<=0 ? tt.t_length : n;
}
static
flash () {
register char c = ReverseVideo ? 'K' : 'k';
printf("\033%c", c);
pad (1, 100.0);
printf("\033%c", c ^ 040);
}
static
SetWindow (n) {
if (n <= 0 || n > tt.t_length)
n = tt.t_length;
if (n != WindowSize) {
if (tt.t_width < 100)
printf ("\033v %c\160", n + 32);
else
printf ("\033v %c\001D", n + 32);
curX = 1;
curY = 1;
WindowSize = n;
return 1;
}
return 0;
}
TrmC100 (tname)
char *tname; {
tt.t_width = 79;
ReverseVideo = 0;
RealType = C100;
while (*tname)
switch (*tname++) {
case '8':
RealType = C108;
break;
case 'q':
RealType = perq;
break;
case 'w':
tt.t_width = 131;
break;
case 'v':
ReverseVideo++;
break;
}
tt.t_needspaces = 1;
tt.t_INSmode = INSmode;
tt.t_HLmode = HLmode;
tt.t_inslines = inslines;
tt.t_dellines = dellines;
tt.t_blanks = blanks;
tt.t_init = init;
tt.t_cleanup = cleanup;
tt.t_wipeline = wipeline;
tt.t_wipescreen = wipescreen;
tt.t_topos = topos;
tt.t_reset = reset;
tt.t_delchars = delchars;
tt.t_writechars = writechars;
tt.t_window = window;
tt.t_flash = flash;
tt.t_ILmf = 0;
tt.t_ILov = 0;
tt.t_ICmf = 0;
tt.t_ICov = 0;
tt.t_length = 24;
if (RealType == perq) {
tt.t_flash = 0;
tt.t_width = 79;
tt.t_length = 60;
}
};