-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvt100key.fs
62 lines (48 loc) · 1.8 KB
/
vt100key.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
\ vt100 key interpreter 17oct94py
\ Copyright (C) 1995,1996,1998,2000,2003,2007,2015,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/.
Variable vt100-modifier
: ctrl-i ( "<char>" -- c )
char toupper $40 xor ;
' ctrl-i
:noname
ctrl-i postpone Literal ;
interpret/compile: ctrl ( "<char>" -- ctrl-code )
Create translate $100 allot
translate $100 erase
Create transcode $100 allot
transcode $100 erase
: trans: ( char 'index' -- ) char translate + c! ;
: tcode ( char index -- ) transcode + c! ;
: key# ( -- n lastkey )
0 BEGIN key dup digit? WHILE nip swap &10 * + REPEAT ;
: vt100-decode ( max span addr pos1 -- max span addr pos2 flag )
vt100-modifier off
key dup '[ = IF drop base @ >r &10 base !
key# dup ';' = IF
drop key# swap 1- 0 max vt100-modifier ! THEN
r> base !
dup '~' = IF drop transcode ELSE nip translate THEN
+ c@ dup IF decode THEN vt100-modifier off
ELSE 'O' = IF key# 2drop THEN 0 THEN ;
ctrl B trans: D
ctrl F trans: C
ctrl P trans: A
ctrl N trans: B
ctrl A trans: H
ctrl E trans: F
ctrl S trans: S
ctrl A 1 tcode
ctrl X 3 tcode
ctrl E 4 tcode
' vt100-decode ctrlkeys $1B cells + !