2020-04-05 01:28:00 +11:00
|
|
|
( requires core, parse, print )
|
2020-03-21 04:35:02 +11:00
|
|
|
|
|
|
|
( Managing variables in a core module is tricky. Sure, we
|
|
|
|
have (sysv), but here we need to allocate a big buffer, and
|
|
|
|
that cannot be done through (sysv). What we do is that we
|
|
|
|
allocate that buffer at runtime and use (sysv) to point to
|
|
|
|
it, a pointer that is set during the initialization
|
|
|
|
routine. )
|
|
|
|
|
|
|
|
64 CONSTANT INBUFSZ
|
|
|
|
( points to INBUF )
|
|
|
|
(sysv) IN(
|
|
|
|
( points to INBUF's end )
|
|
|
|
(sysv) IN)
|
|
|
|
( current position in INBUF )
|
|
|
|
(sysv) IN>
|
|
|
|
|
|
|
|
( flush input buffer )
|
|
|
|
( set IN> to IN( and set IN> @ to null )
|
|
|
|
: (infl) 0 IN( @ DUP IN> ! ! ;
|
|
|
|
|
|
|
|
( Initializes the readln subsystem )
|
|
|
|
: (c<$)
|
2020-03-26 11:13:33 +11:00
|
|
|
H@ IN( !
|
2020-03-21 04:35:02 +11:00
|
|
|
INBUFSZ ALLOT
|
2020-03-26 11:13:33 +11:00
|
|
|
H@ IN) !
|
2020-04-03 04:24:25 +11:00
|
|
|
( We need two extra bytes. 1 for the last typed 0x0a and
|
|
|
|
one for the following NULL. )
|
|
|
|
2 ALLOT
|
2020-03-21 04:35:02 +11:00
|
|
|
(infl)
|
|
|
|
;
|
|
|
|
|
|
|
|
( handle backspace: go back one char in IN>, if possible, then
|
|
|
|
emit SPC + BS )
|
|
|
|
: (inbs)
|
|
|
|
( already at IN( ? )
|
|
|
|
IN> @ IN( @ = IF EXIT THEN
|
|
|
|
IN> @ 1 - IN> !
|
|
|
|
SPC BS
|
|
|
|
;
|
|
|
|
|
|
|
|
( read one char into input buffer and returns whether we
|
|
|
|
should continue, that is, whether newline was not met. )
|
|
|
|
: (rdlnc) ( -- f )
|
2020-04-03 04:24:25 +11:00
|
|
|
( buffer overflow? same as if we typed a newline )
|
|
|
|
IN> @ IN) @ = IF 0x0a ELSE KEY THEN ( c )
|
2020-03-21 04:35:02 +11:00
|
|
|
( del? same as backspace )
|
2020-04-03 04:24:25 +11:00
|
|
|
DUP 0x7f = IF DROP 0x8 THEN
|
|
|
|
( echo back )
|
|
|
|
DUP EMIT ( c )
|
2020-03-21 04:35:02 +11:00
|
|
|
( bacspace? handle and exit )
|
|
|
|
DUP 0x8 = IF (inbs) EXIT THEN
|
|
|
|
( write and advance )
|
|
|
|
DUP ( keep as result ) ( c c )
|
2020-04-03 04:24:25 +11:00
|
|
|
( Here, we take advantage of the fact that c's MSB is
|
|
|
|
always zero and thus ! automatically null-terminates
|
|
|
|
our string )
|
2020-03-21 04:35:02 +11:00
|
|
|
IN> @ ! 1 IN> +! ( c )
|
2020-04-03 04:24:25 +11:00
|
|
|
( if newline, replace with zero to indicate EOL )
|
|
|
|
DUP 0xa = IF DROP 0 THEN
|
2020-03-21 04:35:02 +11:00
|
|
|
;
|
|
|
|
|
|
|
|
( Read one line in input buffer and make IN> point to it )
|
|
|
|
: (rdln)
|
2020-03-22 05:59:12 +11:00
|
|
|
( Should we prompt? if we're executing a word, FLAGS bit
|
|
|
|
0, then we shouldn't. )
|
|
|
|
FLAGS @ 0x1 AND NOT IF LF '>' EMIT SPC THEN
|
2020-03-21 04:35:02 +11:00
|
|
|
(infl)
|
|
|
|
BEGIN (rdlnc) NOT UNTIL
|
|
|
|
IN( @ IN> !
|
|
|
|
;
|
|
|
|
|
2020-03-26 11:39:07 +11:00
|
|
|
( And finally, implement a replacement for the (c<) routine )
|
|
|
|
: (c<)
|
2020-03-21 04:35:02 +11:00
|
|
|
IN> @ C@ ( c )
|
|
|
|
( not EOL? good, inc and return )
|
|
|
|
DUP IF 1 IN> +! EXIT THEN ( c )
|
|
|
|
( EOL ? readline. we still return typed char though )
|
2020-04-05 04:26:41 +10:00
|
|
|
(rdln) (c<) ( c )
|
2020-03-21 04:35:02 +11:00
|
|
|
;
|