#osu #bot #handler #tokio #blazing #command #bancho-bot

nasus

nasus is a blazing fast osu BanchoBot handler 📬

6 releases

0.2.1 May 15, 2023
0.2.0 Feb 20, 2023
0.1.3 Feb 16, 2023

#1469 in Network programming

30 downloads per month

MIT license

11KB
214 lines

nasus

nasus is a osu BanchoBot handler 📬

Example

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    use nasus::{BanchoConfig, CmdIn, CmdOut, Nasus};

    let config = BanchoConfig {
        username: "Auracle".to_string(),
        irc_token: "IRC Token".to_string(),
        host: "irc.ppy.sh".to_string(),
        port: 6667,
        bot: false,
    };
    let mut nasus = Nasus::new(config).await?;

    loop {
        nasus.work().await?;

        match nasus.inputs.pop() {
            Some(cmd_in) => match cmd_in {
                CmdIn::AuthSuccess { message } => println!("{}", message),
                CmdIn::AuthFailure { message } => println!("{}", message),
                CmdIn::ReceivePM {
                    sender,
                    receiver,
                    message,
                    action,
                } => {
                    println!("{}: {}", sender, message);

                    let replies = match action {
                        true => "I see what you did there",
                        false => "I'm not a bot, I swear!",
                    };
                    let cmd_out = CmdOut::SendPM {
                        receiver: sender,
                        message: replies.to_string(),
                    };
                    nasus.write_command(cmd_out).await?;
                    println!("{}: {}", receiver, replies);
                }
                _ => {}
            },
            None => {}
        };

        match nasus.outputs.pop() {
            Some(cmd_out) => match cmd_out {
                CmdOut::SendPM { receiver, message } => println!("{}: {}", receiver, message),
                _ => {}
            },
            None => {}
        };
    }
}

Commands

Commands we receive from BanchoBot are CmdIn

AuthSuccess { message: String }
AuthFailure { message: String }
MOTDStart { message: String }
MOTDMiddle { message: String }
MOTDEnd { message: String }
Quit { user: String }
UserNotFound
ReceivePM {
    sender: String
    receiver: String
    message: String
    action: bool
}
Ping
Pong

Commands we send to BanchoBot are CmdOut

Login { username: String, irc_token: String }
SendPM { receiver: String, message: String }
Ping
Pong

Dependencies

~3–9.5MB
~72K SLoC