2024-03-06 23:06:42 +08:00
|
|
|
// pub enum Endian {
|
|
|
|
// Big,
|
|
|
|
// Little,
|
|
|
|
// }
|
2024-03-06 22:24:14 +08:00
|
|
|
|
2024-03-06 22:33:46 +08:00
|
|
|
/// 用于读取 NBT 数据
|
|
|
|
pub struct NbtReader<'data> {
|
2024-03-06 23:06:42 +08:00
|
|
|
/// NBT 数据
|
|
|
|
pub data: &'data [u8],
|
|
|
|
/// 当前读取的位置
|
|
|
|
pub cursor: usize,
|
|
|
|
// be/le
|
|
|
|
// pub endian: Endian,
|
2024-03-06 22:33:46 +08:00
|
|
|
}
|
|
|
|
|
2024-03-06 23:06:42 +08:00
|
|
|
macro_rules! read {
|
|
|
|
($name:ident, $ty:ty, $size:literal) => {
|
|
|
|
#[doc = concat!("读取 ", stringify!($ty), " 类型 ", $size, " 长度的数据")]
|
|
|
|
pub fn $name(&mut self) -> $ty {
|
|
|
|
unsafe {
|
|
|
|
let value = *(self.data[self.cursor..].as_ptr() as *const $ty);
|
|
|
|
self.cursor += std::mem::size_of::<$ty>();
|
|
|
|
value.to_be()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
($name:ident, $ty:ty, $size:literal, false) => {
|
|
|
|
#[doc = concat!("读取 ", stringify!($ty), " 类型 ", $size, " 长度的数据")]
|
|
|
|
pub fn $name(&mut self) -> $ty {
|
|
|
|
unsafe {
|
|
|
|
let value = *(self.data[self.cursor..].as_ptr() as *const $ty);
|
|
|
|
self.cursor += std::mem::size_of::<$ty>();
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2024-03-06 22:33:46 +08:00
|
|
|
impl NbtReader<'_> {
|
|
|
|
pub fn new(data: &[u8]) -> NbtReader {
|
|
|
|
NbtReader {
|
|
|
|
data,
|
|
|
|
cursor: 0,
|
2024-03-06 23:06:42 +08:00
|
|
|
// endian: Endian::Big,
|
2024-03-06 22:33:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pub fn read_i8(&mut self) -> i8 {
|
|
|
|
let value = self.data[self.cursor] as i8;
|
|
|
|
self.cursor += 1;
|
|
|
|
value
|
|
|
|
}
|
2024-03-06 23:06:42 +08:00
|
|
|
pub fn read_u8(&mut self) -> u8 {
|
|
|
|
let value = self.data[self.cursor];
|
|
|
|
self.cursor += 1;
|
|
|
|
value
|
2024-03-06 22:33:46 +08:00
|
|
|
}
|
2024-03-06 23:06:42 +08:00
|
|
|
read!(read_i16, i16, 2);
|
|
|
|
read!(read_u16, u16, 2);
|
|
|
|
read!(read_i32, i32, 4);
|
|
|
|
read!(read_u32, u32, 4);
|
|
|
|
read!(read_i64, i64, 8);
|
|
|
|
read!(read_u64, u64, 8);
|
|
|
|
read!(read_f32, f32, 4, false);
|
|
|
|
read!(read_f64, f64, 8, false);
|
|
|
|
pub fn read_bytes(&mut self, len: usize) -> &[u8] {
|
|
|
|
let value = &self.data[self.cursor..self.cursor + len];
|
|
|
|
self.cursor += len;
|
|
|
|
value
|
2024-03-06 22:33:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-06 22:24:14 +08:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub enum NbtValue<'value> {
|
|
|
|
// end: 0
|
|
|
|
/// 1: Byte
|
|
|
|
Byte(i8),
|
|
|
|
/// 2
|
|
|
|
Short(i16),
|
|
|
|
/// 3
|
|
|
|
Int(i32),
|
|
|
|
/// 4
|
|
|
|
Long(i64),
|
|
|
|
/// 5
|
|
|
|
Float(f32),
|
|
|
|
/// 6
|
|
|
|
Double(f64),
|
|
|
|
/// 7
|
|
|
|
ByteArray(Vec<i8>),
|
2024-03-06 22:33:46 +08:00
|
|
|
/// 8
|
|
|
|
/// 或者叫 u8 array
|
|
|
|
String(&'value str),
|
2024-03-06 22:24:14 +08:00
|
|
|
/// 9
|
|
|
|
List(Vec<NbtValue<'value>>),
|
|
|
|
/// 10
|
|
|
|
Compound(Vec<(String, NbtValue<'value>)>),
|
2024-03-06 22:33:46 +08:00
|
|
|
/// 11
|
|
|
|
IntArray(Vec<i32>),
|
|
|
|
/// 12
|
|
|
|
LongArray(Vec<i64>),
|
2024-03-06 22:24:14 +08:00
|
|
|
}
|