Terminal control/Restricted width positional input/No wrapping: Difference between revisions

m
syntax highlighting fixup automation
(Terminal control/Restricted width positional input/No wrapping in FreeBASIC)
m (syntax highlighting fixup automation)
Line 17:
==={{header|ncurses}}===
To interface ncurses from Lisp, the ''[https://www.cliki.net/croatoan croatoan]'' library is used.
<langsyntaxhighlight lang="lisp">;; Load the library from the quicklisp repository
(ql:quickload "croatoan")
(in-package :croatoan)
Line 34:
 
;; call the routine
(field-input-no-wrapping 2 4 8)</langsyntaxhighlight>
 
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight lang="freebasic">Function getInput(fila As Integer, columna As Integer, ancho As Integer) As String
Locate fila, columna, 0
Dim As String KBD, cadena = ""
Line 57:
Dim As String s = getInput(3, 5, 8)
Locate 23,1 : Print "You entered: "; s
Sleep</langsyntaxhighlight>
 
=={{header|Go}}==
Line 64:
<br>
This uses _getch() rather than _getwch() as only ASCII is supported.
<langsyntaxhighlight lang="go">package main
 
/*
Line 127:
setCursor(coord)
fmt.Printf("You entered '%s'\n", s)
}</langsyntaxhighlight>
 
=={{header|Julia}}==
Requires an ANSI compatible terminal and a system C library implementing _getch() for unbuffered keyboard input. Note the code below is identical to the code in [[Terminal_control/Restricted_width_positional_input/No_wrapping]] but with no width argument in the input call.
<langsyntaxhighlight lang="julia">getch() = UInt8(ccall(:_getch, Cint, ()))
cls() = print("\33[2J")
reposition(row, col) = print("\u001b[$row;$(col)H")
Line 155:
s = input_y_x_upto(3, 5, 8)
println("\n\n\nResult: You entered <<$s>>")
</syntaxhighlight>
</lang>
 
=={{header|Kotlin}}==
Line 164:
 
It would also be possible to allow for printable Unicode characters (>= 160) to be entered by adding an extra clause to the 'when' statement. However, for this to work properly, you will need to be using a suitable code page (65001, say) and a suitable font (Lucida Console, say).
<langsyntaxhighlight lang="scala">// Kotlin Native v0.5
 
import kotlinx.cinterop.*
Line 205:
}
println("You entered '$s'")
}</langsyntaxhighlight>
 
=={{header|Nim}}==
Line 211:
As in the Julia version we translated, the code is identical to the code in [[Terminal_control/Restricted_width_positional_input/No_wrapping]] but with no width argument in the input call. See this version for some general comments about the code.
 
<langsyntaxhighlight Nimlang="nim">import strformat, terminal
 
proc eraseLineEnd() = stdout.write("\e[K")
Line 228:
setCursorPos(3, 5)
let s = inputXYUpto(3, 5, 8)
echo &"\n\n\nResult: You entered <<{s}>>"</langsyntaxhighlight>
 
=={{header|Phix}}==
<!--<langsyntaxhighlight Phixlang="phix">(notonline)-->
<span style="color: #008080;">without</span> <span style="color: #008080;">js</span> <span style="color: #000080;font-style:italic;">-- (position, wait_key, backspace)</span>
<span style="color: #008080;">function</span> <span style="color: #000000;">getInput</span><span style="color: #0000FF;">(</span><span style="color: #004080;">integer</span> <span style="color: #000000;">row</span><span style="color: #0000FF;">,</span> <span style="color: #000000;">col</span><span style="color: #0000FF;">,</span> <span style="color: #000000;">width</span><span style="color: #0000FF;">)</span>
Line 258:
<span style="color: #7060A8;">position</span><span style="color: #0000FF;">(</span><span style="color: #000000;">23</span><span style="color: #0000FF;">,</span><span style="color: #000000;">1</span><span style="color: #0000FF;">)</span>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"You entered '%s'\n"</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">s</span><span style="color: #0000FF;">})</span>
<!--</langsyntaxhighlight>-->
 
=={{header|Raku}}==
Line 267:
All printable character keys work, as does backspace and enter. Ctrl-c to exit. All other keys / key-combos are ignored.
 
<syntaxhighlight lang="raku" perl6line>use Term::termios;
 
constant $saved = Term::termios.new(fd => 1).getattr;
Line 329:
@screen = "\e[41m{' ' x $cols}\e[0m" xx $rows;
print "\e[H\e[J{@screen.join: "\n"}\e[$row;{$column}H$str\e[$row;{$column + $pointer}H";
}</langsyntaxhighlight>
 
=={{header|REXX}}==
(This REXX program only works with: &nbsp; REXX/Personal)
<langsyntaxhighlight lang="rexx">/*REXX pgm reads text from the terminal screen from a certain row, column, and length.*/
parse arg row col len . /*obtain optional arguments from the CL*/
if row=='' | row=="," then row= 3 /*Not specified? Then use the default.*/
Line 349:
say 'data read from terminal row ' row " col " col ' length ' len " is:"
say $
exit 0 /*stick a fork in it, we're all done. */</langsyntaxhighlight>
 
=={{header|Wren}}==
Due to a bug the ''Stdin.readByte()'' method can currently process only the first byte of a multi-byte character. The others are skipped.
<langsyntaxhighlight lang="ecmascript">import "io" for Stdin, Stdout
 
var textAtPos = Fn.new { |text, r, c|
Line 396:
 
var res = input.call(3, 5, 8)
System.print(res)</langsyntaxhighlight>
 
=={{header|XPL0}}==
<langsyntaxhighlight XPL0lang="xpl0">proc GetData(Col, Row, Width, Str);
int Col, Row, Width; char Str;
int I, C;
Line 430:
You entered: ");
Text(0, Str);
]</langsyntaxhighlight>
 
=={{header|Yabasic}}==
<langsyntaxhighlight Yabasiclang="yabasic">// Rosetta Code problem: http://rosettacode.org/wiki/Restricted_width_positional_input/No_wrapping
// by Galileo, 04/2022
 
Line 461:
text$ = getInput$(3, 5, 8)
print at(1, 23) "You entered: ", text$</langsyntaxhighlight>
10,327

edits