wrecked

Crates.iowrecked
lib.rswrecked
version1.2.0
sourcesrc
created_at2020-10-10 02:34:39.692103
updated_at2022-08-25 20:30:10.523506
descriptionA terminal graphics library
homepagehttps://burnsomni.net/software/wrecked
repositoryhttps://burnsomni.net/git/wrecked
max_upload_size
id297876
size146,147
Quintin Smith (quintinfsmith)

documentation

README

Wrecked

A library for terminal-based graphics and UI.
Crates.io Crates.io Crates.io

About

Wrecked is (hopefully) a straightforward environment for rendering character-based graphics that uses a tree-like structure with rectangles as nodes. It exists partially because I wanted to give myself a reason to work in rust, but mostly because I didn't want to read through the ncurses documentation.

Setup

The latest stable version can be found at crates.io. In your project's Cargo.toml...

[dependencies]
wrecked = "^1.0.0"

Usage

use wrecked::{RectManager, RectColor};
use std::{time, thread};

// Instantiates the environment. Turns off input echo.
let mut rectmanager = RectManager::new();

// create a rectangle to put text in.
let mut rect_id = rectmanager.new_rect(wrecked::TOP).ok().unwrap();

// set the new rectangle's size
rectmanager.resize(rect_id, 16, 5);

// Add a string to the center of the rectangle
rectmanager.set_string(rect_id, 2, 3, "Hello World!");

// Make that rectangle blue
rectmanager.set_bg_color(rect_id, RectColor::BLUE);

// And finally underline the text of the rectangle
rectmanager.set_underline_flag(rect_id);

// Draw the environment
rectmanager.render();

// Sleep for 2 seconds so you can see the output before it gets torn down
thread::sleep(time::Duration::from_secs(2));

// take down the environment, and turn echo back on.
rectmanager.kill();
Commit count: 0

cargo fmt