Go to file
Max Bradbury a36313341d pulse width 2022-11-01 19:14:19 +00:00
.github/workflows remove rustfmt 2020-04-19 07:37:36 +01:00
src pulse width 2022-11-01 19:14:19 +00:00
.gitignore test omnibus (officially / with permission) 2020-10-09 13:05:22 +01:00
.gitmodules test omnibus (officially / with permission) 2020-10-09 13:05:22 +01:00
Cargo.toml migrate to rust 2021 2021-11-10 15:25:17 +00:00
LICENSE update copyright notice 2021-12-11 17:44:48 +00:00
README.md use export 2020-10-09 12:00:08 +01:00

README.md

bitsy-parser

Crates.io

Bitsy is a small game editor created by Adam Le Doux. this crate provides a library and command-line utilities for working with Bitsy game data. the version number follows Bitsy itself, so version 0.70.* targets Bitsy 7.0.

bitsy-parser is minimally invasive; unless you make any changes, an exported game should be identical to the imported game. however, this assumes your game data is valid. most minor errors will simply be corrected on import (e.g. extraneous tiles in a room) but bigger problems may cause bitsy-parser to crash or fail.

I have tested bitsy-parser on a dataset of over 1500 Bitsy games ranging from Bitsy 1.0 to Bitsy 7.1 and have found that the vast majority of games can be imported without any problems. so, I can almost guarantee that a Bitsy game will not be mangled by the parser, but I still recommend making backups of your game data periodically.

utilities

this crate provides some command-line tools for working with Bitsy game data.

  • bitsy-dedupe
  • bitsy-merge
  • bitsy-validate

the source for these can be found in src/bin. if you have Cargo installed, you can install/update these utilities with cargo install --force bitsy-parser. if your .cargo/bin directory is in your PATH, you will be able to use these utilities anywhere on your computer.

library

for use in your own Rust applications. can both parse and export Bitsy game data.

a simple example program:

use bitsy_parser::Game;
use std::{env, fs};

const SYNTAX_ERROR: &str = "No input path specified. Usage: `bitsy-validate filepath`";

fn main() {
    let input = env::args().nth(1).expect(SYNTAX_ERROR);
    Game::from(fs::read_to_string(input).unwrap()).unwrap();
    println!("OK!");
}

some more practical uses would be things like:

  • convert images or other file formats to Bitsy assets
  • programmatically create Bitsy games
  • a Bitsy game editor