v/examples/terminal_control.v

37 lines
606 B
V
Raw Permalink Normal View History

2019-07-01 17:09:22 +02:00
import term
fn main() {
term.erase_clear()
sleeping_line(5, 5, 5, '*')
standing_line(5, 5, 5, '*')
sleeping_line(5, 10, 5, '*')
standing_line(9, 5, 5, '*')
2019-07-01 17:09:22 +02:00
term.cursor_down(5)
print('\n')
println(term.bold(term.red('It Worked!')))
}
fn sleeping_line(x int, y int, size int, ch string) {
2019-07-01 17:09:22 +02:00
mut i := 0
for i < size {
2021-02-23 18:43:44 +01:00
term.set_cursor_position(
x: x + i
y: y
2021-02-23 18:43:44 +01:00
)
2019-07-01 17:09:22 +02:00
print(term.bold(term.yellow(ch)))
i++
}
}
fn standing_line(x int, y int, size int, ch string) {
2019-07-01 17:09:22 +02:00
mut i := 0
for i < size {
2021-02-23 18:43:44 +01:00
term.set_cursor_position(
x: x
y: y + i
2021-02-23 18:43:44 +01:00
)
2019-07-01 17:09:22 +02:00
print(term.bold(term.yellow(ch)))
i++
}
2019-07-16 17:59:07 +02:00
}