2020-04-11 15:08:57 +00:00
|
|
|
# bitsy-parser
|
2020-04-05 17:58:04 +00:00
|
|
|
|
|
|
|
a library for parsing Bitsy game data.
|
|
|
|
|
2020-04-12 13:48:43 +00:00
|
|
|
the version number follows Bitsy itself, so version 0.65.* targets Bitsy 6.5.
|
|
|
|
|
2020-04-12 16:13:08 +00:00
|
|
|
## how to use
|
|
|
|
|
|
|
|
this sample program converts the player avatar to a smiley face.
|
|
|
|
```rust
|
|
|
|
extern crate bitsy_parser;
|
|
|
|
use std::{env, fs};
|
|
|
|
use bitsy_parser::game::Game;
|
|
|
|
use bitsy_parser::image::Image;
|
|
|
|
|
|
|
|
/// replaces the player avatar with a smiley face.
|
|
|
|
fn main() {
|
|
|
|
let input_file = env::args().nth(1)
|
|
|
|
.expect("No game data specified. Usage: `invert infile outfile`");
|
|
|
|
let output_file = env::args().nth(2)
|
|
|
|
.expect("No game data specified. Usage: `invert infile outfile`");
|
|
|
|
|
|
|
|
let mut game = Game::from(fs::read_to_string(input_file).unwrap());
|
|
|
|
|
|
|
|
game.avatar.animation_frames = vec![
|
|
|
|
Image {
|
|
|
|
pixels: vec![
|
|
|
|
0,0,1,1,1,1,0,0,
|
|
|
|
0,1,1,1,1,1,1,0,
|
|
|
|
1,1,0,1,1,0,1,1,
|
|
|
|
1,1,0,1,1,0,1,1,
|
|
|
|
1,1,1,1,1,1,1,1,
|
|
|
|
1,1,0,1,1,0,1,1,
|
|
|
|
0,1,1,0,0,1,1,0,
|
|
|
|
0,0,1,1,1,1,0,0,
|
|
|
|
]
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
fs::write(output_file, &game.to_string())
|
|
|
|
.expect("Failed to write to output file");
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
some more practical uses would be things like:
|
|
|
|
|
|
|
|
* remove duplicate tiles
|
|
|
|
* merge two Bitsy games together
|
|
|
|
* programmatically create Bitsy games
|
|
|
|
* a Bitsy game editor
|
|
|
|
|
2020-04-05 17:58:04 +00:00
|
|
|
## todo
|
|
|
|
|
2020-04-12 14:40:40 +00:00
|
|
|
### failing tests
|
2020-04-12 08:48:35 +00:00
|
|
|
|
2020-04-12 14:40:40 +00:00
|
|
|
test_room_from_string shows an unexpected ordering for the items in the output of room::to_string
|
2020-04-12 08:48:35 +00:00
|
|
|
|
2020-04-05 18:04:17 +00:00
|
|
|
### tidy up
|
|
|
|
|
2020-04-12 13:38:07 +00:00
|
|
|
* refactor the more shonky bits to idiomatic rust
|