2 stable releases

new 2.0.1 Jan 29, 2025
1.16.5 Mar 29, 2024
1.3.5 Dec 20, 2024
1.3.4 Oct 25, 2024
1.0.2 Dec 31, 2023

#149 in Games

50 downloads per month

MIT/Apache

260KB
7.5K SLoC

minecraft_data

minecraft version:
1.21.4

Usage

[dependencies]
minecraft_data = "2.0"
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);
    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);
}

Dependencies

~660KB
~12K SLoC