Difference between revisions of "Term (API)"

From ComputerCraft Wiki
Jump to: navigation, search
Line 15: Line 15:
 
|term.getCursorPos()
 
|term.getCursorPos()
 
|Returns position of the cursor
 
|Returns position of the cursor
 +
|-
 
|term.setCursorPos( x, y )
 
|term.setCursorPos( x, y )
 
|Sets the cursor's position.
 
|Sets the cursor's position.

Revision as of 05:49, 31 January 2012

The Terminal API provides functions for ASCII graphics.

Method name Description
term.write( text ) Writes text to the screen.
term.clear() Clears the entire screen
term.clearLine() Clears the line the cursor is on
term.getCursorPos() Returns position of the cursor
term.setCursorPos( x, y ) Sets the cursor's position.
term.setCursorBlink( b ) Disables the blinking or turns it on.
term.getSize() Gets the size of the screen. (Good for if you're making something to be compatible with both Turtles and Consoles.
term.scroll( n ) Scrolls the terminal.