rust/src/lib/term.rs

108 lines
2.5 KiB
Rust
Raw Normal View History

2011-10-27 16:54:18 -05:00
/*
Module: term
2011-10-27 16:54:18 -05:00
Simple ANSI color library
*/
// TODO: Windows support.
2011-10-27 16:54:18 -05:00
/* Const: color_black */
const color_black: u8 = 0u8;
/* Const: color_red */
2011-07-27 07:19:39 -05:00
const color_red: u8 = 1u8;
2011-10-27 16:54:18 -05:00
/* Const: color_green */
2011-07-27 07:19:39 -05:00
const color_green: u8 = 2u8;
2011-10-27 16:54:18 -05:00
/* Const: color_yellow */
2011-07-27 07:19:39 -05:00
const color_yellow: u8 = 3u8;
2011-10-27 16:54:18 -05:00
/* Const: color_blue */
2011-07-27 07:19:39 -05:00
const color_blue: u8 = 4u8;
2011-10-27 16:54:18 -05:00
/* Const: color_magenta */
2011-07-27 07:19:39 -05:00
const color_magenta: u8 = 5u8;
2011-10-27 16:54:18 -05:00
/* Const: color_cyan */
2011-07-27 07:19:39 -05:00
const color_cyan: u8 = 6u8;
2011-10-27 16:54:18 -05:00
/* Const: color_light_gray */
2011-07-27 07:19:39 -05:00
const color_light_gray: u8 = 7u8;
2011-10-27 16:54:18 -05:00
/* Const: color_light_grey */
2011-07-27 07:19:39 -05:00
const color_light_grey: u8 = 7u8;
2011-10-27 16:54:18 -05:00
/* Const: color_dark_gray */
2011-07-27 07:19:39 -05:00
const color_dark_gray: u8 = 8u8;
2011-10-27 16:54:18 -05:00
/* Const: color_dark_grey */
2011-07-27 07:19:39 -05:00
const color_dark_grey: u8 = 8u8;
2011-10-27 16:54:18 -05:00
/* Const: color_bright_red */
2011-07-27 07:19:39 -05:00
const color_bright_red: u8 = 9u8;
2011-10-27 16:54:18 -05:00
/* Const: color_bright_green */
2011-07-27 07:19:39 -05:00
const color_bright_green: u8 = 10u8;
2011-10-27 16:54:18 -05:00
/* Const: color_bright_yellow */
2011-07-27 07:19:39 -05:00
const color_bright_yellow: u8 = 11u8;
2011-10-27 16:54:18 -05:00
/* Const: color_bright_blue */
2011-07-27 07:19:39 -05:00
const color_bright_blue: u8 = 12u8;
2011-10-27 16:54:18 -05:00
/* Const: color_bright_magenta */
2011-07-27 07:19:39 -05:00
const color_bright_magenta: u8 = 13u8;
2011-10-27 16:54:18 -05:00
/* Const: color_bright_cyan */
2011-07-27 07:19:39 -05:00
const color_bright_cyan: u8 = 14u8;
2011-10-27 16:54:18 -05:00
/* Const: color_bright_white */
2011-07-27 07:19:39 -05:00
const color_bright_white: u8 = 15u8;
fn esc(writer: io::buf_writer) { writer.write([0x1bu8, '[' as u8]); }
2011-10-27 16:54:18 -05:00
/*
Function: reset
Reset the foreground and background colors to default
*/
2011-08-11 21:14:38 -05:00
fn reset(writer: io::buf_writer) {
esc(writer);
writer.write(['0' as u8, 'm' as u8]);
}
2011-10-27 16:54:18 -05:00
/*
Function: color_supported
Returns true if the terminal supports color
*/
fn color_supported() -> bool {
2011-09-02 17:34:58 -05:00
let supported_terms = ["xterm-color", "xterm", "screen-bce"];
ret alt generic_os::getenv("TERM") {
2011-07-27 07:19:39 -05:00
option::some(env) {
2011-09-02 17:34:58 -05:00
for term: str in supported_terms {
if str::eq(term, env) { ret true; }
}
false
}
2011-07-27 07:19:39 -05:00
option::none. { false }
};
}
2011-08-11 21:14:38 -05:00
fn set_color(writer: io::buf_writer, first_char: u8, color: u8) {
assert (color < 16u8);
esc(writer);
let color = color;
if color >= 8u8 { writer.write(['1' as u8, ';' as u8]); color -= 8u8; }
writer.write([first_char, ('0' as u8) + color, 'm' as u8]);
}
2011-10-27 16:54:18 -05:00
/*
Function: fg
Set the foreground color
*/
2011-08-11 21:14:38 -05:00
fn fg(writer: io::buf_writer, color: u8) {
ret set_color(writer, '3' as u8, color);
}
2011-10-27 16:54:18 -05:00
/*
Function: fg
Set the background color
*/
2011-08-11 21:14:38 -05:00
fn bg(writer: io::buf_writer, color: u8) {
ret set_color(writer, '4' as u8, color);
}
// Local Variables:
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: