minecraft_data

Crates.iominecraft_data
lib.rsminecraft_data
version2.0.9
created_at2023-12-30 04:39:14.390474+00
updated_at2025-07-30 11:09:18.626807+00
descriptionminecraft data
homepage
repositoryhttps://github.com/hayanesuru/minecraft
max_upload_size
id1083889
size296,842
hayanesuru (hayanesuru)

documentation

https://docs.rs/minecraft_data

README

minecraft_data

minecraft version: 1.21.6

Usage

pub use minecraft_data::*;

fn main() {
    assert_eq!(core::mem::size_of::<block_state>(), 2);
    assert_eq!(core::mem::size_of::<block>(), 2);

    let offset = oak_log::new().with_axis(prop_axis_x_y_z::z).encode() as raw_block_state;
    let state: block_state = block_state::new(block::oak_log.state_index() + offset).unwrap();
    assert_eq!(
        oak_log::decode((state.id() - block::oak_log.state_index()) as _).axis(),
        prop_axis_x_y_z::z
    );
    let state: block_state = encode_state!(oak_log(oak_log::new().with_axis(prop_axis_x_y_z::z)));
    assert_eq!(decode_state!(oak_log(state)).axis(), prop_axis_x_y_z::z);
    assert_eq!(state.to_fluid().to_fluid(), fluid::empty);

    let x = block::mud.state_default();
    let b = x.to_block();
    assert_eq!(b.name(), "mud");
    assert_eq!(Some(b), block::parse(b"mud"));

    assert_eq!(x.side_solid_full(), Some(0b111111));
    assert_eq!(x.side_solid_rigid(), Some(0b111111));
    assert_eq!(x.side_solid_center(), Some(0b111111));
    assert_eq!(x.full_cube(), Some(false));
}
Commit count: 124

cargo fmt