about summary refs log tree commit diff
path: root/src/entities/character.rs
blob: 59d4d00a4b654da18fb6c07d1720e936c64885e7 (plain) (blame)
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
use crate::display;
use crate::types::{Position, Speed};
use std::io::{self, Write};

const DEFAULT_SPEED: Speed = Speed(100);

entity! {
    pub struct Character {
        pub o_name: Option<String>,
    }
}

static_description!(Character, "yourself");

impl Character {
    pub fn new() -> Character {
        Character {
            id: None,
            position: Position { x: 0, y: 0 },
            o_name: None,
        }
    }

    pub fn speed(&self) -> Speed {
        Speed(100)
    }

    pub fn damage(&self) -> u16 {
        // TODO
        1
    }

    pub fn name<'a>(&'a self) -> &'a str {
        self.o_name
            .as_ref()
            .expect("Character name not initialized")
    }

    pub fn set_name(&mut self, name: String) {
        self.o_name = Some(name);
    }
}

impl display::Draw for Character {
    fn do_draw(&self, out: &mut Write) -> io::Result<()> {
        write!(out, "@")
    }
}