auto-strip trailing whitespace in serialized grids
This commit is contained in:
parent
c2babaa674
commit
c4378c85f5
3 changed files with 12 additions and 7 deletions
|
@ -39,7 +39,7 @@ impl From<CompatBoard> for Board {
|
||||||
fn from(value: CompatBoard) -> Self {
|
fn from(value: CompatBoard) -> Self {
|
||||||
match value {
|
match value {
|
||||||
CompatBoard::V1(string) => Self {
|
CompatBoard::V1(string) => Self {
|
||||||
grid: Grid::parse(&string),
|
grid: Grid::from_ascii(&string),
|
||||||
comments: Vec::new(),
|
comments: Vec::new(),
|
||||||
},
|
},
|
||||||
CompatBoard::V2 { grid, comments } => Self { grid, comments },
|
CompatBoard::V2 { grid, comments } => Self { grid, comments },
|
||||||
|
@ -149,7 +149,7 @@ impl Board {
|
||||||
|
|
||||||
pub fn from_user_str(source: &str) -> Self {
|
pub fn from_user_str(source: &str) -> Self {
|
||||||
serde_json::from_str(source).unwrap_or_else(|_| Self {
|
serde_json::from_str(source).unwrap_or_else(|_| Self {
|
||||||
grid: Grid::parse(source),
|
grid: Grid::from_ascii(source),
|
||||||
comments: Vec::new(),
|
comments: Vec::new(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,7 @@ impl ResizeDeltas {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Grid {
|
impl Grid {
|
||||||
pub fn parse(source: &str) -> Self {
|
pub fn from_ascii(source: &str) -> Self {
|
||||||
let mut rows = Vec::new();
|
let mut rows = Vec::new();
|
||||||
|
|
||||||
let mut width = 0;
|
let mut width = 0;
|
||||||
|
@ -79,13 +79,18 @@ impl Grid {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn to_str(&self) -> String {
|
pub fn to_ascii(&self) -> String {
|
||||||
let mut out = String::new();
|
let mut out = String::new();
|
||||||
for y in 0..self.height {
|
for y in 0..self.height {
|
||||||
for x in 0..self.width {
|
for x in 0..self.width {
|
||||||
let tile = self.get((x, y).into()).unwrap();
|
let tile = self.get((x, y).into()).unwrap();
|
||||||
out.push(tile.to_char());
|
out.push(tile.to_char());
|
||||||
}
|
}
|
||||||
|
if y > 0 {
|
||||||
|
while out.as_bytes().last() == Some(&b' ') {
|
||||||
|
out.pop();
|
||||||
|
}
|
||||||
|
}
|
||||||
out.push('\n');
|
out.push('\n');
|
||||||
}
|
}
|
||||||
out
|
out
|
||||||
|
@ -269,12 +274,12 @@ impl Grid {
|
||||||
|
|
||||||
impl From<String> for Grid {
|
impl From<String> for Grid {
|
||||||
fn from(value: String) -> Self {
|
fn from(value: String) -> Self {
|
||||||
Self::parse(&value)
|
Self::from_ascii(&value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<Grid> for String {
|
impl From<Grid> for String {
|
||||||
fn from(val: Grid) -> String {
|
fn from(val: Grid) -> String {
|
||||||
val.to_str()
|
val.to_ascii()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ use marble_machinations::marble_engine::{grid::Grid, Machine};
|
||||||
#[test]
|
#[test]
|
||||||
fn creating_marbles_cause_indirect_claim() {
|
fn creating_marbles_cause_indirect_claim() {
|
||||||
let mut eng = Machine::new_empty();
|
let mut eng = Machine::new_empty();
|
||||||
eng.set_grid(Grid::parse(
|
eng.set_grid(Grid::from_ascii(
|
||||||
"
|
"
|
||||||
I
|
I
|
||||||
o 2
|
o 2
|
||||||
|
|
Loading…
Add table
Reference in a new issue