stevenarella/protocol/src/item.rs

66 lines
1.9 KiB
Rust
Raw Normal View History

2016-03-16 14:25:35 -04:00
// Copyright 2016 Matthew Collins
2015-09-17 11:21:56 -04:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2015-09-12 15:31:26 -04:00
use nbt;
use protocol::{self, Serializable};
2015-09-12 15:31:26 -04:00
use std::io;
2015-09-17 11:04:25 -04:00
use byteorder::{BigEndian, WriteBytesExt, ReadBytesExt};
2015-09-12 15:31:26 -04:00
#[derive(Debug)]
pub struct Stack {
id: isize,
count: isize,
damage: isize,
tag: Option<nbt::NamedTag>,
}
impl Default for Stack {
fn default() -> Stack {
Stack {
id: -1,
count: 0,
damage: 0,
tag: None,
}
}
}
impl Serializable for Option<Stack> {
fn read_from<R: io::Read>(buf: &mut R) -> Result<Option<Stack>, protocol::Error> {
let id = buf.read_i16::<BigEndian>()?;
2015-09-12 15:31:26 -04:00
if id == -1 {
return Ok(None);
}
2015-10-07 14:36:59 -04:00
Ok(Some(Stack {
2015-09-12 15:31:26 -04:00
id: id as isize,
count: buf.read_u8()? as isize,
damage: buf.read_i16::<BigEndian>()? as isize,
tag: Serializable::read_from(buf)?,
2015-09-12 15:31:26 -04:00
}))
}
fn write_to<W: io::Write>(&self, buf: &mut W) -> Result<(), protocol::Error> {
2015-09-12 15:31:26 -04:00
match *self {
Some(ref val) => {
buf.write_i16::<BigEndian>(val.id as i16)?;
buf.write_u8(val.count as u8)?;
buf.write_i16::<BigEndian>(val.damage as i16)?;
val.tag.write_to(buf)?;
2015-10-07 14:36:59 -04:00
}
None => buf.write_i16::<BigEndian>(-1)?,
2015-09-12 15:31:26 -04:00
}
Result::Ok(())
}
}