forked from railsware/upterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCursor.ts
56 lines (42 loc) · 1.28 KB
/
Cursor.ts
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
export default class Cursor {
private _show = false;
private _blink = false;
constructor(private position: RowColumn = { row: 0, column: 0 }) {
}
moveAbsolute(position: PartialRowColumn, homePosition: PartialRowColumn): this {
if (typeof position.column === "number") {
this.position.column = position.column + homePosition.column;
}
if (typeof position.row === "number") {
this.position.row = position.row + homePosition.row;
}
return this;
}
moveRelative(advancement: Advancement): this {
const row = Math.max(0, this.row + (advancement.vertical || 0));
const column = Math.max(0, this.column + (advancement.horizontal || 0));
this.moveAbsolute({ row: row, column: column }, { column: 0, row: 0 });
return this;
}
getPosition(): RowColumn {
return this.position;
}
get column(): number {
return this.position.column;
}
get row(): number {
return this.position.row;
}
get blink(): boolean {
return this._blink;
}
set blink(value: boolean) {
this._blink = value;
}
get show(): boolean {
return this._show;
}
set show(value: boolean) {
this._show = value;
}
}