forcebot_rs/src/main.rs

40 lines
886 B
Rust
Raw Normal View History

2023-12-19 20:38:20 -05:00
pub mod core;
2023-12-22 09:21:49 -05:00
pub mod modules;
use std::process::Output;
2024-02-04 14:28:37 -05:00
use crate::core::botinstance::ArcBox;
2023-12-19 20:38:20 -05:00
use crate::core::botinstance::BotInstance;
2024-02-12 01:25:12 -05:00
use tokio::sync::RwLock;
use std::sync::Arc;
pub type BotAR = Arc<RwLock<BotInstance>>;
2023-12-19 20:38:20 -05:00
2023-10-22 08:35:09 -04:00
#[tokio::main]
pub async fn main() {
2024-02-12 02:34:32 -05:00
let bot = BotInstance::init().await;
let a = Arc::clone(&bot.botmodules.botactions);
let a = a.read().await;
// let a = *a;
for (_,acts) in &*a {
for act in acts {
match act {
crate::core::botmodules::BotAction::C(b) => println!("bot actiions: {}",b.command),
crate::core::botmodules::BotAction::L(l) => println!("bot actiions: {}",l.name),
_ => println!("Not a valid match??"),
}
}
};
println!("Starting runner..");
2023-12-19 20:38:20 -05:00
2024-02-12 01:25:12 -05:00
bot.runner().await;
2024-02-04 14:28:37 -05:00
println!("ERROR : EXIT Game loop");
2023-12-19 21:43:03 -05:00
2023-10-22 08:35:09 -04:00
}