-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccessories_param.rs
199 lines (152 loc) · 6.08 KB
/
accessories_param.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
use binrw::{binrw, BinReaderExt, BinWriterExt, NullString};
use binrw::io::{Cursor, Seek, SeekFrom};
use serde::{Serialize, Deserialize};
use super::{NuccBinaryParsed, NuccBinaryType};
use super::HEADER_SIZE;
// Format reversed by Kuroha Saenoki (https://www.youtube.com/@KurohaSaenoki)
#[allow(non_snake_case)]
#[binrw]
#[derive(Serialize, Deserialize, Debug)]
pub struct Entry {
#[serde(skip)]
pub accessory_name_id_ptr: u64,
#[serde(skip)]
pub accessory_link_ptr: u64,
pub index: u32,
pub price: u32,
#[serde(skip)]
pub icon_ptr: u64,
#[serde(skip)]
pub accessory_ptr: u64,
pub ofsX: i32, // Left/Right
pub ofsZ: i32, // Towards/Away from camera
pub ofsY: i32, // Up/Down
pub rotY: i32, // Up/Down
pub rotZ: i32, // Left/Right
pub rotX: i32, // Left/Right
#[brw(pad_after = 4)]
pub unlock_condition: u32,
#[brw(ignore)]
#[bw(map = |x| x.parse::<u8>().unwrap())]
pub accessory_name_id: String,
#[brw(ignore)]
#[bw(map = |x| x.parse::<u8>().unwrap())]
pub accessory_link: String,
#[brw(ignore)]
#[bw(map = |x| x.parse::<u8>().unwrap())]
pub icon: String,
#[brw(ignore)]
#[bw(map = |x| x.parse::<u8>().unwrap())]
pub accessory: String,
}
#[binrw]
#[derive(Serialize, Deserialize, Debug)]
pub struct AccessoriesParam {
#[serde(skip)]
pub version: u32,
pub entry_count: u32,
#[serde(skip)]
pub entry_ptr: u64,
#[br(count = entry_count)]
pub entries: Vec<Entry>
}
impl NuccBinaryParsed for AccessoriesParam {
fn binary_type(&self) -> NuccBinaryType {
NuccBinaryType::AccessoriesParam
}
fn extension(&self) -> String {
String::from(".json")
}
fn serialize(&self) -> Vec<u8> {
serde_json::to_string_pretty(self).unwrap().into()
}
fn deserialize(data: &[u8]) -> Self
where
Self: Sized,
{
serde_json::from_slice(data).unwrap()
}
}
impl From<&[u8]> for AccessoriesParam {
fn from(data: &[u8]) -> Self {
let mut reader = Cursor::new(data);
let version = reader.read_le::<u32>().unwrap();
let entry_count = reader.read_le::<u32>().unwrap();
let entry_ptr = reader.read_le::<u64>().unwrap();
let mut entries = Vec::new();
entries.reserve_exact(entry_count as usize); // Make sure we have enough space to avoid reallocations
for _ in 0..entry_count as usize {
let entry = reader.read_le::<Entry>().unwrap();
entries.push(entry);
}
fn read_string_from_ptr(reader: &mut Cursor<&[u8]>, ptr: u64, curent_offset: u64) -> String {
if ptr != 0 {
reader.seek(SeekFrom::Start(curent_offset as u64)).unwrap();
reader.seek(SeekFrom::Current(ptr as i64)).unwrap();
reader.read_be::<NullString>().unwrap().to_string()
} else {
String::from("")
}
}
for (current_offset, entry) in entries
.iter_mut()
.enumerate()
.map(|(i, e)| (((0x48 * i + HEADER_SIZE) as u64, e)))
{
entry.accessory_name_id = read_string_from_ptr(&mut reader, entry.accessory_name_id_ptr, current_offset as u64);
entry.accessory_link = read_string_from_ptr(&mut reader, entry.accessory_link_ptr, current_offset + 0x8);
entry.icon = read_string_from_ptr(&mut reader, entry.icon_ptr, current_offset + 0x18);
entry.accessory = read_string_from_ptr(&mut reader, entry.accessory_ptr, current_offset + 0x20);
}
Self {
version,
entry_count,
entry_ptr,
entries
}
}
}
impl From<AccessoriesParam> for Vec<u8> {
fn from(mut accessories_param: AccessoriesParam) -> Self {
let mut writer = Cursor::new(Vec::new());
accessories_param.entry_count = accessories_param.entries.len() as u32; // Update entry count
writer.write_le(&1000u32).unwrap(); // Write the version
writer.write_le(&accessories_param.entry_count).unwrap();
writer.write_le(&8u64).unwrap(); // Write the ptr to the entries
writer.write_le(&accessories_param.entries).unwrap();
fn write_ptr_to_string(
writer: &mut Cursor<Vec<u8>>,
string: &String,
current_offset: u64,
adjustment: u64,
) {
if !string.is_empty() {
writer.seek(SeekFrom::End(0)).unwrap();
let string_pos = writer.seek(SeekFrom::End(0)).unwrap();
writer.write_be::<NullString>(&NullString::from(string.clone())).unwrap();
// Align to 8 bytes
let pos = writer.seek(SeekFrom::Current(0)).unwrap() - string_pos;
if 8 - (pos % 8) != 8 {
writer.write_le::<Vec<u8>>(&vec![0; 8 - (pos % 8) as usize]).unwrap();
}
writer.seek(SeekFrom::Start((current_offset + adjustment) as u64)).unwrap();
writer.write_le::<u64>(&(string_pos - current_offset - &adjustment)).unwrap();
}
}
for (current_offset, entry) in accessories_param.entries
.iter_mut()
.enumerate()
.map(|(i, e)| (((0x48 * i + HEADER_SIZE) as u64, e)))
{
write_ptr_to_string(&mut writer, &entry.accessory_name_id, current_offset as u64, 0x0);
write_ptr_to_string(&mut writer, &entry.accessory_link, current_offset as u64, 0x8);
write_ptr_to_string(&mut writer, &entry.icon, current_offset as u64, 0x18);
write_ptr_to_string(&mut writer, &entry.accessory, current_offset as u64, 0x20);
}
// Update the indices in case they were changed
for (i, entry) in accessories_param.entries.iter_mut().enumerate() {
entry.index = i as u32;
}
writer.into_inner()
}
}