2019-12-17 09:59:15 -06:00
|
|
|
#include <chrono>
|
|
|
|
|
#include <indicators/progress_bar.hpp>
|
|
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
|
|
int main() {
|
2020-02-03 21:12:33 +01:00
|
|
|
indicators::ProgressBar bar{
|
2020-02-13 14:21:01 +05:30
|
|
|
indicators::option::BarWidth{50},
|
|
|
|
|
indicators::option::Start{" ["},
|
|
|
|
|
indicators::option::Fill{"█"},
|
|
|
|
|
indicators::option::Lead{"█"},
|
|
|
|
|
indicators::option::Remainder{"-"},
|
|
|
|
|
indicators::option::End{"]"},
|
|
|
|
|
indicators::option::PrefixText{"Training Gaze Network 👀"},
|
|
|
|
|
indicators::option::ForegroundColor{indicators::Color::yellow},
|
|
|
|
|
indicators::option::ShowElapsedTime{true},
|
|
|
|
|
indicators::option::ShowRemainingTime{true},
|
2020-04-06 11:25:54 -07:00
|
|
|
indicators::option::FontStyles{
|
|
|
|
|
std::vector<indicators::FontStyle>{indicators::FontStyle::bold}}
|
2020-02-03 21:12:33 +01:00
|
|
|
};
|
2019-12-17 09:59:15 -06:00
|
|
|
|
|
|
|
|
// Update bar state
|
|
|
|
|
while (true) {
|
|
|
|
|
bar.tick();
|
|
|
|
|
if (bar.is_completed())
|
|
|
|
|
break;
|
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Show cursor
|
|
|
|
|
std::cout << "\e[?25h";
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|