1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use std::fmt;
use std::error::Error;
use std::str::FromStr;

// same as a dialogue basically
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Ending {
    pub id: String,
    pub dialogue: String,
}

impl Error for Ending {}

impl FromStr for Ending {
    type Err = String;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let lines: Vec<&str> = s.lines().collect();
        let id = lines[0].replace("END ", "").to_string();
        let dialogue = lines[1..].join("\n");

        Ok(Ending { id, dialogue })
    }
}

impl fmt::Display for Ending {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f,"END {}\n{}", self.id, self.dialogue)
    }
}

#[cfg(test)]
mod test {
    use crate::ending::Ending;
    use std::str::FromStr;

    #[test]
    fn ending_from_string() {
        assert_eq!(
            Ending::from_str(include_str!("test-resources/ending")).unwrap(),
            Ending {
                id: "a".to_string(),
                dialogue: "This is a long line of dialogue. Blah blah blah".to_string()
            }
        );
    }

    #[test]
    fn ending_to_string() {
        assert_eq!(
            Ending {
                id: "7".to_string(),
                dialogue: "This is another long ending. So long, farewell, etc.".to_string()
            }.to_string(),
            "END 7\nThis is another long ending. So long, farewell, etc.".to_string()
        );
    }
}