use crate::{
DbcTable, Indexable,
};
use crate::header::{
DbcHeader, HEADER_SIZE, parse_header,
};
use std::io::Write;
#[derive(Debug, Clone, PartialEq, PartialOrd)]
pub struct TransportPhysics {
pub rows: Vec<TransportPhysicsRow>,
}
impl DbcTable for TransportPhysics {
type Row = TransportPhysicsRow;
const FILENAME: &'static str = "TransportPhysics.dbc";
fn rows(&self) -> &[Self::Row] { &self.rows }
fn rows_mut(&mut self) -> &mut [Self::Row] { &mut self.rows }
fn read(b: &mut impl std::io::Read) -> Result<Self, crate::DbcError> {
let mut header = [0_u8; HEADER_SIZE];
b.read_exact(&mut header)?;
let header = parse_header(&header)?;
if header.record_size != 44 {
return Err(crate::DbcError::InvalidHeader(
crate::InvalidHeaderError::RecordSize {
expected: 44,
actual: header.record_size,
},
));
}
if header.field_count != 11 {
return Err(crate::DbcError::InvalidHeader(
crate::InvalidHeaderError::FieldCount {
expected: 11,
actual: header.field_count,
},
));
}
let mut r = vec![0_u8; (header.record_count * header.record_size) as usize];
b.read_exact(&mut r)?;
let mut rows = Vec::with_capacity(header.record_count as usize);
for mut chunk in r.chunks(header.record_size as usize) {
let chunk = &mut chunk;
let id = TransportPhysicsKey::new(crate::util::read_i32_le(chunk)?);
let wave_amp = crate::util::read_f32_le(chunk)?;
let wave_time_scale = crate::util::read_f32_le(chunk)?;
let roll_amp = crate::util::read_f32_le(chunk)?;
let roll_time_scale = crate::util::read_f32_le(chunk)?;
let pitch_amp = crate::util::read_f32_le(chunk)?;
let pitch_time_scale = crate::util::read_f32_le(chunk)?;
let max_bank = crate::util::read_f32_le(chunk)?;
let max_bank_turn_speed = crate::util::read_f32_le(chunk)?;
let speed_damp_thresh = crate::util::read_f32_le(chunk)?;
let speed_damp = crate::util::read_f32_le(chunk)?;
rows.push(TransportPhysicsRow {
id,
wave_amp,
wave_time_scale,
roll_amp,
roll_time_scale,
pitch_amp,
pitch_time_scale,
max_bank,
max_bank_turn_speed,
speed_damp_thresh,
speed_damp,
});
}
Ok(TransportPhysics { rows, })
}
fn write(&self, b: &mut impl Write) -> Result<(), std::io::Error> {
let header = DbcHeader {
record_count: self.rows.len() as u32,
field_count: 11,
record_size: 44,
string_block_size: 1,
};
b.write_all(&header.write_header())?;
for row in &self.rows {
b.write_all(&row.id.id.to_le_bytes())?;
b.write_all(&row.wave_amp.to_le_bytes())?;
b.write_all(&row.wave_time_scale.to_le_bytes())?;
b.write_all(&row.roll_amp.to_le_bytes())?;
b.write_all(&row.roll_time_scale.to_le_bytes())?;
b.write_all(&row.pitch_amp.to_le_bytes())?;
b.write_all(&row.pitch_time_scale.to_le_bytes())?;
b.write_all(&row.max_bank.to_le_bytes())?;
b.write_all(&row.max_bank_turn_speed.to_le_bytes())?;
b.write_all(&row.speed_damp_thresh.to_le_bytes())?;
b.write_all(&row.speed_damp.to_le_bytes())?;
}
b.write_all(&[0_u8])?;
Ok(())
}
}
impl Indexable for TransportPhysics {
type PrimaryKey = TransportPhysicsKey;
fn get(&self, key: impl TryInto<Self::PrimaryKey>) -> Option<&Self::Row> {
let key = key.try_into().ok()?;
self.rows.iter().find(|a| a.id.id == key.id)
}
fn get_mut(&mut self, key: impl TryInto<Self::PrimaryKey>) -> Option<&mut Self::Row> {
let key = key.try_into().ok()?;
self.rows.iter_mut().find(|a| a.id.id == key.id)
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Ord, PartialOrd, Hash, Default)]
pub struct TransportPhysicsKey {
pub id: i32
}
impl TransportPhysicsKey {
pub const fn new(id: i32) -> Self {
Self { id }
}
}
impl From<u8> for TransportPhysicsKey {
fn from(v: u8) -> Self {
Self::new(v.into())
}
}
impl From<u16> for TransportPhysicsKey {
fn from(v: u16) -> Self {
Self::new(v.into())
}
}
impl From<i8> for TransportPhysicsKey {
fn from(v: i8) -> Self {
Self::new(v.into())
}
}
impl From<i16> for TransportPhysicsKey {
fn from(v: i16) -> Self {
Self::new(v.into())
}
}
impl From<i32> for TransportPhysicsKey {
fn from(v: i32) -> Self {
Self::new(v)
}
}
impl TryFrom<u32> for TransportPhysicsKey {
type Error = u32;
fn try_from(v: u32) -> Result<Self, Self::Error> {
Ok(TryInto::<i32>::try_into(v).ok().ok_or(v)?.into())
}
}
impl TryFrom<usize> for TransportPhysicsKey {
type Error = usize;
fn try_from(v: usize) -> Result<Self, Self::Error> {
Ok(TryInto::<i32>::try_into(v).ok().ok_or(v)?.into())
}
}
impl TryFrom<u64> for TransportPhysicsKey {
type Error = u64;
fn try_from(v: u64) -> Result<Self, Self::Error> {
Ok(TryInto::<i32>::try_into(v).ok().ok_or(v)?.into())
}
}
impl TryFrom<i64> for TransportPhysicsKey {
type Error = i64;
fn try_from(v: i64) -> Result<Self, Self::Error> {
Ok(TryInto::<i32>::try_into(v).ok().ok_or(v)?.into())
}
}
impl TryFrom<isize> for TransportPhysicsKey {
type Error = isize;
fn try_from(v: isize) -> Result<Self, Self::Error> {
Ok(TryInto::<i32>::try_into(v).ok().ok_or(v)?.into())
}
}
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct TransportPhysicsRow {
pub id: TransportPhysicsKey,
pub wave_amp: f32,
pub wave_time_scale: f32,
pub roll_amp: f32,
pub roll_time_scale: f32,
pub pitch_amp: f32,
pub pitch_time_scale: f32,
pub max_bank: f32,
pub max_bank_turn_speed: f32,
pub speed_damp_thresh: f32,
pub speed_damp: f32,
}