mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-04 11:45:35 +08:00
Also added the ability to specify which files should be generated based on their file type. E.g. `cs2-dumper.exe -f hpp,json`
36 lines
716 B
Rust
36 lines
716 B
Rust
pub use buttons::*;
|
|
pub use interfaces::*;
|
|
pub use offsets::*;
|
|
pub use schemas::*;
|
|
|
|
use memflow::prelude::v1::*;
|
|
|
|
use crate::error::Result;
|
|
|
|
mod buttons;
|
|
mod interfaces;
|
|
mod offsets;
|
|
mod schemas;
|
|
|
|
#[derive(Debug)]
|
|
pub struct AnalysisResult {
|
|
pub buttons: Vec<Button>,
|
|
pub interfaces: InterfaceMap,
|
|
pub offsets: OffsetMap,
|
|
pub schemas: SchemaMap,
|
|
}
|
|
|
|
pub fn analyze_all(process: &mut IntoProcessInstanceArcBox<'_>) -> Result<AnalysisResult> {
|
|
let buttons = buttons(process)?;
|
|
let interfaces = interfaces(process)?;
|
|
let offsets = offsets(process)?;
|
|
let schemas = schemas(process)?;
|
|
|
|
Ok(AnalysisResult {
|
|
buttons,
|
|
interfaces,
|
|
offsets,
|
|
schemas,
|
|
})
|
|
}
|