mirror of
https://github.com/G2-Games/minidisc-cli.git
synced 2025-04-20 12:12:53 -05:00
Compare commits
No commits in common. "72e13b92f9ac4503776f0df03d4aa451c3389459" and "4151a4f5c0a5ece99578047914389673afb10244" have entirely different histories.
72e13b92f9
...
4151a4f5c0
9 changed files with 808 additions and 1709 deletions
|
@ -1,6 +1,2 @@
|
|||
[target.'cfg(target_family = "wasm")']
|
||||
rustflags = ["--cfg=web_sys_unstable_apis"]
|
||||
|
||||
# Enable for testing WASM-only stuff
|
||||
#[build]
|
||||
#target = "wasm32-unknown-unknown"
|
||||
|
|
|
@ -26,7 +26,8 @@ encoding_rs = "0.8.33"
|
|||
nofmt = "1.0.0"
|
||||
once_cell = "1.18.0"
|
||||
unicode-normalization = "0.1.22"
|
||||
regex = "1.10"
|
||||
regex = "1.10.2"
|
||||
lazy_static = "1.4.0"
|
||||
cross_usb = "0.3"
|
||||
num-derive = "0.3.3"
|
||||
num-traits = "0.2.14"
|
||||
|
@ -38,11 +39,9 @@ ecb = "0.1"
|
|||
tokio = { version = "1.36", features = ["sync"] }
|
||||
g2-unicode-jp = "0.4.1"
|
||||
thiserror = "1.0.57"
|
||||
phf = { version = "0.11.2", features = ["phf_macros", "macros"] }
|
||||
byteorder = "1.5.0"
|
||||
|
||||
[target.'cfg(target_family = "wasm")'.dependencies]
|
||||
gloo = { version = "0.11.0", features = ["futures", "worker"] }
|
||||
gloo = { version = "0.11.0", features = ["futures"] }
|
||||
|
||||
[package.metadata.wasm-pack.profile.dev.wasm-bindgen]
|
||||
dwarf-debug-info = true
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/// A crate for controlling NetMD and Hi-MD devices.
|
||||
///
|
||||
/// To use this library, first you need to get a device from [cross-usb] and then open [netmd::interface::NetMDInterface]
|
||||
|
||||
pub mod netmd;
|
||||
|
|
|
@ -1,262 +1,80 @@
|
|||
#![cfg_attr(debug_assertions, allow(dead_code))]
|
||||
use std::time::Duration;
|
||||
|
||||
use nofmt;
|
||||
use once_cell::sync::Lazy;
|
||||
use thiserror::Error;
|
||||
|
||||
// USB stuff
|
||||
use cross_usb::prelude::*;
|
||||
use cross_usb::usb::{ControlIn, ControlOut, ControlType, Recipient, UsbError};
|
||||
use cross_usb::{Descriptor, Interface};
|
||||
use cross_usb::{Interface, Descriptor};
|
||||
|
||||
use super::utils::cross_sleep;
|
||||
|
||||
const BULK_WRITE_ENDPOINT: u8 = 0x02;
|
||||
const BULK_READ_ENDPOINT: u8 = 0x81;
|
||||
|
||||
pub static DEVICE_IDS: &[DeviceId] = &[
|
||||
DeviceId {
|
||||
vendor_id: 0x04dd,
|
||||
product_id: 0x7202,
|
||||
name: Some("Sharp IM-MT899H"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x04dd,
|
||||
product_id: 0x9013,
|
||||
name: Some("Sharp IM-DR400"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x04dd,
|
||||
product_id: 0x9014,
|
||||
name: Some("Sharp IM-DR80"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0034,
|
||||
name: Some("Sony PCLK-XX"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0036,
|
||||
name: Some("Sony"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0075,
|
||||
name: Some("Sony MZ-N1"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x007c,
|
||||
name: Some("Sony"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0080,
|
||||
name: Some("Sony LAM-1"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0081,
|
||||
name: Some("Sony MDS-JB980/MDS-NT1/MDS-JE780"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0084,
|
||||
name: Some("Sony MZ-N505"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0085,
|
||||
name: Some("Sony MZ-S1"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0086,
|
||||
name: Some("Sony MZ-N707"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x008e,
|
||||
name: Some("Sony CMT-C7NT"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0097,
|
||||
name: Some("Sony PCGA-MDN1"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x00ad,
|
||||
name: Some("Sony CMT-L7HD"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x00c6,
|
||||
name: Some("Sony MZ-N10"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x00c7,
|
||||
name: Some("Sony MZ-N910"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x00c8,
|
||||
name: Some("Sony MZ-N710/NF810"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x00c9,
|
||||
name: Some("Sony MZ-N510/N610"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x00ca,
|
||||
name: Some("Sony MZ-NE410/NF520D"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x00e7,
|
||||
name: Some("Sony CMT-M333NT/M373NT"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x00eb,
|
||||
name: Some("Sony MZ-NE810/NE910"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0101,
|
||||
name: Some("Sony LAM"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0113,
|
||||
name: Some("Aiwa AM-NX1"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x013f,
|
||||
name: Some("Sony MDS-S500"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x014c,
|
||||
name: Some("Aiwa AM-NX9"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x017e,
|
||||
name: Some("Sony MZ-NH1"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0180,
|
||||
name: Some("Sony MZ-NH3D"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0182,
|
||||
name: Some("Sony MZ-NH900"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0184,
|
||||
name: Some("Sony MZ-NH700/NH800"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0186,
|
||||
name: Some("Sony MZ-NH600"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0187,
|
||||
name: Some("Sony MZ-NH600D"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0188,
|
||||
name: Some("Sony MZ-N920"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x018a,
|
||||
name: Some("Sony LAM-3"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x01e9,
|
||||
name: Some("Sony MZ-DH10P"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0219,
|
||||
name: Some("Sony MZ-RH10"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x021b,
|
||||
name: Some("Sony MZ-RH710/MZ-RH910"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x021d,
|
||||
name: Some("Sony CMT-AH10"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x022c,
|
||||
name: Some("Sony CMT-AH10"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x023c,
|
||||
name: Some("Sony DS-HMD1"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0286,
|
||||
name: Some("Sony MZ-RH1"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x011a,
|
||||
name: Some("Sony CMT-SE7"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x054c,
|
||||
product_id: 0x0148,
|
||||
name: Some("Sony MDS-A1"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x0b28,
|
||||
product_id: 0x1004,
|
||||
name: Some("Kenwood MDX-J9"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x04da,
|
||||
product_id: 0x23b3,
|
||||
name: Some("Panasonic SJ-MR250"),
|
||||
},
|
||||
DeviceId {
|
||||
vendor_id: 0x04da,
|
||||
product_id: 0x23b6,
|
||||
name: Some("Panasonic SJ-MR270"),
|
||||
},
|
||||
];
|
||||
pub static DEVICE_IDS: Lazy<Box<[DeviceId]>> = Lazy::new(|| {
|
||||
nofmt::pls! {
|
||||
Box::new([
|
||||
DeviceId {vendor_id: 0x04dd, product_id: 0x7202, name: Some(String::from("Sharp IM-MT899H"))},
|
||||
DeviceId {vendor_id: 0x04dd, product_id: 0x9013, name: Some(String::from("Sharp IM-DR400"))},
|
||||
DeviceId {vendor_id: 0x04dd, product_id: 0x9014, name: Some(String::from("Sharp IM-DR80"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0034, name: Some(String::from("Sony PCLK-XX"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0036, name: Some(String::from("Sony"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0075, name: Some(String::from("Sony MZ-N1"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x007c, name: Some(String::from("Sony"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0080, name: Some(String::from("Sony LAM-1"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0081, name: Some(String::from("Sony MDS-JB980/MDS-NT1/MDS-JE780"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0084, name: Some(String::from("Sony MZ-N505"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0085, name: Some(String::from("Sony MZ-S1"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0086, name: Some(String::from("Sony MZ-N707"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x008e, name: Some(String::from("Sony CMT-C7NT"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0097, name: Some(String::from("Sony PCGA-MDN1"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x00ad, name: Some(String::from("Sony CMT-L7HD"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x00c6, name: Some(String::from("Sony MZ-N10"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x00c7, name: Some(String::from("Sony MZ-N910"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x00c8, name: Some(String::from("Sony MZ-N710/NF810"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x00c9, name: Some(String::from("Sony MZ-N510/N610"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x00ca, name: Some(String::from("Sony MZ-NE410/NF520D"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x00e7, name: Some(String::from("Sony CMT-M333NT/M373NT"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x00eb, name: Some(String::from("Sony MZ-NE810/NE910"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0101, name: Some(String::from("Sony LAM"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0113, name: Some(String::from("Aiwa AM-NX1"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x013f, name: Some(String::from("Sony MDS-S500"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x014c, name: Some(String::from("Aiwa AM-NX9"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x017e, name: Some(String::from("Sony MZ-NH1"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0180, name: Some(String::from("Sony MZ-NH3D"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0182, name: Some(String::from("Sony MZ-NH900"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0184, name: Some(String::from("Sony MZ-NH700/NH800"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0186, name: Some(String::from("Sony MZ-NH600"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0187, name: Some(String::from("Sony MZ-NH600D"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0188, name: Some(String::from("Sony MZ-N920"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x018a, name: Some(String::from("Sony LAM-3"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x01e9, name: Some(String::from("Sony MZ-DH10P"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0219, name: Some(String::from("Sony MZ-RH10"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x021b, name: Some(String::from("Sony MZ-RH710/MZ-RH910"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x021d, name: Some(String::from("Sony CMT-AH10"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x022c, name: Some(String::from("Sony CMT-AH10"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x023c, name: Some(String::from("Sony DS-HMD1"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0286, name: Some(String::from("Sony MZ-RH1"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x011a, name: Some(String::from("Sony CMT-SE7"))},
|
||||
DeviceId {vendor_id: 0x054c, product_id: 0x0148, name: Some(String::from("Sony MDS-A1"))},
|
||||
DeviceId {vendor_id: 0x0b28, product_id: 0x1004, name: Some(String::from("Kenwood MDX-J9"))},
|
||||
DeviceId {vendor_id: 0x04da, product_id: 0x23b3, name: Some(String::from("Panasonic SJ-MR250"))},
|
||||
DeviceId {vendor_id: 0x04da, product_id: 0x23b6, name: Some(String::from("Panasonic SJ-MR270"))},
|
||||
])
|
||||
}
|
||||
});
|
||||
|
||||
pub static DEVICE_IDS_CROSSUSB: Lazy<Box<[cross_usb::DeviceFilter]>> = Lazy::new(|| {
|
||||
DEVICE_IDS
|
||||
.iter()
|
||||
.map(|d| {
|
||||
DEVICE_IDS.iter().map(|d|{
|
||||
cross_usb::device_filter! {
|
||||
vendor_id: d.vendor_id,
|
||||
product_id: d.product_id,
|
||||
}
|
||||
})
|
||||
.collect()
|
||||
}).collect()
|
||||
});
|
||||
|
||||
/// The current status of the Minidisc device
|
||||
|
@ -276,7 +94,7 @@ pub enum Status {
|
|||
pub struct DeviceId {
|
||||
vendor_id: u16,
|
||||
product_id: u16,
|
||||
name: Option<&'static str>,
|
||||
name: Option<String>,
|
||||
}
|
||||
|
||||
#[derive(Error, Debug, PartialEq, Eq, PartialOrd, Ord)]
|
||||
|
@ -338,8 +156,8 @@ impl NetMD {
|
|||
}
|
||||
|
||||
/// Gets the device name, this is limited to the devices in the list
|
||||
pub fn device_name(&self) -> Option<&str> {
|
||||
self.model.name
|
||||
pub fn device_name(&self) -> &Option<String> {
|
||||
&self.model.name
|
||||
}
|
||||
|
||||
/// Gets the vendor id
|
||||
|
@ -492,24 +310,20 @@ impl NetMD {
|
|||
}
|
||||
|
||||
// Default chunksize should be 0x10000
|
||||
pub async fn read_bulk<F: Fn(usize, usize)>(
|
||||
pub async fn read_bulk(
|
||||
&mut self,
|
||||
length: usize,
|
||||
chunksize: usize,
|
||||
progress_callback: Option<F>,
|
||||
) -> Result<Vec<u8>, NetMDError> {
|
||||
let result = self
|
||||
.read_bulk_to_array(length, chunksize, progress_callback)
|
||||
.await?;
|
||||
let result = self.read_bulk_to_array(length, chunksize).await?;
|
||||
|
||||
Ok(result)
|
||||
}
|
||||
|
||||
pub async fn read_bulk_to_array<F: Fn(usize, usize)>(
|
||||
pub async fn read_bulk_to_array(
|
||||
&mut self,
|
||||
length: usize,
|
||||
chunksize: usize,
|
||||
progress_callback: Option<F>,
|
||||
) -> Result<Vec<u8>, NetMDError> {
|
||||
let mut final_result: Vec<u8> = Vec::new();
|
||||
let mut done = 0;
|
||||
|
@ -527,10 +341,6 @@ impl NetMD {
|
|||
Err(error) => return Err(NetMDError::UsbError(error)),
|
||||
};
|
||||
|
||||
if let Some(cb) = &progress_callback {
|
||||
cb(length, done)
|
||||
}
|
||||
|
||||
final_result.extend_from_slice(&res);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,22 +1,12 @@
|
|||
#![cfg_attr(debug_assertions, allow(dead_code))]
|
||||
use cross_usb::Descriptor;
|
||||
use num_derive::FromPrimitive;
|
||||
use num_traits::FromPrimitive;
|
||||
use regex::Regex;
|
||||
use std::error::Error;
|
||||
use std::time::Duration;
|
||||
use cross_usb::Descriptor;
|
||||
|
||||
use crate::netmd::interface::DiscFlag;
|
||||
use crate::netmd::utils::{create_aea_header, create_wav_header, AeaOptions, RawTime};
|
||||
|
||||
use super::interface::{
|
||||
Channels, Direction, DiscFormat, Encoding, InterfaceError, MDSession, MDTrack, NetMDInterface,
|
||||
TrackFlag,
|
||||
};
|
||||
use super::utils::{
|
||||
cross_sleep, half_width_title_length, half_width_to_full_width_range,
|
||||
sanitize_full_width_title, sanitize_half_width_title,
|
||||
};
|
||||
use super::interface::{MDSession, MDTrack, NetMDInterface, Direction, InterfaceError};
|
||||
use super::utils::cross_sleep;
|
||||
|
||||
#[derive(FromPrimitive, PartialEq, Eq)]
|
||||
pub enum OperatingStatus {
|
||||
|
@ -44,215 +34,6 @@ pub struct DeviceStatus {
|
|||
pub time: Time,
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct Track {
|
||||
index: u16,
|
||||
title: String,
|
||||
full_width_title: String,
|
||||
duration: RawTime,
|
||||
channel: Channels,
|
||||
encoding: Encoding,
|
||||
protected: TrackFlag,
|
||||
}
|
||||
|
||||
impl Track {
|
||||
pub fn cells_for_title(&self) -> (usize, usize) {
|
||||
let encoding_name_correction = match self.encoding {
|
||||
Encoding::SP => 0,
|
||||
_ => 1,
|
||||
};
|
||||
|
||||
let full_width_length = chars_to_cells(self.full_width_title.len() * 2);
|
||||
let half_width_length = chars_to_cells(half_width_title_length(&self.title));
|
||||
|
||||
(
|
||||
usize::max(encoding_name_correction, half_width_length),
|
||||
usize::max(encoding_name_correction, full_width_length),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
pub struct Group {
|
||||
index: u16,
|
||||
title: Option<String>,
|
||||
full_width_title: Option<String>,
|
||||
tracks: Vec<Track>,
|
||||
}
|
||||
|
||||
pub struct Disc {
|
||||
title: String,
|
||||
full_width_title: String,
|
||||
writeable: bool,
|
||||
write_protected: bool,
|
||||
used: u64,
|
||||
left: u64,
|
||||
total: u64,
|
||||
track_count: u16,
|
||||
groups: Vec<Group>,
|
||||
}
|
||||
|
||||
impl Disc {
|
||||
pub fn track_count(&self) -> u16 {
|
||||
self.groups
|
||||
.iter()
|
||||
.map(|g| g.tracks.len())
|
||||
.reduce(|acc, s| acc + s)
|
||||
.unwrap() as u16
|
||||
}
|
||||
|
||||
pub fn tracks(&self) -> Vec<Track> {
|
||||
self.groups.iter().flat_map(|g| g.tracks.clone()).collect()
|
||||
}
|
||||
|
||||
fn remaining_characters_for_titles(
|
||||
&self,
|
||||
ignore_disc_titles: bool,
|
||||
include_groups: bool,
|
||||
) -> (usize, usize) {
|
||||
const CELL_LIMIT: usize = 255;
|
||||
|
||||
let groups = self.groups.iter().filter(|g| g.title.is_some());
|
||||
|
||||
let (disc_fw_title, disc_hw_title) = if !ignore_disc_titles {
|
||||
(self.full_width_title.clone(), self.full_width_title.clone())
|
||||
} else {
|
||||
(String::new(), String::new())
|
||||
};
|
||||
|
||||
let mut fw_title = disc_fw_title + "0;//";
|
||||
let mut hw_title = disc_hw_title + "0;//";
|
||||
|
||||
if include_groups {
|
||||
for group in groups {
|
||||
let indices: Vec<u16> = group.tracks.iter().map(|t| t.index).collect();
|
||||
let min_group_index = indices.iter().min().unwrap();
|
||||
let max_group_index = indices.iter().max().unwrap();
|
||||
|
||||
let range = format!("{}{}", min_group_index + 1, {
|
||||
if group.tracks.len() - 1 != 0 {
|
||||
format!("-{}", max_group_index + 1)
|
||||
} else {
|
||||
String::from("")
|
||||
}
|
||||
});
|
||||
|
||||
fw_title.push_str((group.full_width_title.clone().unwrap() + &range).as_str());
|
||||
hw_title.push_str((group.title.clone().unwrap() + &range).as_str());
|
||||
}
|
||||
}
|
||||
|
||||
let mut used_half_width_cells = 0;
|
||||
let mut used_full_width_cells = 0;
|
||||
|
||||
used_full_width_cells += chars_to_cells(fw_title.len() * 2);
|
||||
used_half_width_cells += chars_to_cells(half_width_title_length(&hw_title));
|
||||
|
||||
for track in self.tracks() {
|
||||
let (half_width, full_width) = track.cells_for_title();
|
||||
used_half_width_cells += half_width;
|
||||
used_full_width_cells += full_width;
|
||||
}
|
||||
|
||||
(
|
||||
usize::max(CELL_LIMIT - used_full_width_cells, 0) * 7,
|
||||
usize::max(CELL_LIMIT - used_half_width_cells, 0) * 7,
|
||||
)
|
||||
}
|
||||
|
||||
pub fn compile_disc_titles(&self) -> (String, String) {
|
||||
let (available_full_width, available_half_width) =
|
||||
self.remaining_characters_for_titles(true, false);
|
||||
|
||||
let use_full_width = self
|
||||
.groups
|
||||
.iter()
|
||||
.filter(|n| n.full_width_title.as_ref().is_some_and(|t| !t.is_empty()))
|
||||
.count()
|
||||
> 0
|
||||
|| self
|
||||
.tracks()
|
||||
.iter()
|
||||
.filter(|t| !t.full_width_title.is_empty())
|
||||
.count()
|
||||
> 0;
|
||||
|
||||
let mut new_raw_title = String::new();
|
||||
let mut new_raw_full_width_title = String::new();
|
||||
|
||||
if !self.title.is_empty() {
|
||||
new_raw_title = format!("0;{}//", self.title);
|
||||
}
|
||||
if use_full_width {
|
||||
new_raw_full_width_title = format!("0;{}//", self.full_width_title);
|
||||
}
|
||||
|
||||
for group in &self.groups {
|
||||
if group.title.is_none() || group.tracks.is_empty() {
|
||||
continue;
|
||||
}
|
||||
|
||||
let min_group_index = group
|
||||
.tracks
|
||||
.iter()
|
||||
.map(|t| t.index)
|
||||
.min()
|
||||
.unwrap_or_default();
|
||||
let mut range = format!("{}", min_group_index + 1);
|
||||
|
||||
if group.tracks.len() != 1 {
|
||||
range.push_str(&format!(
|
||||
"-{}",
|
||||
min_group_index as usize + group.tracks.len()
|
||||
));
|
||||
}
|
||||
|
||||
let new_raw_title_after_group =
|
||||
new_raw_title.clone() + &format!("{};{}//", range, group.title.as_ref().unwrap());
|
||||
let new_raw_full_width_title_after_group = new_raw_full_width_title.clone()
|
||||
+ &half_width_to_full_width_range(&range)
|
||||
+ &format!(
|
||||
";{}//",
|
||||
group.full_width_title.as_ref().unwrap_or(&String::new())
|
||||
);
|
||||
|
||||
let half_width_titles_length_in_toc =
|
||||
chars_to_cells(half_width_title_length(&new_raw_title_after_group));
|
||||
|
||||
if use_full_width {
|
||||
let full_width_titles_length_in_toc =
|
||||
chars_to_cells(new_raw_full_width_title_after_group.len() * 2) * 7;
|
||||
if available_full_width as isize - full_width_titles_length_in_toc as isize >= 0 {
|
||||
new_raw_full_width_title = new_raw_full_width_title_after_group
|
||||
}
|
||||
}
|
||||
|
||||
if available_half_width as isize - half_width_titles_length_in_toc as isize >= 0 {
|
||||
new_raw_title = new_raw_title_after_group
|
||||
}
|
||||
}
|
||||
|
||||
let half_width_titles_length_in_toc =
|
||||
chars_to_cells(half_width_title_length(&new_raw_title)) * 7;
|
||||
let full_width_titles_length_in_toc = chars_to_cells(new_raw_full_width_title.len() * 2);
|
||||
|
||||
if (available_half_width as isize - half_width_titles_length_in_toc as isize) < 0 {
|
||||
new_raw_title = String::new();
|
||||
}
|
||||
if (available_full_width as isize - full_width_titles_length_in_toc as isize) < 0 {
|
||||
new_raw_full_width_title = String::new();
|
||||
}
|
||||
|
||||
(
|
||||
new_raw_title,
|
||||
if use_full_width {
|
||||
new_raw_full_width_title
|
||||
} else {
|
||||
String::new()
|
||||
},
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
pub struct NetMDContext {
|
||||
interface: NetMDInterface,
|
||||
}
|
||||
|
@ -262,7 +43,9 @@ impl NetMDContext {
|
|||
pub async fn new(device: Descriptor) -> Result<Self, InterfaceError> {
|
||||
let interface = NetMDInterface::new(device).await?;
|
||||
|
||||
Ok(Self { interface })
|
||||
Ok(Self {
|
||||
interface,
|
||||
})
|
||||
}
|
||||
|
||||
/// Change to the next track (skip forward)
|
||||
|
@ -310,201 +93,9 @@ impl NetMDContext {
|
|||
})
|
||||
}
|
||||
|
||||
pub async fn list_content(&mut self) -> Result<Disc, Box<dyn Error>> {
|
||||
let flags = self.interface.disc_flags().await?;
|
||||
let title = self.interface.disc_title(false).await?;
|
||||
let full_width_title = self.interface.disc_title(true).await?;
|
||||
let disc_capacity: [RawTime; 3] = self.interface.disc_capacity().await?;
|
||||
let track_count = self.interface.track_count().await?;
|
||||
|
||||
let mut frames_used = disc_capacity[0].as_frames();
|
||||
let mut frames_total = disc_capacity[1].as_frames();
|
||||
let mut frames_left = disc_capacity[2].as_frames();
|
||||
|
||||
// Some devices report the time remaining of the currently selected recording mode. (Sharps)
|
||||
while frames_total > 512 * 60 * 82 {
|
||||
frames_used /= 2;
|
||||
frames_total /= 2;
|
||||
frames_left /= 2;
|
||||
}
|
||||
|
||||
let track_group_list = self.interface.track_group_list().await?;
|
||||
|
||||
let mut groups = vec![];
|
||||
for (index, group) in track_group_list.iter().enumerate() {
|
||||
let mut tracks = vec![];
|
||||
for track in &group.2 {
|
||||
let (encoding, channel) = self.interface.track_encoding(*track).await?;
|
||||
let duration = self.interface.track_length(*track).await?;
|
||||
let flags = self.interface.track_flags(*track).await?;
|
||||
let title = self.interface.track_title(*track, false).await?;
|
||||
let full_width_title = self.interface.track_title(*track, true).await?;
|
||||
|
||||
tracks.push(Track {
|
||||
index: *track,
|
||||
title,
|
||||
full_width_title,
|
||||
duration,
|
||||
channel,
|
||||
encoding,
|
||||
protected: TrackFlag::from_u8(flags).unwrap(),
|
||||
})
|
||||
}
|
||||
|
||||
groups.push(Group {
|
||||
index: index as u16,
|
||||
title: group.0.clone(),
|
||||
full_width_title: group.1.clone(),
|
||||
tracks,
|
||||
})
|
||||
}
|
||||
|
||||
let disc = Disc {
|
||||
title,
|
||||
full_width_title,
|
||||
writeable: (flags & DiscFlag::Writable as u8) != 0,
|
||||
write_protected: (flags & DiscFlag::WriteProtected as u8) != 0,
|
||||
used: frames_used,
|
||||
left: frames_left,
|
||||
total: frames_total,
|
||||
track_count,
|
||||
groups,
|
||||
};
|
||||
|
||||
Ok(disc)
|
||||
}
|
||||
|
||||
pub async fn rewrite_disc_groups(&mut self, disc: Disc) -> Result<(), Box<dyn Error>> {
|
||||
let (new_raw_title, new_raw_full_width_title) = disc.compile_disc_titles();
|
||||
|
||||
self.interface.set_disc_title(&new_raw_title, false).await?;
|
||||
self.interface
|
||||
.set_disc_title(&new_raw_full_width_title, false)
|
||||
.await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn rename_disc(
|
||||
&mut self,
|
||||
new_name: &str,
|
||||
new_fw_name: Option<&str>,
|
||||
) -> Result<(), Box<dyn Error>> {
|
||||
let new_name = sanitize_half_width_title(new_name);
|
||||
let new_fw_name = if let Some(name) = new_fw_name {
|
||||
Some(sanitize_full_width_title(name))
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
||||
let old_name = self.interface.disc_title(false).await?;
|
||||
let old_fw_name = self.interface.disc_title(true).await?;
|
||||
let old_raw_name = self.interface.raw_disc_title(false).await?;
|
||||
let old_raw_fw_name = self.interface.raw_disc_title(true).await?;
|
||||
|
||||
let has_groups = old_raw_name.find("//").is_some();
|
||||
let has_fw_groups = old_raw_fw_name.find("//").is_some();
|
||||
|
||||
let has_groups_and_title = old_raw_name.starts_with("0;");
|
||||
let has_fw_groups_and_title = old_raw_fw_name.starts_with("0;");
|
||||
|
||||
if new_fw_name.as_ref().is_some_and(|n| n != &old_fw_name) {
|
||||
let new_fw_name_with_groups;
|
||||
if has_fw_groups {
|
||||
if has_fw_groups_and_title {
|
||||
let re = Regex::new("/^0;.*?///").unwrap();
|
||||
new_fw_name_with_groups = re
|
||||
.replace_all(
|
||||
&old_raw_fw_name,
|
||||
if !new_fw_name.as_ref().unwrap().is_empty() {
|
||||
format!("0;{}//", new_fw_name.unwrap())
|
||||
} else {
|
||||
String::new()
|
||||
},
|
||||
)
|
||||
.into()
|
||||
} else {
|
||||
new_fw_name_with_groups =
|
||||
format!(r"0;{}//{}", new_fw_name.unwrap(), old_raw_fw_name);
|
||||
}
|
||||
} else {
|
||||
new_fw_name_with_groups = new_fw_name.unwrap();
|
||||
}
|
||||
|
||||
self.interface
|
||||
.set_disc_title(&new_fw_name_with_groups, true)
|
||||
.await?;
|
||||
}
|
||||
|
||||
if new_name == old_name {
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
let new_name_with_groups;
|
||||
if has_groups {
|
||||
if has_groups_and_title {
|
||||
let re = Regex::new(r"/^0;.*?\/\//").unwrap();
|
||||
new_name_with_groups = re
|
||||
.replace_all(
|
||||
&old_raw_name,
|
||||
if !new_name.is_empty() {
|
||||
format!("0;{}//", new_name)
|
||||
} else {
|
||||
String::new()
|
||||
},
|
||||
)
|
||||
.into()
|
||||
} else {
|
||||
new_name_with_groups = format!("0;{}//{}", new_name, old_raw_name);
|
||||
}
|
||||
} else {
|
||||
new_name_with_groups = new_name
|
||||
}
|
||||
|
||||
self.interface
|
||||
.set_disc_title(&new_name_with_groups, false)
|
||||
.await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn upload<F: Fn(usize, usize)>(
|
||||
&mut self,
|
||||
track: u16,
|
||||
progress_callback: Option<F>,
|
||||
) -> Result<(DiscFormat, Vec<u8>), Box<dyn Error>> {
|
||||
let mut output_vec = Vec::new();
|
||||
let (format, _frames, result) = self
|
||||
.interface
|
||||
.save_track_to_array(track, progress_callback)
|
||||
.await?;
|
||||
|
||||
let header;
|
||||
match format {
|
||||
DiscFormat::SPMono | DiscFormat::SPStereo => {
|
||||
let aea_options = AeaOptions {
|
||||
name: &self.interface.track_title(track, false).await?,
|
||||
channels: if format == DiscFormat::SPStereo { 2 } else { 1 },
|
||||
sound_groups: f32::floor(result.len() as f32 / 212.0) as u32,
|
||||
..Default::default()
|
||||
};
|
||||
header = create_aea_header(aea_options);
|
||||
}
|
||||
DiscFormat::LP2 | DiscFormat::LP4 => {
|
||||
header = create_wav_header(format, result.len() as u32);
|
||||
}
|
||||
}
|
||||
|
||||
output_vec.extend_from_slice(&header);
|
||||
output_vec.extend_from_slice(&result);
|
||||
|
||||
Ok((format, header))
|
||||
}
|
||||
|
||||
pub async fn prepare_download(&mut self) -> Result<(), Box<dyn Error>> {
|
||||
while ![OperatingStatus::DiscBlank, OperatingStatus::Ready].contains(
|
||||
&self
|
||||
.device_status()
|
||||
&self.device_status()
|
||||
.await?
|
||||
.state
|
||||
.unwrap_or(OperatingStatus::NoDisc),
|
||||
|
@ -542,7 +133,3 @@ impl NetMDContext {
|
|||
Ok(result)
|
||||
}
|
||||
}
|
||||
|
||||
fn chars_to_cells(len: usize) -> usize {
|
||||
f32::ceil(len as f32 / 7.0) as usize
|
||||
}
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
use crate::netmd::base;
|
||||
use crate::netmd::query_utils::{format_query, scan_query, QueryValue};
|
||||
use crate::netmd::utils::{
|
||||
half_width_to_full_width_range, length_after_encoding_to_sjis, sanitize_full_width_title,
|
||||
sanitize_half_width_title, RawTime,
|
||||
half_width_to_full_width_range, length_after_encoding_to_jis, sanitize_full_width_title,
|
||||
sanitize_half_width_title, time_to_duration,
|
||||
};
|
||||
use cbc::cipher::block_padding::NoPadding;
|
||||
use cbc::cipher::{BlockDecryptMut, BlockEncryptMut, KeyInit, KeyIvInit};
|
||||
|
@ -11,13 +11,15 @@ use encoding_rs::SHIFT_JIS;
|
|||
use num_derive::FromPrimitive;
|
||||
use rand::RngCore;
|
||||
use std::collections::HashMap;
|
||||
use std::error::Error;
|
||||
use std::time::Duration;
|
||||
use thiserror::Error;
|
||||
use std::error::Error;
|
||||
use tokio::sync::mpsc::UnboundedReceiver;
|
||||
|
||||
use lazy_static::lazy_static;
|
||||
|
||||
use super::base::NetMD;
|
||||
use super::utils::{cross_sleep, to_sjis};
|
||||
use super::utils::cross_sleep;
|
||||
|
||||
#[derive(Copy, Clone)]
|
||||
enum Action {
|
||||
|
@ -33,7 +35,7 @@ pub enum Direction {
|
|||
Restart = 0x0001,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy, FromPrimitive, PartialEq, Eq)]
|
||||
#[derive(Debug, Clone, Copy, FromPrimitive)]
|
||||
pub enum DiscFormat {
|
||||
LP4 = 0,
|
||||
LP2 = 2,
|
||||
|
@ -50,7 +52,7 @@ pub enum WireFormat {
|
|||
}
|
||||
|
||||
impl WireFormat {
|
||||
const fn frame_size(&self) -> u16 {
|
||||
fn frame_size(&self) -> u16 {
|
||||
match self {
|
||||
WireFormat::Pcm => 2048,
|
||||
WireFormat::L105kbps => 192,
|
||||
|
@ -58,70 +60,31 @@ impl WireFormat {
|
|||
WireFormat::LP4 => 96,
|
||||
}
|
||||
}
|
||||
|
||||
const fn disc_for_wire(&self) -> DiscFormat {
|
||||
match self {
|
||||
WireFormat::Pcm => DiscFormat::SPStereo,
|
||||
WireFormat::L105kbps => DiscFormat::LP2,
|
||||
WireFormat::LP2 => DiscFormat::LP2,
|
||||
WireFormat::LP4 => DiscFormat::LP4,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
#[derive(Debug)]
|
||||
pub enum Encoding {
|
||||
SP = 0x90,
|
||||
LP2 = 0x92,
|
||||
LP4 = 0x93,
|
||||
}
|
||||
|
||||
impl ToString for Encoding {
|
||||
fn to_string(&self) -> String {
|
||||
match self {
|
||||
Encoding::SP => String::from("sp"),
|
||||
Encoding::LP2 => String::from("lp2"),
|
||||
Encoding::LP4 => String::from("lp4"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
pub enum Channels {
|
||||
enum Channels {
|
||||
Mono = 0x01,
|
||||
Stereo = 0x00,
|
||||
}
|
||||
|
||||
impl ToString for Channels {
|
||||
fn to_string(&self) -> String {
|
||||
match self {
|
||||
Channels::Mono => String::from("mono"),
|
||||
Channels::Stereo => String::from("stereo"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
enum ChannelCount {
|
||||
Mono = 1,
|
||||
Stereo = 2,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy, FromPrimitive)]
|
||||
pub enum TrackFlag {
|
||||
enum TrackFlag {
|
||||
Protected = 0x03,
|
||||
Unprotected = 0x00,
|
||||
}
|
||||
|
||||
impl ToString for TrackFlag {
|
||||
fn to_string(&self) -> String {
|
||||
match self {
|
||||
TrackFlag::Protected => String::from("protected"),
|
||||
TrackFlag::Unprotected => String::from("unprotected"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub enum DiscFlag {
|
||||
enum DiscFlag {
|
||||
Writable = 0x10,
|
||||
WriteProtected = 0x40,
|
||||
}
|
||||
|
@ -198,6 +161,15 @@ enum NetmdStatus {
|
|||
Interim = 0x0f,
|
||||
}
|
||||
|
||||
lazy_static! {
|
||||
static ref FRAME_SIZE: HashMap<WireFormat, usize> = HashMap::from([
|
||||
(WireFormat::Pcm, 2048),
|
||||
(WireFormat::LP2, 192),
|
||||
(WireFormat::L105kbps, 152),
|
||||
(WireFormat::LP4, 96),
|
||||
]);
|
||||
}
|
||||
|
||||
#[derive(Error, Debug, Eq, PartialEq, PartialOrd, Ord)]
|
||||
#[error("invalid status code")]
|
||||
pub struct StatusError;
|
||||
|
@ -317,8 +289,7 @@ impl NetMDInterface {
|
|||
self.change_descriptor_state(
|
||||
&Descriptor::DiscSubunitIdentifier,
|
||||
&DescriptorAction::OpenRead,
|
||||
)
|
||||
.await?;
|
||||
).await?;
|
||||
|
||||
let mut query = format_query("1809 00 ff00 0000 0000".to_string(), vec![])?;
|
||||
|
||||
|
@ -450,11 +421,7 @@ impl NetMDInterface {
|
|||
Ok(result)
|
||||
}
|
||||
|
||||
async fn send_command(
|
||||
&mut self,
|
||||
query: &mut Vec<u8>,
|
||||
test: bool,
|
||||
) -> Result<(), InterfaceError> {
|
||||
async fn send_command(&mut self, query: &mut Vec<u8>, test: bool) -> Result<(), InterfaceError> {
|
||||
let status_byte = match test {
|
||||
true => NetmdStatus::GeneralInquiry,
|
||||
false => NetmdStatus::Control,
|
||||
|
@ -483,9 +450,7 @@ impl NetMDInterface {
|
|||
NetmdStatus::NotImplemented => {
|
||||
return Err(InterfaceError::NotImplemented(format!("{:02X?}", data)))
|
||||
}
|
||||
NetmdStatus::Rejected => {
|
||||
return Err(InterfaceError::Rejected(format!("{:02X?}", data)))
|
||||
}
|
||||
NetmdStatus::Rejected => return Err(InterfaceError::Rejected(format!("{:02X?}", data))),
|
||||
NetmdStatus::Interim if !accept_interim => {
|
||||
let sleep_time = Self::INTERIM_RESPONSE_RETRY_INTERVAL
|
||||
* (u32::pow(2, current_attempt as u32) - 1);
|
||||
|
@ -577,8 +542,7 @@ impl NetMDInterface {
|
|||
self.change_descriptor_state(
|
||||
&Descriptor::OperatingStatusBlock,
|
||||
&DescriptorAction::OpenRead,
|
||||
)
|
||||
.await?;
|
||||
).await?;
|
||||
|
||||
let mut query = format_query(
|
||||
"1809 8001 0230 8800 0030 8804 00 ff00 00000000".to_string(),
|
||||
|
@ -700,9 +664,11 @@ impl NetMDInterface {
|
|||
|
||||
let reply = match self.send_query(&mut query, false, false).await {
|
||||
Ok(result) => result,
|
||||
Err(e) => match e {
|
||||
Err(e) => {
|
||||
match e {
|
||||
InterfaceError::Rejected(_) => Vec::new(),
|
||||
_ => return Err(e),
|
||||
_ => return Err(e)
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -851,7 +817,7 @@ impl NetMDInterface {
|
|||
}
|
||||
|
||||
/// Gets the disc title as it is stored
|
||||
pub async fn raw_disc_title(&mut self, wchar: bool) -> Result<String, InterfaceError> {
|
||||
async fn raw_disc_title(&mut self, wchar: bool) -> Result<String, InterfaceError> {
|
||||
self.change_descriptor_state(&Descriptor::AudioContentsTD, &DescriptorAction::OpenRead)
|
||||
.await?;
|
||||
self.change_descriptor_state(&Descriptor::DiscTitleTD, &DescriptorAction::OpenRead)
|
||||
|
@ -1005,10 +971,9 @@ impl NetMDInterface {
|
|||
let mut track_list: Vec<u16> = Vec::new();
|
||||
for track in track_min - 1..track_max {
|
||||
if track_dict.contains_key(&track) {
|
||||
return Err(InterfaceError::GroupError(format!(
|
||||
"track {} is in 2 groups",
|
||||
track
|
||||
)));
|
||||
return Err(
|
||||
InterfaceError::GroupError(format!("track {} is in 2 groups", track))
|
||||
);
|
||||
}
|
||||
track_dict.insert(track, (String::from(group_name), i as u16));
|
||||
track_list.push(track);
|
||||
|
@ -1100,15 +1065,15 @@ impl NetMDInterface {
|
|||
}
|
||||
|
||||
let new_title: Vec<u8>;
|
||||
let old_len = length_after_encoding_to_sjis(¤t_title);
|
||||
let old_len = length_after_encoding_to_jis(¤t_title);
|
||||
|
||||
let wchar_value = match wchar {
|
||||
true => {
|
||||
new_title = to_sjis(&sanitize_full_width_title(title));
|
||||
new_title = sanitize_full_width_title(title, false);
|
||||
1
|
||||
}
|
||||
false => {
|
||||
new_title = to_sjis(&sanitize_half_width_title(title));
|
||||
new_title = sanitize_half_width_title(title);
|
||||
0
|
||||
}
|
||||
};
|
||||
|
@ -1162,11 +1127,11 @@ impl NetMDInterface {
|
|||
let new_title: Vec<u8>;
|
||||
let (wchar_value, descriptor) = match wchar {
|
||||
true => {
|
||||
new_title = to_sjis(&sanitize_full_width_title(title));
|
||||
new_title = sanitize_full_width_title(title, false);
|
||||
(3, Descriptor::AudioUTOC4TD)
|
||||
}
|
||||
false => {
|
||||
new_title = to_sjis(&sanitize_half_width_title(title));
|
||||
new_title = sanitize_half_width_title(title);
|
||||
(2, Descriptor::AudioUTOC1TD)
|
||||
}
|
||||
};
|
||||
|
@ -1178,7 +1143,7 @@ impl NetMDInterface {
|
|||
if title == current_title {
|
||||
return Ok(());
|
||||
}
|
||||
length_after_encoding_to_sjis(¤t_title) as u16
|
||||
length_after_encoding_to_jis(¤t_title) as u16
|
||||
}
|
||||
Err(error) if error.to_string() == "Rejected" => 0,
|
||||
Err(error) => return Err(error),
|
||||
|
@ -1267,12 +1232,12 @@ impl NetMDInterface {
|
|||
Ok(res[0].to_vec().unwrap())
|
||||
}
|
||||
|
||||
/// Gets the length of tracks as a raw duration from a set
|
||||
/// Gets the length of tracks as a [std::time::Duration] from a set
|
||||
pub async fn track_lengths(
|
||||
&mut self,
|
||||
tracks: Vec<u16>,
|
||||
) -> Result<Vec<RawTime>, InterfaceError> {
|
||||
let mut times = vec![];
|
||||
) -> Result<Vec<std::time::Duration>, InterfaceError> {
|
||||
let mut times: Vec<std::time::Duration> = vec![];
|
||||
|
||||
self.change_descriptor_state(&Descriptor::AudioContentsTD, &DescriptorAction::OpenRead)
|
||||
.await?;
|
||||
|
@ -1304,12 +1269,8 @@ impl NetMDInterface {
|
|||
.map(|v| v.to_i64().unwrap() as u64)
|
||||
.collect();
|
||||
|
||||
times.push(RawTime {
|
||||
hours: times_num[0],
|
||||
minutes: times_num[1],
|
||||
seconds: times_num[2],
|
||||
frames: times_num[3],
|
||||
});
|
||||
let length = time_to_duration(×_num);
|
||||
times.push(length);
|
||||
}
|
||||
|
||||
self.change_descriptor_state(&Descriptor::AudioContentsTD, &DescriptorAction::Close)
|
||||
|
@ -1318,20 +1279,20 @@ impl NetMDInterface {
|
|||
Ok(times)
|
||||
}
|
||||
|
||||
/// Gets the length of a track as a raw duration
|
||||
pub async fn track_length(&mut self, track: u16) -> Result<RawTime, InterfaceError> {
|
||||
/// Gets the length of a track as a [std::time::Duration]
|
||||
pub async fn track_length(
|
||||
&mut self,
|
||||
track: u16,
|
||||
) -> Result<std::time::Duration, InterfaceError> {
|
||||
Ok(self.track_lengths([track].into()).await?[0])
|
||||
}
|
||||
|
||||
/// Gets the encoding of a track (SP, LP2, LP4)
|
||||
pub async fn track_encoding(
|
||||
&mut self,
|
||||
track_number: u16,
|
||||
) -> Result<(Encoding, Channels), InterfaceError> {
|
||||
pub async fn track_encoding(&mut self, track_number: u16) -> Result<Encoding, InterfaceError> {
|
||||
let raw_value = self.raw_track_info(track_number, 0x3080, 0x0700).await?;
|
||||
let result = scan_query(raw_value, "07 0004 0110 %b %b".to_string())?;
|
||||
|
||||
let encoding = match result[0].to_i64() {
|
||||
let final_encoding = match result[0].to_i64() {
|
||||
Ok(0x90) => Encoding::SP,
|
||||
Ok(0x92) => Encoding::LP2,
|
||||
Ok(0x93) => Encoding::LP4,
|
||||
|
@ -1339,14 +1300,7 @@ impl NetMDInterface {
|
|||
Err(_) => unreachable!(),
|
||||
};
|
||||
|
||||
let channels = match result[0].to_i64() {
|
||||
Ok(0x01) => Channels::Stereo,
|
||||
Ok(0x00) => Channels::Mono,
|
||||
Ok(e) => return Err(InterfaceError::InvalidEncoding(e as u8)),
|
||||
Err(_) => unreachable!(),
|
||||
};
|
||||
|
||||
Ok((encoding, channels))
|
||||
Ok(final_encoding)
|
||||
}
|
||||
|
||||
/// Gets a track's flags
|
||||
|
@ -1369,34 +1323,36 @@ impl NetMDInterface {
|
|||
}
|
||||
|
||||
/// Gets the disc capacity as a [std::time::Duration]
|
||||
pub async fn disc_capacity(&mut self) -> Result<[RawTime; 3], InterfaceError> {
|
||||
pub async fn disc_capacity(&mut self) -> Result<[std::time::Duration; 3], InterfaceError> {
|
||||
self.change_descriptor_state(&Descriptor::RootTD, &DescriptorAction::OpenRead)
|
||||
.await?;
|
||||
|
||||
let mut query = format_query("1806 02101000 3080 0300 ff00 00000000".to_string(), vec![])?;
|
||||
let reply = self.send_query(&mut query, false, false).await?;
|
||||
let mut result: [std::time::Duration; 3] = [std::time::Duration::from_secs(0); 3];
|
||||
|
||||
// 8003 changed to %?03 - Panasonic returns 0803 instead. This byte's meaning is unknown
|
||||
let res = scan_query(
|
||||
reply,
|
||||
"1806 02101000 3080 0300 1000 001d0000 001b %?03 0017 8000 0005 %W %B %B %B 0005 %W %B %B %B 0005 %W %B %B %B".to_string()
|
||||
)?;
|
||||
|
||||
let res_num: Vec<RawTime> = res
|
||||
.windows(4)
|
||||
.step_by(4)
|
||||
.map(|t| RawTime {
|
||||
hours: t[0].to_i64().unwrap() as u64,
|
||||
minutes: t[1].to_i64().unwrap() as u64,
|
||||
seconds: t[2].to_i64().unwrap() as u64,
|
||||
frames: t[3].to_i64().unwrap() as u64,
|
||||
})
|
||||
)?; //25^
|
||||
let res_num: Vec<u64> = res
|
||||
.into_iter()
|
||||
.map(|v| v.to_i64().unwrap() as u64)
|
||||
.collect();
|
||||
|
||||
// Create 3 values, `Frames Used`, `Frames Total`, and `Frames Left`
|
||||
for i in 0..3 {
|
||||
let tmp = &res_num[(4 * i)..=(4 * i) + 3];
|
||||
let time_micros =
|
||||
(tmp[0] * 3600000000) + (tmp[1] * 60000000) + (tmp[2] * 1000000) + (tmp[3] * 11600);
|
||||
result[i] = std::time::Duration::from_micros(time_micros);
|
||||
}
|
||||
|
||||
self.change_descriptor_state(&Descriptor::RootTD, &DescriptorAction::Close)
|
||||
.await?;
|
||||
|
||||
Ok(res_num.try_into().unwrap())
|
||||
Ok(result)
|
||||
}
|
||||
|
||||
pub async fn recording_parameters(&mut self) -> Result<Vec<u8>, InterfaceError> {
|
||||
|
@ -1424,10 +1380,9 @@ impl NetMDInterface {
|
|||
/// Gets the bytes of a track
|
||||
///
|
||||
/// This can only be executed on an MZ-RH1 / M200
|
||||
pub async fn save_track_to_array<F: Fn(usize, usize)>(
|
||||
pub async fn save_track_to_array(
|
||||
&mut self,
|
||||
track: u16,
|
||||
progress_callback: Option<F>,
|
||||
) -> Result<(DiscFormat, u16, Vec<u8>), InterfaceError> {
|
||||
let mut query = format_query(
|
||||
"1800 080046 f003010330 ff00 1001 %w".to_string(),
|
||||
|
@ -1445,17 +1400,14 @@ impl NetMDInterface {
|
|||
let codec = res[1].to_i64().unwrap() as u8;
|
||||
let length = res[2].to_i64().unwrap() as usize;
|
||||
|
||||
let result = self
|
||||
.device
|
||||
.read_bulk(length, 0x10000, progress_callback)
|
||||
.await?;
|
||||
let result = self.device.read_bulk(length, 0x10000).await?;
|
||||
|
||||
scan_query(
|
||||
self.read_reply(false).await?,
|
||||
"1800 080046 f003010330 0000 1001 %?%? %?%?".to_string(),
|
||||
)?;
|
||||
|
||||
cross_sleep(Duration::from_millis(500)).await;
|
||||
std::thread::sleep(std::time::Duration::from_millis(500));
|
||||
|
||||
let format: DiscFormat = match codec & 0x06 {
|
||||
0 => DiscFormat::LP4,
|
||||
|
@ -1554,10 +1506,7 @@ impl NetMDInterface {
|
|||
hostnonce: Vec<u8>,
|
||||
) -> Result<Vec<u8>, InterfaceError> {
|
||||
if hostnonce.len() != 8 {
|
||||
return Err(EncryptionError::InvalidLength(
|
||||
"host nonce",
|
||||
hostnonce.len(),
|
||||
))?;
|
||||
return Err(EncryptionError::InvalidLength("host nonce", hostnonce.len()))?;
|
||||
}
|
||||
|
||||
let mut query = format_query(
|
||||
|
@ -1588,22 +1537,13 @@ impl NetMDInterface {
|
|||
hex_session_key: &[u8],
|
||||
) -> Result<(), InterfaceError> {
|
||||
if contentid.len() != 20 {
|
||||
return Err(EncryptionError::InvalidLength(
|
||||
"content ID",
|
||||
contentid.len(),
|
||||
))?;
|
||||
return Err(EncryptionError::InvalidLength("content ID", contentid.len()))?;
|
||||
}
|
||||
if keyenckey.len() != 8 {
|
||||
return Err(EncryptionError::InvalidLength(
|
||||
"key encryption",
|
||||
keyenckey.len(),
|
||||
))?;
|
||||
return Err(EncryptionError::InvalidLength("key encryption", keyenckey.len()))?;
|
||||
}
|
||||
if hex_session_key.len() != 8 {
|
||||
return Err(EncryptionError::InvalidLength(
|
||||
"session key",
|
||||
hex_session_key.len(),
|
||||
))?;
|
||||
return Err(EncryptionError::InvalidLength("session key", hex_session_key.len()))?;
|
||||
}
|
||||
|
||||
let mut message = [vec![1, 1, 1, 1], contentid.to_vec(), keyenckey.to_vec()].concat();
|
||||
|
@ -1629,10 +1569,7 @@ impl NetMDInterface {
|
|||
hex_session_key: &[u8],
|
||||
) -> Result<(), InterfaceError> {
|
||||
if hex_session_key.len() != 8 {
|
||||
return Err(EncryptionError::InvalidLength(
|
||||
"hex session key",
|
||||
hex_session_key.len(),
|
||||
))?;
|
||||
return Err(EncryptionError::InvalidLength("hex session key", hex_session_key.len()))?;
|
||||
}
|
||||
|
||||
let mut message = [0u8; 8];
|
||||
|
@ -1671,10 +1608,7 @@ impl NetMDInterface {
|
|||
F: Fn(usize, usize),
|
||||
{
|
||||
if hex_session_key.len() != 8 {
|
||||
return Err(EncryptionError::InvalidLength(
|
||||
"hex session key",
|
||||
hex_session_key.len(),
|
||||
))?;
|
||||
return Err(EncryptionError::InvalidLength("hex session key", hex_session_key.len()))?;
|
||||
}
|
||||
|
||||
// Sharps are slow
|
||||
|
@ -1790,6 +1724,15 @@ pub fn retailmac(key: &[u8], value: &[u8], iv: &[u8; 8]) -> Vec<u8> {
|
|||
end[..8].to_vec()
|
||||
}
|
||||
|
||||
lazy_static! {
|
||||
static ref DISC_FOR_WIRE: HashMap<WireFormat, DiscFormat> = HashMap::from([
|
||||
(WireFormat::Pcm, DiscFormat::SPStereo),
|
||||
(WireFormat::LP2, DiscFormat::LP2),
|
||||
(WireFormat::L105kbps, DiscFormat::LP2),
|
||||
(WireFormat::LP4, DiscFormat::LP4),
|
||||
]);
|
||||
}
|
||||
|
||||
pub struct EKBData {
|
||||
chains: [[u8; 16]; 2],
|
||||
depth: i32,
|
||||
|
@ -1868,7 +1811,7 @@ impl MDTrack {
|
|||
}
|
||||
|
||||
pub fn frame_size(&self) -> usize {
|
||||
self.format.frame_size() as usize
|
||||
*FRAME_SIZE.get(&self.format).unwrap()
|
||||
}
|
||||
|
||||
pub fn chunk_size(&self) -> usize {
|
||||
|
@ -1964,7 +1907,7 @@ impl<'a> MDSession<'a> {
|
|||
)
|
||||
.await?;
|
||||
let data_format = track.data_format();
|
||||
let final_disc_format = disc_format.unwrap_or(data_format.disc_for_wire());
|
||||
let final_disc_format = disc_format.unwrap_or(*DISC_FOR_WIRE.get(&data_format).unwrap());
|
||||
|
||||
let (track_index, uuid, ccid) = self
|
||||
.md
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,19 +1,23 @@
|
|||
use crate::netmd::utils;
|
||||
use lazy_static::lazy_static;
|
||||
use std::collections::hash_map::HashMap;
|
||||
use thiserror::Error;
|
||||
|
||||
/// %b, w, d, q - explained above (can have endiannes overriden by '>' and '<' operators, f. ex. %>d %<q)
|
||||
/// %s - Uint8Array preceded by 2 bytes of length
|
||||
/// %x - Uint8Array preceded by 2 bytes of length
|
||||
/// %z - Uint8Array preceded by 1 byte of length
|
||||
/// %* - raw Uint8Array
|
||||
/// %B - BCD-encoded 1-byte number
|
||||
/// %W - BCD-encoded 2-byte number
|
||||
static FORMAT_TYPE_LEN_DICT: phf::Map<char, i32> = phf::phf_map! {
|
||||
'b' => 1, // byte
|
||||
'w' => 2, // word
|
||||
'd' => 4, // doubleword
|
||||
'q' => 8, // quadword
|
||||
};
|
||||
lazy_static! {
|
||||
/// %b, w, d, q - explained above (can have endiannes overriden by '>' and '<' operators, f. ex. %>d %<q)
|
||||
/// %s - Uint8Array preceded by 2 bytes of length
|
||||
/// %x - Uint8Array preceded by 2 bytes of length
|
||||
/// %z - Uint8Array preceded by 1 byte of length
|
||||
/// %* - raw Uint8Array
|
||||
/// %B - BCD-encoded 1-byte number
|
||||
/// %W - BCD-encoded 2-byte number
|
||||
static ref FORMAT_TYPE_LEN_DICT: HashMap<char, i32> = HashMap::from([
|
||||
('b', 1), // byte
|
||||
('w', 2), // word
|
||||
('d', 4), // doubleword
|
||||
('q', 8), // quadword
|
||||
]);
|
||||
}
|
||||
|
||||
const DEBUG: bool = false;
|
||||
|
||||
|
@ -26,15 +30,18 @@ pub enum QueryValue {
|
|||
#[derive(Error, Debug, Eq, PartialEq, PartialOrd, Ord)]
|
||||
pub enum ValueError {
|
||||
#[error("type mismatch: expected {expected}, got {actual}")]
|
||||
TypeMismatch { expected: String, actual: String },
|
||||
TypeMismatch {
|
||||
expected: String,
|
||||
actual: String
|
||||
}
|
||||
}
|
||||
|
||||
impl QueryValue {
|
||||
pub fn _from_array<const S: usize>(value: [u8; S]) -> Self {
|
||||
pub fn from_array<const S: usize>(value: [u8; S]) -> Self {
|
||||
Self::Array(value.to_vec())
|
||||
}
|
||||
|
||||
pub fn _to_array<const S: usize>(&self) -> Result<[u8; S], ValueError> {
|
||||
pub fn to_array<const S: usize>(&self) -> Result<[u8; S], ValueError> {
|
||||
let mut array = [0u8; S];
|
||||
match self {
|
||||
QueryValue::Array(a) => {
|
||||
|
@ -42,10 +49,10 @@ impl QueryValue {
|
|||
array[i] = *byte
|
||||
}
|
||||
Ok(array)
|
||||
}
|
||||
},
|
||||
_ => Err(ValueError::TypeMismatch {
|
||||
expected: String::from("Vec<u8>"),
|
||||
actual: format!("{:?}", self),
|
||||
actual: format!("{:?}", self)
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
@ -55,7 +62,7 @@ impl QueryValue {
|
|||
QueryValue::Array(a) => Ok(a.to_vec()),
|
||||
_ => Err(ValueError::TypeMismatch {
|
||||
expected: String::from("Vec<u8>"),
|
||||
actual: format!("{:?}", self),
|
||||
actual: format!("{:?}", self)
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
@ -65,21 +72,7 @@ impl QueryValue {
|
|||
QueryValue::Number(a) => Ok(*a),
|
||||
_ => Err(ValueError::TypeMismatch {
|
||||
expected: String::from("i64"),
|
||||
actual: format!("{:?}", self),
|
||||
}),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl TryInto<i64> for QueryValue {
|
||||
type Error = ValueError;
|
||||
|
||||
fn try_into(self) -> Result<i64, Self::Error> {
|
||||
match self {
|
||||
QueryValue::Number(a) => Ok(a),
|
||||
_ => Err(ValueError::TypeMismatch {
|
||||
expected: String::from("i64"),
|
||||
actual: format!("{:?}", self),
|
||||
actual: format!("{:?}", self)
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
@ -96,7 +89,7 @@ pub enum QueryError {
|
|||
expected: u8,
|
||||
actual: u8,
|
||||
format_string: String,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
/// Formats a query using a standard input to send to the player
|
||||
|
@ -195,7 +188,10 @@ pub fn format_query(format: String, args: Vec<QueryValue>) -> Result<Vec<u8>, Qu
|
|||
}
|
||||
|
||||
/// Scans a result using a standard input to recieve from the player
|
||||
pub fn scan_query(query_result: Vec<u8>, format: String) -> Result<Vec<QueryValue>, QueryError> {
|
||||
pub fn scan_query(
|
||||
query_result: Vec<u8>,
|
||||
format: String,
|
||||
) -> Result<Vec<QueryValue>, QueryError> {
|
||||
let mut result: Vec<QueryValue> = Vec::new();
|
||||
|
||||
let initial_length = query_result.len();
|
||||
|
@ -301,7 +297,7 @@ pub fn scan_query(query_result: Vec<u8>, format: String) -> Result<Vec<QueryValu
|
|||
index: i,
|
||||
expected: format_value,
|
||||
actual: input_value,
|
||||
format_string: format,
|
||||
format_string: format
|
||||
});
|
||||
}
|
||||
half = None;
|
||||
|
|
|
@ -1,20 +1,14 @@
|
|||
use crate::netmd::mappings::{ALLOWED_HW_KANA, MAPPINGS_DE, MAPPINGS_HW, MAPPINGS_JP, MAPPINGS_RU};
|
||||
use byteorder::{LittleEndian, WriteBytesExt};
|
||||
use diacritics;
|
||||
use encoding_rs::SHIFT_JIS;
|
||||
use regex::Regex;
|
||||
use std::{error::Error, io::Write, time::Duration, vec::IntoIter};
|
||||
use std::{collections::hash_map::HashMap, error::Error, vec::IntoIter, time::Duration};
|
||||
use unicode_normalization::UnicodeNormalization;
|
||||
|
||||
extern crate kana;
|
||||
use kana::*;
|
||||
|
||||
use super::{
|
||||
interface::DiscFormat,
|
||||
mappings::{HW_TO_FW_RANGE_MAP, MULTI_BYTE_CHARS},
|
||||
};
|
||||
|
||||
/// Sleep for a specified [Duration] on any platform
|
||||
/// Sleep for a specified number of milliseconds on any platform
|
||||
pub async fn cross_sleep(duration: Duration) {
|
||||
#[cfg(not(target_family = "wasm"))]
|
||||
std::thread::sleep(duration);
|
||||
|
@ -25,13 +19,13 @@ pub async fn cross_sleep(duration: Duration) {
|
|||
|
||||
pub fn bcd_to_int(mut bcd: i32) -> i32 {
|
||||
let mut value = 0;
|
||||
let mut nybble = 0;
|
||||
let mut nibble = 0;
|
||||
|
||||
while bcd != 0 {
|
||||
let nybble_value = bcd & 0xf;
|
||||
let nibble_value = bcd & 0xf;
|
||||
bcd >>= 4;
|
||||
value += nybble_value * i32::pow(10, nybble);
|
||||
nybble += 1;
|
||||
value += nibble_value * i32::pow(10, nibble);
|
||||
nibble += 1;
|
||||
}
|
||||
|
||||
value
|
||||
|
@ -52,9 +46,25 @@ pub fn int_to_bcd(mut value: i32) -> i32 {
|
|||
}
|
||||
|
||||
pub fn half_width_to_full_width_range(range: &str) -> String {
|
||||
let mappings: HashMap<char, char> = HashMap::from([
|
||||
('0', '0'),
|
||||
('1', '1'),
|
||||
('2', '2'),
|
||||
('3', '3'),
|
||||
('4', '4'),
|
||||
('5', '5'),
|
||||
('6', '6'),
|
||||
('7', '7'),
|
||||
('8', '8'),
|
||||
('9', '9'),
|
||||
('-', '-'),
|
||||
('/', '/'),
|
||||
(';', ';'),
|
||||
]);
|
||||
|
||||
range
|
||||
.chars()
|
||||
.map(|char| HW_TO_FW_RANGE_MAP.get(&char).unwrap())
|
||||
.map(|char| mappings.get(&char).unwrap())
|
||||
.collect()
|
||||
}
|
||||
|
||||
|
@ -65,41 +75,30 @@ pub fn get_bytes<const S: usize>(iterator: &mut IntoIter<u8>) -> Result<[u8; S],
|
|||
Ok(bytes)
|
||||
}
|
||||
|
||||
pub fn length_after_encoding_to_sjis(string: &str) -> usize {
|
||||
pub fn length_after_encoding_to_jis(string: &str) -> usize {
|
||||
let new_string = SHIFT_JIS.encode(string);
|
||||
|
||||
new_string.0.len()
|
||||
}
|
||||
|
||||
pub fn validate_sjis(sjis_string: Vec<u8>) -> bool {
|
||||
pub fn validate_shift_jis(sjis_string: Vec<u8>) -> bool {
|
||||
let (_, _, had_errors) = SHIFT_JIS.decode(&sjis_string);
|
||||
|
||||
had_errors
|
||||
}
|
||||
|
||||
/// Ensure string contains only hardware allowed characters
|
||||
fn check(string: String) -> Option<String> {
|
||||
if MAPPINGS_HW.contains_key(string.as_str()) {
|
||||
return Some(MAPPINGS_HW.get(string.as_str()).unwrap().to_string());
|
||||
if MAPPINGS_HW.contains_key(&string) {
|
||||
return Some(MAPPINGS_HW.get(&string).unwrap().to_string());
|
||||
}
|
||||
let mut ch = string.chars();
|
||||
if (ch.next().unwrap() as u32) < 0x7f || ALLOWED_HW_KANA.contains(&string.as_str()) {
|
||||
if (ch.next().unwrap() as u32) < 0x7f || ALLOWED_HW_KANA.contains(&string) {
|
||||
return Some(string);
|
||||
}
|
||||
None
|
||||
}
|
||||
|
||||
pub fn half_width_title_length(title: &str) -> usize {
|
||||
let multibyte_len = title
|
||||
.chars()
|
||||
.map(|c| (*MULTI_BYTE_CHARS.get(&c).unwrap_or(&0) as usize))
|
||||
.reduce(|a, b| a + b)
|
||||
.unwrap_or_default();
|
||||
|
||||
title.len() + multibyte_len
|
||||
}
|
||||
|
||||
pub fn sanitize_half_width_title(title: &str) -> String {
|
||||
pub fn sanitize_half_width_title(title: &str) -> Vec<u8> {
|
||||
let mut string_title = wide2ascii(title);
|
||||
string_title = nowidespace(&string_title);
|
||||
string_title = hira2kata(&string_title);
|
||||
|
@ -114,46 +113,50 @@ pub fn sanitize_half_width_title(title: &str) -> String {
|
|||
})
|
||||
.collect();
|
||||
|
||||
new_title
|
||||
let sjis_string = SHIFT_JIS.encode(&new_title).0;
|
||||
|
||||
if validate_shift_jis(sjis_string.clone().into()) {
|
||||
return agressive_sanitize_title(title).into();
|
||||
}
|
||||
|
||||
sjis_string.into()
|
||||
}
|
||||
|
||||
// TODO: This function is bad, probably should do the string sanitization in the frontend
|
||||
pub fn sanitize_full_width_title(title: &str) -> String {
|
||||
pub fn sanitize_full_width_title(title: &str, just_remap: bool) -> Vec<u8> {
|
||||
let new_title: String = title
|
||||
.chars()
|
||||
.map(|c| c.to_string())
|
||||
.map(|character| {
|
||||
match MAPPINGS_JP.get(character.to_string().as_str()) {
|
||||
Some(string) => string,
|
||||
None => character.as_str(),
|
||||
match MAPPINGS_JP.get(&character.to_string()) {
|
||||
Some(string) => string.clone(),
|
||||
None => character.to_string().clone(),
|
||||
}
|
||||
.to_string()
|
||||
})
|
||||
.map(|character| {
|
||||
match MAPPINGS_RU.get(character.as_str()) {
|
||||
Some(string) => string,
|
||||
None => character.as_str(),
|
||||
match MAPPINGS_RU.get(&character.to_string()) {
|
||||
Some(string) => string.clone(),
|
||||
None => character.to_string().clone(),
|
||||
}
|
||||
.to_string()
|
||||
})
|
||||
.map(|character| {
|
||||
match MAPPINGS_DE.get(character.as_str()) {
|
||||
Some(string) => string,
|
||||
None => character.as_str(),
|
||||
match MAPPINGS_DE.get(&character.to_string()) {
|
||||
Some(string) => string.clone(),
|
||||
None => character.to_string().clone(),
|
||||
}
|
||||
.to_string()
|
||||
})
|
||||
.collect::<String>();
|
||||
|
||||
new_title
|
||||
}
|
||||
if just_remap {
|
||||
return new_title.into();
|
||||
};
|
||||
|
||||
/// Convert a UTF-8 string to Shift-JIS for use on the player
|
||||
pub fn to_sjis(sjis_str: &str) -> Vec<u8> {
|
||||
let sjis_string = SHIFT_JIS.encode(&sjis_str).0;
|
||||
let sjis_string = SHIFT_JIS.encode(&new_title).0;
|
||||
|
||||
if validate_sjis(sjis_string.clone().into()) {
|
||||
return agressive_sanitize_title(sjis_str).into();
|
||||
if validate_shift_jis(sjis_string.clone().into()) {
|
||||
return agressive_sanitize_title(title).into();
|
||||
}
|
||||
|
||||
sjis_string.into()
|
||||
|
@ -170,148 +173,9 @@ pub fn agressive_sanitize_title(title: &str) -> String {
|
|||
.into()
|
||||
}
|
||||
|
||||
pub struct AeaOptions<'a> {
|
||||
pub name: &'a str,
|
||||
pub channels: u32,
|
||||
pub sound_groups: u32,
|
||||
pub group_start: u32,
|
||||
pub encrypted: u32,
|
||||
pub flags: &'a [u8],
|
||||
}
|
||||
|
||||
impl<'a> Default for AeaOptions<'a> {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
name: "",
|
||||
channels: 2,
|
||||
sound_groups: 1,
|
||||
group_start: 0,
|
||||
encrypted: 0,
|
||||
flags: &[0, 0, 0, 0, 0, 0, 0, 0],
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn create_aea_header(options: AeaOptions) -> Vec<u8> {
|
||||
let encoded_name = options.name.as_bytes();
|
||||
|
||||
let mut header: Vec<u8> = Vec::new();
|
||||
|
||||
header.write_u32::<LittleEndian>(2048).unwrap();
|
||||
header.write_all(encoded_name).unwrap();
|
||||
header
|
||||
.write_all(&vec![0; 256 - encoded_name.len()])
|
||||
.unwrap();
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.sound_groups as u32)
|
||||
.unwrap();
|
||||
header.write_all(&[options.channels as u8, 0]).unwrap();
|
||||
|
||||
// Write the flags
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.flags[0] as u32)
|
||||
.unwrap();
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.flags[1] as u32)
|
||||
.unwrap();
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.flags[2] as u32)
|
||||
.unwrap();
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.flags[3] as u32)
|
||||
.unwrap();
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.flags[4] as u32)
|
||||
.unwrap();
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.flags[5] as u32)
|
||||
.unwrap();
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.flags[6] as u32)
|
||||
.unwrap();
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.flags[7] as u32)
|
||||
.unwrap();
|
||||
|
||||
header.write_u32::<LittleEndian>(0).unwrap();
|
||||
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.encrypted as u32)
|
||||
.unwrap();
|
||||
header
|
||||
.write_u32::<LittleEndian>(options.group_start as u32)
|
||||
.unwrap();
|
||||
|
||||
// return the header
|
||||
header
|
||||
}
|
||||
|
||||
pub fn create_wav_header(format: DiscFormat, bytes: u32) -> Vec<u8> {
|
||||
let mut header: Vec<u8> = Vec::new();
|
||||
|
||||
let (joint_stereo, bytes_per_frame) = match format {
|
||||
DiscFormat::LP4 => (192, 0),
|
||||
DiscFormat::LP2 => (96, 1),
|
||||
_ => unreachable!("Cannot create WAV header for disc type {:?}", format),
|
||||
};
|
||||
|
||||
let bytes_per_second = (bytes_per_frame * 44100) / 512;
|
||||
|
||||
header.write_all(r"RIFF".as_bytes()).unwrap();
|
||||
header.write_u32::<LittleEndian>(bytes + 60).unwrap();
|
||||
header.write_all(r"WAVEfmt".as_bytes()).unwrap();
|
||||
header.write_u32::<LittleEndian>(32).unwrap();
|
||||
header.write_u16::<LittleEndian>(0x270).unwrap(); // ATRAC3
|
||||
header.write_u16::<LittleEndian>(2).unwrap(); // Stereo
|
||||
header.write_u32::<LittleEndian>(44100).unwrap();
|
||||
header.write_u32::<LittleEndian>(bytes_per_second).unwrap();
|
||||
header
|
||||
.write_u16::<LittleEndian>(bytes_per_frame as u16 * 2)
|
||||
.unwrap();
|
||||
|
||||
header.write_all(&[0, 0]).unwrap();
|
||||
|
||||
header.write_u16::<LittleEndian>(14).unwrap();
|
||||
header.write_u16::<LittleEndian>(1).unwrap();
|
||||
header.write_u32::<LittleEndian>(bytes_per_frame).unwrap();
|
||||
header.write_u16::<LittleEndian>(joint_stereo).unwrap();
|
||||
header.write_u16::<LittleEndian>(joint_stereo).unwrap();
|
||||
|
||||
header.write_u16::<LittleEndian>(1).unwrap();
|
||||
header.write_u16::<LittleEndian>(0).unwrap();
|
||||
|
||||
header.write_all(r"data".as_bytes()).unwrap();
|
||||
|
||||
header.write_u32::<LittleEndian>(bytes).unwrap();
|
||||
|
||||
header
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
|
||||
pub struct RawTime {
|
||||
pub hours: u64,
|
||||
pub minutes: u64,
|
||||
pub seconds: u64,
|
||||
pub frames: u64,
|
||||
}
|
||||
|
||||
impl Into<Duration> for RawTime {
|
||||
fn into(self) -> std::time::Duration {
|
||||
self.as_duration()
|
||||
}
|
||||
}
|
||||
|
||||
impl RawTime {
|
||||
pub fn as_duration(&self) -> Duration {
|
||||
pub fn time_to_duration(time: &[u64]) -> std::time::Duration {
|
||||
assert_eq!(time.len(), 4);
|
||||
std::time::Duration::from_micros(
|
||||
(self.hours * 3600000000)
|
||||
+ (self.minutes * 60000000)
|
||||
+ (self.seconds * 1000000)
|
||||
+ (self.frames * 11600),
|
||||
(time[0] * 3600000000) + (time[1] * 60000000) + (time[2] * 1000000) + (time[3] * 11600),
|
||||
)
|
||||
}
|
||||
|
||||
pub fn as_frames(&self) -> u64 {
|
||||
((self.hours * 60 + self.minutes) * 60 + self.seconds) * 512 + self.frames
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue