2017-11-24 20:31:33 -08:00
## tcell <img src=tcell.png align=right>
2015-09-26 23:37:54 -07:00
[](https://travis-ci.org/gdamore/tcell)
[](https://ci.appveyor.com/project/gdamore/tcell)
2015-10-06 09:57:49 -07:00
[](https://github.com/gdamore/tcell/blob/master/LICENSE)
2015-09-26 23:37:54 -07:00
[](https://gitter.im/gdamore/tcell)
[](https://godoc.org/github.com/gdamore/tcell)
2015-11-04 17:05:24 -08:00
[](http://goreportcard.com/report/gdamore/tcell)
2017-08-07 09:58:11 -07:00
[](https://codecov.io/gh/gdamore/tcell)
2015-09-26 23:37:54 -07:00
2015-10-05 22:53:22 -07:00
> _Tcell is a work in progress (Gamma).
2015-10-02 21:49:13 -07:00
> Please use with caution; interfaces may change in before final release.
> That said, our confidence in Tcell's stability is increasing. If you
> would like to use it in your own application, it is recommended that
> you drop a message to garrett@damore.org before commitment._
2015-09-26 23:37:54 -07:00
Package tcell provides a cell based view for text terminals, like xterm.
It was inspired by termbox, but differs from termbox in some important
2015-10-05 22:53:22 -07:00
ways. It also adds substantial functionality beyond termbox.
2015-10-02 21:49:13 -07:00
2015-10-28 14:07:40 -07:00
## Examples
2015-10-28 14:16:06 -07:00
* [proxima5 ](https://github.com/gdamore/proxima5 ) - space shooter ([video ](https://youtu.be/jNxKTCmY_bQ ))
2015-10-28 14:07:40 -07:00
* [govisor ](https://github.com/gdamore/govisor ) - service management UI ([screenshot ](http://2.bp.blogspot.com/--OsvnfzSNow/Vf7aqMw3zXI/AAAAAAAAARo/uOMtOvw4Sbg/s1600/Screen%2BShot%2B2015-09-20%2Bat%2B9.08.41%2BAM.png ))
2015-10-28 14:16:06 -07:00
* mouse demo - [screenshot ](http://2.bp.blogspot.com/-fWvW5opT0es/VhIdItdKqJI/AAAAAAAAATE/7Ojc0L1SpB0/s1600/Screen%2BShot%2B2015-10-04%2Bat%2B11.47.13%2BPM.png ) - included mouse test
2015-10-28 14:07:40 -07:00
* [gomatrix ](https://github.com/gdamore/gomatrix ) - converted from Termbox
2016-09-26 03:16:04 +03:00
* [micro ](https://github.com/zyedidia/micro/ ) - lightweight text editor with syntax-highlighting and themes
2017-05-02 03:50:55 +10:00
* [godu ](https://github.com/viktomas/godu ) - simple golang utility helping to discover large files/folders.
2018-01-08 09:31:29 -08:00
* [tview ](https://github.com/rivo/tview ) - rich interactive widgets for terminal UIs
2015-10-28 14:07:40 -07:00
2015-10-02 21:49:13 -07:00
## Pure Go Terminfo Database
2015-09-26 23:37:54 -07:00
First, it includes a full parser and expander for terminfo capability strings,
so that it can avoid hard coding escape strings for formatting. It also favors
portability, and includes support for all POSIX systems, at the slight expense
2015-10-02 21:49:13 -07:00
of needing cgo support for terminal initializations. (This may be corrected
2015-09-26 23:37:54 -07:00
when Go provides standard support for terminal handling via termio ioctls on
2015-10-02 21:49:13 -07:00
all POSIX platforms.) The database itself, while built using CGO, as well
as the parser for it, is implemented in Pure Go.
2017-05-01 20:57:32 +03:00
The database is also flexible & extensible, and can modified by either running a
2015-10-02 21:49:13 -07:00
program to build the database, or hand editing of simple JSON files.
## More Portable
Tcell is portable to a wider variety of systems. It relies on standard
POSIX supported function calls (on POSIX platforms) for setting terminal
modes, which leads to improved support for a broader array of platforms.
This does come at the cost of requiring your code to be able to use CGO, but
we believe that the vastly improved portability justifies this
requirement. Note that the functions called are part of the standard C
library, so there shouldn't be any additional external requirements beyond
that required for every POSIX program.
2015-09-26 23:37:54 -07:00
2015-10-02 21:49:13 -07:00
## No async IO
2015-10-09 17:04:56 -07:00
Tcell is able to operate without requiring SIGIO signals (unlike Termbox),
or asynchronous I/O, and can instead use standard Go file
2015-10-02 21:49:13 -07:00
objects and Go routines. This means it should be safe, especially for
use with programs that use exec, or otherwise need to manipulate the
tty streams. This model is also much closer to idiomatic Go, leading
to fewer surprises.
2015-10-05 22:53:22 -07:00
## Richer Unicode & non-Unicode support
2015-10-02 21:49:13 -07:00
Tcell includes enhanced support for Unicode, include wide characters and
combining characters, provided your terminal can support them. Note that
Windows terminals generally don't support the full Unicode repertoire.
2015-09-26 23:37:54 -07:00
2015-10-05 22:53:22 -07:00
It will also convert to and from Unicode locales, so that the program
can work with UTF-8 internally, and get reasonable output in other locales.
We try hard to convert to native characters on both input and output, and
2015-10-09 17:04:56 -07:00
on output Tcell even makes use of the alternate character set to facilitate
2015-10-05 22:53:22 -07:00
drawing certain characters.
2015-10-02 21:49:13 -07:00
## More Function Keys
It also has richer support for a larger number of
2015-09-26 23:37:54 -07:00
special keys that some terminals can send.
2015-10-02 21:49:13 -07:00
## Better color handling
2015-10-05 22:53:22 -07:00
Tcell will respect your terminal's color space as specified within your terminfo
2015-09-26 23:37:54 -07:00
entries, so that for example attempts to emit color sequences on VT100 terminals
won't result in unintended consequences.
2015-10-09 17:04:56 -07:00
In Windows mode, Tcell supports 16 colors, bold, dim, and reverse,
2015-09-28 22:28:41 -07:00
instead of just termbox's 8 colors with reverse. (Note that there is some
conflation with bold/dim and colors.)
2015-10-05 22:53:22 -07:00
Tcell maps 16 colors down to 8, for Terminals that need it. (The upper
8 colors are just brighter versions of the lower 8.)
2015-10-02 21:49:13 -07:00
## Better mouse support
2015-10-09 17:04:56 -07:00
Tcell supports enhanced mouse tracking mode, so your application can receive
2015-10-02 21:49:13 -07:00
regular mouse motion events, and wheel events, if your terminal supports it.
## Why not just patch termbox-go?
2015-09-26 23:37:54 -07:00
I started this project originally by submitting patches to the author of
go-termbox, but due to some fundamental differences of opinion, I thought
2015-10-05 22:53:22 -07:00
it might be simpler just to start from scratch. At this point, Tcell has
far exceeded the capabilities of termbox.
2015-09-26 23:37:54 -07:00
## Termbox compatibility
A compatibility layer for termbox is provided in the compat
directory. To use it, try importing "github.com/gdamore/tcell/termbox"
instead. Most termbox-go programs will probably work without further
modification.
2015-10-05 22:53:22 -07:00
## Working With Unicode
2015-09-26 23:37:54 -07:00
2015-10-09 17:04:56 -07:00
Internally Tcell uses UTF-8, just like Go. However, Tcell understands how to
2015-10-05 22:53:22 -07:00
convert to and from other character sets, using the capabilities of
the golang.org/x/text/encoding packages. Your application must supply
them, as the full set of the most common ones bloats the program by about
2015-10-09 17:04:56 -07:00
2MB. If you're lazy, and want them all anyway, see the encoding
sub-directory.
2015-09-26 23:37:54 -07:00
## Wide & Combining Characters
2015-10-09 17:04:56 -07:00
The SetContent() API takes a primary rune, and an optional list of combining
runes. If any of the runes is a wide (East Asian) rune occupying two cells,
then the library will skip output from the following cell, but care must be
taken in the application to avoid explicitly attempting to set content in the
next cell, otherwise the results are undefined. (Normally wide character
is displayed, and the other character is not; do not depend on that behavior.)
2015-09-26 23:37:54 -07:00
2015-09-28 22:28:41 -07:00
Experience has shown that the vanilla Windows 8 console application does not
support any of these characters properly, but at least some options like
2015-10-05 22:53:22 -07:00
ConEmu do support Wide characters at least.
2015-09-28 22:28:41 -07:00
2015-09-26 23:37:54 -07:00
## Colors
2015-10-09 17:04:56 -07:00
Tcell assumes the ANSI/XTerm color model, including the 256 color map that
2015-09-26 23:37:54 -07:00
XTerm uses when it supports 256 colors. The terminfo guidance will be
honored, with respect to the number of colors supported. Also, only
terminals which expose ANSI style setaf and setab will support color;
if you have a color terminal that only has setf and setb, please let me
know; it wouldn't be hard to add that if there is need.
2015-10-27 23:28:26 -07:00
## 24-bit Color
Tcell _supports true color_ ! (That is, if your terminal can support it,
Tcell can accurately display 24-bit color.)
To use 24-bit color, you need to use a terminal that supports it. Modern
xterm and similar teminal emulators can support this. As terminfo lacks any
way to describe this capability, we fabricate the capability for
terminals with names ending in *-truecolor. The stock distribution ships
with a database that defines xterm-truecolor. To try it out, set your
TERM variable to xterm-truecolor.
When using TrueColor, programs will display the colors that the programmer
intended, overriding any "themes" you may have set in your terminal
emulator. (For some cases, accurate color fidelity is more important
than respecting themes. For other cases, such as typical text apps that
only use a few colors, its more desirable to respect the themes that
the user has established.)
If you find this undesirable, you can either use a TERM variable
that lacks the TRUECOLOR setting, or set TCELL_TRUECOLOR=disable in your
environment.
2015-09-26 23:37:54 -07:00
## Performance
Reasonable attempts have been made to minimize sending data to terminals,
avoiding repeated sequences or drawing the same cell on refresh updates.
## Terminfo
2015-09-28 22:28:41 -07:00
(Not relevent for Windows users.)
2015-09-26 23:37:54 -07:00
The Terminfo implementation operates with two forms of database. The first
is the database.go file, which contains a number of real database entries
that are compiled into the program directly. This should minimize calling
out to database file searches.
The second is a JSON file, that contains the same information, which can
2015-11-03 12:59:01 -08:00
be located either by the $TCELLDB environment file, $HOME/.tcelldb, or is
located in the Go source directory as database.json.
2015-09-26 23:37:54 -07:00
These files (both the Go database.go and the database.json) file can be
generated using the mkinfo.go program. If you need to regnerate the
entire set for some reason, run the mkdatabase.sh file. The generation
uses the terminfo routines on the system to populate the data files.
The mkinfo.go program can also be used to generate specific database entries
for named terminals, in case your favorite terminal is missing. (If you
find that this is the case, please let me know and I'll try to add it!)
Tcell requires that the terminal support the 'cup' mode of cursor addressing.
Terminals without absolute cursor addressability are not supported.
This is unlikely to be a problem; such terminals have not been mass produced
since the early 1970s.
## Mouse Support
Mouse support is detected via the "kmous" terminfo variable, however,
enablement/disablement and decoding mouse events is done using hard coded
sequences based on the XTerm X11 model. As of this writing all popular
terminals with mouse tracking support this model. (Full terminfo support
is not possible as terminfo sequences are not defined.)
2015-09-28 22:28:41 -07:00
On Windows, the mouse works normally.
2015-10-02 21:49:13 -07:00
Mouse wheel buttons on various terminals are known to work, but the support
in terminal emulators, as well as support for various buttons and
live mouse tracking, varies widely. As a particular datum, MacOS X Terminal
does not support Mouse events at all (as of MacOS 10.10, aka Yosemite.) The
excellent iTerm application is fully supported, as is vanilla XTerm.
2015-09-28 22:28:41 -07:00
2015-10-02 21:49:13 -07:00
Mouse tracking with live tracking also varies widely. Current XTerm
implementations, as well as current Screen and iTerm2, and Windows
consoles, all support this quite nicely. On other platforms you might
find that only mouse click and release events are reported, with
no intervening motion events. It really depends on your terminal.
2015-09-28 22:28:41 -07:00
2015-10-05 22:53:22 -07:00
## Testablity
There is a SimulationScreen, that can be used to simulate a real screen
for automated testing. The supplied tests do this. The simulation contains
event delivery, screen resizing support, and capabilities to inject events
and examine "physical" screen contents.
2015-09-26 23:37:54 -07:00
## Platforms
2015-10-09 17:04:56 -07:00
### Systems (Linux, FreeBSD, MacOS, Solaris, etc.)
2015-09-28 22:28:41 -07:00
On POSIX systems, a POSIX termios implementation with /dev/tty is required.
2017-08-07 10:11:46 -07:00
On a small subset of these platforms (such as Solaris/illumos), we require
cgo to run, in order to access termios. (Note that Linux and BSD systems
do not require CGO for most purposes.)
(Note: CGO support is required if you wish to rebuild the terminal database
from the system's native terminfo binary files. This is because we use the
system's native libterminfo to access that binary data. We probably could
eliminate that in the future by using a terminfo decompiler such as infocmp.)
2015-09-26 23:37:54 -07:00
2015-10-09 17:04:56 -07:00
### Windows
2015-09-28 22:28:41 -07:00
Windows console mode applications are supported. Unfortunately mintty
2015-10-02 21:49:13 -07:00
and other cygwin style applications are not supported.
Modern console applications like ConEmu support all the good features
(resize, mouse tracking, etc.)
2015-09-28 22:28:41 -07:00
I haven't figured out how to cleanly resolve the dichotomy between cygwin
style termios and the Windows Console API; it seems that perhaps nobody else
2015-10-02 21:49:13 -07:00
has either. If anyone has suggestions, let me know! Really, if you're
using a Windows application, you should use the native Windows console or a
2017-08-07 10:11:46 -07:00
fully compatible console implementation. Hopefully the Windows 10 console
2015-10-09 17:04:56 -07:00
is more functional in this regard.
### Plan9 and Native Client (Nacl)
2015-10-02 21:49:13 -07:00
2015-10-05 22:53:22 -07:00
The nacl and plan9 platforms won't work, but compilation stubs are supplied
for folks that want to include parts of this in software targetting those
2015-10-09 17:04:56 -07:00
platforms. The Simulation screen works, but as Tcell doesn't know how to
allocate a real screen object on those platforms, NewScreen() will fail.
2017-11-24 16:04:27 -08:00
### Commercial Support
This software is absolutely free, but if you want to obtain commercial
support (giving prioritized access to the developer, etc. on an hourly
rate), please drop a line to info@staysail .tech
I also welcome donations at Patreon, if you just want to feel good about
defraying development costs: https://www.patreon.com/gedamore