simpler example since avatar is gone
This commit is contained in:
parent
f85078d0e7
commit
97cf500a8a
31
README.md
31
README.md
|
@ -14,36 +14,17 @@ a simple example program:
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
extern crate bitsy_parser;
|
extern crate bitsy_parser;
|
||||||
use std::{env, fs};
|
|
||||||
use bitsy_parser::game::Game;
|
use bitsy_parser::game::Game;
|
||||||
use bitsy_parser::image::Image;
|
use std::{env, fs};
|
||||||
|
|
||||||
/// replaces the player avatar with a smiley face.
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let input_file = env::args().nth(1)
|
let input_file = env::args()
|
||||||
.expect("No input path specified. Usage: `smiley infile outfile`");
|
.nth(1)
|
||||||
let output_file = env::args().nth(2)
|
.expect("No input path specified. Usage: `bitsy-validate filepath`");
|
||||||
.expect("No output path specified. Usage: `smiley infile outfile`");
|
|
||||||
|
|
||||||
let mut game = Game::from(fs::read_to_string(input_file).unwrap()).unwrap();
|
Game::from(fs::read_to_string(input_file).unwrap()).unwrap();
|
||||||
|
|
||||||
game.avatar.animation_frames = vec![
|
println!("OK!");
|
||||||
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");
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue