-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathterminal_view.dart
491 lines (403 loc) · 14 KB
/
terminal_view.dart
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
import 'dart:math' as math;
import 'dart:ui';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/scheduler.dart';
import 'package:flutter/services.dart';
import 'package:meta/meta.dart';
import 'package:xterm/buffer/cell.dart';
import 'package:xterm/frontend/char_size.dart';
import 'package:xterm/frontend/helpers.dart';
import 'package:xterm/frontend/input_behavior.dart';
import 'package:xterm/frontend/input_behaviors.dart';
import 'package:xterm/frontend/input_listener.dart';
import 'package:xterm/frontend/oscillator.dart';
import 'package:xterm/frontend/cache.dart';
import 'package:xterm/mouse/position.dart';
import 'package:xterm/terminal/terminal.dart';
import 'package:xterm/theme/terminal_style.dart';
import 'package:xterm/utli/hash_values.dart';
typedef ResizeHandler = void Function(int width, int height);
class TerminalView extends StatefulWidget {
TerminalView({
Key key,
@required this.terminal,
this.onResize,
this.style = const TerminalStyle(),
FocusNode focusNode,
this.autofocus = false,
ScrollController scrollController,
InputBehavior inputBehavior,
}) : assert(terminal != null),
focusNode = focusNode ?? FocusNode(),
scrollController = scrollController ?? ScrollController(),
inputBehavior = inputBehavior ?? InputBehaviors.platform,
super(key: key ?? ValueKey(terminal));
final Terminal terminal;
final ResizeHandler onResize;
final FocusNode focusNode;
final bool autofocus;
final ScrollController scrollController;
final TerminalStyle style;
final InputBehavior inputBehavior;
CellSize measureCellSize() {
final testString = 'xxxxxxxxxx' * 1000;
final text = Text(
testString,
style: (style.textStyleProvider != null)
? style.textStyleProvider(
fontSize: style.fontSize,
)
: TextStyle(
fontFamily: 'monospace',
fontFamilyFallback: style.fontFamily,
fontSize: style.fontSize,
),
);
final size = textSize(text);
final charWidth = (size.width / testString.length);
final charHeight = size.height;
final cellWidth = charWidth * style.fontWidthScaleFactor;
final cellHeight = size.height * style.fontHeightScaleFactor;
return CellSize(
charWidth: charWidth,
charHeight: charHeight,
cellWidth: cellWidth,
cellHeight: cellHeight,
letterSpacing: cellWidth - charWidth,
lineSpacing: cellHeight - charHeight,
);
}
@override
_TerminalViewState createState() => _TerminalViewState();
}
class _TerminalViewState extends State<TerminalView> {
final oscillator = Oscillator.ms(600);
bool get focused {
return widget.focusNode.hasFocus;
}
int _lastTerminalWidth;
int _lastTerminalHeight;
CellSize _cellSize;
ViewportOffset _offset;
var _minScrollExtent = 0.0;
var _maxScrollExtent = 0.0;
void onTerminalChange() {
// if (_offset != null) {
// final currentScrollExtent =
// _cellSize.cellHeight * widget.terminal.buffer.scrollOffsetFromTop;
// if (_offset.pixels != currentScrollExtent) {
// _offset.correctBy(currentScrollExtent - _offset.pixels - 1);
// }
// }
if (mounted) {
setState(() {});
}
}
void onTick() {
widget.terminal.refresh();
}
@override
void initState() {
// oscillator.start();
// oscillator.addListener(onTick);
_cellSize = widget.measureCellSize();
widget.terminal.addListener(onTerminalChange);
super.initState();
}
@override
void didUpdateWidget(TerminalView oldWidget) {
widget.terminal.addListener(onTerminalChange);
super.didUpdateWidget(oldWidget);
}
@override
void dispose() {
// oscillator.stop();
// oscillator.removeListener(onTick);
widget.terminal.removeListener(onTerminalChange);
super.dispose();
}
@override
Widget build(BuildContext context) {
return InputListener(
listenKeyStroke: widget.inputBehavior.acceptKeyStroke,
onKeyStroke: onKeyStroke,
onTextInput: onInput,
onAction: onAction,
onFocus: onFocus,
focusNode: widget.focusNode,
autofocus: false,
initEditingState: widget.inputBehavior.initEditingState,
child: MouseRegion(
cursor: SystemMouseCursors.text,
child: LayoutBuilder(builder: (context, constraints) {
onResize(constraints.maxWidth, constraints.maxHeight);
return Scrollable(
viewportBuilder: (context, offset) {
offset.applyViewportDimension(constraints.maxHeight);
_minScrollExtent = 0.0;
_maxScrollExtent = math.max(
0.0,
_cellSize.cellHeight * widget.terminal.buffer.height -
constraints.maxHeight);
// final currentScrollExtent = _cellSize.cellHeight *
// widget.terminal.buffer.scrollOffsetFromTop;
// offset.correctBy(currentScrollExtent - offset.pixels - 1);
offset.applyContentDimensions(_minScrollExtent, _maxScrollExtent);
_offset = offset;
_offset.addListener(onScroll);
return buildTerminal(context);
},
);
}),
),
);
}
Widget buildTerminal(BuildContext context) {
return GestureDetector(
behavior: HitTestBehavior.deferToChild,
dragStartBehavior: DragStartBehavior.down,
onTapDown: (detail) {
if (widget.terminal.selection.isEmpty) {
InputListener.of(context).requestKeyboard();
} else {
widget.terminal.selection.clear();
}
final pos = detail.localPosition;
final offset = getMouseOffset(pos.dx, pos.dy);
widget.terminal.mouseMode.onTap(widget.terminal, offset);
widget.terminal.refresh();
},
onPanStart: (detail) {
final pos = detail.localPosition;
final offset = getMouseOffset(pos.dx, pos.dy);
widget.terminal.mouseMode.onPanStart(widget.terminal, offset);
widget.terminal.refresh();
},
onPanUpdate: (detail) {
final pos = detail.localPosition;
final offset = getMouseOffset(pos.dx, pos.dy);
widget.terminal.mouseMode.onPanUpdate(widget.terminal, offset);
widget.terminal.refresh();
},
child: Container(
constraints: BoxConstraints.expand(),
color: Color(widget.terminal.theme.background.value),
child: CustomPaint(
painter: TerminalPainter(
terminal: widget.terminal,
view: widget,
oscillator: oscillator,
focused: focused,
charSize: _cellSize,
),
),
),
);
}
Position getMouseOffset(double px, double py) {
final col = (px / _cellSize.cellWidth).floor();
final row = (py / _cellSize.cellHeight).floor();
final x = col;
final y = widget.terminal.buffer.convertViewLineToRawLine(row) -
widget.terminal.buffer.scrollOffsetFromBottom;
return Position(x, y);
}
void onResize(double width, double height) {
final termWidth = (width / _cellSize.cellWidth).floor();
final termHeight = (height / _cellSize.cellHeight).floor();
if (_lastTerminalWidth != termWidth || _lastTerminalHeight != termHeight) {
_lastTerminalWidth = termWidth;
_lastTerminalHeight = termHeight;
// print('($termWidth, $termHeight)');
if (widget.onResize != null) {
widget.onResize(termWidth, termHeight);
}
SchedulerBinding.instance.addPostFrameCallback((_) {
widget.terminal.resize(termWidth, termHeight);
});
// Future.delayed(Duration.zero).then((_) {
// widget.terminal.resize(termWidth, termHeight);
// });
}
}
TextEditingValue onInput(TextEditingValue value) {
return widget.inputBehavior.onTextEdit(value, widget.terminal);
}
void onKeyStroke(RawKeyEvent event) {
widget.inputBehavior.onKeyStroke(event, widget.terminal);
_offset.moveTo(_maxScrollExtent);
}
void onFocus(bool focused) {
SchedulerBinding.instance.addPostFrameCallback((_) {
widget.terminal.refresh();
});
}
void onAction(TextInputAction action) {
widget.inputBehavior.onAction(action, widget.terminal);
}
void onScroll() {
final charOffset = (_offset.pixels / _cellSize.cellHeight).ceil();
final offset = widget.terminal.invisibleHeight - charOffset;
widget.terminal.buffer.setScrollOffsetFromBottom(offset);
}
}
class TerminalPainter extends CustomPainter {
TerminalPainter({
this.terminal,
this.view,
this.oscillator,
this.focused,
this.charSize,
});
final Terminal terminal;
final TerminalView view;
final Oscillator oscillator;
final bool focused;
final CellSize charSize;
@override
void paint(Canvas canvas, Size size) {
paintBackground(canvas);
// if (oscillator.value) {
// }
if (terminal.showCursor) {
paintCursor(canvas);
}
paintText(canvas);
paintSelection(canvas);
}
void paintBackground(Canvas canvas) {
final lines = terminal.getVisibleLines();
for (var i = 0; i < lines.length; i++) {
final line = lines[i];
final offsetY = i * charSize.cellHeight;
final cellCount = math.min(terminal.viewWidth, line.length);
for (var i = 0; i < cellCount; i++) {
final cell = line.getCell(i);
if (cell.attr == null || cell.width == 0) {
continue;
}
final offsetX = i * charSize.cellWidth;
final effectWidth = charSize.cellWidth * cell.width + 1;
final effectHeight = charSize.cellHeight + 1;
final bgColor =
cell.attr.inverse ? cell.attr.fgColor : cell.attr.bgColor;
if (bgColor == null) {
continue;
}
final paint = Paint()..color = Color(bgColor.value);
canvas.drawRect(
Rect.fromLTWH(offsetX, offsetY, effectWidth, effectHeight),
paint,
);
}
}
}
void paintSelection(Canvas canvas) {
for (var y = 0; y < terminal.viewHeight; y++) {
final offsetY = y * charSize.cellHeight;
final absoluteY = terminal.buffer.convertViewLineToRawLine(y) -
terminal.buffer.scrollOffsetFromBottom;
for (var x = 0; x < terminal.viewWidth; x++) {
var cellCount = 0;
while (
terminal.selection.contains(Position(x + cellCount, absoluteY)) &&
x + cellCount < terminal.viewWidth) {
cellCount++;
}
if (cellCount == 0) {
continue;
}
final offsetX = x * charSize.cellWidth;
final effectWidth = cellCount * charSize.cellWidth;
final effectHeight = charSize.cellHeight;
final paint = Paint()..color = Colors.white.withOpacity(0.3);
canvas.drawRect(
Rect.fromLTWH(offsetX, offsetY, effectWidth, effectHeight),
paint,
);
x += cellCount;
}
}
}
void paintText(Canvas canvas) {
final lines = terminal.getVisibleLines();
for (var i = 0; i < lines.length; i++) {
final line = lines[i];
final offsetY = i * charSize.cellHeight;
final cellCount = math.min(terminal.viewWidth, line.length);
for (var i = 0; i < cellCount; i++) {
final cell = line.getCell(i);
if (cell.attr == null || cell.width == 0) {
continue;
}
final offsetX = i * charSize.cellWidth;
paintCell(canvas, cell, offsetX, offsetY);
}
}
}
void paintCell(Canvas canvas, Cell cell, double offsetX, double offsetY) {
if (cell.codePoint == null || cell.attr.invisible) {
return;
}
final cellColor = cell.attr.inverse
? cell.attr.bgColor ?? terminal.theme.background
: cell.attr.fgColor ?? terminal.theme.foreground;
var color = Color(cellColor.value);
if (cell.attr.faint) {
color = color.withOpacity(0.5);
}
final style = (view.style.textStyleProvider != null)
? view.style.textStyleProvider(
color: color,
fontWeight: cell.attr.bold ? FontWeight.bold : FontWeight.normal,
fontStyle: cell.attr.italic ? FontStyle.italic : FontStyle.normal,
fontSize: view.style.fontSize,
decoration: cell.attr.underline
? TextDecoration.underline
: TextDecoration.none,
)
: TextStyle(
color: color,
fontWeight: cell.attr.bold ? FontWeight.bold : FontWeight.normal,
fontStyle: cell.attr.italic ? FontStyle.italic : FontStyle.normal,
fontSize: view.style.fontSize,
decoration: cell.attr.underline
? TextDecoration.underline
: TextDecoration.none,
fontFamily: 'monospace',
fontFamilyFallback: view.style.fontFamily);
final span = TextSpan(
text: String.fromCharCode(cell.codePoint),
// text: codePointCache.getOrConstruct(cell.codePoint),
style: style,
);
// final tp = textLayoutCache.getOrPerformLayout(span);
final tp = textLayoutCacheV2.getOrPerformLayout(
span, hashValues(cell.codePoint, cell.attr));
tp.paint(canvas, Offset(offsetX, offsetY));
}
void paintCursor(Canvas canvas) {
final screenCursorY = terminal.cursorY + terminal.scrollOffset;
if (screenCursorY < 0 || screenCursorY >= terminal.viewHeight) {
return;
}
final char = terminal.buffer.getCellUnderCursor();
final width =
char != null ? charSize.cellWidth * char.width : charSize.cellWidth;
final offsetX = charSize.cellWidth * terminal.cursorX;
final offsetY = charSize.cellHeight * screenCursorY;
final paint = Paint()
..color = Color(terminal.theme.cursor.value)
..strokeWidth = focused ? 0.0 : 1.0
..style = focused ? PaintingStyle.fill : PaintingStyle.stroke;
canvas.drawRect(
Rect.fromLTWH(offsetX, offsetY, width, charSize.cellHeight), paint);
}
@override
bool shouldRepaint(CustomPainter oldDelegate) {
// print('shouldRepaint');
return terminal.dirty;
}
}