Sharpie is a terminal manipulation library based on NCurses and targeting .NET 6 (dotnet core) and above.
Or, if you prefer the Snake game...
Sharpie supports any platform that .NET 6.0+, ncurses, pdcurses and pdcurses-mod support. This essentially means that Linux
, Macos
and Windows
are supported on both x64
and ARM64
architectures.
For more information on supported platforms visit .NET Supported Platforms Page and NCurses Packages Page.
Sharpie provides unofficial builds for all the supported libraries located in the lib directory
Install the main library by adding the NuGet package:
dotnet add package Sharpie-Curses
Additionally, one can install packages containing prebuilt native libraries. These packages are useful when targeting platforms that do not bundle a supported curses library by default (e.g. Windows).
dotnet add package Sharpie-Libs-PdCurses
dotnet add package Sharpie-Libs-PdCursesMod
dotnet add package Sharpie-Libs-NCurses
Almost all of Curses functionality is exposed through Sharpie. What follows is a list of suppoerted features:
Terminal
allows interfacing with terminal functionality exposed by Curses,Screen
abstracts away the screen handling,Pad
abstracts away the off-screen windows (known as pads),SubPad
andSubWindow
carves out areas of their respective parents for easy management,EventPump
allows developers to listen for Curses events such as key presses, mouse moves and resizes,ColorManager
abstracts away the management of colors,- Even
SoftLabelKeys
are supported (though antiquated),
In addition to wrapping NCurses, this library also adds numerous quality-of-life improvements such as:
- Management of overlapping
Window
s within aScreen
, - Proper
Window
resizing and placement during terminal resizing events, - Automatic
Screen
refresh management and support for atomic refreshes, - Supports
SynchronizationContext
-type execution, - Supports protected/synchronized or raw access to all classes,
- And other small additions here and there...
There are a number of libraries out there that already offer bindings to NCurses. One of the more popular one is Terminal.Gui; and others such as dotnet-curses also exist.
So why another one? The are many reasons, but the most important ones are:
- There is no .NET, object-oriented version of NCurses bindings,
- Existing versions are old, or are targeting old versions of .NET which do not benefit from numerous advances in the .NET platform,
- No other library exposes most of Curses functionality,
- Testing is either very limited or completely non-existent.
- And finally -- because I wanted to dabble in Curses.
What follows is a small example of how to use the library:
// Create the terminal instance without any non-standard settings.
using var terminal = new Terminal(CursesBackend.Load(), new(ManagedWindows: true));
// Set the main screen attributes for text and drawings.
terminal.Screen.ColorMixture = terminal.Colors.MixColors(StandardColor.Green, StandardColor.Blue);
// Draw a border on the screen.
terminal.Screen.DrawBorder();
// Force a refresh so that all drawings will be actually pushed to teh screen.
terminal.Screen.Refresh();
// Create a child window within the terminal to operate within.
// The other cells contain the border so we don't want to overwrite those.
var subWindow = terminal.Screen.SubWindow(
new(1, 1, terminal.Screen.Size.Width - 2, terminal.Screen.Size.Height - 2));
// Process all events coming from the terminal.
foreach (var @event in terminal.Events.Listen(subWindow))
{
// Write the event that occured.
subWindow.WriteText($"{@event}\n");
// If the event is a resize, change the size of the child window
// to allow for the screen to maintain its border.
// And then redraw the border of the main screen.
if (@event is TerminalResizeEvent re)
{
subWindow.Size = new(re.Size.Width - 2, re.Size.Height - 2);
terminal.Screen.DrawBorder();
}
// If the user pressed CTRL+C, break the loop.
if (@event is KeyEvent { Key: Key.Character, Char.IsAscii: true, Char.Value: 'C', Modifiers: ModifierKey.Ctrl })
{
break;
}
}
As you can imagine, there are numerous other uses built into the library. Start out by reading Setting Up The Terminal wiki page.