From 97cf500a8a57f37324c17e9792b7eee439a4a446 Mon Sep 17 00:00:00 2001 From: Max Bradbury Date: Thu, 18 Jun 2020 19:55:28 +0100 Subject: [PATCH] simpler example since avatar is gone --- README.md | 31 ++++++------------------------- 1 file changed, 6 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index c169cd2..c8f824b 100644 --- a/README.md +++ b/README.md @@ -14,36 +14,17 @@ a simple example program: ```rust extern crate bitsy_parser; -use std::{env, fs}; use bitsy_parser::game::Game; -use bitsy_parser::image::Image; +use std::{env, fs}; -/// replaces the player avatar with a smiley face. fn main() { - let input_file = env::args().nth(1) - .expect("No input path specified. Usage: `smiley infile outfile`"); - let output_file = env::args().nth(2) - .expect("No output path specified. Usage: `smiley infile outfile`"); + let input_file = env::args() + .nth(1) + .expect("No input path specified. Usage: `bitsy-validate filepath`"); - 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![ - 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"); + println!("OK!"); } ```