2020-01-11 01:59:02 -05:00
% notcurses-demo(1)
% nick black < nickblack @linux .com >
2020-11-27 16:49:56 -05:00
% v2.0.8
2020-01-11 01:59:02 -05:00
# NAME
notcurses-demo - Show off some notcurses features
# SYNOPSIS
2020-01-28 16:43:02 -05:00
**notcurses-demo** [**-h|--help**] [**-p path**] [**-d delaymult**]
2020-03-13 05:07:33 -04:00
[**-l loglevel**] [**-f renderfile**] [**-J jsonfile**] [**-m margins**]
[**-ikVc**] demospec
2020-01-11 01:59:02 -05:00
# DESCRIPTION
**notcurses-demo** demonstrates the capabilities of the notcurses library. It
can be run in any terminal emulator or console with a correct terminfo(5)
2020-03-13 05:07:33 -04:00
database, but is at is best in a 24bpp TrueColor RGB environment. If
2020-01-12 10:15:56 -05:00
**notcurses-demo** seems to generate garbage, something is likely configured in
a way that is going to prevent notcurses from working.
2020-01-11 01:59:02 -05:00
2020-02-04 22:49:46 -05:00
The demonstrations include (see NOTES below):
2020-01-11 01:59:02 -05:00
2020-06-06 23:14:24 -04:00
* (a)llglyph—scroll the glyphs of your font
2020-01-18 16:06:39 -05:00
* (b)oxes—pulsating boxes with a transparent center
2020-01-11 01:59:02 -05:00
* (c)hunli—the strongest woman in the world
2020-06-13 00:06:33 -04:00
* (d)ragon—the Harter-Heighway dragon curve
2020-01-18 16:06:39 -05:00
* (e)agle—they took some time off my life, back in the day
2020-01-18 21:17:05 -05:00
* (f)allin'—the screen falls apart under heavy blows
2020-01-18 16:06:39 -05:00
* (g)rid—a gradient of color lain atop a great grid
2020-02-06 20:55:18 -05:00
* (h)ighcon—high contrast text atop various colors
2020-06-05 15:14:07 -04:00
* (i)ntro—a setting of tone
2020-01-18 16:06:39 -05:00
* (j)ungle—low-bandwidth color cycling reveals ancient ruins
2020-10-28 04:56:20 -04:00
* (k)eller—the miracle of sight, and painting with Braille
2020-03-25 07:19:56 -04:00
* (l)uigi—a dashing Apennine plumber in a world of fire
2020-06-15 00:18:43 -04:00
* (m)ojibake—a selection of market-price emoji
2020-05-31 23:15:43 -04:00
* (n)ormal—a normal map of a friend, with effects
2020-06-05 15:14:07 -04:00
* (o)utro—a message of hope from the library's author
2020-04-20 23:26:41 -04:00
* (q)rcode—quick response codes (from ISO/IEC 18004:2015)
2020-02-05 17:29:42 -05:00
* (r)eel—demonstration of the ncreel high-level widget
2020-01-11 01:59:02 -05:00
* (s)liders—a missing-piece puzzle made up of colorful blocks
2020-01-18 16:06:39 -05:00
* (t)rans—an exploration of various transparencies
2020-01-11 01:59:02 -05:00
* (u)niblocks—a series of blocks detailing Unicode pages
* (v)iew—images and a video are rendered as text
2020-02-03 22:37:08 -05:00
* (w)hiteout—a great Nothing slowly robs the world of color
2020-01-18 16:06:39 -05:00
* (x)ray—stimulate a logo with energy
2020-06-05 15:14:07 -04:00
* (y)ield—the best laid schemes o' mice an'men gang aft agley
2020-07-28 13:58:38 -04:00
* (z)oo—see the marvelous widgets of the notcurses world
2020-01-11 01:59:02 -05:00
2020-02-18 13:12:25 +01:00
At any time, press 'q' to quit. The demo is best run in at least an 80x45 terminal.
2020-01-11 01:59:02 -05:00
# OPTIONS
**-p path**: Look in the specified **path** for data files.
2020-01-30 08:55:01 -05:00
**-d delaymult**: Apply a non-negative rational multiplier to the standard delay of 1s.
2020-01-11 01:59:02 -05:00
2020-08-09 17:40:59 -04:00
**-l loglevel**: Log everything (log level 8) or nothing (log level 0) to stderr.
2020-01-14 15:50:17 -05:00
2020-02-07 01:05:27 -05:00
**-f renderfile**: Render each frame to **renderfile** in addition to the screen.
2020-02-27 03:27:54 -05:00
**-J jsonfile**: Emit JSON summary of run to **jsonfile** .
2020-03-13 05:07:33 -04:00
**-m margins**: Define rendering margins (see below).
2020-01-11 01:59:02 -05:00
**-k**: Inhibit use of the alternate screen. Necessary if you want the output left on your terminal after the program exits.
**-c**: Do not attempt to seed the PRNG. This is useful when benchmarking.
2020-02-07 01:05:27 -05:00
**-i**: Continue after a failing demo.
2020-01-11 01:59:02 -05:00
**-h**: Print a usage message, and exit with success.
**-V**: Print the program name and version, and exit with success.
2020-05-31 23:15:43 -04:00
demospec: Select which demos to run, and what order to run them in. The
2020-10-28 04:56:20 -04:00
default is **ixezcydthnbkgmarwuvlsfjqo** . See above for a list of demos.
2020-01-11 01:59:02 -05:00
2020-03-13 05:07:33 -04:00
Default margins are all 0, and thus the full screen will be rendered. Using
**-m**, margins can be supplied. Provide a single number to set all four margins
to the same value, or four comma-delimited values for the top, right, bottom,
and left margins respectively. Negative margins are illegal.
2020-01-11 01:59:02 -05:00
# NOTES
2020-02-05 10:41:13 -05:00
2020-01-11 01:59:02 -05:00
Proper display requires:
2020-01-11 21:47:03 -05:00
2020-04-19 17:12:13 -04:00
* A terminal advertising the **rgb** terminfo(5) capability, or that the environment variable **COLORTERM** is defined to **24bit** (and that the terminal honors RGB escapes),
2020-01-11 01:59:02 -05:00
* A monospaced font, and
* Good Unicode support in your libc, font, and terminal emulator.
2020-10-23 10:52:18 -04:00
The Debian version of **notcurses-demo** leaves out certain multimedia
considered non-free under the Debian Free Software Guidelines. As a result, the
2020-10-28 04:56:20 -04:00
**chunli**, **eagle** , **jungle** , **keller** , **luigi** , and **view** demos
are unavailable through the Debian package. This applies to any distro which
uses the DFSG source tarball, including Ubuntu and Fedora.
2020-02-04 22:49:46 -05:00
2020-04-25 15:54:09 -04:00
If notcurses is built without multimedia support, the **chunli** , **eagle** ,
2020-10-28 04:56:20 -04:00
**keller**, **outro** , **view** , **xray** , and **yield** demos will be
partially or wholly unavailable. If notcurses is built without libqrcodegen,
the **qrcode** demo will be unavailable.
2020-01-17 08:09:19 -05:00
2020-02-19 18:44:53 -05:00
If **notcurses-demo** is run in a terminal lacking the **can_change** terminfo
2020-10-28 04:56:20 -04:00
capability, the **jungle** demo will be skipped.
2020-02-19 18:44:53 -05:00
2020-02-18 12:36:16 -05:00
The following keypresses are recognized (and are also available from the menu):
* **Ctrl-U**: Toggle the help screen.
* **H**: Toggle the HUD. The HUD shows the most recent and current demos'
runtime and number of rendered frames. It can be grabbed and moved
with the mouse.
* **Ctrl-R**: Restart the demo.
* **q**: Quit.
2020-09-16 14:25:25 -04:00
Benchmarking should be performed using ** -c** to get a well-defined PRNG seed.
JSON output via ** -J** will probably be useful.
2020-02-05 10:41:13 -05:00
# BUGS
2020-01-17 08:09:19 -05:00
2020-09-16 14:25:25 -04:00
Certain demos (especially **mojibake** and **allglyph** ) heavily exercise the
font rendering stack. If your font or rendering engine draws glyphs with width
different from that reported by the standard library's **wcwidth(3)** ,
Notcurses will have an incorrect notion of cursor placement, leading to
undesirable behavior.
2020-02-19 22:51:02 -05:00
# COPYRIGHT
2020-01-18 16:06:39 -05:00
2020-08-24 01:43:31 -04:00
* All code and design copyright Nick Black < nickblack @linux .com > .
2020-01-18 16:06:39 -05:00
* Images from Street Fighter II and Mega Man 2 copyright Capcom of America.
* Images from Super Mario Bros. copyright Nintendo of America.
* Images from Ninja Gaiden copyright Koei Tecmo America.
2020-02-05 10:41:13 -05:00
* Images from Final Fantasy copyright Square Enix Co Ltd.
2020-09-16 14:25:25 -04:00
* "Jungle with Rain" copyright Mark Ferrari/Living Worlds.
2020-01-18 16:06:39 -05:00
2020-01-11 01:59:02 -05:00
# SEE ALSO
2020-02-11 20:46:39 -05:00
**notcurses(3)**,
**ncurses(3NCURSES)**,
2020-09-16 14:25:25 -04:00
**wcwidth(3)**,
2020-02-11 20:46:39 -05:00
**terminfo(5)**