README.adoc 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. = tcell
  2. image:https://img.shields.io/travis/gdamore/tcell.svg?label=linux[Linux Status,link="https://travis-ci.org/gdamore/tcell"]
  3. image:https://img.shields.io/appveyor/ci/gdamore/tcell.svg?label=windows[Windows Status,link="https://ci.appveyor.com/project/gdamore/tcell"]
  4. image:https://img.shields.io/badge/license-APACHE2-blue.svg[Apache License,link="https://github.com/gdamore/tcell/blob/master/LICENSE"]
  5. image:https://img.shields.io/badge/godoc-reference-blue.svg[GoDoc,link="https://godoc.org/github.com/gdamore/tcell"]
  6. image:http://goreportcard.com/badge/gdamore/tcell[Go Report Card,link="http://goreportcard.com/report/gdamore/tcell"]
  7. image:https://img.shields.io/discord/639503822733180969?label=discord[Discord,link="https://discord.gg/urTTxDN"]
  8. image:https://codecov.io/gh/gdamore/tcell/branch/master/graph/badge.svg[codecov,link="https://codecov.io/gh/gdamore/tcell"]
  9. [cols="2",grid="none"]
  10. |===
  11. |_Tcell_ is a _Go_ package that provides a cell based view for text terminals, like _xterm_.
  12. It was inspired by _termbox_, but includes many additional improvements.
  13. a|[.right]
  14. image::logos/tcell.png[float="right"]
  15. |===
  16. ## Examples
  17. * https://github.com/gdamore/proxima5[proxima5] - space shooter (https://youtu.be/jNxKTCmY_bQ[video])
  18. * https://github.com/gdamore/govisor[govisor] - service management UI (http://2.bp.blogspot.com/--OsvnfzSNow/Vf7aqMw3zXI/AAAAAAAAARo/uOMtOvw4Sbg/s1600/Screen%2BShot%2B2015-09-20%2Bat%2B9.08.41%2BAM.png[screenshot])
  19. * mouse demo - included mouse test (http://2.bp.blogspot.com/-fWvW5opT0es/VhIdItdKqJI/AAAAAAAAATE/7Ojc0L1SpB0/s1600/Screen%2BShot%2B2015-10-04%2Bat%2B11.47.13%2BPM.png[screenshot])
  20. * https://github.com/gdamore/gomatrix[gomatrix] - converted from Termbox
  21. * https://github.com/zyedidia/micro/[micro] - lightweight text editor with syntax-highlighting and themes
  22. * https://github.com/viktomas/godu[godu] - simple golang utility helping to discover large files/folders.
  23. * https://github.com/rivo/tview[tview] - rich interactive widgets for terminal UIs
  24. * https://github.com/marcusolsson/tui-go[tui-go] - UI library for terminal apps (_deprecated_)
  25. * https://github.com/rgm3/gomandelbrot[gomandelbrot] - Mandelbrot!
  26. * https://github.com/senorprogrammer/wtf[WTF]- Personal information dashboard for your terminal
  27. * https://github.com/browsh-org/browsh[browsh] - A fully-modern text-based browser, rendering to TTY and browsers (https://www.youtube.com/watch?v=HZq86XfBoRo[video])
  28. * https://github.com/sachaos/go-life[go-life] - Conway's Game of Life.
  29. * https://github.com/gcla/gowid[gowid] - compositional widgets for terminal UIs, inspired by urwid
  30. * https://termshark.io[termshark] - a terminal UI for tshark, inspired by Wireshark, built on gowid
  31. * https://github.com/MichaelS11/go-tetris[go-tetris] - Go Tetris with AI option
  32. * https://github.com/junegunn/fzf[fzf] - A command-line fuzzy finder
  33. * https://github.com/esimov/ascii-fluid[ascii-fluid] - A terminal based ASCII fluid simulation controlled by webcam
  34. * https://gitlab.com/tslocum/cbind[cbind] - Provides key event encoding, decoding and handling
  35. * https://github.com/spinzed/tpong[tpong] - The old-school Pong remade in terminal
  36. ## Pure Go Terminfo Database
  37. _Tcell_ includes a full parser and expander for terminfo capability strings,
  38. so that it can avoid hard coding escape strings for formatting. It also favors
  39. portability, and includes support for all POSIX systems.
  40. The database is also flexible & extensible, and can modified by either running
  41. a program to build the entire database, or an entry for just a single terminal.
  42. ## More Portable
  43. _Tcell_ is portable to a wide variety of systems.
  44. _Tcell_ is believed
  45. to work with all of the systems officially supported by golang with
  46. the exception of nacl (which lacks any kind of a terminal interface).
  47. (Plan9 is not supported by _Tcell_, but it is experimental status only
  48. in golang.) _Tcell_ is pure Go, without any need for CGO.
  49. ## No Async IO
  50. _Tcell_ is able to operate without requiring `SIGIO` signals (unlike _termbox_),
  51. or asynchronous I/O, and can instead use standard Go file
  52. objects and Go routines.
  53. This means it should be safe, especially for
  54. use with programs that use exec, or otherwise need to manipulate the
  55. tty streams.
  56. This model is also much closer to idiomatic Go, leading
  57. to fewer surprises.
  58. ## Rich Unicode & non-Unicode support
  59. _Tcell_ includes enhanced support for Unicode, including wide characters and
  60. combining characters, provided your terminal can support them.
  61. Note that
  62. Windows terminals generally don't support the full Unicode repertoire.
  63. It will also convert to and from Unicode locales, so that the program
  64. can work with UTF-8 internally, and get reasonable output in other locales.
  65. _Tcell_ tries hard to convert to native characters on both input and output, and
  66. on output _Tcell_ even makes use of the alternate character set to facilitate
  67. drawing certain characters.
  68. ## More Function Keys
  69. _Tcell_ also has richer support for a larger number of special keys that some terminals can send.
  70. ## Better Color Handling
  71. _Tcell_ will respect your terminal's color space as specified within your terminfo
  72. entries, so that for example attempts to emit color sequences on VT100 terminals
  73. won't result in unintended consequences.
  74. In legacy Windows mode, _Tcell_ supports 16 colors, bold, dim, and reverse,
  75. instead of just termbox's 8 colors with reverse. (Note that there is some
  76. conflation with bold/dim and colors.)
  77. Modern Windows 10 can benefit from much richer colors however.
  78. _Tcell_ maps 16 colors down to 8, for terminals that need it.
  79. (The upper 8 colors are just brighter versions of the lower 8.)
  80. ## Better Mouse Support
  81. _Tcell_ supports enhanced mouse tracking mode, so your application can receive
  82. regular mouse motion events, and wheel events, if your terminal supports it.
  83. (Note: The Windows 10 Terminal application suffers from a flaw in this regard,
  84. and does not support mouse interaction. The stock Windows 10 console host
  85. fired up with cmd.exe or PowerShell works fine however.)
  86. ## _Termbox_ Compatibility
  87. A compatibility layer for _termbox_ is provided in the `compat` directory.
  88. To use it, try importing `github.com/gdamore/tcell/termbox` instead.
  89. Most _termbox-go_ programs will probably work without further modification.
  90. ## Working With Unicode
  91. Internally Tcell uses UTF-8, just like Go.
  92. However, Tcell understands how to
  93. convert to and from other character sets, using the capabilities of
  94. the `golang.org/x/text/encoding packages`.
  95. Your application must supply
  96. them, as the full set of the most common ones bloats the program by about 2MB.
  97. If you're lazy, and want them all anyway, see the `encoding` sub-directory.
  98. ## Wide & Combining Characters
  99. The `SetContent()` API takes a primary rune, and an optional list of combining runes.
  100. If any of the runes is a wide (East Asian) rune occupying two cells,
  101. then the library will skip output from the following cell, but care must be
  102. taken in the application to avoid explicitly attempting to set content in the
  103. next cell, otherwise the results are undefined. (Normally wide character
  104. is displayed, and the other character is not; do not depend on that behavior.)
  105. Experience has shown that the vanilla Windows 8 console application does not
  106. support any of these characters properly, but at least some options like
  107. _ConEmu_ do support Wide characters.
  108. ## Colors
  109. _Tcell_ assumes the ANSI/XTerm color model, including the 256 color map that
  110. XTerm uses when it supports 256 colors. The terminfo guidance will be
  111. honored, with respect to the number of colors supported. Also, only
  112. terminals which expose ANSI style `setaf` and `setab` will support color;
  113. if you have a color terminal that only has `setf` and `setb`, please let me
  114. know; it wouldn't be hard to add that if there is need.
  115. ## 24-bit Color
  116. _Tcell_ _supports true color_! (That is, if your terminal can support it,
  117. _Tcell_ can accurately display 24-bit color.)
  118. To use 24-bit color, you need to use a terminal that supports it. Modern
  119. xterm and similar teminal emulators can support this. As terminfo lacks any
  120. way to describe this capability, we fabricate the capability for
  121. terminals with names ending in `*-truecolor`. The stock distribution ships
  122. with a database that defines `xterm-truecolor`.
  123. To try it out, set your
  124. `TERM` variable to `xterm-truecolor`.
  125. When using TrueColor, programs will display the colors that the programmer
  126. intended, overriding any "`themes`" you may have set in your terminal
  127. emulator. (For some cases, accurate color fidelity is more important
  128. than respecting themes. For other cases, such as typical text apps that
  129. only use a few colors, its more desirable to respect the themes that
  130. the user has established.)
  131. If you find this undesirable, you can either use a `TERM` variable
  132. that lacks the `TRUECOLOR` setting, or set `TCELL_TRUECOLOR=disable` in your
  133. environment.
  134. ## Performance
  135. Reasonable attempts have been made to minimize sending data to terminals,
  136. avoiding repeated sequences or drawing the same cell on refresh updates.
  137. ## Terminfo
  138. (Not relevent for Windows users.)
  139. The Terminfo implementation operates with two forms of database. The first
  140. is the built-in go database, which contains a number of real database entries
  141. that are compiled into the program directly. This should minimize calling
  142. out to database file searches.
  143. The second is in the form of JSON files, that contain the same information,
  144. which can be located either by the `$TCELLDB` environment file, `$HOME/.tcelldb`,
  145. or is located in the Go source directory as `database.json`.
  146. These files (both the Go and the JSON files) can be generated using the
  147. mkinfo.go program. If you need to regnerate the entire set for some reason,
  148. run the mkdatabase.sh file. The generation uses the infocmp(1) program on
  149. the system to collect the necessary information.
  150. The `mkinfo.go` program can also be used to generate specific database entries
  151. for named terminals, in case your favorite terminal is missing. (If you
  152. find that this is the case, please let me know and I'll try to add it!)
  153. _Tcell_ requires that the terminal support the `cup` mode of cursor addressing.
  154. Terminals without absolute cursor addressability are not supported.
  155. This is unlikely to be a problem; such terminals have not been mass produced
  156. since the early 1970s.
  157. ## Mouse Support
  158. Mouse support is detected via the `kmous` terminfo variable, however,
  159. enablement/disablement and decoding mouse events is done using hard coded
  160. sequences based on the XTerm X11 model. As of this writing all popular
  161. terminals with mouse tracking support this model. (Full terminfo support
  162. is not possible as terminfo sequences are not defined.)
  163. On Windows, the mouse works normally.
  164. Mouse wheel buttons on various terminals are known to work, but the support
  165. in terminal emulators, as well as support for various buttons and
  166. live mouse tracking, varies widely. Modern _xterm_, macOS _Terminal_, and _iTerm_ all work well.
  167. ## Testablity
  168. There is a `SimulationScreen`, that can be used to simulate a real screen
  169. for automated testing. The supplied tests do this. The simulation contains
  170. event delivery, screen resizing support, and capabilities to inject events
  171. and examine "`physical`" screen contents.
  172. ## Platforms
  173. ### POSIX (Linux, FreeBSD, macOS, Solaris, etc.)
  174. For mainstream systems with a suitably well defined system call interface
  175. to tty settings, everything works using pure Go.
  176. For the remainder (right now means only Solaris/illumos) we use POSIX function
  177. calls to manage termios, which implies that CGO is required on those platforms.
  178. ### Windows
  179. Windows console mode applications are supported. Unfortunately _mintty_
  180. and other _cygwin_ style applications are not supported.
  181. Modern console applications like ConEmu, as well as the Windows 10
  182. console itself, support all the good features (resize, mouse tracking, etc.)
  183. I haven't figured out how to cleanly resolve the dichotomy between cygwin
  184. style termios and the Windows Console API; it seems that perhaps nobody else
  185. has either. If anyone has suggestions, let me know! Really, if you're
  186. using a Windows application, you should use the native Windows console or a
  187. fully compatible console implementation.
  188. ### Plan9 and Native Client (Nacl)
  189. The nacl and plan9 platforms won't work, but compilation stubs are supplied
  190. for folks that want to include parts of this in software targetting those
  191. platforms. The Simulation screen works, but as Tcell doesn't know how to
  192. allocate a real screen object on those platforms, `NewScreen()` will fail.
  193. If anyone has wisdom about how to improve support for either of these,
  194. please let me know. PRs are especially welcome.
  195. ### Commercial Support
  196. _Tcell_ is absolutely free, but if you want to obtain commercial, professional support, there are options.
  197. [cols="2",align="center",frame="none", grid="none"]
  198. |===
  199. ^.^|
  200. image:logos/tidelift.png[100,100]
  201. a|
  202. https://tidelift.com/[Tidelift] subscriptions include support for _Tcell_, as well as many other open source packages.
  203. ^.^|
  204. image:logos/staysail.png[100,100]
  205. a|
  206. mailto:info@staysail.tech[Staysail Systems, Inc.] offers direct support, and custom development around _Tcell_ on an hourly basis.
  207. ^.^|
  208. image:logos/patreon.png[100,100]
  209. a|I also welcome donations at https://www.patreon.com/gedamore/[Patreon], if you just want to make a contribution.
  210. |===