2020-01-28 05:18:19 +01:00
|
|
|
module term
|
|
|
|
|
2020-01-28 23:44:57 +01:00
|
|
|
import os
|
|
|
|
|
2020-09-08 21:00:10 +02:00
|
|
|
pub struct Coord16 {
|
|
|
|
pub:
|
2020-04-04 11:56:43 +02:00
|
|
|
x i16
|
|
|
|
y i16
|
|
|
|
}
|
|
|
|
|
|
|
|
struct SmallRect {
|
2020-05-16 16:12:23 +02:00
|
|
|
left i16
|
|
|
|
top i16
|
|
|
|
right i16
|
|
|
|
bottom i16
|
2020-01-28 23:44:57 +01:00
|
|
|
}
|
|
|
|
|
2020-09-08 21:00:10 +02:00
|
|
|
// win: CONSOLE_SCREEN_BUFFER_INFO
|
|
|
|
// https://docs.microsoft.com/en-us/windows/console/console-screen-buffer-info-str
|
2020-04-04 11:56:43 +02:00
|
|
|
struct ConsoleScreenBufferInfo {
|
2020-09-08 21:00:10 +02:00
|
|
|
dw_size Coord16
|
|
|
|
dw_cursor_position Coord16
|
2020-05-16 16:12:23 +02:00
|
|
|
w_attributes u16
|
|
|
|
sr_window SmallRect
|
2020-09-08 21:00:10 +02:00
|
|
|
dw_maximum_window_size Coord16
|
2020-01-28 23:44:57 +01:00
|
|
|
}
|
|
|
|
|
2020-09-08 21:00:10 +02:00
|
|
|
// ref - https://docs.microsoft.com/en-us/windows/console/getconsolescreenbufferinfo
|
2020-04-04 11:56:43 +02:00
|
|
|
fn C.GetConsoleScreenBufferInfo(handle os.HANDLE, info &ConsoleScreenBufferInfo) bool
|
2020-01-28 23:44:57 +01:00
|
|
|
|
2020-09-08 21:00:10 +02:00
|
|
|
// ref - https://docs.microsoft.com/en-us/windows/console/setconsoletitle
|
|
|
|
fn C.SetConsoleTitle(title &u16) bool
|
|
|
|
|
2020-01-28 23:44:57 +01:00
|
|
|
// get_terminal_size returns a number of colums and rows of terminal window.
|
|
|
|
pub fn get_terminal_size() (int, int) {
|
|
|
|
if is_atty(1) > 0 && os.getenv('TERM') != 'dumb' {
|
2020-04-04 11:56:43 +02:00
|
|
|
info := ConsoleScreenBufferInfo{}
|
2020-01-28 23:44:57 +01:00
|
|
|
if C.GetConsoleScreenBufferInfo(C.GetStdHandle(C.STD_OUTPUT_HANDLE), &info) {
|
2020-05-16 16:12:23 +02:00
|
|
|
columns := int(info.sr_window.right - info.sr_window.left + 1)
|
|
|
|
rows := int(info.sr_window.bottom - info.sr_window.top + 1)
|
2020-01-28 23:44:57 +01:00
|
|
|
return columns, rows
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 05:12:12 +01:00
|
|
|
return default_columns_size, default_rows_size
|
2020-01-28 05:18:19 +01:00
|
|
|
}
|
2020-09-08 21:00:10 +02:00
|
|
|
|
|
|
|
// get_cursor_position returns a Coord containing the current cursor position
|
|
|
|
pub fn get_cursor_position() Coord {
|
|
|
|
mut res := Coord{}
|
|
|
|
if is_atty(1) > 0 && os.getenv('TERM') != 'dumb' {
|
|
|
|
info := ConsoleScreenBufferInfo{}
|
|
|
|
if C.GetConsoleScreenBufferInfo(C.GetStdHandle(C.STD_OUTPUT_HANDLE), &info) {
|
|
|
|
res.x = info.dw_cursor_position.x
|
|
|
|
res.y = info.dw_cursor_position.y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
// set_terminal_title change the terminal title
|
|
|
|
pub fn set_terminal_title(title string) bool {
|
|
|
|
title_change := C.SetConsoleTitle(title.to_wide())
|
|
|
|
return title_change
|
|
|
|
}
|