mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
177 lines
7 KiB
Rust
Executable file
177 lines
7 KiB
Rust
Executable file
use crate::Error;
|
|
use crate::Tag;
|
|
use ahash::AHashMap;
|
|
use azalea_buf::{BufReadError, McBufReadable};
|
|
use byteorder::{ReadBytesExt, BE};
|
|
use flate2::read::{GzDecoder, ZlibDecoder};
|
|
use log::warn;
|
|
use std::io::Cursor;
|
|
use std::io::{BufRead, Read};
|
|
|
|
#[inline]
|
|
fn read_bytes<'a>(buf: &'a mut Cursor<&[u8]>, length: usize) -> Result<&'a [u8], Error> {
|
|
if length > (buf.get_ref().len() - buf.position() as usize) {
|
|
return Err(Error::UnexpectedEof);
|
|
}
|
|
let initial_position = buf.position() as usize;
|
|
buf.set_position(buf.position() + length as u64);
|
|
let data = &buf.get_ref()[initial_position..initial_position + length];
|
|
Ok(data)
|
|
}
|
|
|
|
#[inline]
|
|
fn read_string(stream: &mut Cursor<&[u8]>) -> Result<String, Error> {
|
|
let length = stream.read_u16::<BE>()? as usize;
|
|
|
|
let buf = read_bytes(stream, length)?;
|
|
|
|
Ok(if let Ok(string) = std::str::from_utf8(buf) {
|
|
string.to_string()
|
|
} else {
|
|
let lossy_string = String::from_utf8_lossy(buf).into_owned();
|
|
warn!("Error decoding utf8 (bytes: {buf:?}, lossy: \"{lossy_string})\"");
|
|
lossy_string
|
|
})
|
|
}
|
|
|
|
impl Tag {
|
|
/// Read the NBT data when you already know the ID of the tag. You usually
|
|
/// want [`Tag::read`] if you're reading an NBT file.
|
|
#[inline]
|
|
fn read_known(stream: &mut Cursor<&[u8]>, id: u8) -> Result<Tag, Error> {
|
|
Ok(match id {
|
|
// Signifies the end of a TAG_Compound. It is only ever used inside
|
|
// a TAG_Compound, and is not named despite being in a TAG_Compound
|
|
0 => Tag::End,
|
|
// A single signed byte
|
|
1 => Tag::Byte(stream.read_i8()?),
|
|
// A single signed, big endian 16 bit integer
|
|
2 => Tag::Short(stream.read_i16::<BE>()?),
|
|
// A single signed, big endian 32 bit integer
|
|
3 => Tag::Int(stream.read_i32::<BE>()?),
|
|
// A single signed, big endian 64 bit integer
|
|
4 => Tag::Long(stream.read_i64::<BE>()?),
|
|
// A single, big endian IEEE-754 single-precision floating point
|
|
// number (NaN possible)
|
|
5 => Tag::Float(stream.read_f32::<BE>()?),
|
|
// A single, big endian IEEE-754 double-precision floating point
|
|
// number (NaN possible)
|
|
6 => Tag::Double(stream.read_f64::<BE>()?),
|
|
// A length-prefixed array of signed bytes. The prefix is a signed
|
|
// integer (thus 4 bytes)
|
|
7 => {
|
|
let length = stream.read_u32::<BE>()? as usize;
|
|
let bytes = read_bytes(stream, length)?.to_vec();
|
|
Tag::ByteArray(bytes)
|
|
}
|
|
// A length-prefixed modified UTF-8 string. The prefix is an
|
|
// unsigned short (thus 2 bytes) signifying the length of the
|
|
// string in bytes
|
|
8 => Tag::String(read_string(stream)?),
|
|
// A list of nameless tags, all of the same type. The list is
|
|
// prefixed with the Type ID of the items it contains (thus 1
|
|
// byte), and the length of the list as a signed integer (a further
|
|
// 4 bytes). If the length of the list is 0 or negative, the type
|
|
// may be 0 (TAG_End) but otherwise it must be any other type. (The
|
|
// notchian implementation uses TAG_End in that situation, but
|
|
// another reference implementation by Mojang uses 1 instead;
|
|
// parsers should accept any type if the length is <= 0).
|
|
9 => {
|
|
let type_id = stream.read_u8()?;
|
|
let length = stream.read_u32::<BE>()?;
|
|
let mut list = Vec::new();
|
|
for _ in 0..length {
|
|
list.push(Tag::read_known(stream, type_id)?);
|
|
}
|
|
Tag::List(list)
|
|
}
|
|
// Effectively a list of a named tags. Order is not guaranteed.
|
|
10 => {
|
|
// we default to capacity 4 because it'll probably not be empty
|
|
let mut map = AHashMap::with_capacity(4);
|
|
loop {
|
|
let tag_id = stream.read_u8().unwrap_or(0);
|
|
if tag_id == 0 {
|
|
break;
|
|
}
|
|
let name = read_string(stream)?;
|
|
let tag = Tag::read_known(stream, tag_id)?;
|
|
map.insert(name, tag);
|
|
}
|
|
Tag::Compound(map)
|
|
}
|
|
// A length-prefixed array of signed integers. The prefix is a
|
|
// signed integer (thus 4 bytes) and indicates the number of 4 byte
|
|
// integers.
|
|
11 => {
|
|
let length = stream.read_u32::<BE>()? as usize;
|
|
if length * 4 > (stream.get_ref().len() - stream.position() as usize) {
|
|
return Err(Error::UnexpectedEof);
|
|
}
|
|
let mut ints = Vec::with_capacity(length);
|
|
for _ in 0..length {
|
|
ints.push(stream.read_i32::<BE>()?);
|
|
}
|
|
Tag::IntArray(ints)
|
|
}
|
|
// A length-prefixed array of signed longs. The prefix is a signed
|
|
// integer (thus 4 bytes) and indicates the number of 8 byte longs.
|
|
12 => {
|
|
let length = stream.read_u32::<BE>()? as usize;
|
|
if length * 8 > (stream.get_ref().len() - stream.position() as usize) {
|
|
return Err(Error::UnexpectedEof);
|
|
}
|
|
let mut longs = Vec::with_capacity(length);
|
|
for _ in 0..length {
|
|
longs.push(stream.read_i64::<BE>()?);
|
|
}
|
|
Tag::LongArray(longs)
|
|
}
|
|
_ => return Err(Error::InvalidTagType(id)),
|
|
})
|
|
}
|
|
|
|
/// Read the NBT data. This will return a compound tag with a single item.
|
|
pub fn read(stream: &mut Cursor<&[u8]>) -> Result<Tag, Error> {
|
|
// default to compound tag
|
|
|
|
// the parent compound only ever has one item
|
|
let tag_id = stream.read_u8().unwrap_or(0);
|
|
if tag_id == 0 {
|
|
return Ok(Tag::End);
|
|
}
|
|
let name = read_string(stream)?;
|
|
let tag = Tag::read_known(stream, tag_id)?;
|
|
let mut map = AHashMap::with_capacity(1);
|
|
map.insert(name, tag);
|
|
|
|
Ok(Tag::Compound(map))
|
|
}
|
|
|
|
/// Read the NBT data compressed wtih zlib.
|
|
pub fn read_zlib(stream: &mut impl BufRead) -> Result<Tag, Error> {
|
|
let mut gz = ZlibDecoder::new(stream);
|
|
let mut buf = Vec::new();
|
|
gz.read_to_end(&mut buf)?;
|
|
Tag::read(&mut Cursor::new(&buf))
|
|
}
|
|
|
|
/// Read the NBT data compressed wtih gzip.
|
|
pub fn read_gzip(stream: &mut Cursor<Vec<u8>>) -> Result<Tag, Error> {
|
|
let mut gz = GzDecoder::new(stream);
|
|
let mut buf = Vec::new();
|
|
gz.read_to_end(&mut buf)?;
|
|
Tag::read(&mut Cursor::new(&buf))
|
|
}
|
|
}
|
|
|
|
impl McBufReadable for Tag {
|
|
fn read_from(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError> {
|
|
Ok(Tag::read(buf)?)
|
|
}
|
|
}
|
|
impl From<Error> for BufReadError {
|
|
fn from(e: Error) -> Self {
|
|
BufReadError::Custom(e.to_string())
|
|
}
|
|
}
|