3个版本

0.1.2 2024年7月19日
0.1.1 2024年7月19日
0.1.0 2024年7月16日

#2057 in 过程宏

Download history 97/week @ 2024-07-11 226/week @ 2024-07-18 46/week @ 2024-07-25

每月369次下载
2个crate中使用(通过d2-stampede

MIT/Apache

380KB
9K SLoC

D2-Stampede

Dota 2回放解析器,用Rust编写。

快速开始

use d2_stampede::prelude::*;
use d2_stampede::proto::*;

// Create struct that implements Default trait
#[derive(Default)]
struct Chat;

// Mark impl block with observer attribute
#[observer]
impl Chat {
    #[on_message] // Use on_message attribute to mark protobuf message handler
    fn handle_chat_msg(
        &mut self,
        ctx: &Context,
        chat_msg: CDotaUserMsgChatMessage, // Use any protobuf message as an argument
    ) -> ObserverResult {
        if let Ok(pr) = ctx.entities().get_by_class_name("CDOTA_PlayerResource") {
            let name: String = property!(
                pr,
                "m_vecPlayerData.{:04}.m_iszPlayerName",
                chat_msg.source_player_id()
            );
            println!("{}: {}", name, chat_msg.message_text());
        }
        Ok(())
    }
}

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Read replay file
    let replay = unsafe { memmap2::Mmap::map(&std::fs::File::open("replay.dem")?)? };

    // Create parser 
    let mut parser = Parser::new(&replay)?;

    // Register observers
    parser.register_observer::<Chat>();

    // Parse replay from start to end
    parser.run_to_end()?;

    // Or parse only parts of replay
    parser.jump_to_tick(10000)?;
    parser.run_to_tick(11000)?;

    Ok(())
}

示例

d2-stampede-examples

下载和构建

git clone https://github.com/Rupas1k/d2-stampede.git
cd d2-stampede
cargo build --release

odota-rust - OpenDota解析器的Rust版本
d2wm-parser - 具有Python绑定的wards解析器

依赖关系

~0.6–2.9MB
~48K SLoC