Bound dice batches, game count, and report/help queues, and harden community votekick

This commit is contained in:
Jean Chevronnet 2026-07-19 13:34:48 +00:00
parent 64c4bbeae4
commit b2ffc01e52
No known key found for this signature in database
7 changed files with 59 additions and 7 deletions

View file

@ -9,7 +9,7 @@ use rand::Rng;
// Guardrails so a single expression can't ask us to roll forever.
const MAX_DICE: u64 = 99_999; // dice in one NdM roll
const MAX_SIDES: u64 = 99_999; // sides on a die
const MAX_TOTAL: u64 = 1_000_000; // dice rolled across the whole expression
pub const MAX_TOTAL: u64 = 1_000_000; // dice rolled across the whole expression
// One resolved dice roll, kept for the extended (EX) output.
pub struct Roll {
@ -21,6 +21,7 @@ pub struct Roll {
pub struct Evaluated {
pub value: f64,
pub rolls: Vec<Roll>,
pub total: u64, // dice rolled in this evaluation, for cross-repeat budgeting
}
// ---- tokens ----------------------------------------------------------------
@ -230,7 +231,7 @@ pub fn evaluate(input: &str, rng: &mut impl Rng) -> Result<Evaluated, String> {
if !value.is_finite() {
return Err("that doesn't come out to a real number".to_string());
}
Ok(Evaluated { value, rolls })
Ok(Evaluated { value, rolls, total: total_dice })
}
fn eval(ast: &Ast, rng: &mut impl Rng, rolls: &mut Vec<Roll>, total: &mut u64) -> Result<f64, String> {