Terminal control/Hiding the cursor: Difference between revisions

From Rosetta Code
Content added Content deleted
({{omit from|ZX Spectrum Basic}})
({{header|Locomotive Basic}})
Line 1: Line 1:
{{task|Terminal control}}[[Category:Terminal Control]]
{{task|Terminal control}}[[Category:Terminal Control]]

The task is to hide the cursor and show it again.
The task is to hide the cursor and show it again.

=={{header|Locomotive Basic}}==
<lang basic>10 CURSOR 0: REM hide cursor
20 FOR l = 1 TO 2000: REM delay
30 NEXT l
40 CURSOR 1: REM show cursor</lang>


=={{header|PicoLisp}}==
=={{header|PicoLisp}}==

Revision as of 18:38, 6 June 2011

Task
Terminal control/Hiding the cursor
You are encouraged to solve this task according to the task description, using any language you may know.

The task is to hide the cursor and show it again.

Locomotive Basic

<lang basic>10 CURSOR 0: REM hide cursor 20 FOR l = 1 TO 2000: REM delay 30 NEXT l 40 CURSOR 1: REM show cursor</lang>

PicoLisp

<lang PicoLisp>(call "tput" "civis") # Invisible (wait 1000) (call "tput" "cvvis") # Visible</lang>

Tcl

<lang tcl>proc cursor Template:State "normal" {

   switch -- $state {

"normal" {set op "cnorm"} "invisible" {set op "civis"} "visible" {set op "cvvis"}

   }
   # Should be just: “exec tput $op” but it's not actually supported on my terminal...
   exec sh -c "tput $op || true"

}</lang> Demonstration code: <lang tcl>cursor normal puts "normal cursor" after 3000 cursor invisible puts "invisible cursor" after 3000 cursor visible puts "very visible cursor" after 3000 cursor normal puts "back to normal" after 1000</lang>