soukoban

Crates.iosoukoban
lib.rssoukoban
version
sourcesrc
created_at2024-02-28 15:17:29.913879+00
updated_at2025-01-11 12:36:45.670745+00
descriptionA library provides the implementation of some algorithms and data structures related to Sokoban
homepage
repositoryhttps://github.com/shenmian/soukoban
max_upload_size
id1156606
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
ShenMian (ShenMian)

documentation

README

soukoban

docs.rs Test status Code coverage

A library provides the implementation of algorithms and data structures related to Sokoban.

Features

  • Level
    • Zero-allocation lazy parsing: Parses levels lazily from an in-memory string without memory allocations except for level creation.
    • Lazy stream parsing: Parses levels lazily from a stream.
    • Map reconstruction: Reconstructs the map from the solution.
    • Normalization: Removes elements from the map that are not relevant to the solution.
    • RLE support: Enables loading of levels encoded in Run-Length Encoding (RLE) format.
  • Solution
    • Reversal move handling: Automatically interprets reversal moves as undo actions.
    • Metrics calculation: Computes metrics such as box_lines, box_changes, pushing_sessions, and player_lines.
  • Pathfinding: Finds the optimal player path to push a box to a position.
  • Deadlock detection: Detects static deadlocks and freeze deadlocks.

License

Licensed under either of

at your option.

The level files in the assets directory are licensed solely under their respective licenses, available in the LICENSE file in the directory.

Commit count: 122

cargo fmt