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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
use std::any::Any;
use std::ffi::c_void;
use std::mem::transmute;
use std::ptr::null_mut;

use crate::{Builtin, Il2CppObject, Il2CppType, MethodInfo, Type};

/// Trait implemented by types that can be used as a C# `this` arguments
///
/// # Note
/// You should most likely not be implementing this trait yourself, but rather
/// the [`Type`] trait
///
/// # Safety
/// The implementation must be correct
pub unsafe trait ThisArgument {
    /// Normalized type of `this`, useful for caching
    type Type: Any;

    /// Checks whether the type can be used as a C# `this` argument for the
    /// given [`MethodInfo`]
    fn matches(method: &MethodInfo) -> bool;

    /// Returns an untyped pointer which can be used as a libill2cpp `this`
    /// argument
    fn invokable(&mut self) -> *mut c_void;
}

/// Trait implemented by types that can be used as C# method arguments
///
/// # Note
/// You should most likely not be implementing this trait yourself, but rather
/// the [`Type`] trait
///
/// # Safety
/// The implementation must be correct
pub unsafe trait Argument {
    /// Normalized type of the argument, useful for caching
    type Type: Any;

    /// Checks whether the type can be used as a C# argument with the given
    /// [`Il2CppType`] to call a method
    fn matches(ty: &Il2CppType) -> bool;

    /// Returns an untyped pointer which can be used as a libil2cpp argument
    fn invokable(&mut self) -> *mut c_void;
}

/// Trait implemented by types that can be used as return types from C# methods
///
/// # Note
/// You should most likely not be implementing this trait yourself, but rather
/// the [`Type`] trait
///
/// # Safety
/// The implementation must be correct
pub unsafe trait Returned {
    /// Normalized type of the return type, useful for caching
    type Type: Any;

    /// Checks whether the type can be used as a C# return type of the given
    /// [`Il2CppType`]
    fn matches(ty: &Il2CppType) -> bool;

    /// Converts the [`Il2CppObject`] returned by
    /// [`runtime_invoke`](crate::raw::runtime_invoke) into self
    fn from_object(object: Option<&mut Il2CppObject>) -> Self;
}

/// Trait implemented by types that can be used as a collection of C# method
/// arguments
///
/// # Note
/// You should most likely not be implementing this trait yourself
///
/// # Safety
/// The implementation must be correct
pub unsafe trait Arguments<const N: usize> {
    /// Normalized type of the arguments, useful for caching
    type Type: Any;

    /// Checks whether the type can be used as a C# argument collection for the
    /// given [`MethodInfo`]
    fn matches(method: &MethodInfo) -> bool;

    /// Returns an array of untyped pointer which can be used to invoke C#
    /// methods
    fn invokable(&mut self) -> [*mut c_void; N];
}

unsafe impl<T> ThisArgument for Option<&mut T>
where
    T: Type,
{
    type Type = T;

    fn matches(method: &MethodInfo) -> bool {
        T::matches_this_argument(method)
    }

    fn invokable(&mut self) -> *mut c_void {
        unsafe { transmute((self as *mut Self).read()) }
    }
}

unsafe impl<T> ThisArgument for &mut T
where
    T: Type,
{
    type Type = T;

    fn matches(method: &MethodInfo) -> bool {
        T::matches_this_argument(method)
    }

    fn invokable(&mut self) -> *mut c_void {
        (*self as *mut T).cast()
    }
}

unsafe impl ThisArgument for () {
    type Type = ();

    fn matches(method: &MethodInfo) -> bool {
        method.is_static()
    }

    fn invokable(&mut self) -> *mut c_void {
        null_mut()
    }
}

// TODO: Remove this once rustfmt stops dropping generics on GATs
#[rustfmt::skip]
unsafe impl<T> Argument for Option<&mut T>
where
    T: for<'a> Type<Held<'a> = Option<&'a mut T>>,
{
    type Type = T;

    fn matches(ty: &Il2CppType) -> bool {
        T::matches_reference_argument(ty)
    }

    fn invokable(&mut self) -> *mut c_void {
        unsafe { transmute((self as *mut Self).read()) }
    }
}

// TODO: Remove this once rustfmt stops dropping generics on GATs
#[rustfmt::skip]
unsafe impl<T> Argument for &mut T
where
    T: for<'a> Type<Held<'a> = Option<&'a mut T>>,
{
    type Type = T;

    fn matches(ty: &Il2CppType) -> bool {
        T::matches_reference_argument(ty)
    }

    fn invokable(&mut self) -> *mut c_void {
        (*self as *mut T).cast()
    }
}

// TODO: Remove this once rustfmt stops dropping generics on GATs
#[rustfmt::skip]
unsafe impl<T> Returned for Option<&mut T>
where
    T: for<'a> Type<Held<'a> = Option<&'a mut T>>,
{
    type Type = T;

    fn matches(ty: &Il2CppType) -> bool {
        T::matches_returned(ty)
    }

    fn from_object(object: Option<&mut Il2CppObject>) -> Self {
        unsafe { transmute(object) }
    }
}

// TODO: Remove this once rustfmt stops dropping generics on GATs
#[rustfmt::skip]
unsafe impl<T> Returned for Option<&T>
where
    T: for<'a> Type<Held<'a> = Option<&'a mut T>>,
{
    type Type = T;

    fn matches(ty: &Il2CppType) -> bool {
        T::matches_returned(ty)
    }

    fn from_object(object: Option<&mut Il2CppObject>) -> Self {
        unsafe { transmute(object) }
    }
}

// TODO: Remove this once rustfmt stops dropping generics on GATs
#[rustfmt::skip]
unsafe impl<T> Returned for &mut T
where
    T: for<'a> Type<Held<'a> = Option<&'a mut T>>,
{
    type Type = T;

    fn matches(ty: &Il2CppType) -> bool {
        T::matches_returned(ty)
    }

    fn from_object(object: Option<&mut Il2CppObject>) -> Self {
        unsafe { &mut *(object.unwrap() as *mut Il2CppObject).cast() }
    }
}

// TODO: Remove this once rustfmt stops dropping generics on GATs
#[rustfmt::skip]
unsafe impl<T> Returned for &T
where
    T: for<'a> Type<Held<'a> = Option<&'a mut T>>,
{
    type Type = T;

    fn matches(ty: &Il2CppType) -> bool {
        T::matches_returned(ty)
    }

    fn from_object(object: Option<&mut Il2CppObject>) -> Self {
        unsafe { &*(object.unwrap() as *mut Il2CppObject).cast() }
    }
}

unsafe impl Returned for () {
    type Type = ();

    fn matches(ty: &Il2CppType) -> bool {
        ty.is_builtin(Builtin::Void)
    }

    fn from_object(_: Option<&mut Il2CppObject>) {}
}

unsafe impl Arguments<0> for () {
    type Type = ();

    fn matches(method: &MethodInfo) -> bool {
        method.parameters().is_empty()
    }

    fn invokable(&mut self) -> [*mut c_void; 0] {
        []
    }
}

unsafe impl<A> Arguments<1> for A
where
    A: Argument,
{
    type Type = (A::Type,);

    fn matches(method: &MethodInfo) -> bool {
        let params = method.parameters();
        params.len() == 1 && unsafe { A::matches(params.get_unchecked(0).ty()) }
    }

    fn invokable(&mut self) -> [*mut c_void; 1] {
        [Argument::invokable(self)]
    }
}