-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvt100.fs
69 lines (53 loc) · 2.34 KB
/
vt100.fs
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
\ VT100.STR VT100 excape sequences 20may93jaw
\ Copyright (C) 1995,1999,2000,2003,2007,2012,2013,2014,2016 Free Software Foundation, Inc.
\ This file is part of Gforth.
\ Gforth is free software; you can redistribute it and/or
\ modify it under the terms of the GNU General Public License
\ as published by the Free Software Foundation, either version 3
\ of the License, or (at your option) any later version.
\ This program is distributed in the hope that it will be useful,
\ but WITHOUT ANY WARRANTY; without even the implied warranty of
\ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\ GNU General Public License for more details.
\ You should have received a copy of the GNU General Public License
\ along with this program. If not, see http://www.gnu.org/licenses/.
decimal
[IFUNDEF] #esc 27 Constant #esc [THEN]
: #n ( n -- ) [: 0 #s 2drop ;] #10 base-execute ;
: #n; ( n -- ) [: 0 #s 2drop ';' hold ;] #10 base-execute ;
: #esc[ ( -- ) '[' hold #esc hold ;
: pn base @ swap decimal 0 u.r base ! ;
: ;pn [char] ; emit pn ;
: ESC[ #esc emit [char] [ emit ;
: vt100-at-xy ( u1 u2 -- ) \ facility at-x-y
\G Position the cursor so that subsequent text output will take
\G place at column @var{u1}, row @var{u2} of the display. (column 0,
\G row 0 is the top left-hand corner of the display).
1+ swap 1+ <<# 'H' hold #n; #n #esc[ #0. #> type #>> ;
[IFUNDEF] at-deltaxy Defer at-deltaxy [THEN]
: vt100-at-deltaxy ( x y -- )
\G position the cursor relative to the current cursor position
\G by adding @var{x} to the column and @var{y} to the row, negative
\G numbers move up and left, positive down and right.
over 0< over 0= and IF drop abs backspaces EXIT THEN
[: <<#
?dup-IF
dup 0< IF 'A' ELSE 'B' THEN hold abs 0 #s 2drop #esc[
THEN
?dup-IF
dup 0< IF 'D' ELSE 'C' THEN hold abs 0 #s 2drop #esc[
THEN #0. #> type #>> ;] #10 base-execute ;
: vt100-page ( -- ) \ facility
\G Clear the display and set the cursor to the top left-hand
\G corner.
<<# s" [2J" holds #esc hold #0. #> type #>> 0 0 at-xy ;
' vt100-at-xy IS at-xy
' vt100-at-deltaxy IS at-deltaxy
' vt100-page IS page
[IFDEF] debug-out
debug-out op-vector !
' vt100-at-xy IS at-xy
' vt100-at-deltaxy IS at-deltaxy
' vt100-page IS page
default-out op-vector !
[THEN]