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
59
60
61
62
use std::{error, fmt};

pub mod event;
pub mod image;
pub mod pixel;

mod audio;
mod driver;
mod engine;
mod state;

pub use engine::PixEngine;
pub use image::Image;
pub use state::{draw, transform, AlphaMode, State, StateData, WindowId};

pub type PixEngineResult<T> = std::result::Result<T, PixEngineErr>;

pub struct PixEngineErr {
    description: String,
}

impl PixEngineErr {
    pub fn new<D: ToString>(desc: D) -> Self {
        Self {
            description: desc.to_string(),
        }
    }
}

impl fmt::Display for PixEngineErr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description)
    }
}

impl fmt::Debug for PixEngineErr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "{{ err: {}, file: {}, line: {} }}",
            self.description,
            file!(),
            line!(),
        )
    }
}

impl error::Error for PixEngineErr {
    fn source(&self) -> Option<&(dyn error::Error + 'static)> {
        None
    }
}
impl From<std::io::Error> for PixEngineErr {
    fn from(err: std::io::Error) -> Self {
        Self::new(err)
    }
}
impl From<String> for PixEngineErr {
    fn from(err: String) -> Self {
        Self::new(err)
    }
}