minicrossterm/examples/program_examples
Timon ff9b5d9a39
Refactored winapi and moved code to (crossterm_winapi) (#67)
* Refactored winapi and moved some code to its own crate (crossterm_winapi).
2018-12-31 10:55:48 -08:00
..
first_depth_search Putted Screen behind an Option. Now when you call the functions: color, cursor, terminal, input you won't need to provide a Screen anymore. 2018-11-21 07:54:16 -08:00
snake Refactored winapi and moved code to (crossterm_winapi) (#67) 2018-12-31 10:55:48 -08:00
command_bar.rs Fixed readline bug (#65) 2018-12-28 05:58:09 -08:00
logging.rs Fixed readline bug (#65) 2018-12-28 05:58:09 -08:00
README.md updated doc 2018-08-25 12:00:39 +02:00

This folder will contain some examples of how to use this crate in an real live environment.

If you have created a game or something feel free to upload it, would be a great help for other people and me to make this crate better!

The programs are:

  • First depth search:

    This is an search algorithm implemented visually. This program uses the following functionalities: cursor movement, coloring, alternate screen and terminal clearing. To run this use cargo run in the directory of first depth search.

  • Snake

    This is a snake game implemented with this library. To run this use cargo run in the directory of snake.

  • Command Bar:

    This is a terminal application where multiple threads write to the output while you can enter commands asynchronously. To run this use cargo run --example command_bar

  • Logging:

    This is an async logging program to demonstrate asynchronous logging with an queue. To run this use cargo run --example logging