Attributes decoding and encoding fully implemented and tested!
This commit is contained in:
parent
9468475d53
commit
8ecd6c1292
5 changed files with 88 additions and 7 deletions
|
|
@ -1,3 +1,5 @@
|
||||||
|
use crate::fot::decoder::Decoder;
|
||||||
|
|
||||||
use super::esh::{ESHValue, ESH};
|
use super::esh::{ESHValue, ESH};
|
||||||
use super::stream::{ReadStream, WriteStream};
|
use super::stream::{ReadStream, WriteStream};
|
||||||
use super::tag::Tag;
|
use super::tag::Tag;
|
||||||
|
|
@ -256,6 +258,10 @@ const ADDICTIONS: [&str; 10] = [
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Attributes {
|
pub struct Attributes {
|
||||||
esh: ESH,
|
esh: ESH,
|
||||||
|
size1: u32,
|
||||||
|
size2: u32,
|
||||||
|
tag: Tag,
|
||||||
|
enc_size: usize,
|
||||||
pub stats: IndexMap<&'static str, u32>,
|
pub stats: IndexMap<&'static str, u32>,
|
||||||
pub traits: IndexMap<&'static str, u32>,
|
pub traits: IndexMap<&'static str, u32>,
|
||||||
pub derived: IndexMap<&'static str, u32>,
|
pub derived: IndexMap<&'static str, u32>,
|
||||||
|
|
@ -270,7 +276,7 @@ impl Attributes {
|
||||||
pub fn from_binary(bin: &[u8]) -> Result<Self> {
|
pub fn from_binary(bin: &[u8]) -> Result<Self> {
|
||||||
let mut rd = ReadStream::new(bin, 0);
|
let mut rd = ReadStream::new(bin, 0);
|
||||||
|
|
||||||
let _ = rd.read_u32()?;
|
let size1 = rd.read_u32()?;
|
||||||
let esh: ESH = rd.read()?;
|
let esh: ESH = rd.read()?;
|
||||||
if esh.props["Binary"] == ESHValue::Bool(false) {
|
if esh.props["Binary"] == ESHValue::Bool(false) {
|
||||||
return Err(anyhow!("Attributes Binary == false"));
|
return Err(anyhow!("Attributes Binary == false"));
|
||||||
|
|
@ -288,8 +294,8 @@ impl Attributes {
|
||||||
if let ESHValue::Binary(binary) = &esh.props["esbin"] {
|
if let ESHValue::Binary(binary) = &esh.props["esbin"] {
|
||||||
let mut rd = ReadStream::new(&binary, 0);
|
let mut rd = ReadStream::new(&binary, 0);
|
||||||
|
|
||||||
let _ = rd.read_u32()?;
|
let size2 = rd.read_u32()?;
|
||||||
let _: Tag = rd.read()?;
|
let tag: Tag = rd.read()?;
|
||||||
|
|
||||||
for i in 0..MAX_STATS {
|
for i in 0..MAX_STATS {
|
||||||
stats.insert(STATS[i], rd.read_u32()?);
|
stats.insert(STATS[i], rd.read_u32()?);
|
||||||
|
|
@ -316,8 +322,13 @@ impl Attributes {
|
||||||
addictions.insert(ADDICTIONS[i], rd.read_u32()?);
|
addictions.insert(ADDICTIONS[i], rd.read_u32()?);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let enc_size = binary.len();
|
||||||
Ok(Attributes {
|
Ok(Attributes {
|
||||||
esh,
|
esh,
|
||||||
|
size1,
|
||||||
|
size2,
|
||||||
|
tag,
|
||||||
|
enc_size,
|
||||||
stats,
|
stats,
|
||||||
traits,
|
traits,
|
||||||
derived,
|
derived,
|
||||||
|
|
@ -331,4 +342,47 @@ impl Attributes {
|
||||||
return Err(anyhow!("Attributes has no esbin"));
|
return Err(anyhow!("Attributes has no esbin"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn into_binary(mut self) -> Result<Vec<u8>> {
|
||||||
|
let esbin = {
|
||||||
|
let mut wd = WriteStream::new(self.enc_size);
|
||||||
|
|
||||||
|
wd.write_u32(self.size2)?;
|
||||||
|
wd.write(&self.tag)?;
|
||||||
|
|
||||||
|
for (_, value) in self.stats {
|
||||||
|
wd.write_u32(value)?;
|
||||||
|
}
|
||||||
|
for (_, value) in self.traits {
|
||||||
|
wd.write_u32(value)?;
|
||||||
|
}
|
||||||
|
for (_, value) in self.derived {
|
||||||
|
wd.write_u32(value)?;
|
||||||
|
}
|
||||||
|
for (_, value) in self.skills {
|
||||||
|
wd.write_u32(value)?;
|
||||||
|
}
|
||||||
|
for (_, value) in self.skill_tags {
|
||||||
|
wd.write_bool(value)?;
|
||||||
|
}
|
||||||
|
for (_, value) in self.opt_traits {
|
||||||
|
wd.write_bool(value)?;
|
||||||
|
}
|
||||||
|
for (_, value) in self.perks {
|
||||||
|
wd.write_u32(value)?;
|
||||||
|
}
|
||||||
|
for (_, value) in self.addictions {
|
||||||
|
wd.write_u32(value)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
wd.into_vec()
|
||||||
|
};
|
||||||
|
self.esh.set("esbin", ESHValue::Binary(esbin));
|
||||||
|
|
||||||
|
let mut wd = WriteStream::new(self.esh.get_enc_size());
|
||||||
|
wd.write_u32(self.size1)?;
|
||||||
|
wd.write(&self.esh)?;
|
||||||
|
|
||||||
|
Ok(wd.into_vec())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,13 @@ impl Entity {
|
||||||
Err(anyhow!("Attributes is not binary"))
|
Err(anyhow!("Attributes is not binary"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn set_attributes(&mut self, attrs: Attributes) -> Result<()> {
|
||||||
|
self.get_esh_mut()?
|
||||||
|
.set("Attributes", ESHValue::Binary(attrs.into_binary()?));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DecoderCtx<&mut EntityList, &EntityList> for Entity {
|
impl DecoderCtx<&mut EntityList, &EntityList> for Entity {
|
||||||
|
|
|
||||||
|
|
@ -62,6 +62,10 @@ impl EntityList {
|
||||||
&self.ents[id - 1]
|
&self.ents[id - 1]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn get_entity_mut(&mut self, id: usize) -> &mut Entity {
|
||||||
|
&mut self.ents[id - 1]
|
||||||
|
}
|
||||||
|
|
||||||
pub fn dump_to_entfile(&self, ent: &Entity, path: &Path) -> Result<()> {
|
pub fn dump_to_entfile(&self, ent: &Entity, path: &Path) -> Result<()> {
|
||||||
let esh = match &ent.esh {
|
let esh = match &ent.esh {
|
||||||
Some(esh) => esh,
|
Some(esh) => esh,
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,8 @@ impl World {
|
||||||
|
|
||||||
pub fn test(&mut self) -> Result<()> {
|
pub fn test(&mut self) -> Result<()> {
|
||||||
//let actor_type = self.entlist.get_type_idx("Actor").unwrap();
|
//let actor_type = self.entlist.get_type_idx("Actor").unwrap();
|
||||||
let ent = self.entlist.get_entity(2122);
|
//let ent = self.entlist.get_entity_mut(2122);
|
||||||
|
let ent = self.entlist.get_entity_mut(2158);
|
||||||
let esh = ent.get_esh()?;
|
let esh = ent.get_esh()?;
|
||||||
for (name, value) in &esh.props {
|
for (name, value) in &esh.props {
|
||||||
println!("{} {}", name, value);
|
println!("{} {}", name, value);
|
||||||
|
|
@ -46,8 +47,23 @@ impl World {
|
||||||
//self.entlist.dump_to_entfile(ent, Path::new("D:\\actor.ent"))?;
|
//self.entlist.dump_to_entfile(ent, Path::new("D:\\actor.ent"))?;
|
||||||
|
|
||||||
println!("");
|
println!("");
|
||||||
let attributes = ent.get_attributes()?;
|
let mut attributes = ent.get_attributes()?;
|
||||||
dbg!(attributes);
|
if let ESHValue::Binary(bin) = &esh.get("Attributes").unwrap() {
|
||||||
|
dbg!(bin.len());
|
||||||
|
}
|
||||||
|
attributes.stats["strength"] = 10;
|
||||||
|
attributes.stats["perception"] = 10;
|
||||||
|
attributes.stats["endurance"] = 10;
|
||||||
|
attributes.stats["charisma"] = 10;
|
||||||
|
attributes.stats["intelligence"] = 10;
|
||||||
|
attributes.stats["agility"] = 10;
|
||||||
|
attributes.stats["luck"] = 10;
|
||||||
|
ent.set_attributes(attributes)?;
|
||||||
|
|
||||||
|
let esh = ent.get_esh()?;
|
||||||
|
if let ESHValue::Binary(bin) = &esh.get("Attributes").unwrap() {
|
||||||
|
dbg!(bin.len());
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,5 +15,5 @@ fn main() {
|
||||||
|
|
||||||
let mut save = Save::load(Path::new(save_path)).expect("load save");
|
let mut save = Save::load(Path::new(save_path)).expect("load save");
|
||||||
save.world.test().expect("test");
|
save.world.test().expect("test");
|
||||||
//save.save(Path::new("out.sav")).expect("failed to save");
|
save.save(Path::new("out.sav")).expect("failed to save");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue