Skip to content

richwalm/hexes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

libhexes

Description

libhexes is a low-level terminal control library, including optimization. It's primary designed for games, being similar to graphical APIs like LibSDL, with the use of buffers and blitting features.

Primary Features

  • Buffers, with blitting support between them.
  • A double buffer system for screen updates.
  • Truecolor support.
  • Full Unicode support.
  • Resize, focus, & restore (from job control) detection.
  • Mouse support.
  • Key modifier support.
  • Title & icon control.
  • Terminal flags, like cursor adjustment and reverse video.
  • Terminal optimization.
  • Easy to use API.

Some features may only be available on certain terminals. For best results, an xterm compatible terminal is recommended, but should be functional on most. See the Compatibility notes for full details.

History/Motivation

libhexes was designed after I had a spark to produce a terminal game. The curses set of libraries was generally the usual way to go for this sort of thing. However, I found that its API to be lacking and, in my opinion, a bit of a mess.

I figured that I'll produce my own terminal control library, designed to be similar to a minimal 2D graphics library, primary with blitting and double-buffering. Although these features could be layered on to top of curses, as it had a design limitation of not supporting truecolor, I elected to build my own.

After a few months of work, my first version was ready.

Compatibility

When HexInit() is called, libhexes will attempt to load the locally installed terminfo database for the current terminal type, as determined by the TERM environment variable. It will also perform detection to check for color & Unicode support, along with some terminal quirks.

It was been designed in mind with support for most modern Linux terminal emulators, primary ones that support xterm control sequences, as well as the built-in VTs on Linux 4.15 (linux), OpenBSD 6.4 (VT220), and NetBSD 8.0 (VT100).

Due to the nature of terminals, it's not possible to find out exactly what the terminal is capable of. If you plan to make use of non-standard colors or attributes, I would suggest including options within your programs to allow users to select if these should be used. Using features that the user's terminal doesn't support could place it in an invalid state.

For special key handling, libhexes depends on terminfo for these. During development, I found that some terminfo databases aren't always correct. When using special keys, I would recommend making a fallback to an alphanumeric key as they should always be supported.

As for Windows systems, I had created an early port to it however I quickly discovered its console outputting compatibilities were remarkably slow, making it unsuitable for any use of heavy animation. In future, I aim to produce an SDL port that'll run on Windows.

Copyright

libhexes is written by Richard Walmsley richwalm+hexes@gmail.com and is released under the ISC license. Please see the included LICENSE.txt for the full text.

About

A low-level terminal control library, including optimization.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published