mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-04 08:35:34 +08:00
Check for config.json
file existence before proceeding
This commit is contained in:
parent
bcab0660f8
commit
a4e5aea2ea
16
src/main.rs
16
src/main.rs
@ -1,7 +1,7 @@
|
||||
#![allow(dead_code)]
|
||||
#![feature(offset_of)]
|
||||
|
||||
use anyhow::Result;
|
||||
use anyhow::{bail, Result};
|
||||
|
||||
use builder::*;
|
||||
|
||||
@ -14,6 +14,7 @@ use log::LevelFilter;
|
||||
use simplelog::{info, ColorChoice, ConfigBuilder, TermLogger, TerminalMode};
|
||||
|
||||
use std::fs;
|
||||
use std::path::Path;
|
||||
use std::time::Instant;
|
||||
|
||||
use util::Process;
|
||||
@ -43,7 +44,7 @@ struct Args {
|
||||
schemas: bool,
|
||||
|
||||
/// List of file builders to use.
|
||||
/// Valid values are: `.cs`, `.hpp`, `.json`, `.py`, `.rs`, `.yaml`.
|
||||
/// Valid values: `.cs`, `.hpp`, `.json`, `.py`, `.rs`, `.yaml`.
|
||||
#[arg(
|
||||
short,
|
||||
long,
|
||||
@ -89,14 +90,22 @@ fn main() -> Result<()> {
|
||||
|
||||
TermLogger::init(log_level, config, TerminalMode::Mixed, ColorChoice::Auto)?;
|
||||
|
||||
let now = Instant::now();
|
||||
// Check if the config file exists.
|
||||
if !Path::new("config.json").exists() {
|
||||
bail!("Missing config.json file");
|
||||
}
|
||||
|
||||
// Create the output directory if it doesn't exist.
|
||||
fs::create_dir_all(&output)?;
|
||||
|
||||
// Open a handle to the game process.
|
||||
let mut process = Process::new("cs2.exe")?;
|
||||
|
||||
process.initialize()?;
|
||||
|
||||
// Start the timer.
|
||||
let now = Instant::now();
|
||||
|
||||
let all = !(interfaces || offsets || schemas);
|
||||
|
||||
if schemas || all {
|
||||
@ -111,6 +120,7 @@ fn main() -> Result<()> {
|
||||
dump_offsets(&mut process, &mut builders, &output, indent)?;
|
||||
}
|
||||
|
||||
// Stop the timer.
|
||||
info!(
|
||||
"<on-green>Done!</> <green>Time elapsed: <b>{:?}</></>",
|
||||
now.elapsed()
|
||||
|
@ -47,7 +47,7 @@ impl Process {
|
||||
})
|
||||
}
|
||||
|
||||
/// Initializes the process by parsing the loaded modules.
|
||||
/// Initializes the `Process` instance by parsing all loaded modules in the process.
|
||||
///
|
||||
/// # Arguments
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user