kubi/kubi-shared/src/block.rs

197 lines
4.9 KiB
Rust
Raw Normal View History

2023-02-15 15:07:47 -06:00
use bincode::{Encode, Decode};
use strum::EnumIter;
#[derive(Clone, Copy, Debug, EnumIter)]
#[repr(u8)]
pub enum BlockTexture {
Stone,
Dirt,
GrassTop,
GrassSide,
Sand,
Bedrock,
Wood,
WoodTop,
Leaf,
Torch,
TallGrass,
Snow,
GrassSideSnow,
Cobblestone,
2023-02-15 19:44:21 -06:00
Planks,
2023-02-15 15:07:47 -06:00
}
#[derive(Encode, Decode, Clone, Copy, Debug, PartialEq, Eq, EnumIter)]
#[repr(u8)]
pub enum Block {
Air,
Stone,
Dirt,
Grass,
Sand,
Cobblestone,
2023-02-15 16:32:06 -06:00
TallGrass,
2023-02-15 19:44:21 -06:00
Planks,
Torch,
Wood,
Leaf,
2023-02-15 15:07:47 -06:00
}
2023-01-19 17:45:46 -06:00
2023-02-15 15:11:15 -06:00
impl Block {
2023-02-15 15:08:48 -06:00
#[inline]
2023-02-15 15:11:15 -06:00
pub const fn descriptor(self) -> BlockDescriptor {
2023-01-25 20:05:29 -06:00
match self {
Self::Air => BlockDescriptor {
name: "air",
render: RenderType::None,
collision: CollisionType::None,
raycast_collision: false,
},
Self::Stone => BlockDescriptor {
name: "stone",
render: RenderType::SolidBlock(CubeTexture::all(BlockTexture::Stone)),
collision: CollisionType::Solid,
raycast_collision: true,
},
2023-01-25 20:50:38 -06:00
Self::Dirt => BlockDescriptor {
name: "dirt",
render: RenderType::SolidBlock(CubeTexture::all(BlockTexture::Dirt)),
collision: CollisionType::Solid,
raycast_collision: true,
},
Self::Grass => BlockDescriptor {
name: "grass",
render: RenderType::SolidBlock(CubeTexture::top_sides_bottom(
BlockTexture::GrassTop,
BlockTexture::GrassSide,
BlockTexture::Dirt
)),
collision: CollisionType::Solid,
raycast_collision: true,
},
Self::Sand => BlockDescriptor {
name: "sand",
render: RenderType::SolidBlock(CubeTexture::all(BlockTexture::Sand)),
collision: CollisionType::Solid,
raycast_collision: true,
},
2023-02-04 18:43:47 -06:00
Self::Cobblestone => BlockDescriptor {
name: "cobblestone",
render: RenderType::SolidBlock(CubeTexture::all(BlockTexture::Cobblestone)),
collision: CollisionType::Solid,
raycast_collision: true,
2023-02-15 16:32:06 -06:00
},
Self::TallGrass => BlockDescriptor {
name: "tall grass",
render: RenderType::CrossShape(CrossTexture::all(BlockTexture::TallGrass)),
collision: CollisionType::None,
raycast_collision: true,
2023-02-15 19:44:21 -06:00
},
Self::Planks => BlockDescriptor {
name: "planks",
render: RenderType::SolidBlock(CubeTexture::all(BlockTexture::Planks)),
collision: CollisionType::Solid,
raycast_collision: true,
},
Self::Torch => BlockDescriptor {
name: "torch",
render: RenderType::CrossShape(CrossTexture::all(BlockTexture::Torch)),
collision: CollisionType::None,
raycast_collision: true,
},
Self::Wood => BlockDescriptor {
name: "leaf",
render: RenderType::SolidBlock(CubeTexture::horizontal_vertical(BlockTexture::Wood, BlockTexture::WoodTop)),
collision: CollisionType::Solid,
raycast_collision: true,
},
Self::Leaf => BlockDescriptor {
name: "leaf",
render: RenderType::BinaryTransparency(CubeTexture::all(BlockTexture::Leaf)),
collision: CollisionType::Solid,
raycast_collision: true,
},
2023-01-25 20:05:29 -06:00
}
}
}
#[derive(Clone, Copy, Debug)]
pub struct BlockDescriptor {
pub name: &'static str,
pub render: RenderType,
pub collision: CollisionType,
pub raycast_collision: bool,
}
2023-01-28 15:27:40 -06:00
// impl BlockDescriptor {
// pub fn of(block: Block) -> Self {
// block.descriptor()
// }
// }
2023-01-25 20:05:29 -06:00
#[derive(Clone, Copy, Debug)]
pub struct CubeTexture {
pub top: BlockTexture,
pub bottom: BlockTexture,
pub left: BlockTexture,
pub right: BlockTexture,
pub front: BlockTexture,
pub back: BlockTexture,
}
impl CubeTexture {
pub const fn top_sides_bottom(top: BlockTexture, sides: BlockTexture, bottom: BlockTexture) -> Self {
Self {
top,
bottom,
left: sides,
right: sides,
front: sides,
back: sides,
}
}
pub const fn horizontal_vertical(horizontal: BlockTexture, vertical: BlockTexture) -> Self {
Self::top_sides_bottom(vertical, horizontal, vertical)
}
pub const fn all(texture: BlockTexture) -> Self {
Self::horizontal_vertical(texture, texture)
}
}
2023-02-15 15:07:47 -06:00
#[derive(Clone, Copy, Debug)]
2023-02-15 19:00:09 -06:00
pub struct CrossTextureSides {
pub front: BlockTexture,
pub back: BlockTexture
2023-02-15 15:11:15 -06:00
}
2023-02-15 19:00:09 -06:00
impl CrossTextureSides {
pub const fn all(texture: BlockTexture) -> Self {
2023-02-15 16:32:06 -06:00
Self {
2023-02-15 19:00:09 -06:00
front: texture,
back: texture
2023-02-15 16:32:06 -06:00
}
}
2023-02-15 19:00:09 -06:00
}
#[derive(Clone, Copy, Debug)]
pub struct CrossTexture(pub CrossTextureSides, pub CrossTextureSides);
impl CrossTexture {
2023-02-15 16:32:06 -06:00
pub const fn all(texture: BlockTexture) -> Self {
2023-02-15 19:00:09 -06:00
Self(
CrossTextureSides::all(texture),
CrossTextureSides::all(texture)
)
2023-02-15 16:32:06 -06:00
}
2023-02-15 15:07:47 -06:00
}
2023-01-25 20:05:29 -06:00
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum CollisionType {
None,
Solid,
}
#[derive(Clone, Copy, Debug)]
pub enum RenderType {
None,
2023-02-15 15:07:47 -06:00
SolidBlock(CubeTexture),
BinaryTransparency(CubeTexture),
2023-02-15 15:11:15 -06:00
CrossShape(CrossTexture),
2023-01-25 20:05:29 -06:00
}