veloren/common/src/figure/mat_cell.rs

41 lines
709 B
Rust
Raw Normal View History

use super::cell::CellData;
use crate::vol::Vox;
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum Material {
Skin,
2019-09-18 16:46:12 +00:00
SkinDark,
SkinLight,
Hair,
EyeDark,
EyeLight,
EyeWhite,
/*HairLight,
*HairDark,
*Clothing, */
}
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum MatCell {
None,
Mat(Material),
Normal(CellData),
}
impl Vox for MatCell {
fn empty() -> Self { MatCell::None }
2020-08-17 09:08:11 +00:00
fn is_empty(&self) -> bool { matches!(self, MatCell::None) }
}
2021-03-26 10:05:51 +00:00
#[cfg(test)]
mod test {
use super::*;
#[test]
fn met_cell_size() {
assert_eq!(5, std::mem::size_of::<MatCell>());
assert_eq!(1, std::mem::align_of::<MatCell>());
}
}