8 releases

0.3.5 Mar 18, 2023
0.3.4 Jan 1, 2023
0.3.3 Jul 3, 2021
0.3.2 May 19, 2020
0.1.0 Aug 6, 2019

#558 in Parser implementations

Download history 13/week @ 2023-12-15 21/week @ 2023-12-22 45/week @ 2023-12-29 11/week @ 2024-01-05 29/week @ 2024-01-12 1/week @ 2024-01-19 17/week @ 2024-02-09 19/week @ 2024-02-16 14/week @ 2024-02-23 6/week @ 2024-03-01 12/week @ 2024-03-08 3/week @ 2024-03-15 6/week @ 2024-03-22 39/week @ 2024-03-29

61 downloads per month
Used in 2 crates (via rlifesrc-lib)

MIT license

67KB
1.5K SLoC

CA rules parsers

Travis (.org) Crates.io Docs.rs 中文

Parsing rule strings of life-like and other cellular automata.

Currently the following rules are supported:

For non-Generations rules, four different notations are supported:

For Generations rules, four different notations are supported:

  • B/S notation (B357/S3457/C5)
  • The notation used by Golly (3457/357/5)
  • The notation used by Catagolue (g5b357s3457)
  • MAP strings for non-isotropic rules (MAPARYBFxZpF38WaRd/aZZ//hZpF39pln/+aZZ//pZp/ukWaRd/aZZ//mmWf/6Waf7paZZ//pZp/umWaf7paZbplg/5)

Please refer to Life Wiki for detailed definitions and notations of these rule strings.

Usage

use ca_rules::ParseLife;

// Define a struct for your rule:
#[derive(Debug, Eq, PartialEq)]
struct Rule {
    b: Vec<u8>,
    s: Vec<u8>,
}

// Implement a parser trait for your rule:
// The choice of the trait depends on the type of rules you want to parse.
impl ParseLife for Rule {
    // Implement a function to construct the rule from b and s data:
    fn from_bs(b: Vec<u8>, s: Vec<u8>) -> Self {
        Rule { b, s }
    }
}

// Then you can parse a rule string:
let life = Rule::parse_rule("B3/S23").unwrap();
assert_eq!(
    life,
    Rule {
        b: vec![3],
        s: vec![2, 3],
    }
)

For details, please refer to the doc.

Dependencies

~0.5–1MB
~23K SLoC