genact 1.5.1

A nonsense activity generator
Documentation
//! Pretend to boot a system
use async_trait::async_trait;
use rand::seq::IndexedRandom;
use rand::{Rng, rng};
use yansi::Paint;

use crate::args::AppConfig;
use crate::data::BOOTLOG_LIST;
use crate::io::{csleep, dprint, newline};
use crate::modules::Module;

pub struct Bootlog;

#[async_trait(?Send)]
impl Module for Bootlog {
    fn name(&self) -> &'static str {
        "bootlog"
    }

    fn signature(&self) -> String {
        "bcdedit /set {current} bootlog Yes && shutdown /r".to_string()
    }

    async fn run(&self, appconfig: &AppConfig) {
        let mut rng = rng();
        let num_lines = rng.random_range(50..200);
        let mut burst_mode = false;
        let mut count_burst_lines = 0;

        for _ in 1..num_lines {
            let choice = BOOTLOG_LIST.choose(&mut rng).unwrap_or(&"");
            let mut line_sleep_length = rng.random_range(10..1000);
            let mut char_sleep_length = 5;
            let burst_lines = rng.random_range(10..50);

            if burst_mode && count_burst_lines < burst_lines {
                line_sleep_length = 30;
                char_sleep_length = 0;
            } else if count_burst_lines == burst_lines {
                burst_mode = false;
                count_burst_lines = 0;
            } else if !burst_mode {
                burst_mode = rng.random_bool(1.0 / 20.0);
            }

            let is_error = rng.random_bool(0.01);
            if is_error {
                dprint(format!("{}", format!("ERROR: {choice}").red()), 10).await;
            } else {
                let has_bold_word = rng.random_bool(0.1);
                if has_bold_word {
                    let mut words: Vec<String> =
                        choice.split_whitespace().map(String::from).collect();
                    words[0] = format!("{}", Paint::new(&words[0]).bold());
                    dprint(words.join(" ").to_string(), char_sleep_length).await;
                } else {
                    dprint(choice.to_string(), char_sleep_length).await;
                }
            }

            newline().await;
            if burst_mode {
                count_burst_lines += 1;
            }

            csleep(line_sleep_length).await;

            if appconfig.should_exit() {
                return;
            }
        }
    }
}