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
use me3_framework::deref;
pub use self::file::ParamFileDescriptor;
pub mod file;
#[doc(hidden)]
#[derive(Copy, Clone)]
#[repr(packed)]
pub(crate) struct Padding<const LENGTH: usize> {
#[doc(hidden)]
_pad: [u8; LENGTH],
}
impl<const LENGTH: usize> std::fmt::Debug for Padding<LENGTH> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("Padding").field("length", &LENGTH).finish()
}
}
#[repr(transparent)]
pub struct ParamRepository(*mut usize);
#[derive(Copy, Clone, Debug)]
#[repr(packed)]
pub struct ParamFileHeader {
_pad1: Padding<0xA>,
pub size: i16,
_pad2: Padding<0x34>,
}
#[derive(Copy, Clone, Debug)]
#[repr(packed)]
pub struct ParamFileEntry {
pub id: i32,
_pad1: Padding<0x4>,
pub offset: i32,
_pad2: Padding<0xC>,
}
#[derive(Copy, Clone, Debug)]
pub struct ParamFileData<'p> {
header: &'p ParamFileHeader,
entries: &'p [ParamFileEntry],
}
impl ParamRepository {
fn get_file_data(&self, id: i32) -> Option<ParamFileData<'_>> {
let param_repo_instance = self.0;
unsafe {
let header =
deref!([[[param_repo_instance + 0x48 * id as usize + 0x70] + 0x68] + 0x68])?
.cast::<ParamFileHeader>()
.as_ptr();
let entry_pointer = header.add(1) as *const ParamFileEntry;
let entries = std::slice::from_raw_parts(entry_pointer, (*header).size as usize);
Some(ParamFileData {
header: header.as_ref()?,
entries,
})
}
}
fn get_row_pointer(&self, file: i32, id: i32) -> Option<*const ()> {
let file = self.get_file_data(file)?;
let entry_offset = file
.entries
.binary_search_by_key(&id, |entry| entry.id)
.ok()?;
let entry = &file.entries[entry_offset];
let data = file.header as *const ParamFileHeader;
unsafe { Some(data.byte_offset(entry.offset as isize) as *const _) }
}
#[allow(dead_code)]
pub fn get_row<T>(&self, id: i32) -> Option<&T::Row>
where
T: ParamFileDescriptor,
{
let row_ptr = self.get_row_pointer(T::ID as i32, id)?;
unsafe { row_ptr.cast::<T::Row>().as_ref() }
}
#[allow(dead_code)]
pub fn get_row_mut<T>(&self, id: i32) -> Option<&mut T::Row>
where
T: ParamFileDescriptor,
{
let row_ptr = self.get_row_pointer(T::ID as i32, id)?;
unsafe { row_ptr.cast::<T::Row>().cast_mut().as_mut() }
}
}